@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-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;
}

.container {
  min-width: 320px;
}

/* ----------------------------
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 {
    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 {
    width: auto;
    height: 100%;
    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
-----------------------------*/

/* ==============================
fv_sp
===============================*/
@media screen and (max-width: 328px) {
  .l__mv {
    max-width: 328px !important;
    min-width: 320px !important;
  }

  .l__mv__inner {
    max-width: 328px !important;
    min-width: 320px !important;
    padding: 41px 5% 54px !important;
    box-sizing: border-box;
    font-family: "Shippori Mincho B1", serif;
    background-image: url(../images/bg_mv_sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* ヘッダー固定差分*/
    margin: 74px auto 0 !important;
    /* 曲線の境界線 */
    position: relative;
    border-bottom-left-radius: 50% 0.8%;
    border-bottom-right-radius: 50% 0.8%;
  }

  .l__mv__flex__wrap {
    max-width: 899px !important;
    display: block;
  }

  .l__mv__flex__left {
    display: block;
    max-width: 560px !important;
    min-width: 337px !important;
    margin: 0 auto;
  }

  .l__mv__title {
    width: 100%;
    font-size: clamp(2.6rem, 6.9vw, 5.3rem) !important;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.06em;
    white-space: nowrap;
    text-align: left;
    margin-left: 4px;
  }

  .l__mv__name {
    font-size: 1.3rem !important;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.01em !important;
    margin-top: 15px;
    text-align: left;
    margin-left: 4px;
  }

  .l__mv__flex__right {
    max-width: 560px !important;
    min-width: 288px !important;
    margin: 0 auto;
  }

  .l__mv__flex__right img {
    width: 100%;
    height: auto;
    margin-top: 44px;
  }

  /* ==============================
jsアニメーション設定
===============================*/

  /*---- js表示設定 ----*/
  .js-mv .l__mv__flex__left,
  .js-mv .l__mv__flex__right {
    opacity: 0.2;
    transform: translateY(10px);
  }

  .js-mv.is-show .l__mv__flex__left {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.7s ease,
      /* cubic-bezier(0.22, 1, 0.36, 1)＝アニメーションの「進み方（スピードカーブ）」 */
        transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }

  .js-mv.is-show .l__mv__flex__right {
    opacity: 1;
    transform: translateY(0);
    transition:
      opacity 0.7s ease 0.1s,
      transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
}

/* ----------------------------
fv__pc__329-899
-----------------------------*/
@media screen and (min-width: 329px) and (max-width: 899px) {
  .l__mv {
    max-width: 899px !important;
  }

  .l__mv__inner {
    max-width: 899px !important;
    padding: 41px 5% 54px !important;
    box-sizing: border-box;
    font-family: "Shippori Mincho B1", serif;
    background-image: url(../images/bg_mv_sp.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    /* ヘッダー固定差分*/
    margin: 74px auto 0 !important;
    /* 曲線の境界線 */
    position: relative;
    border-bottom-left-radius: 85% 0.8%;
    border-bottom-right-radius: 85% 0.8%;
  }

  .l__mv__flex__wrap {
    max-width: 899px !important;
    display: block;
  }

  .l__mv__flex__left {
    display: block;
    max-width: 560px !important;
    min-width: 337px !important;
    margin: 0 auto;
  }

  .l__mv__title {
    width: 100%;
    font-size: clamp(2.6rem, 6.9vw, 5.3rem) !important;
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.06em;
    white-space: nowrap;
    text-align: left;
    margin-left: 4px;
  }

  .l__mv__name {
    font-size: 1.4rem !important;
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.01em !important;
    margin-top: 15px;
    text-align: left;
    margin-left: 4px;
  }

  .l__mv__flex__right {
    max-width: 560px !important;
    min-width: 288px !important;
    margin: -1px auto 0;
  }

  .l__mv__flex__right img {
    width: 100%;
    height: auto;
    margin-top: 44px;
  }
}

/* ----------------------------
fv__pc__900-1065
-----------------------------*/
@media screen and (min-width: 900px) and (max-width: 1065px) {
  .l__mv {
    width: 100%;
  }

  .l__mv__inner {
    min-width: 900px !important;
    max-width: 1278px !important;
    box-sizing: border-box;
    padding: 68px 9% 113px !important;
    font-family: "Shippori Mincho B1", serif;
    background-image: url(../images/bg_mv_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    /* 曲線の境界線 */
    position: relative;
    border-bottom-left-radius: 78% 12.4%;
    border-bottom-right-radius: 78% 12.4%;
    /* ヘッダーを他の要素の上に表示 */
    align-items: normal;
    margin-top: 74px !important;
  }

  .l__mv__flex__wrap {
    min-width: 900px !important;
    max-width: 1278px !important;
    display: flex;
    justify-content: center;
  }

  .l__mv__flex__left {
    width: 47% !important;
  }

  .l__mv__title {
    font-size: clamp(4.3rem, 4vw, 5.3rem) !important;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.12em;
    margin-top: 56px;
    white-space: nowrap;
  }

  .l__mv__name {
    font-size: clamp(1.4rem, 1vw, 1.6rem) !important;
    font-weight: 600;
    line-height: 2.2;
    letter-spacing: 0.09em !important;
    margin-top: 53px;
    white-space: nowrap;
  }

  .l__mv__flex__right {
    width: 47% !important;
    height: auto;
    min-width: 423px !important;
    max-width: 564px !important;
    margin-left: 6% !important;
  }

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

/* ----------------------------
fv__pc__900-1278
-----------------------------*/
@media screen and (min-width: 1066px) and (max-width: 1278px) {
  .l__mv {
    width: 100%;
  }

  .l__mv__inner {
    min-width: 900px !important;
    max-width: 1278px !important;
    box-sizing: border-box;
    padding: 68px 9% 113px !important;
    font-family: "Shippori Mincho B1", serif;
    background-image: url(../images/bg_mv_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    /* 曲線の境界線 */
    position: relative;
    border-bottom-left-radius: 78% 12.4%;
    border-bottom-right-radius: 78% 12.4%;
    /* ヘッダーを他の要素の上に表示 */
    align-items: normal;
    margin-top: 120px !important;
  }

  .l__mv__flex__wrap {
    min-width: 900px !important;
    max-width: 1278px !important;
    display: flex;
    justify-content: center;
  }

  .l__mv__flex__left {
    width: 47% !important;
  }

  .l__mv__title {
    font-size: clamp(4.3rem, 4vw, 5.3rem) !important;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.12em;
    margin-top: 56px;
    white-space: nowrap;
  }

  .l__mv__name {
    font-size: clamp(1.4rem, 1vw, 1.6rem) !important;
    font-weight: 600;
    line-height: 2.2;
    letter-spacing: 0.09em !important;
    margin-top: 53px;
    white-space: nowrap;
  }

  .l__mv__flex__right {
    width: 47% !important;
    height: auto;
    min-width: 423px !important;
    max-width: 564px !important;
    margin-left: 6% !important;
  }

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

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

  .l__mv__inner {
    min-width: 1279px !important;
    box-sizing: border-box;
    padding: 68px 90px 113px;
    font-family: "Shippori Mincho B1", serif;
    background-image: url(../images/bg_mv_pc.svg);
    background-repeat: no-repeat;
    background-size: cover;
    /* 曲線の境界線 */
    position: relative;
    border-bottom-left-radius: 78% 12.4%;
    border-bottom-right-radius: 78% 12.4%;
    /* ヘッダーを他の要素の上に表示 */
    align-items: normal;
    margin-top: 120px;
  }

  .l__mv__flex__wrap {
    max-width: 1279px;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    gap: 7.3%;
  }

  .l__mv__flex__left {
    width: 528px;
    flex-shrink: 0;
  }

  .l__mv__title {
    font-size: 5.3rem;
    white-space: nowrap;
    font-weight: 500;
    line-height: 1.57;
    letter-spacing: 0.12em;
    margin-top: 56px;
    white-space: nowrap;
  }

  .l__mv__name {
    font-size: 2.6rem;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 2.2;
    letter-spacing: -0.01em !important;
    margin-top: 53px !important;
    white-space: nowrap;
  }

  .l__mv__flex__right {
    max-width: 560px;
    height: auto;
    flex-shrink: 0;
  }

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

/* ----------------------------
fv__pc_end
-----------------------------*/

/* ==============================
intro_sp
===============================*/

@media screen and (max-width: 367px) {
  .l__intro {
    min-width: 320px;
    width: 100%;
  }

  .l__intro__inner {
    padding: 0 0 55px 0;
    max-width: 899px;
    justify-content: center;
  }

  .l__intro__title {
    text-align: center;
    margin-top: 38px;
  }

  .l__intro__title h2 {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.12em;
    margin-top: 25px;
  }

  .br__sp {
    display: block !important;
  }

  .l__intro__list {
    min-width: 320px;
    display: grid;
    grid-template-columns: repeat(2, 176px);
    text-align: center;
    justify-content: center;
    column-gap: 0;
    row-gap: 3px;
    margin: 18px auto 0;
    padding-bottom: 57px;
  }

  .l__intro__list__item {
    width: 176px;
    height: 135px;
    display: grid;
    text-align: center;
    justify-content: center;
    column-gap: 0;
    row-gap: 4px;
    align-items: center;
    text-align: center;
  }

  .l__intro__list__item p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.53;
    letter-spacing: 0.48px;
  }

  .l__intro__list__item:nth-of-type(1) {
    background-image: url(../images/bg_voice_sp_01.svg);
    background-size: 160px 118px !important;
    background-repeat: no-repeat;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(2) {
    background-image: url(../images/bg_voice_sp_02.svg);
    background-size: 166px 118px !important;
    background-repeat: no-repeat;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(3) {
    background-image: url(../images/bg_voice_sp_03.svg);
    background-size: 166px 117px !important;
    background-repeat: no-repeat;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(4) {
    background-image: url(../images/bg_voice_sp_04.svg);
    background-size: 164px 119px !important;
    background-repeat: no-repeat;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(5) {
    background-image: url(../images/bg_voice_sp_05.svg);
    background-size: 166px 136px !important;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 5px;
  }

  .l__intro__list__item:nth-of-type(6) {
    background-image: url(../images/bg_voice_sp_06.svg);
    background-size: 164px 131px !important;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 4px;
  }

  .l__intro__list__line {
    display: block;
    margin: 0 auto;
    width: 87%;
    height: 1px;
    background-color: #9fdddf;
  }

  .l__intro__02 {
    padding: 0 5%;
    min-width: 320px;
  }

  .l__intro__02 p {
    margin: 0 auto;
  }

  .l__intro__02__igb__pc {
    display: none;
  }

  .l__intro__02__flex_left {
    max-width: 515px;
    height: auto;
  }

  .l__intro__02__flex_left img {
    width: 100%;
    height: auto;
    margin-top: 48px;
  }

  .l__intro__02__flex_right {
    width: 100%;
    height: auto;
  }

  .l__intro__02__center {
    text-align: center;
  }

  .l__intro__02 h2 {
    display: block;
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.056em;
    margin-top: 31px;
    text-align: left;
    margin-left: 0;
  }

  .l__intro__02__item {
    display: inline-flex;
    padding: 29px 30px 29px 32px;
    justify-content: center;
    gap: 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e6f4f5 0%, #d7f1e8 100%);
    margin-top: 8px;
  }

  .l__intro__02__item:first-of-type {
    margin-top: 30px;
  }

  .l__intro__02__list span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.45px;
  }
}

/* ----------------------------
intro_sp
-----------------------------*/

@media screen and (min-width: 368px) and (max-width: 619px) {
  .l__intro {
    min-width: 372px;
    width: 100%;
  }

  .l__intro__inner {
    padding: 0 0 55px 0;
    max-width: 899px;
    justify-content: center;
  }

  .l__intro__title {
    text-align: center;
    margin-top: 38px;
  }

  .l__intro__title h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.12em;
    margin-top: 25px;
  }

  .br__sp {
    display: block !important;
  }

  .l__intro__list {
    max-width: 1182px;
    min-width: 343px;
    margin: 18px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 176px);
    text-align: center;
    justify-content: center;
    column-gap: 0;
    row-gap: 3px;
    padding-bottom: 57px;
  }

  .l__intro__list__item {
    width: 176px;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .l__intro__list__item p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.53;
    letter-spacing: 0.48px;
  }

  .l__intro__list__item:nth-of-type(1) {
    background-image: url(../images/bg_voice_sp_01.svg);
    background-size: 160px 118px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(2) {
    background-image: url(../images/bg_voice_sp_02.svg);
    background-size: 166px 118px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(3) {
    background-image: url(../images/bg_voice_sp_03.svg);
    background-size: 166px 117px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(4) {
    background-image: url(../images/bg_voice_sp_04.svg);
    background-size: 164px 119px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(5) {
    background-image: url(../images/bg_voice_sp_05.svg);
    background-size: 166px 136px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: 5px;
  }

  .l__intro__list__item:nth-of-type(6) {
    background-image: url(../images/bg_voice_sp_06.svg);
    background-size: 164px 131px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin-top: 4px;
  }

  .l__intro__list__line {
    display: block;
    margin: 0 auto;
    width: 87%;
    height: 1px;
    background-color: #9fdddf;
  }

  .l__intro__02 {
    padding: 0 6.4%;
    min-width: 326px;
  }

  .l__intro__02 p {
    margin: 0 auto;
  }

  .l__intro__02__igb__pc {
    display: none;
  }

  .l__intro__02__flex_left {
    max-width: 515px;
    height: auto;
  }

  .l__intro__02__flex_left img {
    width: 100%;
    height: auto;
    margin-top: 48px;
  }

  .l__intro__02__flex_right {
    width: 100%;
    height: auto;
  }

  .l__intro__02__center {
    text-align: center;
  }

  .l__intro__02 h2 {
    display: block;
    font-family: "Shippori Mincho B1", serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.068em;
    margin-top: 31px;
    text-align: left;
    margin-left: 0;
  }

  .l__intro__02__item {
    display: inline-flex;
    padding: 29px 30px 29px 32px;
    justify-content: center;
    gap: 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e6f4f5 0%, #d7f1e8 100%);
    margin-top: 8px;
  }

  .l__intro__02__item:first-of-type {
    margin-top: 30px;
  }

  .l__intro__02__list span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.45px;
  }
}

/* ----------------------------
intro_sp
-----------------------------*/

@media screen and (min-width: 620px) and (max-width: 899px) {
  .l__intro {
    min-width: 372px;
    width: 100%;
  }

  .l__intro__inner {
    padding: 0 0 55px 0;
    max-width: 899px;
    justify-content: center;
  }

  .l__intro__title {
    text-align: center;
    margin-top: 38px;
  }

  .l__intro__title h2 {
    text-align: center;
    font-size: 2.4rem;
    font-weight: 500;
    line-height: 1.45;
    letter-spacing: 0.12em;
    margin-top: 25px;
  }

  .br__sp {
    display: block !important;
  }

  .l__intro__list {
    max-width: 1182px;
    min-width: 343px;
    margin: 18px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 176px);
    text-align: center;
    justify-content: center;
    column-gap: 0;
    row-gap: 3px;
    gap: 10px;
    padding-bottom: 57px;
  }

  .l__intro__list__item {
    width: 176px;
    height: 135px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .l__intro__list__item p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.2rem;
    font-weight: 400;
    line-height: 1.53;
    letter-spacing: 0.48px;
  }

  .l__intro__list__item:nth-of-type(1) {
    background-image: url(../images/bg_voice_sp_01.svg);
    background-size: 160px 118px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(2) {
    background-image: url(../images/bg_voice_sp_02.svg);
    background-size: 166px 118px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(3) {
    background-image: url(../images/bg_voice_sp_03.svg);
    background-size: 166px 117px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(4) {
    background-image: url(../images/bg_voice_sp_04.svg);
    background-size: 164px 119px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(5) {
    background-image: url(../images/bg_voice_sp_05.svg);
    background-size: 166px 136px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(6) {
    background-image: url(../images/bg_voice_sp_06.svg);
    background-size: 164px 131px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__line {
    display: block;
    margin: 0 auto;
    width: 87%;
    height: 1px;
    background-color: #9fdddf;
  }

  .l__intro__02 {
    padding: 0 6.4%;
    min-width: 326px;
  }

  .l__intro__02 p {
    margin: 0 auto;
  }

  .l__intro__02__igb__pc {
    display: none;
  }

  .l__intro__02__flex_left {
    max-width: 515px !important;
    height: auto;
  }

  .l__intro__02__flex_left img {
    width: 100%;
    height: auto;
    margin-top: 48px;
  }

  .l__intro__02__flex_right {
    width: 100%;
    height: auto;
  }

  .l__intro__02__center {
    text-align: center;
  }

  .l__intro__02 h2 {
    display: block;
    font-family: "Shippori Mincho B1", serif;
    font-size: clamp(1.8rem, 4vw, 3.5rem);
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.068em;
    margin-top: 31px;
    text-align: left;
    margin-left: 0;
  }

  .l__intro__02__item {
    display: inline-flex;
    padding: 29px 30px 29px 32px;
    justify-content: center;
    gap: 28px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e6f4f5 0%, #d7f1e8 100%);
    margin-top: 8px;
  }

  .l__intro__02__item:first-of-type {
    margin-top: 30px;
  }

  .l__intro__02__list span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.6;
    letter-spacing: 0.45px;
  }
}

/* ----------------------------
intro_pc__900-1278
-----------------------------*/
@media screen and (min-width: 900px) and (max-width: 1255px) {
  .l__intro {
    width: 100%;
  }

  .l__intro__inner {
    padding: 0 5% 89px;
    min-width: 900px;
    max-width: 1278px;
    justify-content: center;
  }

  .l__intro__title {
    text-align: center;
    margin-top: 54px;
  }

  .l__intro__title h2 {
    text-align: center;
    font-size: clamp(2.4rem, 3vw, 3.9rem);
    line-height: 1.5;
    letter-spacing: 0.09em;
    margin-top: 13px;
  }

  .br__sp {
    display: none;
  }

  .l__intro__list {
    max-width: 1182px;
    min-width: 343px;
    margin: 74px auto 0;
    display: grid;
    grid-template-columns: repeat(2, 372px);
    text-align: center;
    justify-content: center;
    column-gap: 22px;
    row-gap: 23px;
    padding-bottom: 96px;
  }

  .l__intro__list__item {
    width: 372px;
    height: 228px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .l__intro__list__item p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: clamp(1.2rem, 3vw, 2rem);
    line-height: 1.53;
    letter-spacing: 0.04em;
    white-space: nowrap;
  }

  .l__intro__list__item:nth-of-type(1) {
    background-image: url(../images/bg_voice_pc_01.svg);
    background-size: 342px 216px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(2) {
    background-image: url(../images/bg_voice_pc_02.svg);
    background-size: 346px 218px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(3) {
    background-image: url(../images/bg_voice_pc_03.svg);
    background-size: 356px 210px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(4) {
    background-image: url(../images/bg_voice_pc_04.svg);
    background-size: 330px 214px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(5) {
    background-image: url(../images/bg_voice_pc_05.svg);
    background-size: 362px 214px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(6) {
    background-image: url(../images/bg_voice_pc_06.svg);
    background-size: 354px 206px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__line {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 1px;
    background-color: #9fdddf;
  }

  .l__intro__02 {
    padding: 96px 1% 0;
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 0;
    gap: 6%;
  }

  .l__intro__02__flex_left {
    width: 40%;
    max-width: 515px;
    min-width: 327px;
    height: auto;
  }

  .l__intro__02__flex_left img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    margin-top: 0;
  }

  .l__intro__02__flex_right {
    width: 50%;
    max-width: 646px;
    min-width: 327px;
  }

  .l__intro__02__center {
    text-align: left;
    width: 658px;
  }

  .l__intro__02 h2 {
    display: block;
    font-size: clamp(1.8rem, 2.5vw, 3.5rem);
    font-family: "Shippori Mincho B1", serif;
    line-height: 1.5;
    letter-spacing: 0.068em;
    margin-top: 0;
    text-align: left;
  }

  .l__intro__02__item {
    display: inline-flex;
    padding: 30px 58px 31px 37px;
    width: 97%;
    height: auto;
    justify-content: center;
    gap: 38px;
    border-radius: 10px;
    background: linear-gradient(90deg, #e6f4f5 0%, #d7f1e8 100%);
    margin-top: 9px;
    align-items: center;
    text-align: left;
  }

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

  .l__intro__02__item:first-of-type {
    margin-top: 54px;
  }

  .l__intro__02__item span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: clamp(1.5rem, 1vw, 1.6rem);
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
  }
}

/* ----------------------------
intro_pc
-----------------------------*/
@media screen and (min-width: 1256px) {
  .l__intro__inner {
    padding: 0 0 114px 0;
    min-width: 1279px;
  }

  .l__intro__title {
    text-align: center;
    margin-top: 54px;
  }

  .l__intro__title h2 {
    text-align: center;
    font-size: 3.9rem;
    line-height: 1.5;
    letter-spacing: 0.09em;
    margin-top: 13px;
  }

  .br__sp {
    display: none;
  }

  .l__intro__list {
    max-width: 1159px;
    margin: 63px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 372px);
    justify-content: space-between;
    text-align: center;
    column-gap: 22px;
    row-gap: 23px;
    padding-bottom: 96px;
  }

  .l__intro__list__item {
    width: 372px;
    height: 228px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .l__intro__list__item p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2rem;
    line-height: 1.53;
    letter-spacing: 0.001em;
    text-align: center;
  }

  .l__intro__list__item:nth-of-type(1) {
    background-image: url(../images/bg_voice_pc_01.svg);
    background-size: 342px 216px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(2) {
    background-image: url(../images/bg_voice_pc_02.svg);
    background-size: 346px 218px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(3) {
    background-image: url(../images/bg_voice_pc_03.svg);
    background-size: 356px 210px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(4) {
    background-image: url(../images/bg_voice_pc_04.svg);
    background-size: 330px 214px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(5) {
    background-image: url(../images/bg_voice_pc_05.svg);
    background-size: 362px 214px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__item:nth-of-type(6) {
    background-image: url(../images/bg_voice_pc_06.svg);
    background-size: 354px 206px !important;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .l__intro__list__line {
    display: block;
    margin: 0 auto;
    max-width: 1294px;
    height: 1px;
    background-color: #9fdddf;
  }

  .l__intro__02 {
    padding: 96px 103px 0;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    margin-top: 0;
    gap: 73px;
  }

  .l__intro__02__flex_left {
    width: 515px;
    height: auto;
  }

  .l__intro__02__flex_left img {
    width: 100%;
    height: auto;
    flex-shrink: 0;
    margin-top: 0;
  }

  .l__intro__02__flex_right {
    width: 646px;
  }

  .l__intro__02__center {
    text-align: left;
    width: 658px;
  }

  .l__intro__02 h2 {
    display: block;
    font-family: "Shippori Mincho B1", serif;
    font-size: 3.5rem;
    line-height: 1.5;
    letter-spacing: 0.09em;
    margin-top: 0;
    text-align: left;
  }

  .l__intro__02__item {
    display: inline-flex;
    width: 628px;
    gap: 38px;
    padding: 30px 58px 31px 37px;
    justify-content: center;
    border-radius: 10px;
    background: linear-gradient(90deg, #e6f4f5 0%, #d7f1e8 100%);
    margin-top: 9px;
    align-items: center;
  }

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

  .l__intro__02__item:first-of-type {
    margin-top: 54px;
  }

  .l__intro__02__item span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
  }
}

/* ----------------------------
intro_pc_end
-----------------------------*/

/* ==============================
service_sp
===============================*/
@media screen and (max-width: 367px) {
  .l__service {
    min-width: 320px;
  }

  .l__service__inner {
    width: 100%;
  }

  .l__service__deco__sp {
    padding: 0 1%;
    width: 100vw;
    height: auto;
    text-align: center;
    min-width: 320px;
  }

  .l__service__deco__pc {
    display: none;
  }

  .l__service__bg {
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 80px;
    background: linear-gradient(33deg, #99e8ea 43.27%, #e3f5ea 99.91%);
    margin-top: -2px;
  }

  .l__service__bg .l__title__en,
  .l__service__bg .l__title,
  .l__service__txt {
    text-align: center;
  }

  .l__service__bg .l__title {
    font-size: 2.2rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-top: 24px;
  }

  .l__service__txt {
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-top: 34px;
    padding: 0 2%;
  }

  .br__sp__367 {
    display: block;
  }

  .l__service__card__flex {
    margin-top: 42px;
  }

  .l__service__card__wrap__01 li a,
  .l__service__card__wrap__02 li a {
    display: block;
    border-radius: 9px;
    width: 100%;
    height: 100%;
  }

  /* ----- サービス内容_card ----- */
  .l__service__card {
    margin: 0 auto;
    width: 288px;
    height: 376px;
    border-radius: 9px;
    background: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 22px;
    transition: opacity 0.3s ease;
  }

  .l__service__card:hover {
    opacity: 0.7;
  }

  .l__service__card__inner {
    width: 100%;
    padding-top: 29px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .l__service__card__img {
    min-width: 230px;
    height: auto;
  }

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

  .l__service__card__name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 40px;
  }

  .l__service__card__list {
    margin-top: 37px;
  }

  .l__service__card__item {
    font-feature-settings: "palt" 1;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 11px;
  }

  .l__service__card__item:first-of-type {
    margin-top: 0;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3px;
  }

  .l__service__card__item::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    margin-right: 8px;
  }

  .l__service__card__item:first-of-type::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    margin-right: 8px;
  }

  .seminer {
    display: inline-flex;
    line-height: 1.5;
  }

  .seminer::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    margin-top: 8px;
    margin-right: 8px;
  }

  .l__service__card__arrow {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid #6dcbcf;
    background: #fff;
    position: relative;
  }

  .l__service__card__arrow img {
    width: 17px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__service__card__list__flex {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .l__service__card {
    position: relative;
  }

  .l__service__card__arrow__wrap {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 10%;
    bottom: 21px;
  }
}

/* ----------------------------
service_sp_368-925
-----------------------------*/
@media screen and (min-width: 368px) and (max-width: 925px) {
  .l__service {
    min-width: 320px;
  }

  .l__service__inner {
    width: 100%;
  }

  .l__service__deco__sp {
    padding: 0 2%;
    width: 100vw;
    height: auto;
    text-align: center;
    min-width: 320px;
  }

  .l__service__deco__pc {
    display: none;
  }

  .l__service__bg {
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 80px;
    background: linear-gradient(33deg, #99e8ea 43.27%, #e3f5ea 99.91%);
    margin-top: -2px;
  }

  .l__service__bg .l__title__en,
  .l__service__bg .l__title,
  .l__service__txt {
    text-align: center;
  }

  .l__service__bg .l__title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-top: 24px;
  }

  .l__service__txt {
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-top: 35px;
    padding: 0 2%;
  }

  .br__sp__367 {
    display: none;
  }

  .l__service__card__flex {
    margin-top: 42px;
  }

  .l__service__card__wrap__01 li a,
  .l__service__card__wrap__02 li a {
    display: block;
    border-radius: 9px;
    width: 100%;
    height: 100%;
  }

  /* ----- サービス内容_card ----- */
  .l__service__card {
    margin: 0 auto;
    max-width: 327px;
    height: 376px;
    border-radius: 9px;
    background: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 24px;
    transition: opacity 0.3s ease;
  }

  .l__service__card:hover {
    opacity: 0.7;
  }

  .l__service__card__inner {
    width: 100%;
    padding-top: 32px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .l__service__card__img {
    aspect-ratio: 263/132;
  }

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

  .l__service__card__name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 41px;
  }

  .l__service__card__list {
    margin-top: 37px;
  }

  .l__service__card__item {
    font-feature-settings: "palt" 1;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.3px;
    margin-top: 11px;
  }

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

  .l__service__card__item::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    margin-right: 8px;
  }

  .seminer {
    display: inline-flex;
    line-height: 1.5;
  }

  .seminer::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    margin-top: 8px;
    margin-right: 8px;
  }

  .l__service__card__arrow {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid #6dcbcf;
    background: #fff;
    position: relative;
  }

  .l__service__card__arrow img {
    width: 17px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__service__card__list__flex {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .l__service__card {
    position: relative;
  }

  .l__service__card__arrow__wrap {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 10%;
    bottom: 21px;
  }
}

/* ----------------------------
service_926-1010
-----------------------------*/
@media screen and (min-width: 926px) and (max-width: 1010px) {
  .l__service {
    min-width: 320px;
  }

  .l__service__inner {
    width: 100%;
  }

  .l__service__deco__sp {
    padding: 0 1%;
    width: 100vw;
    height: auto;
    text-align: center;
    min-width: 320px;
  }

  .l__service__deco__pc {
    display: none;
  }

  .l__service__bg {
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 80px;
    background: linear-gradient(33deg, #99e8ea 43.27%, #e3f5ea 99.91%);
    margin-top: -4px;
  }

  .l__service__bg .l__title__en,
  .l__service__bg .l__title,
  .l__service__txt {
    text-align: center;
  }

  .l__service__bg .l__title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-top: 24px;
  }

  .l__service__txt {
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-top: 34px;
    padding: 0 2%;
  }

  .br__sp__367 {
    display: none;
  }

  /* ----- サービス内容_card_pc----- */

  .l__service__card__flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px auto 0 auto;
  }

  .l__service__card__wrap__01 {
    display: flex;
    gap: 27px;
  }

  .l__service__card__wrap__02 {
    display: flex;
    margin-top: 26px;
    gap: 27px;
    justify-content: center;
  }

  .l__service__card__wrap__01 li a,
  .l__service__card__wrap__02 li a {
    display: block;
    border-radius: 9px;
    width: 100%;
    height: 100%;
  }

  /* ----- サービス内容_card ----- */
  .l__service__card {
    margin: 0 auto;
    max-width: 280px;
    height: 376px;
    border-radius: 9px;
    background: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 22px;
    transition: opacity 0.3s ease;
  }

  .l__service__card:hover {
    opacity: 0.7;
  }

  .l__service__card__inner {
    width: 100%;
    padding-top: 29px;
    padding-left: 8%;
    padding-right: 8%;
  }

  .l__service__card__img {
    min-width: 235px;
    height: auto;
  }

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

  .l__service__card__name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 40px;
  }

  .l__service__card__item {
    font-feature-settings: "palt" 1;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 11px;
  }

  .l__service__card__item:first-of-type {
    margin-top: 38px;
  }

  .l__service__card__item::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    margin-right: 8px;
  }

  .seminer {
    display: inline-flex;
    line-height: 1.5;
  }

  .l__service__card__arrow {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid #6dcbcf;
    background: #fff;
    position: relative;
  }

  .l__service__card__arrow img {
    width: 17px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__service__card__list__flex {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .l__service__card {
    position: relative;
  }

  .l__service__card__arrow__wrap {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 22px;
    bottom: 22px;
  }
}

/* ----------------------------
service_pc
-----------------------------*/
@media screen and (min-width: 1011px) and (max-width: 1096px) {
  .l__service {
    min-width: 320px;
  }

  .l__service__inner {
    width: 100%;
  }

  .l__service__deco__sp {
    padding: 0 1.42%;
    width: 100vw;
    height: auto;
    text-align: center;
    min-width: 320px;
  }

  .l__service__deco__pc {
    display: none;
  }

  .l__service__bg {
    margin: 0 auto;
    padding-top: 35px;
    padding-bottom: 80px;
    background: linear-gradient(33deg, #99e8ea 43.27%, #e3f5ea 99.91%);
    margin-top: -4px;
  }

  .l__service__bg .l__title__en,
  .l__service__bg .l__title,
  .l__service__txt {
    text-align: center;
  }

  .l__service__bg .l__title {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 3px;
    margin-top: 24px;
  }

  .l__service__txt {
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.03em;
    margin-top: 34px;
    padding: 0 2%;
  }

  .br__sp__367 {
    display: none;
  }

  /* ----- サービス内容_card_pc----- */

  .l__service__card__flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 40px auto 0 auto;
  }

  .l__service__card__wrap__01 {
    display: flex;
    gap: 27px;
  }

  .l__service__card__wrap__02 {
    display: flex;
    margin-top: 26px;
    gap: 27px;
    justify-content: center;
  }

  .l__service__card__wrap__01 li a,
  .l__service__card__wrap__02 li a {
    display: block;
    border-radius: 9px;
    width: 100%;
    height: 100%;
  }

  /* ----- サービス内容_card ----- */
  .l__service__card {
    margin: 0 auto;
    max-width: 296px;
    height: 376px;
    border-radius: 9px;
    background: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 22px;
    transition: opacity 0.3s ease;
  }

  .l__service__card:hover {
    opacity: 0.7;
  }

  .l__service__card__inner {
    width: 100%;
    padding-top: 29px;
    padding-left: 10%;
    padding-right: 10%;
  }

  .l__service__card__img {
    min-width: 240px;
    height: auto;
  }

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

  .l__service__card__name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 40px;
  }

  .l__service__card__item {
    font-feature-settings: "palt" 1;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.3px;
    margin-top: 11px;
  }

  .l__service__card__item:first-of-type {
    margin-top: 38px;
  }

  .l__service__card__item::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    margin-top: 8px;
    margin-right: 8px;
  }

  .seminer {
    display: inline-flex;
    line-height: 1.5;
  }

  .l__service__card__arrow {
    width: 48px;
    height: 48px;
    border-radius: 48px;
    border: 1px solid #6dcbcf;
    background: #fff;
    position: relative;
  }

  .l__service__card__arrow img {
    width: 17px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__service__card__list__flex {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .l__service__card {
    position: relative;
  }

  .l__service__card__arrow__wrap {
    width: 48px;
    height: 48px;
    position: absolute;
    right: 22px;
    bottom: 22px;
  }
}

/* ----------------------------
service__1097-1278
-----------------------------*/
@media screen and (min-width: 1097px) and (max-width: 1278px) {
  .l__service__inner {
    min-width: 1097px;
    max-width: 1278px;
  }

  .l__service__deco__sp {
    display: none;
  }

  .l__service__deco__pc {
    display: block;
    padding: 0 1%;
    width: 100%;
    height: auto;
    text-align: center;
  }

  .l__service__bg {
    margin: 0 auto;
    padding: 97px 171px 115px;
    background: linear-gradient(33deg, #99e8ea 43.27%, #e3f5ea 99.91%);
    margin-top: -4px;
  }

  .l__service__bg .l__title__en,
  .l__service__bg .l__title,
  .l__service__txt {
    text-align: center;
  }

  .l__service__bg .l__title {
    font-size: clamp(2.5rem, 3vw, 4rem);
    letter-spacing: 0;
    margin-top: 3px;
  }

  .l__service__txt {
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.13em;
    margin-top: 43px;
  }

  .br__sp__367 {
    display: none;
  }

  /* ----- サービス内容_card_pc----- */

  .l__service__card__flex {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin: 74px auto 0 auto;
  }

  .l__service__card__wrap__01 {
    display: flex;
    gap: 27px;
  }

  .l__service__card__wrap__02 {
    display: flex;
    margin-top: 26px;
    gap: 27px;
    justify-content: center;
  }

  .l__service__card {
    max-width: 348px;
    min-width: 327px;
    height: 433px;
    border-radius: 9px;
    background: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 0;
    transition: opacity 0.3s ease;
  }

  .l__service__card:hover {
    opacity: 0.7;
  }

  .l__service__card__wrap__01 li a,
  .l__service__card__wrap__02 li a {
    display: block;
    border-radius: 9px;
    width: 100%;
    height: 100%;
  }

  .l__service__card__inner {
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .l__service__card__img {
    display: block;
    max-width: 288px;
    min-width: 263px;
    height: auto;
  }

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

  .l__service__card__name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 64px;
  }

  .l__service__card__item {
    font-feature-settings: "palt";
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .l__service__card__item::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    left: 0;
    top: 0;
  }

  .l__service__card__item:first-of-type {
    margin-top: 37px;
  }

  .l__service__card__item.seminer {
    align-items: start;
    line-height: 1.5;
    margin-top: 32px;
  }

  .l__service__card__item.seminer::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    left: 0;
    top: 0;
    margin-top: 8px;
  }

  .l__service__card__arrow {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid #6dcbcf;
    background: #fff;
    position: relative;
  }

  .l__service__card__arrow img {
    width: 18px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__service__card__list__flex {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .l__service__card {
    position: relative;
  }

  .l__service__card__arrow__wrap {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 30px;
    bottom: 22px;
  }
}

/* ----------------------------
service_pc
-----------------------------*/
@media screen and (min-width: 1279px) {
  .l__service__inner {
    min-width: 1279px;
  }

  .l__service__deco__sp {
    display: none;
  }

  .l__service__deco__pc {
    display: block;
    max-width: 1440px;
    display: block;
    padding: 0 1.42%;
    width: 100%;
    height: auto;
    margin: 0 auto;
  }

  .l__service__bg {
    margin: 0 auto;
    padding: 93px 171px 115px;
    background: linear-gradient(33deg, #99e8ea 43.27%, #e3f5ea 99.91%);
    margin-top: -4px;
  }

  .l__service__bg .l__title__en,
  .l__service__bg .l__title,
  .l__service__txt {
    text-align: center;
  }

  .l__service__bg .l__title {
    font-size: 4rem;
    letter-spacing: 0;
    margin-top: 6px;
  }

  .l__service__txt {
    font-family: "Shippori Mincho B1", serif;
    font-size: 1.4rem;
    line-height: 1.8;
    letter-spacing: 0.13em;
    font-feature-settings: "palt" !important;
    font-kerning: normal !important;
    font-variant-east-asian: proportional-width !important;
    margin-top: 43px;
  }

  .br__sp__367 {
    display: none;
  }

  /* ----- サービス内容_card_pc----- */

  .l__service__card__flex {
    display: flex;
    max-width: 1098px;
    justify-content: center;
    flex-wrap: wrap;
    margin: 74px auto 0 auto;
  }

  .l__service__card__wrap__01 {
    display: flex;
    gap: 27px;
  }

  .l__service__card__wrap__02 {
    display: flex;
    margin-top: 26px;
    gap: 27px;
    justify-content: center;
  }

  .l__service__card {
    height: 433px;
    border-radius: 9px;
    background: #fff;
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 0;
    transition: 0.3s;
  }

  .l__service__card:hover {
    opacity: 0.7;
  }

  .l__service__card__wrap__01 li a,
  .l__service__card__wrap__02 li a {
    display: block;
    border-radius: 9px;
    width: 100%;
    height: 100%;
  }

  .l__service__card__inner {
    padding-top: 40px;
    padding-left: 30px;
    padding-right: 30px;
  }

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

  .l__service__card__img {
    display: block;
    width: 288px;
    height: auto;
  }

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

  .l__service__card__name {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 64px;
  }

  .l__service__card__item {
    font-feature-settings: "palt";
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    margin-top: 11px;
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .l__service__card__item::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background-color: #6dcbcf;
    left: 0;
    top: 0;
  }

  .l__service__card__item:first-of-type {
    margin-top: 37px;
  }

  .l__service__card__item.seminer {
    align-items: start;
    line-height: 1.5;
    margin-top: 32px;
  }

  .l__service__card__item.seminer::before {
    content: "";
    display: inline-block;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    left: 0;
    top: 0;
    margin-top: 8px;
  }

  .l__service__card__arrow {
    width: 60px;
    height: 60px;
    border-radius: 60px;
    border: 1px solid #6dcbcf;
    background: #fff;
    position: relative;
  }

  .l__service__card__arrow img {
    width: 18px;
    height: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__service__card__list__flex {
    display: flex;
    width: 100%;
    height: 100%;
  }

  .l__service__card {
    position: relative;
  }

  .l__service__card__arrow__wrap {
    width: 60px;
    height: 60px;
    position: absolute;
    right: 30px;
    bottom: 22px;
  }
}

/* ==============================
flow
===============================*/
@media screen and (max-width: 367px) {
  .l__flow__inner {
    width: 100%;
    margin: 0 auto;
    padding: 35px 6.4% 109px 6.4%;
    text-align: center;
  }

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

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

  .l__flow__list {
    margin-top: 41px;
  }

  .l__flow__card__line {
    display: block;
    position: relative;
    height: 37px;
    margin: 18px 0;
  }

  .l__flow__card__line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 2px;
    height: 37px;
    margin: auto;
    background-color: #d4eded;
  }

  .l__flow__card__circle {
    width: 179px;
    height: 179px;
    background-image: url(../images/bg_flow_circle.png);
    background-size: cover;
    margin: 0 auto;
    position: relative;
  }

  .l__flow__card__circle__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__flow__card__no {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.26px;
  }

  .l__flow__card__icon__01 {
    width: 39px;
    height: 30px;
    margin-top: 18px;
  }

  .l__flow__card__icon__02 {
    width: 58px;
    height: 37px;
    margin-top: 18px;
  }

  .l__flow__card__icon__03 {
    width: 30px;
    height: 39px;
    margin-top: 18px;
  }

  .l__flow__card__icon__04 {
    width: 44px;
    height: 39px;
    margin-top: 18px;
  }

  .l__flow__card__name {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 18px;
  }

  .l__flow__card__txt {
    max-width: 287px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-feature-settings: "palt" on;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.71;
    letter-spacing: 0.03em;
    text-align: left;
    margin: 5px auto 0 auto;
  }

  /* 横棒線_pc_消す */
  .l__flow__list__border__pc {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .l__flow__price__inner {
    margin: 0 auto;
    padding: 37px 32px 40px;
    max-width: 327px;
    height: 388px;
    border-radius: 11px;
    background: linear-gradient(90deg, #d5eded 0%, #c3e9dc 100%);
    margin-top: 73px;
    transition: opacity 0.3s ease;
  }

  .l__flow__price__inner:hover {
    opacity: 0.6;
  }

  .l__flow__price__title {
    padding-bottom: 36px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 1.32px;
    border-bottom: solid 1px #8cd6d9;
  }

  .br__pc {
    display: none;
  }

  .l__flow__price__border__pc {
    display: none;
  }

  .l__flow__price__txt {
    text-align: left;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.8px;
    margin-top: 21px;
  }

  .l__flow__price__arrow {
    display: inline-block;
    text-align: center;
    /*左右中央*/
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    background: #fff;
    margin-top: 17px;

    position: relative;
  }

  .l__flow__price__arrow img {
    width: 15px;
    height: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__flow__price__inner {
    position: relative;
  }

  .l__flow__price__arrow__wrap {
    position: absolute;
    right: 35px;
    bottom: 40px;
  }
}
/* ----------------------------
flow_sp__368-1023
-----------------------------*/
@media screen and (min-width: 368px) and (max-width: 1023px) {
  .l__flow__inner {
    width: 100%;
    margin: 0 auto;
    padding: 44px 6.4% 109px 6.4%;
    text-align: center;
  }

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

  .l__flow__inner h2 {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-top: 21px;
  }

  .l__flow__list {
    margin-top: 41px;
  }

  .l__flow__card__line {
    display: block;
    position: relative;
    height: 37px;
    margin: 18px 0;
  }

  .l__flow__card__line::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 2px;
    height: 37px;
    margin: auto;
    background-color: #d4eded;
  }

  .l__flow__card__circle {
    width: 179px;
    height: 179px;
    background-image: url(../images/bg_flow_circle.png);
    background-size: cover;
    margin: 0 auto;
    position: relative;
  }

  .l__flow__card__circle__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__flow__card__no {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.26px;
  }

  .l__flow__card__icon__01 {
    width: 39px;
    height: 30px;
    margin-top: 18px;
  }

  .l__flow__card__icon__02 {
    width: 58px;
    height: 37px;
    margin-top: 18px;
  }

  .l__flow__card__icon__03 {
    width: 30px;
    height: 39px;
    margin-top: 18px;
  }

  .l__flow__card__icon__04 {
    width: 44px;
    height: 39px;
    margin-top: 18px;
  }

  .l__flow__card__name {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 18px;
  }

  .l__flow__card__txt {
    max-width: 287px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.71;
    letter-spacing: 0.03em;
    text-align: left;
    margin: 5px auto 0;
  }

  .mendan {
    max-width: 294px;
  }

  .goirai {
    max-width: 302px;
  }

  /* 横棒線_pc_消す */
  .l__flow__list__border__pc {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .l__flow__price__inner {
    margin: 0 auto;
    padding: 37px 32px 40px;
    max-width: 327px;
    height: 388px;
    border-radius: 11px;
    background: linear-gradient(90deg, #d5eded 0%, #c3e9dc 100%);
    margin-top: 73px;
    transition: opacity 0.3s ease;
  }

  .l__flow__price__inner:hover {
    opacity: 0.6;
  }

  .l__flow__price__title {
    padding-bottom: 36px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2.2rem;
    font-weight: 500;
    letter-spacing: 1.32px;
    border-bottom: solid 1px #8cd6d9;
  }

  .br__pc {
    display: none;
  }

  .l__flow__price__border__pc {
    display: none;
  }

  .l__flow__price__txt {
    width: 250px;
    text-align: left;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.85;
    letter-spacing: 0.8px;
    margin: 21px auto 0;
  }

  .l__flow__price__arrow {
    display: inline-block;
    text-align: center;
    /*左右中央*/
    width: 65px;
    height: 65px;
    line-height: 65px;
    border-radius: 50%;
    background: #fff;
    margin-top: 17px;
    position: relative;
  }

  .l__flow__price__arrow img {
    width: 15px;
    height: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__flow__price__inner {
    position: relative;
  }

  .l__flow__price__arrow__wrap {
    position: absolute;
    right: 37px;
    bottom: 39px;
  }
}

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

  .l__flow__inner {
    min-width: 71%;
    max-width: 1278px;
    padding: 97px 3% 145px;
    margin: 0 auto;
    text-align: center;
  }

  .l__title__en__flow {
    color: #b7e1df;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(1.5rem, 3vw, 3.2rem);
    letter-spacing: 0.075em;
  }

  .l__flow__inner h2 {
    font-size: clamp(2.5rem, 3vw, 4rem);
    letter-spacing: 0;
    margin-top: 22px;
  }

  .l__flow__list {
    display: flex;
    justify-content: center;
    gap: 12px;
    min-width: 955px;
    max-width: 1011px;
    margin: 76px auto 0;
  }

  .l__flow__card__line {
    display: none;
  }

  .l__flow__card__circle {
    width: 179px;
    height: 179px;
    background-image: url(../images/bg_flow_circle.png);
    background-size: cover;
    margin: 0 auto;
    position: relative;
  }

  .l__flow__card__circle__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__flow__card__no {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1;
    letter-spacing: 1.26px;
  }

  .l__flow__card__icon__01 {
    width: 39px;
    height: 30px;
    margin-top: 18px;
  }

  .l__flow__card__icon__02 {
    width: 58px;
    height: 37px;
    margin-top: 18px;
  }

  .l__flow__card__icon__03 {
    width: 30px;
    height: 39px;
    margin-top: 18px;
  }

  .l__flow__card__icon__04 {
    width: 44px;
    height: 39px;
    margin-top: 18px;
  }

  .l__flow__card__name {
    width: auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 31px;
    white-space: nowrap;
  }

  .l__flow__card__txt {
    max-width: 195px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-feature-settings: "palt" on;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.71;
    letter-spacing: 0.03em;
    text-align: left;
    margin: 10px auto 0 auto;
    flex-shrink: 0;
  }

  /* 横線_pc */
  .l__flow__list__border__pc {
    opacity: 1;
    visibility: visible;
    display: inline-block;
    max-width: 59px;
    min-width: 40px;
    height: 2px;
    background-color: #d4eded;
    margin-top: 89px;
  }

  .l__flow__price__inner {
    margin: 47px auto 0;
    padding: 42px 7% 42px 10%;
    min-width: 900px;
    max-width: 1011px;
    height: 199px;
    border-radius: 11px;
    background: linear-gradient(90deg, #d5eded 0%, #c3e9dc 100%);
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
  }

  .l__flow__price__inner:hover {
    opacity: 0.6;
  }

  /* price_hover */

  .l__flow__price__title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding-bottom: 0;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    border-bottom: none;
    white-space: nowrap;
  }

  .br__pc {
    display: block;
  }

  /* 縦線_pc */
  .l__flow__price__border__pc {
    display: inline-block;
    width: 1px;
    height: 115px;
    background-color: #8cd6d9;
    margin-left: 10%;
    flex-shrink: 0;
  }

  .l__flow__price__txt {
    text-align: left;
    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: 0;
    margin-left: 6%;
    flex-shrink: 0;
  }

  .l__flow__price__arrow {
    display: inline-block;
    text-align: center;
    /*左右中央*/
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: #fff;
    margin-top: 0;
    position: relative;
  }

  .l__flow__price__arrow img {
    width: 15px;
    height: 13px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__flow__price {
    position: static;
  }

  .l__flow__price__arrow__wrap {
    position: static;
    margin-left: 7%;
  }
}

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

  .l__flow__inner {
    min-width: 1279px;
    margin: 0 auto;
    padding: 94px 0 151px;
    text-align: center;
  }

  .l__title__en__flow {
    color: #b7e1df;
    font-family: "Cormorant Garamond", serif;
    font-size: 3.2rem;
    letter-spacing: 0.16em;
  }

  .l__flow__inner h2 {
    font-size: 4rem;
    letter-spacing: 0;
    margin-top: 22px;
  }

  .l__flow__list {
    display: flex;
    justify-content: center;
    gap: 12px;
    max-width: 1011px;
    margin: 75px auto 0;
  }

  .l__flow__card__line {
    display: none;
  }

  .l__flow__card__circle {
    width: 179px;
    height: 179px;
    background-image: url(../images/bg_flow_circle.png);
    background-size: cover;
    margin: 0 auto;
    position: relative;
  }

  .l__flow__card__circle__wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin-top: -6px;
  }

  .l__flow__card__no {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 2.1rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 1.26px;
  }

  .l__flow__card__icon__01 {
    width: 39px;
    height: 30px;
    margin-top: 20px;
  }

  .l__flow__card__icon__02 {
    width: 58px;
    height: 37px;
    margin-top: 20px;
  }

  .l__flow__card__icon__03 {
    width: 30px;
    height: 39px;
    margin-top: 20px;
  }

  .l__flow__card__icon__04 {
    width: 44px;
    height: 39px;
    margin-top: 20px;
  }

  .l__flow__card__name {
    width: auto;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.7rem;
    font-style: normal;
    font-weight: 700;
    line-height: 1.5;
    margin-top: 31px;
    white-space: nowrap;
  }

  .l__flow__card__txt {
    max-width: 195px;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-feature-settings: "palt" on;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.71;
    letter-spacing: 0.03em;
    text-align: left;
    margin: 10px auto 0 auto;
    flex-shrink: 0;
  }

  /* 横線_pc */
  .l__flow__list__border__pc {
    opacity: 1;
    visibility: visible;
    display: inline-block;
    width: 59px;
    height: 2px;
    background-color: #d4eded;
    margin-top: 89px;
  }

  .l__flow__price {
    display: block;
  }

  .l__flow__price__inner {
    margin: 47px auto 0;
    padding: 42px 73px 42px 102px;
    max-width: 1011px;
    height: 199px;
    border-radius: 11px;
    background: linear-gradient(90deg, #d5eded 0%, #c3e9dc 100%);
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
  }

  .l__flow__price__inner:hover {
    opacity: 0.6;
  }

  .l__flow__price__title {
    font-family: "Zen Kaku Gothic New", sans-serif;
    padding-bottom: 0;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.14em;
    border-bottom: none;
    white-space: nowrap;
  }

  .br__pc {
    display: block;
  }

  /* 縦線_pc */
  .l__flow__price__border__pc {
    display: inline-block;
    width: 1px;
    height: 115px;
    background-color: #8cd6d9;
    margin-left: 92px;
    flex-shrink: 0;
  }

  .l__flow__price__txt {
    text-align: left;
    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: 0;
    margin-left: 58px;
    flex-shrink: 0;
  }

  .l__flow__price__arrow {
    display: inline-block;
    text-align: center;
    /*左右中央*/
    width: 64px;
    height: 64px;
    line-height: 64px;
    border-radius: 50%;
    background: #fff;
    margin-top: 0;
    position: relative;
  }

  .l__flow__price__arrow img {
    width: 15px;
    height: 13px;

    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__flow__price {
    position: static;
  }

  .l__flow__price__arrow__wrap {
    position: static;
    margin-left: 75px;
  }
}

/* ==============================
about
===============================*/
@media screen and (max-width: 367px) {
  .l__about {
    min-width: 320px;
  }
  .l__about__inner {
    padding: 35px 6.4% 66px;
    margin: 0 auto;
    background-image: url(../images/bg_about_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .l__about__header__sp {
    margin: 0 auto;
    width: 100%;
  }

  .l__about__header__pc {
    display: none;
  }

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

  .l__about__flex__01 {
    padding-bottom: 41px;
  }

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

  .l__about__img__pc {
    display: none;
  }

  .l__about__img {
    max-width: 573px;
    height: auto;
    margin: 0 auto;
  }

  .l__about__img img {
    width: 100%;
    height: auto;
    margin-top: 26px;
  }

  .l__about__flex__01,
  .l__about__flex__02 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    width: 100%;
    margin: 0 auto;
  }

  .l__about__name__jp__01 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 51px;
  }

  .l__about__name__jp__02 {
    line-height: 1.8;
  }

  .l__about__name__en {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-top: 12px;
  }

  .l__about__name__01 {
    padding-left: 9px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    width: 217px;
    height: 29px;
    border-radius: 50px;
    background: #c3e9dc;
    margin-top: 18px;
  }

  .l__about__name__02,
  .l__about__txt__prof {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.05em;
    margin-top: 7px;
  }

  .l__about__txt__prof {
    margin-top: 11px;
  }

  .l__about__note__01 {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-top: 42px;
  }

  .l__about__note__01:last-of-type {
    margin-top: 0;
  }

  .l__about__flex__02__left {
    margin-top: 42px;
  }

  .l_map {
    width: 100%;
    height: 367px;
    border-radius: 13px;
  }

  .l__about__name__jp__02 {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 27px;
  }

  .l__about__txt__address {
    font-size: 1.6rem;
    line-height: 1.86;
    letter-spacing: 0.04em;
    margin-top: 10px;
  }

  .l__about__note__02,
  .l__about__note__03 {
    font-size: 1.3rem;
    font-weight: 400;
  }

  .l__about__note__02 {
    margin-top: 9px;
    line-height: 1.8;
  }

  .l__about__note__03 {
    line-height: 1.8;
    margin-top: 4px;
    max-width: 306px;
    min-width: 280px;
  }
}

/* ----------------------------
about_pc__368-1023
-----------------------------*/
@media screen and (min-width: 368px) and (max-width: 1023px) {
  .l__about {
    min-width: 320px;
  }

  .l__about__inner {
    padding: 36px 6.4% 66px;
    margin: 0 auto;
    background-image: url(../images/bg_about_sp.png);
    background-size: cover;
    background-repeat: no-repeat;
  }

  .l__about__header__sp {
    margin: 0 auto;
    width: 100%;
  }

  .l__about__header__pc {
    display: none;
  }

  .l__about__inner h2 {
    font-size: clamp(2.2rem, 7vw, 2.5rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    margin-top: 24px;
  }

  .l__about__flex__01 {
    padding-bottom: 41px;
  }

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

  .l__about__img__pc {
    display: none;
  }

  .l__about__img {
    max-width: 573px;
    min-height: 522px;
    aspect-ratio: 109/100;
    height: auto;
    margin: 0 auto;
  }

  .l__about__img img {
    width: 100%;
    height: auto;
    margin-top: 26px;
  }

  .l__about__flex__01,
  .l__about__flex__02 {
    font-family: "Zen Kaku Gothic New", sans-serif;
    width: 100%;
    margin: 0 auto;
  }

  .l__about__name__jp__01 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-top: 29px;
  }

  .l__about__name__jp__02 {
    line-height: 1.8;
  }

  .l__about__name__en {
    font-size: 1.2rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-top: 12px;
  }

  .l__about__name__01 {
    padding-left: 9px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    width: 217px;
    height: 29px;
    border-radius: 50px;
    background: #c3e9dc;
    margin-top: 18px;
  }

  .l__about__name__02,
  .l__about__txt__prof {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.05em;
    margin-top: 7px;
  }

  .l__about__txt__prof {
    margin-top: 11px;
  }

  .l__about__note__01 {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-top: 40px;
  }

  .l__about__note__01:last-of-type {
    margin-top: 0;
  }

  .l__about__flex__02__left {
    margin-top: 42px;
  }

  .l_map {
    width: 100%;
    height: 367px;
    border-radius: 13px;
  }

  .l__about__name__jp__02 {
    font-size: 2.1rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 19px;
  }

  .l__about__txt__address {
    font-size: 1.6rem;
    line-height: 1.86;
    letter-spacing: 0.04em;
    margin-top: 3px;
  }

  .l__about__note__02,
  .l__about__note__03 {
    font-size: 1.3rem;
    font-weight: 400;
  }

  .l__about__note__02 {
    margin-top: 9px;
    line-height: 1.8;
  }

  .l__about__note__03 {
    line-height: 1.8;
    margin-top: 4px;
    max-width: 306px;
    min-width: 280px;
  }
}

/* ----------------------------
about_pc__1024-1278
-----------------------------*/
@media screen and (min-width: 1024px) and (max-width: 1278px) {
  .l__about {
    justify-content: center;
    width: 100%;
  }

  .l__about__inner {
    padding: 99px 41px 98px;
    min-width: 1024px;
    max-width: 1278px;
    background-image: url(../images/bg_about_pc.svg);
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
  }

  .l__about__header__sp {
    display: none;
  }

  .l__about__header__pc {
    display: block;
  }

  .l__about__header__pc .l__title__en {
    font-size: clamp(1.5rem, 2vw, 3.2rem);
    letter-spacing: 2.4px;
  }

  .l__about__header__pc h2 {
    font-size: clamp(2.5rem, 3vw, 4rem);
    letter-spacing: 0;
    margin-top: 35px;
  }

  .l__about__flex__01 {
    padding-bottom: 96px;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 4%;
  }

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

  .l__about__flex__01__rigt {
    width: 56%;
    height: auto;
    padding-right: 7%;
  }

  .l__about__img {
    max-width: 573px;
    min-width: 327px;
    height: auto;
  }

  .l__about__img img {
    width: 100%;
    height: auto;
    margin-top: 94px;
    margin-right: 7%;
  }

  .l__about__img__sp {
    display: none;
  }

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

  .l__about__flex__01__left {
    max-width: 475px;
    padding-left: 7%;
  }

  .l__about__name {
    display: flex;
  }

  .l__about__name__jp__01 {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 35px;
  }

  .l__about__name__en {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-top: 41px;
    margin-left: 17px;
  }

  .l__about__name__01 {
    padding-left: 9px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    width: 217px;
    height: 29px;
    border-radius: 50px;
    background: #c3e9dc;
    margin-top: 35px;
  }

  .l__about__name__02,
  .l__about__txt__prof {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.05em;
    margin-top: 6px;
  }

  .l__about__txt__prof {
    margin-top: 18px;
    min-width: 145px;
  }

  .l__about__note__01 {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-top: 42px;
  }

  .l__about__note__01:last-of-type {
    margin-top: 0;
  }

  .l__about__flex__02 {
    display: flex;
    margin-top: 96px;
    justify-content: center;
  }

  .l__about__flex__02__left {
    width: 63%;
    height: auto;
    padding-left: 7%;
  }

  .l_map {
    width: 100%;
    height: 100%;
    border-radius: 13px;
  }

  .l__about__flex__02__rigt {
    margin-left: 58px;
    padding-right: 7%;
  }

  .l__about__name__jp__02 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 63px;
  }

  .l__about__txt__address {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 38px;
  }

  .l__about__note__02,
  .l__about__note__03 {
    font-size: 1.3rem;
    font-weight: 400;
  }

  .l__about__note__02 {
    margin-top: 23px;
  }

  .l__about__note__03 {
    line-height: 1.8;
    margin-top: 7px;
    width: 389px;
  }
}

/* ----------------------------
about_pc
-----------------------------*/
@media screen and (min-width: 1279px) {
  .l__about {
    justify-content: center;
    width: 100%;
  }

  .l__about__inner {
    padding: 95px 73px 98px;
    min-width: 1279px;
    background-image: url(../images/bg_about_pc.svg);
    background-size: cover;
    background-repeat: no-repeat;
    justify-content: center;
  }

  .l__about__header__sp {
    display: none;
  }

  .l__about__header__pc {
    display: block;
  }

  .l__about__inner h2 {
    font-size: 4rem;
    letter-spacing: 0;
    margin-top: 35px;
  }

  .l__about__flex__01 {
    padding-bottom: 89px;
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
    gap: 76px;
  }

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

  .l__about__flex__01__rigt {
    width: 573px;
    height: auto;
  }

  .l__about__img {
    min-width: 573px;
    height: auto;
  }

  .l__about__img img {
    width: 100%;
    height: auto;
    margin-top: 94px;
    margin-right: 100px;
  }

  .l__about__img__sp {
    display: none;
  }

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

  .l__about__flex__01__left {
    max-width: 451px;
    min-width: 327px;
  }

  .l__about__name {
    display: flex;
  }

  .l__about__name__jp__01 {
    display: inline-block;
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 35px;
    margin-left: 5px;
  }

  .l__about__name__en {
    display: inline-block;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    margin-top: 41px;
    margin-left: 15px;
  }

  .l__about__name__01 {
    padding-left: 9px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.8;
    width: 217px;
    height: 29px;
    border-radius: 50px;
    background: #c3e9dc;
    margin-top: 35px;
  }

  .l__about__name__02,
  .l__about__txt__prof {
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1.95;
    letter-spacing: 0.05em;
    margin-top: 6px;
    margin-left: 5px;
  }

  .l__about__txt__prof {
    margin-top: 18px;
  }

  .l__about__note__01 {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    letter-spacing: 0.01em;
    margin-top: 41px;
    margin-left: 5px;
  }

  .l__about__note__01:last-of-type {
    margin-top: 0;
  }

  .l__about__flex__02 {
    display: flex;
    margin-top: 96px;
    justify-content: center;
  }

  .l__about__flex__02__left {
    width: 647px;
    height: 402px;
    flex-shrink: 0;
  }

  .l_map {
    width: 100%;
    height: 100%;
    border-radius: 13px;
  }

  .l__about__flex__02__rigt {
    margin-left: 58px;
  }

  .l__about__name__jp__02 {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 63px;
  }

  .l__about__txt__address {
    font-size: 2rem;
    line-height: 1.8;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 38px;
  }

  .l__about__note__02,
  .l__about__note__03 {
    font-size: 1.3rem;
    font-weight: 400;
  }

  .l__about__note__02 {
    margin-top: 23px;
  }

  .l__about__note__03 {
    line-height: 1.8;
    margin-top: 7px;
    width: 389px;
  }
}

/* ==============================
blog
===============================*/
@media screen and (max-width: 367px) {
  .l__blog__inner {
    padding: 75px 6.4% 65px;
    width: 100%;
    margin: 0 auto;
  }

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

  .l__blog__btn {
    padding: 10px 13px 10px 10px;
    width: 116px;
    border-radius: 9px;
    background: linear-gradient(90deg, #e5f4f4 0%, #d8f1e8 100%);
    margin-top: 45px;
    transition: opacity 0.3s ease;
  }

  .l__blog__btn:hover {
    opacity: 0.6;
  }

  .l__blog__btn a {
    display: flex;
    align-items: center;
  }

  .l__blog__card__flex__left {
    width: 99px;
  }

  .l__blog__btn span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
  }

  .l__blog__btn img {
    margin-left: 8px;
  }

  .l__blog__card {
    margin-top: 32px;
  }

  .l__blog__card__img {
    width: 99px;
    height: 66px;
    border-radius: 11px;
    overflow: hidden;
  }

  .l__blog__card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .l__blog__card a {
    display: flex;
    width: 100%;
    gap: 18px;
  }

  .l__blog__card__category,
  .l__blog__card__date,
  .l__blog__card__name,
  .l__blog__card__text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: left;
  }

  .l__blog__card__category {
    display: inline-block;
    color: #8b8b8b;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.4;
    padding: 7px 11px;
    border-radius: 10px;
    border: 1px solid #8b8b8b;
    background: #fff;
  }

  .l__blog__card__name {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-top: 12px;
  }

  .l__blog__card__item {
    width: 100%;
  }

  .l__blog__card__arrow__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
  }

  .l__blog__card__date {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.17em;
  }

  .l__blog__card__text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.76;
    letter-spacing: 0.02em;
    margin-top: 12px;
  }

  .l__blog__card__arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: solid 1px #333;
    position: relative;
  }

  .l__blog__card__arrow img {
    width: 10px;
    height: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__blog__card:first-of-type {
    margin-top: 57px;
  }

  .l__blog__card__flex__left {
    flex: 0 0 99px;
  }

  .l__blog__card__flex__right {
    flex: 1;
  }
}

/* ----------------------------
blog_pc__368-1023
-----------------------------*/
@media screen and (min-width: 368px) and (max-width: 1023px) {
  .l__blog__inner {
    padding: 75px 6.4% 65px;
    width: 100%;
    margin: 0 auto;
  }

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

  .l__blog__btn {
    padding: 10px 13px 10px 10px;
    width: 116px;
    border-radius: 9px;
    background: linear-gradient(90deg, #e5f4f4 0%, #d8f1e8 100%);
    margin-top: 45px;
    transition: opacity 0.3s ease;
  }

  .l__blog__btn:hover {
    opacity: 0.6;
  }

  .l__blog__btn a {
    display: flex;
    align-items: center;
    width: 100%;
    height: 100%;
  }

  .l__blog__card__flex__left {
    width: 99px;
  }

  .l__blog__btn span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.03em;
  }

  .l__blog__btn img {
    margin-left: 8px;
  }

  .l__blog__card {
    margin-top: 32px;
  }

  .l__blog__card__img {
    width: 99px;
    height: 66px;
    border-radius: 11px;
    overflow: hidden;
  }

  .l__blog__card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .l__blog__card a {
    display: flex;
    width: 100%;
    gap: 24px;
    transition: opacity 0.3s ease;
  }

  .l__blog__card a:hover {
    opacity: 0.6;
  }

  .l__blog__card__category,
  .l__blog__card__date,
  .l__blog__card__name,
  .l__blog__card__text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: left;
  }

  .l__blog__card__category {
    display: inline-block;
    color: #8b8b8b;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    padding: 7px 11px;
    border-radius: 10px;
    border: 1px solid #8b8b8b;
    background: #fff;
  }

  .l__blog__card__name {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-top: 12px;
  }

  .l__blog__card__item {
    width: 100%;
  }

  .l__blog__card__arrow__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
  }

  .l__blog__card__date {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.17em;
  }

  .l__blog__card__text {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.76;
    letter-spacing: 0.02em;
    margin-top: 12px;
  }

  .l__blog__card__arrow {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: solid 1px #333;
    position: relative;
  }

  .l__blog__card__arrow img {
    width: 10px;
    height: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

  .l__blog__card:first-of-type {
    margin-top: 57px;
  }

  .l__blog__card__flex__left {
    flex: 0 0 99px;
  }

  .l__blog__card__flex__right {
    flex: 1;
  }
}

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

  .l__blog__inner {
    padding: 126px 34px 133px;
    min-width: 1024px;
    max-width: 1278px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  .l__title__en {
    font-size: clamp(1.5rem, 2vw, 3.2rem);
    letter-spacing: 2.4px;
  }

  .l__blog__inner h2 {
    font-size: clamp(2.5rem, 3vw, 4rem);
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 22px;
    width: 100%;
  }

  .l__blog__btn {
    padding: 6px 12px;
    width: 116px;
    border-radius: 9px;
    background: linear-gradient(90deg, #e5f4f4 0%, #d8f1e8 100%);
    margin-top: 69px;
    transition: 0.3s;
    transition: opacity 0.3s ease;
  }

  .l__blog__btn:hover {
    opacity: 0.6;
  }

  .l__blog__btn a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .l__blog__btn span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }

  .l__blog__btn img {
    margin-left: 8px;
  }

  .l__blog__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px;
    margin-top: 54px;
    margin-left: 44px;
  }

  .l__blog__card {
    font-family: "Zen Kaku Gothic New", sans-serif;
    margin-top: 0;
    max-width: 260px;
    min-width: 193px;
    height: 417px;
    transition: 0.3s;
  }

  .l__blog__card:hover {
    opacity: 0.6;
  }

  .l__blog__card__img {
    width: 100%;
    max-width: 258px;
    min-width: 192px;
    aspect-ratio: 258 / 172;
    border-radius: 11px;
    overflow: hidden;
  }

  .l__blog__card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .l__blog__card a {
    display: block;
    gap: 0;
  }

  .l__blog__card__date,
  .l__blog__card__name,
  .l__blog__card__text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: left;
  }

  .l__blog__card__category {
    font-family: "Zen Kaku Gothic New", sans-serif;
    display: inline-block;
    color: #8b8b8b;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid #8b8b8b;
    background: #fff;
    margin-top: 32px;
    white-space: nowrap;
  }

  .l__blog__card__name {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-top: 15px;
  }

  .l__blog__card__date {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.17em;
  }

  .l__blog__card__item {
    width: 100%;
    height: 153px;
    position: relative;
  }

  .l__blog__card__arrow__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .l__blog__card__arrow {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: solid 1px #333;
    margin-top: 0;
    position: relative;
  }

  .l__blog__card__arrow img {
    width: 10px;
    height: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

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

  .l__blog__card__flex__right {
    position: static;
    padding-bottom: 0;
  }

  .l__blog__card {
    position: relative;
  }
}

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

  .l__blog__inner {
    padding: 126px 34px 133px;
    min-width: 1279px;
    max-width: 1360px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }

  .l__blog__inner h2 {
    font-size: 4rem;
    white-space: nowrap;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 22px;
    width: 100%;
  }

  .l__blog__btn {
    padding: 6px 12px;
    width: 116px;
    border-radius: 9px;
    background: linear-gradient(90deg, #e5f4f4 0%, #d8f1e8 100%);
    margin-top: 69px;
    transition: opacity 0.3s ease;
  }

  .l__blog__btn:hover {
    opacity: 0.6;
  }

  .l__blog__btn a {
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .l__blog__btn span {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.03em;
  }

  .l__blog__btn img {
    margin-left: 8px;
  }

  .l__blog__list {
    display: flex;
    gap: 44px;
    margin-top: 54px;
  }

  .l__blog__card {
    margin-top: 0;
    width: 260px;
    height: 405px;
    transition: 0.3s;
  }

  .l__blog__card:hover {
    opacity: 0.6;
  }

  .l__blog__card__img {
    width: 260px;
    height: 174px;
    border-radius: 11px;
    overflow: hidden;
  }

  .l__blog__card__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .l__blog__card a {
    display: block;
    gap: 0;
  }

  .l__blog__card__date,
  .l__blog__card__name,
  .l__blog__card__text {
    font-family: "Zen Kaku Gothic New", sans-serif;
    text-align: left;
  }

  .l__blog__card__category {
    font-family: "Zen Kaku Gothic New", sans-serif;
    display: inline-block;
    color: #8b8b8b;
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid #8b8b8b;
    background: #fff;
    margin-top: 32px;
  }

  .l__blog__card__name {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.06em;
    margin-top: 15px;
  }

  .l__blog__card__date {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.17em;
  }

  .l__blog__card__item {
    width: 100%;
    height: 151px;
    position: relative;
  }

  .l__blog__card__arrow__wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 6px;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }

  .l__blog__card__arrow {
    width: 31px;
    height: 31px;
    border-radius: 50%;
    border: solid 1px #333;
    margin-top: 0;
    position: relative;
  }

  .l__blog__card__arrow img {
    width: 10px;
    height: 7px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }

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

  .l__blog__card__flex__right {
    position: static;
    padding-bottom: 0;
  }

  .l__blog__card {
    position: relative;
  }
}

/* ==============================
contact
===============================*/
@media screen and (max-width: 367px) {
  .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.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;
    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;
  }
}

/* ----------------------------
contact__368-1023
-----------------------------*/
@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;
    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%;
    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%;
    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 {
    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;
  }

  /* ----- ホバー ----- */
  .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);
}
