/* ＝＝＝共通タグ＝＝＝ */

a {
    color: black;
    font-size: large;
    font-weight: bold;
}

p {
    font-size: small;
}

@media (min-width: 768px) {
    p {
        font-size: medium;
    }
}

@media (min-width: 1366px) {
    p {
        font-size: large;
    }
}



/* ***共通部品*** */


/* ■■■ Header ■■■*/
.list-inline {
    font-size: 20px;
    margin: 0 7px;
}


.header_img {
    width: 100px;
}




/* PC専用メニュー */

.site_link {
    font-size: small;
    text-decoration: none;
    transition: 0.2s;
    margin: 0px 5px;
    display: none;
}

@media (min-width: 500px) {
    .site_link {
        display: block;
    }
}

@media (min-width: 768px) {
    .site_link {
        font-size: medium;
        margin: 0px 10px;
    }
}


.site_link:hover {
    color: #afafaf;
    text-decoration: underline;
}




/* SP専用メニュー */

.sp_site_links ul {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
    text-align: center;
}

.sp_site_links li {
    list-style: none;
    margin-top: 1.5rem;
    cursor: pointer;
}

.sp_site_links {
    position: fixed;
    right: 0;
    left: 0;
    top: 0;
    width: 80%;
    height: 100vh;
    transform: translateX(126%);
    background-color: #fff;
    transition: ease-out .4s;
    z-index: 100;
}

.header_hamburger {
    width: 48px;
    height: 100%;
    margin-right: 20px;
    background-color: transparent;
    border-color: transparent;
    z-index: 100;
}

.header_hamburger.active {
    position: fixed;
    right: 52px;
}

.header_hamburger:hover {
    cursor: pointer;
}

.sp_site_links.active {
    transform: translateX(26%);
}

.sp_site_link {
    text-decoration: none;
}

.header_hamburger.active span:nth-child(1) {
    top: 10px;
    transform: rotate(-45deg);
}

.header_hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(50%);
}

.header_hamburger.active span:nth-child(3) {
    top: -8px;
    transform: rotate(45deg);
}

@media (min-width: 500px) {
    .header_hamburger {
        display: none;
    }
}

/* ハンバーガーメニューの線 */
.header_hamburger span {
    width: 100%;
    height: 1px;
    background-color: #000;
    position: relative;
    transition: ease .4s;
    display: block;
}

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

.header_hamburger span:nth-child(2) {
    margin: 8px 0;
}

.header_hamburger span:nth-child(3) {
    top: 0;
}


/* ■■■ Site all ■■■*/
.site_container {
    font-family: "ヒラギノ明朝 ProN W4", "HiraMinProN-W4", "HG明朝E", "MS Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    background-color: #FBFAF7;
}



/* ■■■ Footer ■■■ */

.footer {
    margin-top: 100px;
    padding-bottom: 40px;
}

.fa-brands {
    font-size: x-large;
    color: black;
    transition: 0.2s;
}

.fa-brands:hover {
    transform: scale(1.2);
}

.sns_link a {
    text-decoration: none;
}

.footer_img {
    width: 100px;
}







/* ================================= */
/* =========== TOPページ ============ */
/* ================================= */



/* ■■■ Slider ■■■ */

/* スライドの画像と文字を中央配置 */
.slide_wrapper {
    background-image: url(../image/common/top_2.png);
    height: 600px;
    position: relative;
    /* div要素に合わせサイズ変化させるレスポンス */
    background-size: cover;
    /* 画像を上揃え */
    background-position: top;
}

.slide_text {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.slide_title {
    font-size: 45px;
}

.fade_in {
    transition: 1.4s ease-in-out;
    transform: translate(-50%, -10%);
    opacity: 0;
}

.fade_in.on {
    transform: translate(-50%, -50%);
    opacity: 1.0;
}

@media (min-width: 500px) {
    .slide_title {
        font-size: 60px;
    }
}

@media (max-width: 600px) {
    .slide_subtitle {
        display: none;
    }
}


/* ■■■ About ■■■ */

.about_title {
    font-size: 25px;
}

@media (min-width: 768px) {
    .about_title {
        font-size: 35px;
    }
}

@media (min-width: 500px) {
    .about_text {
        text-align: center;
    }
}

.about_wrapper {
    margin-top: 120px;
    line-height: 25px;
    padding: 0 30px;
}




/* ■■■ Contact ■■■ */

.contact_wrapper {
    margin-top: 170px;
}

.contact_title {
    font-size: 35px;
}

@media (min-width: 768px) {
    .contact_title {
        font-size: 45px;
    }
}

.contact_content {
    margin: 10px auto;
}


.contact_content_title {
    margin-bottom: 2px;
    margin-top: 10px;
}




/* ■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■ Book ■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■ */

.book_wrapper {
    text-align: center;
    margin: 100px 0 -60px;
    background-color: #eeeeee;
}

@media (min-width: 768px) {
    .book_wrapper {
        margin: 170px 0 -30px;
    }
}

.book_content {
    padding: 40px 0;
}

@media (min-width: 768px) {
    .book_content {
        padding: 70px 0;
    }
}


.book_title.main {
    font-size: 19px;
}

@media (min-width: 768px) {
    .book_title.main {
        font-size: xx-large;
    }
}

.book_title.sub {
    letter-spacing: 8px;
    font-size: small;
}

@media (min-width: 768px) {
    .book_title.sub {
        letter-spacing: 10px;
        font-size: medium;
    }
}

.service_about.area_book {
    display: block;
    margin: 25px 0 7px;
}

@media (min-width: 768px) {
    .service_about.area_book {
        margin: 40px 0 10px;
    }
}

.sample_name {
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .sample_name {
        margin: 0 0 40px;
    }
}

.service_about_connect {
    display: inline-block;
    text-decoration: none;
    transition: 0.2s;
    margin: 0px 5px;
    font-size: small;
}

@media (min-width: 768px) {
    .service_about_connect {
        font-size: large;
    }
}

.service_about_connect:hover {
    color: #afafaf;
    text-decoration: underline;
}

.youtube.small {
    width: 392px;
    height: 220px;
}

@media (min-width: 768px) {
    .youtube.small {
        width: 642px;
        height: 360px;
    }
}






/* ■■■■■■■■■■■■■■■■■■■■ */
/* ■■■ Service ■■■ */
/* ■■■■■■■■■■■■■■■■■■■■ */

/* サービスの枠 */

@media (min-width: 768px) {
    .service_about.right {
        justify-content: flex-start;
        display: flex;
        flex-direction: row-reverse;
    }

    .service_about.left {
        justify-content: flex-start;
        display: flex;
        flex-direction: row;
    }
}


@media (min-width: 1366px) {
    .service_about {
        align-items: center;
    }
}

.fade_in_right {
    -webkit-transition: 1.2s ease-in-out;
    -moz-transition: 1.2s ease-in-out;
    -o-transition: 1.2s ease-in-out;
    transition: 1.2s ease-in-out;
    transform: translateX(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.fade_in_right.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.fade_in_left {
    -webkit-transition: 1.2s ease-in-out;
    -moz-transition: 1.2s ease-in-out;
    -o-transition: 1.2s ease-in-out;
    transition: 1.2s ease-in-out;
    transform: translateX(-30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.fade_in_left.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateX(0);
}

.fade_in_bottom {
    -webkit-transition: 1s ease-in-out;
    -moz-transition: 1s ease-in-out;
    -o-transition: 1s ease-in-out;
    transition: 1s ease-in-out;
    transform: translateY(30px);
    opacity: 0;
    filter: alpha(opacity=0);
    -moz-opacity: 0;
}

.fade_in_bottom.on {
    opacity: 1.0;
    filter: alpha(opacity=100);
    -moz-opacity: 1.0;
    transform: translateY(0);
}



/* プランの画像 */

.service_about_img {
    width: 45%;
    min-width: 350px;
}

@media (min-width: 600px) {
    .service_about_img {
        min-width: 500px;
    }
}

@media (min-width: 768px) {
    .service_about_img {
        min-width: 450px;
    }
}



.service_about_img img {
    width: 100%;
}


@media (max-width: 767px) {
    .service_about_img.right {
        margin: auto;
        margin-right: 0px;
    }
}



.service_outer_title {
    font-size: 23px;
}

@media (min-width: 768px) {
    .service_outer_title {
        font-size: 30px;
    }
}

@media (min-width: 1366px) {
    .service_outer_title {
        font-size: 33px;
    }
}



/* 右揃えプランの英語タイトルの調整 */

.service_about_title_img.right {
    display: flex;
    justify-content: end;
}

.service_about_title_img.right img {
    object-fit: cover;
    width: 350px;
    height: 50px;
    object-position: 0% 0%;
}



@media (min-width: 768px) {
    .service_about_title_img.right img {
        width: 767px;
        height: 50px;
        object-position: -220% 0%;
    }
}


@media (min-width: 1366px) {
    .service_about_title_img.right img {
        width: 800px;
        height: 60px;
        object-position: -80% 0%;
    }
}











/* 左揃えプランの英語タイトルの調整 */

.service_about_title_img.left {
    display: flex;
    justify-content: start;
}


.service_about_title_img.left img {
    object-fit: cover;
    width: 350px;
    height: 48px;
    object-position: 100% 0%;
}


@media (min-width: 768px) {
    .service_about_title_img.left img {
        width: 767px;
        height: 50px;
        object-position: 300% 0%;
    }
}

@media (min-width: 1366px) {
    .service_about_title_img.left img {
        width: 800px;
        height: 60px;
        object-position: 180% 0%;
    }
}



/* 左揃えプランのテキストの調整 */

.service_about_title {
    padding-top: 20px;
}

@media (min-width: 768px) {
    .service_about_title.right {
        width: 45%;
        padding-top: 0px;
    }
}

@media (min-width: 768px) {
    .service_about_title.left {
        width: 45%;
        padding-top: 0px;
    }
}

@media (min-width: 1366px) {
    .service_about_title.right {
        width: auto;
        padding-top: 0px;
    }
}


/* 簡易説明文章 */

.service_about_text {
    margin-bottom: 5px;
    padding: 5px 20px 20px;
}




/* Read moreのリンク */

.service_link {
    position: relative;
    width: 126px;
    height: 45px;
    background-color: #d5d2c7;
    margin-left: 8px;
}

.service_link .link {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-left: 13px;
    padding-top: 7px;
    transition: 0.5s;

}

.service_link :hover {
    color: #ffffff;
    background-color: #a2a289;
    transform: scale(1.05);
}






/* ■■■■■■■■■■■■■■■■■■■■ */
/* ■■■ Contact ■■■ */
/* ■■■■■■■■■■■■■■■■■■■■ */

.contact_content {
    width: 65%;
}


@media (min-width: 1366px) {
    .contact_content {
        width: 50%;
    }
}




.contact_content_message_btn {
    margin-top: 10px;
}

.contact_content_message_btn button {
    display: inline-block;
    border-radius: 11%;
    /* 角丸       */
    font-size: 12pt;
    /* 文字サイズ */
    cursor: pointer;
    /* カーソル   */
    padding: 7px 42px;
    /* 余白       */
    background: #fbfaf7;
    /* 背景色     */
    line-height: 1em;
    /* 1行の高さ  */
    opacity: 0.9;
    /* 透明度     */
    transition: .1s;
    /* なめらか変化 */
}

.contact_content_message_btn button:hover {
    background: #d5d2c7;
    /* 背景色     */
}








/* ==================================== */
/* =========== サービスページ ============ */
/* ==================================== */

.service_slide_wrapper_1 {
    background-image: url(../image/common/service_top1.png);
    height: 600px;
    position: relative;
    /* div要素に合わせサイズ変化させるレスポンス */
    background-size: cover;
    /* 画像を上揃え */
    background-position: top;
}


.service_slide_wrapper_2 {
    background-image: url(../image/common/service_top2.png);
    height: 600px;
    position: relative;
    /* div要素に合わせサイズ変化させるレスポンス */
    background-size: cover;
    /* 画像を上揃え */
    background-position: top;
}


.service_slide_wrapper_3 {
    background-image: url(../image/common/service_top3.png);
    height: 600px;
    position: relative;
    /* div要素に合わせサイズ変化させるレスポンス */
    background-size: cover;
    /* 画像を上揃え */
    background-position: top;
}


/* サービス画面のスライドテキスト */

.service_slide_text {
    position: absolute;
    text-align: center;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

@media (min-width: 768px) {
    .service_slide_text {
        text-align: start;
        left: 25%;
        top: 50%;
    }
}




.service_slide_text h1 {
    font-size: 450%;
    font-family: 'Vollkorn', serif;
    letter-spacing: 8px;
    line-height: 95%;
}

@media (min-width: 768px) {
    .service_slide_text h1 {
        font-size: 750%;
    }
}


.service_price_text {
    font-size: 18px;
}

@media (min-width: 768px) {
    .service_price_text {
        font-size: 22px;
    }
}





/* ■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■■■■ 映像 ■■■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■ */


.service_about_text {
    letter-spacing: 1px;
}

.movie-main iframe {
    margin: 0 auto
}

.youtube {
    width: 445px;
    height: 250px;
}

@media (min-width: 768px) {
    .youtube {
        width: 738px;
        height: 415px;
    }
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■ プラン内容 ■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■ */

.service_detail {
    margin: 0 auto;
    width: 70%;
    padding-top: 5px;
}

@media (min-width: 1366px) {
    .service_detail {
        width: 50%;
        padding-top: 20px;
    }
}


@media (min-width: 768px) {
    .service_detail_content {
        margin-top: 30px;
    }
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■■■■■■ 金額 ■■■■■■■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■ */

.service_price {
    margin: 0 auto;
    width: 70%;
}

@media (min-width: 1366px) {
    .service_price {
        width: 50%;
    }
}



/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ */
/* ■■■■■ サービス下部リンク ■■■■■ */
/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

.service_bottom_link {
    font-size: small;
    text-decoration: none;
    transition: 0.2s;
    margin: 0 5px;
}

@media (min-width: 768px) {
    .service_bottom_link {
        margin: 0 10px;
        font-size: medium;
    }
}



.service_bottom_link:hover {
    color: #afafaf;
    text-decoration: underline;
}





/* ==================================== */
/* ======== 問合せ受付完了ページ ========= */
/* ==================================== */

/* ■■■ 受付完了TOP ■■■ */

.sended_title {
    font-size: 25px;
}

@media (min-width: 768px) {
    .sended_title {
        font-size: 35px;
    }
}

@media (min-width: 500px) {
    .sended_text {
        text-align: center;
    }
}

.sended_wrapper {
    margin-top: 120px;
    line-height: 25px;
    padding: 0 30px;
}


/* ■■■ TOPリンク ■■■ */

.top_link {
    text-align: center;
}

.top_link a {
    font-size: small;
}

@media (min-width: 768px) {
    .top_link a {
        font-size: medium;
    }
}
