@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap");
/* ---------------------------------------------------------
  モード切替
  true  = 集団開発（clampで安全運用）
  false = 個人開発（calcで柔軟）
--------------------------------------------------------- */
/* ---------------------------------------------------------
  案件ごとの基準値（ここだけ変えればOK）
--------------------------------------------------------- */
/* ---------------------------------------------------------
  内部：font-sizeを可変化
  - $absmin-ratio: 下限比率 (例: 0.8 → 80%)
--------------------------------------------------------- */
/* ---------------------------------------------------------
  実行
--------------------------------------------------------- */
:root {
  font-size: calc(10 * 100vw / 390);
}

@media (min-width: 768px) {
  :root {
    font-size: clamp(8px, 10 * 100vw / 1440, 13.3333333333px);
  }
}
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 1024px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
@media (max-width: 734px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}
html {
  scroll-behavior: smooth;
  font-size: 10px;
  background: #fff;
}
html body {
  font-family: "Noto Sans JP", sans-serif;
  color: black;
  letter-spacing: 0.05em;
  line-height: normal;
}
html body section {
  width: 100%;
}
html body .contents {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 734px) {
  html body .contents {
    max-width: 35rem;
  }
}
html body img {
  width: 100%;
  height: auto;
}
html body .en-ttl {
  font-size: 1.2rem;
  color: #c27741;
  display: inline-block;
  margin-bottom: 1rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 400;
}
html body .ja-ttl {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  color: #c27741;
  display: inline-block;
  margin-bottom: 2rem;
}
@media (max-width: 734px) {
  html body .ja-ttl {
    margin-bottom: 2.8rem;
  }
}
html body .num-txt {
  font-family: "Montserrat", sans-serif;
}
html body .bold {
  font-weight: bold;
}
html body h1 {
  font-size: 5.2rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
  color: #ffffff;
}
html body h1 span {
  color: #f3e1ad;
}
@media (max-width: 734px) {
  html body h1 {
    font-size: 4.3rem;
  }
}
html body h2 {
  font-size: 3.2rem;
  font-family: "Noto Serif JP", serif;
  line-height: 1.55;
  font-weight: 400;
  letter-spacing: 0.06em;
  margin-bottom: 0.7rem;
}
@media (max-width: 734px) {
  html body h2 {
    font-size: 2.4rem;
  }
}
html body h3 {
  font-size: 2.5rem;
  line-height: 3.5rem;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.05em;
}
@media (max-width: 734px) {
  html body h3 {
    font-size: 2rem;
  }
}
html body p {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 3.2rem;
}
html body p span {
  color: #c27741;
}
@media (max-width: 734px) {
  html body p {
    letter-spacing: 0.05em;
  }
}
html body a {
  color: black;
  text-decoration: none;
}
html body li {
  list-style: none;
}
html body footer {
  width: 100%;
}

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
/* =========================================
   全消しリセットCSS（フォームUIは残す）
   ========================================= */
/* すべての要素の余白・枠線・フォントサイズをリセット */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5要素のデフォルト表示をブロックに */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

/* ボディ初期化 */
body {
  line-height: 1;
}

/* リストマーカー削除 */
ol, ul {
  list-style: none;
}

/* 引用符削除 */
blockquote, q {
  quotes: none;
}

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

/* テーブル初期化 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* ===== フォームUIは基本残すが最小限調整 ===== */
/* フォント継承（見た目の統一感を出す） */
input, select, textarea, button {
  font: inherit;
  color: inherit;
}

/* iOS Safariのズーム防止（必要な場合） */
input, textarea, select {
  font-size: 16px;
}

/* ボタンはポインター */
button {
  cursor: pointer;
}

/* Webkit系での余計なスタイル防止（外観は保持） */
input[type=search] {
  -webkit-appearance: textfield;
}

/* プレースホルダーの色だけ少し整える */
::-moz-placeholder {
  color: #999;
}
::placeholder {
  color: #999;
}

body {
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: black;
}

.archive .header .menu-item:nth-of-type(2) a, .single .header .menu-item:nth-of-type(2) a {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  border-radius: 999px;
}

.header {
  height: 80px;
  position: fixed;
  right: 0;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  display: flex;
  flex-flow: column;
  justify-content: center;
  z-index: 1000;
}
.header__nav-list {
  display: grid;
  align-items: center;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 639px;
  width: 639px;
  margin: 0 auto;
  text-align: center;
}
.header__nav-list .menu-item {
  font-size: 14px;
}
.header__nav-list .menu-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__nav-list .menu-item a span {
  font-size: 10px;
  padding-right: 8px;
}
.header__nav-list .current-menu-item a {
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000000;
  color: #ffffff;
  border-radius: 999px;
}
.footer {
  text-align: center;
  background-color: #2e2a29;
  padding: 5.1rem 0 5.8rem;
  color: #ffffff;
  position: relative;
}
.footer h2 {
  font-weight: 100;
  font-size: 3.1rem;
  margin-bottom: 1rem;
}
.footer p {
  font-size: 1.4rem;
}
.footer .btn {
  position: absolute;
  right: 12.2rem;
  bottom: 9.2rem;
}
.footer__policy {
  color: #fff;
  font-size: 1.4rem;
}
@media (max-width: 734px) {
  .footer h2 {
    font-weight: 100;
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    letter-spacing: normal;
  }
  .footer p {
    font-size: 1.4rem;
    line-height: 2.9rem;
  }
  .footer .btn {
    display: none;
  }
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26.2rem;
  height: 5rem;
  font-size: 1.6rem;
  line-height: 0.05em;
  color: #ffffff;
  border-radius: 999px;
}
@media (max-width: 734px) {
  .btn {
    width: 100%;
  }
}
.btn__line {
  background: #00c85f;
}
.btn__clear {
  border: 1px solid #ffffff;
}
.btn__hiwada {
  background: #c27741;
}
.btn__grade {
  background: linear-gradient(to right, #C27741, #FFCFAC);
}

.card__ttl {
  font-size: 1.8rem;
  line-height: 2rem;
  color: #c27741;
  display: flex;
  align-items: center;
}
.card__ttl::after {
  content: "";
  background-color: #c27741;
  height: 1px;
  width: 5rem;
  display: inline-block;
  margin-left: 2rem;
}
.card p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 0;
}
.card .num-txt {
  line-height: 1;
}

.post {
  border-radius: 1rem;
  border: dotted 2px #b4b4b4;
  text-align: left;
  position: relative;
}
.post__badge {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  padding: 0 1rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  background-color: #cba990;
  border-radius: 999px;
  font-size: 1.1rem;
}
.post__body {
  padding: 1rem 2rem 3rem;
}
.post h3 {
  font-size: 1.9rem;
}
.post__meta {
  font-size: 1rem;
  color: #c27741;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}
.post__job {
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
}
.post__lead {
  line-height: 2.6rem;
  margin-bottom: 2.2rem;
}
.post__link {
  color: #c27741;
  font-size: 1.2rem;
  font-weight: bold;
}

.drow {
  display: none;
}

@media (max-width: 1024px) {
  .drow {
    display: block;
  }
  .mobile-menu-icon {
    background-color: transparent;
    border: none;
    position: fixed;
    right: 4%;
    top: 2.2rem;
    z-index: 5000000;
  }
  .mobile-menu-icon span {
    background-color: #d99e74;
    width: 35px;
    height: 2px;
    display: block;
    margin-bottom: 9px;
    transition: transform 0.7s;
  }
  .mobile-menu-icon span:last-child {
    margin-bottom: 0;
    width: 25px;
  }
  button.menu-open > span {
    background-color: #000;
  }
  button.menu-open > span:nth-child(1) {
    transform: translateY(11px) rotate(135deg);
  }
  button.menu-open > span:nth-child(2) {
    transform: translateY(0) rotate(-135deg);
    width: 35px;
  }
  .menu-open {
    transform: none !important;
    transition: transform 0.7s;
  }
  body {
    margin: 0;
    padding: 0;
    position: relative;
    overflow-x: hidden;
  }
  .header {
    margin-top: 0;
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    right: 0;
    left: 0;
    transform: translateX(-100vh);
    background: #fff;
    flex-flow: column;
  }
  .header__nav-list {
    width: 100%;
    margin-top: 5rem;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .header__nav-list .current-menu-item a {
    height: 6rem;
    border-radius: 0;
    display: flex;
    align-items: center;
  }
  .header__nav-list li a {
    height: 6rem;
    display: flex;
    align-items: center;
  }
  .archive .header .menu-item:nth-of-type(2) a,
  .single .header .menu-item:nth-of-type(2) a {
    height: 6rem;
    border-radius: 0;
    display: flex;
    align-items: center;
  }
}
.fv {
  text-align: center;
  background: url(../img/fv.webp) no-repeat;
  background-size: cover;
  height: 64rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv__btn--area {
  max-width: 53.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 0 auto;
}
.fv__en-txt {
  font-family: "Montserrat", sans-serif;
  margin-top: 11rem;
  display: inline-block;
  font-size: 1.4rem;
  color: #f3e1ad;
  margin-bottom: 2rem;
  font-weight: 400;
  letter-spacing: 0.07em;
}
.fv h1 {
  margin-bottom: 2rem;
}
.fv p {
  font-size: 1.6rem;
  line-height: 2.6rem;
  margin-bottom: 5rem;
}
@media (max-width: 734px) {
  .fv {
    text-align: left;
    background: url(../img/fv_sp.webp) no-repeat;
    background-size: contain;
    height: 59.9rem;
    align-items: start;
  }
  .fv__btn--area {
    flex-flow: column;
  }
  .fv__en-txt {
    margin-top: 9.5rem;
    margin-bottom: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 2.6rem;
  }
  .fv h1 {
    margin-bottom: 1.6rem;
  }
  .fv p {
    font-size: 1.4rem;
  }
}

.hairstyle {
  padding: 11rem 0 8.9rem;
  text-align: center;
  position: relative;
}
.hairstyle::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  right: 0;
  left: 0;
  top: 0;
  margin: 0 auto;
}
.hairstyle .mySwiper .swiper-wrapper {
  transition-timing-function: linear;
}
.hairstyle h2 {
  margin-bottom: 3.2rem;
  font-family: "Montserrat", sans-serif;
}
@media (max-width: 734px) {
  .hairstyle {
    padding: 10.1rem 0 4.2rem;
  }
  .hairstyle::after {
    height: 7.1rem;
    width: 2.9rem;
  }
  .hairstyle h2 {
    font-size: 2rem;
    line-height: 1.9rem;
  }
}

.reson {
  padding: 12.2rem 0 9.7rem;
  background-color: #eee9e5;
  position: relative;
  z-index: 0;
}
.reson::after, .reson::before {
  position: absolute;
  content: "";
  display: block;
  height: 59.8rem;
  width: 25rem;
  background-color: #ece3dc;
  z-index: -1;
}
.reson::after {
  top: 0;
  right: 0;
}
.reson::before {
  bottom: 0;
  left: 0;
}
.reson__contents {
  position: relative;
}
.reson__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: -12.2rem;
}
.reson__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1.3rem;
}
.reson__item {
  background: #ffffff;
  border-radius: 1rem;
  text-align: center;
  grid-column: span 2;
}
.reson__item--center .card {
  text-align: center;
}
.reson__item--center .card img {
  width: 4.625rem;
  margin-bottom: 2.3rem;
}
.reson__item--center .card__inner {
  padding: 4.8rem 0;
}
.reson__item--center .card__ttl {
  justify-content: center;
  margin-bottom: 1.5rem;
}
.reson__item--main, .reson__item--wide {
  grid-column: span 3;
}
.reson__item--main {
  background: #2e2a29;
  color: #ffffff;
}
.reson__item--main .card__inner {
  text-align: left;
  padding: 5.7rem 3rem 0;
}
.reson__item--main .card__ttl {
  color: #ffffff;
  line-height: 3rem;
  margin-bottom: 1rem;
}
.reson__item--main .card__ttl::after {
  content: "";
  background-color: #ffffff;
}
.reson__item--main .card__price {
  font-size: 2.4rem;
  display: flex;
  align-items: baseline;
  margin-bottom: 2.259rem;
}
.reson__item--main .card .num-txt {
  font-size: 10.2rem;
  letter-spacing: -0.02em;
  font-style: italic;
}
.reson__item--main .card__min-txt {
  display: inline-block;
  transform: translate(0.5rem, -1rem);
}
.reson__item--main .card__subttl {
  font-size: 2.5rem;
  line-height: 3.5rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.reson__item--wide .card__inner {
  text-align: left;
  padding: 3.9rem 1.9rem 3.1rem;
}
.reson__item--wide .card__inner--top {
  padding: 0 2.2rem 3.4rem;
  border-bottom: dotted #2e2a29 2px;
}
.reson__item--wide .card__inner--btm {
  padding: 4.1rem 2.2rem 0;
}
.reson__item--wide .card__ttl {
  margin-bottom: 0.7rem;
}
.reson__item--wide .card__price {
  font-size: 2rem;
  display: flex;
  align-items: baseline;
  margin-bottom: 1.2rem;
}
.reson__item--wide .card .num-txt {
  font-size: 5.253rem;
  letter-spacing: normal;
  font-style: italic;
}
.reson__item--wide .card__min-txt {
  display: inline-block;
  transform: translate(0.5rem, -1rem);
}
.reson__item--wide .card__subttl {
  font-size: 2.5rem;
  line-height: 3.5rem;
  display: inline-block;
  margin-bottom: 1rem;
}
.reson__item--btm {
  grid-column: 1/-1;
  background-color: #cba990;
}
.reson__item--btm h3 {
  color: #ffffff;
  display: inline-block;
  width: 83.7rem;
  border-bottom: solid 1px #ffffff;
  padding-bottom: 1.3rem;
  margin-bottom: 3rem;
  letter-spacing: 0.08em;
}
.reson__item--btm .card {
  background-color: #ffffff;
  border-radius: 1rem;
}
.reson__item--btm .card__inner {
  text-align: center;
  padding: 3.9rem 1.9rem 3.1rem;
}
.reson__item--btm .card img {
  width: 4.625rem;
  margin-bottom: 2.3rem;
}
.reson__item--btm .card__ttl {
  margin-bottom: 1.6rem;
  color: #2e2a29;
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.reson__item--btm .card__ttl::after {
  display: none;
}
.reson__item--btm .card .num-txt {
  font-size: 4.5rem;
  letter-spacing: normal;
  color: #c27741;
  font-style: italic;
}
.reson__item--inner {
  width: 109.3rem;
  margin: 0 auto;
  padding: 5.4rem 0 7rem;
}
.reson__item--grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 734px) {
  .reson {
    padding: 13.7rem 0 5.6rem;
  }
  .reson::after {
    height: 48.1rem;
    width: 10.7rem;
  }
  .reson::before {
    display: none;
  }
  .reson__contents {
    position: relative;
  }
  .reson__contents::after {
    height: 7.1rem;
    width: 2.9rem;
    top: -8.8rem;
    left: 2.5rem;
  }
  .reson p {
    font-size: 1.8rem;
    line-height: 3rem;
  }
  .reson .card p {
    font-size: 1.6rem;
    line-height: 2.7rem;
  }
  .reson__grid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }
  .reson__item {
    grid-column: 1/-1;
  }
  .reson__item--main, .reson__item--wide, .reson__item--btm {
    grid-column: 1/-1;
  }
  .reson__item--main .card__inner {
    padding: 3.7rem 1rem 3rem;
  }
  .reson__item--main .card__ttl {
    margin-bottom: 0;
  }
  .reson__item--main .card__price {
    margin-bottom: 1.25rem;
  }
  .reson__item--main .card__subttl {
    font-size: 2rem;
    color: #f3e1ad;
  }
  .reson__item--wide .card .num-txt {
    font-size: 5rem;
  }
  .reson__item--wide .card__inner {
    padding: 3.9rem 1rem;
  }
  .reson__item--wide .card__inner--top {
    padding: 0 0.3rem 1.8rem;
  }
  .reson__item--wide .card__inner--btm {
    padding: 3rem 0.3rem 0;
  }
  .reson__item--wide .card__ttl {
    font-size: 1.6rem;
    margin-bottom: 1.4rem;
    padding-left: 0.5rem;
  }
  .reson__item--wide .card__price {
    margin-bottom: 1.8rem;
  }
  .reson__item--center .card__inner {
    padding: 3.4rem 0 2rem;
  }
  .reson__item--center .card img {
    margin-bottom: 2.8rem;
  }
  .reson__item--center .card__ttl {
    margin-bottom: 1.8rem;
  }
  .reson__item--btm h3 {
    width: 31.7rem;
    font-size: 1.8rem;
    line-height: 3rem;
    margin-bottom: 3.7rem;
  }
  .reson__item--btm .card.od1 {
    order: 1;
  }
  .reson__item--btm .card.od2 {
    order: 2;
  }
  .reson__item--btm .card.od3 {
    order: 3;
  }
  .reson__item--btm .card.od4 {
    order: 4;
  }
  .reson__item--inner {
    width: 100%;
  }
  .reson__item--grid {
    grid-template-columns: 1fr;
    width: 30rem;
    margin: 0 auto;
  }
  .reson__item--main .card .num-txt {
    font-size: 8.097rem;
    letter-spacing: -0.02em;
  }
}

.people {
  text-align: center;
  padding: 16.7rem 0 10.4rem;
}
.people::after, .people::before {
  position: absolute;
  content: "";
  display: block;
  height: 51.8rem;
  width: 25rem;
  background-color: #f2f2f2;
  z-index: -1;
}
.people::after {
  top: 0;
  left: 0;
}
.people::before {
  bottom: 0;
  right: 0;
}
.people__wrap {
  position: relative;
}
.people__wrap::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  right: 0;
  left: 0;
  top: -13.4rem;
  margin: 0 auto;
}
.people__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.3rem;
  margin-bottom: 7.5rem;
}
.people__txt {
  margin-bottom: 5rem;
}
.people__link {
  margin: 0 auto;
  width: 30.4rem;
}
@media (max-width: 734px) {
  .people {
    padding: 14.2rem 0 4.4rem;
  }
  .people::after {
    width: 11.9rem;
    height: 50.7rem;
  }
  .people::before {
    display: none;
  }
  .people__wrap::after {
    height: 7.1rem;
    width: 2.9rem;
    top: -9rem;
  }
  .people__txt {
    letter-spacing: -0.05rem;
  }
  .people__grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 3.1rem;
  }
  .people .post__body {
    padding: 1rem 2rem 4.4rem;
  }
  .people .post__link {
    font-size: 1.4rem;
  }
}

.education {
  padding: 12.2rem 0 9.2rem;
  background: url(../img/education.webp) no-repeat;
  background-size: cover;
}
.education__contents {
  position: relative;
}
.education__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: -12.2rem;
}
.education__txt {
  margin-bottom: 6.4rem;
}
.education__box {
  text-align: center;
  padding: 8.65rem 0 6rem;
  background: url(../img/debut_bg.webp) no-repeat;
  background-size: cover;
  color: #ffffff;
  margin-bottom: 8.6rem;
}
.education__box--badge {
  font-size: 1.9rem;
  color: #ffffff;
  background-color: #cba990;
  width: 29.2rem;
  height: 4rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4.4rem;
  font-family: "Noto Serif JP", serif;
}
.education__box h3 {
  margin-bottom: 3.4rem;
}
.education__box--grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 108rem;
  width: 100%;
  margin: 0 auto;
}
.education__box--grid img {
  width: 7rem;
  margin-bottom: 1.6rem;
}
.education__box--item {
  padding: 0 1.1rem;
  border-left: 1px dotted #ffffff;
}
.education__box--item:last-child {
  border-right: 1px dotted #ffffff;
}
.education__box--subttl {
  font-size: 1.8rem;
  line-height: 2.7rem;
  color: #f3e1ad;
  margin-bottom: 0.6rem;
}
.education__box--txt {
  line-height: 2.4rem;
  margin-bottom: 0;
}
.education__subttl {
  font-size: 2.8rem;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 8.5rem;
  position: relative;
}
.education__subttl::after, .education__subttl::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 70.7rem;
  background-color: #2e2a29;
}
.education__subttl::after {
  bottom: -1.4rem;
  right: 24.7rem;
}
.education__subttl::before {
  right: 20.7rem;
  bottom: -2.4rem;
}
.education__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
  text-align: center;
}
.education__grid .card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: dotted 2px #2e2a29;
}
.education__grid .card__inner {
  padding: 2.4rem 2.5rem 3.3rem;
}
.education__grid .card img {
  width: 6.4rem;
  margin-bottom: 0.6rem;
}
.education__grid .card__ttl {
  justify-content: center;
  margin-bottom: 2rem;
}
@media (max-width: 734px) {
  .education {
    padding: 13.7rem 0 6.5rem;
    background: url(../img/education_sp.webp) no-repeat;
    background-size: cover;
  }
  .education__contents {
    position: relative;
  }
  .education__contents::after {
    height: 7.1rem;
    width: 2.9rem;
    top: -8.8rem;
    left: 2.5rem;
  }
  .education .ja-ttl {
    margin-bottom: 1.7rem;
  }
  .education__txt {
    font-size: 1.8rem;
    line-height: 3rem;
    margin-bottom: 5rem;
  }
  .education__box {
    padding: 4.4rem 0 5.9rem;
    margin-bottom: 4.3rem;
  }
  .education__box--badge {
    margin: 0 auto 2.4rem;
  }
  .education__box--grid {
    grid-template-columns: 1fr;
  }
  .education__box h3 {
    margin-bottom: 3rem;
  }
  .education__box--item {
    width: 25.1rem;
    margin: 0 auto;
    padding: 3.2rem 0 3.1rem;
    border-left: none;
    border-bottom: 2px dotted #ffffff;
  }
  .education__box--item:first-child {
    padding-top: 0;
  }
  .education__box--item:nth-of-type(2) {
    order: 3;
  }
  .education__box--item:nth-of-type(3) {
    order: 2;
  }
  .education__box--item:nth-of-type(4) {
    order: 4;
    border-right: none;
  }
  .education__subttl {
    font-size: 2rem;
    line-height: 3.1rem;
    margin-bottom: 4.7rem;
  }
  .education__subttl::after, .education__subttl::before {
    position: absolute;
    content: "";
    height: 1px;
    width: 33rem;
    background-color: #2e2a29;
  }
  .education__subttl::after {
    right: 2.1rem;
  }
  .education__subttl::before {
    right: 0;
    bottom: -2rem;
  }
  .education__grid {
    grid-template-columns: 1fr;
    gap: 0.8rem;
  }
  .education__grid .card img {
    margin-bottom: 1.6rem;
  }
  .education__grid .card__inner {
    padding: 2.4rem 1.2rem 2.2rem;
  }
}

.work {
  padding: 13.5rem 0 11.1rem;
}
.work__contents {
  position: relative;
}
.work__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: -13.5rem;
}
.work__flex {
  display: flex;
  flex-flow: column;
  gap: 2.4rem;
}
.work__grid {
  display: grid;
  grid-template-columns: 28.6rem 1fr;
  border-radius: 1rem;
  border: 2px dotted #b4b4b4;
}
.work__grid--ttlarea {
  border-radius: 1rem 0 0 1rem;
  text-align: center;
  background-color: #cba990;
  color: #ffffff;
  padding: 5.9rem 0;
}
.work__grid--ttlarea img {
  width: 1.85rem;
  margin-bottom: 1.5rem;
}
.work__grid--ttl {
  font-size: 2rem;
  margin-bottom: 0.7rem;
}
.work__grid--en-ttl {
  font-size: 1.3rem;
}
.work__grid--tagarea {
  display: flex;
  flex-flow: wrap;
  gap: 1.2rem 1.5rem;
  padding: 5.4rem 2.7rem 5.4rem 3.3rem;
}
.work__grid--tag {
  padding: 0 3.4rem;
  height: 4.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6f1ed;
  font-size: 1.4rem;
  border-radius: 999px;
}
.work__grid--tag span {
  font-size: 1rem;
  color: #c27741;
  padding-right: 1rem;
}
@media (max-width: 734px) {
  .work {
    padding: 11.8rem 0 7.1rem;
  }
  .work__contents {
    position: relative;
  }
  .work__contents::after {
    height: 7.1rem;
    width: 2.9rem;
    top: -8.8rem;
    left: 2.5rem;
  }
  .work .ja-ttl {
    margin-bottom: 2rem;
  }
  .work p {
    font-size: 1.8rem;
    line-height: 3rem;
    margin-bottom: 2rem;
  }
  .work__flex {
    gap: 1.3rem;
  }
  .work__grid {
    grid-template-columns: 1fr;
  }
  .work__grid--ttlarea {
    border-radius: 1rem 1rem 0 0;
    padding: 3.7rem 0 3rem;
  }
  .work__grid--ttlarea img {
    margin-bottom: 0.2rem;
  }
  .work__grid--tagarea {
    gap: 0.9rem;
    padding: 2.6rem 1rem 2.5rem 1rem;
  }
  .work__grid--tag {
    padding: 1.4rem 3.4rem;
    height: auto;
    line-height: 1.9rem;
  }
}

.our {
  background: url(../img/our.webp) no-repeat;
  background-size: cover;
  padding: 18.8rem 0 6.9rem;
  color: #ffffff;
}
.our__contents {
  position: relative;
}
.our__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: -13.5rem;
}
.our__grid {
  display: grid;
  grid-template-columns: 55.8rem 1fr;
  gap: 3rem;
  align-items: center;
}
.our__grid--sub {
  display: flex;
  flex-flow: column;
  gap: 1.4rem;
}
.our__grid--box {
  background: rgba(255, 255, 255, 0.15);
  border-radius: 1rem;
  padding: 3.1rem 2.4rem 2.6rem;
}
.our__grid--ttl {
  font-size: 1.6rem;
  margin-bottom: 0.7rem;
  display: block;
  color: #f3e1ad;
}
.our__grid--txt {
  font-size: 1.3rem;
  padding-left: 1rem;
}
.our .en-ttl {
  color: #f3e1ad;
}
.our h2 {
  margin-bottom: 2.5rem;
}
.our p {
  line-height: 3.5rem;
}
.our p span {
  color: #f3e1ad;
}
@media (max-width: 734px) {
  .our {
    padding: 11.8rem 0 5.2rem;
  }
  .our__contents {
    position: relative;
  }
  .our__contents::after {
    height: 7.1rem;
    width: 2.9rem;
    top: -8.8rem;
    left: 2.5rem;
  }
  .our__grid {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
  }
  .our__grid--main p {
    font-size: 1.8rem;
    width: 32.5rem;
    line-height: 3rem;
  }
  .our__grid--sub {
    text-align: center;
    line-height: 2.6rem;
    gap: 1rem;
  }
}

.cta {
  text-align: center;
  background: url(../img/recruit_cta.webp) no-repeat;
  background-size: cover;
  padding: 12.7rem 0 13.7rem;
}
.cta h2 {
  font-size: 4rem;
  line-height: 1.9;
}
.cta p {
  margin-bottom: 5.3rem;
}
.cta__btn--area {
  max-width: 53.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.4rem;
  margin: 0 auto;
}
.cta .btn__clear {
  border: 1px solid #2e2a29;
  color: #2e2a29;
}
@media (max-width: 734px) {
  .cta {
    padding: 8.4rem 0 8.1rem;
  }
  .cta h2 {
    font-size: 3.5rem;
    line-height: 4.6rem;
    letter-spacing: 0.05em;
  }
  .cta h2 span {
    font-size: 1.8rem;
    display: block;
    margin-bottom: -5rem;
  }
  .cta p {
    margin-bottom: 2.6rem;
  }
  .cta__btn--area {
    flex-flow: column;
    width: 31.9rem;
    margin: 0 auto;
  }
}

.l-404 {
  min-height: 70vh;
  display: grid;
  place-items: center;
  padding: 8rem 0;
}

.not-found {
  width: 100%;
}
.not-found__inner {
  text-align: center;
}
.not-found__en {
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  color: #999;
  margin-bottom: 1.6rem;
}
.not-found__ttl {
  font-size: 3.2rem;
  line-height: 1.5;
  margin-bottom: 2.4rem;
  color: #2e2a29;
}
.not-found__txt {
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 4rem;
}
.not-found__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22rem;
  min-height: 5.6rem;
  padding: 0 2.4rem;
  border: 1px solid currentColor;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.6rem;
}

.s-fv {
  background: url(../img/interview_fv.webp) no-repeat;
  background-size: cover;
  height: 54.1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.s-fv__grid {
  display: grid;
  grid-template-columns: 24.7rem 1fr;
  align-items: center;
  gap: 6rem;
  width: 88.8rem;
  margin: 0 auto;
  transform: translateY(4rem);
}
.s-fv img {
  border-radius: 1rem;
  height: 35.5rem;
  -o-object-fit: cover;
     object-fit: cover;
}
.s-fv .en-ttl {
  font-family: "Noto Sans JP", sans-serif;
  display: inline-block;
  font-size: 1.4rem;
  color: #f3e1ad;
  margin-bottom: 2rem;
  font-weight: 100;
  letter-spacing: 0.07em;
}
.s-fv h1 {
  font-size: 3.6rem;
  margin-bottom: 1.1rem;
}
.s-fv__name {
  font-size: 1.6rem;
  display: inline-block;
  margin-bottom: 5.4rem;
  padding-left: 0.6rem;
}
.s-fv__tag-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}
.s-fv__tag {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  height: 3.9rem;
  width: 100%;
  border-radius: 999px;
  border: solid 1px #ffffff;
}
@media (max-width: 734px) {
  .s-fv {
    align-items: start;
    padding: 5.7rem 0 4.93rem;
  }
  .s-fv h1 {
    font-size: 2.4rem;
    margin-bottom: 1.7rem;
  }
  .s-fv .en-ttl {
    margin-bottom: 1.4rem;
  }
  .s-fv__grid {
    grid-template-columns: 1fr;
    width: 35rem;
    margin: 0 auto;
    gap: 2.2rem;
  }
  .s-fv__grid img {
    height: auto;
    width: 100%;
  }
  .s-fv__tag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem 1.2rem;
  }
  .s-fv__name {
    padding-left: 0;
    margin-bottom: 2.7rem;
  }
  .s-fv__tag {
    font-size: 1.178rem;
    height: 3.283rem;
  }
}

.interview {
  padding: 10.3rem 0 11.3rem;
  background-color: #f2f2f2;
}
.interview__contents {
  background: #ffffff;
  padding: 11.4rem 0 8.6rem;
  position: relative;
}
.interview__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: 0;
  left: 3rem;
}
.interview__inner {
  max-width: 100rem;
  margin: 0 auto 7rem;
  display: flex;
  flex-flow: column;
  gap: 2.627rem;
}
.interview__inner:first-child {
  margin-bottom: 2.627rem;
}
.interview__box {
  padding: 5.5rem 5.2rem 4.8rem;
  border: 2px dotted #b4b4b4;
  background-color: #f8f8f8;
}
.interview__box h2 {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #c27741;
  border-bottom: 1px solid #e5e5e5;
  padding-bottom: 2.2rem;
  margin-bottom: 1.7rem;
}
.interview__box h2 span.num {
  font-size: 1.8rem;
  font-family: "Montserrat", sans-serif;
}
.interview__box p {
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.interview__schedule {
  text-align: center;
  padding: 8.9rem 0;
  background-color: #eee9e5;
  margin-bottom: 2.627rem;
}
.interview__schedule--inner {
  width: 79.5rem;
  margin: 0 auto;
}
.interview__schedule h2 {
  font-size: 2.4rem;
  margin-bottom: 1.4rem;
}
.interview__schedule--day {
  font-family: "Montserrat", sans-serif;
  font-size: 4.4rem;
}
.interview__schedule--ttl-area {
  margin-bottom: 4.6rem;
}
.interview__schedule--contents {
  padding: 8rem 7.5rem;
  display: flex;
  flex-flow: column;
  gap: 4.5rem;
  background: #fff url(../img/noto.webp) no-repeat;
  background-size: cover;
  border: dotted 2px #b4b4b4;
}
.interview__schedule--grid {
  display: grid;
  width: 59.7rem;
  grid-template-columns: 6.8rem 1fr;
  gap: 3.3rem;
  margin: 0 auto;
}
.interview__schedule--grid:last-child .interview__schedule--time::after {
  display: none;
}
.interview__schedule--time {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 6.8rem;
  height: 6.8rem;
  border-radius: 50%;
  background-color: #eee9e5;
  font-size: 1.7rem;
  font-family: "Montserrat", sans-serif;
  position: relative;
}
.interview__schedule--time::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 10rem;
  background: #efefef;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.interview__schedule--txt {
  text-align: left;
}
.interview__schedule--txt h3 {
  font-weight: 500;
  font-size: 1.6rem;
  border-bottom: dotted 1px #000000;
  margin-bottom: 0.6rem;
}
.interview__schedule--txt span {
  font-size: 1.6rem;
}
.interview__schedule--txt span img {
  margin-left: 1rem;
  width: 1.9rem;
}
.interview__schedule--grid:nth-of-type(even) .interview__schedule--txt {
  color: #c27741;
}
.interview__schedule--grid:nth-of-type(even) .interview__schedule--txt h3 {
  border-bottom: dotted 1px #c27741;
}
@media (max-width: 734px) {
  .interview {
    padding: 0;
    background-color: #ffffff;
  }
  .interview__contents.contents {
    max-width: 100%;
    padding: 13.5rem 0 4.1rem;
    position: relative;
  }
  .interview__contents.contents::after {
    height: 7.1rem;
    width: 2.9rem;
    top: 2rem;
    left: 2.5rem;
  }
  .interview__inner {
    width: 35rem;
    gap: 1.5rem;
  }
  .interview__box {
    padding: 4.6rem 2rem 3.5rem;
  }
  .interview__box h2 {
    font-size: 2rem;
    line-height: 3rem;
    padding-bottom: 3rem;
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    text-indent: -3rem;
  }
  .interview__box h2 span {
    font-size: 1.8rem;
    line-height: 2.5rem;
  }
  .interview__box p {
    font-size: 1.5rem;
    line-height: 3rem;
    letter-spacing: 0.05em;
  }
  .interview__schedule {
    padding: 7.5rem 0;
  }
  .interview__schedule--ttl-area {
    margin-bottom: 3rem;
  }
  .interview__schedule--day {
    font-size: 3rem;
  }
  .interview__schedule h2 {
    font-size: 2rem;
  }
  .interview__schedule--inner {
    width: 35.1rem;
  }
  .interview__schedule--grid {
    width: 30.1rem;
    gap: 2.1rem;
  }
  .interview__schedule--contents {
    padding: 4.4rem 2rem;
    gap: 3.9rem;
  }
  .interview__schedule--txt span {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
  }
  .interview__schedule--txt span img {
    flex-shrink: 0;
  }
}

.single__btn--area {
  max-width: 53.8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.4rem;
  margin: 0 auto;
}
@media (max-width: 734px) {
  .single__btn--area {
    flex-flow: column;
    width: 31.9rem;
    margin: 0 auto;
  }
  .single__btn--area a {
    height: 5.7rem;
  }
  .single__btn--area a:last-child {
    order: 1;
  }
  .single__btn--area a:first-child {
    order: 2;
  }
}

.r-fv {
  text-align: center;
  background: url(../img/recruit_fv.webp) no-repeat;
  background-size: cover;
  height: 42.1rem;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.r-fv__en-txt {
  margin-top: 13.2rem;
  display: inline-block;
  font-size: 1.4rem;
  color: #f3e1ad;
  margin-bottom: 1rem;
  font-weight: 100;
  letter-spacing: 0.07em;
  font-family: "Montserrat", sans-serif;
}
.r-fv__ja-txt {
  font-family: "Montserrat", sans-serif;
  display: inline-block;
  font-size: 1.4rem;
  color: #f3e1ad;
  margin-bottom: 2.4rem;
  font-weight: 100;
  letter-spacing: 0.07em;
}
.r-fv h1 {
  margin-bottom: 1.22rem;
}
.r-fv p {
  line-height: 2.6rem;
  margin-bottom: 5rem;
}
.r-fv p span {
  color: #2e2a29;
}
@media (max-width: 734px) {
  .r-fv {
    background: url(../img/recruit_fv_sp.webp) no-repeat;
    align-items: start;
    height: 44.2rem;
  }
  .r-fv__en-txt {
    margin-top: 11.2rem;
  }
  .r-fv h1 {
    font-size: 3.6rem;
    margin-bottom: 2.22rem;
  }
  .r-fv__ja-txt {
    margin-bottom: 1.9rem;
  }
  .r-fv p {
    margin-bottom: 0;
  }
}

.about {
  padding: 14.3rem 0 9.6rem;
  background-color: #eee9e5;
  position: relative;
}
.about::after {
  position: absolute;
  content: "";
  background: url(../img/recruit_about.webp) no-repeat;
  background-size: contain;
  width: 55.601rem;
  height: 58.7rem;
  top: 8.2rem;
  right: 13.2rem;
}
.about__wrap {
  background: linear-gradient(to right, #ffffff 92.2rem, #eee9e5 92.2rem);
  padding-top: 13.5rem;
}
.about p {
  line-height: 2.6rem;
  margin-bottom: 5rem;
  line-height: 1.9;
  width: 57.7rem;
  letter-spacing: 0.05em;
  margin-bottom: 0;
  padding-bottom: 3.1rem;
}
.about p span {
  color: #2e2a29;
}
.about__contents {
  width: 70.3rem;
  position: relative;
}
.about__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: -13.5rem;
}
.about__count {
  background-color: #ffffff;
}
.about__count--inner {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto;
}
.about__count--border {
  width: 70.3rem;
  border-top: 1px solid #939393;
  padding-top: 3rem;
}
.about__count--grid {
  width: 62rem;
  display: flex;
  justify-content: space-between;
  text-align: center;
  padding-bottom: 9.396rem;
}
.about__count--counting {
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.about__count .num-txt {
  font-size: 6.639rem;
  color: #c27741;
  font-style: italic;
}
.about__count .min-txt {
  font-size: 1.593rem;
}
.about__count--txt {
  font-size: 1.4rem;
}
@media (max-width: 734px) {
  .about {
    padding: 31.5rem 0 5.8rem;
  }
  .about::after {
    width: 28.7rem;
    height: 30.3rem;
    top: 6rem;
    right: 2rem;
  }
  .about .ja-ttl {
    margin-bottom: 2.1rem;
  }
  .about__wrap {
    padding: 3.3rem 1.25rem 1.2rem;
    box-sizing: border-box;
    width: 35rem;
    margin: 0 auto;
    border-radius: 1rem 1rem 0 0;
    line-height: 3rem;
  }
  .about p {
    width: 32.5rem;
    padding-bottom: 0;
  }
  .about__count {
    border-radius: 0 0 1rem 1rem;
    width: 35rem;
    margin: 0 auto;
  }
  .about__count--grid {
    flex-flow: wrap;
    width: 31.684rem;
    padding-bottom: 4.396rem;
  }
  .about__count--item:first-child {
    width: 100%;
    margin-bottom: 1rem;
    position: relative;
  }
  .about__count--item:first-child::after {
    content: "";
    background-color: #b4b4b4;
    position: absolute;
    width: 1px;
    height: 11rem;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -12rem;
  }
  .about__count--border {
    width: 31.684rem;
    padding-top: 1rem;
    margin: 0 auto;
  }
}

.r-reson {
  padding: 13.5rem 0 6.9rem;
  text-align: center;
  position: relative;
}
.r-reson::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  right: 0;
  left: 0;
  top: 0;
  margin: 0 auto;
}
.r-reson .ja-ttl {
  margin-bottom: 3.5rem;
}
.r-reson__tag {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  max-width: 63.8rem;
  width: 100%;
  margin: 0 auto 5.3rem;
  gap: 2.8rem;
}
.r-reson__tag .tag {
  height: 4rem;
  border-radius: 999px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px #2e2a29 solid;
}
.r-reson__tag .tag span {
  font-size: 1.6rem;
}
.r-reson__grid {
  display: flex;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.1rem;
}
.r-reson__grid .card {
  border-radius: 1rem;
  border: 1px #c27741 solid;
  width: 39.2rem;
  text-align: left;
  padding: 0.7rem 2.6rem 3.4rem;
  box-shadow: 0 -0.9rem 0 #c27741;
}
.r-reson__grid .card__wrap {
  text-align: center;
}
.r-reson__grid .card .num-txt {
  font-size: 7.4rem;
  margin-bottom: 2rem;
  display: inline-block;
  font-family: "Cormorant Unicase", serif;
  font-style: italic;
  color: #c27741;
}
.r-reson__grid .card__ttl {
  justify-content: center;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  margin-bottom: 1.8rem;
}
.r-reson__grid .card__ttl::after {
  width: 8rem;
}
.r-reson__grid .card:last-of-type .card__ttl::after {
  width: 5rem;
}
@media (max-width: 734px) {
  .r-reson {
    padding-bottom: 6.2rem;
  }
  .r-reson::after {
    top: 5rem;
    height: 7.1rem;
    width: 2.9rem;
  }
  .r-reson .ja-ttl {
    margin-bottom: 3rem;
  }
  .r-reson__tag {
    grid-template-columns: 1fr;
    gap: 1rem;
    width: 25.4rem;
    margin-bottom: 4.74rem;
  }
  .r-reson__tag .tag {
    height: 4rem;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
  }
  .r-reson__tag .tag span {
    padding: 0.4rem 0 0 0.1rem;
  }
  .r-reson__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .r-reson__grid .card {
    width: 100%;
    box-sizing: border-box;
    padding: 0.7rem 0.7rem 3.4rem;
  }
  .r-reson__grid .card .num-txt {
    padding-left: 1.8rem;
  }
}

.r-education {
  padding: 15.7rem 0 10.1rem;
  background-color: #f2f2f2;
}
.r-education__inner {
  padding: 13.5rem 9rem 13.1rem;
  max-width: 97.3rem;
  width: 100%;
  background-color: #ffffff;
  box-sizing: border-box;
  position: relative;
}
.r-education__inner::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: 0;
}
.r-education__inner::before {
  position: absolute;
  background: url(../img/recruit_edu.webp) no-repeat;
  background-size: contain;
  content: "";
  width: 49.9rem;
  height: 51.13rem;
  top: -3rem;
  right: -23.5rem;
}
.r-education .ja-ttl {
  margin-bottom: 13rem;
}
.r-education__flow {
  display: flex;
  flex-flow: column;
  gap: 5.7rem;
}
.r-education__grid {
  display: grid;
  grid-template-columns: 11.3rem 1fr;
  gap: 5.7rem;
  align-items: center;
  width: 68.1rem;
}
.r-education__grid--year {
  width: 11.3rem;
  height: 11.3rem;
  border-radius: 50%;
  color: #ffffff;
  background-color: #e3b593;
  font-size: 8.024rem;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  vertical-align: baseline;
  position: relative;
  overflow: visible;
}
.r-education__grid--year::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 13rem;
  background: #c27741;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
}
.r-education__grid--year.akacha {
  background-color: #d99e74;
}
.r-education__grid--year.hiwada {
  font-size: 2.4rem;
  background-color: #c27741;
  font-style: normal;
}
.r-education__grid--year.hiwada::after {
  display: none;
}
.r-education__grid--year span {
  font-size: 1.337rem;
  font-style: normal;
  margin-top: 4rem;
}
.r-education__grid--ttl {
  font-size: 1.8rem;
  color: #c27741;
  padding: 0 0 0.5rem 0.5rem;
  border-bottom: 1px solid #2e2a29;
  margin-bottom: 1.4rem;
}
.r-education__grid--txt {
  font-size: 1.6rem;
  padding-left: 0.5rem;
  line-height: 1.7;
  width: 46.4rem;
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
.r-education .pc-ttlarea {
  display: block;
}
.r-education .sp-ttlarea {
  display: none;
}
@media (max-width: 734px) {
  .r-education .pc-ttlarea {
    display: none;
  }
  .r-education .sp-ttlarea {
    display: block;
  }
  .r-education {
    padding: 13.7rem 0 7rem;
  }
  .r-education .ja-ttl {
    margin-bottom: 2rem;
  }
  .r-education__inner {
    border-radius: 1rem;
    padding: 2.5rem 1.8rem 5.1rem;
  }
  .r-education__inner::before {
    position: static;
    display: block;
    width: 31.782rem;
    height: 32.565rem;
    top: 6rem;
    right: 2rem;
    margin-bottom: 4.53rem;
  }
  .r-education__inner::after {
    top: -19.5rem;
    left: 3.5rem;
    height: 7.1rem;
    width: 2.9rem;
  }
  .r-education__flow {
    gap: 3.8rem;
  }
  .r-education__grid {
    grid-template-columns: 1fr;
    width: 100%;
    gap: 1.7rem;
    text-align: center;
  }
  .r-education__grid--ttl {
    font-size: 2rem;
    padding-bottom: 1.6rem;
  }
  .r-education__grid--txt {
    width: auto;
    text-align: left;
  }
  .r-education__grid--year {
    margin: 0 auto;
  }
  .r-education__grid--year::after {
    display: none;
  }
}

.who {
  padding: 12.2rem 0 8.4rem;
  background-color: #eee9e5;
  position: relative;
  z-index: 0;
}
.who::after, .who::before {
  position: absolute;
  content: "";
  display: block;
  background-color: #ece3dc;
  z-index: -1;
}
.who::after {
  top: 0;
  right: 0;
  height: 59.8rem;
  width: 33.6rem;
}
.who::before {
  bottom: 0;
  left: 0;
  height: 21.4rem;
  width: 24.3rem;
}
.who__contents {
  position: relative;
}
.who__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: -12.2rem;
}
.who .ja-ttl {
  margin-bottom: 0;
}
.who__grid {
  display: grid;
  grid-template-columns: 54.8rem 1fr;
  align-items: center;
  gap: 4.4rem;
  margin-bottom: 4.5rem;
}
.who__grid p {
  margin-bottom: 0;
  line-height: 1.9;
}
.who__grid p strong {
  font-weight: bold;
}
.who__grid--box {
  border-radius: 1rem;
  background-color: #2e2a29;
  height: 26.7rem;
  padding: 3.5rem 3rem 3rem;
  box-sizing: border-box;
}
.who__grid--box h3 {
  font-size: 2rem;
  color: #f3e1ad;
  margin-bottom: 2rem;
}
.who__grid--box ul {
  display: flex;
  flex-flow: column;
  gap: 1.7rem;
}
.who__grid--box ul li {
  font-size: 1.6rem;
  color: #ffffff;
}
.who__grid--box ul li span {
  font-size: 0.8rem;
  color: #f3e1ad;
  padding: 0 1.3rem 0 0.6rem;
}
.who__btm-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}
.who__btm-grid .card {
  background-color: #ffffff;
  border-radius: 1rem;
  padding: 3.1rem 1.4rem;
  text-align: center;
}
.who__btm-grid .card .ja-ttl {
  font-size: 1.3rem;
  color: #2e2a29;
  position: relative;
  display: inline-block;
  margin-bottom: 1.6rem;
}
.who__btm-grid .card .ja-ttl::after {
  position: absolute;
  content: "●";
  font-size: 0.8rem;
  left: -1.6rem;
  top: 0.4rem;
  color: #c27741;
}
.who__btm-grid .card img {
  display: block;
  width: 6.84rem;
  margin: 0 auto 0.5rem;
}
.who__btm-grid .card__ttl {
  justify-content: center;
  margin-bottom: 1.16rem;
}
.who__btm-grid .card__ttl::after {
  content: "";
  width: 4.3rem;
  margin-left: 2rem;
}
.who__btm-grid .card p {
  letter-spacing: 0.05em;
}
@media (max-width: 734px) {
  .who {
    padding: 13.7rem 0 6.2rem;
  }
  .who::after {
    width: 10.7rem;
    height: 48.1rem;
  }
  .who::before {
    display: none;
  }
  .who__contents::after {
    height: 7.1rem;
    width: 2.9rem;
    top: -9.2rem;
    left: 2.1rem;
  }
  .who .ja-ttl {
    margin-bottom: 3rem;
  }
  .who__grid {
    grid-template-columns: 1fr;
    gap: 1.4rem;
    margin-bottom: 1.5rem;
  }
  .who__grid--box {
    padding: 3.5rem 1.5rem 4.6rem;
    height: auto;
  }
  .who__grid--box h3 {
    font-size: 1.7rem;
    margin-bottom: 2.7rem;
  }
  .who__grid--box ul li span {
    font-size: 0.8rem;
    color: #f3e1ad;
    padding: 0 1.2rem 0 0px;
  }
  .who__btm-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .who__btm-grid .card {
    padding: 3.1rem 3.4rem 2.5rem;
  }
}

.youkou {
  padding: 13.5rem 0;
}
.youkou__contents {
  position: relative;
}
.youkou__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: -13.5rem;
}
.youkou .mb {
  margin-bottom: 4.3rem;
  display: block;
}
.youkou__row {
  display: grid;
  grid-template-columns: 19.4rem 1fr;
}
.youkou__row:first-child .youkou__data {
  border-top: 2px dotted #b4b4b4;
}
.youkou__head {
  font-size: 1.8rem;
  color: #ffffff;
  background-color: #cba990;
  padding: 1px;
  font-family: "Noto Serif JP", serif;
  border-bottom: 1px solid #ffffff;
  padding: 2rem 4.4rem 2rem 5.4rem;
  display: flex;
  align-items: center;
}
.youkou__data {
  font-size: 1.6rem;
  padding: 1px;
  border-bottom: 2px dotted #b4b4b4;
  border-right: 2px dotted #b4b4b4;
  padding: 2.2rem 3.2rem;
  vertical-align: bottom;
}
.youkou__data span {
  color: #c27741;
  font-weight: bold;
}
@media (max-width: 734px) {
  .youkou {
    padding: 13.7rem 0 4.9rem;
  }
  .youkou__contents::after {
    height: 7.1rem;
    width: 2.9rem;
    top: -9.2rem;
    left: 3.6rem;
  }
  .youkou .mb {
    margin-bottom: 2rem;
  }
  .youkou__row {
    grid-template-columns: 9.5rem 1fr;
  }
  .youkou__head {
    padding: 0;
    justify-content: center;
    letter-spacing: -0.01rem;
  }
  .youkou__data {
    padding: 2.2rem;
  }
}

.flow {
  text-align: center;
  padding: 13.5rem 0 9.9rem;
  color: #ffffff;
  background: url(../img/recruit_flow.webp) no-repeat;
  background-size: cover;
  position: relative;
}
.flow::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  right: 0;
  left: 0;
  top: 0;
  margin: 0 auto;
}
.flow .en-ttl {
  color: #f3e1ad;
}
.flow .ja-ttl {
  margin-bottom: 5.5rem;
  color: #f3e1ad;
}
.flow__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2.5rem;
  margin-bottom: 4.2rem;
}
.flow__grid .card {
  border-radius: 1rem;
  border: 1px #c27741 solid;
  background-color: #ffffff;
  text-align: left;
  padding: 4rem 1.4rem 3rem;
  box-shadow: 0 -0.5rem 0 #c27741;
  border: 1px solid #c27741;
  position: relative;
}
.flow__grid .card::after {
  content: "";
  position: absolute;
  background: url(../img/flow-aro.svg) no-repeat;
  background-size: contain;
  width: 0.619rem;
  height: 1.038rem;
  top: 9rem;
  left: 23rem;
}
.flow__grid .card:last-child::after {
  display: none;
}
.flow__grid .card .num-txt {
  color: #c27741;
  font-size: 1.4rem;
  font-style: italic;
  padding-left: 1rem;
  margin-bottom: 2rem;
  display: block;
}
.flow__grid .card__inner {
  text-align: center;
}
.flow__grid .card__ttl {
  justify-content: center;
  margin-bottom: 1.4rem;
}
.flow__grid .card__ttl::after {
  width: 2.3rem;
  margin-left: 0.7rem;
}
.flow__grid .card p {
  color: #2e2a29;
}
.flow p {
  letter-spacing: 0.05em;
  margin-bottom: 0;
}
@media (max-width: 734px) {
  .flow {
    padding-bottom: 4.5rem;
  }
  .flow .ja-ttl {
    margin-bottom: 3.8rem;
  }
  .flow p {
    line-height: 2.6rem;
    text-align: left;
  }
  .flow__grid {
    grid-template-columns: 1fr;
    gap: 3.5rem;
    margin-bottom: 3rem;
  }
  .flow__grid .card {
    padding: 3.3rem 1.6rem 3.7rem;
  }
  .flow__grid .card::after {
    transform: rotate(90deg);
    width: 1.019rem;
    height: 1.708rem;
    top: auto;
    right: 0;
    left: 0;
    bottom: -2.5rem;
    margin: 0 auto;
  }
  .flow__grid .card .num-txt {
    padding-left: 2.2rem;
  }
  .flow__grid .card p {
    font-size: 1.6rem;
    text-align: center;
  }
}

.faq {
  padding: 13.5rem 0 10.8rem;
}
.faq__contents {
  position: relative;
}
.faq__contents::after {
  content: "";
  position: absolute;
  background: url(../img/section-icon.svg) no-repeat;
  background-size: contain;
  display: inline-block;
  width: 2.9rem;
  height: 9rem;
  top: -13.5rem;
}
.faq__area {
  margin-top: 5rem;
  display: flex;
  flex-flow: column;
  gap: 1.6rem;
}
.faq__item {
  padding: 3.6rem 11rem 3.6rem 6rem;
  background-color: #f9f9f9;
}
.faq__question {
  display: grid;
  grid-template-columns: 2.2rem 1fr 1.1rem;
  align-items: center;
  gap: 1.8rem;
  cursor: pointer;
  list-style: none;
}
.faq__question::-webkit-details-marker {
  display: none;
}
.faq__q, .faq__a {
  color: #c1743e;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
  font-family: "Montserrat", sans-serif;
}
.faq__a {
  color: #2e2a29;
}
.faq__question-txt {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}
.faq__icon {
  display: block;
  color: #c1743e;
  font-size: 2rem;
  font-weight: 400;
  line-height: 1;
  transition: transform 0.3s ease;
}
.faq__icon::before {
  content: "+";
}
.faq__item[open] .faq__icon {
  transform: rotate(45deg);
}
.faq__answer {
  display: grid;
  grid-template-columns: 2.2rem 1fr;
  align-items: baseline;
  gap: 1.8rem;
  position: relative;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0;
  transform: translateY(-0.8rem);
  transition: max-height 0.4s ease, opacity 0.3s ease, margin-top 0.3s ease, padding 0.3s ease, transform 0.3s ease;
}
.faq__answer::after {
  position: absolute;
  content: "";
  border-top: 2px dotted #b4b4b4;
  height: 1px;
  width: calc(100% - 4rem);
  top: 0;
  left: 4rem;
  margin: 0 auto;
}
.faq__item[open] .faq__answer {
  max-height: 30rem;
  opacity: 1;
  margin-top: 1.8rem;
  padding: 1.6rem 0 0;
  transform: translateY(0);
}
.faq__answer p {
  font-size: 1.4rem;
  line-height: 3rem;
  letter-spacing: 0.13em;
  margin-bottom: 0;
}
@media (max-width: 734px) {
  .faq__area {
    margin-top: 3.2rem;
  }
  .faq__item {
    padding: 1rem 2rem;
  }
  .faq__icon {
    font-size: 3rem;
  }
  .faq__question {
    grid-template-columns: 2rem 1fr 1.9rem;
    align-items: flex-start;
    gap: 1.2rem;
  }
  .faq__q, .faq__a {
    font-size: 1.8rem;
  }
  .faq__question-txt {
    font-size: 1.6rem;
  }
  .faq__answer {
    grid-template-columns: 3rem 1fr;
    gap: 1.2rem;
  }
  .faq__item[open] .faq__answer {
    padding: 1.5rem 0 0;
    margin-top: 0.8rem;
  }
  .faq__answer p {
    font-size: 1.5rem;
    line-height: 1.9;
  }
}

.archive h1 {
  margin-bottom: 0;
}
@media (max-width: 734px) {
  .archive h1 {
    font-size: 3.6rem;
  }
}
.archive .r-fv {
  align-items: center;
}
.archive .archive {
  padding: 13.2rem 0;
}
@media (max-width: 734px) {
  .archive .archive {
    padding: 6.2rem 0;
  }
}

.privacy {
  padding: 12rem 0;
}
.privacy h1 {
  color: #000;
  font-size: 2.4rem;
  font-weight: bold;
}
.privacy li {
  font-size: 1.6rem;
  line-height: 2;
}
.privacy .policy_inner {
  max-width: 850px;
  margin: 0 auto;
  padding: 0 1em;
}
.privacy .policy_list {
  margin-bottom: 4em;
  color: #000;
}
.privacy .main_text {
  margin: 6em auto 5em;
  padding: 15px;
  font-size: 1.6rem;
}
.privacy .policy_list h2 {
  position: relative;
  margin: 0 0 5px 15px;
  padding-left: 25px;
  font-weight: bold;
  font-size: 1.8rem;
}
.privacy .policy_list h2:before {
  content: "";
  background: url(../img/c_ttl2.png) no-repeat left center;
  background-size: contain;
  width: 1.125em;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.privacy .policy_list .info_text {
  margin-left: 25px;
  padding: 15px;
  font-size: 1.6rem;
  line-height: 2;
}
.privacy .policy_list .policy_title {
  border-bottom: dotted 2px #ccc;
}
.privacy .policy_target_list {
  margin: 2em auto;
  padding: 0 1em;
}
.privacy .policy_target_list ol li {
  text-indent: -1em;
  padding-left: 1em;
}
.privacy .policy_target_list_temporary ul li {
  text-indent: 0em;
  padding-left: 1em;
}
.privacy span.pdf_insert a {
  text-decoration: underline;
}
@media all and (max-width: 767px) {
  .privacy .main_text {
    margin: 4em auto 3em;
  }
  .privacy .policy_list {
    margin-bottom: 2em;
  }
  .privacy .policy_list h3 {
    margin: 0 0 5px 0;
    font-weight: bold;
    font-size: 1.6rem;
  }
  .privacy .policy_list .info_text {
    margin-left: 0;
    font-size: 1.6rem;
  }
}