@charset "UTF-8";
/*-------------------------------
WEBフォント読み込み
---------------------------------*/
@import url("https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap");
/* 
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com 
Twitter: @rich_clark
*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*-------------------------------
変数
---------------------------------*/
:root {
  --main-color: #ffec5c;
  --main-subcolor: #ffeb4f;
}

/*-------------------------------
ディフォルト設定
---------------------------------*/
html {
  width: 100%;
  scroll-behavior: smooth;
}

body {
  background: #fff;
  margin: 0px;
  padding: 0px;
  text-align: center;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  color: #222222;
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
  text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -moz-text-size-adjust: none;
  -ms-text-size-adjust: none;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 0.9rem;
  }
}

/*text link（サイト全体のメイン文字カラー）
-------------------------------- */
a:link {
  color: #000;
}

a:visited {
  color: #000;
}

a:hover {
  color: #000;
}

a:active {
  color: #000;
}

/*img
------------------------*/
* img {
  border: none;
  margin: 0px;
  padding: 0px;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

* {
  box-sizing: border-box;
}

.sp_menu {
  display: none;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 1001;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  background-color: var(--main-color);
}
@media screen and (max-width: 767px) {
  .sp_menu {
    display: block;
  }
}
.sp_menu span {
  position: absolute;
  border-radius: 100px;
  background-color: #000000;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  width: 60%;
  height: 2px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
.sp_menu span:nth-of-type(1) {
  top: 30%;
}
.sp_menu span:nth-of-type(2) {
  top: 50%;
}
.sp_menu span:nth-of-type(3) {
  top: 70%;
}
.sp_menu.open span:nth-of-type(1) {
  top: 50%;
  transform: rotate(45deg);
}
.sp_menu.open span:nth-of-type(2) {
  display: none;
}
.sp_menu.open span:nth-of-type(3) {
  top: 50%;
  transform: rotate(-45deg);
}

.inner {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 88%;
  }
}

.pt {
  width: 50px;
  height: 50px;
  display: block;
  position: fixed;
  bottom: 4rem;
  right: 2rem;
  border-radius: 3px;
  background-color: var(--main-color-dark);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 999;
}
@media screen and (max-width: 767px) {
  .pt {
    bottom: 0.7rem;
    right: 1rem;
    width: 40px;
    height: 40px;
  }
}
.pt::after {
  content: "▲";
  color: #fff;
}

.is-fixed {
  width: 260px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}

/*-------------------------------
footer
---------------------------------*/
footer .footer__contact-head {
  text-align: center;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-head {
    max-width: 88%;
    margin: auto;
    margin-bottom: 1rem;
  }
}
footer .footer__contact-head h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-head h2 {
    font-size: 1.2rem;
  }
}
footer .footer__contact-head p {
  line-height: 1.8;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-head p {
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: left;
  }
  footer .footer__contact-head p br {
    display: none;
  }
}
footer .footer__contact-box {
  background-image: url(../img/common/contact_bg.webp);
  background-size: auto;
  background-position: center center;
  background-repeat: no-repeat;
  background-color: #fff5c2;
}
footer .footer__contact-box .row {
  max-width: 900px;
  margin: auto;
  padding: 5rem 0 3rem 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-box .row {
    max-width: 90%;
    grid-template-columns: 1fr;
    padding: 2rem 0;
  }
}
footer .footer__contact-box .row .col {
  text-align: left;
}
footer .footer__contact-box .row .col.tel {
  position: relative;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-box .row .col.tel {
    padding-left: 70px;
  }
}
footer .footer__contact-box .row .col.tel h2 {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-box .row .col.tel h2 {
    font-size: 1.2rem;
  }
}
footer .footer__contact-box .row .col.tel a {
  font-size: 2rem;
  text-decoration: none;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-box .row .col.tel a {
    font-size: 1.6rem;
  }
}
footer .footer__contact-box .row .col.tel p {
  font-size: 0.9rem;
}
footer .footer__contact-box .row .col.tel::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 77px;
  height: 77px;
  border-radius: 100px;
  background-color: var(--main-color);
  background-image: url(../img/common/icon_tel.webp);
  background-size: 20%;
  background-position: center center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-box .row .col.tel::before {
    width: 44px;
    height: 44px;
  }
}
footer .footer__contact-box .row .col.mail a {
  display: block;
  background-color: var(--main-color);
  background-image: url(../img/common/icon_mail.webp);
  background-size: 7%;
  background-position: center left 30px;
  background-repeat: no-repeat;
  text-decoration: none;
  border-radius: 100px;
  padding: 1.5rem 2rem 1.5rem 4rem;
  text-align: center;
  font-size: 1.1rem;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
@media screen and (max-width: 767px) {
  footer .footer__contact-box .row .col.mail a {
    font-size: 0.9rem;
    padding: 1rem 1rem 1rem 2rem;
    background-position: center left 15px;
  }
}
footer .footer__contact-box .row .col.mail a:hover {
  transform: scale(1.03);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
}
footer .footer__bottom .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0px;
  padding: 2rem 0;
}
@media screen and (max-width: 767px) {
  footer .footer__bottom .inner {
    grid-template-columns: 1fr;
  }
}
footer .footer__bottom .inner div:nth-of-type(1) {
  text-align: left;
}
@media screen and (max-width: 767px) {
  footer .footer__bottom .inner div:nth-of-type(1) {
    text-align: center;
    margin-bottom: 0.5rem;
  }
}
footer .footer__bottom .inner div:nth-of-type(2) {
  text-align: right;
}
@media screen and (max-width: 767px) {
  footer .footer__bottom .inner div:nth-of-type(2) {
    text-align: center;
  }
}
footer .footer__bottom .inner div:nth-of-type(2) p {
  font-size: 0.8rem;
}
@media screen and (max-width: 767px) {
  footer .footer__bottom .inner div:nth-of-type(2) p {
    font-size: 0.6rem;
  }
}

/*-------------------------------
header
---------------------------------*/
header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1000;
}
header .inner {
  display: grid;
  grid-template-columns: 300px 1fr;
  grid-gap: 0;
  align-items: center;
  padding: 2rem 0 1rem 0;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  header .inner {
    grid-template-columns: 1fr;
    padding: 1rem 1rem;
  }
}
header .inner .logo {
  text-align: left;
  font-weight: 600;
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  header .inner .logo {
    font-size: 0.9rem;
  }
}

@media screen and (max-width: 767px) {
  nav {
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: var(--main-color);
    z-index: 999;
    top: 0;
    left: 0;
    display: none;
    padding-top: 5rem;
    transition: 0.3s;
    -webkit-transition: 0.3s;
  }
}
@media screen and (max-width: 767px) {
  nav.open {
    display: block;
  }
}
nav ul {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-end;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  nav ul {
    display: block;
    max-width: 90%;
    margin: auto;
  }
}
@media screen and (max-width: 767px) {
  nav ul li {
    margin-bottom: 10px;
  }
}
nav ul li a {
  display: block;
  text-decoration: none;
  padding: 5px 10px;
  border-radius: 100px;
}
@media screen and (max-width: 767px) {
  nav ul li a {
    border-radius: 0;
    padding: 10px 10px;
  }
}
nav ul li a:hover {
  background-color: #333;
  color: #fff;
}
nav ul li a.current {
  background-color: #333;
  color: #fff;
}
@media screen and (max-width: 767px) {
  nav ul li a.current {
    background-color: #fff;
    color: #000;
    border-radius: 100px;
  }
}

/*-------------------------------
main
---------------------------------*/
main {
  text-align: left;
}

/*-------------------------------
top
---------------------------------*/
body.top_bg {
  background-image: url(../img/top/mv_bg01.webp), url(../img/common/flower_bg01.webp), url(../img/common/flower_bg01.webp), url(../img/common/flower_bg03.webp);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: top -160px left -200px, top 860px left 60px, top 1200px right 0, top 1750px left 50px;
}
@media screen and (min-width: 1400px) {
  body.top_bg {
    background-position: top -160px left -200px, top 860px left 60px, top 1200px right 0, top 1750px left 50px;
  }
}
@media screen and (max-width: 1399px) and (min-width: 1100px) {
  body.top_bg {
    background-position: top -160px left -400px, top 860px left 60px, top 1200px right 0, top 1750px left 50px;
  }
}
@media screen and (max-width: 1099px) and (min-width: 768px) {
  body.top_bg {
    background-position: top -160px left -450px, top 860px left 60px, top 1200px right 0, top 1750px left 50px;
  }
}
@media screen and (max-width: 767px) {
  body.top_bg {
    background-image: none;
  }
}

.top_mv {
  width: 100%;
  position: relative;
  padding-top: 100px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .top_mv {
    background-image: url(../img/top/mv_sp.webp);
    background-repeat: no-repeat;
    background-size: 100% auto;
    margin-top: 2rem;
    padding-top: 30vw;
    padding-bottom: 60vw;
  }
}
.top_mv .inner {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 192px 1fr;
  gap: 50px;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .top_mv .inner {
    display: block;
    max-width: 100%;
    padding-left: 0;
  }
}
.top_mv__cc {
  writing-mode: vertical-rl;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 100px;
  letter-spacing: 6px;
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
@media screen and (max-width: 767px) {
  .top_mv__cc {
    font-size: 0.9rem;
    margin: auto;
  }
}
.top_mv__cc p:nth-of-type(2) {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .top_mv__cc p:nth-of-type(2) {
    padding-top: 0;
  }
}
.top_mv__cc p:nth-of-type(3) {
  padding-top: 30px;
}
@media screen and (max-width: 767px) {
  .top_mv__cc p:nth-of-type(3) {
    padding-top: 0;
  }
}
.top_mv__cc p:nth-of-type(4) {
  padding-top: 60px;
}
@media screen and (max-width: 767px) {
  .top_mv__cc p:nth-of-type(4) {
    padding-top: 0;
  }
}
.top_mv__cc p:nth-of-type(5) {
  padding-top: 110px;
}
@media screen and (max-width: 767px) {
  .top_mv__cc p:nth-of-type(5) {
    padding-top: 0;
  }
}
@media screen and (max-width: 767px) {
  .top_mv__img {
    display: none;
  }
}
.top_mv__img img {
  width: 100%;
}
.top_mv__sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .top_mv__sp {
    display: block;
  }
}

.top_features {
  margin-bottom: 4rem;
  position: relative;
  background-image: url(../img/top/top_img01.webp);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: calc(50% + 700px) calc(50% - 140px);
}
@media screen and (max-width: 767px) {
  .top_features {
    background-image: none;
  }
}
.top_features__txt {
  text-align: center;
  margin-bottom: 2rem;
}
.top_features__txt h2 {
  letter-spacing: 5px;
  margin-bottom: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top_features__txt h2 {
    font-size: 1rem;
  }
}
.top_features__txt h2 span {
  color: #ffb918;
}
.top_features__txt p {
  font-size: 1.1rem;
  letter-spacing: 2px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .top_features__txt p {
    font-size: 0.9rem;
    line-height: 1.2;
    text-align: left;
  }
}
.top_features__txt p:nth-of-type(1) {
  font-size: 2rem;
  letter-spacing: 6px;
  margin-bottom: 2rem;
}
@media screen and (max-width: 767px) {
  .top_features__txt p:nth-of-type(1) {
    font-size: 1.3rem;
    font-weight: 500;
    text-align: center;
    letter-spacing: 4px;
  }
}
.top_features__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .top_features__list {
    grid-template-columns: 1fr;
  }
}
.top_features__list li {
  background-color: #fff8e6;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.top_features__list li h3 {
  color: #947121;
  font-size: 1.3rem;
  margin-bottom: 1rem;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .top_features__list li h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    height: auto;
  }
  .top_features__list li h3 br {
    display: none;
  }
}
.top_features__btn {
  margin-top: 2rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
}
.top_features__btn a {
  background-color: var(--main-color);
  display: block;
  border-radius: 100px;
  padding: 1rem;
  width: 100%;
  max-width: 360px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top_features__btn a {
    max-width: 80%;
  }
}
.top_features__btn a:hover {
  transform: scale(1.01);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
}

.top_instagram {
  margin-bottom: 4rem;
  background-image: url(../img/top/top_img02.webp);
  background-repeat: no-repeat;
  background-size: auto;
  background-position: calc(50% - 640px) calc(50% - 40px);
  height: 400px;
  display: none;
}
@media screen and (max-width: 767px) {
  .top_instagram {
    background-image: none;
    height: auto;
  }
}
.top_instagram .inner h2 {
  text-align: center;
}

.top_recruit {
  margin-bottom: 4rem;
}
.top_recruit .inner {
  background-color: #ffec5c;
  border-radius: 10px;
  padding: 2rem;
}
@media screen and (max-width: 767px) {
  .top_recruit .inner {
    padding: 1.5rem;
  }
}
.top_recruit .inner h2 {
  border-bottom: 1px dashed #000000;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  font-size: 1.2rem;
}
@media screen and (max-width: 767px) {
  .top_recruit .inner h2 {
    font-size: 1rem;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.top_recruit .inner p {
  margin-bottom: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .top_recruit .inner p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }
}
.top_recruit .inner ul {
  list-style: none;
}
.top_recruit .inner ul li {
  background-color: #fff;
  padding: 2rem;
  position: relative;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 1fr 200px;
  gap: 10px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .top_recruit .inner ul li {
    grid-template-columns: 1fr;
    padding: 1rem;
    border-radius: 5px;
  }
}
.top_recruit .inner ul li:hover {
  transform: scale(1.01);
  box-shadow: 5px 5px 0px rgba(0, 0, 0, 0.8);
}
.top_recruit .inner ul li h3 {
  font-size: 1.6rem;
  letter-spacing: 4px;
}
@media screen and (max-width: 767px) {
  .top_recruit .inner ul li h3 {
    font-size: 1.1rem;
    letter-spacing: 2px;
  }
}
.top_recruit .inner ul li h3 span {
  font-size: 1.1rem;
  padding-left: 20px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .top_recruit .inner ul li h3 span {
    font-size: 0.6rem;
    padding-left: 10px;
  }
}
.top_recruit .inner ul li p {
  text-align: right;
  margin-bottom: 0;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_recruit .inner ul li p {
    display: none;
  }
}
.top_recruit .inner ul li a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

h2 {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
h2.hline {
  border-bottom: 1px dashed #ccc;
  padding-bottom: 2rem;
}

.contents_title {
  background-image: url(../img/common/contents_title_bg.webp);
  background-repeat: repeat-x;
  background-position: center bottom;
  height: 260px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .contents_title {
    background-image: none;
    background-color: var(--main-color);
    height: auto;
    padding: 5rem 0 1rem 0;
    margin-bottom: 2rem;
  }
}
.contents_title .inner {
  position: relative;
}
@media screen and (max-width: 767px) {
  .contents_title .inner {
    position: static;
  }
}
.contents_title .inner h1 {
  position: relative;
  font-size: 1.8rem;
  font-weight: 500;
  top: 140px;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .contents_title .inner h1 {
    top: 0;
    font-size: 1.1rem;
    text-align: center;
    position: static;
  }
}

.company {
  padding-bottom: 4rem;
}
.company__greeting {
  margin-bottom: 3rem;
}
.company__greeting-img {
  margin-bottom: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  .company__greeting-img {
    display: block;
  }
  .company__greeting-img img:nth-of-type(1) {
    display: none;
  }
}
.company__greeting p {
  line-height: 2;
}
.company__outline {
  margin-bottom: 3rem;
}
.company__outline dl > div {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .company__outline dl > div {
    grid-template-columns: 1fr;
    gap: 5px;
    margin-bottom: 5px;
  }
}
.company__outline dl > div dt {
  background-color: #fadd5a;
  padding: 1rem;
  border-radius: 5px;
}
.company__outline dl > div dd {
  background-color: #eee;
  padding: 1rem;
  border-radius: 5px;
}

.recruit {
  padding-bottom: 4rem;
}
.recruit__lead {
  line-height: 1.6;
  margin-bottom: 4rem;
}
.recruit__content-box {
  border: 1px solid #ccc;
  padding: 2rem;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .recruit__content-box {
    padding: 1rem;
  }
}
.recruit__subtitle {
  font-size: 1.4rem;
  margin-bottom: 2rem;
}
.recruit__job-title {
  margin-bottom: 2rem;
  font-size: 1.4rem;
  letter-spacing: 2px;
}
.recruit__table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .recruit__table {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .recruit__table tr {
    display: block;
  }
}
.recruit__table tr:nth-of-type(odd) {
  background-color: #eee;
}
@media screen and (max-width: 767px) {
  .recruit__table tr:nth-of-type(odd) {
    background-color: #fff;
  }
}
.recruit__table tr th,
.recruit__table tr td {
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  .recruit__table tr th,
  .recruit__table tr td {
    display: block;
    padding: 0.7rem 0.5;
  }
}
@media screen and (max-width: 767px) {
  .recruit__table tr th {
    background-color: #eee;
  }
}
.recruit__apply {
  border: 1px solid #fadd5a;
  border-radius: 10px;
  margin-top: 3rem;
  overflow: hidden;
}
.recruit__apply h3 {
  background-color: #fadd5a;
  padding: 1.5rem 1rem;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  .recruit__apply h3 {
    font-size: 1.2rem;
  }
}
.recruit__apply p {
  padding: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .recruit__apply p {
    padding: 1rem;
    text-align: left;
  }
}

.service {
  padding-bottom: 4rem;
}
.service__inner {
  max-width: 900px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .service__inner {
    max-width: 90%;
  }
}
.service__title {
  font-size: 2rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .service__title {
    font-size: 1.2rem;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.service__lead {
  margin-bottom: 2rem;
}
.service__list-item {
  margin-bottom: 3rem;
  padding-left: 80px;
  padding-bottom: 3rem;
  border-bottom: 2px dashed #ccc;
  position: relative;
}
@media screen and (max-width: 767px) {
  .service__list-item {
    padding-left: 50px;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
  }
}
.service__list-head span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--main-color);
  border-radius: 100px;
  width: 40px;
  height: 40px;
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .service__list-head span {
    width: 30px;
    height: 30px;
  }
}
.service__list-head h3 {
  font-size: 1.6rem;
  font-weight: 300;
  margin-bottom: 1rem;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  .service__list-head h3 {
    font-size: 1.2rem;
  }
}
.service__list p {
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .service__list p {
    font-size: 0.8rem;
  }
}

.contact {
  padding-bottom: 4rem;
}
.contact h3 {
  padding-bottom: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px dashed #ccc;
  padding-left: 60px;
  font-size: 1.4rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .contact h3 {
    font-size: 1.1rem;
    padding-bottom: 1rem;
    padding-left: 40px;
  }
}
.contact h3::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 100px;
  background-position: center center;
  background-color: var(--main-color);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 767px) {
  .contact h3::before {
    width: 30px;
    height: 30px;
  }
}
.contact .inner {
  max-width: 900px;
}
@media screen and (max-width: 767px) {
  .contact .inner {
    max-width: 88%;
  }
}
.contact__intro {
  margin-bottom: 4rem;
}
.contact__intro h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__intro h2 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
}
.contact__intro p {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .contact__intro p {
    text-align: left;
    font-size: 0.9rem;
  }
}
.contact__tel {
  margin-bottom: 4rem;
}
.contact__tel h3::before {
  background-size: 20%;
  background-image: url(../img/common/icon_tel.webp);
}
.contact__tel .row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 10px;
  padding-left: 100px;
}
@media screen and (max-width: 767px) {
  .contact__tel .row {
    grid-template-columns: 1fr;
    padding-left: 0;
  }
}
.contact__tel .row p {
  line-height: 1;
}
.contact__tel .row p.txt_tel {
  font-size: 2rem;
}
.contact__tel .row p.txt_time {
  font-size: 1rem;
  padding-top: 10px;
}
.contact__mail h3::before {
  background-size: 50%;
  background-image: url(../img/common/icon_mail.webp);
}
.contact__mail dl > div {
  display: grid;
  grid-template-columns: 30% 1fr;
  gap: 20px;
  padding: 1.5rem 0;
}
@media screen and (max-width: 767px) {
  .contact__mail dl > div {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 0.5rem 0;
  }
}
.contact__mail dl > div dt span {
  background-color: var(--main-color);
  border-radius: 100px;
  line-height: 1;
  padding: 2px 5px;
  font-size: 0.8rem;
}
.contact__mail dl > div dd input[type=text],
.contact__mail dl > div dd input[type=email],
.contact__mail dl > div dd input[type=tel],
.contact__mail dl > div dd textarea {
  background-color: #f1f1f1;
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #999;
  box-sizing: border-box;
}
.contact__mail dl > div dd input[type=text] {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact__mail dl > div dd input[type=text] {
    width: 100%;
  }
}
.contact__mail dl > div dd input[type=email] {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact__mail dl > div dd input[type=email] {
    width: 100%;
  }
}
.contact__mail dl > div dd input[type=tel] {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .contact__mail dl > div dd input[type=tel] {
    width: 100%;
  }
}
.contact__mail dl > div dd textarea {
  width: 100%;
  height: 200px;
}
.contact__mail .form__submit {
  text-align: center;
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .contact__mail .form__submit {
    margin-top: 2rem;
  }
}
.contact__mail .form__submit input[type=submit] {
  background-color: var(--main-color);
  color: #000;
  border-radius: 100px;
  width: 100%;
  max-width: 350px;
  border: none;
  padding: 1rem 2rem;
  font-weight: bold;
}