@charset "UTF-8";
/*============================================================================================================
	base
============================================================================================================*/
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;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}
@media screen and (min-width: 769px) {
  a {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
a:hover {
  opacity: 0.7;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media screen and (max-width: 768px) {
  img {
    width: 100%;
  }
}

@media screen and (min-width: 769px) {
  .hidden-pc {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .hidden-sp {
    display: none !important;
  }
}
/*------------------------------------------
	root
------------------------------------------*/
:root {
  --header-height: 0;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --pagetop-size: 80px;
  --job-anchor-height: 100px;
  --color-txt: #000;
  --color-red: #C8171E;
  --color-yellow: #F3D252;
  --color-beige-light: #EDE2C5;
  --color-gold: #C59C5C;
  --color-brown: #512700;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 100px;
    --inner-padding: 20px;
    --cv-height: 60px;
    --pagetop-size: var(--cv-height);
    --job-anchor-height: 80px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  line-height: 1.85;
  letter-spacing: 0.02em;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
}

.f-RammettoOne {
  font-weight: 400;
  font-family: "Rammetto One", sans-serif;
}

/*------------------------------------------
	smooth scroll / frame
------------------------------------------*/
html {
  scroll-behavior: smooth;
}
@media screen and (min-width: 769px) {
  html {
    scroll-padding-top: var(--header-height);
  }
}

body {
  background: #F9F4E0;
}
@media screen and (min-width: 769px) {
  body {
    min-width: 1000px;
  }
}

.inner {
  width: var(--inner-width);
  margin-inline: auto;
  padding-inline: var(--inner-padding);
}

/*------------------------------------------
	scroll action
------------------------------------------*/
.js-scroll {
  -webkit-transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, -webkit-transform 1.5s;
  transition: opacity 1s, transform 1.5s;
  transition: opacity 1s, transform 1.5s, -webkit-transform 1.5s;
}
.js-scroll:nth-child(2) {
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.js-scroll:nth-child(3) {
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.js-scroll:nth-child(4) {
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-scroll:nth-child(5) {
  -webkit-transition-delay: 0.4s;
          transition-delay: 0.4s;
}
.js-scroll.is-fadeInUp {
  opacity: 0;
  -webkit-transform: translate(0, 100px);
          transform: translate(0, 100px);
}
.js-scroll.is-fadeInUp.is-view {
  opacity: 1;
  -webkit-transform: translate(0, 0);
          transform: translate(0, 0);
}
@media screen and (max-width: 768px) {
  .js-scroll.is-fadeInUp {
    -webkit-transform: translate(0, 40px);
            transform: translate(0, 40px);
  }
}
.js-scroll.is-fadeIn {
  opacity: 0;
}
.js-scroll.is-fadeIn.is-view {
  opacity: 1;
}

/*============================================================================================================
	l-header
============================================================================================================*/
.l-header {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 214px;
  grid-template-columns: 214px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 10px 12px;
  mix-blend-mode: multiply;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__logo img {
  width: 100%;
}
.l-header__entry {
  position: fixed;
  z-index: 9992;
  width: 240px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
  letter-spacing: 0.05em;
}
.l-header__entry a {
  height: 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: var(--color-red);
  border-radius: inherit;
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    position: fixed;
    z-index: 9990;
    top: 15px;
    left: 20px;
  }
  .l-header__entry {
    top: 15px;
    right: 100px;
    border-radius: 100px;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: var(--color-beige-light);
    color: var(--color-txt);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 0 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 80px;
  }
  .l-header__logo img {
    width: 180px;
  }
  .l-header__entry {
    left: 0;
    bottom: 0;
    width: calc(100% - var(--pagetop-size));
    font-size: 18px;
    letter-spacing: 0.2em;
  }
  .l-header__entry a {
    border-top: 1px solid #fff;
    height: var(--cv-height);
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #000;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  font-weight: 400;
  letter-spacing: 0.08em;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
  -webkit-text-size-adjust: 100%;
}
.l-footer a, .l-footer span {
  color: inherit !important;
  font-family: inherit;
  font-weight: inherit;
}
.l-footer a, .l-footer li, .l-footer div, .l-footer span {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-footer-inner {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 50px 10px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 auto 25px;
  padding: 0;
  gap: 20px 0;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-size: 14px;
  text-align: center;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item + .l-footer-nav__item::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  content: "";
  display: block;
  width: 1px;
  height: 70%;
  background: currentColor;
  margin: auto;
}
.l-footer-nav__item a {
  display: block;
  padding: 0 20px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-copyright {
  margin: 0;
  color: #fff !important;
  font-size: 11px;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .l-footer .hidden-pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-footer .hidden-sp {
    display: none;
  }
  .l-footer-inner {
    padding: 30px 20px 30px;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 30px;
  }
  .l-footer-nav__item {
    border-bottom: 1px dashed;
    font-size: 12px;
    text-align: left;
  }
  .l-footer-nav__item + .l-footer-nav__item::after {
    content: none;
  }
  .l-footer-nav__item a {
    padding: 10px 0;
  }
  .l-footer-copyright {
    font-size: 10px;
  }
}

.pagetop {
  display: none;
  width: var(--pagetop-size);
  height: var(--pagetop-size);
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 50%;
  text-indent: 100%;
  font-size: 10px;
  white-space: nowrap;
  overflow: hidden;
  z-index: 9000;
}
.pagetop a {
  width: 100%;
  height: 100%;
  display: block;
  background: var(--color-red);
  border-radius: inherit;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff !important;
  position: relative;
}
.pagetop a::after {
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 100% 0, 100% 2px, 2px 2px, 2px 100%, 0 100%);
  background: currentColor;
  position: absolute;
  top: calc(50% - 2px);
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .pagetop {
    display: block !important;
    opacity: 1 !important;
    position: fixed !important;
    right: 10px;
    bottom: 10px !important;
    border-radius: 50%;
    border-right: none;
    border-bottom: none;
    z-index: 9992;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.gnavBtn {
  --size: 120px;
  overflow: hidden;
  cursor: pointer;
  width: var(--size);
  height: var(--size);
  position: fixed;
  z-index: 9992;
  top: 0;
  right: 0;
  background: url("../img/bg_menu.svg") no-repeat center center/contain;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn:hover {
  opacity: 0.7;
}
.gnavBtn span {
  --position: calc(50% - 13px);
  display: block;
  position: absolute;
  top: 0;
  left: 24px;
  right: 0;
  margin: auto;
  width: 40px;
  height: 2px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span:nth-of-type(1) {
  top: var(--position);
}
.gnavBtn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.gnavBtn span:nth-of-type(3) {
  bottom: var(--position);
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(1px) rotate(-225deg);
          transform: translateY(1px) rotate(-225deg);
}
.gnavBtn.is-close span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
}
.gnavBtn.is-close span:nth-of-type(3) {
  -webkit-transform: translateY(12px) rotate(225deg);
          transform: translateY(12px) rotate(225deg);
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    --size: 80px;
    top: 0;
    right: 5px;
  }
  .gnavBtn span {
    --position: calc(50% - 9px);
    display: block;
    position: absolute;
    top: 0;
    left: 20px;
    right: 0;
    margin: auto;
    width: 32px;
    height: 2px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: var(--position);
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: var(--position);
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(4px) rotate(-225deg);
            transform: translateY(4px) rotate(-225deg);
  }
  .gnavBtn.is-close span:nth-of-type(2) {
    left: 50%;
    opacity: 0;
  }
  .gnavBtn.is-close span:nth-of-type(3) {
    -webkit-transform: translateY(12px) rotate(225deg);
            transform: translateY(12px) rotate(225deg);
  }
}

.l-nav {
  top: 0;
  right: -400px;
  width: 400px;
  height: 100%;
  position: fixed;
  z-index: 9991;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.l-nav.is-open {
  right: 0;
}
.l-nav.is-open .l-nav-overlay {
  left: 0;
  width: 100%;
}
.l-nav-inner {
  width: 100%;
  height: 100%;
  padding: 130px 50px 100px;
  background: #fff;
  position: relative;
  z-index: 2;
  overflow: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.l-nav-inner::-webkit-scrollbar {
  display: none;
}
.l-nav-list__item {
  margin-bottom: 30px;
  font-weight: 700;
  line-height: 1.5;
  font-size: 20px;
  letter-spacing: 0;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.l-nav-list__item-en {
  display: block;
  margin-bottom: 5px;
  color: var(--color-red);
  font-size: 14px;
}
.l-nav-list__item a {
  display: block;
  padding: 10px 20px 10px 0;
  position: relative;
}
.l-nav-list__item a::after {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  color: var(--color-red);
  border-right: 2px solid;
  border-bottom: 2px solid;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 5px);
  right: 2px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  pointer-events: none;
}
.l-nav-overlay {
  cursor: pointer;
  position: fixed;
  width: 0;
  height: 100%;
  top: 0;
  left: 100%;
  z-index: 1;
  background: rgba(0, 0, 0, 0.5);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .l-nav-list__item a:hover::after {
    top: 50%;
  }
}
@media screen and (max-width: 768px) {
  .l-nav {
    right: -280px;
    width: 280px;
  }
  .l-nav-inner {
    padding: 50px 20px 150px;
  }
  .l-nav-list__item {
    margin-bottom: 15px;
    font-size: 18px;
  }
  .l-nav-list__item-en {
    font-size: 12px;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  margin-bottom: 80px;
  padding: 0;
}
.l-mv img {
  width: 100%;
}
.l-mv-imgBox {
  width: 100%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  .l-mv {
    margin-bottom: 40px;
    padding: 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 4vw;
  }
}

/*============================================================================================================
	main
============================================================================================================*/
.c-tit01 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  color: #000;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-red);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-family: "Rammetto One", sans-serif;
}
@media screen and (min-width: 769px) {
  .c-tit01.is-left-pc {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 26px;
  }
  .c-tit01__en {
    font-size: 17px;
  }
}

.c-tit02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  color: #000;
  font-weight: 900;
  font-size: 48px;
  text-align: center;
  letter-spacing: 0;
  padding: 0 0 35px;
  background: url("../img/ico_line.svg") no-repeat center bottom;
}
.c-tit02__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-red);
  font-weight: 700;
  font-size: 24px;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-family: "Rammetto One", sans-serif;
}
@media screen and (min-width: 769px) {
  .c-tit02.is-left-pc {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 30px;
  }
}

/*	popup - js
------------------------------------------*/
body .mfp-bg {
  z-index: 9993;
  opacity: 0.5;
  background: #000;
}
body .mfp-wrap {
  z-index: 9994;
}
body .mfp-container {
  padding: 0;
}
body .mfp-content {
  position: static;
  padding: 40px 15px;
}
@media screen and (max-width: 768px) {
  body .mfp-content {
    padding: 15px;
  }
}

.mfp-close.modalClose01, .mfp-close.modalClose02 {
  cursor: pointer;
  opacity: 1;
  z-index: 3;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.mfp-close.modalClose01 {
  position: absolute;
  top: 10px !important;
  right: 10px;
  width: 40px;
  height: 40px;
  padding: 0;
  background: var(--color-txt);
  border-radius: 50%;
  font-size: 10px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.mfp-close.modalClose01::before, .mfp-close.modalClose01::after {
  content: "";
  display: block;
  width: 45%;
  height: 1px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
}
.mfp-close.modalClose01::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.mfp-close.modalClose01::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.mfp-close.modalClose01:hover {
  opacity: 0.7;
}
.mfp-close.modalClose02 {
  position: static;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 310px);
  height: 60px;
  margin: 40px auto 0;
  padding: 0;
  border: 1px solid #000;
  border-radius: 30px;
  color: var(--color-txt) !important;
  font-size: 16px;
  font-family: "Zen Maru Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "ヒラギノ角ゴ ProN W3", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    background: var(--color-red);
    border-color: var(--color-red);
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 20px;
  }
}

.c-modal01 {
  width: min(100%, 980px);
  margin-inline: auto;
  background: #F9F4E0;
  position: relative;
  border-radius: 24px;
}
.c-modal01-inner {
  padding: 60px 50px 80px;
}
@media screen and (max-width: 768px) {
  .c-modal01-inner {
    padding: 40px 20px 30px;
  }
}

/*------------------------------------------
	.secAbout
------------------------------------------*/
.secAbout {
  padding-block: 80px 100px;
  position: relative;
}
.secAbout::before, .secAbout::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: -2;
  pointer-events: none;
}
.secAbout::before {
  width: 179px;
  height: 85px;
  background: url(../img/ico_illust01.webp) no-repeat left top;
  background-size: 100%;
  position: absolute;
  left: calc(50% - 630px);
  top: -40px;
}
.secAbout::after {
  width: 188px;
  height: 104px;
  background: url(../img/ico_illust02.webp) no-repeat center bottom;
  background-size: 100%;
  position: absolute;
  right: calc(50% - 600px);
  bottom: 60px;
}
.secAbout-inner {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  justify-items: end;
}
.secAbout-txtBox {
  display: -ms-grid;
  display: grid;
  gap: 50px;
}
.secAbout__txt {
  color: var(--color-brown);
  font-size: 22px;
  line-height: 250%;
}
@media screen and (max-width: 768px) {
  .secAbout {
    padding-block: 60px 40px;
  }
  .secAbout::before {
    width: 129px;
    left: 4px;
    top: -20px;
  }
  .secAbout::after {
    width: 108px;
    right: 4px;
    bottom: 40px;
  }
  .secAbout-inner {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 40px;
    justify-items: center;
  }
  .secAbout-txtBox {
    gap: 30px;
  }
  .secAbout__txt {
    font-size: 16px;
    line-height: 200%;
    text-align: left;
    padding: 0;
  }
  .secAbout__img {
    width: 80%;
  }
}

/*------------------------------------------
	.secFeature
------------------------------------------*/
.secFeature {
  margin-bottom: 165px;
  padding-block: 120px 0px;
  position: relative;
  background: -webkit-gradient(linear, left bottom, left top, from(var(--color-yellow)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, var(--color-yellow) var(--bgPosition), rgba(255, 255, 255, 0) var(--bgPosition));
  --bgPosition: calc(100% - 200px);
  position: relative;
}
.secFeature__secTit {
  margin-bottom: 80px;
}
.secFeature::before, .secFeature::after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: -2;
  pointer-events: none;
}
.secFeature::before {
  height: 189px;
  background: url(../img/bg_wave.svg) no-repeat center top/max(100%, 2000px);
  position: absolute;
  left: 0;
  bottom: calc(var(--bgPosition) - 10px);
}
.secFeature::after {
  height: 280px;
  background: url(../img/bg_wave.svg) no-repeat center bottom/max(100%, 2000px);
  position: absolute;
  left: 0;
  bottom: -180px;
  rotate: 180deg;
}
.secFeature-content {
  display: -ms-grid;
  display: grid;
  gap: 60px;
  padding: 0 0 100px;
  background: url("../img/ico_line.svg") repeat-x center bottom;
}
.secFeature-content .secFeature-box:nth-child(even) .secFeature-txtBox {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
}
.secFeature-content .secFeature-box:nth-child(even) .secFeature-imgBox {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
.secFeature-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.secFeature__num {
  color: var(--color-red);
  font-size: 18px;
  font-family: "Rammetto One", sans-serif;
}
.secFeature__tit {
  margin-top: 12px;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.04em;
  font-weight: 900;
  color: var(--color-txt);
}
.secFeature__tit .en {
  font-size: 54px;
  line-height: 110%;
  letter-spacing: 0.04em;
  color: var(--color-red);
  font-family: "Rammetto One", sans-serif;
}
.secFeature__tit .ja {
  font-size: 54px;
  line-height: 110%;
  letter-spacing: 0.04em;
  color: var(--color-red);
}
.secFeature__txt {
  margin-top: 20px;
  font-size: 18px;
  color: var(--color-brown);
  line-height: 200%;
  letter-spacing: 0;
}
.secFeature__img {
  border-radius: 32px;
}
.secFeature-point-inner {
  width: min(100%, 940px);
  margin: 0 auto;
}
.secFeature-point-tit {
  margin-top: 60px;
  font-size: 32px;
  font-weight: 900;
  line-height: 100%;
  letter-spacing: 0.04em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
.secFeature-point-tit::before, .secFeature-point-tit::after {
  content: "";
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.secFeature-point-tit::before {
  margin-right: 16px;
  background-image: url("../img/ico_deco01.svg");
  width: 56px;
  height: 71px;
}
.secFeature-point-tit::after {
  margin-left: 16px;
  background-image: url("../img/ico_deco02.svg");
  width: 39px;
  height: 100px;
}
.secFeature-point-list {
  margin-top: 30px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .secFeature {
    margin-bottom: 80px;
    padding-block: 80px 0px;
    position: relative;
    background: -webkit-gradient(linear, left bottom, left top, from(var(--color-yellow)), to(rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, var(--color-yellow) var(--bgPosition), rgba(255, 255, 255, 0) var(--bgPosition));
    --bgPosition: calc(100% - 200px);
  }
  .secFeature__secTit {
    margin-bottom: 40px;
  }
  .secFeature::before, .secFeature::after {
    content: "";
    display: block;
    width: 100%;
    position: absolute;
    z-index: -2;
    pointer-events: none;
  }
  .secFeature::before {
    height: 189px;
    background: url(../img/bg_wave.svg) no-repeat center top/max(100%, 2000px);
    position: absolute;
    left: 0;
    bottom: calc(var(--bgPosition) - 10px);
  }
  .secFeature::after {
    height: 280px;
    background: url(../img/bg_wave.svg) no-repeat center bottom/max(100%, 1000px);
    position: absolute;
    left: 0;
    bottom: -220px;
    rotate: 180deg;
  }
  .secFeature-content {
    display: -ms-grid;
    display: grid;
    gap: 48px;
    padding: 0 0 60px;
    background: url("../img/ico_line.svg") repeat-x center bottom;
  }
  .secFeature-content .secFeature-box:nth-child(even) .secFeature-txtBox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .secFeature-content .secFeature-box:nth-child(even) .secFeature-imgBox {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  .secFeature-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .secFeature__num {
    color: var(--color-red);
    font-size: 15px;
    font-family: "Rammetto One", sans-serif;
  }
  .secFeature__tit {
    margin-top: 12px;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0.04em;
    font-weight: 900;
    color: var(--color-txt);
  }
  .secFeature__tit .en {
    font-size: 44px;
    line-height: 110%;
    letter-spacing: 0.04em;
    color: var(--color-red);
    font-family: "Rammetto One", sans-serif;
  }
  .secFeature__tit .ja {
    font-size: 44px;
    line-height: 110%;
    letter-spacing: 0.04em;
    color: var(--color-red);
  }
  .secFeature__txt {
    margin-top: 20px;
    font-size: 16px;
    color: var(--color-brown);
    line-height: 200%;
    letter-spacing: 0;
  }
  .secFeature__img {
    border-radius: 32px;
  }
  .secFeature-point-inner {
    width: min(100%, 940px);
    margin: 0 auto;
  }
  .secFeature-point-tit {
    margin-top: 20px;
    font-size: 21px;
    font-weight: 900;
    line-height: 100%;
    letter-spacing: 0.04em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative;
    text-align: center;
  }
  .secFeature-point-tit::before, .secFeature-point-tit::after {
    content: "";
    display: inline-block;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
  .secFeature-point-tit::before {
    width: 36px;
  }
  .secFeature-point-tit::after {
    width: 24px;
  }
  .secFeature-point-list {
    margin-top: 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 4px 1fr;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  padding-block: 80px 0;
}
.secJob__secTit {
  margin-bottom: 80px;
}
.secJob-content {
  display: -ms-grid;
  display: grid;
  gap: 40px;
  padding: 0 0 40px;
}
.secJob-box {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 100px 1fr;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px;
}
.secJob__num {
  color: var(--color-red);
  font-size: 18px;
  font-family: "Rammetto One", sans-serif;
}
.secJob__tit {
  margin-top: 12px;
  font-size: 32px;
  line-height: 150%;
  letter-spacing: 0.04em;
  font-weight: 900;
  color: var(--color-txt);
}
.secJob__tit .en {
  font-size: 54px;
  line-height: 110%;
  letter-spacing: 0.04em;
  color: var(--color-red);
  font-family: "Rammetto One", sans-serif;
}
.secJob__tit .ja {
  font-size: 54px;
  line-height: 110%;
  letter-spacing: 0.04em;
  color: var(--color-red);
}
.secJob__txt {
  margin-top: 20px;
  font-size: 18px;
  color: var(--color-brown);
  line-height: 200%;
  letter-spacing: 0;
}
.secJob__img {
  border-radius: 32px;
}
.secJob-fukidashi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 48px;
}
@media screen and (max-width: 768px) {
  .secJob {
    padding-block: 60px 0;
  }
  .secJob-content {
    display: -ms-grid;
    display: grid;
    gap: 48px;
    padding: 0 0 40px;
  }
  .secJob-box {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .secJob__num {
    color: var(--color-red);
    font-size: 15px;
    font-family: "Rammetto One", sans-serif;
  }
  .secJob__tit {
    margin-top: 12px;
    font-size: 24px;
    line-height: 150%;
    letter-spacing: 0.04em;
    font-weight: 900;
    color: var(--color-txt);
  }
  .secJob__tit .en {
    font-size: 34px;
    line-height: 110%;
    letter-spacing: 0.04em;
    color: var(--color-red);
    font-family: "Rammetto One", sans-serif;
  }
  .secJob__tit .ja {
    font-size: 34px;
    line-height: 110%;
    letter-spacing: 0.04em;
    color: var(--color-red);
  }
  .secJob__txt {
    margin-top: 20px;
    font-size: 16px;
    color: var(--color-brown);
    line-height: 200%;
    letter-spacing: 0;
  }
  .secJob__img {
    border-radius: 32px;
  }
  .secJob-fukidashi {
    gap: 32px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  padding-block: 120px;
  background: url("../img/bg_interview.webp") no-repeat center top/cover;
  border-radius: 200px 200px 0 0;
}
.secInterview__secTit {
  margin-bottom: 60px;
}
.secInterview-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    padding-block: 60px;
    border-radius: 24px 24px 0 0;
  }
  .secInterview__secTit {
    margin-bottom: 40px;
  }
  .secInterview-list {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.secInterview-content {
  max-width: 860px;
}
.secInterview-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-right: 40px;
}
.secInterview-content-top-txtBox {
  width: calc(54% + 40px);
  margin-left: -120px;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.secInterview-content-top__tit {
  margin-bottom: 24px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 2.3;
  font-weight: ¢00;
}
.secInterview-content-top__tit .bg {
  padding: 7px 10px;
  background: var(--color-red);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 4px;
}
.secInterview-content-top__prof01 {
  font-weight: 600;
  font-size: 18px;
  text-align: right;
  letter-spacing: 0;
}
.secInterview-content-top__prof02 {
  font-size: 16px;
  text-align: right;
  letter-spacing: 0;
  color: #AB8C12;
}
.secInterview-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 62%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 24px 0 24px 0;
}
.secInterview-content-q {
  margin-bottom: 40px;
}
.secInterview-content-q__tit {
  min-height: 44px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  padding: 0 0 0 64px;
  font-size: 19px;
  letter-spacing: 0;
  line-height: 1.55;
  position: relative;
  font-weight: bold;
}
.secInterview-content-q__tit::after {
  content: "Q";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  height: 44px;
  background: var(--color-yellow);
  border-radius: 50%;
  color: var(--color-txt);
  font-size: 21px;
  font-weight: 700;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  margin-bottom: 40px;
  padding: 30px;
  background: #fff;
  line-height: 1.85;
  font-size: 16px;
  letter-spacing: 0.02em;
  border-radius: 20px;
  color: var(--color-brown);
}
.secInterview-content-q__txt:last-of-type {
  margin-bottom: 0;
}
.secInterview-content-q__img {
  width: 100%;
  margin-bottom: 40px;
}
.secInterview-content-sche-titWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  margin-bottom: 20px;
}
.secInterview-content-sche__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.12em;
  font-family: "Noto Serif JP", serif;
}
.secInterview-content-sche__tit-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  margin-bottom: 6px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.16em;
  font-family: "Barlow", serif;
}
.secInterview-content-sche-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 78px 30px 1fr;
  grid-template-columns: 78px 1fr;
  grid-column-gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.secInterview-content-sche-list-txtBox {
  padding-block: 24px;
  border-bottom: 1px solid #D2D2D2;
}
.secInterview-content-sche-list__time {
  padding: 8px 10px;
  background: var(--color-green);
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-align: center;
  font-family: "Barlow", sans-serif;
  line-height: 1.1;
}
.secInterview-content-sche-list__tit {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.02em;
}
.secInterview-content-sche-list__txt {
  line-height: 1.85;
  letter-spacing: 0.05em;
}
.secInterview-content-sche-list__txt span {
  font-weight: bold;
  color: var(--color-green);
}
.secInterview-content-sche-list__txt + .secInterview-content-sche-list__txt {
  margin-top: 6px;
}
@media screen and (max-width: 768px) {
  .secInterview-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-right: 0;
  }
  .secInterview-content-top-txtBox {
    width: calc(100% - 30px);
    margin: -20px auto 0;
  }
  .secInterview-content-top__tit {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 2.2;
  }
  .secInterview-content-top__tit .bg {
    padding: 5px 10px;
  }
  .secInterview-content-top__prof01 {
    font-size: 15px;
  }
  .secInterview-content-top__prof02 {
    font-size: 12px;
  }
  .secInterview-content-top__img {
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .secInterview-content-q {
    margin-bottom: 40px;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 44px;
    font-size: 15px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .secInterview-content-q__txt {
    margin-bottom: 30px;
    padding: 20px;
    font-size: 12px;
  }
  .secInterview-content-q__img {
    width: 100%;
    margin-bottom: 30px;
  }
  .secInterview-content-sche-titWrap {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 20px 1fr;
    grid-template-columns: auto 1fr;
    gap: 20px;
    -ms-flex-line-pack: center;
        align-content: center;
  }
  .secInterview-content-sche-titWrap img {
    width: 60px;
  }
  .secInterview-content-sche__tit {
    margin-bottom: 0;
    font-size: 18px;
  }
  .secInterview-content-sche__tit-en {
    font-size: 11px;
  }
  .secInterview-content-sche-list {
    -ms-grid-columns: 60px 20px 1fr;
    grid-template-columns: 60px 1fr;
    grid-column-gap: 20px;
  }
  .secInterview-content-sche-list-txtBox {
    padding-block: 12px;
  }
  .secInterview-content-sche-list__time {
    padding: 5px;
    font-size: 13px;
  }
  .secInterview-content-sche-list__tit {
    font-size: 16px;
    font-weight: bold;
    letter-spacing: 0.02em;
  }
  .secInterview-content-sche-list__txt {
    padding-block: 0;
    font-size: 14px;
  }
}

/*------------------------------------------
	.secFlow
------------------------------------------*/
.secFlow {
  padding-block: 120px 60px;
}
.secFlow__secTit {
  margin-bottom: 70px;
}
.secFlow-inner {
  display: -ms-grid;
  display: grid;
  place-content: center;
  gap: 40px;
}
@media screen and (max-width: 768px) {
  .secFlow {
    padding-block: 60px 60px;
  }
  .secFlow__secTit {
    margin-bottom: 40px;
  }
  .secFlow-inner {
    display: -ms-grid;
    display: grid;
    place-content: center;
    gap: 40px;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery img {
  width: 100%;
  border-radius: 8px;
}

/*------------------------------------------
	.secEntry
------------------------------------------*/
.secEntry {
  padding-block: 120px;
  background: url("../img/bg_entry_pc.webp") no-repeat center/cover;
}
.secEntry__secTit {
  margin-top: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 33px;
}
.secEntry-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.secEntry__lead {
  margin-top: 20px;
  text-align: center;
  font-size: 28px;
  font-weight: 700;
  line-height: 170%;
  letter-spacing: 0.05em;
  margin-bottom: 48px;
}
.secEntry__img {
  text-align: center;
  margin: 0 auto;
}
.secEntry-btn {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 20px;
}
.secEntry-btn__item {
  color: #fff;
  font-weight: 600;
  text-align: center;
  line-height: 1.4;
  font-size: 24px;
}
.secEntry-btn__item-en {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  font-weight: 400;
  font-size: 34px;
  margin-top: 4px;
}
.secEntry-btn__item a {
  height: 128px;
  padding: 5px 75px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 2px solid var(--color-red);
  background: var(--color-red) url("../img/ico_arrow01.svg") no-repeat right 30px center/22px;
  border-radius: 100px;
}
.secEntry-btn__item.is-yellow a {
  background: var(--color-yellow) url("../img/ico_arrow02.svg") no-repeat right 30px center/22px;
  border-color: var(--color-yellow);
  color: #000;
}
@media screen and (min-width: 769px) {
  .secEntry-btn__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .secEntry {
    padding-block: 80px;
  }
  .secEntry-inner {
    display: block;
  }
  .secEntry__secTit {
    margin: 0 auto 30px;
    font-size: 28px;
    text-align: center;
  }
  .secEntry__lead {
    font-size: 22px;
  }
  .secEntry-btn {
    width: min(100%, 400px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 8px;
  }
  .secEntry-btn__item {
    font-size: 16px;
  }
  .secEntry-btn__item-en {
    font-size: 26px;
  }
  .secEntry-btn__item a {
    height: 90px;
  }
}
/*# sourceMappingURL=style.css.map */