@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: 125px;
  --inner-width: min(100%, 1080px + (var(--inner-padding) * 2));
  --inner-padding: 10px;
  --color-txt: #000;
  --color-green: #046A38;
  --color-red: #C8102E;
}
@media screen and (min-width: 769px) {
  :root {
    --scroll-padding-top: calc(var(--header-height) + 35px);
  }
}
@media screen and (max-width: 768px) {
  :root {
    --header-height: 70px;
    --inner-padding: 20px;
  }
}

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

@font-face {
  font-family: "brandonGrotesque";
  src: url("../font/BrandonGrotesque-Black.woff2") format("woff2"), url("../font/BrandonGrotesque-Black.woff") format("woff"), url("../font/BrandonGrotesque-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
.f-en {
  font-family: "brandonGrotesque", sans-serif;
  font-weight: 900;
  letter-spacing: 0;
}

.js-mv-slider {
  opacity: 0;
  -webkit-transition: opacity 0.5s;
  transition: opacity 0.5s;
  aspect-ratio: 1440/680;
}
@media screen and (max-width: 768px) {
  .js-mv-slider {
    aspect-ratio: 780/1160;
  }
}
.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;
}

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

@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%;
  height: var(--header-height);
  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;
  background: #fff;
}
.l-header__logo {
  width: 160px;
  text-align: center;
}
.l-header__logo a, .l-header__logo img {
  display: block;
}
.l-header__logo img {
  margin-inline: auto;
}
.l-header__logo-txt {
  display: block;
  margin-top: 8px;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.5;
}
.l-header__entry {
  --btnSize: 180px;
  position: fixed;
  z-index: 9993;
  right: 20px;
  bottom: 100px;
  width: var(--btnSize);
  height: var(--btnSize);
  border-radius: 50%;
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1.4;
  text-align: center;
}
.l-header__entry 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: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
  height: 100%;
  border-radius: inherit;
  background: var(--color-red);
  border: 3px solid var(--color-red);
}
.l-header__entry-en {
  font-size: 2em;
  line-height: 1.1;
}
@media screen and (min-width: 769px) {
  .l-header {
    position: sticky;
    z-index: 9990;
    top: 0;
    left: 0;
    padding: 0 20px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header::after {
    content: "";
    display: block;
    height: 128%;
    aspect-ratio: 280/160;
    border-radius: 50%;
    background: inherit;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    z-index: -1;
    pointer-events: none;
  }
  .l-header__logo {
    position: absolute;
    z-index: 3;
    top: 20px;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .l-header__entry a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
}
@media screen and (min-width: 769px) and (max-width: 1080px) {
  .l-header__entry {
    --btnSize: 150px;
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .l-header {
    padding-inline: 15px min(100% - 110px, 215px);
  }
  .l-header__logo {
    width: auto;
  }
  .l-header__logo img {
    width: 86px;
  }
  .l-header__logo-txt {
    margin-top: 4px;
    font-size: 11px;
  }
  .l-header__entry {
    --btnSize: min(100% - 190px, 140px);
    top: 5px;
    right: 75px;
    bottom: auto;
    height: 60px;
    border-radius: 100px;
    font-size: 11px;
  }
  .l-header__entry a {
    gap: 3px;
  }
  .l-header__entry-en {
    font-size: 20px;
  }
}

/*============================================================================================================
	footer
============================================================================================================*/
.l-footer {
  padding: 0;
  background: #046A38;
  position: relative;
}
.l-footer p, .l-footer li {
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-family: "Noto Sans JP", "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-box {
  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: 20px;
  margin-bottom: 30px;
}
.l-footer-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 25px;
}
.l-footer-nav__item {
  list-style: none;
  color: #fff;
  font-weight: 400;
  font-size: 14px;
}
.l-footer-nav__item + .l-footer-nav__item {
  position: relative;
}
.l-footer-nav__item a {
  display: -ms-grid;
  display: grid;
  gap: 25px;
  color: inherit;
  text-decoration: none;
}
.l-footer-nav__item a:hover {
  opacity: 1;
  text-decoration: underline;
}
.l-footer-sns {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
.l-footer-copyright {
  -ms-grid-column-span: 2;
  grid-column: span 2/span 2;
  margin: 0;
  color: #fff !important;
  font-weight: 400;
  font-size: 11px;
}
@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-box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .l-footer-nav {
    display: block;
    margin: 0 auto 10px;
    width: 100%;
  }
  .l-footer-nav__item {
    font-size: 12px;
    text-align: center;
  }
  .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;
    text-align: center;
  }
}

.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: #046A38;
  border-radius: inherit;
  border: 1px solid #fff;
  -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: 10px;
  }
  .pagetop a::after {
    width: 10px;
    height: 10px;
  }
}

/*============================================================================================================
	nav
============================================================================================================*/
.l-nav a {
  display: block;
}

/* PC */
@media screen and (min-width: 769px) {
  .l-nav {
    display: block !important;
    height: auto !important;
    width: min(100%, 1040px);
    margin-inline: auto;
    position: relative;
    z-index: 2;
  }
  .l-nav-inner {
    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: 200px;
  }
  .l-nav-list {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 10px 60px;
  }
  .l-nav-list:nth-of-type(2) {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
  .l-nav-list__item {
    font-size: 18px;
    text-align: center;
    line-height: 1.5;
  }
  .l-nav-list__item a:hover {
    opacity: 1;
    color: var(--color-red);
  }
}
/* SP */
@media screen and (max-width: 768px) {
  .gnavBtn {
    overflow: hidden;
    cursor: pointer;
    width: 60px;
    height: 60px;
    z-index: 9992;
    position: fixed;
    top: 5px;
    right: 5px;
    background: var(--color-green);
    border-radius: 50%;
  }
  .gnavBtn span {
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    width: 28px;
    height: 2px;
    border-radius: 10px;
    background: #fff;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .gnavBtn span:nth-of-type(1) {
    top: 20px;
  }
  .gnavBtn span:nth-of-type(2) {
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .gnavBtn span:nth-of-type(3) {
    bottom: 20px;
  }
  .gnavBtn.is-close span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-225deg);
            transform: translateY(9px) 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(-9px) rotate(225deg);
            transform: translateY(-9px) rotate(225deg);
  }
  .l-nav {
    display: none;
    padding: 100px 20px 80px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9991;
    background: rgba(255, 255, 255, 0.95);
    overflow: auto;
  }
  .l-nav::-webkit-scrollbar {
    display: none;
  }
  .l-nav-list__item {
    border-bottom: 1px solid #999;
    font-size: 18px;
    line-height: 1.5;
  }
  .l-nav-list__item a {
    padding: 15px 30px 15px 20px;
    position: relative;
  }
  .l-nav-list__item a::after {
    content: "";
    display: block;
    width: 8px;
    height: 8px;
    color: var(--color-green);
    border-right: 2px solid;
    border-bottom: 2px solid;
    position: absolute;
    top: 0;
    right: 10px;
    bottom: 0;
    margin: auto;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
/*============================================================================================================
	component
============================================================================================================*/
.c-tit01 {
  margin: 0 auto;
  color: var(--color-red);
  font-weight: 900;
  font-size: 52px;
  text-align: center;
  letter-spacing: 0;
  font-family: "brandonGrotesque", sans-serif;
  position: relative;
}
.c-tit01::before, .c-tit01::after {
  content: "";
  display: block;
  background: var(--color-green);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-tit01::before {
  width: 160px;
  height: 3px;
  bottom: -10px;
}
.c-tit01::after {
  width: 190px;
  height: 13px;
  top: -16px;
  clip-path: polygon(0 0, 50% calc(100% - 3px), 100% 0, 100% 3px, 50% 100%, 0 3px);
}
@media screen and (max-width: 768px) {
  .c-tit01 {
    font-size: 40px;
  }
  .c-tit01::before {
    width: calc(40% - 15px);
    height: 2px;
  }
  .c-tit01::after {
    height: 10px;
    clip-path: polygon(0 0, 50% calc(100% - 2px), 100% 0, 100% 2px, 50% 100%, 0 2px);
  }
}

.c-tit02 {
  display: table;
  margin: 0 auto;
  color: var(--color-red);
  font-weight: 900;
  font-size: 52px;
  text-align: center;
  letter-spacing: 0;
  font-family: "brandonGrotesque", sans-serif;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-tit02 {
    font-size: 40px;
  }
}

.c-tit03 {
  display: table;
  margin: 0 auto;
  color: var(--color-red);
  font-weight: 900;
  font-size: 52px;
  text-align: center;
  letter-spacing: 0;
  font-family: "brandonGrotesque", sans-serif;
  position: relative;
}
.c-tit03::before, .c-tit03::after {
  content: "";
  display: block;
  background: var(--color-green);
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.c-tit03::before {
  width: calc(20% - 32px);
  height: 3px;
  bottom: -10px;
}
.c-tit03::after {
  width: 18%;
  height: 13px;
  top: -16px;
  clip-path: polygon(0 0, 50% calc(100% - 3px), 100% 0, 100% 3px, 50% 100%, 0 3px);
}
@media screen and (max-width: 768px) {
  .c-tit03 {
    font-size: 40px;
  }
  .c-tit03::before {
    width: calc(40% - 15px);
    height: 2px;
  }
  .c-tit03::after {
    width: 50%;
    height: 10px;
    clip-path: polygon(0 0, 50% calc(100% - 2px), 100% 0, 100% 2px, 50% 100%, 0 2px);
  }
}

.c-deco01 {
  --bgTop: 0;
  --bgBottom: 80px;
  --bgLeft: calc(50% - 500px);
  --bgRight: calc(50% - 510px);
  background: url(../img/common/img_dot01.webp) no-repeat left var(--bgLeft) top var(--bgBottom)/440px, url(../img/common/img_dot02.webp) no-repeat right var(--bgRight) top var(--bgTop)/440px;
}
@media screen and (max-width: 768px) {
  .c-deco01 {
    --bgTop: 30px;
    --bgLeft: 10px;
    --bgRight: 10px;
    background: url(../img/common/img_dot01.webp) no-repeat left var(--bgLeft) top 0/100%;
  }
}

.c-deco02 {
  --bgTop: 0;
  --bgBottom: 100px;
  --bgLeft: calc(50% - 500px);
  --bgRight: calc(50% - 510px);
  background: url(../img/common/img_dot01.webp) no-repeat left var(--bgLeft) top var(--bgBottom)/440px, url(../img/common/img_dot02.webp) no-repeat right var(--bgRight) top var(--bgTop)/440px;
}
@media screen and (max-width: 768px) {
  .c-deco02 {
    --bgTop: 30px;
    --bgLeft: 10px;
    --bgRight: 10px;
    background: url(../img/common/img_dot01.webp) no-repeat left var(--bgLeft) top 0/100%;
  }
}

.c-btn01 {
  width: min(100%, 300px);
  border-radius: 100px;
  color: #Fff;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  line-height: 1.3;
  letter-spacing: 0.09em;
}
.c-btn01 a {
  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;
  height: 80px;
  padding: 0 30px 10px;
  border-radius: inherit;
  background: var(--color-green);
  position: relative;
}
.c-btn01 a::after {
  content: "";
  display: block;
  width: 12px;
  height: 6px;
  background: url("../img/common/ico_arrow03.svg") no-repeat center/100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: -40px;
  margin: auto;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .c-btn01 a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    font-size: 15px;
    line-height: 1.2;
    border-radius: 8px;
  }
  .c-btn01 a {
    padding: 0 10px 10px;
    height: 90px;
  }
  .c-btn01 a::after {
    bottom: -50px;
  }
}

/*============================================================================================================
	page
============================================================================================================*/
/*	home
============================================================================================================*/
/*------------------------------------------
	.homeHeader
------------------------------------------*/
.homeHeader {
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.homeHeader__logo {
  position: fixed;
  z-index: 9990;
  top: 40px;
  left: 40px;
  text-align: center;
}
.homeHeader__logo a, .homeHeader__logo img {
  display: block;
}
.homeHeader__logo img {
  margin-inline: auto;
}
.homeHeader__logo-txt {
  display: block;
  margin-top: 10px;
  color: #fff;
  font-size: 15px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (min-width: 769px) {
  .homeHeader.is-scroll .homeHeader__logo-txt {
    color: var(--color-txt);
  }
}
@media screen and (max-width: 768px) {
  .homeHeader__logo {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    position: absolute;
    top: 20px;
    right: 0;
    left: 0;
    margin: auto;
  }
  .homeHeader__logo img {
    width: 124px;
  }
  .homeHeader__logo-txt {
    margin-top: 6px;
  }
}

/*------------------------------------------
	.homeMv
------------------------------------------*/
.homeMv {
  position: relative;
}
.homeMv img {
  width: 100%;
}
.homeMv__txt {
  width: 65.5%;
  position: absolute;
  left: 5.5%;
  bottom: 8.5%;
}
@media screen and (max-width: 768px) {
  .homeMv__txt {
    width: 87%;
    left: 7%;
    bottom: 6.5%;
  }
}

/*------------------------------------------
	.homeMessage
------------------------------------------*/
.homeMessage {
  padding-block: 140px;
}
.homeMessage-txtBox {
  padding-inline: 10px;
}
.homeMessage__secTit {
  margin-bottom: 48px;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: 0.05em;
}
.homeMessage__txt {
  letter-spacing: 0.02em;
}
.homeMessage__txt + .homeMessage__txt {
  margin-top: 2em;
}
.homeMessage__img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .homeMessage {
    padding-block: 80px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 30px;
  }
  .homeMessage-txtBox {
    padding-inline: var(--inner-padding);
  }
  .homeMessage__secTit {
    margin-bottom: 25px;
    font-size: 24px;
    line-height: 1.8;
  }
  .homeMessage__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/*	.is-one
------------------------------------------*/
.homeMessage.is-one .homeMessage__secTit {
  color: var(--color-red);
}
@media screen and (min-width: 769px) {
  .homeMessage.is-one {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 44% min(9%, 125px) 1fr;
    grid-template-columns: 44% 1fr;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: min(9%, 125px);
  }
  .homeMessage.is-one .homeMessage-txtBox {
    width: min(100%, 510px);
    margin: 0 auto 35px 0;
  }
  .homeMessage.is-one .homeMessage__img {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
}

/*	.is-two
------------------------------------------*/
.homeMessage.is-two {
  background: url(../img/home/img_message02.webp) no-repeat center/cover;
  color: #fff;
}
@media screen and (min-width: 769px) {
  .homeMessage.is-two {
    padding-block: 150px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr 49.5%;
    grid-template-columns: 1fr 49.5%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .homeMessage.is-two .homeMessage-txtBox {
    width: 540px;
    margin: 0 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .homeMessage.is-two {
    padding-block: 60px;
  }
}

/*	.is-three
------------------------------------------*/
.homeMessage.is-three .homeMessage__secTit {
  color: var(--color-green);
}
@media screen and (min-width: 769px) {
  .homeMessage.is-three {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: 1fr min(6%, 90px) 44%;
    grid-template-columns: 1fr 44%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    grid-gap: min(6%, 90px);
  }
  .homeMessage.is-three .homeMessage-txtBox {
    width: min(100%, 550px);
    margin: 0 0 0 auto;
  }
}

/*------------------------------------------
	.homeNav
------------------------------------------*/
.homeNav {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 40px 1fr;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 40px;
  width: min(100% - var(--inner-padding) * 2, 1080px);
  margin: 0 auto 140px;
}
.homeNav__btn {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  text-align: center;
}
.homeNav__btn a {
  height: 150px;
  padding: 10px 40px;
  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;
  background: var(--btnColor);
  border: 3px solid var(--btnColor);
  position: relative;
}
.homeNav__btn a::after {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: currentColor;
  -webkit-mask-image: url(../img/common/ico_arrow01.svg);
  mask-image: url(../img/common/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;
  right: 17px;
  bottom: 17px;
}
.homeNav__btn.is-green {
  --btnColor: var(--color-green);
}
.homeNav__btn.is-red {
  --btnColor: var(--color-red);
}
.homeNav__btn-small {
  font-weight: 500;
  font-size: 16px;
}
@media screen and (min-width: 769px) {
  .homeNav__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--btnColor);
  }
}
@media screen and (max-width: 768px) {
  .homeNav {
    position: fixed;
    z-index: 9993;
    left: 0;
    bottom: 0;
    grid-gap: 0;
    width: 100%;
    height: 70px;
    margin: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.5);
  }
  .homeNav__btn {
    font-size: 16px;
  }
  .homeNav__btn a {
    height: 100%;
    padding: 0 20px;
  }
  .homeNav__btn a::after {
    width: 10px;
    right: 10px;
    bottom: 10px;
  }
  .homeNav__btn-small {
    font-size: 11px;
  }
}

/*------------------------------------------
	pagetop - toppage custom
------------------------------------------*/
@media screen and (max-width: 768px) {
  body:has(.homeNav) .pagetop {
    bottom: 80px !important;
  }
}

/*	crew
============================================================================================================*/
/*------------------------------------------
	.crewMv
------------------------------------------*/
.crewMv {
  margin-bottom: 123px;
  position: relative;
}
.crewMv img {
  width: 100%;
}
.crewMv__txt {
  width: 38.4%;
  position: absolute;
  left: 7%;
  bottom: 22%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .crewMv {
    margin-bottom: 60px;
    padding-bottom: 9vw;
  }
  .crewMv__txt {
    width: 91%;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
  }
}

/*------------------------------------------
	.crewJob
------------------------------------------*/
.crewJob {
  padding-block: 60px 100px;
}
.crewJob__secTit {
  margin-bottom: 30px;
}
.crewJob__lead {
  margin-bottom: 55px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .crewJob {
    padding-block: 160px 80px;
  }
  .crewJob-inner {
    padding-inline: 10px;
  }
  .crewJob__lead {
    margin-bottom: 50px;
    font-size: 15px;
  }
}

.crewJob-set__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 20px 0 auto;
  border-radius: 0 0 12px 12px;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
}
.crewJob-set__back a {
  height: 60px;
  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: 12px;
  padding-inline: 50px 30px;
  border-radius: inherit;
  background: var(--color-green);
  position: relative;
}
.crewJob-set__back a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  background: url(../img/common/ico_arrow02.svg) no-repeat center/contain;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .crewJob-set {
    scroll-margin-top: var(--header-height);
  }
  .crewJob-set__back {
    margin-right: 10px;
  }
  .crewJob-set__back a {
    height: 50px;
    padding-inline: 30px 20px;
  }
}

.crewJob-nav {
  --item-height: 90px;
  height: var(--item-height);
  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: end;
  gap: 10px;
  margin-inline: auto;
}
.crewJob-nav__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 300px;
  height: calc(100% - 10px);
  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: 5px;
  background: #A2A2A2;
  border-radius: 8px 8px 0 0;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  text-align: center;
  line-height: 1.4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  cursor: pointer;
}
.crewJob-nav__item.is-active {
  height: 100%;
  background: var(--color-green);
  color: #fff;
}
@media screen and (min-width: 769px) {
  .crewJob-nav__item:hover {
    opacity: 0.7;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  .crewJob-nav {
    --item-height: 70px;
    gap: 5px;
  }
  .crewJob-nav__item {
    height: calc(100% - 5px);
    font-size: min(5vw, 14px);
    line-height: 1.5;
    letter-spacing: 0;
  }
}

.js-tab-content {
  display: none;
}
.js-tab-content.is-show {
  display: block;
}

.crewJob-contentWrap {
  padding: 60px 40px;
  background: #F8F8F8;
  border-radius: 12px;
}
.crewJob-content-titBox {
  width: min(100%, 880px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 30px;
  margin: 0 auto 30px;
}
.crewJob-content-titBox__num {
  width: 100%;
  margin-bottom: 15px;
  color: var(--color-red);
  font-size: 18px;
  line-height: 1.5;
}
.crewJob-content-titBox__tit {
  padding: 6px 22px;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  font-size: 28px;
  letter-spacing: 0.05em;
  text-align: center;
}
.crewJob-content-titBox__lead {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 495px;
  font-size: 17px;
  letter-spacing: 0.05em;
}
.crewJob-content-sec {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 1fr;
  grid-template-columns: 40% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 12px;
  background: #fff;
}
.crewJob-content-sec + .crewJob-content-sec {
  margin-top: 10px;
}
.crewJob-content-sec-txtBox {
  padding: 20px 60px;
}
.crewJob-content-sec__tit {
  margin-bottom: 25px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.crewJob-content-sec__txt {
  line-height: 1.75;
}
.crewJob-content-sec__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.crewJob-content__btn {
  width: min(100%, 300px);
  margin: 40px auto 0;
  border-radius: 100px;
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.crewJob-content__btn a {
  min-height: 60px;
  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 35px;
  background: var(--color-red);
  border: 2px solid var(--color-red);
  border-radius: inherit;
  position: relative;
}
.crewJob-content__btn a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  background: currentColor;
  -webkit-mask-image: url(../img/common/ico_arrow02.svg);
  mask-image: url(../img/common/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: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .crewJob-content__btn a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .crewJob-contentWrap {
    padding: 30px 20px;
  }
  .crewJob-content-titBox {
    width: 100%;
    display: block;
    margin-bottom: 30px;
  }
  .crewJob-content-titBox__num {
    margin-bottom: 10px;
    text-align: center;
  }
  .crewJob-content-titBox__tit {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 15px;
    font-size: 20px;
  }
  .crewJob-content-titBox__lead {
    max-width: none;
    font-size: 15px;
  }
  .crewJob-content-sec {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .crewJob-content-sec + .crewJob-content-sec {
    margin-top: 20px;
  }
  .crewJob-content-sec-txtBox {
    padding: 20px;
  }
  .crewJob-content-sec__tit {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .crewJob-content-sec__img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
  .crewJob-content__btn {
    margin-top: 30px;
    font-size: 16px;
  }
  .crewJob-content__btn a {
    padding-inline: 25px;
  }
  .crewJob-content__btn a::after {
    right: 15px;
  }
}

/*------------------------------------------
	.crewVoice
------------------------------------------*/
.crewVoice {
  margin-bottom: 123px;
  padding-block: 200px 140px;
  background-color: #FAC954;
  position: relative;
}
.crewVoice::before {
  content: "";
  position: absolute;
  height: 100px;
  width: 100%;
  clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
  background-color: #fff;
  top: -1px;
  left: 0;
  color: #fff;
  text-align: center;
}
.crewVoice__secTit {
  margin-bottom: 30px;
}
.crewVoice__lead {
  margin-bottom: 55px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .crewVoice {
    --bgTop: 123px;
    scroll-margin-top: calc(var(--header-height) * -1);
  }
}
@media screen and (max-width: 768px) {
  .crewVoice {
    margin-bottom: 40px;
    padding-block: 80px;
  }
  .crewVoice::before {
    content: "";
    position: absolute;
    height: 50px;
    width: 100%;
    clip-path: polygon(50% 100%, 100% 0%, 0% 0%);
    background-color: #fff;
    top: 0;
    left: 0;
    color: #fff;
    text-align: center;
  }
  .crewVoice__lead {
    margin-bottom: 50px;
    font-size: 15px;
  }
}

.crewVoice-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 10px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .crewVoice-nav {
    gap: 5px;
    margin-bottom: 40px;
  }
}

.crewVoice-content {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 37% 80px 1fr;
  grid-template-columns: 37% 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  grid-gap: 80px;
}
.crewVoice-content + .crewVoice-content {
  margin-top: 100px;
}
.crewVoice-content-titBox {
  position: sticky;
  top: var(--scroll-padding-top);
}
.crewVoice-content-titBox__tit {
  padding: 8px 22px;
  background: var(--color-green);
  color: #fff;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.05em;
  position: absolute;
  top: 0;
  left: 0;
}
.crewVoice-content-titBox__img {
  width: 100%;
  border-radius: 12px;
}
.crewVoice-content__comment {
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.1em;
  position: relative;
}
.crewVoice-content__commentWrap {
  width: min(100%, 510px);
  margin-inline: auto 0;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 40px;
}
.crewVoice-content__comment::after {
  content: "";
  display: block;
  width: 46px;
  aspect-ratio: 46/36;
  background: url(../img/common/ico_bubble01.svg) no-repeat center/contain;
  position: absolute;
  right: calc(100% + 8px);
  bottom: 40px;
}
.crewVoice-content__comment__tit {
  font-size: 22px;
  font-weight: 700px;
  color: var(--color-green);
  line-height: 150%;
  letter-spacing: 0.1em;
}
.crewVoice-content__comment__txt {
  margin-top: 20px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .crewVoice-content {
    scroll-margin-top: var(--header-height);
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 40px;
  }
  .crewVoice-content + .crewVoice-content {
    margin-top: 60px;
  }
  .crewVoice-content-titBox {
    position: relative;
    top: 0;
  }
  .crewVoice-content-titBox__tit {
    font-size: 18px;
  }
  .crewVoice-content__comment {
    width: calc(100% - 30px);
    margin-inline: auto 0;
    padding: 20px;
    font-size: 13px;
    line-height: 1.8;
    letter-spacing: 0.05em;
  }
  .crewVoice-content__commentWrap {
    width: 100%;
    grid-gap: 30px;
  }
  .crewVoice-content__comment::after {
    width: 30px;
    right: 15px;
    bottom: calc(100% - 2px);
    -webkit-transform: rotate(80deg);
            transform: rotate(80deg);
  }
  .crewVoice-content__comment:nth-of-type(even) {
    margin-inline: 0 auto;
  }
  .crewVoice-content__comment:nth-of-type(even)::after {
    -webkit-transform: rotate(100deg) scale(1, -1);
            transform: rotate(100deg) scale(1, -1);
    right: auto;
    left: 15px;
  }
}

/*------------------------------------------
	.crewFeature
------------------------------------------*/
.crewFeature {
  margin-bottom: 40px;
  padding-block: 50px 100px;
}
.crewFeature__secTit {
  margin-bottom: 30px;
}
.crewFeature__lead {
  margin-bottom: 90px;
  font-size: 18px;
  line-height: 1.8;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .crewFeature {
    padding-block: 160px 40px;
  }
  .crewFeature__lead {
    margin-bottom: 70px;
    font-size: 15px;
  }
}

/*	.crewFeature-sec
------------------------------------------*/
.crewFeature-sec {
  padding: 100px 40px 40px;
  border: 1px solid var(--color-red);
  border-top: none;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.crewFeature-sec::before, .crewFeature-sec::after {
  content: "";
  position: absolute;
  top: 72px;
  width: 50%;
  height: 0;
  border-top: 1px solid var(--color-red);
  z-index: -1;
}
.crewFeature-sec::before {
  left: 0;
  -webkit-transform-origin: top right;
          transform-origin: top right;
  -webkit-transform: skewY(7.5deg);
          transform: skewY(7.5deg);
}
.crewFeature-sec::after {
  right: 0;
  -webkit-transform-origin: top left;
          transform-origin: top left;
  -webkit-transform: skewY(-7.5deg);
          transform: skewY(-7.5deg);
}
.crewFeature-sec + .crewFeature-sec {
  margin-top: 93px;
}
.crewFeature-sec__tit {
  --itemHeight: 80px;
  --itemGap: 30px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: var(--itemHeight);
  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;
  gap: var(--itemGap);
  padding-inline: var(--itemGap);
  background: #fff;
  color: var(--color-red);
  font-size: 42px;
  text-align: center;
  position: absolute;
  top: calc(var(--itemHeight) * -0.1);
  right: 50px;
  margin: auto;
  -webkit-transform: rotate(-8.5deg);
          transform: rotate(-8.5deg);
  line-height: 0.2;
}
.crewFeature-sec__tit span {
  font-size: 18px;
  font-weight: 500;
  color: #000;
}
.crewFeature-sec-box {
  overflow: hidden;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 40% 1fr;
  grid-template-columns: 40% 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #FEFAF0;
  border-radius: 12px;
}
.crewFeature-sec-box + .crewFeature-sec-box {
  margin-top: 20px;
}
.crewFeature-sec-box-txtBox {
  padding: 20px 60px;
}
.crewFeature-sec-box__tit {
  margin-bottom: 20px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
.crewFeature-sec-box__txt {
  line-height: 1.75;
}
.crewFeature-sec-box__img {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 769px) {
  .crewFeature-sec-box.is-invert {
    -ms-grid-columns: 1fr 40%;
    grid-template-columns: 1fr 40%;
  }
  .crewFeature-sec-box.is-invert .crewFeature-sec-box__img {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (max-width: 768px) {
  .crewFeature-sec {
    padding: 60px 15px 15px;
  }
  .crewFeature-sec::before, .crewFeature-sec::after {
    content: "";
    position: absolute;
    top: 5.9vw;
    width: 50%;
    height: 0;
    border-top: 1px solid var(--color-red);
    z-index: -1;
  }
  .crewFeature-sec::before {
    left: 0;
    -webkit-transform-origin: top right;
            transform-origin: top right;
    -webkit-transform: skewY(7.5deg);
            transform: skewY(7.5deg);
  }
  .crewFeature-sec::after {
    right: 0;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    -webkit-transform: skewY(-7.5deg);
            transform: skewY(-7.5deg);
  }
  .crewFeature-sec + .crewFeature-sec {
    margin-top: 60px;
  }
  .crewFeature-sec__tit {
    --itemHeight: 36px;
    --itemGap: 20px;
    font-size: 24px;
    right: 20px;
  }
  .crewFeature-sec__tit span {
    font-size: 14px;
  }
  .crewFeature-sec-box {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
  }
  .crewFeature-sec-box + .crewFeature-sec-box {
    margin-top: 20px;
  }
  .crewFeature-sec-box-txtBox {
    padding: 20px;
  }
  .crewFeature-sec-box__tit {
    margin-bottom: 12px;
    font-size: 18px;
  }
  .crewFeature-sec-box__img {
    height: auto;
    -o-object-fit: fill;
       object-fit: fill;
  }
}

/* .crewFeature-sec-box-sub */
.crewFeature-sec-box-sub {
  width: min(100% - 60px, 880px);
  margin: 20px auto 30px;
  padding: 30px 40px;
  background: #fff;
  border-radius: 24px;
}
.crewFeature-sec-box-sub__tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 25px;
  padding: 0 22px;
  color: var(--color-green);
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.05em;
  text-align: center;
  position: relative;
}
.crewFeature-sec-box-sub__tit::before, .crewFeature-sec-box-sub__tit::after {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 16/32;
  background: url(../img/common/ico_chon01.svg) no-repeat center/contain;
  position: absolute;
  bottom: -5px;
}
.crewFeature-sec-box-sub__tit::before {
  left: 0;
}
.crewFeature-sec-box-sub__tit::after {
  right: 0;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.crewFeature-sec-box-sub-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 23px;
}
.crewFeature-sec-box-sub-list__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-left: 1em;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.05em;
  line-height: 1.8;
  position: relative;
}
.crewFeature-sec-box-sub-list__item::after {
  content: "";
  display: block;
  width: 0.25em;
  height: 0.25em;
  border-radius: 50%;
  background: currentColor;
  position: absolute;
  top: 0.9em;
  left: 0;
}
.crewFeature-sec-box-sub-list__item .line {
  padding: 3px 0;
  background: -webkit-gradient(linear, left bottom, left top, color-stop(0.5em, #BAF4D8), color-stop(0.5em, rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #BAF4D8 0.5em, rgba(255, 255, 255, 0) 0.5em);
}
.crewFeature-sec-box-sub__txt {
  line-height: 1.75;
  text-align: center;
}
@media screen and (min-width: 769px) {
  .crewFeature-sec-box-sub {
    -ms-grid-column-span: 2;
    grid-column: span 2;
  }
}
@media screen and (max-width: 768px) {
  .crewFeature-sec-box-sub {
    width: calc(100% - 30px);
    margin-block: 20px;
    padding: 30px 20px 20px;
    border-radius: 12px;
  }
  .crewFeature-sec-box-sub__tit {
    padding-inline: 30px;
  }
  .crewFeature-sec-box-sub__tit::before, .crewFeature-sec-box-sub__tit::after {
    bottom: 0;
  }
  .crewFeature-sec-box-sub-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    display: block;
    margin: 0 auto 20px;
  }
  .crewFeature-sec-box-sub-list__item + .crewFeature-sec-box-sub-list__item {
    margin-top: 10px;
  }
  .crewFeature-sec-box-sub__txt {
    text-align: left;
  }
}

/*------------------------------------------
	.crewFaq
------------------------------------------*/
.crewFaq {
  margin-bottom: 40px;
  padding-block: 160px 120px;
  background-color: #F8F8F8;
  position: relative;
}
.crewFaq__secTit {
  margin-bottom: 100px;
}
.crewFaq-box {
  width: min(100%, 800px);
  margin-inline: auto;
}
.crewFaq-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 85px;
  background: var(--color-red);
  border-radius: 6px;
  border: 1px solid #000;
  color: #fff;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.crewFaq-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;
  background: #fff;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #000;
  font-weight: 900;
  font-size: 21px;
  text-align: center;
  letter-spacing: 0;
  font-family: "brandonGrotesque", sans-serif;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 20px;
  margin: auto;
}
.crewFaq-box__tit .btn {
  width: 30px;
  height: 30px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  margin: auto;
}
.crewFaq-box__tit .btn::before, .crewFaq-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;
}
.crewFaq-box__tit .btn::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
.crewFaq-box__tit.is-open {
  border-radius: 6px 6px 0 0;
}
.crewFaq-box__tit.is-open .btn::after {
  opacity: 0;
  top: -20px;
}
.crewFaq-box-content {
  display: none;
  padding: 30px;
  background: #fff;
  border-radius: 0 0 6px 6px;
  border: 1px solid #000;
  border-top: none;
  font-weight: 700;
  line-height: 1.85;
  letter-spacing: 0.03em;
}
.crewFaq-box-content + .crewFaq-box__tit {
  margin-top: 20px;
}
@media screen and (min-width: 769px) {
  .crewFaq {
    --bgTop: 60px;
    --bgBottom: 160px;
    scroll-margin-top: calc(var(--header-height) * -1);
  }
}
@media screen and (max-width: 768px) {
  .crewFaq {
    margin-bottom: 40px;
    padding-block: 160px 80px;
  }
  .crewFaq__secTit {
    margin-bottom: 40px;
  }
  .crewFaq-box__tit {
    min-height: 55px;
    padding: 10px 40px 10px 55px;
    font-size: 16px;
  }
  .crewFaq-box__tit::after {
    width: 30px;
    height: 30px;
    font-size: 17px;
    left: 10px;
  }
  .crewFaq-box__tit .btn {
    width: 20px;
    height: 20px;
    right: 10px;
  }
  .crewFaq-box__tit .btn::before, .crewFaq-box__tit .btn::after {
    height: 2px;
  }
  .crewFaq-box-content {
    padding: 15px;
    font-size: 13px;
  }
  .crewFaq-box-content + .crewFaq-box__tit {
    margin-top: 15px;
  }
}

/*------------------------------------------
	.crewSearch
------------------------------------------*/
.crewSearch {
  padding-block: 90px 120px;
}
.crewSearch-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 30px;
}
.crewSearch__secTit {
  width: 100%;
  margin-bottom: 120px;
}
.crewSearch-sec__tit {
  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;
  margin-bottom: 24px;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.3;
  letter-spacing: 0.06em;
}
.crewSearch-sec__tit-en {
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
  color: var(--color-red);
  font-size: 18px;
  line-height: 1.1;
}
@media screen and (max-width: 768px) {
  .crewSearch {
    padding-block: 160px 80px;
  }
  .crewSearch-inner {
    display: block;
  }
  .crewSearch__secTit {
    margin-bottom: 40px;
  }
  .crewSearch-sec__tit {
    font-size: 20px;
  }
}

/*	.crewSearch-category
------------------------------------------*/
.crewSearch-category {
  width: 36%;
}
.crewSearch-category-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  grid-gap: 10px;
}
.crewSearch-category-list__item {
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  letter-spacing: 0.05em;
}
.crewSearch-category-list__item a {
  min-height: 60px;
  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 35px;
  background: var(--color-red);
  border: 2px solid var(--color-red);
  position: relative;
}
.crewSearch-category-list__item a::after {
  content: "";
  display: block;
  width: 7px;
  aspect-ratio: 7/13;
  background: currentColor;
  -webkit-mask-image: url(../img/common/ico_arrow02.svg);
  mask-image: url(../img/common/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: 0;
  right: 25px;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 769px) {
  .crewSearch-category-list__item a:hover {
    opacity: 1;
    background: #fff;
    color: var(--color-red);
  }
}
@media screen and (max-width: 768px) {
  .crewSearch-category {
    width: 100%;
  }
  .crewSearch-category-list__item {
    font-size: 16px;
  }
  .crewSearch-category-list__item a {
    padding-inline: 25px;
  }
  .crewSearch-category-list__item a::after {
    right: 15px;
  }
}

/*	.crewSearch-area
------------------------------------------*/
@media screen and (min-width: 769px) {
  .crewSearch-area {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    max-width: 580px;
  }
}
@media screen and (max-width: 768px) {
  .crewSearch-area {
    margin-top: 60px;
  }
}
/*# sourceMappingURL=style.css.map */