@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

html, body {
  height: 100%;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

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

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

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

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 基本設定
-------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  white-space: normal;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #000;
  line-height: 2;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  -webkit-font-feature-settings: "pkna" 1;
          font-feature-settings: "pkna" 1;
  overflow-x: hidden;
  letter-spacing: 0.06em;
}
@media (min-width: 769px) {
  body {
    font-size: 1.6rem;
    letter-spacing: 0.06em;
  }
}
@media (min-width: 1126px) {
  body {
    line-height: 2.4;
  }
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}

a {
  color: #000;
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  z-index: 1;
  position: relative;
}
@media (min-width: 769px) {
  a:hover {
    opacity: 0.6;
  }
}

span {
  display: inline-block;
}

li {
  list-style: none;
}

.fade {
  transform: translate3d(0, 50px, 0);
  opacity: 0;
}
.fade.fadein {
  transform: translate3d(0, 0, 0);
  transition: 1s;
  opacity: 1;
}

/*-------------------------------------------------------------
 レイアウト
-------------------------------------------------------------*/
body > .box-all {
  border: 1.6rem solid #0F5C41;
}
@media (min-width: 769px) {
  body > .box-all {
    border: 2.4rem solid #0F5C41;
  }
}
@media (min-width: 1126px) {
  body > .box-all {
    border: 3.2rem solid #0F5C41;
  }
}

.container {
  width: 88.8%;
  max-width: 123.2rem;
  margin: 0 auto;
}
@media (min-width: 769px) {
  .container {
    min-width: 65rem;
    width: 80%;
  }
}

.no-sp {
  display: none !important;
}
@media (min-width: 769px) {
  .no-sp {
    display: block !important;
  }
}

.only-sp {
  display: block !important;
}
@media (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

.no-pc {
  display: block !important;
}
@media (min-width: 1126px) {
  .no-pc {
    display: none !important;
  }
}

.only-pc {
  display: none !important;
}
@media (min-width: 1126px) {
  .only-pc {
    display: block !important;
  }
}

.font-en {
  font-family: "Inter", sans-serif;
}

.font-ttl {
  font-family: Futura, "Outfit", sans-serif;
}

.txt-center {
  text-align: center;
}

@media (min-width: 769px) {
  .pc-center {
    text-align: center;
  }
}

.sp-center {
  text-align: center;
}
@media (min-width: 769px) {
  .sp-center {
    text-align: left;
  }
}

.ttl-pc-center {
  text-align: left !important;
}
@media (min-width: 769px) {
  .ttl-pc-center {
    text-align: center !important;
  }
}

@media (min-width: 769px) {
  .hover-underline .hover-underline-txt {
    position: relative;
    z-index: 1;
    display: inline;
  }
  .hover-underline .hover-underline-txt.green::after {
    background: #0F5C41;
  }
  .hover-underline .hover-underline-txt.black::after {
    background: #000;
  }
  .hover-underline .hover-underline-txt::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -0.2em; /*テキストからの距離*/
    width: 0%; /*初期状態では下線非表示*/
    height: 0.3rem; /*下線の高さ*/
    z-index: -1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .hover-underline:hover {
    opacity: 1;
  }
  .hover-underline:hover .hover-underline-txt::after {
    width: 100%;
  }
}

/*-------------------------------------------------------------
 その他共通スタイル
-------------------------------------------------------------*/
.bg {
  background: #FAF6F3;
}

main {
  padding: 13.3rem 0 7rem;
}
@media (min-width: 769px) {
  main {
    padding: 17.8rem 0 9.4rem;
  }
}
@media (min-width: 1126px) {
  main {
    padding-top: 18.6rem;
  }
}
main.home {
  padding: 0;
}

.mt24 {
  margin-top: 0.55rem;
}
@media (min-width: 769px) {
  .mt24 {
    margin-top: 1.1rem;
  }
}

.mt32 {
  margin-top: 1.35rem;
}
@media (min-width: 769px) {
  .mt32 {
    margin-top: 1.9rem;
  }
}

.mt40 {
  margin-top: 1.95rem;
}
@media (min-width: 769px) {
  .mt40 {
    margin-top: 2.7rem;
  }
}

.mt48 {
  margin-top: 2.15rem;
}
@media (min-width: 769px) {
  .mt48 {
    margin-top: 3.5rem;
  }
}

.mt64 {
  margin-top: 3.75rem;
}
@media (min-width: 769px) {
  .mt64 {
    margin-top: 5.1rem;
  }
}

.mt80 {
  margin-top: 4.95rem;
}
@media (min-width: 769px) {
  .mt80 {
    margin-top: 6.7rem;
  }
}

.mt96 {
  margin-top: 6.15rem;
}
@media (min-width: 769px) {
  .mt96 {
    margin-top: 8.3rem;
  }
}

.mt128 {
  margin-top: 8.55rem;
}
@media (min-width: 769px) {
  .mt128 {
    margin-top: 11.5rem;
  }
}

.flex2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.2rem;
}
@media (min-width: 769px) {
  .flex2 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.8rem;
  }
  .flex2 .item {
    width: calc(50% - 2.4rem);
  }
}

.flex3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 3.2rem;
}
@media (min-width: 769px) {
  .flex3 {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 4.8rem;
  }
  .flex3 .item {
    width: calc((100% - 9.6rem) / 3);
  }
}

/*-------------------------------------------------------------
 下層ページ 共通パーツ
-------------------------------------------------------------*/
.mod-youtube {
  margin-left: auto;
  margin-right: auto;
  max-width: 72rem;
}
.mod-youtube iframe {
  width: 100%;
  aspect-ratio: 720/405;
}

.list-breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.6rem;
  width: 100%;
  overflow: auto;
}
.list-breadcrumb .item {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.447;
}
.list-breadcrumb .item + .item::before {
  content: "＞ ";
  font-size: 1rem;
}
.list-breadcrumb .item a {
  color: #0F5C41;
  text-decoration: underline;
}
.list-breadcrumb .item, .list-breadcrumb .item a, .list-breadcrumb .item span {
  white-space: nowrap;
}
@media (min-width: 769px) {
  .list-breadcrumb {
    margin-bottom: 2.4rem;
    gap: 0.6rem;
  }
  .list-breadcrumb .item {
    font-size: 1.4rem;
  }
  .list-breadcrumb .item + .item::before {
    font-size: 1.2rem;
  }
}

.box-other {
  padding: 6rem 0;
}
.box-other .ttl-03 {
  line-height: 1;
}
.box-other .list-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.4rem 4.8rem;
}
.box-other .list-link .item {
  width: 24rem;
}
.box-other .list-link .item a {
  display: block;
  background: #0F5C41;
  border-radius: 8rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  padding: 1.4rem 0;
  border: 1px solid #0F5C41;
}
@media (min-width: 769px) {
  .box-other {
    padding: 8rem 0;
  }
  .box-other .container {
    width: 100%;
  }
  .box-other .list-link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    margin: 0 auto;
    width: 52.8rem;
  }
  .box-other .list-link .item a {
    font-size: 2rem;
    padding: 2.1rem 0;
  }
  .box-other .list-link .item a:hover {
    opacity: 1;
    background: #fff;
    color: #0F5C41;
  }
}
@media (min-width: 1300px) {
  .box-other .list-link {
    width: 100%;
  }
}

.box-01 {
  position: relative;
  margin-top: 13rem;
  padding: 6.4rem 2rem 4.8rem;
  background: #0F5C41;
  border-radius: 2.4rem;
  max-width: 91.6rem;
  margin-left: auto;
  margin-right: auto;
}
.box-01 .mod-ttl {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #0F5C41;
  padding: 0.8rem;
  border-radius: 0.6rem;
  width: 80%;
  max-width: 25.6rem;
}
.box-01 .mod-ttl .ttl {
  white-space: nowrap;
  background: #fff;
  border-radius: 0.6rem;
  color: #0F5C41;
  font-size: 1.8rem;
  line-height: 2.6rem;
  font-weight: 900;
  padding: 1.4rem 0;
}
.box-01 .ico {
  margin: 0 auto;
  width: 3.2rem;
  line-height: 1;
}
.box-01 .ico img {
  width: 100%;
}
.box-01 .txt {
  color: #fff;
  line-height: 2;
}
@media (min-width: 769px) {
  .box-01 {
    margin-top: 17.6rem;
    padding: 6.8rem 4rem 4.8rem;
  }
  .box-01 .mod-ttl {
    padding: 1rem;
    width: auto;
    max-width: 100%;
    min-width: 68%;
  }
  .box-01 .mod-ttl .ttl {
    font-size: 2.4rem;
    line-height: 1.25;
    padding: 2.3rem 3.5rem;
  }
  .box-01 .ico {
    width: 4.8rem;
  }
}
@media (min-width: 1126px) {
  .box-01 {
    padding: 6.8rem 9.6rem 4.8rem;
  }
  .box-01 .mod-ttl .ttl {
    padding: 2.3rem 3.5rem;
  }
}

.list-q_a .item + .item {
  margin-top: 2.4rem;
}

.list-q_a .item dt {
  padding: 2rem 5.8rem 2rem 6.5rem;
  background: #0F5C41;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.096rem;
  line-height: 2.3rem;
  border-radius: 1.2rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  position: relative;
  line-height: 1.7;
  cursor: pointer;
}

.list-q_a .item dt span {
  position: absolute;
  top: 2.45rem;
  left: 2rem;
  font-size: 2rem;
  font-weight: 700;
  display: block;
  line-height: 1;
}

.list-q_a .item dt::before, .list-q_a .item dt::after {
  position: absolute;
  display: block;
  content: "";
  width: 1.8rem;
  height: 0.3rem;
  top: 3.2rem;
  right: 2rem;
  background: #fff;
}

.list-q_a .item dt::after {
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

.list-q_a .item dd {
  font-weight: 700;
  line-height: 2;
  font-size: 1.4rem;
  letter-spacing: 0.084rem;
  border-radius: 1.2rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
  opacity: 0;
  height: 0;
  background: #FAF6F3;
  padding: 0 2rem;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  height: 0;
  overflow: hidden;
}

.list-q_a .item dd .list-img {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 2.7rem 1.7rem;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.list-q_a .item dd .list-img .txt {
  font-size: 1.2rem;
  margin-top: 1.2rem;
}

.list-q_a .item dd p + p, .list-q_a .item dd .list-img + p {
  margin-top: 3.2rem;
}

.list-q_a .item.open dt {
  border-radius: 1.2rem 1.2rem 0 0;
}

.list-q_a .item.open dt::after {
  -webkit-transform: rotate(0);
  transform: rotate(0);
}

.list-q_a .item.open dd {
  border-radius: 0 0 1.2rem 1.2rem;
  opacity: 1;
  height: auto;
  padding: 2rem;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

@media (min-width: 996px) {
  .list-q_a .item + .item {
    margin-top: 3.2rem;
  }
  .list-q_a .item dt {
    padding: 2.3rem 9.6rem 2.3rem 11.1rem;
    font-size: 2rem;
    letter-spacing: 0.12rem;
    border-radius: 1.2rem;
  }
  .list-q_a .item dt span {
    top: 2.8rem;
    left: 4.8rem;
    font-size: 2.4rem;
  }
  .list-q_a .item dt::before, .list-q_a .item dt::after {
    width: 2.4rem;
    height: 0.4rem;
    top: 3.7rem;
    right: 4.8rem;
  }
  .list-q_a .item dd {
    font-size: 1.6rem;
    letter-spacing: 0.096rem;
    padding: 0 9.6rem 0 11.1rem;
  }
  .list-q_a .item dd .list-img {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .list-q_a .item dd .list-img .item2 {
    width: calc((100% - 3.4rem) / 3);
  }
  .list-q_a .item dd .list-img .txt {
    font-size: 1.4rem;
  }
  .list-q_a .item.open dd {
    padding: 3.2rem 9.6rem 3.2rem 11.1rem;
  }
}
.list-q_a.question-answer .item dt {
  padding-left: 7.8rem;
}

.list-q_a.question-answer .item dd {
  padding-left: 7.8rem;
}

.list-q_a.question-answer .item dd .answer::before {
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: #0F5C41;
  content: "A.";
  display: inline-block;
  margin-left: -5rem;
  margin-right: 2.5rem;
  font-family: "Futura", sans-serif;
}

@media (min-width: 996px) {
  .list-q_a.question-answer .item dt {
    padding-left: 12rem;
  }
  .list-q_a.question-answer .item dd {
    padding-left: 12rem;
  }
  .list-q_a.question-answer .item dd .answer::before {
    font-size: 2.4rem;
    margin-left: -7rem;
    margin-right: 4.3rem;
  }
}
/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.ttl-01 {
  margin-bottom: 8.55rem;
}
.ttl-01 .jp {
  display: block;
  line-height: 1.447;
  color: #0F5C41;
  font-size: 3.2rem;
  font-weight: 900;
}
.ttl-01 .en {
  display: block;
  line-height: 1;
  color: #FFC131;
  margin-top: 1.7rem;
  font-weight: 700;
  font-size: 2rem;
}
@media (min-width: 769px) {
  .ttl-01 {
    margin-bottom: 11.5rem;
  }
  .ttl-01 .jp {
    font-size: 4.8rem;
  }
  .ttl-01 .en {
    margin-top: 2.2rem;
    font-size: 2.4rem;
  }
}

.home .ttl-01 {
  margin-bottom: 0;
}

.ttl-01 {
  -webkit-clip-path: polygon(50% 0, 50% 100%, 50% 100%, 50% 0);
          clip-path: polygon(50% 0, 50% 100%, 50% 100%, 50% 0);
}

.fadein .ttl-01, .fadein.ttl-01 {
  -webkit-animation-name: kf_c03;
          animation-name: kf_c03;
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes kf_c03 {
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  }
}

@keyframes kf_c03 {
  100% {
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
            clip-path: polygon(100% 0, 100% 100%, 0 100%, 0 0);
  }
}
.ttl-02 {
  font-size: 3rem;
  line-height: 1.45;
  color: #0F5C41;
  padding-bottom: 2.3rem;
  text-align: center;
  position: relative;
  font-weight: 900;
}
.ttl-02::after {
  display: block;
  content: "";
  width: 4.8rem;
  height: 0.6rem;
  background: #0F5C41;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
@media (min-width: 769px) {
  .ttl-02 {
    font-size: 4rem;
    padding-bottom: 3.1rem;
  }
  .ttl-02::after {
    width: 6.4rem;
    height: 0.8rem;
  }
}

.ttl-03 {
  font-size: 2.4rem;
  line-height: 1.625;
  color: #0F5C41;
  margin-bottom: 3.75rem;
  text-align: center;
  font-weight: 900;
}
.ttl-03.small {
  font-size: 2rem;
}
@media (min-width: 769px) {
  .ttl-03 {
    font-size: 3.2rem;
    margin-bottom: 5.1rem;
  }
  .ttl-03.small {
    font-size: 2.6rem;
  }
}

.ttl-04 {
  font-size: 2rem;
  line-height: 1.447;
  color: #0F5C41;
  margin-bottom: 1.55rem;
  text-align: center;
  font-weight: 900;
}
@media (min-width: 769px) {
  .ttl-04 {
    font-size: 2.4rem;
    margin-bottom: 2.2rem;
  }
}

.ttl-05 {
  font-size: 1.8rem;
  line-height: 1.447;
  color: #fff;
  margin-bottom: 1.55rem;
  text-align: center;
  font-weight: 900;
}
@media (min-width: 769px) {
  .ttl-05 {
    font-size: 2rem;
    margin-bottom: 2.2rem;
  }
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.mod-btn .btn {
  font-size: 1.8rem;
  font-weight: 900;
  letter-spacing: 0.108rem;
  padding-left: 4.6rem;
  line-height: 2.8rem;
  color: #0F5C41;
  position: relative;
}
.mod-btn .btn::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  background: url(../img/common/yajirushi.svg);
  background-size: contain;
  background-repeat: no-repeat;
  height: 2.8rem;
  width: 2.8rem;
}
.mod-btn .btn.reversal {
  color: #fff;
}
.mod-btn .btn.reversal::before {
  background: url(../img/common/yajirushi-r.svg);
}
@media (min-width: 769px) {
  .mod-btn .btn {
    font-size: 2rem;
    letter-spacing: 0.12rem;
    line-height: 3.2rem;
    padding-left: 4.8rem;
  }
  .mod-btn .btn::before {
    height: 3.2rem;
    width: 3.2rem;
  }
}
.mod-btn .btn2 {
  max-width: 24rem;
  display: block;
  background: #0F5C41;
  border-radius: 8rem;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  padding: 1.4rem 0;
  border: 1px solid #0F5C41;
}
.mod-btn .btn2.center {
  margin-left: auto;
  margin-right: auto;
}
.mod-btn .btn2.reserve {
  color: #0F5C41;
  background: #fff;
  border: 1px solid #fff;
}
@media (min-width: 769px) {
  .mod-btn .btn2 {
    font-size: 2rem;
    padding: 2.1rem 0;
  }
  .mod-btn .btn2:hover {
    opacity: 1;
    background: #fff;
    color: #0F5C41;
  }
  .mod-btn .btn2:hover.reserve {
    background: #0F5C41;
    color: #fff;
  }
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.header {
  position: relative;
}
.header .logo {
  position: absolute;
  top: 1.7rem;
  left: 2.026rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.header .logo .img {
  display: block;
  width: 12rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.header .logo .txt {
  display: block;
  line-height: 1;
  font-size: 1rem;
  font-weight: 900;
  letter-spacing: 0.06rem;
  color: #0F5C41;
  margin-top: 1.2rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
@media (min-width: 769px) {
  .header .logo {
    top: 2.4rem;
    left: 3.2rem;
  }
  .header .logo .img {
    width: 16rem;
  }
  .header .logo .txt {
    font-size: 1.3rem;
    letter-spacing: 0.108rem;
    margin-top: 1.4rem;
  }
  .header .logo .corporate {
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
    color: #0F5C41;
    position: absolute;
    left: calc(100% + 2rem);
    top: 0;
    white-space: nowrap;
  }
  .header .logo .corporate span {
    white-space: nowrap;
  }
}
@media (min-width: 1126px) {
  .header .logo {
    top: 3.9rem;
    left: 6.4rem;
  }
  .header .logo .img {
    width: 22.8rem;
  }
  .header .logo .txt {
    font-size: 1.8rem;
    margin-top: 2.4rem;
  }
  .header .logo .corporate {
    font-size: 1.4rem;
    font-weight: 900;
    line-height: 1;
    color: #0F5C41;
    left: calc(100% + 2.4rem);
    top: 0;
  }
}
.header .btn-hamburger {
  position: fixed;
  z-index: 1000;
  top: 3.2rem;
  right: 3.2rem;
  width: 6.4rem;
  height: 6.4rem;
  background: #0F5C41;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 50%;
  cursor: pointer;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 0.6rem;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.header .btn-hamburger span {
  display: block;
  width: 2.4rem;
  height: 0.2rem;
  background: #fff;
  position: relative;
  -webkit-transition: 0.5s all;
  transition: 0.5s all;
}
.header .btn-hamburger.active {
  background: #fff;
}
.header .btn-hamburger.active span {
  background: #0F5C41;
}
.header .btn-hamburger.active span:first-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  position: absolute;
}
.header .btn-hamburger.active span:nth-child(2) {
  opacity: 0;
}
.header .btn-hamburger.active span:last-child {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
}
@media (min-width: 769px) {
  .header .btn-hamburger {
    display: none !important;
  }
}
.header .g-nav {
  position: fixed;
  overflow: scroll;
  z-index: 999;
  top: 0;
  right: -120%;
  width: 100%;
  height: 100vh;
  background: #0F5C41;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  padding-bottom: 14.5rem;
}
.header .g-nav.active {
  right: 0;
}
.header .g-nav .logo {
  top: 3.3rem;
  left: 3.626rem;
}
.header .g-nav .logo .txt {
  color: #fff;
}
.header .g-nav .list-link_sp {
  margin: 13.6rem 0 4.8rem;
}
.header .g-nav .list-link_sp .item a {
  border-bottom: 2px solid #fff;
  padding: 2.4rem 0 1.6rem;
  display: block;
}
.header .g-nav .list-link_sp .item .en {
  line-height: 1;
  font-size: 2.8rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0;
}
.header .g-nav .list-link_sp .item .jp {
  margin-top: 1.6rem;
  font-size: 1.2rem;
  font-weight: 900;
  line-height: 1;
  color: #fff;
}
@media (min-width: 769px) {
  .header .list-link {
    position: absolute;
    top: 2.4rem;
    right: 3.2rem;
    font-size: 1.4rem;
    font-weight: 900;
    letter-spacing: 0.096rem;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.2rem;
  }
  .header .list-link .item {
    text-align: right;
    line-height: 1;
  }
  .header .list-link .item .active {
    color: #0F5C41;
    pointer-events: none;
  }
}
@media (min-width: 1126px) {
  .header .list-link {
    gap: 3.6rem;
    top: 3.9rem;
    right: 6.4rem;
    font-size: 1.6rem;
  }
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.footer {
  background: #0F5C41;
  padding: 3.2rem 0;
  position: relative;
}
.footer .page-top {
  position: absolute;
  top: 3.2rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.footer .page-top .yajirushi {
  width: 4.8rem;
  height: 4.8rem;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.footer .page-top .yajirushi img {
  width: 100%;
}
.footer .page-top .txt {
  color: #fff;
  margin-top: 1.6rem;
  font-size: 1.2rem;
  font-weight: 900;
  letter-spacing: 0.072rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .footer .page-top {
    position: absolute;
    top: calc(50% + 1.2rem);
    left: calc(100% - 20rem);
    transform: translate(100%, -50%);
    -webkit-transform: translate(100%, -50%);
    -ms-transform: translate(100%, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .footer .page-top .yajirushi {
    width: 5.6rem;
    height: 5.6rem;
  }
  .footer .page-top .yajirushi img {
    width: 100%;
  }
  .footer .page-top .txt {
    font-size: 1.4rem;
    letter-spacing: 0.084rem;
  }
}
.footer .logo {
  width: 12.3rem;
  margin: 12.1rem auto 2.4rem;
}
.footer .logo img {
  width: 100%;
}
.footer .copyright {
  font-size: 0.8rem;
  letter-spacing: 0.048rem;
  font-weight: 700;
  color: #fff;
}
@media (min-width: 769px) {
  .footer {
    padding: 5.6rem 0 1.6rem;
  }
  .footer .logo {
    width: 21.3rem;
    margin: 0 auto 4rem;
  }
  .footer .copyright {
    font-size: 1.2rem;
    letter-spacing: 0.072rem;
  }
}
@media (min-width: 1126px) {
  .footer {
    padding-bottom: 0.8rem;
  }
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.home {
  /* ------------------------------------------------------*/
  /* ------------------------------------------------------*/
}
.home .area-fv.fadein .img-fv img {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.home .area-fv.fadein .ttl-fv.img {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
.home .area-fv {
  position: relative;
  padding: 10.4rem 0 3.4rem;
}
@media (min-width: 769px) {
  .home .area-fv {
    padding: 12.8rem 0 3.2rem;
  }
}
@media (min-width: 1126px) {
  .home .area-fv {
    padding-bottom: 4.4rem;
  }
}
.home .area-fv::before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  display: block;
  content: "";
  background: url(../img/home/fv02.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 88.8%;
  height: 100%;
  z-index: -1;
  background-position: center;
}
@media (min-width: 769px) {
  .home .area-fv::before {
    width: 44.2%;
  }
}
.home .area-fv::after {
  width: 31.5rem;
  height: 0.8rem;
  background-color: #0F5C41;
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  content: "";
}
@media (min-width: 769px) {
  .home .area-fv::after {
    width: 57rem;
  }
}
@media (min-width: 1126px) {
  .home .area-fv::after {
    min-width: 69rem;
    width: calc(46% + 5rem);
  }
}
.home .area-fv .img-fv {
  position: relative;
  overflow: hidden;
}
.home .area-fv .img-fv img {
  width: 100%;
  -webkit-transition: 1s;
  transition: 1s;
}
@media (min-width: 769px) {
  .home .area-fv .img-fv {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
}
.home .area-fv .img-fv2 {
  position: relative;
}
.home .area-fv .img-fv2 img {
  width: 100%;
}
.home .area-fv .img-fv2 .txt {
  position: absolute;
  right: 3.84%;
  bottom: -6.1rem;
  width: 13.2rem;
}
@media (min-width: 769px) {
  .home .area-fv .img-fv2 {
    width: 75%;
    margin-left: auto;
    margin-right: auto;
  }
  .home .area-fv .img-fv2 .txt {
    min-width: 13.2rem;
    width: 22%;
    right: 0;
    bottom: 0;
    transform: translate(50%, 50%);
    -webkit-transform: translate(50%, 50%);
    -ms-transform: translate(50%, 50%);
  }
}
.home .area-fv .ttl-fv {
  margin-top: 6rem;
  z-index: 1;
  position: relative;
  width: 31.8rem;
  max-width: 100%;
}
.home .area-fv .ttl-fv.txt {
  margin-left: 5.6%;
}
.home .area-fv .ttl-fv.img {
  -webkit-transform: translateX(-120%);
          transform: translateX(-120%);
  -webkit-transition: 1s;
  transition: 1s;
}
.home .area-fv .ttl-fv .jp {
  font-size: 2.4rem;
  font-weight: 900;
  letter-spacing: 0.196rem;
  line-height: 3.6rem;
  color: #0F5C41;
  text-indent: -0.3em;
}
.home .area-fv .ttl-fv .jp span {
  font-size: 3.2rem;
}
.home .area-fv .ttl-fv .en {
  font-size: 1.4rem;
  letter-spacing: 0.084rem;
  font-weight: 700;
  line-height: 1;
  margin-top: 1rem;
  color: #0F5C41;
}
@media (min-width: 769px) {
  .home .area-fv .ttl-fv {
    margin-top: 0;
    margin-left: 1rem;
    width: 54rem;
  }
  .home .area-fv .ttl-fv.txt {
    margin-left: 4rem;
  }
  .home .area-fv .ttl-fv .jp {
    font-size: 3.2rem;
    letter-spacing: 0.312rem;
    line-height: 1;
  }
  .home .area-fv .ttl-fv .jp span {
    font-size: 4.4rem;
  }
  .home .area-fv .ttl-fv .en {
    font-size: 2rem;
    letter-spacing: 0.168rem;
    margin-top: 2.4rem;
  }
}
@media (min-width: 1126px) {
  .home .area-fv .ttl-fv {
    margin-top: 0;
    min-width: 63.1rem;
    width: 46%;
    margin-left: 3rem;
  }
  .home .area-fv .ttl-fv.txt {
    margin-left: 5.5rem;
  }
  .home .area-fv .ttl-fv .jp {
    font-size: 4rem;
  }
  .home .area-fv .ttl-fv .jp span {
    font-size: 5.2rem;
  }
  .home .area-fv .ttl-fv .en {
    font-size: 2.8rem;
    margin-top: 3.6rem;
  }
}
@media (min-width: 1460px) {
  .home .area-fv .ttl-fv.txt {
    margin-left: 48.5%;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    display: inline-block;
    width: auto;
  }
  .home .area-fv .ttl-fv .jp {
    font-size: max(4rem, 1.7vw);
  }
  .home .area-fv .ttl-fv .jp span {
    font-size: max(5.2rem, 2.5vw);
  }
  .home .area-fv .ttl-fv .en {
    font-size: max(2.8rem, 1vw);
  }
}
.home .area-message {
  padding: 10rem 0 6.4rem;
  padding-bottom: 20rem;
}
@media (min-width: 769px) {
  .home .area-message {
    padding: 16rem 0 13rem;
    padding-bottom: 22.4rem;
  }
}
.home .area-message .person-message {
  position: relative;
  margin: 0 auto;
  width: 40.4rem;
  max-width: 100%;
}
@media (min-width: 769px) {
  .home .area-message .person-message {
    width: 24rem;
  }
}
.home .area-message .person-message .box-img img {
  position: absolute;
  height: auto;
}
.home .area-message .person-message .box-img img:nth-child(1) {
  top: 9rem;
  left: -1.5rem;
  width: 2.8rem;
}
.home .area-message .person-message .box-img img:nth-child(2) {
  top: 1rem;
  left: 2.5rem;
  width: 3rem;
}
.home .area-message .person-message .box-img img:nth-child(3) {
  top: 7rem;
  left: 8rem;
  width: 3.4rem;
}
.home .area-message .person-message .box-img img:nth-child(4) {
  top: 4rem;
  right: 9.8rem;
  width: 2.8rem;
}
.home .area-message .person-message .box-img img:nth-child(5) {
  top: 6rem;
  right: 4rem;
  width: 3rem;
}
.home .area-message .person-message .box-img img:nth-child(6) {
  top: 20%;
  right: -1.2rem;
  width: 3.6rem;
}
@media (min-width: 769px) {
  .home .area-message .person-message .box-img img:nth-child(1) {
    top: calc(100% + 6.8rem);
    left: -19rem;
    width: 4rem;
  }
  .home .area-message .person-message .box-img img:nth-child(2) {
    bottom: calc(100% - 2.4rem);
    top: auto;
    left: -15rem;
    width: 4.1rem;
  }
  .home .area-message .person-message .box-img img:nth-child(3) {
    top: calc(100% + 0.4rem);
    left: -7.3rem;
    width: 5.6rem;
  }
  .home .area-message .person-message .box-img img:nth-child(4) {
    bottom: calc(100% - 2.4rem);
    top: auto;
    right: -5.7rem;
    width: 4rem;
  }
  .home .area-message .person-message .box-img img:nth-child(5) {
    top: 0.4rem;
    right: -13rem;
    width: 4.1rem;
  }
  .home .area-message .person-message .box-img img:nth-child(6) {
    bottom: calc(100% - 2.5rem);
    top: auto;
    right: -20rem;
    width: 4.6rem;
  }
}
@media (min-width: 1126px) {
  .home .area-message .person-message .box-img img:nth-child(1) {
    left: -37rem;
    width: 6rem;
  }
  .home .area-message .person-message .box-img img:nth-child(2) {
    bottom: calc(100% - 4.4rem);
    left: -31rem;
    width: 6.2rem;
  }
  .home .area-message .person-message .box-img img:nth-child(3) {
    left: -18.8rem;
    width: 7.8rem;
  }
  .home .area-message .person-message .box-img img:nth-child(4) {
    right: -15.1rem;
    width: 6rem;
  }
  .home .area-message .person-message .box-img img:nth-child(5) {
    right: -25rem;
    width: 6.1rem;
  }
  .home .area-message .person-message .box-img img:nth-child(6) {
    bottom: calc(100% - 4.5rem);
    right: -37rem;
    width: 7.6rem;
  }
}
.home .area-about {
  padding: 4.8rem 0;
  background: #FAF6F3;
}
.home .area-about .company-bnr {
  margin: 4.8rem auto 0;
  text-align: center;
  max-width: 62.4rem;
}
.home .area-about .company-bnr iframe {
  width: 100%;
  aspect-ratio: 780 / 437.42;
}
@media (min-width: 769px) {
  .home .area-about .container:has(.company-btn) {
    width: 100%;
  }
}
.home .area-about .company-btn {
  margin-top: 3.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem 4.8rem;
}
@media (min-width: 769px) {
  .home .area-about {
    padding: 9.6rem 0;
  }
  .home .area-about .company-bnr {
    margin-top: 9.6rem;
    min-width: 62.4rem;
    width: 50.6%;
    max-width: 100%;
  }
  .home .area-about .company-btn {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 9.6rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 60rem;
    margin-left: auto;
    margin-right: auto;
  }
}
@media (min-width: 1200px) {
  .home .area-about .company-btn {
    margin-top: 9.6rem;
    gap: 2.4%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    width: 100%;
  }
}
.home .area-work {
  padding: 4.8rem 0;
}
@media (min-width: 769px) {
  .home .area-work {
    padding: 9.6rem 0;
  }
}
.home .area-work .list-box .item {
  padding: 3.2rem;
  background: #FAF6F3;
  border-radius: 1.2rem;
}
.home .area-work .list-box .item .ico {
  width: 3.2rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.home .area-work .list-box .item .txt {
  text-align: left;
}
@media (min-width: 769px) {
  .home .area-work .list-box .item {
    padding: 4.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .area-work .list-box .item .ico {
    width: 4.8rem;
    height: 3.2rem;
  }
  .home .area-work .list-box .item:nth-child(2) .mod-btn {
    margin-top: auto;
  }
}
.home .area-education {
  padding: 4.8rem 0;
  background: #FAF6F3;
}
@media (min-width: 769px) {
  .home .area-education {
    padding: 9.6rem 0;
  }
}
.home .area-recruit {
  padding: 4.8rem 0 6.4rem;
}
@media (min-width: 769px) {
  .home .area-recruit {
    padding: 9.6rem 0 12.8rem;
  }
}
.home .area-recruit .item {
  padding: 3.2rem;
  background: #FAF6F3;
  border-radius: 1.2rem;
}
.home .area-recruit .item .ico {
  height: 2.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.home .area-recruit .item:nth-child(1) .ico {
  width: 2.85rem;
}
.home .area-recruit .item:nth-child(2) .ico {
  width: 3.15rem;
}
.home .area-recruit .item .txt {
  text-align: left;
}
@media (min-width: 769px) {
  .home .area-recruit .item {
    padding: 4.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .home .area-recruit .item .ico {
    height: 3.6rem;
  }
  .home .area-recruit .item:nth-child(1) .ico {
    width: 3.8rem;
  }
  .home .area-recruit .item:nth-child(1) .mod-btn {
    margin-top: auto;
  }
  .home .area-recruit .item:nth-child(2) .ico {
    width: 4.2rem;
  }
}
.home .ttl-03 {
  text-align: left;
}
@media (min-width: 769px) {
  .home .ttl-03 {
    text-align: center;
  }
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.message {
  /* ------------------------------------------------------*/
  /* ------------------------------------------------------*/
}
@media (min-width: 769px) {
  .message .ttl-01 .jp {
    width: calc(100% - 10rem);
    margin: 0 auto;
  }
}
.message .box-message {
  position: relative;
  margin-top: 11rem;
  padding: 7rem 2rem 4.8rem;
  background: #0F5C41;
  border-radius: 2.4rem;
}
.message .box-message::after {
  position: absolute;
  left: 50%;
  bottom: -3.1rem;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  width: 3.6rem;
  height: 4.8rem;
  background: url(../img/home/message-yajirushi.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  content: "";
}
.message .box-message .mod-ttl {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: #0F5C41;
  padding: 0.8rem;
  border-radius: 0.6rem;
  width: 80%;
  max-width: 25.6rem;
}
.message .box-message .mod-ttl .ttl {
  white-space: nowrap;
  background: #fff;
  border-radius: 0.6rem;
  color: #0F5C41;
  font-size: 1.8rem;
  line-height: 2.6rem;
  letter-spacing: 0.108rem;
  font-weight: 900;
  padding: 1.4rem 0;
}
.message .box-message .ttl2 .en {
  line-height: 1;
  color: #FFC131;
  font-size: 1.2rem;
  letter-spacing: 0.072rem;
  font-weight: 700;
}
.message .box-message .ttl2 .jp {
  margin-top: 2rem;
  color: #fff;
  font-size: min(4.73vw, 1.8rem);
  line-height: 2;
  font-weight: 900;
  letter-spacing: 0.108rem;
  text-decoration: underline;
  text-decoration-thickness: 0.3rem;
  text-decoration-color: #FFC131;
  text-underline-offset: 0.5em;
}
.message .box-message .txt {
  color: #fff;
  margin-top: 2.8rem;
}
@media (min-width: 769px) {
  .message .box-message {
    margin-top: 14.4rem;
    padding: 10.8rem 4rem 9.6rem;
  }
  .message .box-message::after {
    bottom: -3.6rem;
    width: 4.8rem;
    height: 6.4rem;
  }
  .message .box-message .mod-ttl {
    padding: 1rem;
    width: auto;
    max-width: 100%;
  }
  .message .box-message .mod-ttl .ttl {
    font-size: 2.4rem;
    line-height: 1;
    letter-spacing: 0.144rem;
    font-weight: 900;
    padding: 2.6rem 6.4rem;
  }
  .message .box-message .ttl2 .en {
    font-size: 1.6rem;
    letter-spacing: 0.096rem;
  }
  .message .box-message .ttl2 .jp {
    margin-top: 3rem;
    color: #fff;
    font-size: 2.5rem;
    line-height: 2;
    letter-spacing: 0.24rem;
    text-decoration: underline;
    text-decoration-thickness: 0.6rem;
    text-decoration-color: #FFC131;
    text-underline-offset: 0.5em;
  }
  .message .box-message .txt {
    margin-top: 4.8rem;
  }
}
@media (min-width: 1126px) {
  .message .box-message .mod-ttl .ttl {
    padding: 2.6rem 8.8rem;
  }
  .message .box-message .ttl2 .jp {
    margin-top: 2.5rem;
    font-size: 4rem;
  }
  .message .box-message .txt {
    margin-top: 6rem;
  }
}
.message .person-message {
  position: relative;
  margin: 5.5rem auto 0;
  width: 15.4rem;
}
.message .person-message .profile {
  line-height: 1;
  font-size: 1.2rem;
  margin-top: 2rem;
  color: #0F5C41;
}
.message .person-message .name {
  margin-top: 1rem;
  font-size: 1.6rem;
  line-height: 1;
}
@media (min-width: 769px) {
  .message .person-message {
    margin-top: 7.5rem;
    width: 24rem;
  }
  .message .person-message .profile {
    font-size: 1.4rem;
    margin-top: 2.4rem;
  }
  .message .person-message .name {
    margin-top: 1.2rem;
    font-size: 1.8rem;
  }
}
.message .person-message .box-img img {
  position: absolute;
  height: auto;
}
.message .person-message .box-img img:nth-child(1) {
  top: 50%;
  left: -8.2rem;
  width: 2.8rem;
}
.message .person-message .box-img img:nth-child(2) {
  top: 0;
  left: -6rem;
  width: 3rem;
}
.message .person-message .box-img img:nth-child(3) {
  top: 60%;
  left: -3.5rem;
  width: 3.4rem;
}
.message .person-message .box-img img:nth-child(4) {
  top: 0;
  right: -4.1rem;
  width: 2.8rem;
}
.message .person-message .box-img img:nth-child(5) {
  top: 55%;
  right: -3.7rem;
  width: 3rem;
}
.message .person-message .box-img img:nth-child(6) {
  top: 20%;
  right: -8.1rem;
  width: 3.6rem;
}
@media (min-width: 769px) {
  .message .person-message .box-img img:nth-child(1) {
    top: 60%;
    left: -22rem;
    width: 4rem;
  }
  .message .person-message .box-img img:nth-child(2) {
    top: 20%;
    left: -15rem;
    width: 4.1rem;
  }
  .message .person-message .box-img img:nth-child(3) {
    top: 50%;
    left: -7.3rem;
    width: 5.6rem;
  }
  .message .person-message .box-img img:nth-child(4) {
    top: 16%;
    right: -8.7rem;
    width: 4rem;
  }
  .message .person-message .box-img img:nth-child(5) {
    top: 62%;
    right: -12rem;
    width: 4.1rem;
  }
  .message .person-message .box-img img:nth-child(6) {
    top: 26%;
    right: -20rem;
    width: 4.6rem;
  }
}
@media (min-width: 1126px) {
  .message .person-message .box-img img:nth-child(1) {
    left: -38rem;
    width: 6rem;
  }
  .message .person-message .box-img img:nth-child(2) {
    left: -28rem;
    width: 6.2rem;
  }
  .message .person-message .box-img img:nth-child(3) {
    left: -15.8rem;
    width: 7.8rem;
  }
  .message .person-message .box-img img:nth-child(4) {
    right: -14.1rem;
    width: 6rem;
  }
  .message .person-message .box-img img:nth-child(5) {
    right: -24rem;
    width: 6.1rem;
  }
  .message .person-message .box-img img:nth-child(6) {
    right: -38rem;
    width: 7.6rem;
  }
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.work {
  /* ------------------------------------------------------*/
  /* ------------------------------------------------------*/
}
.work.index .list-box .item {
  padding: 3.2rem;
  background: #FAF6F3;
  border-radius: 1.2rem;
}
.work.index .list-box .item .ico {
  width: 3.2rem;
  height: 2.4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.work.index .list-box .item .txt {
  text-align: left;
}
@media (min-width: 769px) {
  .work.index .list-box .item {
    padding: 4.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .work.index .list-box .item .ico {
    width: 4.8rem;
    height: 3.2rem;
  }
  .work.index .list-box .item:nth-child(2) .mod-btn {
    margin-top: auto;
  }
}
.work.flow .ttl-03 {
  margin-bottom: 1.35rem;
}
@media (min-width: 769px) {
  .work.flow .ttl-03 {
    margin-bottom: 1.9rem;
  }
}
.work.flow .list-flow {
  margin-top: 6.6rem;
  counter-reset: item;
}
.work.flow .list-flow > .item {
  padding: 5rem 2rem 5.7rem;
  background: #FAF6F3;
  border-radius: 2.4rem;
  position: relative;
}
.work.flow .list-flow > .item::after {
  display: block;
  counter-increment: item;
  content: "0" counter(item);
  width: 7.2rem;
  height: 7.2rem;
  font-size: 2.4rem;
  color: #fff;
  font-family: Futura, "Outfit", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #FFC131;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.work.flow .list-flow > .item + .item {
  margin-top: 9rem;
}
.work.flow .list-flow > .item + .item::before {
  display: block;
  content: "";
  background: url(../img/common/ico-flow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 3.2rem;
  height: 1.6rem;
  position: absolute;
  top: -6.3rem;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.work.flow .list-flow > .item .flex3 .item .ttl {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 1rem 0 0.5rem;
}
@media (min-width: 769px) {
  .work.flow .list-flow > .item .flex3 .item .ttl {
    margin: 1rem 0 0.5rem;
    font-size: 1.8rem;
  }
}
.work.flow .list-flow > .item .flex3 .item .txt {
  line-height: 1.75;
  font-weight: 500;
}
@media (min-width: 769px) {
  .work.flow .list-flow {
    margin-top: 8.8rem;
  }
  .work.flow .list-flow > .item {
    padding: 6.7rem 4.8rem 7.7rem;
  }
  .work.flow .list-flow > .item::after {
    width: 9.6rem;
    height: 9.6rem;
    font-size: 3.2rem;
    top: 0;
    left: 0;
    -webkit-transform: translate(-25%, -25%);
            transform: translate(-25%, -25%);
  }
  .work.flow .list-flow > .item + .item {
    margin-top: 7.2rem;
  }
  .work.flow .list-flow > .item + .item::before {
    width: 4.8rem;
    height: 2.4rem;
    top: -3.6rem;
  }
}
@media (min-width: 1126px) {
  .work.flow .list-flow > .item {
    padding: 6.7rem 7.2rem 7.7rem;
  }
}
.work.flow .list-work {
  margin-top: 4.1rem;
}
.work.flow .list-work > .item {
  padding: 5rem 2rem 5.7rem;
  background: #FAF6F3;
  border-radius: 2.4rem;
}
.work.flow .list-work > .item + .item {
  margin-top: 4.8rem;
}
.work.flow .list-work > .item .flex3 .item .ttl {
  font-size: 1.6rem;
  line-height: 1.5;
  margin: 1rem 0 0.5rem;
}
@media (min-width: 769px) {
  .work.flow .list-work > .item .flex3 .item .ttl {
    font-size: 1.8rem;
    margin: 1rem 0 0.5rem;
  }
}
.work.flow .list-work > .item .flex3 .item .txt {
  line-height: 1.75;
  font-weight: 500;
}
@media (min-width: 769px) {
  .work.flow .list-work {
    margin-top: 6.1rem;
  }
  .work.flow .list-work > .item {
    padding: 6.7rem 4.8rem 7.7rem;
  }
  .work.flow .list-work > .item + .item {
    margin-top: 6.4rem;
  }
}
@media (min-width: 1126px) {
  .work.flow .list-work > .item {
    padding: 6.7rem 7.2rem 7.7rem;
  }
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.work.interview {
  /* ------------------------------------------------------*/
  /* ------------------------------------------------------*/
}
.work.interview.index .ttl-03 {
  margin-bottom: 0;
}
.work.interview.index .list-interview .item {
  border-radius: 2.4rem;
  background: #FAF6F3;
  padding: 0 2rem 4.8rem;
}
.work.interview.index .list-interview .item .ttl {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0F5C41;
  line-height: 1.447;
  margin: 2rem 0;
}
.work.interview.index .list-interview .item .ttl span {
  display: inline-block;
  margin: 0 0.25em;
}
@media (min-width: 769px) {
  .work.interview.index .list-interview .item .ttl span {
    display: block;
  }
}
@media (min-width: 1253px) {
  .work.interview.index .list-interview .item .ttl span {
    display: inline-block;
  }
}
.work.interview.index .list-interview .item .img {
  position: relative;
}
.work.interview.index .list-interview .item .img .mod-name {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: #FAF6F3;
  color: #0F5C41;
  padding: 1.2rem 1.2rem 1.2rem 1.6rem;
  border-radius: 1.6rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.work.interview.index .list-interview .item .img .mod-name p {
  line-height: 1;
  text-align: center;
}
.work.interview.index .list-interview .item .img .mod-name .start {
  font-size: 1.2rem;
}
.work.interview.index .list-interview .item .img .mod-name .name {
  font-size: 1.6rem;
  font-weight: 900;
}
.work.interview.index .list-interview .item .img .mod-name .name span {
  font-size: 2.2rem;
}
.work.interview.index .list-interview .item .txt {
  line-height: 2;
}
.work.interview.index .list-interview .item .mod-btn .btn2 {
  max-width: 43.2rem;
  width: 100%;
}
@media (min-width: 769px) {
  .work.interview.index .list-interview .item {
    padding: 0 3.2rem 6.4rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: start;
    gap: 0;
  }
  .work.interview.index .list-interview .item .ttl {
    font-size: 1.8rem;
    margin: 3.5rem 0 2.5rem;
  }
  .work.interview.index .list-interview .item .img {
    margin-top: 0;
  }
  .work.interview.index .list-interview .item .img .mod-name {
    padding: 1.2rem 1.2rem 1.2rem 1.6rem;
    gap: 1rem;
  }
  .work.interview.index .list-interview .item .img .mod-name .start {
    font-size: 1.2rem;
  }
  .work.interview.index .list-interview .item .img .mod-name .name {
    font-size: 1.6rem;
  }
  .work.interview.index .list-interview .item .img .mod-name .name span {
    font-size: 2.2rem;
  }
  .work.interview.index .list-interview .item .txt {
    margin-bottom: 3.5rem;
  }
  .work.interview.index .list-interview .item .mod-btn {
    margin-top: auto;
  }
}
@media (min-width: 940px) {
  .work.interview.index .list-interview .item .ttl {
    font-size: 2rem;
  }
}
@media (min-width: 1126px) {
  .work.interview.index .list-interview .item {
    padding: 0 4.8rem 6.4rem;
  }
  .work.interview.index .list-interview .item .img .mod-name {
    padding: 1.5rem 1.6rem 1.5rem 1.9rem;
    gap: 1rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-radius: 2.4rem 0 0 0;
  }
  .work.interview.index .list-interview .item .img .mod-name .start {
    font-size: 1.2rem;
  }
  .work.interview.index .list-interview .item .img .mod-name .name {
    font-size: 1.8rem;
  }
  .work.interview.index .list-interview .item .img .mod-name .name span {
    font-size: 2.4rem;
  }
}
@media (min-width: 1366px) {
  .work.interview.index .list-interview .item .img .mod-name {
    padding: 2.4rem 1.5rem 2.3rem 1.9rem;
    gap: 1.2rem;
  }
  .work.interview.index .list-interview .item .img .mod-name .start {
    font-size: 1.4rem;
  }
  .work.interview.index .list-interview .item .img .mod-name .name {
    font-size: 2rem;
  }
  .work.interview.index .list-interview .item .img .mod-name .name span {
    font-size: 3.2rem;
  }
}
.work.interview.single .ttl-03 {
  margin-bottom: 0;
}
.work.interview.single .box-main {
  margin: 3.2rem auto 7.2rem;
  max-width: 91.2rem;
}
.work.interview.single .box-main .ttl {
  text-align: center;
  background: #0F5C41;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.447;
  display: inline-block;
  border-radius: 10rem;
  margin: 0 auto 2.4rem;
  padding: 0.25rem 3rem;
}
.work.interview.single .box-main .ttl span {
  display: inline-block;
  margin: 0 0.25em;
}
@media (min-width: 769px) {
  .work.interview.single .box-main {
    margin: 4.8rem auto 9.6rem;
  }
  .work.interview.single .box-main .ttl {
    margin-bottom: 3.2rem;
    font-size: 2rem;
    padding: 0.55rem 4.4rem;
  }
}
.work.interview.single .box-main .img {
  position: relative;
}
.work.interview.single .box-main .img .mod-name {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: #fff;
  color: #0F5C41;
  padding: 1.4rem 1.4rem 1.4rem 1.9rem;
  border-radius: 1.6rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.work.interview.single .box-main .img .mod-name p {
  line-height: 1;
  text-align: center;
}
.work.interview.single .box-main .img .mod-name .start {
  font-size: 1.2rem;
}
.work.interview.single .box-main .img .mod-name .name {
  font-size: 1.8rem;
  font-weight: 900;
}
.work.interview.single .box-main .img .mod-name .name span {
  font-size: 2.6rem;
}
@media (min-width: 769px) {
  .work.interview.single .box-main .img .mod-name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 2.8rem 3.8rem 2.4rem 4.3rem;
    gap: 2rem;
    border-radius: 2.4rem 0 0 0;
  }
  .work.interview.single .box-main .img .mod-name .start {
    font-size: 1.8rem;
  }
  .work.interview.single .box-main .img .mod-name .name {
    font-size: 2.2rem;
  }
  .work.interview.single .box-main .img .mod-name .name span {
    font-size: 3.6rem;
  }
}
@media (min-width: 1366px) {
  .work.interview.single .box-main .img .mod-name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 3.8rem 4.8rem 3.4rem 5.3rem;
    gap: 2.3rem;
  }
  .work.interview.single .box-main .img .mod-name .start {
    font-size: 2rem;
  }
  .work.interview.single .box-main .img .mod-name .name {
    font-size: 2.4rem;
  }
  .work.interview.single .box-main .img .mod-name .name span {
    font-size: 4rem;
  }
}
.work.interview.single .box-faq .item.row, .work.interview.single .box-faq .item.row-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 3.2rem 4.8rem;
}
.work.interview.single .box-faq .item .box-txt .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2rem;
}
.work.interview.single .box-faq .item .box-txt .ttl span {
  color: #0F5C41;
}
.work.interview.single .box-faq .item .box-txt .ttl span:nth-child(1) {
  font-size: 3.2rem;
  font-family: Futura, "Outfit", sans-serif;
  line-height: 1;
  white-space: nowrap;
}
.work.interview.single .box-faq .item .box-txt .ttl span:nth-child(2) {
  font-size: 2.4rem;
  font-weight: 900;
  line-height: 1.33;
}
.work.interview.single .box-faq .item .box-txt .txt {
  line-height: 2;
}
@media (min-width: 769px) {
  .work.interview.single .box-faq .item .box-txt .ttl {
    gap: 2.4rem;
  }
  .work.interview.single .box-faq .item .box-txt .ttl span:nth-child(1) {
    font-size: 4.8rem;
  }
  .work.interview.single .box-faq .item .box-txt .ttl span:nth-child(2) {
    font-size: 3.2rem;
  }
}
@media (min-width: 1050px) {
  .work.interview.single .box-faq .item.row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
  .work.interview.single .box-faq .item.row-reserve {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .work.interview.single .box-faq .item.row .box-txt, .work.interview.single .box-faq .item.row .mod-img, .work.interview.single .box-faq .item.row-reserve .box-txt, .work.interview.single .box-faq .item.row-reserve .mod-img {
    width: calc(50% - 2.4rem);
  }
}
.work.interview.single .box-sub {
  max-width: 72rem;
  margin: 7.2rem auto 9.6rem;
}
@media (min-width: 769px) {
  .work.interview.single .box-sub {
    margin: 9.6rem auto 12.8rem;
  }
}
.work.interview.single .box-holiday .img {
  max-width: 62.6rem;
  margin-right: auto;
  margin-left: auto;
}
.work.interview.single .area-other {
  padding: 6rem 0 4.8rem;
}
.work.interview.single .area-other .list-interview .item .ttl {
  font-size: 1.8rem;
  font-weight: 900;
  color: #0F5C41;
  line-height: 1.447;
}
.work.interview.single .area-other .list-interview .item .ttl span {
  margin: 0 0.25em;
  display: inline-block;
}
@media (min-width: 940px) {
  .work.interview.single .area-other .list-interview .item .ttl span {
    display: block;
  }
}
@media (min-width: 1517px) {
  .work.interview.single .area-other .list-interview .item .ttl span {
    display: inline-block;
  }
  .work.interview.single .area-other .list-interview .item .ttl span:nth-child(1) {
    display: block;
  }
}
.work.interview.single .area-other .list-interview .item .img {
  position: relative;
}
.work.interview.single .area-other .list-interview .item .img .mod-name {
  position: absolute;
  right: -1px;
  bottom: -1px;
  background: #FAF6F3;
  color: #0F5C41;
  padding: 1.4rem 1.4rem 1.4rem 1.9rem;
  border-radius: 1.6rem 0 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1rem;
}
.work.interview.single .area-other .list-interview .item .img .mod-name p {
  line-height: 1;
  text-align: center;
}
.work.interview.single .area-other .list-interview .item .img .mod-name .start {
  font-size: 1.2rem;
}
.work.interview.single .area-other .list-interview .item .img .mod-name .name {
  font-size: 1.4rem;
  font-weight: 900;
}
.work.interview.single .area-other .list-interview .item .img .mod-name .name span {
  font-size: 2rem;
}
@media (min-width: 769px) {
  .work.interview.single .area-other .list-interview {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .work.interview.single .area-other .list-interview .item {
    width: 100%;
  }
}
@media (min-width: 940px) {
  .work.interview.single .area-other .list-interview {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2.4rem;
  }
  .work.interview.single .area-other .list-interview .item {
    width: 33.3333333333%;
  }
  .work.interview.single .area-other .list-interview .item .ttl {
    font-size: 1.8rem;
  }
  .work.interview.single .area-other .list-interview .item .img .mod-name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 1rem 1rem 1.5rem;
    gap: 0.25rem;
    border-radius: 2.4rem 0 0 0;
  }
  .work.interview.single .area-other .list-interview .item a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
  }
}
@media (min-width: 940px) {
  .work.interview.single .area-other .list-interview {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 2.4rem;
  }
  .work.interview.single .area-other .list-interview .item {
    width: 33.3333333333%;
  }
  .work.interview.single .area-other .list-interview .item .ttl {
    font-size: 1.8rem;
  }
  .work.interview.single .area-other .list-interview .item .img .mod-name {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 1rem 1rem 1rem 1.5rem;
    gap: 0.5rem;
  }
}
@media (min-width: 1050px) {
  .work.interview.single .area-other .list-interview .item .ttl {
    font-size: 2rem;
  }
}
@media (min-width: 1126px) {
  .work.interview.single .area-other .list-interview {
    gap: 3.2rem;
  }
  .work.interview.single .area-other .list-interview .item .img .mod-name {
    padding: 1.65rem 1.2rem 1.65rem 1.6rem;
    gap: 0.6rem;
  }
  .work.interview.single .area-other .list-interview .item .img .mod-name .name {
    font-size: 1.6rem;
  }
  .work.interview.single .area-other .list-interview .item .img .mod-name .name span {
    font-size: 2.4rem;
  }
}
@media (min-width: 1366px) {
  .work.interview.single .area-other .list-interview {
    gap: 4.8rem;
  }
  .work.interview.single .area-other .list-interview .item .img .mod-name {
    padding: 2.3rem 1.6rem 1.8rem 2rem;
    gap: 1.2rem;
  }
  .work.interview.single .area-other .list-interview .item .img .mod-name .name {
    font-size: 1.6rem;
  }
  .work.interview.single .area-other .list-interview .item .img .mod-name .name span {
    font-size: 2.4rem;
  }
}
@media (min-width: 769px) {
  .work.interview.single .area-other {
    padding: 8rem 0 6.4rem;
  }
}
.work.interview.single .parent-person01 .child-person01 {
  display: none;
}
.work.interview.single .parent-person02 .child-person02 {
  display: none;
}
.work.interview.single .parent-person03 .child-person03 {
  display: none;
}
.work.interview.single .parent-person04 .child-person04 {
  display: none;
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.education {
  /* ------------------------------------------------------*/
  /* ------------------------------------------------------*/
}
.education .list-program > .item {
  padding: 7.2rem 0;
}
.education .list-program > .item:nth-child(even) {
  background: #FAF6F3;
}
.education .list-program > .item .ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
}
.education .list-program > .item .ttl span {
  font-size: 2rem;
  color: #0F5C41;
}
.education .list-program > .item .ttl span:nth-child(1) {
  font-family: Futura, "Outfit", sans-serif;
  line-height: 1;
  white-space: nowrap;
  margin-top: 0.2em;
}
.education .list-program > .item .ttl span:nth-child(2) {
  font-weight: 900;
  line-height: 1.33;
}
.education .list-program > .item .ttl2 {
  font-size: 1.8rem;
  line-height: 1.33;
  color: #0F5C41;
  font-weight: 900;
}
.education .list-program > .item .txt, .education .list-program > .item .txt2 {
  line-height: 2;
}
.education .list-program > .item .flex3 {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 769px) {
  .education .list-program > .item {
    padding: 9.6rem 0;
  }
  .education .list-program > .item .ttl span {
    font-size: 2.4rem;
  }
  .education .list-program > .item .ttl2 {
    font-size: 2rem;
  }
}

/*-------------------------------------------------------------
 カラー設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 フォント設定
-------------------------------------------------------------*/
/*-------------------------------------------------------------
カラム余白設定　　→　common.scss
-------------------------------------------------------------*/
/*-------------------------------------------------------------
 メディアクエリ
-------------------------------------------------------------*/
.recruit {
  /* ------------------------------------------------------*/
  /* ------------------------------------------------------*/
}
.recruit.index .item {
  padding: 3.2rem;
  background: #FAF6F3;
  border-radius: 1.2rem;
}
.recruit.index .item .ico {
  height: 2.7rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
.recruit.index .item:nth-child(1) .ico {
  width: 2.85rem;
}
.recruit.index .item:nth-child(2) .ico {
  width: 3.15rem;
}
.recruit.index .item .txt {
  text-align: left;
}
@media (min-width: 769px) {
  .recruit.index .item {
    padding: 4.8rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .recruit.index .item .ico {
    height: 3.6rem;
  }
  .recruit.index .item:nth-child(1) .ico {
    width: 3.8rem;
  }
  .recruit.index .item:nth-child(1) .mod-btn {
    margin-top: auto;
  }
  .recruit.index .item:nth-child(2) .ico {
    width: 4.2rem;
  }
}
.recruit.faq .area-recruit {
  padding: 4.8rem 0 7.2rem;
  background: #FAF6F3;
}
.recruit.faq .area-recruit .box-recruit {
  padding: 7.2rem 2rem;
  background: #fff;
  border-radius: 1.2rem;
}
.recruit.faq .area-recruit .box-recruit .list-recruit .item + .item {
  margin-top: 2.7rem;
}
.recruit.faq .area-recruit .box-recruit .list-recruit .item dt {
  color: #0F5C41;
  line-height: 1;
  font-size: 1.8rem;
  letter-spacing: 0.108rem;
  font-weight: 900;
}
.recruit.faq .area-recruit .box-recruit .list-recruit .item dd {
  margin-top: 1.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.084rem;
  line-height: 2;
}
.recruit.faq .area-recruit .box-recruit .list-recruit .item dd .note {
  font-size: 1.2rem;
  font-weight: 500;
}
@media (min-width: 769px) {
  .recruit.faq .area-recruit {
    padding: 6.4rem 0 9.6;
  }
  .recruit.faq .area-recruit .box-recruit {
    padding: 9.6rem 0;
  }
  .recruit.faq .area-recruit .box-recruit .list-recruit {
    width: calc(100% - 19.2rem);
    margin: 0 auto;
  }
  .recruit.faq .area-recruit .box-recruit .list-recruit .item + .item {
    margin-top: 5.6rem;
  }
  .recruit.faq .area-recruit .box-recruit .list-recruit .item dt {
    font-size: 2.4rem;
    letter-spacing: 0.144rem;
  }
  .recruit.faq .area-recruit .box-recruit .list-recruit .item dd {
    margin-top: 2.4rem;
    font-size: 1.6rem;
    letter-spacing: 0.096rem;
    line-height: 2;
  }
  .recruit.faq .area-recruit .box-recruit .list-recruit .item dd .note {
    font-size: 1.4rem;
  }
}
.recruit.faq .box-01 .mod-ttl {
  width: 85%;
  max-width: 30.6rem;
}
@media (min-width: 769px) {
  .recruit.faq .box-01 .mod-ttl {
    max-width: 100%;
    width: auto;
  }
  .recruit.faq .box-01 .mod-ttl br {
    display: block !important;
  }
}
@media (min-width: 1126px) {
  .recruit.faq .box-01 .mod-ttl {
    max-width: 100%;
    width: auto;
  }
  .recruit.faq .box-01 .mod-ttl br {
    display: none !important;
  }
}
.recruit.benefit .list-logo {
  margin-top: 3.8rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2.4rem 4.2rem;
}
.recruit.benefit .list-logo .item:nth-child(1) .logo {
  width: 20rem;
  margin: 0 auto;
}
.recruit.benefit .list-logo .item:nth-child(2) .logo {
  width: 23.6rem;
  margin: 0 auto;
}
.recruit.benefit .list-logo .item .txt {
  margin-top: 2rem;
  font-size: 1.2rem;
  line-height: 2;
}
@media (min-width: 769px) {
  .recruit.benefit .list-logo {
    margin-top: 6.7rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .recruit.benefit .list-logo .item {
    width: 25rem;
  }
  .recruit.benefit .list-logo .item:nth-child(1) .logo {
    width: 20rem;
  }
  .recruit.benefit .list-logo .item:nth-child(2) .logo {
    width: 23.6rem;
  }
  .recruit.benefit .list-logo .item .txt {
    margin-top: 3rem;
    font-size: 1.4rem;
  }
}