@charset UTF-8;

body {
    font-size: 16px;
    font-family: yu-gothic-pr6n, sans-serif;
    font-style: normal;
    font-weight: 400;
    color: #404040;
    letter-spacing: 0.07em;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* =======================
service title
======================= */

.title-container {
    width: 100%;
    padding-top: 90px;
}

.title {
    text-align: center;
}

h1 {
    font-size: 50px;
    font-weight: bold;
}

h2 {
    font-size: 18px;
    font-weight: 700;
    padding: 15px 0;
}

/* 1秒間かけて上からフェードイン */
.fadeInA {
    animation-name: fadeIn1s;
    animation-delay: 1s;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(-50px);
    opacity: 0;
}

@keyframes fadeIn1s {
    0% {}

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* 1.5秒間かけて下からフェードイン */
.fadeInB {
    animation-name: fadeIn1500ms;
    animation-delay: 1500ms;
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    transform: translateY(50px);
    opacity: 0;
}

@keyframes fadeIn1500ms {
    0% {}

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* =======================
service flex-box
======================= */

.flex-box {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 70px 0;
}

.responsive-img {
    width: 50%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.responsive-img img {
    width: 100%;
    object-fit: cover;
}

.service-container {
    width: 50%;
    height: auto;
    padding: 0 40px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.service-content {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
}

h3 {
    font-size: 30px;
    padding-bottom: 20px;
}

.service-content ul li {
    font-size: 18px;
    line-height: 1.4;
    padding-bottom: 10px;
    list-style: none;
}

.notes-container {
    width: 100%;
    margin: 0 auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 70px;
}

.notes-title {
    transform: rotate(90deg);
    padding-top: 10px;
}

.notes {
    font-size: 40px;
    font-weight: bold;
}

.notes span {
    font-size: 18px;
    padding-left: 20px;
}

.notes-content {
    padding: 20px 30px;
    border-left: thick solid #ccc;
}

.notes-txt {
    font-size: 16px;
    line-height: 1.6;
}

/* 料金・プラン */

.plan-container {
    width: 100%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 70px 0;
}

.plan-content {
    width: 50%;
    height: auto;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 10px;
}

.planA,
.planB {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    flex-direction: column;
}

.plan-title {
    width: 100%;
    background-color: #6f4b3e;
}

.p-title {
    font-size: 40px;
    font-weight: bold;
    color: #fff;
    text-align: center;
    padding: 20px 0;
}

.price {
    font-size: 40px;
    text-align: center;
    padding: 20px 0;
}

.planA img,
.planB img {
    width: 100%;
}

.plan-content ul {
    padding: 15px 0
}

.plan-content ul li {
    line-height: 1.6;
}

.plan-txt {
    line-height: 1.6;
}


/* =======================
responsive
======================= */

@media screen and (max-width: 1280px) {

    h1 {
        font-size: 40px;
    }

    .flex-box {
        display: block;
        margin: 0;
    }

    .responsive-img {
        width: 100%;
    }

    .responsive-img img {
        width: 80%;
        margin: 50px auto;
    }

    .service-container {
        width: 100%;
        display: block;
        text-align: center;
        padding: 40px 10px;
    }

    .service-content {
        display: inline-block;
    }

    .service-content ul {
        display: inline-block;
    }

    .service-content ul li {
        text-align: left;
    }

    .notes-container {
        display: block;
        text-align: center;
        padding: 0 90px;
    }

    .notes-title {
        transform: none;
    }

    .notes {
        text-align: left;
        border-bottom: solid 3px #ccc;
    }

    .notes-content {
        border-left: none;
        display: inline-block;
        text-align: left;
        padding: 20px;
    }

    .plan-container {
        display: block;
    }

    .plan-content {
        width: 80%;
        margin: 30px auto;
        padding: 20px 0;
    }

    .p-title {
        font-size: 35px;
        padding: 15px 0;
    }

    .price {
        font-size: 35px;
    }
}

@media screen and (max-width: 600px) {

    .title-container {
        padding-top: 70px;
    }

    .responsive-img img {
        margin: 20px auto;
    }

    .service-container {
        padding: 30px 20px;
    }

    h3 {
        font-size: 20px;
        font-weight: bold;
    }

    .notes-container {
        padding: 0 20px;
    }

    .plan-content {
        margin: 20px auto;
    }
}