@charset "UTF-8";

:root {
  --c-white: #fff;
  --c-black: #333;
  --c-main-500: #FF8D03;
  --c-main-400: #FFD54F;
  --c-main-300: #FFF5D8;
  --c-main-200: #FFFAEA;

  --c-sub-01-500: #00731D;
  --c-sub-01-400: #58C57B;
  --c-sub-01-300: #98D8AD;
  --c-sub-01-200: #EDF6F0;

  --c-sub-02-500: #322A1B;
  --c-sub-02-400: #A0846C;
  --c-sub-02-300: #F5ECD1;
  --c-sub-02-200: #F8F7F1;
  --fs: 16;
}

/* ==========================================================================
  ELEMENT RESET
========================================================================== */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-family: serif;
}

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--c-sub-02-500);
  font-weight: 400;
  font-family: 'Noto Sans','Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  margin-top: 0;
  margin-bottom: 0;
  font-size: 1em;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
}

ol,
ul,
dl {
  margin-top: 0;
  margin-bottom: 0;
}

dd {
  margin-left: 0;
}

ol,
ul {
  margin: 0;
  padding-left: 0;
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
  cursor: pointer;
}

a {
  outline: 0;
}

a:focus,
button:focus {
  outline: 0;
}

em {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
}

button:focus {
  outline: none;
}

input,
button,
select,
textarea {
  line-height: inherit;
}

textarea {
  resize: vertical;
}

fieldset {
  min-width: 0;
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  display: block;
  width: 100%;
  margin-bottom: 0;
  padding: 0;
  line-height: inherit;
}

hr {
  margin: 0;
}

hr {
  margin: 5rem 0;
  border: 1px #ccc solid;
}

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

html {
  font-size: 16px;
}

@media (min-width: 768px) and (max-width: 1365px) {
  html {
    font-size: 14px;
  }
}

/* ==========================================================================
  UTILL
========================================================================== */

/* 画像置換 */

.u-ir {
  display: block;
  overflow: hidden;
  font: 0/0 a;
  white-space: nowrap;
  text-indent: 100%;
}

/* PC、タブレットで画像置換 */

@media all and (min-width: 768px), print {
  .u-ir--tab-pc {
    display: block;
    overflow: hidden;
    font: 0/0 a;
    white-space: nowrap;
    text-indent: 100%;
  }
}

/* --------------------------------------------------------------------------
  非表示
-------------------------------------------------------------------------- */

/* PCで非表示 */

@media all and (min-width: 1025px), print {
  .u-hide-pc {
    display: none;
  }
  .u-hide-pc-sp {
    display: none;
  }
}

/* PC、タブレットで非表示 */

@media all and (min-width: 768px), print {
  .u-hide-tab-pc {
    display: none;
  }
}

/* タブレットのみ非表示 */

@media all and (min-width: 768px) and (max-width: 1024px) {
  .u-hide-tab {
    display: none;
  }
}

@media all and (max-width: 1024px) {
  .u-hide-tab-sp {
    display: none;
  }
}

/* SPで非表示 */

@media all and (max-width: 767px) {
  .u-hide-sp {
    display: none;
  }
  .u-hide-pc-sp {
    display: none;
  }
}

/* --------------------------------------------------------------------------
  行揃え
-------------------------------------------------------------------------- */

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

.u-left {
  text-align: left;
}

.u-right {
  text-align: right;
}

/* TAB,PCのみ */

@media all and (min-width: 768px), print {
  .u-center-tab-pc {
    text-align: center;
  }
  .u-left-tab-pc {
    text-align: left;
  }
  .u-right-tab-pc {
    text-align: right;
  }
}

/* SPのみ */

@media all and (max-width: 767px) {
  .u-center-sp {
    text-align: center;
  }
  .u-left-sp {
    text-align: left;
  }
  .u-right-sp {
    text-align: right;
  }
}

.u-justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

.u-combine {
  text-combine-upright: all;
  -webkit-text-combine: horizontal;
  -ms-text-combine-horizontal: all;
}

/* --------------------------------------------------------------------------
  強調
-------------------------------------------------------------------------- */

.u-black {
  font-weight: 900;
}

.u-bold {
  font-weight: 700;
}

.u-medium {
  font-weight: 500;
}

/* --------------------------------------------------------------------------
  背景
-------------------------------------------------------------------------- */

/* main */

.u-bg-main-500 {
  background-color: var(--c-main-500);
}

.u-bg-main-100 {
  background-color: var(--c-main-100);
}

.u-bg-main-white {
  background-color: var(--c-white);
}

/* --------------------------------------------------------------------------
  テキストカラー
-------------------------------------------------------------------------- */

/* main */

.u-color-main-500 {
  color: var(--c-main-500);
}

.u-color-white {
  color: var(--c-white);
}

/* ==========================================================================
  LAYOUT
========================================================================== */

/* --------------------------------------------------------------------------
  MAIN
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .l-main-container {
  }
  .l-main-container__in {
    overflow: hidden;
  }
}

@media all and (max-width: 767px) {
  .l-main-container {
  }
  .l-main-container__in {
    overflow: hidden;
  }
}

/* --------------------------------------------------------------------------
  SECTION
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .l-sec {
  }
  .l-sec__in {
    max-width: calc(1000 / var(--fs) * 1rem);
    padding-inline: calc(50 / var(--fs) * 1rem);
    margin: auto;
  }
  .l-sec__body {
    padding: calc(80 / var(--fs) * 1rem) 0;
  }
  .l-sec__header {
    margin-bottom: calc(40 / var(--fs) * 1rem);
  }
  .l-sec__content {
  }
}

@media all and (max-width: 767px) {
  .l-sec {
  }
  .l-sec__in {
    padding-inline: calc(20 / 375 * 100vw);
    margin: auto;
  }
  .l-sec__body {
    padding: calc(40 / 375 * 100vw) 0;
  }
  .l-sec__header {
    margin-bottom: calc(24 / 375 * 100vw);
  }
  .l-sec__content {
  }
}

/* --------------------------------------------------------------------------
  BTN
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .l-btn-list {
    --col: 1;
    --gap-x: 32;
    --gap-y: 32;
    display: flex;
    gap: calc(var(--gap-y) / var(--fs) * 1rem) calc(var(--gap-x) / var(--fs) * 1rem);
    flex-wrap: wrap;
  }
  .l-btn-list-item {
    width: calc((100% - var(--gap-x) / var(--fs) * 1rem * (var(--col) - 1)) / var(--col));
  }

  /* postion */
  .l-btn-list--center {
    justify-content: center;
  }

  /* col */
  .l-btn-list--2col {
    --col: 2;
  }
  .l-btn-list--3col {
    --col: 3;
  }
  .l-btn-list--4col {
    --col: 4;
  }
  .l-btn-list--5col {
    --col: 5;
  }
  .l-btn-list--auto .l-btn-list-item {
    width: auto;
  }
}

@media all and (max-width: 767px) {
}

/* ==========================================================================
  HEADER COMPONENT
========================================================================== */

/* --------------------------------------------------------------------------
  その他
-------------------------------------------------------------------------- */

/* タイトル */

@media all and (min-width: 768px), print {
  .c-header-title {
    text-align: center;
  }
  .c-header-title__label {
    --header-fs: 30;
    font-size: calc(var(--header-fs) / var(--fs) * 1rem);
    line-height: calc(70 / var(--header-fs));
    font-weight: 600;
  }
  .c-header-title__label--accent {
    display: inline-block;
    margin-inline: calc(2 / var(--fs) * 1rem);
  }
  .c-header-title__label--large {
    --header-fs: 40;
    font-size: calc(var(--header-fs) / var(--fs) * 1rem);
    line-height: calc(70 / var(--header-fs));
  }
}

@media all and (max-width: 767px) {
  .c-header-title {
    text-align: center;
  }
  .c-header-title__label {
    --header-fs: 22;
    font-size: calc(var(--header-fs) / 375 * 100vw);
    line-height: calc(36 / var(--header-fs));
    font-weight: 600;
  }
  .c-header-title__label--accent {
    display: inline-block;
    margin-inline: calc(2 / 375 * 100vw);
  }
  .c-header-title__label--large {
    --header-fs: 28;
    font-size: calc(var(--header-fs) / 375 * 100vw);
    line-height: calc(36 / var(--header-fs));
  }
}

/* ==========================================================================
  TEXT COMPONENT
========================================================================== */

/* --------------------------------------------------------------------------
  テキスト
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-txt {
    --txt-fs: 16;
    --txt-lh: 1.8;
    font-size: calc(var(--txt-fs) / var(--fs) * 1rem);
    line-height: var(--txt-lh);
    a {
      text-decoration: underline;
      color: var(--c-main-500);
    }
  }
  .c-txt sub,
  .c-txt sub {
    font-size: 0.5em;
  }

  .c-txt sub {
    top: -0.5em;
  }

  .c-txt sub {
    bottom: -0.1em;
  }

  /* L */
  .c-txt--xxxl {
    --txt-fs: 28;
  }
  .c-txt--xxl {
    --txt-fs: 24;
  }
  .c-txt--xl {
    --txt-fs: 20;
  }
  .c-txt--l {
    --txt-fs: 18;
  }

  /* M */
  .c-txt--m {
    --txt-fs: 16;
  }

  /* S */
  .c-txt--s {
    --txt-fs: 14;
  }
  .c-txt--xs {
    --txt-fs: 12;
  }
  .c-txt--xxs {
    --txt-fs: 11;
  }
  .c-txt--xxxs {
    --txt-fs: 10;
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  リスト テキスト
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-list {
    --list-fs: 16;
    --list-lh: 1.6;
    font-size: calc(var(--list-fs) / var(--fs) * 1rem);
    line-height: var(--list-lh);
  }
  .c-list--desc {
    --list-desc-color: var(--c-main-500);
  }
  .c-list--num {
    counter-reset: item;
    > .c-list-item::before {
      content: counter(item) '.';
      counter-increment: item;
    }
  }
  .c-list-item {
    position: relative;
    display: flex;
    &::before {
      content: '・';
      flex-shrink: 0;
    }
  }
  .c-list--desc {
    .c-list-item::before {
      content: '';
      display: block;
      width: calc(var(--list-fs) / var(--fs) * 1rem);
      height: calc(var(--list-fs) / var(--fs) * 1rem);
      border-radius: 9999px;
      background-color: var(--list-desc-color);
      margin-top: calc((var(--list-fs) * var(--list-lh) - var(--list-fs)) / 2 / var(--fs) * 1rem);
      margin-right: calc(6 * var(--list-fs) / var(--fs) / var(--fs) * 1rem);
    }
  }
  .c-list-item__in {
  }

  /* L */
  .c-list--l {
    --list-fs: 18;
  }
  /* m */
  .c-list--m {
    --list-fs: 16;
  }
  /* s */
  .c-list--s {
    --list-fs: 14;
  }
  /* xs */
  .c-list--xs {
    --list-fs: 12;
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  注釈 テキスト
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-note {
    --note-txt-fs: 16;
    --note-position: start;
  }
  .c-note-txt {
    font-size: calc(var(--note-txt-fs) / var(--fs) * 1rem);
    display: flex;
    justify-content: var(--note-position);
  }
  .c-note-txt::before {
    content: '※';
  }
  .c-note-txt__label {
  }
  .c-note--num {
    counter-reset: item;
    > .c-note-txt::before {
      counter-increment: item;
      content: '※' counter(item);
    }
  }

  /* CENTER */
  .c-note--start {
    --note-position: start;
  }
  .c-note--center {
    --note-position: center;
  }
  .c-note--end {
    --note-position: end;
  }

  /* M */
  .c-note--m {
    --note-txt-fs: 16;
  }
  /* S */
  .c-note--s {
    --note-txt-fs: 14;
  }
  /* XS */
  .c-note--xs {
    --note-txt-fs: 12;
  }
  /* XXS */
  .c-note--xxs {
    --note-txt-fs: 11;
  }
  /* XXXS */
  .c-note--xxxs {
    --note-txt-fs: 10;
  }
}

@media all and (max-width: 767px) {
}

/* ==========================================================================
  BUTTON COMPONENT
========================================================================== */

/* --------------------------------------------------------------------------
  ボタン
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-btn {
    --btn-bg-color: #ED6019;
    --btn-border-color: #923303;
    --btn-txt-color: var(--c-white);
    --btn-arrow-color: var(--c-white);
    --btn-txt-fs: 20;
    --btn-min-height: 56;
    --btn-px: 50;
    --btn-ico-w: 8;
    --btn-ico-h: 12;
    --btn-radius: 9999;
    --btn-deg: 0;

    display: block;
    width: 100%;
    font-size: calc(var(--btn-txt-fs) / var(--fs) * 1rem);
    line-height: 1.5;
    border-radius: 9999px;
    box-shadow: calc(4 / var(--fs) * 1rem) calc(8 / var(--fs) * 1rem) 0 var(--btn-border-color);
  }
  a.c-btn:hover,
  a .c-btn:hover,
  button.c-btn:hover {
    .c-btn__in {
      transform: translate(calc(4 / var(--fs) * 1rem), calc(8 / var(--fs) * 1rem));
    }
  }
  .c-btn__in {
    background-color: var(--btn-bg-color);
    border-radius: calc(var(--btn-radius) / var(--fs) * 1rem);
    border: calc(3 / var(--fs) * 1rem) solid var(--btn-border-color);
    height: 100%;
    transition: all 0.2s;
  }
  .c-btn__body {
    position: relative;
    min-height: calc(var(--btn-min-height) / var(--fs) * 1rem);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: calc(8 / var(--fs) * 1rem);
    padding-inline: calc(18 / var(--fs) * 1rem) calc(var(--btn-px) / var(--fs) * 1rem);
  }
  .c-btn-txt {
    color: var(--btn-txt-color);
    text-align: center;
    width: 100%;
    transition: all 0.2s;
  }
  .c-btn-txt__label {
    font-weight: 700;
    letter-spacing: calc(10 / 100 * 1em);
    font-feature-settings: "palt";
  }
  .c-btn-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(var(--btn-deg));
    width: calc(var(--btn-px) / var(--fs) * 1rem);
    height: calc(var(--btn-min-height) / var(--fs) * 1rem);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-btn-arrow__label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--btn-ico-w) / var(--fs) * 1rem);
    padding-top: calc(var(--btn-ico-h) / var(--fs) * 1rem);
    background: url(../img/ico_arrow.svg) no-repeat center / contain;
  }


  /* fontsize */
  .c-btn--l {
    --btn-txt-fs: 28;
    --btn-min-height: 80;
    --btn-px: 78;
    --btn-ico-w: 20;
    --btn-ico-h: 20;
  }
  .c-btn--m {
    --btn-txt-fs: 16;
  }
  .c-btn--s {
    --btn-txt-fs: 14;
    --btn-min-height: 39;
  }
  .c-btn--xs {
    --btn-txt-fs: 12;
    --btn-min-height: 40;
  }

  /* blue */
  .c-btn--blue {
    --btn-bg-color: #41759D;
    --btn-border-color: #315B7A;
  }
}

@media all and (max-width: 767px) {
  .c-btn {
    --btn-bg-color: #ED6019;
    --btn-border-color: #923303;
    --btn-txt-color: var(--c-white);
    --btn-arrow-color: var(--c-white);
    --btn-txt-fs: 16;
    --btn-min-height: 43;
    --btn-px: 50;
    --btn-ico-w: 8;
    --btn-ico-h: 12;
    --btn-radius: 9999;
    --btn-deg: 0;

    display: block;
    width: 100%;
    font-size: calc(var(--btn-txt-fs) / 375 * 100vw);
    line-height: 1.5;
    border-radius: 9999px;
    box-shadow: calc(4 / 375 * 100vw) calc(8 / 375 * 100vw) 0 var(--btn-border-color);
  }
  .c-btn__in {
    background-color: var(--btn-bg-color);
    border-radius: calc(var(--btn-radius) / 375 * 100vw);
    border: calc(3 / 375 * 100vw) solid var(--btn-border-color);
    height: 100%;
  }
  .c-btn__body {
    position: relative;
    min-height: calc(var(--btn-min-height) / 375 * 100vw);
    display: flex;
    justify-content: center;
    align-items: center;
    padding-block: calc(8 / 375 * 100vw);
    padding-inline: calc(18 / 375 * 100vw) calc(var(--btn-px) / 375 * 100vw);
  }
  .c-btn-txt {
    color: var(--btn-txt-color);
    text-align: center;
    width: 100%;
  }
  .c-btn-txt__label {
    font-weight: 700;
    letter-spacing: calc(10 / 100 * 1em);
    font-feature-settings: "palt";
  }
  .c-btn-arrow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%) rotate(var(--btn-deg));
    width: calc(var(--btn-px) / 375 * 100vw);
    height: calc(var(--btn-min-height) / 375 * 100vw);
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-btn-arrow__label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(var(--btn-ico-w) / 375 * 100vw);
    padding-top: calc(var(--btn-ico-h) / 375 * 100vw);
    background: url(../img/ico_arrow.svg) no-repeat center / contain;
  }


  /* fontsize */
  .c-btn--l {
    --btn-txt-fs: 16;
    --btn-min-height: 56;
    --btn-px: 50;
    --btn-ico-w: 8;
    --btn-ico-h: 12;
  }
  .c-btn--m {
    --btn-txt-fs: 16;
  }
  .c-btn--s {
    --btn-txt-fs: 14;
    --btn-min-height: 39;
  }
  .c-btn--xs {
    --btn-txt-fs: 12;
    --btn-min-height: 40;
  }

  /* blue */
  .c-btn--blue {
    --btn-bg-color: #41759D;
    --btn-border-color: #315B7A;
  }
}

/* --------------------------------------------------------------------------
  アコーディオン
-------------------------------------------------------------------------- */

.js-accordion {
}

.js-accordion-trigger {
  cursor: pointer;
}

.js-accordion-container {
  transition: all 0.3s;
  display: none;
  opacity: 0;
  visibility: hidden;
  height: 0;
}

.js-accordion.is-accordion-active .js-accordion-container {
  display: block;
  opacity: 1;
  visibility: visible;
  height: auto;
}

@media all and (min-width: 768px), print {
  .c-accordion {
    border-radius: calc(20 / var(--fs) * 1rem);
    background: #145587;
    box-shadow: calc(7 / var(--fs) * 1rem) calc(8 / var(--fs) * 1rem) 0 #6C889E;
    transition: all 0.3s ease;
  }
  .c-accordion-header {
    font-size: calc(33 / var(--fs) * 1rem);
    line-height: 1.2;
  }
  .c-accordion-header__in {
    padding-inline: calc(38 / var(--fs) * 1rem);
  }
  .c-accordion-header__body {
    padding-block: calc(20 / var(--fs) * 1rem);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-accordion-header__label {
    color: var(--c-white);
    font-weight: 700;
  }
  .c-accordion-header__ico {
    display: block;
    width: calc(20 / var(--fs) * 1rem);
    position: relative;
    &::before,
    &::after {
      content: '';
      width: 100%;
      padding-top: calc(4 / var(--fs) * 1rem);
      background: var(--c-white);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(var(--deg));
      --deg: 0;
      transition: transform 0.3s;
    }
    &::before {
    }
    &::after {
      --deg: 90deg;
    }
  }
  .c-accordion-content {
  }
  .c-accordion-content__in {
    padding-inline: calc(18 / var(--fs) * 1rem);
  }
  .c-accordion-content__body {
    padding-block: 0 calc(21 / var(--fs) * 1rem);
  }
  /* アクティブ時 */
  .js-accordion.is-accordion-active {
    box-shadow: 0 0 0 #6C889E;
    .c-accordion-header__ico {
      &::before {
        --deg: 45deg;
      }
      &::after {
        --deg: 135deg;
      }
    }
  }
  .c-accordion:hover {
    .c-accordion-header__ico {
      &::before {
        --deg: 45deg;
      }
      &::after {
        --deg: 135deg;
      }
    }
  }

  .c-accordion-close {
    .c-btn {
      --btn-bg-color: #BFC7CE;
      --btn-ico-w: 13;
      --btn-ico-h: 13;
      box-shadow: calc(4 / var(--fs) * 1rem) calc(8 / var(--fs) * 1rem) 0 #6C889E;
    }
    .c-btn__in {
      border: none;
    }
    .c-btn__body {
      padding-inline: calc(var(--btn-px) / var(--fs) * 1rem);
    }
    .c-btn-arrow__label {
      background-image: url(../img/ico_close.svg);
    }
  }
}

@media all and (max-width: 767px) {
  .c-accordion {
    border-radius: calc(16 / 375 * 100vw);
    background: #145587;
    box-shadow: calc(7 / 375 * 100vw) calc(8 / 375 * 100vw) 0 #6C889E;
    transition: all 0.3s ease;
  }
  .c-accordion-header {
    font-size: calc(18 / 375 * 100vw);
    line-height: 1.2;
  }
  .c-accordion-header__in {
    padding-inline: calc(20 / 375 * 100vw);
  }
  .c-accordion-header__body {
    padding-block: calc(14 / 375 * 100vw);
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-accordion-header__label {
    color: var(--c-white);
    font-weight: 700;
  }
  .c-accordion-header__ico {
    display: block;
    width: calc(12 / 375 * 100vw);
    position: relative;
    &::before,
    &::after {
      content: '';
      width: 100%;
      padding-top: calc(2 / 375 * 100vw);
      background: var(--c-white);
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(var(--deg));
      --deg: 0;
      transition: transform 0.3s;
    }
    &::before {
    }
    &::after {
      --deg: 90deg;
    }
  }
  .c-accordion-content {
  }
  .c-accordion-content__in {
    padding-inline: calc(12 / 375 * 100vw);
  }
  .c-accordion-content__body {
    padding-block: 0 calc(21 / 375 * 100vw);
  }
  /* アクティブ時 */
  .js-accordion.is-accordion-active {
    box-shadow: 0 0 0 #6C889E;
    .c-accordion-header__ico {
      &::before {
        --deg: 45deg;
      }
      &::after {
        --deg: 135deg;
      }
    }
  }

  .c-accordion-close {
    .c-btn {
      --btn-bg-color: #BFC7CE;
      --btn-ico-w: 13;
      --btn-ico-h: 13;
      box-shadow: calc(4 / 375 * 100vw) calc(8 / 375 * 100vw) 0 #6C889E;
    }
    .c-btn__in {
      border: none;
    }
    .c-btn__body {
      padding-inline: calc(var(--btn-px) / 375 * 100vw);
    }
    .c-btn-arrow__label {
      background-image: url(../img/ico_close.svg);
    }
  }
}

/* ==========================================================================
  PARTS COMPONENT
========================================================================== */


/* ==========================================================================
  IMG SVG COMPONENT
========================================================================== */

/* --------------------------------------------------------------------------
  img
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .c-img {
  }
  .c-img__label {
    width: 100%;
  }
  .c-img__caption {
    margin-top: calc(16 / var(--fs) * 1rem);
  }
}

@media all and (max-width: 767px) {
}

/* --------------------------------------------------------------------------
  svg
-------------------------------------------------------------------------- */

.c-svg {
  position: relative;
  display: block;
  width: 100%;
}

.c-svg::before {
  display: block;
  padding-top: 100%;
  content: '';
}

.c-svg > svg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ==========================================================================
  COMMON
========================================================================== */

/* --------------------------------------------------------------------------
  GLOBAL HEADER
-------------------------------------------------------------------------- */

body.is-hamburger-open {
  overflow: hidden;
}

.js-hamburger-container {
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
  background: var(--c-main-100);
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-100%);
}

body.is-hamburger-open .js-hamburger-container {
  opacity: 1;
}

.js-hamburger-container.is-hamburger-active {
  transform: translateY(0);
  visibility: visible;
}

.js-hamburger-trigger {
}

body.is-hamburger-open {
  .gheader-hamburger-btn-ico {
    justify-content: center;
    &::before {
      top: 50%;
      transform: translate(-50%, -50%) rotate(45deg);
    }
    &::after {
      top: 50%;
      transform: translate(-50%, -50%) rotate(-45deg);
    }
  }
  .gheader-hamburger-btn-ico__deco {
    opacity: 0;
    display: none;
  }
}

@media all and (min-width: 768px), print {
  .gheader {
    height: calc(89 / var(--fs) * 1rem);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .gheader__in {
    padding-inline: calc(20 / var(--fs) * 1rem);
    position: relative;
    background: var(--c-white);
    height: 100%;
  }
  .gheader__body {
    padding-block: calc(12 / var(--fs) * 1rem);
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  .gheader__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(20 / var(--fs) * 1rem);
    width: 100%;
  }
  .gheader-logo {
    width: calc(293 / var(--fs) * 1rem);
  }
  .gheader-logo__label {
  }
  .gheader-main {
    display: flex;
    align-items: center;
    gap: calc(17 / var(--fs) * 1rem);
  }
  .gheader-menu {
    display: none;
  }
  .gheader-link-list__container {
  }
  .gheader-link-list {
    display: flex;
    align-items: center;
  }
  .gheader-link-list-item {
  }
  .gheader-link-list-item + .gheader-link-list-item {
    margin-left: calc(20 / var(--fs) * 1rem);
    padding-left: calc(20 / var(--fs) * 1rem);
    position: relative;
  }
  .gheader-link-list-item::before {
    content: "";
    display: block;
    width: 1px;
    background: #CDBD9F;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
  }
  .gheader-link {
    font-size: calc(13 / var(--fs) * 1rem);
    font-weight: 500;
    padding-block: calc(9 / var(--fs) * 1rem);
    display: block;
    transition: all .3s ease;
    &:hover {
      color: #CDBD9F;
    }
  }
  .consult-btn {
    width: calc(144 / var(--fs) * 1rem);
    .c-btn {
      --btn-txt-fs: 12;
      --btn-min-height: 31;
      --btn-px: 22;
      --btn-ico-w: 5;
      box-shadow: calc(2 / var(--fs) * 1rem) calc(4 / var(--fs) * 1rem) 0 var(--btn-border-color);
    }
    .c-btn__in {
      border-width: calc(2 / var(--fs) * 1rem);
    }
    .c-btn__body {
      padding-left: calc(12 / var(--fs) * 1rem);
      padding-block: calc(2 / var(--fs) * 1rem);
    }
    a.c-btn:hover .c-btn__in {
      transform: translate(calc(2 / var(--fs) * 1rem), calc(4 / var(--fs) * 1rem));
    }
  }
}

@media all and (max-width: 767px) {
  .gheader {
    height: calc(72 / 375 * 100vw);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  .gheader__in {
    padding-inline: calc(20 / 375 * 100vw);
    position: relative;
    background: var(--c-white);
    height: 100%;
  }
  .gheader__body {
    padding-block: calc(12 / 375 * 100vw);
    display: flex;
    justify-content: space-between;
    height: 100%;
  }
  .gheader__content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: calc(20 / 375 * 100vw);
    width: 100%;
  }
  .gheader-logo {
    width: calc(220 / 375 * 100vw);
  }
  .gheader-logo__label {
  }
  .gheader-main {
    display: flex;
    flex-direction: column;
    gap: calc(17 / 375 * 100vw);
  }
  .gheader-main--pc {
    .gheader-link-list__container,
    .consult-btn {
      display: none;
    }
  }
  .gheader-link-list__container {
  }
  .gheader-link-list {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
  .gheader-link-list-item {
    width: 100%;
    text-align: center;
  }
  .gheader-link-list-item + .gheader-link-list-item {
    margin-top: calc(20 / 375 * 100vw);
    padding-top: calc(20 / 375 * 100vw);
    position: relative;
  }
  .gheader-link-list-item:not(:first-child)::before {
    content: "";
    display: block;
    padding-top: 1px;
    background: #CDBD9F;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: calc(56 / 375 * 100vw);
  }
  .gheader-link {
    padding-block: calc(9 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
    display: block;
  }
  .consult-btn {
    width: calc(240 / 375 * 100vw);
    margin-inline: auto;
    .c-btn {
      --btn-px: 32;
      box-shadow: calc(2 / 375 * 100vw) calc(4 / 375 * 100vw) 0 var(--btn-border-color);
    }
    .c-btn__body {
      padding-inline: calc(var(--btn-px) / 375 * 100vw);
      padding-block: calc(2 / 375 * 100vw);
    }
    .c-btn__in {
      border-width: calc(2 / 375 * 100vw);
    }
    a.c-btn:hover .c-btn__in {
      transform: translate(calc(2 / 375 * 100vw), calc(4 / 375 * 100vw));
    }
  }

  .gheader-hamburger-btn {
    width: calc(36 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
    position: relative;
  }
  .gheader-hamburger-btn-ico {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    --line-color: #CDBD9F;
    width: 100%;
    height: 100%;
    &::before,
    &::after {
      content: '';
      display: block;
      background: var(--line-color);
      width: 100%;
      padding-top: calc(2 / 375 * 100vw);
      position: absolute;
      left: 50%;
      transition: all 0.3s ease;
    }
    &::before {
      top: 0;
      transform: translateX(-50%);
    }
    &::after {
      top: 100%;
      transform: translate(-50%, -100%);
    }
  }
  .gheader-hamburger-btn-ico__deco {
    display: block;
    width: 100%;
    padding-top: calc(2 / 375 * 100vw);
    background: var(--line-color);
  }

  .gheader-menu {
    padding-top: calc(72 / 375 * 100vw);
  }
  .gheader-menu__inner {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gheader-menu__content {
    position: relative;
    z-index: 1;
    padding-block: calc(24 / 375 * 100vw);
    padding-inline: calc(20 / 375 * 100vw);
    width: 100%;
    border-top: solid 1px #CDBD9F;
  }
  .gheader-bg {
    background: var(--c-white);
    position: fixed;
    inset: 0;
    height: 100vh;
  }
}

/* --------------------------------------------------------------------------
  GLOBAL FOOTER
-------------------------------------------------------------------------- */

@media all and (min-width: 768px), print {
  .gfooter {
  }
  .gfooter__in {
    max-width: calc(1000 / var(--fs) * 1rem);
    padding-inline: calc(50 / var(--fs) * 1rem);
    margin-inline: auto;
  }
  .gfooter__body {
    padding-block: calc(13 / var(--fs) * 1rem) calc(25 / var(--fs) * 1rem);
  }
  .gfooter-main {
    margin-bottom: calc(41 / var(--fs) * 1rem);
  }
  .gfooter-main__inner {
    display: flex;
    align-items: center;
    gap: calc(20 / var(--fs) * 1rem);
  }
  .gfooter-main-conditions {
    width: calc(43 / var(--fs) * 1rem);
    flex-shrink: 0;
  }
  .gfooter-main-link-list {
    display: flex;
  }
  .gfooter-main-link-list-item {
  }
  .gfooter-main-link-list-item:nth-child(2) {
    margin-left: calc(8 / var(--fs) * 1rem);
    padding-left: calc(8 / var(--fs) * 1rem);
    position: relative;
    &::before {
      content: "";
      display: block;
      width: 1px;
      padding-top: calc(12 / var(--fs) * 1rem);
      background: var(--c-sub-02-500);
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      margin-top: calc(2 / var(--fs) * 1rem);
    }
  }
  .gfooter-main-link {
    color: var(--c-sub-02-500);
    text-decoration: underline;
    font-size: calc(12 / var(--fs) * 1rem);
    letter-spacing: calc(10 / 100 * 1em);
    line-height: 1.4;
    font-feature-settings: "palt";
  }
  a.gfooter-main-link:hover {
    text-decoration: none;
  }
  .gfooter-bottom {
  }
  .gfooter-bottom__inner {
  }
  .gfooter-copyright {
    text-align: center;
  }
  .gfooter-copyright-txt {
    font-size: calc(12 / var(--fs) * 1rem);
    letter-spacing: calc(10 / 100 * 1em);
    line-height: 1.2;
    font-feature-settings: "palt";
  }
  .gfooter-bottom-link-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: calc(5 / var(--fs) * 1rem);
  }
  .gfooter-bottom-link-list-item {
  }
  .gfooter-bottom-link-list-item + .gfooter-bottom-link-list-item {
    margin-left: calc(8 / var(--fs) * 1rem);
    padding-left: calc(8 / var(--fs) * 1rem);
    position: relative;
    &::before {
      content: "";
      display: block;
      width: 1px;
      padding-top: calc(12 / var(--fs) * 1rem);
      background: var(--c-sub-02-500);
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      margin-top: calc(2 / var(--fs) * 1rem);
    }
  }
  .gfooter-bottom-link {
    color: var(--c-sub-02-500);
    font-size: calc(12 / var(--fs) * 1rem);
    letter-spacing: calc(10 / 100 * 1em);
    line-height: 1.2;
    font-feature-settings: "palt";
    text-decoration: underline;
    &:hover {
      text-decoration: none;
    }
  }
}

@media all and (max-width: 767px) {
  .gfooter {
  }
  .gfooter__in {
    padding-inline: calc(20 / 375 * 100vw);
    margin-inline: auto;
  }
  .gfooter__body {
    padding-block: calc(13 / 375 * 100vw) calc(25 / 375 * 100vw);
  }
  .gfooter-main {
    margin-bottom: calc(41 / 375 * 100vw);
  }
  .gfooter-main__inner {
    display: flex;
    align-items: center;
    gap: calc(20 / 375 * 100vw);
  }
  .gfooter-main-conditions {
    width: calc(43 / 375 * 100vw);
    flex-shrink: 0;
  }
  .gfooter-main-link-list {
  }
  .gfooter-main-link-list-item {
  }
  .gfooter-main-link-list-item:nth-child(2) {
  }
  .gfooter-main-link {
    color: var(--c-sub-02-500);
    text-decoration: underline;
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: calc(10 / 100 * 1em);
    line-height: 1.4;
    font-feature-settings: "palt";
  }
  .gfooter-bottom {
  }
  .gfooter-bottom__inner {
  }
  .gfooter-copyright {
    text-align: center;
  }
  .gfooter-copyright-txt {
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: calc(10 / 100 * 1em);
    line-height: 1.2;
    font-feature-settings: "palt";
  }
  .gfooter-bottom-link-list {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: calc(5 / 375 * 100vw);
  }
  .gfooter-bottom-link-list-item {
  }
  .gfooter-bottom-link-list-item + .gfooter-bottom-link-list-item {
    margin-left: calc(8 / 375 * 100vw);
    padding-left: calc(8 / 375 * 100vw);
    position: relative;
    &::before {
      content: "";
      display: block;
      width: 1px;
      padding-top: calc(12 / 375 * 100vw);
      background: var(--c-sub-02-500);
      position: absolute;
      top: 50%;
      left: 0;
      transform: translateY(-50%);
      margin-top: calc(2 / 375 * 100vw);
    }
  }
  .gfooter-bottom-link {
    color: var(--c-sub-02-500);
    font-size: calc(12 / 375 * 100vw);
    letter-spacing: calc(10 / 100 * 1em);
    line-height: 1.2;
    font-feature-settings: "palt";
    text-decoration: underline;
  }
}


@media all and (min-width: 768px), print {
  /* CTAボタン */
  body.is-fixed {
    .js-fixed-target {
      position: fixed;
      top: auto;
      bottom: calc(40 / var(--fs) * 1rem);
      z-index: 10;
    }
  }
  .js-fadein-trigger {
    img {
      opacity: 0;
      transform: scale(.25,0);
      rotate: X 90deg;
      transform-origin: bottom center;
      transition: transform .5s cubic-bezier(0.3, 1.3, 0.5, 1) , rotate .5s ease;
    }
  }
  .js-fadein-trigger.is-active {
    img {
      opacity: 1;
      transform: scale(1,1);
      rotate: X 0deg;
    }
  }
  .js-fixed-target {
    .l-btn-list {
      transform: translateY(100%);
      opacity: 0;
      transition: transform .5s cubic-bezier(0.3, 1.5, 0.5, 1),opacity .3s ease;
    }
  }
  body.loaded {
    .js-fixed-target {
      .l-btn-list {
        transform: translateY(0);
        opacity: 1;
      }
    }
  }
  #mv {
    opacity: 0;
    transition: all .5s ease;
  }
  body.loaded {
    #mv {
      opacity: 1;
    }
  }
  .js-fade-item {
    opacity: 0;
    transform: translateY(calc(20 / var(--fs) * 1rem));
    transition: transform .5s ease, opacity .5s ease;
    &.is-active {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media all and (max-width: 767px) {
  /* CTAボタン */
  body.is-fixed {
    .js-fixed-target {
      position: fixed;
      top: auto;
      bottom: calc(20 / 375 * 100vw);
      z-index: 10;
    }
  }
  .js-fadein-trigger {
    img {
      opacity: 0;
      transform: scale(.25,0);
      rotate: X 90deg;
      transform-origin: bottom center;
      transition: transform .5s cubic-bezier(0.3, 1.3, 0.5, 1) , rotate .5s ease;
    }
  }
  .js-fadein-trigger.is-active {
    img {
      opacity: 1;
      transform: scale(1,1);
      rotate: X 0deg;
    }
  }
  .js-fixed-target {
    .l-btn-list {
      transform: translateY(100%);
      opacity: 0;
      transition: all .5s ease;
    }
  }
  body.loaded {
    .js-fixed-target {
      .l-btn-list {
        transform: translateY(0);
        opacity: 1;
      }
    }
  }
  #mv {
    opacity: 0;
    transition: all .5s ease;
  }
  body.loaded {
    #mv {
      opacity: 1;
    }
  }
  .js-fade-item {
    opacity: 0;
    transform: translateY(calc(20 / 375 * 100vw));
    transition: transform .5s ease, opacity .5s ease;
    &.is-active {
      opacity: 1;
      transform: translateY(0);
    }
  }
}