@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: 100px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #000;
  --color-red: #D32D2F;
  --color-beige: #EAE6DB;
  --cv-width: 100px;
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
    --cv-height: 60px;
  }
}

/*------------------------------------------
	font
------------------------------------------*/
body {
  color: var(--color-txt);
  font-size: 16px;
  font-weight: 500;
  line-height: 2;
  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-jost {
  font-family: "Jost", sans-serif;
}

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

body {
  background: #F3F1EA;
}
@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%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__logo a {
  padding: 10px;
  background: #E70022;
}
.l-header-cv {
  width: var(--cv-width);
  height: 210px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: fixed;
  z-index: 9992;
  right: 0;
  bottom: 150px;
}
.l-header-cv__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  color: #fff;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.4;
  text-align: center;
}
.l-header-cv__btn a {
  height: 100%;
  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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border: 2px solid var(--btnColor);
  background: var(--btnColor);
}
.l-header-cv__btn-en {
  font-weight: 600;
  font-size: 18px;
}
.l-header-cv__btn:nth-of-type(1) {
  --btnColor: #AA2022;
}
.l-header-cv__btn:nth-of-type(2) {
  --btnColor: #C31719;
}
.l-header-cv__btn:nth-of-type(3) {
  --btnColor: var(--color-red);
}
@media screen and (min-width: 769px) {
  .l-header__logo {
    position: fixed;
    z-index: 9990;
    top: 0;
    left: 0;
  }
  .l-header-cv__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    height: 100px;
    padding: 0 80px 0 0;
    background: #fff;
  }
  .l-header__logo {
    height: 100%;
  }
  .l-header__logo a {
    height: 100%;
    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;
    padding: 0;
  }
  .l-header__logo img {
    width: auto;
    height: 100px;
  }
  .l-header-cv {
    width: 100%;
    height: var(--cv-height);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    bottom: 0;
  }
  .l-header-cv__btn {
    font-size: 12px;
  }
  .l-header-cv__btn-en {
    font-size: 16px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #000;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  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%;
}
.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: 45px 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-weight: 500;
  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 25px;
  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-weight: 400;
  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 100px;
  }
  .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: 60px;
  height: 60px;
  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 {
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: calc(var(--cv-height) + 10px);
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.gnavBtn {
  overflow: hidden;
  cursor: pointer;
  width: 60px;
  height: 60px;
  position: fixed;
  z-index: 9992;
  top: 20px;
  right: 20px;
  background: var(--color-red);
  border-radius: 50%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn:hover {
  opacity: 0.7;
}
.gnavBtn span {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  width: 26px;
  height: 1px;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.gnavBtn span:nth-of-type(1) {
  top: 22px;
}
.gnavBtn span:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.gnavBtn span:nth-of-type(3) {
  bottom: 22px;
}
.gnavBtn.is-close span:nth-of-type(1) {
  -webkit-transform: translateY(7px) rotate(-225deg);
          transform: translateY(7px) 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(-8px) rotate(225deg);
          transform: translateY(-8px) rotate(225deg);
}
@media screen and (max-width: 768px) {
  .gnavBtn {
    top: 10px;
    right: 10px;
  }
}

.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 calc(var(--cv-width) + 10px) 100px 30px;
  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: 15px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.5;
}
.l-nav-list__item:last-of-type {
  margin-bottom: 0;
}
.l-nav-list__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;
  gap: 5px;
  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-list__item-en {
  color: var(--color-red);
  font-weight: 600;
  font-size: 26px;
  line-height: 1.1;
}
.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 {
    opacity: 1;
  }
  .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: 100px 20px calc(var(--cv-height) + 50px);
  }
  .l-nav-list__item {
    margin-bottom: 10px;
    font-size: 14px;
  }
  .l-nav-list__item a {
    gap: 3px;
  }
  .l-nav-list__item a::after {
    width: 8px;
    height: 8px;
    top: calc(50% - 4px);
  }
  .l-nav-list__item-en {
    font-size: 24px;
  }
}

/*============================================================================================================
	.l-mv
============================================================================================================*/
.l-mv {
  position: relative;
}
.l-mv img {
  width: 100%;
}
.l-mv__txt {
  width: 52.4%;
  left: 4.2%;
  bottom: 7.6%;
  position: absolute;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .l-mv {
    padding-top: 19.5vw;
    background: #fff;
  }
  .l-mv__txt {
    width: 87.7%;
    margin: 0 auto 6vw;
    position: static;
  }
}

.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  aspect-ratio: 1440/780;
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    aspect-ratio: 780/712;
  }
}
.js-mv-slider.is-initialized {
  opacity: 1;
}
.js-mv-slider .splide__track {
  height: 100%;
}
.js-mv-slider img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/*============================================================================================================
	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: 7px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.c-tit01__en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-red);
  font-weight: 600;
  font-size: 88px;
  font-family: "Jost", sans-serif;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    gap: 5px;
    font-size: 16px;
  }
  .c-tit01__en {
    font-size: 42px;
  }
}

/*------------------------------------------
	.secMerit
------------------------------------------*/
.secMerit {
  overflow-x: clip;
  margin-bottom: 130px;
  padding-block: 90px 80px;
  background: #F1DCDC;
}
.secMerit-sec {
  width: min(100%, 1020px);
  margin-inline: auto;
  padding-top: 110px;
  position: relative;
}
.secMerit-sec::after {
  content: "";
  display: block;
  background: no-repeat center/contain;
  position: absolute;
  pointer-events: none;
}
.secMerit-sec + .secMerit-sec {
  margin-top: 40px;
}
.secMerit-sec__tit {
  width: 240px;
  aspect-ratio: 1/1;
  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;
  padding-bottom: 25px;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  text-align: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
.secMerit-sec__tit::before {
  content: "";
  display: block;
  margin-bottom: -5px;
  background: no-repeat center/contain;
}
.secMerit-sec-txtBox {
  width: min(100%, 800px);
  margin-inline: auto;
  padding: 80px 50px 60px;
  border-radius: 16px;
  border: 2px solid var(--color-red);
  background: #fff;
}
.secMerit-sec__txt {
  font-weight: 400;
  font-size: 18px;
  line-height: 1.7;
  text-align: center;
  position: relative;
  z-index: 3;
}
.secMerit-sec__txt + .secMerit-sec__txt {
  margin-top: 30px;
}
.secMerit-sec__catch {
  margin-top: 30px;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.7;
  text-align: center;
  position: relative;
  z-index: 3;
}
.secMerit-sec__catch .line {
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0.25em, #FFD8D8), color-stop(0.25em, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #FFD8D8 0.25em, rgba(255, 255, 255, 0) 0.25em);
}
.secMerit-sec:nth-of-type(1)::after {
  width: 286px;
  aspect-ratio: 286/227;
  background-image: url(../img/img_merit01.svg);
  right: calc(50% - 510px);
  bottom: 2px;
}
.secMerit-sec:nth-of-type(1) .secMerit-sec__tit::before {
  height: 69px;
  aspect-ratio: 167/69;
  background-image: url(../img/txt_merit01.svg);
}
.secMerit-sec:nth-of-type(2)::after {
  width: 354px;
  aspect-ratio: 354/285;
  background-image: url(../img/img_merit02.svg);
  top: 0;
  left: calc(50% - 510px);
}
.secMerit-sec:nth-of-type(2) .secMerit-sec__tit {
  left: auto;
  right: 0;
}
.secMerit-sec:nth-of-type(2) .secMerit-sec__tit::before {
  height: 68px;
  aspect-ratio: 173/68;
  background-image: url(../img/txt_merit02.svg);
}
.secMerit-sec:nth-of-type(3)::after {
  width: 379px;
  aspect-ratio: 379/218;
  background-image: url(../img/img_merit03.svg);
  top: 22px;
  right: calc(50% - 550px);
}
.secMerit-sec:nth-of-type(3) .secMerit-sec__tit::before {
  height: 67px;
  aspect-ratio: 169/67;
  background-image: url(../img/txt_merit03.svg);
}
@media screen and (max-width: 768px) {
  .secMerit {
    --titSize: 170px;
    margin-bottom: 0;
    padding-block: 80px;
  }
  .secMerit-inner {
    padding-inline: 10px;
  }
  .secMerit-sec {
    padding-top: calc(var(--titSize) * 0.35);
  }
  .secMerit-sec::after {
    width: auto !important;
    max-width: calc(100% - (var(--titSize) + 20px));
    height: 100px;
    top: 75px !important;
    bottom: auto !important;
  }
  .secMerit-sec + .secMerit-sec {
    margin-top: 30px;
  }
  .secMerit-sec__tit {
    width: var(--titSize);
    padding-bottom: 15px;
    font-size: 18px;
    left: -5px;
  }
  .secMerit-sec__tit::before {
    margin-bottom: 0;
    height: 45px !important;
  }
  .secMerit-sec-txtBox {
    width: calc(100% - 10px);
    margin-inline: auto 0;
    padding: calc(var(--titSize) * 0.65 + 20px) 20px 40px;
  }
  .secMerit-sec__txt {
    font-size: 14px;
    text-align: left;
  }
  .secMerit-sec__txt + .secMerit-sec__txt {
    margin-top: 20px;
  }
  .secMerit-sec__catch {
    margin-top: 25px;
    font-size: min(5.4vw, 20px);
  }
  .secMerit-sec__catch .line {
    background: -webkit-gradient(linear, left bottom, left top, color-stop(0.3em, #FFD8D8), color-stop(0.3em, rgba(255, 255, 255, 0)));
    background: linear-gradient(to top, #FFD8D8 0.3em, rgba(255, 255, 255, 0) 0.3em);
  }
  .secMerit-sec:nth-of-type(1)::after {
    right: 25px;
  }
  .secMerit-sec:nth-of-type(2)::after {
    left: 25px;
  }
  .secMerit-sec:nth-of-type(2) .secMerit-sec__tit {
    right: -5px;
  }
  .secMerit-sec:nth-of-type(2) .secMerit-sec-txtBox {
    margin-inline: 0 auto;
  }
  .secMerit-sec:nth-of-type(3)::after {
    right: 20px;
  }
}

/*------------------------------------------
	.secJob
------------------------------------------*/
.secJob {
  margin-bottom: 100px;
}
.secJob__secTit {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .secJob {
    margin-bottom: 40px;
    padding-block: 80px 0;
  }
  .secJob__secTit {
    margin-bottom: 40px;
  }
}

/*	.secJob-sec
------------------------------------------*/
.secJob-sec {
  padding-bottom: 40px;
  position: relative;
}
.secJob-sec::after {
  content: "";
  display: block;
  width: calc(50% + 470px);
  height: calc(100% - 230px);
  background: var(--color-beige);
  border-radius: 16px 0 0 16px;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: -1;
  pointer-events: none;
}
.secJob-sec + .secJob-sec {
  margin-top: 100px;
}
.secJob-sec:nth-of-type(even)::after {
  right: auto;
  left: 0;
  border-radius: 0 16px 16px 0;
}
.secJob-sec:nth-of-type(even) .secJob-sec-top {
  -ms-grid-columns: 1fr 50%;
  grid-template-columns: 1fr 50%;
}
.secJob-sec:nth-of-type(even) .secJob-sec-top .secJob-sec-top-txtBox {
  margin-inline: auto 0;
}
.secJob-sec:nth-of-type(even) .secJob-sec-top .secJob-sec-top__img {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  border-radius: 20px 0 0 20px;
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  .secJob-sec:nth-of-type(odd) .secJob-sec-top {
    padding-right: var(--cv-width);
  }
}
@media screen and (max-width: 768px) {
  .secJob-sec {
    padding-bottom: 30px;
    padding-inline: calc(var(--inner-padding) + 10px) var(--inner-padding);
  }
  .secJob-sec::after {
    width: calc(100% - 10px);
    height: calc(100% - 110px);
  }
  .secJob-sec + .secJob-sec {
    margin-top: 80px;
  }
  .secJob-sec:nth-of-type(even) {
    padding-inline: var(--inner-padding) calc(var(--inner-padding) + 10px);
  }
  .secJob-sec:nth-of-type(even) .secJob-sec-top .secJob-sec-top__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-inline: auto calc((var(--inner-padding) + 10px) * -1);
  }
}

/* .secJob-sec-top */
.secJob-sec-top {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 50% clamp(60px, 6vw, 90px) 1fr;
  grid-template-columns: 50% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: clamp(60px, 6vw, 90px);
  margin-bottom: 125px;
}
.secJob-sec-top-txtBox {
  width: min(100%, 540px);
  padding-inline: 10px;
}
.secJob-sec-top__tit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 17px;
  color: var(--color-red);
  font-weight: 900;
  font-size: 38px;
}
.secJob-sec-top__tit-ico {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.secJob-sec-top__txt {
  font-weight: 400;
  font-size: 18px;
}
.secJob-sec-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  border-radius: 0 20px 20px 0;
}
@media screen and (max-width: 768px) {
  .secJob-sec-top {
    -ms-grid-columns: 1fr !important;
    grid-template-columns: 1fr !important;
    grid-gap: 30px;
    margin-bottom: 60px;
  }
  .secJob-sec-top-txtBox {
    width: 100%;
    padding-inline: 0;
  }
  .secJob-sec-top__tit {
    gap: 15px;
    margin-bottom: 15px;
    font-size: 24px;
  }
  .secJob-sec-top__tit-ico {
    width: auto;
    height: 45px;
  }
  .secJob-sec-top__txt {
    font-size: 15px;
  }
  .secJob-sec-top__img {
    width: calc(100% + var(--inner-padding) + 10px);
    max-width: none;
    margin-left: calc((var(--inner-padding) + 10px) * -1);
  }
}

/* .secJob-sec-sche */
.secJob-sec-sche {
  width: min(100%, 820px);
  margin: 0 auto 25px;
}
.secJob-sec-sche__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 45px;
  padding: 0 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  position: relative;
}
.secJob-sec-sche__tit::before, .secJob-sec-sche__tit::after {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 26/49;
  background: url(../img/ico_chon01.svg) no-repeat center/contain;
  position: absolute;
  bottom: 0;
}
.secJob-sec-sche__tit::before {
  left: 0;
}
.secJob-sec-sche__tit::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secJob-sec-sche__tit-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-red);
  font-weight: 600;
  font-size: 14px;
  line-height: 1.1;
}
.secJob-sec-sche-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
}
.secJob-sec-sche-list__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: 105px 1fr;
  grid-template-rows: 105px 1fr;
}
.secJob-sec-sche-list__time {
  color: var(--color-red);
  font-weight: 600;
  font-size: 14px;
  text-align: center;
  line-height: 1.1;
}
.secJob-sec-sche-list__time img {
  display: block;
  width: min(100%, 66px);
  margin: 0 auto 12px;
}
.secJob-sec-sche-list__txt {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  grid-row: 2/3;
  margin: 0 auto;
  line-height: 1.5;
  letter-spacing: 0.2em;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  text-orientation: upright;
}
@media screen and (max-width: 768px) {
  .secJob-sec-sche {
    margin-bottom: 60px;
  }
  .secJob-sec-sche__tit {
    margin-bottom: 30px;
    padding-inline: 25px;
    font-size: 20px;
  }
  .secJob-sec-sche__tit::before, .secJob-sec-sche__tit::after {
    width: 16px;
  }
  .secJob-sec-sche__tit-en {
    font-size: 12px;
  }
  .secJob-sec-sche-list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
  }
  .secJob-sec-sche-listWrap {
    overflow: auto;
  }
  .secJob-sec-sche-list__item {
    -ms-grid-rows: 80px 1fr;
    grid-template-rows: 80px 1fr;
  }
  .secJob-sec-sche-list__time {
    font-size: 12px;
  }
  .secJob-sec-sche-list__time img {
    width: 45px;
  }
  .secJob-sec-sche-list__txt {
    font-size: 13px;
  }
}

/* .secJob-sec-point */
.secJob-sec-point {
  width: min(100%, 820px);
  margin: 0 auto 40px;
}
.secJob-sec-point__tit {
  margin-bottom: 27px;
  color: var(--color-red);
  font-weight: 600;
  font-size: 52px;
  text-align: center;
}
.secJob-sec-point-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 1fr 20px 1fr;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 20px;
}
.secJob-sec-point-list__item {
  padding: 35px 10px;
  background: #fff;
  border-radius: 16px;
}
.secJob-sec-point-list__ico {
  display: block;
  width: auto;
  height: 80px;
  margin: 0 auto 22px;
}
.secJob-sec-point-list__tit {
  margin-bottom: 14px;
  color: var(--color-red);
  font-weight: 700;
  font-size: 18px;
  text-align: center;
}
.secJob-sec-point-list__txt {
  width: calc(100% - 30px);
  margin-inline: auto;
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .secJob-sec-point {
    margin-bottom: 30px;
  }
  .secJob-sec-point__tit {
    margin-bottom: 20px;
    font-size: 30px;
  }
  .secJob-sec-point-list {
    width: min(100%, 300px);
    margin-inline: auto;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .secJob-sec-point-list__item {
    padding: 30px 10px 20px;
  }
  .secJob-sec-point-list__ico {
    height: 60px;
    margin-bottom: 15px;
  }
  .secJob-sec-point-list__txt {
    width: calc(100% - 20px);
  }
}

/* .secJob-sec__btn */
.secJob-sec__btn {
  width: min(100%, 340px);
  margin-inline: auto;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  text-align: center;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
.secJob-sec__btn a {
  min-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;
  padding: 10px 40px;
  border-radius: inherit;
  background: var(--color-red);
  border: 2px solid var(--color-red);
  position: relative;
}
.secJob-sec__btn a::after {
  content: "";
  display: block;
  width: 14px;
  aspect-ratio: 14/10;
  background: currentColor;
  -webkit-mask-image: url(../img/ico_arrow01.svg);
  mask-image: url(../img/ico_arrow01.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 0;
  right: 20px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .secJob-sec__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .secJob-sec__btn {
    font-size: 16px;
  }
  .secJob-sec__btn a {
    padding-inline: 30px;
  }
  .secJob-sec__btn a::after {
    width: 12px;
    right: 15px;
  }
}

/*------------------------------------------
	.secInterview
------------------------------------------*/
.secInterview {
  margin-bottom: 130px;
  padding-block: 125px 100px;
  position: relative;
}
.secInterview::after {
  content: "";
  display: block;
  width: min(100%, 50% + 600px);
  height: 100%;
  border-radius: 0 60px 60px 0;
  background: var(--color-beige);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.secInterview__secTit {
  margin-bottom: 65px;
}
@media screen and (max-width: 768px) {
  .secInterview {
    margin-bottom: 40px;
    padding-block: 80px;
  }
  .secInterview::after {
    width: calc(100% - 15px);
    border-radius: 0 30px 30px 0;
  }
  .secInterview__secTit {
    width: calc(100% - 20px);
    margin: 0 auto 50px;
  }
}

.secInterview-front__item a {
  display: block;
  position: relative;
}
.secInterview-front__job {
  padding: 8px 22px;
  background: #FFD8D8;
  color: var(--color-red);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 2;
}
.secInterview-front-imgBox {
  overflow: hidden;
  border-radius: 24px;
}
.secInterview-front-imgBox img {
  width: 100%;
}
.secInterview-front-txtBox {
  width: calc(100% - 20px);
  margin: -20px auto 0;
  position: relative;
  z-index: 2;
}
.secInterview-front__tit {
  width: 98%;
  margin-bottom: 10px;
  color: #fff;
  font-weight: 700;
  font-size: 22px;
}
.secInterview-front__tit .bg {
  padding: 4px 15px;
  background: var(--color-red);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 4px;
}
.secInterview-front__prof {
  font-weight: 700;
  line-height: 1.5;
}
.secInterview-front__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin: 8px 0 0 auto;
  padding-block: 5px;
  font-weight: 700;
  line-height: 1.5;
}
.secInterview-front__more::after {
  content: "";
  display: block;
  width: 40px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: var(--color-red) url(../img/ico_arrow01.svg) no-repeat center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 769px) {
  .secInterview-front__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
  .secInterview-front__item a:hover .secInterview-front-imgBox img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    -webkit-filter: brightness(0.8);
            filter: brightness(0.8);
  }
  .secInterview-front__item a:hover .secInterview-front__more::after {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  .secInterview-front-imgBox img {
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
  }
  .secInterview-front__more::after {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .secInterview-front__job {
    padding: 5px 10px;
    font-size: 14px;
    top: 10px;
    left: 10px;
  }
  .secInterview-front-imgBox {
    border-radius: 12px;
  }
  .secInterview-front__tit {
    font-size: 17px;
    line-height: 2.1;
  }
  .secInterview-front__tit .bg {
    padding-inline: 10px;
  }
  .secInterview-front__prof {
    font-size: 13px;
  }
  .secInterview-front__more {
    font-size: 13px;
  }
  .secInterview-front__more::after {
    width: 35px;
  }
}

.secInterview-front-nav {
  width: min(100% - var(--inner-padding) * 2, 288px);
  margin: 60px auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 88px;
  grid-template-columns: 1fr 88px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  grid-gap: 20px;
}
.secInterview-front-nav .my-carousel-progress {
  background: #fff;
}
.secInterview-front-nav .my-carousel-progress-bar {
  background: var(--color-red);
  height: 2px;
  -webkit-transition: width 1000ms ease;
  transition: width 1000ms ease;
  width: 0;
}
.secInterview-front-nav .splide__arrows {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 8px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 8px;
}
.secInterview-front-nav .splide__arrow {
  cursor: pointer;
  width: 100%;
  aspect-ratio: 1/1;
  padding: 0;
  background: var(--color-red);
  border-radius: 50%;
  border: 2px solid var(--color-red);
  color: #fff;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secInterview-front-nav .splide__arrow svg {
  display: none;
}
.secInterview-front-nav .splide__arrow::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 16/6;
  background: currentColor;
  -webkit-mask-image: url(../img/ico_arrow02.svg);
  mask-image: url(../img/ico_arrow02.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
  position: absolute;
  top: 37%;
  right: 0;
  left: 0;
  margin: auto;
}
.secInterview-front-nav .splide__arrow.splide__arrow--prev {
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.secInterview-front-nav .splide__arrow:hover {
  background: #fff;
  color: var(--color-red);
}
@media screen and (max-width: 768px) {
  .secInterview-front-nav {
    margin-top: 30px;
  }
}

.secInterview-content {
  width: min(100%, 980px);
  margin-inline: auto;
  padding-bottom: 40px;
  background: #F3F1EA;
  position: relative;
}
.secInterview-content-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-bottom: 60px;
}
.secInterview-content-top-txtBox {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
  margin: 90px 60px 0 -17%;
  position: relative;
  z-index: 2;
}
.secInterview-content-top__tit {
  color: #fff;
  font-weight: 700;
  font-size: min(3.1vw, 32px);
  line-height: 1.85;
}
.secInterview-content-top__tit .bg {
  padding: 4px 15px;
  background: var(--color-red);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  border-radius: 4px;
}
.secInterview-content-top-profBox {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 35px 0 0 auto;
}
.secInterview-content-top__job {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 7px;
  padding: 8px 22px;
  background: #FFD8D8;
  color: var(--color-red);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  letter-spacing: 0.05em;
}
.secInterview-content-top__prof {
  font-weight: 700;
  line-height: 1.5;
}
.secInterview-content-top__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: min(67.4%, 660px);
  -o-object-fit: cover;
     object-fit: cover;
}
.secInterview-content-q {
  width: min(100% - 40px, 860px);
  margin-inline: auto;
}
.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-left: 64px;
  font-weight: 700;
  font-size: 21px;
  line-height: 1.5;
  position: relative;
}
.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;
  border-radius: 50%;
  background: var(--color-red);
  color: #fff;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  font-family: "Jost", sans-serif;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
.secInterview-content-q__txt {
  padding: 40px;
  background: #fff;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.02em;
}
.secInterview-content-q__txt + .secInterview-content-q__tit {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .secInterview-content {
    padding-bottom: 30px;
  }
  .secInterview-content-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 50px;
  }
  .secInterview-content-top-txtBox {
    width: calc(100% - 40px);
    margin: -20px auto 0;
  }
  .secInterview-content-top__tit {
    font-size: 18px;
    line-height: 2.1;
  }
  .secInterview-content-top__tit .bg {
    padding-inline: 10px;
  }
  .secInterview-content-top-profBox {
    margin: 15px auto 0 0;
  }
  .secInterview-content-top__job {
    padding: 5px 10px;
    font-size: 14px;
  }
  .secInterview-content-top__prof {
    font-size: 13px;
  }
  .secInterview-content-top__img {
    width: 100%;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .secInterview-content-q__tit {
    min-height: 35px;
    margin-bottom: 15px;
    padding-left: 50px;
    font-size: 16px;
  }
  .secInterview-content-q__tit::after {
    width: 35px;
    height: 35px;
    font-size: 16px;
  }
  .secInterview-content-q__txt {
    padding: 20px;
    font-size: 14px;
    line-height: 1.8;
  }
  .secInterview-content-q__txt + .secInterview-content-q__tit {
    margin-top: 30px;
  }
}

/*	js - magnific_popup
------------------------------------------*/
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-red);
  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: 2px;
  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;
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose01 {
    top: 5px !important;
    right: 5px;
  }
}
.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%, 180px);
  height: 44px;
  margin: 40px auto 0;
  padding: 0;
  border: 1px solid #000;
  color: #000 !important;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.1em;
  font-family: "Jost", sans-serif;
}
@media screen and (min-width: 769px) {
  .mfp-close.modalClose02:hover {
    border-color: var(--color-red);
    background: var(--color-red);
    color: #fff !important;
  }
}
@media screen and (max-width: 768px) {
  .mfp-close.modalClose02 {
    margin-top: 30px;
  }
}

/*------------------------------------------
	.secMessage
------------------------------------------*/
.secMessage {
  padding-block: 0 120px;
  background: url(../img/bg_message01.svg) no-repeat left calc(50% - 475px) top 37px, url(../img/bg_message02.svg) no-repeat right calc(50% - 463px) bottom 60px;
}
.secMessage__secTit {
  margin-bottom: 100px;
}
.secMessage__catch {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
.secMessage__txt {
  font-size: 20px;
  text-align: center;
}
.secMessage__txt + .secMessage__txt {
  margin-top: 2em;
}
@media screen and (max-width: 768px) {
  .secMessage {
    margin-bottom: 20px;
    padding-block: 80px;
    background-position: 15px 30px, right 10px bottom 10px;
    background-size: 55px, min(35%, 120px);
  }
  .secMessage__secTit {
    margin-bottom: 50px;
  }
  .secMessage__catch {
    width: min(100%, 400px);
    margin: 0 auto 40px;
  }
  .secMessage__txt {
    font-size: 15px;
    text-align: left;
  }
}

/*------------------------------------------
	.secGallery
------------------------------------------*/
.secGallery {
  margin-bottom: 125px;
}
.secGallery img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .secGallery {
    margin-bottom: 0;
  }
}

/*------------------------------------------
	.secFaq
------------------------------------------*/
.secFaq {
  padding-block: 0 100px;
}
.secFaq__secTit {
  margin-bottom: 65px;
}
.secFaq-box {
  width: min(100%, 800px);
  margin-inline: auto;
}
.secFaq-box__tit {
  cursor: pointer;
  min-height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 15px 84px;
  border-radius: 6px;
  border: 1px solid #000;
  background: var(--color-red);
  color: #fff;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}
.secFaq-box__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;
  border-radius: 50%;
  border: 1px solid #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-weight: 400;
  font-size: 21px;
  text-align: center;
  font-family: "Jost", sans-serif;
  position: absolute;
  left: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
}
.secFaq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: #fff;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.secFaq-box__tit .btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.secFaq-box__tit.is-open {
  border-radius: 6px 6px 0 0;
}
.secFaq-box__tit.is-open .btn::after {
  opacity: 0;
  top: -20px;
}
.secFaq-box-content {
  display: none;
  padding: 30px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.secFaq-box-content + .secFaq-box__tit {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .secFaq {
    padding-block: 80px;
  }
  .secFaq__secTit {
    margin-bottom: 40px;
  }
  .secFaq-box__tit {
    min-height: 50px;
    padding: 15px 40px 15px 55px;
    font-size: 16px;
  }
  .secFaq-box__tit::after {
    width: 30px;
    height: 30px;
    font-size: 16px;
    left: 10px;
  }
  .secFaq-box__tit .btn {
    width: 20px;
    height: 20px;
    right: 10px;
  }
  .secFaq-box__tit .btn::before, .secFaq-box__tit .btn::after {
    height: 2px;
  }
  .secFaq-box-content {
    padding: 15px;
  }
}
/*# sourceMappingURL=style.css.map */