@charset "UTF-8";
:root {
  --rate-vw: 0.0714285714vw;
  --rate-fz: 0.0714285714vw;
}
@media screen and (max-width: 767px) {
  :root {
    --rate-vw: 0.1333333333vw;
    --rate-fz: 0.1333333333vw;
  }
}

/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, 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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

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

img {
  border: none;
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
  height: auto;
}

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  word-break: break-all;
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  margin-inline: auto;
  width: clamp(0px, 1100 * var(--rate-vw), 1100px);
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .inner {
    width: clamp(0px, 630 * var(--rate-vw), 630px);
  }
}

/* セクションタイトル
------------------------------*/
.c-section-title {
  text-align: center;
}

.c-section-title__en {
  display: block;
  font-size: clamp(0px, 120 * var(--rate-fz), 120px);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}
@media (max-width: 767px) {
  .c-section-title__en {
    font-size: clamp(0px, 143 * var(--rate-fz), 143px);
  }
}

.c-section-title__ja {
  display: inline-block;
  font-size: clamp(0px, 27 * var(--rate-fz), 27px);
  font-weight: 700;
  line-height: 1.6; /*  */
  letter-spacing: 0.1em;
  position: relative;
  padding-left: 1em;
}
.c-section-title__ja::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-30%, -50%); /*  */
  background: #02ba7b;
  -webkit-clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
          clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
  width: 1.15em;
  aspect-ratio: 31/29;
}
@media (max-width: 767px) {
  .c-section-title__ja {
    font-size: clamp(0px, 42 * var(--rate-fz), 42px);
  }
}

/* ボタン
------------------------------*/
.c-btn {
  display: flex;
  justify-content: space-between;
  color: #fff;
  font-family: "Outfit", sans-serif;
  background: #02ba7b;
}
.c-btn::after {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_button-arrow.svg) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 1/1;
}
@media (max-width: 767px) {
  .c-btn::after {
    transform: scale(1.2);
  }
}

/* ページタイトル
------------------------------*/
.c-page-header {
  position: relative;
  aspect-ratio: 1400/600;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding-top: clamp(0px, 140 * var(--rate-vw), 140px);
}
@media (min-width: 768px) {
  .c-page-header {
    max-height: 570px;
  }
}
@media (max-width: 767px) {
  .c-page-header {
    aspect-ratio: 750/567;
    padding-top: 0;
    justify-content: center;
  }
}

.c-page-header__visual {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-page-header__visual img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-page-header__body {
  position: relative;
}

.c-page-title__en {
  display: block;
  font-size: clamp(0px, 86 * var(--rate-fz), 86px);
  font-weight: 700;
  color: #fff;
  font-family: "Outfit", sans-serif;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .c-page-title__en {
    font-size: clamp(0px, 116 * var(--rate-fz), 116px);
    letter-spacing: 0.1em;
  }
}

.c-page-title__ja {
  display: block;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
  position: relative;
  padding-left: 1.5em;
  margin-top: 0.6em;
  margin-left: 0.5em;
}
.c-page-title__ja::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #02ba7b;
  -webkit-clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
          clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
  width: 1.1em;
  aspect-ratio: 31/29;
}
@media (max-width: 767px) {
  .c-page-title__ja {
    font-size: clamp(0px, 42 * var(--rate-fz), 42px);
    margin-left: 0.3em;
    transform: translateY(-40%);
  }
}

.c-page-description { /*  */
  font-feature-settings: "palt";
  margin-top: 2.1em;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px);
  font-weight: 500;
  line-height: 1.8333333333;
  letter-spacing: 0.12em;
  color: #fff;
}
@media (max-width: 767px) {
  .c-page-description {
    font-size: clamp(0px, 38 * var(--rate-fz), 38px);
    color: #282828;
    line-height: 1.75;
    margin-top: 1.3em;
  }
}

/* c-cta
------------------------------*/
.c-cta__content { /*  */
  border: 1px solid #757473;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0px, 30 * var(--rate-vw), 30px) 0; /*  */
}
@media (max-width: 767px) {
  .c-cta__content {
    display: block;
    padding: clamp(0px, 70 * var(--rate-vw), 70px) clamp(0px, 70 * var(--rate-vw), 70px) clamp(0px, 90 * var(--rate-vw), 90px);
  }
}

.c-cta__message {
  font-size: clamp(0px, 26 * var(--rate-fz), 26px);
  font-weight: 700;
  line-height: 2.1923076923;
  letter-spacing: 0.14em;
}
@media (max-width: 767px) {
  .c-cta__message {
    font-size: clamp(0px, 43 * var(--rate-fz), 43px);
    text-align: center;
    letter-spacing: 0.1em;
    line-height: 1.4;
  }
}

.c-cta__button { /*  */
  margin-left: 2%;
}
.c-cta__button a {
  width: clamp(0px, 256 * var(--rate-vw), 256px);
  font-size: clamp(0px, 25 * var(--rate-fz), 25px);
  letter-spacing: 0.18em;
  padding: 0.7em 1.5em;
  border-radius: 2em;
}
@media (max-width: 767px) {
  .c-cta__button {
    margin-top: clamp(0px, 24 * var(--rate-vw), 24px);
  }
  .c-cta__button a {
    width: 100%;
    font-size: clamp(0px, 46 * var(--rate-fz), 46px);
  }
}

/*------------------------------
header
------------------------------*/
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: clamp(0px, 45 * var(--rate-vw), 45px);
  z-index: 50;
}
@media (max-width: 767px) {
  header {
    padding-top: clamp(0px, 30 * var(--rate-vw), 30px);
  }
}

@media (min-width: 768px) {
  .header__inner {
    width: clamp(0px, 1280 * var(--rate-vw), 1280px);
  }
}
@media (max-width: 767px) {
  .header__inner {
    width: 92%;
  }
}

.header__content {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767px) {
  .header__content {
    justify-content: space-between;
  }
}

.header__nav {
  display: flex;
  align-items: center;
}

.header__menu {
  display: flex;
}
.header__menu li:nth-child(n+2) {
  margin-left: clamp(0px, 20 * var(--rate-vw), 20px);
}
.header__menu li a {
  display: inline-block;
  height: 100%;
  font-size: clamp(0px, 18 * var(--rate-fz), 18px);
  font-weight: 500;
  color: #fff;
  font-family: "Outfit", sans-serif;
  position: relative;
  padding-left: 1em;
  letter-spacing: 0.07em;
}
.header__menu li a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
          clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
  width: 1em;
  aspect-ratio: 31/29;
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__contact {
  margin-left: clamp(0px, 14 * var(--rate-vw), 14px);
}
.header__contact a {
  width: clamp(0px, 140 * var(--rate-vw), 140px);
  font-size: clamp(0px, 14 * var(--rate-fz), 14px);
  font-weight: 400;
  letter-spacing: 0.18em;
  padding: 0.7em 1.4em;
  border-radius: 2em;
}
@media (max-width: 767px) {
  .header__contact a {
    width: clamp(0px, 240 * var(--rate-vw), 240px);
    font-size: clamp(0px, 23 * var(--rate-fz), 23px);
    letter-spacing: 0.25em;
    padding: 0.6em 1.4em;
    padding-right: 1em;
  }
  .header__contact a::after {
    width: 1.2em;
  }
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
  transform: translateX(25%);
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  transform: rotate(45deg);
  top: 8px;
}

.drawer-icon__bars {
  width: clamp(0px, 60 * var(--rate-vw), 60px);
  aspect-ratio: 61/17;
  height: auto;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2 {
  position: absolute;
  width: clamp(0px, 60 * var(--rate-vw), 60px);
  height: 2px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
  transition: transform 0.3s;
}

.drawer-icon__bar2 {
  top: 100%;
  transform: translateY(-100%);
  transition: transform 0.3s;
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #02ba7b;
  padding: clamp(0px, 150 * var(--rate-vw), 150px) clamp(0px, 100 * var(--rate-vw), 100px);
  z-index: 299;
  transform: translateX(105%);
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-menu {
  font-size: clamp(0px, 100 * var(--rate-fz), 100px);
  font-weight: 700;
  font-family: "Outfit", sans-serif;
}
.drawer-menu li:nth-child(n+2) {
  margin-top: clamp(0px, 67 * var(--rate-vw), 67px);
}
.drawer-menu li a {
  display: inline-block;
  color: #fff;
  font-family: "Outfit", sans-serif;
}

.drawer-item__ja {
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  font-size: clamp(0px, 34 * var(--rate-vw), 34px);
  position: relative;
  padding-left: 1.3em;
  margin-top: 0.4em;
}
.drawer-item__ja::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  -webkit-clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
          clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
  width: 1em;
  aspect-ratio: 31/29;
}

.drawer-copyright {
  position: absolute;
  writing-mode: vertical-rl;
  bottom: clamp(0px, 45 * var(--rate-vw), 45px);
  right: clamp(0px, 33 * var(--rate-vw), 33px);
  font-size: clamp(0px, 32 * var(--rate-vw), 32px);
  font-weight: 400;
  color: #fff;
  letter-spacing: 0.1em;
}

/*------------------------------
footer
------------------------------*/
footer {
  background: #282828;
  padding: clamp(0px, 70 * var(--rate-vw), 70px) 0;
}
@media (max-width: 767px) {
  footer {
    padding-top: clamp(0px, 90 * var(--rate-vw), 90px);
    padding-bottom: 2%;
  }
}

.footer__wrapper {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__wrapper {
    display: block;
  }
}

.footer__block {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .footer__block {
    display: block;
    text-align: center;
  }
}

.footer__logo {
  width: clamp(0px, 190 * var(--rate-vw), 190px);
}
@media (max-width: 767px) {
  .footer__logo {
    width: clamp(0px, 340 * var(--rate-vw), 340px);
    margin: 0 auto;
  }
}

.footer__button {
  margin-left: clamp(0px, 24 * var(--rate-vw), 24px);
}
.footer__button a {
  font-size: clamp(0px, 15 * var(--rate-fz), 15px);
  font-weight: 400;
  padding: 0.6em 1.5em;
  border-radius: 2em;
  width: clamp(0px, 150 * var(--rate-vw), 150px);
}
@media (max-width: 767px) {
  .footer__button {
    margin: 7% auto 0;
  }
  .footer__button a {
    width: clamp(0px, 335 * var(--rate-vw), 335px);
    font-size: clamp(0px, 33 * var(--rate-fz), 33px);
    margin: 0 auto;
    letter-spacing: 0.2em;
    padding: 0.7em 1.5em;
    padding-right: 1em;
  }
}

.footer__menu {
  display: flex;
  align-items: center;
  margin-left: clamp(0px, 175 * var(--rate-vw), 175px);
}
.footer__menu li:nth-child(n+2) {
  margin-left: clamp(0px, 35 * var(--rate-vw), 35px);
}
.footer__menu li a {
  display: inline-block;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px);
  font-weight: 300;
  font-family: "Outfit", sans-serif;
  color: #fff;
  position: relative;
  padding-left: 1em;
  letter-spacing: 0.14em;
}
.footer__menu li a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(-30%, -50%); /*  */
  background: #02ba7b;
  -webkit-clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
          clip-path: polygon(65% 0, 100% 0, 35% 100%, 0% 100%);
  width: 1.15em;
  aspect-ratio: 31/29;
}
@media (max-width: 767px) {
  .footer__menu {
    margin-left: 0;
    margin-top: clamp(0px, 70 * var(--rate-vw), 70px);
    display: block;
    padding-left: 5%;
  }
  .footer__menu li:nth-child(n+2) {
    margin-left: 0;
    margin-top: 7%;
  }
  .footer__menu li a {
    font-size: clamp(0px, 57 * var(--rate-fz), 57px);
    white-space: nowrap;
  }
  .footer__menu li a::before {
    width: 0.9em;
  }
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  color: #fff;
  margin-top: clamp(0px, 25 * var(--rate-vw), 25px);
}
@media (max-width: 767px) {
  .footer__bottom {
    display: block;
    margin-top: clamp(0px, 65 * var(--rate-vw), 65px);
  }
}

.footer__info {
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .footer__info {
    display: block;
    padding-left: 3%;
  }
}

.footer__company {
  font-size: clamp(0px, 17 * var(--rate-fz), 17px);
  font-weight: 500;
  line-height: 1.7647058824;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .footer__company {
    font-size: clamp(0px, 31 * var(--rate-fz), 31px);
  }
}

.footer__address {
  font-size: clamp(0px, 13 * var(--rate-fz), 13px);
  font-weight: 400;
  line-height: 2.3076923077;
  margin-left: 1em;
  letter-spacing: 0.08em;
}
@media (max-width: 767px) {
  .footer__address {
    font-size: clamp(0px, 31 * var(--rate-fz), 31px);
    margin-left: 0;
    line-height: 1.6;
  }
}

.footer__copyright {
  font-size: clamp(0px, 14 * var(--rate-fz), 14px);
  font-weight: 400;
  line-height: 2.1428571429;
}
@media (max-width: 767px) {
  .footer__copyright {
    font-size: clamp(0px, 32 * var(--rate-fz), 32px);
    text-align: right;
    margin-top: 10%;
    transform: translateX(3%);
  }
}
/*# sourceMappingURL=common.css.map */