/* Jost（セルフホスト：iOSでGoogle Fontsが読み込まれない対策） */
@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 500;
    font-display: swap;
    src: url('../fonts/jost-500.woff2') format('woff2');
}

@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 600;
    font-display: swap;
    src: url('../fonts/jost-600.woff2') format('woff2');
}

@font-face {
    font-family: 'Jost';
    font-style: normal;
    font-weight: 700;
    font-display: swap;
    src: url('../fonts/jost-700.woff2') format('woff2');
}

.container {
    --color-blue: #4A69AF;
    --color-green: #C9D100;
    --font-jost: 'Jost', sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
    color: #292C34;
    font-weight: 500;
    letter-spacing: 0.05em;
    position: relative;
    overflow: hidden;
    background: #fff;
    z-index: 0;
    width: 100%;
    position: relative;
}

/* 共通パーツ */

.font--jost {
    font-family: var(--font-jost);
}

.sp-only {
    display: none;
}

@media screen and (max-width: 743px) {
    .sp-only {
        display: block;
    }
}

.pt--100 {
    padding-top: 100px;
}

@media screen and (max-width: 743px) {
    .pt--100 {
        padding-top: min(calc((60 / 375) * 100vw), 100px);
    }
}

.pb--100 {
    padding-bottom: 100px;
}

@media screen and (max-width: 743px) {
    .pb--100 {
        padding-bottom: min(calc((60 / 375) * 100vw), 100px);
    }
}

.pt--80 {
    padding-top: 80px;
}

@media screen and (max-width: 743px) {
    .pt--80 {
        padding-top: min(calc((60 / 375) * 100vw), 80px);
    }
}

.pb--80 {
    padding-bottom: 80px;
}

@media screen and (max-width: 743px) {
    .pb--80 {
        padding-bottom: min(calc((60 / 375) * 100vw), 80px);
    }
}

.pt--60 {
    padding-top: 60px;
}

@media screen and (max-width: 743px) {
    .pt--60 {
        padding-top: min(calc((48 / 375) * 100vw), 60px);
    }
}

.pb--60 {
    padding-bottom: 60px;
}

@media screen and (max-width: 743px) {
    .pb--60 {
        padding-bottom: min(calc((48 / 375) * 100vw), 60px);
    }
}

.pt--40 {
    padding-top: 40px;
}

@media screen and (max-width: 743px) {
    .pt--40 {
        padding-top: min(calc((32 / 375) * 100vw), 40px);
    }
}

.pb--40 {
    padding-bottom: 40px;
}

@media screen and (max-width: 743px) {
    .pb--40 {
        padding-bottom: min(calc((32 / 375) * 100vw), 40px);
    }
}

.mt--100 {
    margin-top: 100px;
}

@media screen and (max-width: 743px) {
    .mt--100 {
        margin-top: min(calc((60 / 375) * 100vw), 100px);
    }
}

.mb--100 {
    margin-bottom: 100px;
}

@media screen and (max-width: 743px) {
    .mb--100 {
        margin-bottom: min(calc((60 / 375) * 100vw), 100px);
    }
}

.mt--80 {
    margin-top: 80px;
}

@media screen and (max-width: 743px) {
    .mt--80 {
        margin-top: min(calc((60 / 375) * 100vw), 80px);
    }
}

.mb--80 {
    margin-bottom: 80px;
}

@media screen and (max-width: 743px) {
    .mb--80 {
        margin-bottom: min(calc((60 / 375) * 100vw), 80px);
    }
}

.mt--60 {
    margin-top: 60px;
}

@media screen and (max-width: 743px) {
    .mt--60 {
        margin-top: min(calc((48 / 375) * 100vw), 60px);
    }
}

.mb--60 {
    margin-bottom: 60px;
}

@media screen and (max-width: 743px) {
    .mb--60 {
        margin-bottom: min(calc((48 / 375) * 100vw), 60px);
    }
}

.mt--40 {
    margin-top: 40px;
}

@media screen and (max-width: 743px) {
    .mt--40 {
        margin-top: min(calc((32 / 375) * 100vw), 40px);
    }
}

.mb--40 {
    margin-bottom: 40px;
}

@media screen and (max-width: 743px) {
    .mb--40 {
        margin-bottom: min(calc((32 / 375) * 100vw), 40px);
    }
}

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

.blob,
.circle {
    display: block;
    width: 100%;
    height: auto;
}

/* blobグラデ4パターン（親要素に付与してCSS変数を継承） */

.--grad01 {
    --blob-c1: #4A69AF;
    --blob-c2: #84c2df00;
    --blob-o2: 0;
}

.--grad02 {
    --blob-c1: #ffffff00;
    --blob-c2: #4a69af;
    --blob-o2: 1;
}

.--grad03 {
    --blob-c1: #C9D100;
    --blob-c2: #cad10000;
    --blob-o2: 0;
}

.--grad04 {
    --blob-c1: #cad10000;
    --blob-c2: #C9D100;
    --blob-o2: 1;
}

/* circle 色2パターン（親要素に付与してCSS変数を継承）。
       SVGの属性 fill="#…" を CSS で上書きする（var()は属性では不安定なため）。 */

.circle path {
    fill: var(--circle-color, var(--color-blue));
}

.--circleBlue {
    --circle-color: var(--color-blue);
}

.--circleGreen {
    --circle-color: var(--color-green);
}

.img {
    border-radius: 10px;
    overflow: hidden;
}

.box {
    border-radius: 50px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    padding-left: 10%;
    padding-right: 10%;
    background: #fff;
}

@media screen and (max-width: 743px) {
    .box {
        border-radius: 30px;
        padding-left: 6%;
        padding-right: 6%;
    }
}

/* padding-left: 20px; */

/* padding-right: 20px; */

.bg-noise {
    position: relative;
}

.bg-noise>* {
    position: relative;
    z-index: 2;
}

.bg-noise::after {
    content: '';
    position: absolute;
    z-index: 0;
    inset: 0;
    border-radius: inherit;
    background-image: url("../images/bg_noise.svg");
    background-repeat: repeat;
    background-size: 500px;
    mix-blend-mode: multiply;
    opacity: 0.25;
    pointer-events: none;
}

.btn {
    position: relative;
    cursor: pointer;
    z-index: 1;
}

.btn::after {
    content: '';
    display: block;
    width: 100%;
    height: 100%;
    background: var(--color-blue);
    border-radius: 6px;
    position: absolute;
    top: 6px;
    left: 6px;
    z-index: -1;
}

.btn.--green::after {
    background: var(--color-green);
}

.btn.--blue::after {
    background: var(--color-blue);
}

.btn:hover a {
    transform: translate(6px, 6px);
}

.btn a {
    border-radius: 6px;
    border: 1px solid currentColor;
    text-decoration: none;
    display: block;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #fff;
    min-height: 70px;
    transition: .1s;
}

@media screen and (max-width: 767px) {
    .btn a {
        min-height: 54px;
    }
}

.btn a .label {
    display: block;
    padding: 8px 16px;
    text-align: center;
    width: 100%;
    font-size: 16px;
    font-weight: 700;
}

@media screen and (max-width: 767px) {
    .btn a .label {
        font-size: 14px;
        padding: 5px 0;
    }
}

.btn a .icon {
    display: block;
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-left: 20px;
    margin-right: 20px;
    background: url('../images/icon_link.svg') no-repeat center center / contain;
    position: relative;
}

@media screen and (max-width: 767px) {
    .btn a .icon {
        width: 16px;
        height: 16px;
        margin-left: 12px;
        margin-right: 12px;
    }
}

.btn a .icon::before {
    content: '';
    display: block;
    width: 1px;
    height: 20px;
    background: currentColor;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (max-width: 767px) {
    .btn a .icon::before {
        width: 1px;
        height: 12px;
        left: -12px;
    }
}

.btn a .icon.--arrow {
    background: url('../images/icon_arrow.svg') no-repeat center center / contain;
    width: 14px;
}

@media screen and (max-width: 767px) {
    .btn a .icon.--arrow {
        width: 12px;
        height: 12px;
    }
}

.secHead {
    position: relative;
    padding-bottom: 28px;
}

.secHead::after {
    content: '';
    position: absolute;
    width: 60px;
    height: 4px;
    background: var(--color-blue);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    border-right: 30px solid var(--color-green);
    box-sizing: border-box;
}

.secTitle {
    text-align: center;
    font-weight: 700;
}

.secTitle.--en {
    font-family: 'Jost', sans-serif;
    font-size: 30px;
    letter-spacing: 0.05em;
}

@media screen and (max-width: 743px) {
    .secTitle.--en {
        font-size: 24px;
    }
}

.secTitle.--ja {
    font-size: 40px;
}

@media screen and (max-width: 743px) {
    .secTitle.--ja {
        font-size: 32px;
    }
}

.heading--m {
    font-weight: 700;
    line-height: 1.6;
    font-size: 34px;
}

@media screen and (max-width: 743px) {
    .heading--m {
        font-size: 27px;
    }
}

.heading--s {
    font-weight: 700;
    line-height: 1.6;
    font-size: 28px;
}

@media screen and (max-width: 743px) {
    .heading--s {
        font-size: 22px;
    }
}

.text--m {
    font-weight: 700;
    font-size: 20px;
    line-height: 1.8;
}

@media screen and (max-width: 743px) {
    .text--m {
        font-size: 16px;
    }
}

.text--m+.text--m {
    margin-top: 1.2em;
}

.text--s {
    font-size: 18px;
    line-height: 1.8;
}

@media screen and (max-width: 743px) {
    .text--s {
        font-size: 16px;
    }
}

.bubble {
    color: #fff;
    background: var(--color-green);
    border-radius: 100px;
    padding-top: 6px;
    padding-bottom: 6px;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    position: relative;
}

@media screen and (max-width: 743px) {
    .bubble {
        font-size: 17px;
        padding-top: 4px;
        padding-bottom: 4px;
    }
}

.bubble::after {
    content: '';
    display: block;
    width: 20px;
    height: 15px;
    background: var(--color-green);
    position: absolute;
    top: calc(100% - 1px);
    left: 50%;
    transform: translateX(-50%);
    clip-path: polygon(0 0, 100% 0, 50% 100%);
}

@media screen and (max-width: 743px) {
    .bubble::after {
        width: 16px;
        height: 12px;
    }
}

.bubble.--blue {
    background: var(--color-blue);
}

.bubble.--blue::after {
    background: var(--color-blue);
}

.toggleBtn {
    width: 100%;
    border: 1px solid currentColor;
    border-radius: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 70px;
    cursor: pointer;
}

.toggleBtn .toggleBtn__label {
    display: block;
    width: 100%;
    font-size: 22px;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 1.6;
}

@media screen and (max-width: 743px) {
    .toggleBtn .toggleBtn__label {
        font-size: 18px;
    }
}

.toggleBtn .toggleBtn__icon {
    width: 60px;
    flex-shrink: 0;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 743px) {
    .toggleBtn .toggleBtn__icon {
        width: 40px;
    }
}

.toggleBtn .toggleBtn__icon::before {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: currentColor;
}

.toggleBtn .toggleBtn__icon .toggleBtn__line {
    position: absolute;
    display: block;
    width: 20px;
    height: 2px;
    background: currentColor;
    transition: transform .3s, opacity .3s;
}

.toggleBtn .toggleBtn__icon .toggleBtn__line.--1 {
    transform: rotate(90deg);
}

.toggleBtn.--isActive {
    color: var(--color-blue);
}

/* 開いている時はアイコンを「−」にする */

.toggleBtn.--isActive .toggleBtn__line.--1 {
    transform: rotate(0deg);
    opacity: 0;
}

.toggleContent {
    display: none;
}
