@charset "utf-8";

/* ==============================
  CSS変数
============================== */
:root{
    --color_main:#ee0c5d;
    --color_main_dark:#41273c ;
    --color_main_pale:#ffe4ee;
    --color_main_pale2:#ffb8d2;
    --color_quantum:#ff6700;
    --color_quantum_pale:#ffeee3;
    --color_quantum_pale2:#ffc198;
    --color_cloudguard:#00b7ff;
    --color_harmony:#c42de8;
    --color_harmony_pale:#faeaff;
    --color_harmony_pale2:#deaeec;
    --color_dark:#4c535b;
    --color_gray:#949494;
    --color_light:#e5e7e9;
    /* --color_light_pale:#e4fafe; */
    /* --color_gray_pale:#fafafa; */
    --color_gray_pale:#f4f4f4;
    --color_gray_table:#d1d1d1;
    /* --color_gradient_top:linear-gradient(120deg,#009DD9 20% , #0CE5EE 80%); */
    --color_gradient:linear-gradient(60deg, #ee0c5d , #ffe4ee 103.47%);
    --color_gradient_quantum:linear-gradient(60deg, #ffe7d7 , #ff6700 103.47%);
    --size_gap: 32px;
    --size_gap_half: 16px;
    --size_gap_double: 64px;
    --size_gap_section: 128px;
    --size_radius: 10px;
    --size_radius_big: 40px;
    --size_radius_half: 5px;
    --size-header-height: 64px;
    --size-lineheight_default: 1.7;
    --size-fixed-header-height: 154px;
}

@media screen and (max-width: 768px) {
    :root {
        --size-fixed-header-height: 129px;
    }
}

/* ==============================
  ベース
============================== */

/* html { font-size: 62.5%; }  */
/* @media (max-width: 768px) {
  html { font-size: 56.25%; }
} */

body{
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    overflow-x: hidden;
    color: var(--color_dark);
    height: 100%;
}

@media print {
    body{
        overflow-y: visible;
        overflow-x: visible;
    }
    .main{
        overflow-y: visible;
        overflow-x: visible;
	}
}

.root{
    background: var(--color_light);
    position: relative;
}

/* コンテナ・共通レイアウト */
.container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 var(--size_gap_half);
  box-sizing: border-box;
}

.section_wrap{
    width: 75vw;
    max-width: 1200px;
    margin: 0 auto;
}

@media screen and (max-width: 768px) {
    .section_wrap{
        width: 80vw;
    }
}

/* 画像レイアウト */
.global_layout__img{
    text-align: center;
    margin: var(--size_gap_half) 0 var(--size_gap_section);
}
.global_layout__img img{
    width: 1000px;
}
@media screen and (min-width: 1024px) {
    .global_layout__img img{
        width: 80vw;
    }
}
@media screen and (max-width: 820px) {
    .global_layout__img img{
        width: 80vw;
    }
}
@media screen and (max-width: 768px) {
    .global_layout__img img{
        width: 80vw;
    }
}

/* ==============================
  タイポグラフィ
============================== */

h2{
    font-weight: 800;
    font-size: 2.2rem;
    letter-spacing: 0.05rem;
    line-height: 1.5;
    max-width: 1200px;
    position: relative;
    text-align: center;
}
h2::before{
    content: "　";
    width: 60px;
    height: 10px;
    border-radius: 10px;
    background-color: var(--color_main);
    position: absolute;
    left: calc(50% - 30px);
    top: -32px;
}

h3{
    font-size: 1.8rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
    padding-left: 20px;
    position: relative;
}
h3::before{
    content: "　";
    width: 10px;
    height: 34px;
    background-color: var(--color_main);
    position: absolute;
    left: 0;
}

h4{
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
}

@media screen and (max-width: 1024px) {
    h2{
        font-size: 1.6rem;
        line-height: 1.5;
    }
}
@media screen and (max-width: 768px) {
    h2{
        font-size: 2rem;
        line-height: 1.5;
    }
}

/* キャプションなど */
.head_mini{
    font-size: 1.1rem;
    color: var(--color_gray);
    width: fit-content;
    /* border-bottom:solid 2px var(--color_gray) ; */
    padding-bottom: 4px;
    margin-bottom: 10px;
    font-family: "Outfit", sans-serif;
    font-weight: 200;
}

/* ==============================
  ユーティリティ
============================== */

.break{
    display: inline-block;
}

.tac{
    text-align: center;
}
.tal{
    text-align: center;
}

.mt_gap{
    margin-top: var(--size_gap)
}
.mb_gap{
    margin-bottom: var(--size_gap)
}
.mt_gap_double{
    margin-top: var(--size_gap_double)
}
.mb_gap_double{
    margin-bottom: var(--size_gap_double)
}

.text_gradient{
    -webkit-text-fill-color: #0000;
    -webkit-font-feature-settings: "palt" on;
    background: var(--color_gradient);
    -webkit-background-clip: text;
    background-clip: text;
}

.anchor_target {
  scroll-margin-top: var(--size-header-height);
}

.br_sp{
    display: none;
}
@media screen and (max-width: 768px) {
    .br_sp{
        display: block;
    }
}

/* スクロール系アニメ共通 */
.fadein-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fadein-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fadein-card {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fadein-card.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==============================
  ヘッダー / ナビゲーション
============================== */

.global_layout__header{
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(5px);
    position: fixed;
    top: 90px;
    left: 0;
    width: 100%;
    z-index: 9999;
    border: solid 1px #efefef;
    display: flex;
    justify-content: center;
    height: var(--size-header-height);
}

.nav{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.nav__left{
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav__left_logo{
    width: 120px;
}
.nav__left_logo_com{
    width: 160px;
}

.nav__right{
    display: flex;
    gap: var(--size_gap_half);
}

@media (max-width: 767px) {
  /* .nav__left__logo {
    display: none;
  } */
}

/* .nav_menu_sp{
    margin-left: 10px;
} */

/* ベース */
.nav__menu {
    display: flex;
    gap: 16px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav__link {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease; /* 共通でフォントカラーのトランジション */
}

/* ハンバーガーの初期状態（PCでは非表示） */
.nav__toggle {
    display: none;
}

.nav__toggle-label {
    display: none; /* PCでは非表示 */
    cursor: pointer;
}

.nav__toggle-label span {
    display: block;
    width: 24px;
    height: 2px;
    margin: 5px 0;
    background: #333;
    transition: 0.3s;
}

/* スマホ用レイアウト */
@media screen and (max-width: 768px) {
    .nav {
        position: relative;
    }

    .nav__toggle-label {
        display: block;
        position: relative;
        z-index: 1001;
    }

    /* ▼ ここを display 切り替え → アニメ可能な形に変更 */
    .nav__right {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        overflow: hidden;
        max-height: 0;          /* 閉じているとき */
        opacity: 0;
        visibility: hidden;
        transition:
            max-height 0.3s ease,
            opacity 0.3s ease,
            visibility 0.3s ease;
        z-index: 1000;
    }

    .nav__menu {
        flex-direction: column;
        padding: 16px;
        gap: 12px;
    }

    .nav__link {
        display: block;
        padding: 8px 0;
    }

    /* チェックオンでメニュー表示（スライド＋フェード） */
    .nav__toggle:checked ~ .nav__right {
        max-height: 400px;  /* メニューの高さより少し大きめならOK */
        opacity: 1;
        visibility: visible;
    }

    /* ハンバーガーのアニメーション */
    .nav__toggle:checked + .nav__toggle-label span:nth-child(1) {
        transform: translateY(7px) rotate(45deg);
    }
    .nav__toggle:checked + .nav__toggle-label span:nth-child(2) {
        opacity: 0;
    }
    .nav__toggle:checked + .nav__toggle-label span:nth-child(3) {
        transform: translateY(-7px) rotate(-45deg);
    }
}

/* PC表示 */
@media screen and (min-width: 769px) {
    .nav__right {
        display: block;
    }

    /* PC時のホバー：フォントカラーを var(--color_main) に */
    .nav__menu .nav__link:hover {
        color: var(--color_main);
    }
}

@media screen and (max-width: 1024px) {

    .nav{
        padding: var(--size_gap_half);
    }
    .nav__left_logo{
        width: 100px;
    }
    .nav__left{
        gap: 10px;
    }
    .nav__right{
        gap: 4px;
    }
    .btn_header{
        padding: 0 6px;
        font-size: 0.8rem;
    }
}
@media screen and (max-width: 820px) {
    .btn_header.dl{
        display: none;
    }
}
@media screen and (max-width: 768px) {
    .global_layout__header {
        top: 65px;
    }
    .btn_header.dl{
        display: none;
    }
    .nav__left__logo img{
        width: 80px;
    }
    .nav__left__logo img.nav__left_logo_com{
        width: 150px;
    }
}

/* ==============================
  ボタン
============================== */

/* layout_btn */
.layout__btn{
    background: #fff;
    background-color: var(--color_main);
    position: relative;
    width: fit-content;
    max-width: 500px;
    max-height: 96px;
    padding: 0 24px;
    border-radius: 6px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--size_gap_half);
    color: #fff;
    cursor: pointer;
    font-weight: 900;
    white-space: nowrap;
    transition: all 0.3s;
    border: solid 2px var(--color_main);
}
.layout__btn:hover {
    transition: all 0.3s;
    cursor: pointer;
    background-color: #fff;
    color: var(--color_main);
    font-weight: 600;
}

.btn_header{
    height: 42px;
    font-size: 1rem;
    font-weight: 400;
    letter-spacing: 0.08rem;
}
.btn_main_visual{
    height: 64px;
    font-size: 1.4rem;
    font-weight: 400;
    letter-spacing: 0.08rem;
}

/* ==============================
  パンくずリスト
============================== */

/* ---------- パンくず nav 全体 ---------- */
nav[aria-label="パンくずリスト"] {
  background-color: #f9f9f9;         /* # が抜けていたので修正 */
}

/* コンテナ指定がある前提なら、ここでは余白だけ */
nav[aria-label="パンくずリスト"] .container {
  padding: 4px 0;
}

/* ---------- breadcrumb 本体 ---------- */
.breadcrumb {
  list-style: none;
  /* margin: 0; */
  display: flex;
  align-items: center;
  font-size: .8rem;
}

/* 各アイテム */
.breadcrumb-item {
  display: inline-flex;
  align-items: center;
  color: var(--color_dark);
}

/* 区切り（>） */
.breadcrumb-item + .breadcrumb-item::before {
  content: "";
  display: inline-block;
  width: 0.45em;
  height: 0.45em;
  margin: 0 6px;
  border-right: 2px solid var(--color_dark);
  border-bottom: 2px solid var(--color_dark);
  transform: rotate(-45deg);
  vertical-align: middle;
}

/* リンク */
.breadcrumb a {
  color: var(--color_main);
  text-decoration: none;
  transition: color .2s ease;
}

.breadcrumb a:hover {
  color: var(--color_main);  /* 必要なら濃いめの色に変更 */
}

/* 現在ページ */
.breadcrumb-item.active {
  color: var(--color_dark);
  font-weight: 600;
}

/* ---------- SP調整 ---------- */
@media screen and (max-width: 768px) {
  nav[aria-label="パンくずリスト"] .container {
    padding-left: var(--size_gap_half);
    padding-right: var(--size_gap_half);
  }
}

/* ==============================
  各ページ：ヒーロー
============================== */

.hero{
    background: var(--color_main_pale);
    padding: var(--size_gap_double) 0 100px 0;
    position: relative;
padding: var(--size_gap_section) 0 var(--size_gap_section) 0;
    &::before {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
    clip-path: polygon(0% 0%, 0% 100%, 50% 100%);
    }

    &::after {
    content: "";
    width: 100%;
    height: 60px;
    background-color: #fff;
    position: absolute;
    bottom: 0px;
    clip-path: polygon(50% 100%, 100% 0%, 100% 100%);
    }
}
.hero.quantum{
    /* background: var(--color_gradient_quantum); */
    background: var(--color_quantum_pale);
}
.hero.harmony{
    /* background: var(--color_gradient_quantum); */
    background: var(--color_harmony_pale);
}
.hero__list{
    display: flex;
    align-items: center;
    gap: var(--size_gap);
}
.hero__list img{
    width: 300px;
}
.hero__list p{
    /* color: #000; */
    /* font-size: .9rem; */
    line-height: var(--size-lineheight);
}

.hero__list_item:nth-child(1){
    width: 400px;
    text-align: center;
}
.hero__list_item:nth-child(2){
    width: calc(100% - 400px);
}

@media screen and (max-width: 768px) {
    .hero{
        /* padding: var(--size_gap_double) var(--size_gap); */
    }
    .hero__list{
        flex-direction: column;
        gap: var(--size_gap);
    }
    .hero__list_item{
        width: 100%;
    }
    .hero__list_item:nth-child(1),
    .hero__list_item:nth-child(2){
        width: 100%;
}
}

/* ==============================
  ラインナップ
============================== */

.lineup__list_wrap {
    /* display: flex;
    align-items: center;
    margin-top: var(--size_gap);
    padding: var(--size_gap);
    border-radius: var(--size_radius_big);
    background-color: #fff;
    flex-direction: column; */
    border-bottom: solid 1px var(--color_gray);
}
/* .lineup__list_wrap:last-child{
    border-bottom: none;
}   */
.lineup__list{
    display: flex;
    /* align-items: center; */
    align-items: flex-start;
    margin-top: var(--size_gap);
    margin-bottom: var(--size_gap);
    padding: var(--size_gap);
    gap: var(--size_gap);
}
.lineup__list.reverse{
    flex-direction: row-reverse;
}
.lineup__list_left{
    width: 50%;
    font-size: 1.3rem;
    color: var(--color_main);
    padding-right: var(--size_gap_half);
    text-align: center;
}
.lineup__list_right{
    width: 50%;
}
.lineup__list_head {
    margin: 0 auto;
    margin-bottom: var(--size_gap);
    font-size: 1.4rem;
    font-weight: 500;
    letter-spacing: 0.05rem;
}
.lineup__list_text{
    line-height: 2;
}
.lineup__list img.head{
    width: auto;
    height: 80px;
    margin-bottom: var(--size_gap_half);
}
.lineup__list img{
    width: 100%;
}

@media screen and (max-width: 768px) {
    .lineup__list{
        flex-direction: column!important;
        gap: var(--size_gap);
    }
    .lineup__list_left,
    .lineup__list_right{
        width: 100%;
    }
}

/* ==============================
  お問い合わせセクション
============================== */

/* contact */
.contact{
    padding: var(--size_gap_section) 0;
    width: 100%;
    background: var(--color_gradient);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--size_gap);
}
.contact_list{
    padding: var(--size_gap_section);
    background-color: #fff;
    border-radius: 50px;
    width: 80vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
}
.contact_item{

}
.contact__cap_small{
    font-size: 1.2rem;
    color: var(--color_main);
    letter-spacing: 0.09em;
    width: fit-content;
    padding-bottom: 4px;
    margin: 0 auto;
    margin-bottom: 10px;
    font-family: "Outfit", sans-serif;
    font-weight: 300;
}
.contact__cap{
    font-size: 2.4rem;
    color: var(--color_main);
    letter-spacing: 0.09em;
    width: fit-content;
    padding-bottom: 5px;
    margin-bottom: 10px;
    text-align: center;
}
.contact__text{
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.08em;
    padding: var(--size_gap) 0 var(--size_gap);
    font-size: 1.5rem;
}
.contact__text > span{
    font-size: 1.2rem;
}
.contact__div{
    text-align: center;
    line-height: 1.5;
    letter-spacing: 0.08em;
    padding-bottom: var(--size_gap);
    font-size: .9rem;
}
.contact__tel{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 500;
    padding-bottom: var(--size_gap);
}
.contact__tel > img{
    width: 28px;
    height: auto;
    margin-right: 10px;
}
.contact_item_inquiry{
    display: flex;
    gap: var(--size_gap);
}

.contact .btn_main_visual{
    width: 240px;
    gap: 0;
}
.contact .btn_main_visual span{
    font-size: 1.1rem;
}

@media screen and (max-width: 1024px) {
    .contact_list{
        flex-direction: column;
        padding: 80px var(--size_gap);
    }
    .contact__cap{
        font-size: 2rem;
    }
    .contact__text{
        font-size: 1rem;
    }
    .contact__tel{
        font-size: 1.8rem;
    }
    .contact_img img{
        max-width: 90vw;
    }
    .contact_title_catch{
        font-size: 1.6rem;
        text-align: center;
    }
    .contact_title img{
        max-width: 90vw;
    }
    .contact_title_btn{
        flex-direction: column;
        align-items: center;
    }
    .contact_item_inquiry{
        flex-direction: column;
        align-items: center;
    }
    .contact .btn_main_visual{
        width: 250px;
    }
}

/* ==============================
  フッター
============================== */

.global_layout__footer{
    position: relative;
}
.footer__logo{
    padding: var(--size_gap_half);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__logo a{
    display: block;
    width: fit-content;
}
.footer__logo img.logo_a{
    width: 120px;
}
.footer__logo img.logo_b{
    width: 400px;
}
.footer__link{
    background-color: #333;
    padding: var(--size_gap_double) var(--size_gap);
    color: #fff;
}
.footer__link_wrap{
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.footer__link_list{
    display: flex;
    gap: var(--size_gap_half);
    font-size: 0.7rem;
}
.footer__link_copy{
    font-size: 0.7rem;
}
.footer_group{
    padding: var(--size_gap_section);
    background-color: #000;
    color: #fff;
}
.footer_group img{
    width: 300px;
    position: relative;
    left: -20px;
}
.footer_group_title{
    font-size: 1.4rem;
    font-weight: 800;
    margin: var(--size_gap_half) 0 var(--size_gap);
    letter-spacing: 0.05rem;
}
.footer_group_adress{
    font-size: .9rem;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: var(--size_gap_half);
    letter-spacing: 0.05rem;
}
.footer_group__url{
    font-size: .8rem;
    transition: all .2s;
}
.footer_group__url:hover{
    opacity: .6;
    transition: all .2s;
}
@media screen and (max-width: 1024px) {
    .footer__link_wrap{
        flex-direction: column;
        align-items: center;
    }
    .footer__link_list{
        align-items: center;
        gap: 10px;
        margin-bottom: var(--size_gap_half);
        flex-direction: column;
    }
    .footer__link_copy{
        text-align: center;
    }

    .footer_group{
        padding: var(--size_gap_section) var(--size_gap);
        background-color: #000;
        color: #fff;
        text-align: center;
    }
    .footer_group img{
        left: 0px;
    }
}

/* ==============================
  リスト
============================== */

.listA{}

.listA > li{
    position: relative;
    font-size: 1rem;
    padding: 10px;
    padding-left: 20px;
}
.listA > li::before{
    content: "";
    width: 10px;
    height: 10px;
    background: var(--color_main);
    border-radius: 1rem;
    position: absolute;
    top: 15px;
    left: 0px;
}

.listB{}

.listB > li{
    position: relative;
    font-size: 1.2rem;
    padding: 1rem;
    background-color: #fff;
    margin-bottom: 10px;
}
.listB > li::after{
    content: "";
    width: 100%;
    height: 4px;
    background: var(--color_gradient);
    /* border-radius: 1rem; */
    position: absolute;
    top: 54px;
    left: 0px;
}

@media screen and (max-width: 1024px) {
    .listB > li{
        white-space: nowrap;
        font-size: 1rem;
    }
}

/* ==============================
  テーブル
============================== */

.tableA{
    border-top:solid 2px var(--color_gray);
    border-bottom:solid 2px var(--color_gray);
    width: 100%;
    max-width: 1200px;
}
.tableA > tbody > tr:nth-child(2n){
}
.tableA > tbody > tr{
    /* border-bottom: solid 2px var(--color_dark); */
}
.tableA > tbody > tr > th{
    border-top: solid 1px var(--color_gray_table);
    background-color: var(--color_main_pale);
    /* font-size: 1.1rem; */
    font-size: .9rem;
    font-weight: 700;
    /* text-align:center; */
    padding: 8px 10px;
}
.tableA > tbody > tr > th.thA{
    background-color: var(--color_main_pale2);
}
.tableA > tbody > tr > th.thB{
    background-color: var(--color_dark);
    color: #fff;
    font-size: 1.1rem;
}
.tableA > tbody > tr:nth-child(2n){
    background-color: #fff;
}
.tableA > tbody > tr:nth-child(2n+1){
    background-color: #f5f5f5;
}
.tableA > tbody > tr > td{
    border-top: solid 1px var(--color_gray_table);
    /* background-color: var(--color_gray_pale); */
    font-size: .9rem;
    text-align:center;
    padding: 8px;
    vertical-align: middle;
}
.tableA > tbody > tr > td.strng{
    font-weight: 700;
    font-size: 1.1rem;
}
.table_caption_low{
    margin-top: .6rem;
    text-align: left;
    width: 80vw;
    max-width: 1200px;
}
/* ここがアニメーション部分 */
.tableA > tbody > tr {
  transition: background-color 0.15s ease;
}
.tableA > tbody > tr:nth-child(n+2):hover,
.tableA > tbody > tr:nth-child(n+2):hover > th {
  background-color: var(--color_main_pale)!important;
}

@media screen and (max-width: 1024px) {
    .table_wrap{
        width: 100%;
        overflow-x: auto;
    }
    .table_wrap .tableA{
        table-layout: auto;
    }
}

/* ==============================
  アイコン類
============================== */

/* アイコン：矢印 (右向き) */
.dli-arrow-right {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    position: relative;
    width: 1em;
    height: 0.1em;
    background: currentColor;
}
.dli-arrow-right::before {
    content: '';
    width: 0.65em;
    height: 0.65em;
    border: 0.13em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    transform: rotate(45deg);
    transform-origin: top right;
    position: absolute;
    top: 50%;
    right: -0.05em;
    box-sizing: border-box;
}

/* アイコン：プラス */
.dli-plus {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 1em;
    height: 0.1em;
    background: currentColor;
    border-radius: 0.1em;
    position: relative;
}
.dli-plus::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    transform: rotate(90deg);
}

/* アイコン：外部ウィンドウ */
.dli-external-link {
    display: inline-block;
    vertical-align: middle;
    color: var(--color_dark);
    line-height: 1;
    width: 0.9em;
    height: 0.9em;
    border: 0.1em solid currentColor;
    border-radius: 0.1em;
    background: #fff;
    box-sizing: content-box;
    position: relative;
}
.dli-external-link > span {
    position: absolute;
    top: -0.2em;
    right: -0.2em;
    width: 45%;
    height: 45%;
    border: 0.1em solid currentColor;
    border-bottom: 0;
    border-left: 0;
    background: #fff;
    box-shadow: -0.1em 0.1em 0 0.1em #fff;
    box-sizing: border-box;
}
.dli-external-link > span::before {
    content: '';
    position: absolute;
    top: -0.05em;
    right: -0.1em;
    width: 0.1em;
    height: 0.9em;
    background: currentColor;
    transform: rotate(45deg);
    transform-origin: top center;
}

/* アイコン：外部ウィンドウ：背景メインカラー */
.dli-external-link_m {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 0.9em;
    height: 0.9em;
    border: 0.1em solid currentColor;
    border-radius: 0.1em;
    background:  var(--color_main);
    box-sizing: content-box;
    position: relative;
}
.dli-external-link_m > span {
    position: absolute;
    top: -0.2em;
    right: -0.2em;
    width: 45%;
    height: 45%;
    border: 0.1em solid currentColor;
    border-bottom: 0;
    border-left: 0;
    background: var(--color_main);
    box-shadow: -0.1em 0.1em 0 0.1em  var(--color_main);
    box-sizing: border-box;
}
.dli-external-link_m > span::before {
    content: '';
    position: absolute;
    top: -0.05em;
    right: -0.1em;
    width: 0.1em;
    height: 0.9em;
    background: #fff;
    transform: rotate(45deg);
    transform-origin: top center;
}

/* アイコン：くの字の矢印 (右向き) */
.dli-chevron-right {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    width: 1em;
    height: 1em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
}

/* アイコン：丸囲み三角の矢印 (塗りつぶし・右向き) */
.dli-caret-circle-fill-right {
    display: inline-block;
    vertical-align: middle;
    color:  var(--color_main);
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    border: 0.075em solid currentColor;
    background: currentColor;
    border-radius: 50%;
    box-sizing: content-box;
}
.dli-caret-circle-fill-right::before {
    content: '';
    color: #fff;
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.18em 0.31177em;
    border-left-color: currentColor;
    border-right: 0;
    transform: translateX(15%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

.dli-caret-circle-fill-right2 {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    position: relative;
    width: 0.8em;
    height: 0.8em;
    border: 0.075em solid currentColor;
    background: currentColor;
    border-radius: 50%;
    box-sizing: content-box;
}
.dli-caret-circle-fill-right2::before {
    content: '';
    color: var(--color_main);
    width: 0;
    height: 0;
    border-style: solid;
    border-color: transparent;
    border-width: 0.18em 0.31177em;
    border-left-color: currentColor;
    border-right: 0;
    transform: translateX(15%);
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
}

/* ==============================
  アコーディオン（details/summary）
============================== */

details{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 0px 5px 0px, rgba(0, 0, 0, 0.1) 0px 0px 1px 0px;
}

/* アコーディオン */
summary {
    /* display: list-item;以外を指定してデフォルトの三角形アイコンを消します */
    display: block;
    margin-top: var(--size_gap_half);
    /* Safariで表示されるデフォルトの三角形アイコンを非表示にします */
    &::-webkit-details-marker {
    display: none;
    }
}
.summary_inner {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: var(--size_gap);
    background-color: #fff;
    font-weight: bold;
    color: var(--color_dark);
    font-size: 1.2rem;
    transition: all .2s;
}
.summary_inner:hover{
    background-color: #16a8d9;
    color: #fff;
    transition: all .2s;
}
.summary_inner:hover .icon{
    &::before,
    &::after {
    background-color: #fff;
    }
}

.icon {
    display: block;
    position: relative;
    width: 24px;
    margin-left: 6px;
    flex-shrink: 0;
    transform-origin: center 43%;
    transition: transform 0.4s;

    /* アイコンのバーのスタイル */
    &::before,
    &::after {
    content: "";
    position: absolute;
    display: block;
    width: 15px;
    height: 3px;
    background-color: var(--color_gray);
    }
    &::before {
    left: 0;
    transform: rotate(45deg);
    }
    &::after {
    right: 0;
    transform: rotate(-45deg);
    }
}

/*details[open] .icon {*/
/*  transform: rotate(180deg);*/
/*}*/

/* is-openedクラスが付与されたときのスタイル */
details.is-opened .icon {
  transform: rotate(180deg);
}

/* --------アコーディオンの中身のスタイル-------- */
.content {
  overflow: hidden;
  background-color: #f4f4f4;

  /* details直下のタグにpaddingを設定すると挙動がおかしくなるので、ここには指定しない */
}
.content_inner {
    padding: var(--size_gap);
    display: flex;
    /* flex-direction: column; */
    line-height: 1.5;
    gap: 16px;
    align-items: center;
}

/* ==============================
  エフェクト系（カード・アニメーション）
============================== */

.hover-lift {
  background: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.zoom-in-onload {
  opacity: 0;
  transform: scale(0.96);
  animation: zoomIn 0.7s ease-out forwards;
  animation-delay: 0.1s;
}
@keyframes zoomIn {
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* ==============================
  ページトップボタン（コメントアウト中）
============================== */

/* ページトップボタン */
/* #scrollToTopBtn {
    position: fixed;
    bottom: 0px;
    right: 20px;
    padding: 10px 16px;
    font-size: 12px;
    background: #fff;
    color: var(--color_main);
    border: none;
    border-radius: 5px 5px 0 0;
    cursor: pointer;
    opacity: 0;
    z-index: 1000;
    transition: all .2s;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}
#scrollToTopBtn:hover {
    transition: all .2s;
    box-shadow: rgba(9, 30, 66, 0.25) 0px 2px 4px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

@media screen and (max-width: 768px)  {
    #scrollToTopBtn{
        display: none;
    }
} */
