@charset "utf-8";

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

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

.content__title {
    position: relative;
    font-family: Montserrat;
    font-size: 4.8rem;
    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;
}

/* ボタンホバー時の矢印設定（次へ） */
@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__title br {
        display: none;
    }

    .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 {
        padding: 16px;
        font-size: 1.6rem;
        border-radius: 10px;
        margin-top: 16px;
    }
}

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

/* ========================
header
=========================== */
.header__inner {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    padding: 10px 20px;
    width: 100%;
    z-index: 2;
    background: var(--primary-skyBlue);
}

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

.hamburgerBtn {
    position: relative;
    width: 32px;
    height: 20px;
    z-index: 2;
}

.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: 1;
}

.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: 2;
        background: var(--primary-skyBlue);
    }

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

    .logo {
        width: 232px;
        height: auto;
    }

    /* ハンバーガーボタン非表示 */
    .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-white);
        font-family: Montserrat;
        font-size: 1.4rem;
        line-height: 1;
    }

    .tel__number__header {
        color: var(--primary-white);
        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-white);
        color: var(--primary-skyBlue);
        border: 2px solid transparent;
        /* お問い合わせボタン変色設定 */
        transition: all 0.3s ease;
    }

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

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

/* ========================
main
=========================== */
main {
    padding-top: 62px;
}

/* main pc */
@media screen and (min-width:1422px) {
    main {
        padding-top: 124px;
    }
}

/* ========================
mainVisual
=========================== */
.hero__services {
    position: relative;
}

.heroImg__sp {
    position: relative;
}

.heroImg__pc {
    display: none;
}

/* 画像オーバーレイ */
.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(47, 47, 47, 0.3);
}

.services__explainArea {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 20px;
    width: 100%;
}

.hero__services__title {
    display: block;
    color: var(--primary-white);
    font-family: "Noto Sans JP";
    font-size: 2.8rem;
    line-height: 1;
}

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

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

    .heroImg__pc {
        display: block;
        width: 100%;
    }

    .services__explainArea {
        text-align: center;
        padding: 0;
        width: 100%;
    }

    .hero__services__title {
        font-size: 6.4rem;
        line-height: 1;
    }

    .services__detail {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-top: 48px;
        text-align: center;
    }
}

/* ========================
checkPoints
=========================== */
.checkPoints__area__pc {
    display: none;
}

.checkPoints__area__sp {
    padding: 0 20px;
    margin-top: 40px;
}

.checkPoints__list {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.middle,
.bottom {
    margin-top: 20px;
}

/* 目安均等幅設定 */
.checkPoints__item {
    text-align: center;
    width: 47.14%;
}

/* 目安下段中央寄せ設定 */
.bottom .checkPoints__item {
    margin: 0 auto;
}

.checkPoint__card img {
    width: auto;
    height: 108px;
}

.checkPoints__title {
    color: var(--primary-skyBlue);
    font-family: "Noto Sans JP";
    font-size: 2rem;
    line-height: 1;
    margin-top: 10px;
}

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

/* checkPoints pc */
@media screen and (min-width:769px) {
    .checkPoints__area__sp {
        display: none;
    }

    .checkPoints__area__pc {
        display: block;
    }

    .checkPoints__area__pc {
        padding: 0 80px;
        margin-top: 80px;
    }

    .checkPoints__list {
        gap: 80px;
    }

    .middle,
    .bottom {
        margin-top: 80px;
    }

    /* 目安均等幅設定 */
    .checkPoints__item {
        text-align: center;
        width: 29.14%;
    }

    .checkPoint__card img {
        width: auto;
        height: 130px;
    }

    .checkPoints__title {
        font-size: 3.2rem;
        margin-top: 16px;
    }

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

/* ========================
process
=========================== */
.process__list {
    margin-top: 40px;
    padding: 0 20px;
}

.process__item {
    display: flex;
    align-items: center;
    margin-top: 5px;
}

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

.process__number {
    display: flex;
    width: 72px;
    height: 72px;
    justify-content: center;
    align-items: center;
    color: var(--primary-white);
    text-align: center;
    font-family: Montserrat;
    font-size: 4rem;
    line-height: 1;
    border-radius: 50px;
    background: var(--primary-skyBlue);
    flex-shrink: 0;
}

.process__textArea {
    text-align: left;
    margin-left: 10px;
}

.process__line_sp {
    display: block;
    width: auto;
    height: 60px;
    margin-left: 36px;
    margin-top: 5px;
}

.process__line_pc {
    display: none;
}

.process__title {
    color: var(--primary-skyBlue);
    font-family: "Noto Sans JP";
    font-size: 2rem;
    line-height: 1;
}

.process__text {
    font-family: "Noto Sans JP";
    font-size: 1.4rem;
    line-height: 1.6;
    font-weight: 400;
    margin-top: 5px;
}

/* process pc */
@media screen and (min-width:769px) {
    .process__list {
        margin-top: 80px;
        padding: 0 80px;
    }

    .process__item {
        margin-top: 8px;
    }

    .process__number {
        width: 98px;
        height: 98px;
        font-size: 6rem;
    }

    .process__textArea {
        margin-left: 80px;
    }

    .process__line_pc {
        display: block;
        width: auto;
        height: 60px;
        margin-left: 49px;
        margin-top: 8px;
    }

    .process__line_sp {
        display: none;
    }

    .process__title {
        font-size: 3.2rem;
    }

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

/* ========================
faq
=========================== */
.faq__list {
    margin-top: 40px;
    padding: 0 20px;
}

.faq__item {
    border-top: 1px solid var(--primary-gray);
}

.faq__item:last-of-type {
    border-bottom: 1px solid var(--primary-gray);
}

.faq__question {
    display: flex;
    justify-content: space-between;
    cursor: pointer;
    display: flex;
    padding: 20px 10px;
    width: 100%;
    align-items: center;
}

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

.faq__textQ {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

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

.faq__ocIcon {
    position: relative;
    /* ＋の横棒作成と途切れ対策 */
    flex: 0 0 16px;
    width: 16px;
    height: 2px;
    background: var(--primary-skyBlue);
    border-radius: 2px;
    margin-left: 20px;
    transition: transform .3s ease;
}

/* ＋の縦棒作成 */
.faq__ocIcon::before {
    content: "";
    position: absolute;
    top: -7px;
    left: 7px;
    width: 2px;
    height: 16px;
    border-radius: 2px;
    background: var(--primary-skyBlue);
    transition: opacity .25s ease;
}

/* ＋回転 */
.faq__question.active .faq__ocIcon {
    transform: rotate(180deg);
}

/* 縦棒削除 */
.faq__question.active .faq__ocIcon::before {
    opacity: 0;
}

.faq__textA {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.faq__answer {
    display: none;
    padding: 20px 48px 20px 10px;
    align-items: flex-start;
}

/* faq pc */
@media screen and (min-width:769px) {
    .faq__list {
        margin-top: 80px;
        padding: 0 80px;
    }

    .faq__question {
        padding: 32px 16px;
    }

    .faq__icon {
        font-size: 3.2rem;
    }

    .faq__text {
        font-size: 1.6rem;
        line-height: 1.8;
        margin-left: 48px;
    }

    .faq__ocIcon {
        /* ＋の横棒作成と途切れ対策 */
        flex: 0 0 26px;
        width: 26px;
        height: 3px;
        margin-left: 48px;
    }

    /* ＋の縦棒作成 */
    .faq__ocIcon::before {
        top: -11px;
        left: 11px;
        width: 3px;
        height: 26px;
    }

    .faq__answer {
        padding: 32px 90px 32px 16px;
    }
}

/* ========================
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;
    }
}

/* ========================
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);
}