@charset "utf-8";
/* ==============================
common
===============================*/

html {
  font-size: 62.5%;
  /* 1rem=10pxにする設定 */
  scroll-behavior: smooth;
}

body {
  font-family:
    "Cormorant Garamond", "Shippori Mincho B1", "Zen Kaku Gothic New", serif,
    sans-serif;
  font-style: normal;
  color: #333333;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
}

body,
html {
  margin: 0;
  padding: 0;
  width: 100%;
  overflow-x: hidden;
}

img {
  /* 画像伸び縮みする設定 */
  max-width: 100%;
  height: auto;
}

.l__title__en {
  color: #b7e1df;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.5rem;
  font-weight: 400;
  letter-spacing: 2.4px;
}

.l__title {
  font-family: "Shippori Mincho B1", serif;
  /* font-size: 2.5rem; */
  font-weight: 400;
  letter-spacing: 3px;
  white-space: nowrap;
}

#pagetop,
#mv,
#about,
#blog {
  scroll-margin-top: 74px;
  /* 固定ヘッダーの高さ */
}

.l__mv__flex__right picture,
.l__mv__flex__right img {
  width: 100%;
  height: 100%;
  display: block;
}

/* ----------------------------
common_pc
-----------------------------*/
@media screen and (min-width: 769px) {
  body {
    -webkit-font-smoothing: antialiased;
  }

  .l-page {
    width: 100%;
    overflow-x: auto;
  }

  .l__title__en {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.16em;
  }

  .l__title {
    font-family: "Shippori Mincho B1", serif;
    font-weight: 400;
  }

  #pagetop,
  #mv,
  #about,
  #blog {
    scroll-margin-top: 120px;
    /* 固定ヘッダーの高さ */
  }
}

/* ---------common pc end---------- */

/* ==============================
header
===============================*/

@media screen and (max-width: 700px) {
  .l__header {
    width: 100%;
  }

  .l__header__inner {
    min-width: 320px;
    padding: 0 6.4% 19px 6.4%;
    width: 100%;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;

    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    /* ヘッダーを固定する */
    top: 0;
    /* 上部から配置の基準位置を決める */
    left: 0;
    /* 左から配置の基準位置を決める */
    z-index: 100;
    /* ヘッダーを他の要素の上に表示 */

    /* ヘッダー隠すアニメーション */
    transition: transform 0.5s ease;
  }

  /* ヘッダー隠すアニメーション */
  .l__header--hide {
    transform: translateY(-100%);
  }

  .l__header__logo {
    width: 147px;
    height: auto;
    margin-top: 18px;
  }

  .l__header__logo a {
    transition: opacity 0.3s ease;
  }

  .l__header__logo a:hover {
    transition: 0.3s ease;
    opacity: 0.6;
  }

  .l__header__logo img {
    width: 100%;
    height: auto;
  }

  /* ----- ハンバーガーボタン ----- */

  .l__header__btn {
    display: inline-block;
    z-index: 1000;
    margin-top: 20px;
  }

  .l__header__btn__hb {
    display: flex;
    height: 26px;
    width: 28px;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 200;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
  }

  .l__header__btn__border {
    content: "";
    display: block;
    height: 1px;
    width: 28px;
    border-radius: 1px;
    background-color: #333;
    position: absolute;
    transition: all 0.5s;
  }

  .l__header__btn__border:nth-of-type(1) {
    top: 0;
  }

  .l__header__btn__border:nth-of-type(2) {
    top: 6px;
  }

  .l__header__btn__border:nth-of-type(3) {
    top: 12px;
  }

  .l__header__btn__hb {
    position: relative;
  }

  .l__header__btn__menu,
  .l__header__btn__close {
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
    bottom: 0;
    transition: all 0.2s;
  }

  .l__header__btn__close {
    display: none;
  }

  /* ----- ハンバーガーボタン end----- */

  /* ----- ハンバーガーボタン アニメーション----- */
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-22deg);
    transform: translateY(6px) rotate(-22deg);
  }

  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }

  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(22deg);
    transform: translateY(-6px) rotate(22deg);
  }

  #btn01.active .l__header__btn__menu {
    opacity: 0;
  }

  #btn01.active .l__header__btn__close {
    display: block;
  }

  /* ----- ハンバーガーボタン アニメーション　end----- */

  /* -------- ナビゲーション_sp -------- */
  .l__nav {
    padding: 0 6.4%;
    background-color: #ffffff;
    width: 100%;
    height: 100vh;
    /* 画面にくっついていつもついてくる固定 */
    position: fixed;
    top: 0;
    left: 0;
    /* 画面のレイヤーの最前面表示 */
    z-index: 90;
    overflow-y: auto;
    transform: translateX(-100%);
    /* 画面左側に隠す */
    transition: transform 0.4s;
    /* なめらかなアニメーションで表示*/
  }

  /* メニュー隠す */
  .l__nav.active {
    transform: translateX(0);
    /*隠れていたメニュー元の位置に戻る */
  }

  .l__nav__header {
    display: flex;
    justify-content: space-between;
  }

  .l__nav__logo img {
    width: 147px;
    height: auto;
    margin-top: 15px;
  }

  .l__nav__btn__border {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 1em;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
    transform: rotate(45deg);
  }

  .l__nav__btn__border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
  }

  .l__nav__btn__close {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
  }

  .l__nav__list {
    padding-left: 4%;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.17px;
    margin-top: 82px;
  }

  .l__nav__list__01,
  .l__nav__list__02 {
    padding-left: 4%;
    margin-top: 50px;
    font-family: "Shippori Mincho B1", serif;
  }

  .l__nav__list__item__link,
  .l__nav__item a,
  .l__nav__item span {
    font-family: "Shippori Mincho B1", serif !important;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.17px;
  }

  /* ===== SPではドロップダウンさせない ===== */
  .l__nav__list__child__wrap {
    display: block;
    /* 常に表示 */
    position: static;
    /* absoluteを解除 */
    transform: none;
    box-shadow: none;
    width: 100%;
    height: auto;
    padding: 0;
  }

  .l__nav__list__child {
    display: block;
    margin-top: 32px;
  }

  .l__nav__list__child__txt {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1.44px;
    margin-top: 27px;
  }

  .l__nav__list__child__txt::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #9fdddf;
    margin-right: 9px;
    flex-shrink: 0;
  }

  .l__nav__list__02 li {
    margin-top: 50px;
  }

  .l__nav__list__02 li:last-child {
    margin-bottom: 50px;
  }

  .l__nav__list__02 {
    border-bottom: 1px solid #9fdddf;
  }

  .l__nav__contact__sp {
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 50px;
    text-align: center;
    padding-bottom: 53px;
  }

  /* -------- ナビゲーション_お問い合わせ_sp-------- */
  .l__nav__contact__sp__phone {
    width: 19px;
    height: 21px;
    margin-right: 5px;
  }

  .l__nav__contact__sp__txt {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.52px;
  }

  .l__nav__contact__sp__sp {
    width: 15px;
    height: 23px;
    margin-right: 4px;
  }

  .l__nav__contact__sp__item:nth-of-type(2) {
    margin-top: 16px;
  }

  .l__nav__contact__sp__item:nth-of-type(3) {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 11px;
  }

  .l__nav__contact__sp__item:nth-of-type(4) {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 12px;
  }

  .l__nav__contact__sp__btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
  }

  .l__nav__contact__sp__btn__01,
  .l__nav__contact__sp__btn__02 {
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    align-items: center;
  }

  .l__nav__contact__sp__btn__01 {
    display: flex;
    justify-content: center;
    width: 297px;
    padding: 27px 0;
    border: 1px solid #20a7ac;
    margin-top: 19px;
  }

  .l__nav__contact__sp__btn__01 img {
    display: inline-block;
    width: 19px;
    height: 15px;
    aspect-ratio: 19/15;
    margin-right: 4px;
  }

  .l__nav__contact__sp__btn__01 span {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 2.04px;
  }

  .l__nav__contact__sp__btn__02 {
    display: flex;
    justify-content: center;
    padding: 25px 0;
    width: 297px;
    border: 1px solid #06c755;
    margin-top: 13px;
  }

  .l__nav__contact__sp__btn__02 img {
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-right: 8px;
  }

  .l__nav__contact__sp__btn__02 span {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1.7px;
  }

  .l__nav__contact__sp__btn__02 .l__nav_line {
    font-size: 1.8rem;
    text-transform: uppercase;
  }

  .l__nav__contact__pc {
    display: none;
  }
}

/* ----------------------------
header__pc__700-1024
-----------------------------*/
@media screen and (min-width: 701px) and (max-width: 1065px) {
  .l__header {
    width: 100%;
  }

  .l__header__inner {
    padding: 0 6.4% 19px 6.4%;
    width: 100%;
    height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0.98);
    position: fixed;
    /* ヘッダーを固定する */
    top: 0;
    /* 上部から配置の基準位置を決める */
    left: 0;
    /* 左から配置の基準位置を決める */
    z-index: 100;
    /* ヘッダーを他の要素の上に表示 */
    /* ヘッダー隠すアニメーション */
    transition: transform 0.5s ease;
  }

  /* ヘッダー隠すアニメーション */
  .l__header--hide {
    transform: translateY(-100%);
  }

  .l__header__logo {
    width: 147px;
    height: auto;
    margin-top: 15px;
  }

  .l__header__logo a {
    transition: opacity 0.3s ease;
  }

  .l__header__logo a:hover {
    transition: 0.3s ease;
    opacity: 0.6;
  }

  .l__header__logo img {
    width: 100%;
    height: auto;
  }

  /* ----- ハンバーガーボタン ----- */

  .l__header__btn {
    display: inline-block;
    z-index: 1000;
    margin-top: 15px;
  }

  .l__header__btn__hb {
    display: flex;
    height: 26px;
    width: 28px;
    text-align: center;
    justify-content: center;
    align-items: center;
    z-index: 200;
    cursor: pointer;
    transition: all 0.5s;
    position: relative;
  }

  .l__header__btn__border {
    content: "";
    display: block;
    height: 1px;
    width: 28px;
    border-radius: 1px;
    background-color: #333;
    position: absolute;
    transition: all 0.5s;
  }

  .l__header__btn__border:nth-of-type(1) {
    top: 0;
  }

  .l__header__btn__border:nth-of-type(2) {
    top: 6px;
  }

  .l__header__btn__border:nth-of-type(3) {
    top: 12px;
  }

  .l__header__btn__hb {
    position: relative;
  }

  .l__header__btn__menu,
  .l__header__btn__close {
    position: absolute;
    font-family: "Cormorant Garamond", serif;
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: 400;
    bottom: 0;
    transition: all 0.2s;
  }

  .l__header__btn__close {
    display: none;
  }

  /* ----- ハンバーガーボタン end----- */

  /* ----- ハンバーガーボタン アニメーション----- */
  #btn01.active span:nth-of-type(1) {
    -webkit-transform: translateY(6px) rotate(-22deg);
    transform: translateY(6px) rotate(-22deg);
  }

  #btn01.active span:nth-of-type(2) {
    opacity: 0;
  }

  #btn01.active span:nth-of-type(3) {
    -webkit-transform: translateY(-6px) rotate(22deg);
    transform: translateY(-6px) rotate(22deg);
  }

  #btn01.active .l__header__btn__menu {
    opacity: 0;
  }

  #btn01.active .l__header__btn__close {
    display: block;
  }

  /* ----- ハンバーガーボタン アニメーション　end----- */

  /* -------- ナビゲーション_sp -------- */
  .l__nav {
    padding: 0 6.4%;
    background-color: #ffffff;
    width: 100%;
    height: 100vh;
    /* 画面についてくる固定 */
    position: fixed;
    top: 0;
    left: 0;
    /* 画面のレイヤーの最前面表示 */
    z-index: 90;
    overflow-y: auto;
    transform: translateX(-100%);
    /* 画面左側に隠す */
    transition: transform 0.4s;
    /* なめらかなアニメーションで表示*/
  }

  /* メニュー隠す */
  .l__nav.active {
    transform: translateX(0);
    /*隠れていたメニュー元の位置に戻る */
  }

  .l__nav__header {
    display: flex;
    justify-content: space-between;
  }

  .l__nav__logo img {
    width: 147px;
    height: auto;
    margin-top: 15px;
  }

  .l__nav__btn__border {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 1em;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
    transform: rotate(45deg);
  }

  .l__nav__btn__border::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
  }

  .l__nav__btn__close {
    font-family: "Cormorant Garamond", serif;
    font-size: 1rem;
    font-weight: 400;
    text-transform: uppercase;
  }

  .l__nav__list {
    padding-left: 3.7%;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.17px;
    margin-top: 83px;
  }

  .l__nav__list__01,
  .l__nav__list__02 {
    padding-left: 3.7%;
    margin-top: 50px;
    font-family: "Shippori Mincho B1", serif;
  }

  .l__nav__list__item__link,
  .l__nav__item a,
  .l__nav__item span {
    font-family: "Shippori Mincho B1", serif !important;
    font-size: 1.7rem;
    font-weight: 600;
    letter-spacing: 0.17px;
  }

  /* ===== SPではドロップダウンさせない ===== */
  .l__nav__list__child__wrap {
    display: block;
    /* 常に表示 */
    position: static;
    /* absoluteを解除 */
    transform: none;
    box-shadow: none;
    width: 100%;
    height: auto;
    padding: 0;
    margin-top: 20px;
  }

  .l__nav__list__child__txt {
    display: flex;
    align-items: center;
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1.44px;
    margin-top: 27px;
  }

  .l__nav__list__child__txt::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #9fdddf;
    margin-right: 9px;
    flex-shrink: 0;
  }

  .l__nav__list__02 li {
    margin-top: 50px;
  }

  .l__nav__list__02 li:last-child {
    margin-bottom: 50px;
  }

  .l__nav__list__02 {
    border-bottom: 1px solid #9fdddf;
  }

  .l__nav__contact__sp {
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 50px;
    text-align: center;
    padding-bottom: 53px;
  }

  /* -------- ナビゲーション_お問い合わせ_sp-------- */
  .l__nav__contact__sp__phone {
    width: 19px;
    height: 21px;
    margin-right: 5px;
  }

  .l__nav__contact__sp__txt {
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 0.52px;
  }

  .l__nav__contact__sp__sp {
    width: 15px;
    height: 23px;
    margin-right: 5px;
  }

  .l__nav__contact__sp__item:nth-of-type(2) {
    margin-top: 16px;
  }

  .l__nav__contact__sp__item:nth-of-type(3) {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 11px;
  }

  .l__nav__contact__sp__item:nth-of-type(4) {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 12px;
  }

  .l__nav__contact__sp__btn {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
  }

  .l__nav__contact__sp__btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    align-items: center;
  }

  .l__nav__contact__sp__btn__01,
  .l__nav__contact__sp__btn__02 {
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    align-items: center;
  }

  .l__nav__contact__sp__btn__01 {
    width: 297px;
    padding: 27px 0;
    border: 1px solid #20a7ac;
    margin-top: 19px;
  }

  .l__nav__contact__sp__btn__01 img {
    display: inline-block;
    width: 18px;
    height: 14px;
    margin-right: 8px;
  }

  .l__nav__contact__sp__btn__01 span {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 2.04px;
  }

  .l__nav__contact__sp__btn__02 {
    padding: 25px 0;
    width: 297px;
    border: 1px solid #06c755;
    margin-top: 13px;
  }

  .l__nav__contact__sp__btn__02 img {
    display: inline-block;
    width: 21px;
    height: 21px;
    margin-right: 8px;
  }

  .l__nav__contact__sp__btn__02 span {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1.7px;
  }

  .l__nav__contact__sp__btn__02 .l__nav_line {
    font-size: 1.8rem;
    text-transform: uppercase;
  }

  .l__nav__contact__pc {
    display: none;
  }
}
/* ----------------------------
header_pc
-----------------------------*/
@media screen and (min-width: 1066px) {
  .l__header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.98);
    transition: transform 0.3s ease;
  }

  .l__header__fixed {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 100%;
    padding: 0 73px;
    box-sizing: border-box;
    overflow: visible;
    z-index: 100;
  }

  /* ヘッダー隠すアニメーション */
  .l__header--hide {
    transform: translateY(-100%);
  }

  .l__header__inner {
    padding: 0 0 29px 0;
    width: auto;
    height: 100%;
    background-color: #fff;
    position: static;
    justify-content: start;
    /*　ドロップダウンを前面に出す*/
    overflow: visible;
  }

  .l__header__logo {
    width: 244px;
    height: auto;
    margin-top: 24px;
  }

  .l__header__logo a {
    transition: opacity 0.3s ease;
  }

  .l__header__logo a:hover {
    opacity: 0.6;
  }

  .l__header__logo img {
    width: 100%;
    height: auto;
  }

  /* ----- ハンバーガーボタン_pc----- */

  .l__header__btn {
    display: none;
  }

  /* ----- ハンバーガーボタン end----- */

  /* -------- ナビゲーション_pc -------- */

  /*　pc用にnavの設定をリセット*/
  .l__nav {
    /* background-color: #fff; */
    width: auto;
    height: 100%;
    /* height: auto; */
    padding: 0 0 20px 0;
    position: static;
    /*　fixed に対して初期値に戻した*/
    transform: translate(0);
    display: flex;
    /*　ドロップダウンを前面に出す*/
    overflow: visible;
    align-items: center;
  }

  /*　pc用にnavの設定をリセット_end*/

  .l__nav__header {
    display: none;
  }

  .l__nav__list {
    display: none;
  }

  .l__nav__list__01 {
    margin-left: 43px;
  }

  .l__nav__list__01,
  .l__nav__list__02 {
    padding-left: 0;
    margin-top: 20px;
    font-family: "Shippori Mincho B1", serif;
  }

  .l__nav__list__02 {
    margin-left: 42px;
  }

  .l__nav__list__item__link,
  .l__nav__item a,
  .l__nav__item span {
    font-family: "Shippori Mincho B1", serif !important;
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.17px;
  }

  .l__nav__list__item__link__icon {
    width: 11px;
    height: 6px;
    margin-left: 9px;
  }

  .l__nav__list__item__link {
    display: inline-flex;
    align-items: center;
  }

  .l__nav__list__item__v__pc {
    position: relative;
    display: inline-block;
    align-items: center;
    width: 11px;
    height: 6px;
    margin-left: 9px;
  }

  .l__nav__list__item__v__pc::before,
  .l__nav__list__item__v__pc::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: calc(50% - 1px);
    width: 2px;
    height: 8px;
    border-radius: 9999px;
    background-color: #54d9de;
    transform-origin: 50% calc(100% - 1px);
  }

  .l__nav__list__item__v__pc::before {
    transform: rotate(48.5deg);
  }

  .l__nav__list__item__v__pc::after {
    transform: rotate(-48.5deg);
  }

  /*------- ドロップダウン ------- */

  /*---ドロップダウンコンテンツをドロップダウンボタンのすぐ下に配置する---- */
  .l__nav__item {
    position: relative;
    display: inline-block;
    cursor: pointer;
    z-index: 1;
    /* 基準レイヤー */
  }

  /*---ドロップダウンコンテンツのデザイン_pc---- */
  .l__nav__list__child__wrap {
    display: none;
    position: absolute;
    width: 240px;
    padding: 24px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 2px 4px 14px 0 rgba(160, 160, 160, 0.2);

    margin-top: 5px;

    /* ドロップダウンの位置を縦中央に */
    left: 50%;
    transform: translateX(-50%);
    /* ナビより上 */
    z-index: 10;
  }

  /*---ドロップダウンコンテンツのデザイン_pc_end---- */

  .l__nav__list__child__item {
    font-size: 1.6rem;
    font-weight: 400;
    letter-spacing: 1.44px;
    align-items: center;
    margin-top: 22px;
    padding-bottom: 22px;
    border-bottom: solid 1px #9fdddf;
    width: 192px;
  }

  .l__nav__list__child__item:last-of-type {
    border-bottom: none;
  }

  /*---- お問い合わせ_btn----*/

  .l__nav__contact__pc {
    display: block;
    margin-left: 45px;
    margin-top: 14px;
  }

  .l__nav__contact__pc img {
    width: 19px;
    height: 15px;
  }

  .l__nav__contact__pc span {
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.065em;
    margin-left: 9px;
  }

  /*---- お問い合わせ_btn_hover----*/

  .l__nav__contact__pc p {
    padding: 18px 32px;
    border-radius: 45px;
    background: linear-gradient(89deg, #54d9de 28.25%, #92e2ca 116.92%);
    position: relative;
    overflow: hidden;
  }

  .l__nav__contact__pc p::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .l__nav__contact__pc p:hover::after {
    opacity: 0.25;
  }

  .l__nav__list__child__txt::before {
    display: none;
  }

  .l__nav__list__02 li {
    margin-top: 0;
  }

  .l__nav__list__02 li:last-child {
    margin-bottom: 0;
  }

  .l__nav__list__02 {
    border-bottom: none;
    display: flex;
    gap: 42px;
  }

  .l__nav__contact__sp {
    display: none;
  }

  /* ----- ホバー ----- */
  .l__nav__list__item__link,
  .l__nav__list__child__item a,
  .l__nav__item a {
    transition: color 0.3s ease;
  }

  .l__nav__list__item__link:hover,
  .l__nav__list__child__item a:hover,
  .l__nav__item a:hover {
    color: #54d9de;
  }

  /* 横幅固定（レスポンシブ可変防止） */
  .l__nav,
  .l__nav__contact__pc {
    flex-shrink: 0;
  }

  .l__nav__list__item__link {
    white-space: nowrap;
  }
}

/* ----------------------------
header_pc_end
-----------------------------*/

/* ==============================
contact
===============================*/
@media screen and (max-width: 367px) {
  .l__contact__inner {
    min-width: 320px;
    padding: 76px 6.4% 59px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(86deg, #77e0e4 32.8%, #a8e1c0 107.94%);
  }

  .l__title__en__white {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.16em;
  }

  .l__contact__card__flex__left h2 {
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-top: 24px;
  }

  .l__contact__txt__center {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .br__sp {
    display: block;
  }

  .l__contact__txt {
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.05em;
    margin-top: 27px;
  }

  .l__contact__vnefit__flex {
    margin: 0 auto;
    width: 251px;
    display: flex;
    margin-top: 26px;
    gap: 24px;
  }

  .l__contact__vnefit__item {
    display: inline-block;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: solid 2px #fff;
    position: relative;
  }

  .l__contact__vnefit__item span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #f0f8fa;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.51;
    letter-spacing: 0.06em;
    position: absolute;
    top: 50%;
    left: 0;
    width: 115px;
    /*上のwidthと合わせる*/
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .l__contact__card__flex__right {
    display: block;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .l__contact__phon__no img {
    width: 19px;
    height: 21px;
    margin-right: 6px;
  }

  .l__contact__phon__no span {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .l__contact__sp__no img {
    width: 15px;
    height: 23px;
    margin-right: 6px;
  }

  .l__contact__sp__no span {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .l__contact__phon__no {
    margin-top: 36px;
  }

  .l__contact__sp__no {
    margin-top: 13px;
  }

  .l__contact__note__01 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 14px;
  }

  .l__contact__note__02__center {
    display: block;
    text-align: center;
  }

  .l__contact__note__02 {
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 12px;
  }

  .l__contact__btn__center {
    margin: 0 auto;
    max-width: 297px;
  }

  .l__contact__mail,
  .l__contact__line {
    display: inline-block;
    max-width: 297px;
    min-width: 279px;
    border-radius: 100px;
    background: #fff;
    transition: opacity 0.3s ease;
  }

  .l__contact__mail:hover,
  .l__contact__line:hover {
    opacity: 0.6;
  }

  .l__contact__mail {
    padding: 26px 0;
    align-items: center;
    margin-top: 18px;
  }

  .l__contact__mail img {
    width: 19px;
    height: 15px;
    aspect-ratio: 19 / 15;
    margin-right: 7px;
  }

  .l__contact__mail span {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .l__contact__line {
    padding: 25px 0;
    margin-top: 13px;
  }

  .l__contact__line img {
    width: 21px;
    height: 21px;
    margin-right: 8px;
  }

  .l__contact__line span {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }
}
@media screen and (min-width: 368px) and (max-width: 1023px) {
  .l__contact__inner {
    padding: 76px 6.4% 59px;
    margin: 0 auto;
    text-align: center;
    background: linear-gradient(86deg, #77e0e4 32.8%, #a8e1c0 107.94%);
  }

  .l__title__en__white {
    color: #fff;
    font-family: "Cormorant Garamond", serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.16em;
  }

  .l__contact__card__flex__left h2 {
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin-top: 24px;
  }

  .l__contact__txt__center {
    margin: 0 auto;
    display: flex;
    justify-content: center;
  }

  .br__sp {
    display: block;
  }

  .l__contact__txt {
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.05em;
    margin-top: 27px;
  }

  .l__contact__vnefit__flex {
    margin: 0 auto;
    width: 251px;
    display: flex;
    margin-top: 24px;
    gap: 24px;
  }

  .l__contact__vnefit__item {
    display: inline-block;
    width: 115px;
    height: 115px;
    border-radius: 50%;
    border: solid 2px #fff;
    position: relative;
  }

  .l__contact__vnefit__item span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #f0f8fa;
    text-align: center;
    font-size: 1.7rem;
    font-weight: 700;
    line-height: 1.51;
    letter-spacing: 0.06em;
    position: absolute;
    top: 50%;
    left: 0;
    width: 115px;
    /*上のwidthと合わせる*/
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .l__contact__card__flex__right {
    display: block;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .l__contact__phon__no img {
    width: 19px;
    height: 21px;
    margin-right: 6px;
  }

  .l__contact__phon__no span {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .l__contact__sp__no img {
    width: 15px;
    height: 23px;
    margin-right: 6px;
  }

  .l__contact__sp__no span {
    font-size: 2.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
  }

  .l__contact__phon__no {
    margin-top: 36px;
  }

  .l__contact__sp__no {
    margin-top: 13px;
  }

  .l__contact__note__01 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 14px;
  }

  .l__contact__note__02__center {
    display: block;
    text-align: center;
  }

  .l__contact__note__02 {
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 12px;
  }

  .l__contact__btn__center {
    margin: 0 auto;
    max-width: 297px;
    min-width: 279px;
  }

  .l__contact__mail,
  .l__contact__line {
    display: inline-block;
    width: 100%;
    border-radius: 100px;
    background: #fff;
    transition: opacity 0.3s ease;
  }

  .l__contact__mail:hover,
  .l__contact__line:hover {
    opacity: 0.6;
  }

  .l__contact__mail {
    padding: 27px 0;
    align-items: center;
    margin-top: 18px;
  }

  .l__contact__mail img {
    width: 19px;
    height: 15px;
    aspect-ratio: 19 / 15;
    margin-right: 5px;
  }

  .l__contact__mail span {
    display: inline-block;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }

  .l__contact__line {
    padding: 25px 0;
    margin-top: 13px;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .l__contact__line img {
    width: 21px;
    height: 21px;
    margin-right: 7px;
  }

  .l__contact__line span {
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
  }
}

/* ----------------------------
contact_pc__1024-1278
-----------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1278px) {
  .l__contact {
    width: 100%;
  }

  .l__contact__inner {
    padding: 115px 44px 141px;
    min-width: 1024px;
    max-width: 1278px;
    margin: 0 auto;
    text-align: left;
    background: linear-gradient(86deg, #77e0e4 32.8%, #a8e1c0 107.94%);
    display: flex;
    justify-content: center;
    gap: 99px;
  }

  .l__title__en__white {
    color: #f0f8fa;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3vw, 3.2rem);
    font-weight: 400;
    letter-spacing: 0.16em;
  }

  .l__contact__card__flex__left h2 {
    font-size: clamp(2.5rem, 3vw, 3.9rem);
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 22px;
  }

  .l__contact__txt__center {
    margin: 0;
  }

  .br__sp {
    display: none;
  }

  .l__contact__txt {
    text-align: left;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: clamp(1.6rem, 3vw, 1.7rem);
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.04em;
    margin-top: 71px;
  }

  .l__contact__vnefit__flex {
    margin: 35px 0 0 2px;
    width: 275px;
    display: flex;
    gap: 20px;
  }

  .l__contact__vnefit__item {
    display: inline-block;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: solid 2px #fff;

    position: relative;
  }

  .l__contact__vnefit__item span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #fff;
    text-align: center;
    font-size: clamp(1.7rem, 3vw, 1.8rem);
    font-weight: 700;
    line-height: 1.51;
    letter-spacing: 0.06em;

    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    /*上のwidthと合わせる*/
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .l__contact__card__flex__right {
    display: block;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .l__contact__phon__no img {
    width: 29px;
    height: 32px;
    margin-right: 12px;
  }

  .l__contact__phon__no span {
    font-size: clamp(2.8rem, 3vw, 3.7rem);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .l__contact__sp__no img {
    width: 23px;
    height: 35px;
    margin-right: 15px;
    margin-left: 4px;
  }

  .l__contact__sp__no span {
    font-size: clamp(2.8rem, 3vw, 3.7rem);
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .l__contact__phon__no {
    margin-top: 27px;
  }

  .l__contact__sp__no {
    margin-top: 24px;
  }

  .l__contact__note__01 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 16px;
  }

  .l__contact__note__02__center {
    display: block;
  }

  .l__contact__note__02 {
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 6px;
  }

  .l__contact__btn__center {
    margin: 0;
    max-width: 363px;
  }

  .l__contact__mail,
  .l__contact__line {
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    width: 363px;
    transition: opacity 0.3s ease;
  }

  .l__contact__mail:hover,
  .l__contact__line:hover {
    opacity: 0.6;
  }

  .l__contact__mail {
    padding: 40px 0;
    text-align: center;
    align-items: center;
    margin-top: 27px;
  }

  .l__contact__mail img {
    width: 25px;
    height: 19px;
    margin-right: 7px;
  }

  .l__contact__mail span {
    display: inline-block;
    font-size: clamp(1.7rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .l__contact__line {
    text-align: center;
    padding: 38px 0;
    margin-top: 26px;
  }

  .l__contact__line img {
    width: 24px;
    height: 24px;
    margin-right: 14px;
  }

  .l__contact__line span {
    font-size: clamp(1.7rem, 3vw, 2rem);
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

/* ----------------------------
contact_pc
-----------------------------*/
@media screen and (min-width: 1279px) {
  .l__contact {
    width: 100%;
  }

  .l__contact__inner {
    padding: 115px 177px 141px;
    min-width: 1279px;
    margin: 0 auto;
    text-align: left;
    background: linear-gradient(86deg, #77e0e4 32.8%, #a8e1c0 107.94%);
    display: flex;
    justify-content: center;
    gap: 18%;
  }

  .l__title__en__white {
    color: #f0f8fa;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.16em;
  }

  .l__contact__card__flex__left h2 {
    font-size: 3.9rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    margin-top: 22px;
  }

  .l__contact__txt__center {
    margin: 0;
  }

  .br__sp {
    display: none;
  }

  .l__contact__txt {
    text-align: left;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.7rem;
    font-weight: 400;
    line-height: 1.9;
    letter-spacing: 0.04em;
    margin-top: 71px;
  }

  .l__contact__vnefit__flex {
    margin: 35px 0 0 2px;
    width: 275px;
    display: flex;
    gap: 20px;
  }

  .l__contact__vnefit__item {
    display: inline-block;
    width: 128px;
    height: 128px;
    border-radius: 50%;
    border: solid 2px #fff;
    position: relative;
  }

  .l__contact__vnefit__item span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    color: #fff;
    text-align: center;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.51;
    letter-spacing: 0.06em;
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    /*上のwidthと合わせる*/
    text-align: center;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .l__contact__card__flex__right {
    display: block;
    text-align: center;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .l__contact__phon__no img {
    width: 29px;
    height: 32px;
    margin-right: 12px;
  }

  .l__contact__phon__no span {
    font-size: 3.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .l__contact__sp__no img {
    width: 23px;
    height: 35px;
    margin-right: 15px;
    margin-left: 4px;
  }

  .l__contact__sp__no span {
    font-size: 3.7rem;
    font-weight: 500;
    letter-spacing: 0.04em;
  }

  .l__contact__phon__no {
    margin-top: 27px;
  }

  .l__contact__sp__no {
    margin-top: 24px;
  }

  .l__contact__note__01 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-top: 16px;
  }

  .l__contact__note__02__center {
    display: block;
  }

  .l__contact__note__02 {
    display: inline-block;
    text-align: center;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 6px;
  }

  .l__contact__btn__center {
    margin: 0;
    max-width: 363px;
  }

  .l__contact__mail,
  .l__contact__line {
    display: inline-block;
    border-radius: 100px;
    background: #fff;
    width: 363px;
    transition: opacity 0.3s ease;
  }

  .l__contact__mail:hover,
  .l__contact__line:hover {
    opacity: 0.6;
  }

  .l__contact__mail {
    padding: 40px 0;
    text-align: center;
    align-items: center;
    margin-top: 27px;
  }

  .l__contact__mail img {
    width: 25px;
    height: 19px;
    margin-right: 7px;
  }

  .l__contact__mail span {
    display: inline-block;
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .l__contact__line {
    text-align: center;
    padding: 38px 0;
    margin-top: 26px;
  }

  .l__contact__line img {
    width: 24px;
    height: 24px;
    margin-right: 14px;
  }

  .l__contact__line span {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 0.05em;
  }
}

/* ----------------------------
contact_pc_end
-----------------------------*/

/* ==============================
footer
===============================*/
@media screen and (max-width: 1023px) {
  .l__footer {
    width: 100%;
  }

  .l__footer__inner {
    min-width: 320px;
    padding: 49px 6% 32px;
    margin: 0 auto;
  }

  .l__footer__flex__left,
  .l__footer__flex__right {
    margin: 0 auto;
    width: 100%;
    padding: 0 5.2%;
  }

  .l__footer__logo img {
    width: 244px;
    height: auto;
  }

  .l__footer__logo a {
    transition: opacity 0.3s ease;
  }

  .l__footer__logo a:hover {
    transition: 0.3s ease;
    opacity: 0.6;
  }

  .l__footer__text,
  .l__footer__note {
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .l__footer__text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 52px;
  }

  .l__footer__note {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 11px;
  }

  .l__footer__flex__right {
    font-family: "Shippori Mincho B1", serif;
  }

  .l__footer__list__01 {
    margin-top: 72px;
  }

  .l__footer__list__item,
  .l__footer__item {
    font-size: 1.6rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .l__footer__list__child__item {
    margin-top: 22px;
  }

  .l__footer__list__child__name {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.09em;
  }

  .l__footer__list__child__name::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #9fdddf;
    margin-right: 9px;
    flex-shrink: 0;
  }

  .l__footer__item {
    margin-top: 43px;
  }

  .l__footer__item:first-of-type {
    margin-top: 41px;
  }

  .l__footer__contact__a img {
    width: 19px;
    height: 15px;
    margin-right: 9px;
  }

  .l__footer__contact__a span {
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
  }

  /* ----お問い合わせ_btn_hover---- */

  .l__footer__contact__a {
    display: inline-block;
    width: clamp(256px, 80vw, 297px);
    margin-top: 63px;
    padding: 27px 0;
    border-radius: 45px;
    background: linear-gradient(89deg, #54d9de 28.25%, #92e2ca 116.92%);
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .l__footer__contact__a::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .l__footer__contact__a:hover::after {
    opacity: 0.25;
  }

  /* ----お問い合わせ_btn_hover_end---- */

  .l__footer__sns__flex {
    display: flex;
    gap: 21px;
    margin-top: 28px;
  }

  .l__footer__sns__flex img {
    width: 24px;
    height: 24px;
  }

  .l__footer__sns__flex a {
    transition: 0.3s;
  }

  .l__footer__sns__flex a:hover {
    opacity: 0.6;
  }

  .l__copy {
    padding: 0 6.4% 42px;
  }

  .l__copy__border {
    display: block;
    height: 1px;
    width: 100%;
    background-color: #9fdddf;
  }

  .l__copy__txt {
    display: block;
    margin-top: 32px;
    margin-left: 16px;
  }
  .l__copy__txt small {
    width: 100%;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem;
    line-height: 1;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
  }

  /* ----- ホバー ----- */
  .l__footer__list__child__item a,
  .l__footer__item a {
    transition: color 0.3s ease;
  }

  .l__footer__list__child__item a:hover,
  .l__footer__item a:hover {
    color: #54d9de;
  }

  /* 横幅固定（レスポンシブ可変防止） */
  .l__footer__logo img,
  .l__footer__contact,
  .l__footer__text {
    flex-shrink: 0;
  }

  .l__footer__item,
  .l__footer__flex__left {
    white-space: nowrap;
  }
}

/* ----------------------------
footer_pc__1024-1278
-----------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1278px) {
  .l__footer {
    width: 100%;
  }

  .l__footer__inner {
    padding: 59px 73px 30px;
    min-width: 1024px;
    max-width: 1278px;
    display: flex;
    justify-content: space-between;
    gap: 78px;
  }

  .l__footer__flex__left,
  .l__footer__flex__right,
  .l__copy__border {
    margin: 0 auto;
    width: 100%;
  }

  .l__footer__logo img {
    width: 244px;
    height: auto;
  }

  .l__footer__logo a {
    transition: opacity 0.3s ease;
  }

  .l__footer__logo a:hover {
    transition: 0.3s ease;
    opacity: 0.6;
  }

  .l__footer__text,
  .l__footer__note {
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .l__footer__text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 31px;
  }

  .l__footer__note {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 15px;
  }

  .l__footer__flex__right {
    font-family: "Shippori Mincho B1", serif;
    padding-bottom: 0;
    display: flex;
  }

  .l__footer__list__01 {
    margin-top: 0;
    margin-right: 78px;
  }

  .l__footer__list__02 {
    margin-right: 80px;
  }

  .l__footer__list__item,
  .l__footer__item {
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .l__footer__list__child__item {
    margin-top: 22px;
  }

  .l__footer__list__child__name {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.09em;
  }

  .l__footer__list__child__name::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #9fdddf;
    margin-right: 9px;
    flex-shrink: 0;
  }

  .l__footer__item {
    margin-top: 36px;
  }

  .l__footer__item:first-of-type {
    margin-top: 0;
  }

  .l__footer__contact__a img {
    width: 19px;
    height: 15px;
    margin-right: 9px;
  }

  .l__footer__contact__a span {
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .l__footer__contact__a {
    align-items: center;
    white-space: nowrap;
  }

  /* ----お問い合わせ_btn_hover---- */
  .l__footer__contact__a {
    display: inline-block;
    padding: 18px 0;
    width: 180px;
    border-radius: 45px;
    background: linear-gradient(89deg, #54d9de 28.25%, #92e2ca 116.92%);
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .l__footer__contact__a::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .l__footer__contact__a:hover::after {
    opacity: 0.25;
  }

  /* ----お問い合わせ_btn_hover_end---- */

  .l__footer__sns__flex {
    display: flex;
    justify-content: center;
    gap: 21px;
    margin-top: 42px;
  }

  .l__footer__sns__flex img {
    width: 24px;
    height: 24px;
  }

  .l__footer__sns__flex a {
    transition: 0.3s;
  }

  .l__footer__sns__flex a:hover {
    opacity: 0.6;
  }

  .l__copy {
    padding: 26px 73px 65px;
    min-width: 1024px;
    max-width: 1278px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
  }

  .l__copy__border {
    display: block;
    padding: 0;
    height: 1px;
    min-width: 938px;
    background-color: #9fdddf;
    justify-content: center;
  }

  .l__copy__txt {
    display: block;
    margin-top: 26px;
  }

  .l__copy__txt small {
    min-width: 938px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem !important;
    font-weight: 400;
    margin-left: 0;
    line-height: 1;
    text-align: right;
  }

  /* ----- ホバー ----- */
  .l__footer__list__child__item a,
  .l__footer__item a {
    transition: color 0.3s ease;
  }

  .l__footer__list__child__item a:hover,
  .l__footer__item a:hover {
    color: #54d9de;
  }

  /* 横幅固定（レスポンシブ可変防止） */
  .l__footer__logo img,
  .l__footer__contact,
  .l__footer__text {
    flex-shrink: 0;
  }

  .l__footer__item,
  .l__footer__flex__left {
    white-space: nowrap;
  }
}

/* ----------------------------
footer_pc
-----------------------------*/
@media screen and (min-width: 1279px) {
  .l__footer {
    width: 100%;
  }

  .l__footer__inner {
    padding: 59px 73px 30px;
    min-width: 1279px;
    display: flex;
    justify-content: space-between;
    gap: 78px;
  }

  .l__footer__flex__left,
  .l__footer__flex__right,
  .l__copy__border {
    margin: 0 auto;
    width: 100%;
  }

  .l__footer__logo img {
    width: 244px;
    height: auto;
  }

  .l__footer__logo a {
    transition: opacity 0.3s ease;
  }

  .l__footer__logo a:hover {
    transition: 0.3s ease;
    opacity: 0.6;
  }

  .l__footer__text,
  .l__footer__note {
    font-family: "Zen Kaku Gothic New", sans-serif;
  }

  .l__footer__text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    margin-top: 31px;
  }

  .l__footer__note {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.8;
    margin-top: 15px;
  }

  .l__footer__flex__right {
    font-family: "Shippori Mincho B1", serif !important;
    padding-bottom: 0;
    display: flex;
  }

  .l__footer__list__01 {
    margin-top: 0;
    margin-right: 78px;
  }

  .l__footer__list__02 {
    margin-right: 80px;
  }

  .l__footer__list__item,
  .l__footer__item {
    font-size: 1.7rem;
    font-weight: 500;
    letter-spacing: 0.01em;
  }

  .l__footer__list__child__item {
    margin-top: 22px;
  }

  .l__footer__list__child__name {
    display: flex;
    align-items: center;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.09em;
  }

  .l__footer__list__child__name::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: #9fdddf;
    margin-right: 9px;
    flex-shrink: 0;
  }

  .l__footer__item {
    margin-top: 36px;
  }

  .l__footer__item:first-of-type {
    margin-top: 0;
  }

  .l__footer__contact__a img {
    width: 19px;
    height: 15px;
    margin-right: 9px;
  }

  .l__footer__contact__a span {
    color: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 0.06em;
  }

  .l__footer__contact__a {
    align-items: center;
    white-space: nowrap;
  }

  /* ----お問い合わせ_btn_hover---- */
  .l__footer__contact__a {
    display: inline-block;
    padding: 18px 0;
    width: 180px;
    border-radius: 45px;
    background: linear-gradient(89deg, #54d9de 28.25%, #92e2ca 116.92%);
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
  }

  .l__footer__contact__a::after {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #fff;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .l__footer__contact__a:hover::after {
    opacity: 0.25;
  }

  /* ----お問い合わせ_btn_hover_end---- */

  .l__footer__sns__flex {
    display: flex;
    justify-content: center;
    gap: 21px;
    margin-top: 42px;
    flex-shrink: 0;
  }

  .l__footer__sns__flex img {
    width: 24px;
    height: 24px;
  }

  .l__footer__sns__flex a {
    transition: 0.3s;
  }

  .l__footer__sns__flex a:hover {
    opacity: 0.6;
  }

  .l__copy {
    padding: 26px 73px 65px;
    min-width: 1279px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    text-align: right;
  }

  .l__copy__border {
    display: block;
    padding: 0 73px 0;
    height: 1px;
    min-width: 912px;
    background-color: #9fdddf;
    justify-content: center;
  }

  .l__copy__txt {
    display: block;
    margin-top: 26px;
  }

  .l__copy__txt small {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem !important;
    font-weight: 400;
    margin-left: 0;
    text-align: right;
  }

  /* ----- ホバー ----- */
  .l__footer__list__child__item a,
  .l__footer__item a {
    transition: color 0.3s ease;
  }

  .l__footer__list__child__item a:hover,
  .l__footer__item a:hover {
    color: #54d9de;
  }

  /* 横幅固定（レスポンシブ可変防止） */
  .l__footer__logo img,
  .l__footer__contact,
  .l__footer__text {
    flex-shrink: 0;
  }

  .l__footer__item,
  .l__footer__flex__left {
    white-space: nowrap;
  }
}

/* ----------------------------
footer_pc_end
-----------------------------*/

/* ==============================
スクロールフェードイン（共通）
============================== */

/* 初期状態 */
.js-scroll-fade {
  opacity: 0;
  transform: translateY(30px);
}

/* 表示状態 */
.js-scroll-fade.is-show {
  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 1.2s ease,
    transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
