/* ベースのフォントサイズ, 変数を定義 (1rem = 10px) */
html {
    font-size: 62.5%;
    font-family: 'Noto Sans JP';

    --black: #111111;
    --Primary-400: #25A29C;
    --Primary-600: #00857C;
    --Primary-800: #03655D;
    --Primary-900: #044940;
    --Secondary-500: #D3901C;
    --Secondary-800: #C26A0D;

    --pc-content-width: 1100px; /* PC版のコンテンツ幅 */
    --sp-content-width: 100%; /* スマホ版のコンテンツ幅 */

    scroll-behavior: smooth; /* スムーススクロール */
}


/* イメージを最大幅に収める */
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* 特定の要素を標準化 */
html, body {
    height: 100%;
    width: 100%;
}

body {
    width: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem; /* 16px */
    line-height: 2.5rem;
    color: var(--black);
    background-color: #E9FFFC;
    letter-spacing: 1px;
}

summary {
    list-style: none;        /* Firefox向け */
    list-style-type: none;   /* Safari/Chrome向け */
    -webkit-appearance: none; /* Safariの特有の三角マークを削除 */
    display: block;
    cursor: pointer;
}
summary::-webkit-details-marker {
    display: none;
}

p {
    text-align: justify;
}

/* ここからページ固有の設定 */
h2{
    font-size: 72px;
    line-height: 72px; 
    font-family: "Hind Vadodara";
    padding-bottom: 20px;
    font-weight: 500;
}
.Rectangle166{
    float: left;
    width: 21.7px;
    height: 20px;
    margin-top:8px;
}
h3{
    margin-top:8px;
    font-size: 20px;
    margin-left: 29.7px;
    font-weight: bold;
}
.only-sp,.only-tab {
    display: none;
}
.df {
    display: flex;
}
main {
    width: 100%;
    margin: 0 auto;
    padding: 0;
}
.btn_wrapper {
    text-align: center;
    padding-top: 80px;
    display: flex;
    justify-content: center;
}
header#header nav.header-navigation .btn_wrapper {
    display: none;
}
.btn_wrapper > a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 687px;
    height: 97px;
    background: var(--Secondary-500);
    border-radius: 100px;
    color: #fff;
    font-size: 28px;
    font-weight: bold;
    text-align: center;
    position: relative;
    transition: background 0.4s, box-shadow 0.4s, color 0.4s;
    z-index: 2;
    padding: 0;
    overflow: hidden;
    gap: 16px; /* テキストとアイコンの間隔 */
}
.btn_wrapper > a::after {
    content: '';
    position: absolute;
    right: 20px;
    display: inline-block;
    width: 32px;   /* bullet.svgのサイズに合わせて調整 */
    height: 32px;
    background: url("../img/bullet.svg") no-repeat center/contain;
    margin-left: 12px;
}
.btn_wrapper > a:hover {
    background: var(--Secondary-800);
}

.btn {
    border-radius: 1000px;
    margin: 0 auto;
    transition: opacity 0.3s;
    position: relative;
    display: inline-block;
}
.btn::after {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url("../img/btn_cta_hover.png") no-repeat center/contain;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}
.btn:hover::after {
    opacity: 1;
        background: url("../img/btn_cta_hover.png") no-repeat center/contain;

}
section, footer{
    width: 100%;
    position: relative;
}
section{
    padding: 90px calc( (100% - var(--pc-content-width)) / 2) ;
    padding-bottom: 20px;
}
footer{
    padding: 60px calc( (100% - var(--pc-content-width)) / 2);
}

section>div,
footer>div{
    width: 100%;
}
.primary-400 {
    color: var(--Primary-400);
}
.space{
    height: 100vh;
  }
  
  /*text animetions*/
  @keyframes showTextFromBottom{
    0%{
      transform: translateY( 100% );
    }
    100%{
      transform: translateY( 0px );
    }
  }
  .anime-up.displayed span{
    animation: showText 1s backwards;
    display: inline-block;
  }
  .anime-up.displayed > span{
    overflow: hidden;
  }
  .anime-up.displayed > span > span{
    animation: showTextFromBottom 0.5s backwards;
  }


/* タブレット用レスポンシブ設定 */
@media screen and (max-width: 1060px) {
    .only-tab{
    display: block;
}
}


/* スマホ用レスポンシブ設定 */
@media screen and (max-width: 767px) {
    body {
            font-size: 1.4rem; /* 14px */

    }
    .only-sp{
        display: block;
    }
    .only-pc {
        display: none !important;
    }

h2 {
    font-size: 40px;
    line-height: 45px;
    padding-bottom: 5px;
}
h3 {
        margin-top:0;
        font-size: 16px;
        margin-left: 29.7px;
        font-weight: bold;
}
    .Rectangle166{
        float: left;
        width: 21.7px;
        height: 20px;
        margin-top:2.5px;
}

    h3{
    }
section {
    padding-left: 25px;
    padding-right: 25px;
}

}