@charset "utf-8";

/* ========================
common
=========================== */
:root {
    --primary-white: #ffffff;
    --primary-deepGray: #2f2f2f;
    --primary-skyBlue: #058ED9;
}

html {
    font-size: 62.5%;
}

body {
    font-family: 'Noto Sans JP', 'Montserrat', sans-serif;
    font-weight: 500;
    color: var(--primary-deepGray);
    background-color: var(--primary-white);
}

img {
    max-width: 100%;
    height: auto;
}

.logo img {
    width: 162px;
    height: auto;
}

.section__area {
    text-align: center;
    padding: 40px 0;
    scroll-margin-top: 62px;
}

.content__title {
    position: relative;
    font-family: Montserrat;
    font-size: 4.8rem;
    font-weight: 500;
    line-height: 1;
    /* タイトル変色設定 */
    background: linear-gradient(to right, var(--primary-skyBlue) 50%, var(--primary-deepGray) 50%);
    background-size: 200% 100%;
    background-position: right;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* タイトル変色設定 */
.content__title.is-visible {
    animation: gradientSwitch 2s ease forwards;
}

/* タイトル変色設定 */
@keyframes gradientSwitch {
    to {
        background-position: left;
    }
}

.content__subTitle {
    font-size: 1.6rem;
    line-height: 1;
    margin-top: 5px;
}

.btn__contact__white {
    display: inline-flex;
    padding: 21px 14px 21px 28px;
    justify-content: left;
    align-items: center;
    background: var(--primary-white);
    color: var(--primary-skyBlue);
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 9999px;
    /* ボタンホバー時の変色設定 */
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* ボタンホバー時の変色設定 */
.btn__contact__white:hover {
    background: transparent;
    border-color: var(--primary-white);
    color: var(--primary-white);
}

/* ボタンホバー時の矢印設定 */
.btn__contact__white:hover img {
    content: url(../images/arrow_right.png);
    animation: arrowMove 0.5s ease forwards;
}

.btn__contact__blue {
    display: inline-flex;
    padding: 21px 14px 21px 28px;
    justify-content: left;
    align-items: center;
    background: var(--primary-skyBlue);
    color: var(--primary-white);
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 9999px;
    /* ボタンホバー時の変色設定 */
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* ボタンホバー時の変色設定 */
.btn__contact__blue:hover {
    background: transparent;
    border-color: var(--primary-skyBlue);
    color: var(--primary-skyBlue);
}

/* ボタンホバー時の矢印設定 */
.btn__contact__blue:hover img {
    content: url(../images/arrow_right_blue.png);
    animation: arrowMove 0.5s ease forwards;
}

.btn__contact__white img,
.btn__contact__blue img {
    width: 14px;
    height: auto;
    margin-left: 28px;
}

.label__white {
    display: block;
    width: fit-content;
    padding: 10px;
    align-items: center;
    background-color: var(--primary-white);
    color: var(--primary-skyBlue);
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 5px;
    margin-top: 10px;
}

.label__blue {
    display: inline-block;
    width: fit-content;
    padding: 10px;
    align-items: center;
    background-color: var(--primary-skyBlue);
    color: var(--primary-white);
    font-size: 1.4rem;
    line-height: 1;
    border-radius: 5px;
}

.btn__area {
    display: flex;
    justify-content: flex-end;
    margin: 10px 20px 0 0;
    gap: 10px;
}

.btn__slider {
    width: 56px;
    height: 56px;
    border-radius: 50px;
    background: var(--primary-skyBlue);
    display: flex;
    justify-content: center;
    align-items: center;
    /* ボタンホバー時の変色設定 */
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

/* ボタンホバー時の変色設定 */
.btn__slider:hover {
    background: transparent;
    border-color: var(--primary-skyBlue);
}

.btn__slider img {
    width: 18px;
    height: auto;
}

/* ボタンホバー時の矢印設定 */
.btn__prev:hover img {
    content: url(../images/arrow_left_blue.png);
    animation: arrowMoveReverse 0.5s ease forwards;
}

/* ボタンホバー時の矢印設定 */
.btn__next:hover img {
    content: url(../images/arrow_right_blue.png);
    animation: arrowMove 0.5s ease forwards;
}

/* ボタンホバー時の矢印設定（戻る） */
@keyframes arrowMoveReverse {
    0% {
        transform: translateX(0);
        /* 元の位置 */
    }

    50% {
        transform: translateX(-8px);
        /* 左に移動して一旦消える */
        opacity: 0;
    }

    51% {
        transform: translateX(8px);
        /* 右から入ってくる */
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        /* 元の位置に戻る */
        opacity: 1;
    }
}

/* ボタンホバー時の矢印設定（次へ） */
@keyframes arrowMove {
    0% {
        transform: translateX(0);
        /* 元の位置 */
    }

    50% {
        transform: translateX(8px);
        /* 右に移動して一旦消える */
        opacity: 0;
    }

    51% {
        transform: translateX(-8px);
        /* 左から入ってくる */
        opacity: 0;
    }

    100% {
        transform: translateX(0);
        /* 元の位置に戻る */
        opacity: 1;
    }
}

.tel__label__nav {
    color: var(--primary-white);
    font-size: 1.6rem;
    line-height: 1;
}

.tel__number__nav {
    color: var(--primary-white);
    font-family: Montserrat;
    font-size: 3.6rem;
    line-height: 1;
}

.tel_reception__nav {
    display: block;
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    line-height: 1;
    margin-top: 5px;
}

/* common pc */
@media screen and (min-width:768px) {
    .section__area {
        padding: 96px 0;
    }

    .section__head {
        text-align: left;
        margin-left: 80px;
    }

    .content__title {
        font-size: 7.2rem;
    }

    .content__subTitle {
        font-size: 2.4rem;
        margin-top: 8px;
    }

    .btn__contact__white {
        padding: 24px 16px 24px 32px;
        font-size: 1.6rem;
    }

    .btn__contact__blue {
        padding: 24px 16px 24px 32px;
        font-size: 1.6rem;
    }

    .btn__contact__white img,
    .btn__contact__blue img {
        width: 16px;
        height: auto;
        margin-left: 32px;
    }

    .label__white,
    .label__blue {
        padding: 16px;
        font-size: 1.6rem;
        border-radius: 10px;
        margin-top: 16px;
    }

    .btn__area {
        margin: 32px 80px 0 0;
        gap: 16px;
    }

    .btn__slider {
        width: 60px;
        height: 60px;
    }

    .btn__slider img {
        width: 20px;
        height: auto;
    }

}

@media screen and (min-width:1422px) {
    .logo img {
        width: 232px;
        height: auto;
    }

    .section__area {
        scroll-margin-top: 132px;
    }
}

/* ========================
header
=========================== */
.header__inner {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    width: 100%;
    z-index: 4;
    /* ヘッダー変色設定 */
    transition: background-color 0.5s ease;
}

/* ヘッダー変色設定 */
.header__inner.scrolled {
    background: var(--primary-skyBlue);
}

.hamburgerBtn {
    position: relative;
    width: 32px;
    height: 20px;
}

.hamburgerBtn span {
    position: absolute;
    width: 32px;
    height: 2px;
    background-color: var(--primary-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburgerBtn span:nth-child(1) {
    top: 0px;
}

.hamburgerBtn span:nth-child(2) {
    top: 10px;
}

.hamburgerBtn span:nth-child(3) {
    top: 20px;
}

.nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: var(--primary-skyBlue);
    padding: 110px 0 0 20px;
    opacity: 0;
    pointer-events: none;
    transition: transform .5s ease, opacity .5s ease;
    z-index: 3;
}

.nav__item {
    margin-top: 32px;
}

.nav__item a {
    position: relative;
    color: var(--primary-white);
    font-size: 1.6rem;
    line-height: 1;
    /* 下線との余白設定 */
    padding-bottom: 4px;
}

/* 下線作成設定 */
.nav__item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: var(--primary-white);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* メニューホバー時の下線設定（左から出現） */
.nav__item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* メニューホバー外した時の時の下線設定（右に消える） */
.nav__item a:not(:hover)::after {
    transform: scaleX(0);
    transform-origin: right;
}

/* --- 電話番号リンク下線無し設定 --- */
.nav__telLink::after {
    display: none;
}

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

/* ハンバーガーボタンの変動設定 */
.is-open .nav {
    opacity: 1;
    pointer-events: auto;
}

.is-open .hamburgerBtn span:nth-child(1) {
    transform: translateY(10px) rotate(-45deg);
}

.is-open .hamburgerBtn span:nth-child(2) {
    opacity: 0;
}

.is-open .hamburgerBtn span:nth-child(3) {
    transform: translateY(-10px) rotate(45deg);
}

.contact__btn__nav {
    margin-top: 32px;
}

/* お問い合わせボタンの矢印色設定 */
.contact__btn__nav .btn__contact__white img {
    content: url(../images/arrow_right_blue.png);
}

/* お問い合わせボタンホバー時の矢印色変更 */
.contact__btn__nav .btn__contact__white:hover img {
    content: url(../images/arrow_right.png);
}

@media screen and (min-width:768px) {
    .tel__label__header {
        font-size: 1.4rem;
    }

    .tel__number__header {
        font-size: 4.2rem;
    }

    .tel_reception__header {
        font-size: 1.4rem;
        margin-top: 5px;
    }
}

/* header pc */
@media screen and (min-width:1422px) {
    .header {
        position: fixed;
        display: flex;
        justify-content: space-between;
        padding: 32px;
        width: 100%;
        align-items: center;
        z-index: 3;
        transition: background-color 0.5s ease;
    }

    /* SP版ヘッダーのリセット */
    .header__inner {
        position: static;
        padding: 0;
        width: auto;
    }

    /* スクロール時のヘッダー変色設定 */
    .header.scrolled {
        background: var(--primary-skyBlue);
    }

    /* スクロール時のお問い合わせボタン変色設定 */
    .header.scrolled .btn__contact__white {
        color: var(--primary-skyBlue);
        background: var(--primary-white);
        border: 2px solid transparent;
        transition: all 0.3s ease;
    }

    /* スクロール時のお問い合わせボタンの矢印変色設定 */
    .header.scrolled .btn__contact__white img {
        content: url(../images/arrow_right_blue.png);
    }

    /* スクロール時の電話番号変色設定 */
    .header.scrolled .tel__label__header,
    .header.scrolled .tel__number__header {
        color: var(--primary-white);
    }

    /* スクロール時のお問い合わせボタンホバー時の変色設定 */
    .header.scrolled .btn__contact__white:hover {
        color: var(--primary-white);
        background: transparent;
        border-color: var(--primary-white);
    }

    /* スクロール時のお問い合わせボタンホバー時の矢印変色設定 */
    .header.scrolled .btn__contact__white:hover img {
        content: url(../images/arrow_right.png);
    }

    /* ハンバーガーボタン非表示 */
    .hamburgerBtn {
        display: none;
    }

    /* メニュー画面リセット */
    .nav {
        position: static;
        width: auto;
        height: auto;
        background: transparent;
        padding: 0;
        opacity: 1;
        pointer-events: auto;
        margin-left: auto;
    }

    .nav__list {
        display: flex;
        align-items: center;
    }

    .nav__item {
        margin-top: 0;
        margin-left: 28px;
    }

    .nav__item a {
        font-size: 1.6rem;
        padding-bottom: 4px;
    }

    .contact__btn__nav {
        margin-left: 28px;
    }

    .tel__label__header {
        color: var(--primary-skyBlue);
        font-family: Montserrat;
        font-size: 1.4rem;
        line-height: 1;
    }

    .tel__number__header {
        color: var(--primary-skyBlue);
        font-family: Montserrat;
        font-size: 2.8rem;
        line-height: 1;
    }

    .tel_reception__header {
        font-size: 1.4rem;
        text-align: center;
        margin-top: 8px;
    }

    .contact__btn__nav {
        margin-top: 0;
    }

    .contact__btn__nav .btn__contact__white {
        background: var(--primary-skyBlue);
        color: var(--primary-white);
        /* お問い合わせボタン変色設定 */
        transition: all 0.3s ease;
    }

    /* お問い合わせボタンの矢印色設定 */
    .contact__btn__nav .btn__contact__white img {
        content: url(../images/arrow_right.png);
    }

    /* お問い合わせボタンホバー時の変色設定 */
    .contact__btn__nav .btn__contact__white:hover {
        background: var(--primary-white);
        color: var(--primary-skyBlue);
    }

    /* お問い合わせボタンホバー時の矢印変色設定 */
    .contact__btn__nav .btn__contact__white:hover img {
        content: url(../images/arrow_right_blue.png);
        animation: arrowMove 0.5s ease forwards;
    }
}

/* ========================
mainVisual
=========================== */
.heroImg__pc {
    display: none;
}

/* 画像配置エリア設定 */
.hero__slideShow {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100vh;
    margin: 0 auto;
}

/* 画像とスライド時間設定 */
.heroImg {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: slideShow 20s infinite;
}

/* 画像のオーバーレイ設定 */
.hero__slideShow::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(47, 47, 47, 0.3);
    z-index: 1;
}

/* 画像のスライド時間配分設定 */
.heroImg__sp:nth-of-type(1) {
    animation-delay: 0s;
}

.heroImg__sp:nth-of-type(2) {
    animation-delay: 5s;
}

.heroImg__sp:nth-of-type(3) {
    animation-delay: 10s;
}

.heroImg__sp:nth-of-type(4) {
    animation-delay: 15s;
}

/* SP用画像のスライド切り替えアニメーション設定 */
@keyframes slideShow {
    0% {
        opacity: 0;
    }

    10% {
        opacity: 1;
    }

    /* 2秒でIN */
    30% {
        opacity: 1;
    }

    /* 1秒キープ */
    40% {
        opacity: 0;
    }

    /* 2秒でOUT */
    100% {
        opacity: 0;
    }
}

.top__catchCopy {
    position: absolute;
    bottom: 48px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-white);
    font-size: 3.6rem;
    line-height: 1.5;
    width: 100%;
    max-width: 288px;
    text-align: center;
    z-index: 2;
}

/* mainVisual pc */
@media screen and (min-width:768px) {
    .heroImg__sp {
        display: none;
    }

    .heroImg__pc {
        display: block;
    }

    /* PC用画像のスライド切り替えアニメーション設定 */
    .heroImg__pc:nth-of-type(5) {
        animation-delay: 0s;
    }

    .heroImg__pc:nth-of-type(6) {
        animation-delay: 5s;
    }

    .heroImg__pc:nth-of-type(7) {
        animation-delay: 10s;
    }

    .heroImg__pc:nth-of-type(8) {
        animation-delay: 15s;
    }

    .top__catchCopy {
        bottom: 80px;
        left: 80px;
        transform: none;
        font-size: 6.6rem;
        max-width: 768px;
        text-align: left;
    }
}

@media screen and (min-width:1422px) {
    .top__catchCopy {
        font-size: 9.6rem;
    }
}

/* ========================
about
=========================== */
.section__head__pc {
    display: none;
}

.about {
    text-align: center;
}

.aboutImg__pc {
    display: none;
}

.aboutImg__sp {
    margin-top: 40px;
}

.about__catchCopy {
    font-size: 2.8rem;
    line-height: 1.5;
    margin-top: 20px;
}

.about__text {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    margin: 0 auto;
    padding: 20px 20px 0 20px;
}

/* about pc */
@media screen and (min-width:768px) {
    .section__head__sp {
        display: none;
    }

    .section__head__pc {
        display: block;
        margin-left: 0;
    }

    .about {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
        gap: 80px;
        padding: 0 80px;
    }

    .about__textArea {
        /* テキストエリア左表示設定 */
        order: 1;
    }

    .aboutImg__sp {
        display: none;
    }

    .aboutImg__pc {
        display: block;
        /* テキストエリア右表示設定 */
        order: 2;
        margin-top: 0;
        border-radius: 10px;
        /* 画像縮小設定 */
        max-width: 50%;
        height: auto;
    }

    .about__catchCopy {
        font-size: 4rem;
        margin-top: 80px;
    }

    .about__text {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: left;
        padding: 0;
        margin-top: 48px;
    }
}

/* ========================
reasons
=========================== */
.reason__item {
    margin-top: 40px;
    text-align: center;
}

.reasons__body {
    position: relative;
    z-index: 1;
}

/* 背景番号配置設定 */
.reasons__body::before {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(5, 142, 217, 0.10);
    font-family: Montserrat;
    font-size: 12rem;
    line-height: 0.7;
    z-index: -1;
}

/* 背景番号配置設定 */
.reason__item:nth-child(1) .reasons__body::before {
    content: "01";
}

.reason__item:nth-child(2) .reasons__body::before {
    content: "02";
}

.reason__item:nth-child(3) .reasons__body::before {
    content: "03";
}

.reasons__photo__sp {
    width: 100%;
}

.reasons__photo__pc {
    display: none;
}

.reasons__title,
.reasons__text {
    z-index: 1;
}

.reasons__title {
    font-size: 2rem;
    line-height: 1;
    margin-top: 20px;
}

.reasons__text {
    display: inline-block;
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    padding: 20px 20px 0 20px;
    margin: 0 auto;
}

/* reason pc */
@media screen and (min-width:768px) {
    .reason__item {
        position: relative;
        display: flex;
        align-items: center;
        margin-top: 80px;
    }

    /* テキストエリアと画像の位置反転設定 */
    .reason__item:nth-child(1),
    .reason__item:nth-child(3) {
        flex-direction: row-reverse;
        justify-content: space-between;
        margin-left: 80px;
    }

    .reason__item:nth-child(2) {
        justify-content: space-between;
        margin-right: 80px;
    }

    .reasons__body {
        position: static;
        text-align: left;
    }

    /* 背景番号配置設定 */
    .reasons__body::before {
        top: 0;
        left: -18px;
        transform: none;
        font-size: 38.4rem;
        line-height: 0.7;
    }

    /* 背景番号配置設定 */
    .reason__item:nth-child(2) .reasons__body::before {
        left: auto;
        right: -18px;
    }

    .reasons__photo__sp {
        display: none;
    }

    .reasons__photo__pc {
        display: block;
        width: 720px;
        height: auto;
        min-width: 50%;
    }

    .reason__item:nth-child(1) .reasons__photo__pc,
    .reason__item:nth-child(3) .reasons__photo__pc {
        border-radius: 10px 0 0 10px;
        margin-left: 80px;
    }

    .reason__item:nth-child(2) .reasons__photo__pc {
        border-radius: 0 10px 10px 0;
        margin-right: 80px;
    }

    .reasons__title {
        font-size: 4.8rem;
    }

    .reasons__text {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: left;
        padding: 0;
        margin-top: 48px;
    }
}

/* ========================
services
=========================== */
.services__list {
    margin-top: 40px;
}

.services__card {
    position: relative;
}

.services__link {
    display: block;
}

.services__imgArea {
    position: relative;
    overflow: hidden;
}

.services__img {
    position: relative;
    width: 100%;
    height: auto;
    /* 画像アニメーション設定 */
    transition: transform 0.5s ease;
}

.services__img__pc {
    display: none;
}

/* 画像オーバーレイ設定 */
.services__overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 47, 47, 0.3);
    pointer-events: none;
}

.services__explain {
    position: absolute;
    top: 10px;
    left: 10px;
}

.services__title {
    color: var(--primary-white);
    font-size: 2rem;
    line-height: 1;
    text-align: left;
}

.services__txt {
    color: var(--primary-white);
    font-size: 1.4rem;
    line-height: 1;
    font-weight: 400;
    margin-top: 5px;
}

.services__btn {
    position: absolute;
    place-items: center;
    right: 10px;
    bottom: 10px;
    width: 56px;
    height: 56px;
    border-radius: 50px;
    background: rgba(5, 142, 217, 0.50);
    display: flex;
    justify-content: center;
    align-items: center;
}

.services__btn img {
    width: 18px;
    height: auto;
    /* ボタン矢印アニメーション設定 */
    transition: transform 0.3s ease;
}

/* 画像ホバー時の矢印アニメーション設定 */
.services__link:hover .services__btn img {
    animation: arrowMove 0.5s ease forwards;
}

/* 画像ホバー時の画像拡大アニメーション設定 */
.services__link:hover .services__img {
    transform: scale(1.05);
}

/* services pc */
@media screen and (min-width:768px) {
    .services__list {
        display: flex;
        margin-top: 80px;
    }

    /* 横4分割設定 */
    .services__card {
        flex: 1 1 calc(25%);
    }

    .services__img__sp {
        display: none;
    }

    .services__img__pc {
        display: block;
    }

    .services__explain {
        position: absolute;
        top: 16px;
        left: 16px;
    }

    .services__title {
        font-size: 2.4rem;
    }

    .services__txt {
        font-size: 1.6rem;
        margin-top: 8px;
    }

    .services__btn {
        right: 16px;
        bottom: 16px;
        width: 60px;
        height: 60px;
    }

    .services__btn img {
        width: 20px;
        height: auto;
    }
}

/* ========================
works
=========================== */
.works__list {
    margin-top: 40px;
}

.works__item {
    background: var(--primary-skyBlue);
    border-radius: 10px;
    padding: 10px;
    margin: 0 20px;
}

.before {
    position: relative;
}

.works__img {
    border-radius: 10px;
}

/* PC画像非表示（強力） */
.works__img__pc {
    display: none !important;
}

.after {
    position: relative;
    margin-top: 20px;
}

.badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: var(--primary-white);
    font-family: Montserrat;
    font-size: 2rem;
    line-height: 1;
}

.works__text {
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
    margin-top: 10px;
}

/* works pc */
@media screen and (min-width:768px) {
    .works__list {
        margin-top: 80px;
    }

    .works__item {
        /* 横並び（強力） */
        display: flex !important;
        padding: 48px;
        margin: 0;
        gap: 48px;
        margin: 0 80px;
    }

    /* SP画像非表示（強力） */
    .works__img__sp {
        display: none !important;
    }

    /* PC画像表示（強力） */
    .works__img__pc {
        display: block !important;
    }

    .after {
        margin-top: 0;
    }

    .badge {
        top: 16px;
        left: 16px;
        font-size: 2.4rem;
    }

    .works__text {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-top: 16px;
    }
}

/* ========================
voices
=========================== */
.voices__list {
    margin-top: 40px;
}

.voices__item {
    text-align: center;
    margin: 0 20px;
}

.voice img {
    width: 100px;
    height: auto;
    margin: 0 auto;
}

.label__blue {
    margin-top: 10px;
}

.voices__text {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 10px;
    text-align: left;
}

/* voices pc */
@media screen and (min-width:768px) {
    .voices__list {
        margin-top: 80px;
    }

    .voices__item {
        margin: 0 80px;
    }

    .label__blue {
        margin-top: 10px;
    }

    .voices__text {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-top: 16px;
    }
}

/* ========================
contact
=========================== */
.contact {
    padding: 40px 20px;
    background: var(--primary-skyBlue);
    text-align: center;
}

.contact__title {
    color: var(--primary-white);
    font-family: Montserrat;
    font-size: 4.8rem;
    line-height: 1;
}

.contact__subTitle {
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    line-height: 1;
    margin-top: 5px;
}

.contact__explain {
    display: inline-block;
    margin-top: 20px;
}

.contact__text {
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    text-align: left;
}

.contact .label__white {
    margin: 10px auto 0;
}

.contact__tel {
    margin-top: 20px;
}

.tel__label__contact {
    color: var(--primary-white);
    font-size: 1.6rem;
    line-height: 1;
}

.tel__number__contact {
    color: var(--primary-white);
    font-family: Montserrat;
    font-size: 3.6rem;
    line-height: 1;
}

.tel_reception_contact {
    display: block;
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 5px;
}

.contact__caution {
    display: inline-block;
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 400;
    margin-top: 10px;
    text-align: left;
}

.contact_btnArea {
    margin-top: 20px;
}

/* contact pc */
@media screen and (min-width:768px) {
    .contact {
        padding: 80px;
    }

    .contact__title {
        font-size: 7.2rem;
    }

    .contact__subTitle {
        font-size: 2.4rem;
        margin-top: 8px;
    }

    .contact__explain {
        margin-top: 48px;
    }

    .contact__text {
        font-size: 1.6rem;
        line-height: 1.8;
        text-align: center;
    }

    .contact .label__white {
        margin: 16px auto 0;
    }

    .contact__tel {
        margin-top: 48px;
    }

    .tel__label__contact {
        font-size: 1.6rem;
    }

    .tel__number__contact {
        font-size: 7.2rem;
    }

    .tel_reception_contact {
        font-size: 1.6rem;
        margin-top: 8px;
    }

    .contact__caution {
        font-size: 1.2rem;
        line-height: 1.5;
        margin-top: 8px;
        text-align: center;
    }

    .contact_btnArea {
        margin-top: 20px;
    }
}

/* ========================
footer
=========================== */
.footer {
    text-align: left;
    padding: 20px;
}

.footer__info {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 1;
    margin-top: 5px;
}

.footer__info:first-of-type {
    margin-top: 10px;
}

.footer__nav {
    margin-top: 48px;
}

.footer__item a {
    position: relative;
    display: inline-block;
    font-family: "Noto Sans JP";
    font-size: 1.6rem;
    line-height: 1;
    /* 下線との余白設定 */
    padding-bottom: 4px;
}

/* 下線作成設定 */
.footer__item a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 1px;
    width: 100%;
    background-color: var(--primary-deepGray);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* メニューホバー時の下線設定（左から出現） */
.footer__item a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* メニューホバー外した時の時の下線設定（右に消える） */
.footer__item a:not(:hover)::after {
    transform: scaleX(0);
    transform-origin: right;
}

.footer__item p {
    margin-top: 32px;
}

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

.footer__child {
    margin-top: 16px;
}

.footer__services {
    margin-top: 14px;
}

.footer__services a {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1;
    padding-bottom: 2px;
}

.contact__btn__footer {
    margin-top: 32px;
}

.copy {
    margin-top: 48px;
}

/* footer pc */
@media screen and (min-width:1422px) {
    .footer {
        text-align: center;
        padding: 48px 80px;
    }

    .footer__area {
        display: flex;
        justify-content: space-between;
        text-align: left;
    }

    .footer__info {
        font-size: 1.6rem;
        margin-top: 8px;
    }

    .footer__info:first-of-type {
        margin-top: 16px;
    }

    .footer__nav {
        margin-top: 0;
    }

    .footer__list {
        display: flex;
        gap: 48px;
    }

    .footer__item p {
        margin-top: 16px;
    }

    .footer__item a {
        font-size: 1.6rem;
        padding-bottom: 4px;
    }

    .footer__child {
        margin-top: 16px;
    }

    .footer__services {
        margin-top: 16px;
    }

    .footer__services a {
        font-size: 1.4rem;
        padding-bottom: 3px;
    }

    .footer__item:nth-child(2) p:first-of-type,
    .footer__item:nth-child(3) p:first-of-type {
        margin-top: 0;
    }

    .contact__btn__footer {
        margin-top: 0;
    }

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

/* ========================
fadeIn
=========================== */
/* 各コンテンツのフェードイン設定 */
.fadeIn {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1s ease, transform 1s ease;
}

.fadeIn.show {
    opacity: 1;
    transform: translateY(0);
}