@charset "utf-8";
/* =========================
common
=========================== */
html {
    font-size: 62.5%;
}

body {
    background-color: #fff;
    color: #000;
    line-height: 1.5;
    font-family: "Zen Kaku Gothic New", Arial, sans-serif;
    font-style: normal;
    font-size: 1.6rem;
}

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

.serif {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

.amiri {
    font-family: "Amiri", serif;
    font-style: normal;
}

.pink {
    color: #ef748d;
}

.puple {
    color: #89aff2;
}

/* section__topic */
.section__topic {
    color: #89aff2;
    font-size: 2rem;
    text-align: center;
    margin-bottom: 40px;

    position: relative;
}

@media screen and (min-width: 769px) {
    .section__topic {
        letter-spacing: 4px;
        margin-bottom: 26px;
    }
}

.section__topic::after {
    content: "";
    display: inline-block;
    width: 264px;
    height: 31px;
    background-image: url(../images/topic_frame.svg);
    background-size: cover;
    background-position: center;

    position: absolute;
    left: 50%;
    bottom: 40px;
    transform: translateX(-50%);
}

@media screen and (min-width: 769px) {
    .section__topic::after {
        width: 300px;
        height: 35px;

        bottom: 70px;
    }
}

.section__topicBottom {
    display: inline-block;
    color: #000;
    font-size: 2rem;
    letter-spacing: 1.1px;
    margin-top: 35px;
}

@media screen and (min-width: 769px) {
    .section__topicBottom {
        font-size: 3.4rem;
        letter-spacing: 6px;
        margin-top: 51px;
    }
}

/* section__ttl */
.section__ttl {
    border-left: solid 1px #000;
    padding-left: 10px;
}

@media screen and (min-width: 769px) {
    .section__ttl {
        padding-left: 20px;
    }
}

.section__ttl .amiri {
    font-size: 1.6rem;
    letter-spacing: 6.4px;
}

@media screen and (min-width: 769px) {
    .section__ttl .amiri {
        font-size: 2rem;
        letter-spacing: 8px;
    }
}

.section__ttl .serif {
    font-size: 1.8rem;
    letter-spacing: 4.1px;
}

@media screen and (min-width: 769px) {
    .section__ttl .serif {
        font-size: 2.8rem;
        letter-spacing: 6.4px;
    }
}

.bg {
    background-image: url(../images/bg-sp.svg);
    background-size: cover;
    background-repeat: no-repeat;
}

@media screen and (min-width: 769px) {
    .bg {
        background-image: url(../images/bg-pc.svg);
    }
}

/* =========================
header
=========================== */
/* グローバルナビゲーション/ハンバーガーメニュー */

.header {
    position: absolute;
    width: 100%;
    z-index: 100;
}

@media screen and (min-width: 1196px) {
    .header {
        width: 100%;
        padding: 20px 30px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

.header__topic {
    font-size: 1.8rem;
    letter-spacing: 2px;
    position: absolute;
    left: 9px;
    top: 10px;
}

@media screen and (min-width: 769px) {
    .header__topic {
        font-size: 2rem;
        padding: 10px;
        position: static;
    }
}

@media screen and (min-width: 1196px) {
    .header__topic {
        font-size: 3rem;
        letter-spacing: 5px;
        padding: 0;
    }
}

.header__topic img {
    width: 22px;
    vertical-align: -5px;
}

@media screen and (min-width: 1196px) {
    .header__topic img {
        width: 40px;
        vertical-align: -8px;
    }
}

.nav {
    background-color: #546c8b;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(100%);
    transition: transform 0.4s;
}

@media screen and (min-width: 1196px) {
    .nav {
        background: transparent;
        width: auto;
        height: auto;
        padding: 0;
        position: static;
        transform: translate(0);
        transition: transform 0s;
    }
}

.nav.active {
    transform: translateX(0);
}

@media screen and (min-width: 1196px) {
    .nav__header {
        display: none;
    }
}

.nav__btn {
    text-align: right;
    margin: 14px 5.6% 0;
}

.logo {
    text-align: center;
}

.logo img {
    width: 80px;
}

.logo p {
    padding-top: 5px;
    font-size: 1.6rem;
    letter-spacing: 2px;
    color: #89aff2;
}

.nav__list {
    padding: 10px 16% 30px;
}

@media screen and (min-width: 1196px) {
    .nav__list {
        display: flex;
        padding: 0;
        align-items: center;
    }
}

.nav__item {
    color: #fff;
    font-size: 1.8rem;
    align-items: center;
    min-width: 255px;
}

@media screen and (min-width: 1196px) {
    .nav__item {
        min-width: auto;
        margin: 0;
        color: #000;
        font-size: 1.6rem;
    }
}

@media screen and (min-width: 1196px) {
    .nav__item:first-of-type {
        display: none;
    }
}

.nav__item--txt {
    position: relative;
    margin-top: 16px;
}

.nav__item--txt a {
    padding-left: 20px;
}

@media screen and (min-width: 1196px) {
    .nav__item--txt {
        margin-top: 0px;
    }
    .nav__item--txt a {
        padding-left: 0px;
        padding-right: 10px;
    }
    .nav__item--end a {
        padding-right: 0;
    }
}

.nav__item--txt::before {
    content: "";
    background: url(../images/icon-nav.svg) no-repeat center / contain;
    width: 12px;
    height: 12px;
    display: inline-block;
}

@media screen and (min-width: 1196px) {
    .nav__item--txt::before {
        content: none;
        padding-left: 10px;
    }

    .nav__item--txt::after {
        display: inline-block;
        content: "";
        background-color: #000;
        width: 1px;
        height: 16px;
        margin-left: 10px;

        position: absolute;
        top: 50%;
        right: 3px;
        transform: translateY(-47%);
    }

    .nav__item--txt:nth-of-type(6)::after {
        content: none;
    }
}

.nav__item--contact {
    margin-top: 37px;
}

@media screen and (min-width: 1196px) {
    .nav__item--contact {
        margin-top: 0px;
        margin-left: 18px;
    }
}

.nav__btnContact {
    display: block;
    padding: 10px 0px;
    border-radius: 3px;
    background-color: #ef748d;
    box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
    position: relative;
    transition: 0.4s;
}

@media screen and (min-width: 1196px) {
    .nav__btnContact {
        width: 203px;
        height: 50px;
        color: #fff;
    }
}

.nav__btnContact::after {
    content: "";
    display: inline-block;
    width: 9px;
    height: 16px;
    background-image: url(../images/arrow-white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.4s;
    position: absolute;
    top: 50%;
    right: 36px;
    transform: translateY(-50%);
}

@media screen and (min-width: 1196px) {
    .nav__btnContact::after {
        right: 12px;
    }
}

.nav__btnContact:hover {
    opacity: 0.7;
}

.header__btn {
    display: block;
    width: 36px;
    height: 27px;
    cursor: pointer;

    position: fixed;
    top: 13px;
    right: 3.4%;
}

@media screen and (min-width: 1196px) {
    .header__btn {
        display: none;
    }
}

/* =========================
メインビジュアル
=========================== */
.mainImg {
    position: relative;
}

.mainImg__pc {
    display: none;
}

.mainImg__img img {
    width: 100%;
}

@media screen and (min-width: 769px) {
    .mainImg__pc {
        display: block;
    }
    .mainImg__sp {
        display: none;
    }

    .section {
        max-width: 1000px;
        margin: 0 auto;
    }
}

.mainImg__text {
    background-color: #7896cd;
    padding: 0px 2px;
    color: #fff;
    font-size: calc(14vw / 3.75);

    position: absolute;
    top: calc(81vw / 3.75); /* 80px; */
    left: calc(16vw / 3.75); /* 16px; */
}

@media screen and (min-width: 769px) {
    .mainImg__text {
        font-size: calc(19vw / 14.4);
        top: calc(196vw / 14.4);
        left: calc(221vw / 14.4);
        letter-spacing: 0.04em;
    }
}

.mainImg__catchcopy {
    font-size: calc(24vw / 3.75); /* 2.3rem; */
    font-weight: 500;
    color: #7496d3;

    position: absolute;
    top: calc(113vw / 3.75); /* 113px; */
    left: calc(16vw / 3.75);
}

@media screen and (min-width: 769px) {
    .mainImg__catchcopy {
        font-size: calc(48vw / 14.4);
        font-weight: 400;

        top: calc(239vw / 14.4);
        left: calc(213vw / 14.4);
    }
}

.mainImg__list {
    font-size: calc(14vw / 3.75);

    position: absolute;
    top: calc(211vw / 3.75); /* 211px; */
    left: calc(16vw / 3.75); /* 16px; */
}

@media screen and (min-width: 769px) {
    .mainImg__list {
        font-size: calc(17vw / 14.4);
        display: flex;
        align-items: center;

        top: auto;
        bottom: calc(234vw / 14.4);
        left: calc(219vw / 14.4);
        letter-spacing: 0.06em;
    }
}

.mainImg__item {
    padding-bottom: calc(6vw / 3.75); /* 6px */
}

@media screen and (min-width: 769px) {
    .mainImg__item {
        padding-bottom: 0;
    }

    .mainImg__item::after {
        content: "";
        display: inline-block;
        background-color: #000;
        width: 1px;
        height: calc(16vw / 14.4);
        margin: 0 calc(15vw / 14.4);
        vertical-align: -0.1em;
    }

    .mainImg__item:nth-of-type(3)::after {
        content: none;
    }
}

.main__btn {
    width: 100%;
    padding: 0 4.2%;
    position: absolute;
    bottom: 24px;
}

@media screen and (min-width: 769px) {
    .main__btn {
        width: 25vw;
        height: 4.8611111111vw;
        padding: 0;
        font-size: 3rem;

        bottom: 20.897430555555vw;
        left: 15.3%;
        max-width: 360px;
    }
}

.main__btnContact {
    text-align: center;
    color: #fff;
    font-size: 2.6rem;
    letter-spacing: 3px;
    font-weight: 500;
    padding: 14px 0;
    display: block;
    border-radius: 3px;
    background: #ef748d;
    box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
    transition: 0.4s;
    position: relative;
}

@media screen and (min-width: 769px) {
    .main__btnContact {
        max-width: 360px;
        max-height: 70px;
        width: 25vw;
        font-size: 1.80555555555vw;
    }
}

.main__btnContact::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 24px;
    background-image: url(../images/arrow-white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;

    position: absolute;
    top: 50%;
    right: 1.97222vh;
    transform: translateY(-50%);
    transition: 0.4s;
}

.main__btnContact:hover {
    opacity: 0.7;
}

/* =========================
楽天バナー
=========================== */
.banner {
    margin-top: 20px;
    text-align: center;
}

.banner a {
    display: inline-block;
    border-radius: 21px;
    overflow: hidden;
}

.banner img {
    display: block;
    max-width: 327px;
}

@media screen and (min-width: 769px) {
    .banner {
        margin-top: 28px;
    }

    .banner a {
        border-radius: 18px;
    }

    .banner img {
        max-width: 782px;
        transition: 0.4s;
    }

    .banner a:hover img {
        background-color: #a9a9a9;
        opacity: 0.7;
    }
}

/* =========================
section worries
=========================== */
.section--worries {
    margin-top: 50px;
}

@media screen and (min-width: 769px) {
    .section--worries {
        margin-top: 80px;
    }
}

.worries__list {
    padding: 0 16.5%;
}

@media screen and (min-width: 769px) {
    .worries__list {
        display: flex;
        padding: 0;
        margin-top: 64px;
        justify-content: space-between;
    }
}

.worries__item {
    margin-top: 20px;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .worries__item {
        margin-top: 0;
        max-width: 300px;
    }
}

.worries__itemTxt {
    text-align: center;
    padding: 12px 0;
    border-radius: 3px;
    border: 1px solid #858585;
    background: #f6f6fa;
}

@media screen and (min-width: 769px) {
    .worries__itemTxt {
        font-size: 2rem;
        padding: 22px 0;
    }
}

.worries__itemImg {
    width: 60%;
    margin-top: 8px;
}

@media screen and (min-width: 769px) {
    .worries__itemImg {
        width: 90%;
        margin-top: 10px;
    }
}

/* =========================
section resolution
=========================== */
.resolution__topic::before {
    content: "";
    display: block;
    width: 1px;
    height: 46px;
    background-color: #000;
    margin: 12px auto 16px;
}

@media screen and (min-width: 769px) {
    .resolution__topic::before {
        height: 50px;
        margin: 28px auto 24px;
    }
}

.section--resolution {
    text-align: center;
}

.resolution__topic {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
    padding-bottom: 30px;
}

@media screen and (min-width: 769px) {
    .resolution__topic {
        font-size: 3.4rem;
        letter-spacing: 6.8px;
        padding-bottom: 40px;
    }
}

.resolution__topic .amiri {
    font-size: 2.6rem;
    letter-spacing: 2.6px;
}

@media screen and (min-width: 769px) {
    .resolution__topic .amiri {
        font-size: 3.6rem;
        letter-spacing: 7.2px;
    }
}

/* =========================
section point
=========================== */
.section--point {
    padding: 80px 4.2% 60px;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .section--point {
        padding: 100px 0;
    }
}

.point__topic {
    font-size: 2.4rem;
    letter-spacing: 1.2px;
}

@media screen and (min-width: 769px) {
    .point__topic {
        font-size: 3.4rem;
        letter-spacing: 6.8px;
    }
}

.under {
    border-bottom: solid 3px #89aff2;
}

.point__list {
    margin-top: 24px;
    padding: 0 4.2%;
    text-align: left;
}

@media screen and (min-width: 769px) {
    .point__list {
        margin-top: 70px;
        padding: 0 55px;
    }
}

.point__item {
    margin-top: 34px;
}

@media screen and (min-width: 769px) {
    .point__item {
        display: flex;
        margin-top: 76px;
    }
}

.index {
    display: none;
}

@media screen and (min-width: 769px) {
    .index {
        font-size: 6.4rem;
        display: block;
        padding: 0 24px 0 26px;
    }
}

.spIndex::before {
    content: "01";
    display: inline-block;
    color: #89aff2;
    font-family: "Amiri", serif;
    font-size: 4rem;
    width: 69px;
    text-align: center;
    margin-right: 12px;
}

.spIndex--02::before {
    content: "02";
}

.spIndex--03::before {
    content: "03";
}

@media screen and (min-width: 769px) {
    .spIndex::before {
        display: none;
    }
}

@media screen and (min-width: 769px) {
    .point__textarea {
        width: 100%;
        padding-top: 4px;
    }
}

.point__textarea h3 {
    font-size: 2rem;
    font-weight: 500;
}

@media screen and (min-width: 769px) {
    .point__textarea h3 {
        font-size: 2.4rem;
        letter-spacing: 4.8px;
    }
}

.point__textarea p {
    font-size: 1.6rem;
    line-height: 1.5;
}

@media screen and (min-width: 769px) {
    .point__textarea p {
        letter-spacing: 3.2px;
        margin-top: 12px;
    }
}

.point__img {
    text-align: center;
    margin-top: 30px;
}

@media screen and (min-width: 769px) {
    .point__img {
        width: 163px;
        margin-top: 0;
    }
}

/* =========================
button お問い合わせボタン
=========================== */
.button {
    background-color: #f2c33c;
    padding: 46px 4.2%;
}

@media screen and (min-width: 769px) {
    .button {
        padding: 55px;
    }
}

.button__container {
    background-color: #fff;
    border-radius: 3px;
    padding: 22px 3.4%;
    position: relative;
}

@media screen and (min-width: 769px) {
    .button__container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 22px 27px;
    }
}

.button__woman {
    position: absolute;
    bottom: 0;
    top: -22px;
    left: 13px;
    height: 105px;
}

@media screen and (min-width: 769px) {
    .button__woman {
        top: auto;
        left: 10px;
        bottom: 0;
        height: 204px;
    }
}

.button__txt {
    font-size: 1.4rem;
    margin-left: 101px;
    padding-top: 13px;
}

@media screen and (min-width: 769px) {
    .button__txt {
        font-size: 2rem;
        letter-spacing: 3px;
        margin-left: 210px;
        padding-top: 0;
        padding-bottom: 15px;
    }

    .spBr {
        display: none;
    }

    .button__cta {
        display: flex;
        justify-content: space-between;
        margin-left: 205px;
    }
}

@media screen and (min-width: 527px) {
    .spBr {
        display: none;
    }
}

.button__telSP {
    pointer-events: auto;
}

@media screen and (min-width: 769px) {
    .button__telSP {
        pointer-events: none;
    }
}

.button__tel {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    align-items: center;
    padding: 20px 0 10px;
    display: flex;
    justify-content: center;
}

@media screen and (min-width: 769px) {
    .button__tel {
        padding: 0;
    }
}

@media screen and (min-width: 1094px) {
    .button__tel {
        font-size: 4rem;
        letter-spacing: 4px;
    }
}

.button__tel::before {
    content: "";
    display: inline-block;
    background-image: url(../images/icon-tel.svg);
    width: 36px;
    height: 36px;
    background-size: cover;
    background-position: center;
    margin-right: 10px;
}

.button__contact {
    display: block;
    color: #fff;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: 2.6px;
    background-color: #ef748d;
    border-radius: 3px;
    padding: 18px 0px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
    transition: 0.4s;
    position: relative;
}

@media screen and (min-width: 769px) {
    .button__contact {
        width: 387px;
        height: 86px;
        font-size: 2.8rem;
        letter-spacing: 3px;
    }
}

.button__contact::after {
    content: "";
    display: inline-block;
    width: 12px;
    height: 24px;
    background-image: url(../images/arrow-white.svg);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    transition: 0.4s;
    position: absolute;
    top: 50%;
    right: 42px;
    transform: translateY(-50%);
}

@media screen and (min-width: 769px) {
    .button__contact::after {
        right: 30px;
    }
}

.button__contact:hover {
    opacity: 0.7;
}

/* =========================
section work
=========================== */
.section--work {
    padding: 50px 4.2%;
}

@media screen and (min-width: 769px) {
    .section--work {
        padding: 80px 30px;
        max-width: 1060px;
    }
}

.work__list {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 20px;
}

@media screen and (min-width: 769px) {
    .work__list {
        margin-top: 26px;
        gap: 42px;
        justify-content: center;
    }
}

.work__item {
    width: calc(50% - 10px);
    aspect-ratio: 165 / 186;
    background-color: #eff0f8;
    text-align: center;
    border-radius: 3px;
}

@media screen and (min-width: 769px) {
    .work__item {
        width: calc(33% - 25px);
        aspect-ratio: 300 / 340;
    }
}

.work__item img {
    height: 100%;
    object-fit: contain;
}

/* =========================
section flow
=========================== */
.section--flow {
    padding: 0 4.2%;
    margin-top: 20px;
}

@media screen and (min-width: 769px) {
    .section--flow {
        padding: 0px 30px;
        max-width: 1060px;
        margin-top: 0;
    }
}

.flow__container {
    margin-top: 20px;
}

@media screen and (min-width: 769px) {
    .flow__container {
        margin-top: 26px;
    }
}

@media screen and (min-width: 769px) {
    .flow__list {
        display: flex;
        justify-content: space-between;
        gap: 20px;
    }
}

.flow__item {
    border: solid 1px #000;
    background-color: #fff;
    border-radius: 3px;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
    position: relative;
    justify-content: center;
}

.flow__item:last-of-type {
    margin-bottom: 0;
}

@media screen and (min-width: 769px) {
    .flow__item {
        display: block;
        margin-bottom: 0;
        width: 220px;
        height: 303px;
    }
}

.flow__item::before {
    content: "01";
    font-family: Amiri;
    font-size: 2.4rem;
    color: #89aff2;
    position: absolute;
    top: 0;
    left: 8px;
}

.flow__item02::before {
    content: "02";
}

.flow__item03::before {
    content: "03";
}

.flow__item04::before {
    content: "04";
}

.flow__item::after {
    content: "";
    background-image: url(../images/icon-flowArrowSp.svg);
    width: 20px;
    height: 20px;
    position: absolute;
    bottom: -30px;
}

@media screen and (min-width: 769px) {
    .flow__item::after {
        background-image: url(../images/icon-flowArrowPc.svg);
        bottom: auto;
        top: 50%;
        right: -50%;
        transform: translate(-380%, 50%);
    }
}

.flow__item:last-of-type::after {
    content: none;
}

.flow__img {
    display: flex;
    justify-content: center;
    padding: 30px 24px;
    width: 121px;
}

@media screen and (min-width: 769px) {
    .flow__img {
        width: auto;
        aspect-ratio: 303 / 220;
    }
}

.flow__textarea {
    padding: 30px 4.2% 30px 0;
    width: calc(100% - 121px);
}

@media screen and (min-width: 769px) {
    .flow__textarea {
        width: auto;
        padding: 0 14px;
    }
}

.flow__textarea h4 {
    font-size: 1.8rem;
    font-weight: 500;
}

@media screen and (min-width: 769px) {
    .flow__textarea h4 {
        text-align: center;
        font-size: 2rem;
    }
}

.flow__textarea p {
    font-size: 1.6rem;
    margin-top: 10px;
}

/* =========================
section voice
=========================== */
.section--voice {
    padding: 50px 4.2%;
}

@media screen and (min-width: 769px) {
    .section--voice {
        padding: 120px 30px;
    }
}

.voice__list {
    margin-top: 20px;
}

@media screen and (min-width: 769px) {
    .voice__list {
        max-width: 800px;
        margin: 26px auto 0;
    }
}

.voice__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 19px;
    margin-top: 30px;
}

@media screen and (min-width: 769px) {
    .voice__item {
        gap: 25px;
        margin-top: 40px;
    }
}

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

.voice__item:nth-child(even) {
    flex-direction: row-reverse;
}

.voice__img {
    width: 71px;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .voice__img {
        width: 89px;
    }
}

.voice__textarea {
    border: 1px solid #89aff2;
    background-color: #fff;
    padding: 14px 3.7%;
    border-radius: 3px;
    width: calc(100% - 90px);
}

@media screen and (min-width: 769px) {
    .voice__textarea {
        padding: 22px;
        width: calc(100% - 114px);
    }
}

.voice__textarea h4 {
    border-bottom: 1px solid #89aff2;
    text-align: center;
    padding-bottom: 7px;
}

@media screen and (min-width: 769px) {
    .voice__textarea h4 {
        padding-bottom: 20px;
        font-size: 2rem;
    }
}

.voice__textarea p {
    padding-top: 11px;
}

@media screen and (min-width: 769px) {
    .voice__textarea p {
        padding-top: 20px;
    }
}

/* =========================
section price
=========================== */
.section--price {
    padding: 50px 4.2%;
}

@media screen and (min-width: 769px) {
    .section--price {
        padding: 80px 20px;
    }
}

.price__container {
    margin-top: 20px;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .price__container {
        margin: 26px auto 0;
        max-width: 800px;
    }

    .price__listFlex {
        display: flex;
        justify-content: space-between;
    }

    .price__listFlex:last-of-type {
        margin-top: 40px;
    }
}

.price__ttl {
    font-size: 2rem;
    font-weight: 500;
    margin-top: 16px;
}

@media screen and (min-width: 769px) {
    .price__ttl {
        display: block;
    }
}

.price__list {
    margin-top: 16px;
    line-height: 1.9;
}

.price__item {
    margin-top: 13px;
}

.price__item span {
    font-size: 1.8rem;
}

.price__txt {
    text-align: left;
    margin-top: 10px;
    line-height: 2;
}

@media screen and (min-width: 769px) {
    .price__txt {
        margin-top: 40px;
    }
}
/* =========================
section qa
=========================== */
.section--qa {
    padding: 0 4.2% 50px;
}

@media screen and (min-width: 769px) {
    .section--qa {
        padding-bottom: 100px;
    }
}

.accordion-content {
    display: none;
}

.accordion {
    max-width: 840px;
    margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .accordion {
        margin-top: 26px;
    }
}

.accordion-inner {
    border: solid 1px #000;
    margin-top: 20px;
    border-radius: 3px;
}

@media screen and (min-width: 769px) {
    .accordion-inner {
        margin-top: 28px;
    }
    .accordion-inner:first-of-type {
        margin-top: 0;
    }
}

.accordion-header {
    background-color: #fff;
    padding: 18px 15% 18px 4.2%;
    transition: 0.3s ease;
    cursor: pointer;
    position: relative;
}

@media screen and (min-width: 769px) {
    .accordion-header {
        padding: 40px 50px;
    }
}

.accordion-header.active::before {
    content: "";
    height: 1px;
    width: 90%;
    display: block;
    background-color: #000;
    bottom: 0;
    right: 50%;
    transform: translateX(50%);
    position: absolute;
}

.accordion-header::after {
    content: "";
    display: inline-block;
    position: absolute;
    top: 45%;
    right: 7%;
    width: 10px;
    height: 10px;
    border-right: 2px solid #000;
    border-bottom: 2px solid #000;
    transform: translateY(-50%) rotate(45deg);
    transition: 0.3s;
}

@media screen and (min-width: 769px) {
    .accordion-header::after {
        width: 12px;
        height: 12px;
    }
}

.accordion-header.active::after {
    transform: rotate(225deg);
}

.accordion-content {
    background-color: #fff;
    padding: 18px 4.2%;
}

@media screen and (min-width: 769px) {
    .accordion-content {
        padding: 30px 50px;
    }
}

.accordion-header:hover {
    background-color: #f2f2f2;
}

/* =========================
section vision
=========================== */
.section--vision {
    padding: 50px 4.2% 0;
    margin-bottom: 30px;
}

@media screen and (min-width: 769px) {
    .section--vision {
        padding: 80px 30px 0;
        max-width: 1060px;
        display: flex;
        align-items: start;
        gap: 30px;
    }

    .vision__column {
        width: calc(100% - 457px);
    }
}

.vision__ttl {
    font-weight: 500;
    font-size: 1.6rem;
    margin-top: 30px;
    display: inline-block;
    border-bottom: solid 1px #89aff2;
}

@media screen and (min-width: 769px) {
    .vision__ttl {
        margin-top: 26px;
    }

    .vision__ttl.h3:nth-of-type(2) {
        margin-top: 20x;
    }
}

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

@media screen and (min-width: 769px) {
    .vision__txt {
        margin-top: 15px;
        line-height: 2;
    }
}

.vision__img {
    margin-top: 30px;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .vision__img {
        margin-top: 0;
    }
}

.vision__img img {
    width: 100%;
    object-fit: cover;
    max-width: 400px;
}

@media screen and (min-width: 769px) {
    .vision__img img {
        width: auto;
        object-fit: fill;
        max-width: 427px;
    }
}

/* =========================
section recruit
=========================== */
.section--recruit {
    padding: 0 4.2% 10px;
}

@media screen and (min-width: 769px) {
    .section--recruit {
        padding: 80px 30px 30px;
        max-width: 1060px;
    }
}

.recruit__txt {
    margin-top: 30px;
    letter-spacing: 2.24px;
}

@media screen and (min-width: 769px) {
    .recruit__txt {
        font-size: 2rem;
        letter-spacing: 2.6px;
    }
}

.recruit__cta {
    margin: 14px auto 0;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .recruit__cta {
        margin: 37px auto 0;
        display: flex;
        justify-content: center;
        gap: 30px;
    }
}

.recruit__tel {
    font-size: 2.4rem;
    font-weight: 700;
    letter-spacing: 2.4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

@media screen and (min-width: 769px) {
    .recruit__tel {
        font-size: 3rem;
    }
}

.recruit__tel::before {
    content: "";
    display: inline-block;
    background-image: url(../images/icon-tel.svg);
    width: 36px;
    height: 36px;
    background-size: cover;
    margin-right: 4px;
}

.recruit__btn {
    display: inline-block;
    font-size: 1.8rem;
    border-radius: 3px;
    border: solid 1px #000;
    background-color: #fff;
    box-shadow: 0 2px 6px rgba(125, 55, 4, 0.26);
    padding: 12px 18.6%;
    margin-top: 13px;
    transition: 0.4s;
    position: relative;
}

@media screen and (min-width: 769px) {
    .recruit__btn {
        padding: 15px 82px 17px;
        margin-top: 0px;
    }
}

.recruit__btn::after {
    content: "";
    display: block;
    background-image: url(../images/arrow-black.svg);
    width: 9px;
    height: 16px;
    transition: 0.4s;
    position: absolute;
    top: 50%;
    right: 14px;
    transform: translateY(-50%);
}

.recruit__btn:hover {
    background-color: #f2f2f2;
    opacity: 0.7;
}

/* =========================
TOPにもどるボタン
=========================== */
.topBtn {
    padding: 10px;
}

.button__top {
    background-color: #89aff2;
    color: #fff;
    font-size: 1.2rem;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    margin: 0 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    transition: 0.3s;
}

@media screen and (min-width: 769px) {
    .button__top {
        font-size: 1.6rem;
        width: 75px;
        height: 75px;
    }
}

.button__top::before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(-45deg);
}

@media screen and (min-width: 769px) {
    .button__top::before {
        width: 13px;
        height: 13px;
        border-top: 3px solid #fff;
        border-right: 3px solid #fff;
        margin-bottom: 2px;
    }
}

.button__top:hover {
    background-color: #fff;
    color: #89aff2;
    border: solid 1px #89aff2;
}

.button__top:hover::before {
    border-top: 2px solid #89aff2;
    border-right: 2px solid #89aff2;
}

@media screen and (min-width: 769px) {
    .button__top:hover::before {
        border-top: 3px solid #89aff2;
        border-right: 3px solid #89aff2;
    }
}

/* =========================
footer
=========================== */
.footer {
    padding: 20px 4.2% 10px;
    background-color: #34414e;
    color: #fff;
}

@media screen and (min-width: 769px) {
    .footer {
        padding: 16px 30px 10px;
    }
}

.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
}

.footer__logo {
    font-size: 2.9rem;
    letter-spacing: 2px;
    background-image: url(../images/logo-footer.png);
    height: 107px;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 32px;
}

@media screen and (min-width: 769px) {
    .footer__logo {
        font-size: 3.4rem;
        letter-spacing: 5px;
        height: 137px;
        padding-top: 44px;
    }
}

.footer__logo a {
    vertical-align: 0.1em;
}

@media screen and (min-width: 769px) {
    .footer__logo a {
        vertical-align: baseline;
    }
}

.footer__snsImg {
    margin-left: 12px;
    width: 29px;
    height: 29px;
}

.footer__util {
    text-align: center;
    font-size: 1rem;
    margin-top: 20px;
}

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

@media screen and (min-width: 769px) {
    .footer__bottom {
        display: flex;
        position: relative;
        justify-content: center;
    }

    .footer__util {
        font-size: 1.3rem;
        text-align: right;
        margin-top: 0px;
        position: absolute;
        right: 0px;
    }

    .footer__copy {
        font-size: 1.7rem;
        margin-top: 0;
    }
}
