@charset "UTF-8";

/* ================================
common 
=================================*/
:root {
    --primary-white: #FFFEF9;
    --primary-beige: #D6BDA5;
    --primary-rightBeige: #F4EBE2;
    --primary-brown: #6C6059;
    /* 1320px幅/1440 */
    --contentWidth: 91.7%;
    /* 60px/1440 */
    --contentPaddingPC: 4.17%;  
     /* 24px/375 */
    --contentPaddingSP: 6.4%
}

html {
    font-size: 62.5%;
}

body {
    font-family:
        "Zen Kaku Gothic New",
        "Noto Sans JP",
        Arial,
        sans-serif;
    font-style: normal;
    color: var(--primary-brown);
    background-color: var(--primary-white);
    line-height: 1.8;
    font-size: 1.6rem;
}

.animation_bg {
    background: var(--primary-beige);
    content: "";
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    animation-name: PageAnime-fade;
    animation-duration: 0.3s;
    animation-delay: 0.8s;
    animation-timing-function: ease-in-out;
    animation-fill-mode: forwards;
    pointer-events: none;
}
@keyframes PageAnime-fade {
  0% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
    display: none;
  }
}

.container {
    position: relative;
}

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

.wrapper {
    padding: 0 var(--contentPaddingSP);
}

/* セクションのタイトル */
.section_title_txt {
    text-align: center;
    font-weight: bold;
    font-size: 2rem;
    line-height: 1.5;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 12px;
    white-space: nowrap;
    align-items: center;
}
.section_title_txt::before,
.section_title_txt::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--primary-brown);
    flex: 1;
}

.btn_item {
    display: flex;
    justify-content: center;
}
.btn {
    display: inline-block;
    position: relative;
    background-color: var(--primary-beige);
    border: solid 1px var(--primary-beige);
    color: var(--primary-white);
    border-radius: 100px;
    line-height: 1.5;
    text-align: center;
    padding: 15px 60px;/* 15 60 */

    transition: all 0.4s ease;
}
.btn:hover {
    background-color: var(--primary-white);
    color: var(--primary-beige);
}
.btn::after {
    content: '';
    background-image: url(../images/btn_arrow_right.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    width: 12px;
    height: 11px;
    display: inline-block;
    margin-left: 6px;
}
.btn:hover::after {
    background-image: url(../images/btn_arrow_right_hover.svg);
}

/* .img_onlyPc {
    display: none;
}
.img_onlySp {
    display: block;
} */

.en_txt {
    font-family:
    "Gowun Dodum",
    "Noto Sans JP",
    Arial,
    sans-serif;
}

.fadeIn {
    transform: translate(0, 50px);
    opacity: 0;
    transition: 0.8s;
} 
.fadeIn.animated {
    transform: translate(0, 0);
    opacity: 1;
}

/* common pc */
/* pcのcss */
@media screen and (min-width:769px) {
    .wrapper {
        padding: 0 var(--contentPaddingPC);
    }

    .section_title_txt {
        font-size: 2.4rem;
        gap: 60px;
    }

    .btn {
        font-size: 2rem;
        padding: 30px 60px;
    }

    /* .img_onlyPc {
        display: block;
    }
    .img_onlySp {
        display: none;
    }
 */
}/* pc 769px */


/* ================================
header
=================================*/
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px var(--contentPaddingSP);
    background-color: rgba(195, 181, 168, 0.5);

    position: absolute;
    z-index: 10;
    width: 100%;
    left: 0;
    top: 0;
}

.header_title {
    font-size: 2.4rem;
    font-weight: bold;
    line-height: 1.3;
    color: var(--primary-white);
}

.nav {
    background-color: rgba(214, 189, 165, 0.8);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: 0.4s;
}
.nav.active_nav {
    transform: translateX(0);
}

.nav_item {
    padding: 0 var(--contentPaddingPC);
    font-weight: bold;
}
.nav_item a {
    /* display: inline-block; */
    width: 100%;
    border-bottom: 1px solid var(--primary-brown);
    padding-bottom: 12px;
    cursor: pointer;
    margin-top: 60px;
    align-items: center;
    display: flex;
}
.nav_item a::before {
    content: '';
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 20px;
    width: 28px;
    display: inline-block;
    margin-right: 12px;
    margin-left: 20px;
}
.nav_item:nth-of-type(1) a::before {
    background-image: url(../images/nav_icon_home.svg);
    height: 25px !important;
}
.nav_item:nth-of-type(2) a::before {
    background-image: url(../images/nav_icon_camera.svg);
}
.nav_item:nth-of-type(3) a::before {
    background-image: url(../images/nav_icon_photo.svg);
}
.nav_item:nth-of-type(4) a::before {
    background-image: url(../images/nav_icon_talk.svg);
    height: 25px !important;
}
.nav_item:first-of-type {
    margin-top: 90px;
}

/*hamburger*/
.hamburger_btn {
    position: relative;
    width: 30px;
    height: 25px;
    cursor: pointer;
    z-index: 200;
}
.hamburger_btn span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-white);
    border-radius: 4px;
}
.hamburger_btn, .hamburger_btn span {
    display: inline-block;
    transition: all .5s;
    box-sizing: border-box;
}
.hamburger_btn span:nth-of-type(1) {
    top: 0;
}
.hamburger_btn span:nth-of-type(2) {
    top: 11.5px;
}
.hamburger_btn span:nth-of-type(3) {
    bottom: 0;
}
#hamburger.active_h span:nth-of-type(1) {
    -webkit-transform: translateY(11.5px) rotate(-45deg);
    transform: translateY(11.5px) rotate(-45deg);
    background-color: var(--primary-brown);
}
#hamburger.active_h span:nth-of-type(2) {
    opacity: 0;
}
#hamburger.active_h span:nth-of-type(3) {
    -webkit-transform: translateY(-11.5px) rotate(45deg);
    transform: translateY(-11.5px) rotate(45deg);
    background-color: var(--primary-brown);
}  

/* header pcのcss */
@media screen and (min-width:769px) {
    .header {
        padding: 10px var(--contentPaddingPC);
    }

    .nav {
        background: transparent;
        width: auto;
        height: auto;
        transform: translate(0);
        position: relative;
    }

    .nav_list {
        margin-top: 0;
        display: flex;
        padding: 0;
        justify-content: end;
        align-items: center;
    }

    .nav_item {
        margin-top: 0;
        font-size: 2.0rem;
        line-height: 1.5;
        font-weight: normal;
        color: var(--primary-white);

        margin-right: 15px;
        padding: 0 15px 0 0;
        border-right: var(--primary-rightBeige) 1px solid;
        text-align: center;
    }
    .nav_item a {
        border-bottom: none;
        padding: 0;
        margin-top: 0;
    }
    .nav_item a::before {
        display: none;
        margin-right: 0;
    }
    .nav_item:hover {
        font-weight: bold;
        transition: all 0.3s ease;
    }
    .nav_item:first-of-type {
        display: none;
    }
    .nav_item:last-of-type {
        border-right: none;
        margin-right: 0;
    }

    .hamburger_btn {
        display: none;
    }

}/* pc 769px */


/* ================================
footer
=================================*/
.footer {
    padding: 60px 24px 36px;
    background-color: var(--primary-beige);
}

.footer_group {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.footer_title {
    font-size: 2.4rem;
    font-weight: bold;
}

.menu_list {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.menu_item {
    font-size: 1.2rem;
}
.menu_item a {
    display: flex;
    flex-direction: column;
}
.menu_item div {
    font-size: 1.6rem;
    font-weight: bold;
}

.menu_subList li {
    margin-left: 20px;
    list-style-type: disc;
    margin-top: 8px;
}

.copy {
    margin-top: 36px;
    text-align: center;
    font-size: 12px;
}

/* footer pcのcss */
@media screen and (min-width:1190px) {
    .footer {
        padding: 100px 100px 60px;
    }

    .footer_group {
        flex-direction: row;
        justify-content: space-between;
        gap: 60px;
    }

    .menu_list {
        flex-direction: row;
        gap: 60px;
    }

    .menu_item a {
        flex-direction: row;
        align-items: center;
    }
    .menu_item div {
        margin-right: 6px;
    }

    .copy {
        margin-top: 84px;
    }
}/* pc 769px */


/* ================================
top-mainvisual
=================================*/
.article_header {
    position: relative;
    aspect-ratio: 9 / 16;
}

.mainImg_top {
    position: relative;
}

.mainImg_txt {
    position: absolute;
    bottom: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.mainImg_title {
    font-family:
    "Zen Maru Gothic",
    sans-serif;
    font-size: 48px;
    line-height: 1.5;
    background-color: rgba(244, 235, 226, 0.5);
    height: 80px;
}
.mainImg_title span {
    font-family: 
    "Bilbo",
    cursive ,      
    sans-serif;
    color: var(--primary-white);
    font-size: 40px;
    line-height: 1;
    background-color: rgba(244, 235, 226, 0.5);
    height: 46px;
    padding: 8px;
    transform: translateY(-240%);
    display: block;
    text-transform: uppercase;
}

/* top-mainvisual pcのcss */
@media screen and (min-width:796px) {
    .article_header {
        aspect-ratio: 16 / 9;
    }

    .mainImg_txt {
        position: absolute;
        left: 60px;
        top: 100px;
    }

    .mainImg_title {
        font-size: 64px;
        height: 93px;
    }
    .mainImg_title span {
        font-size: 48px;
        height: 60px;
        padding: 11px;
        transform: translateY(10%);
        width: 94%;
    }

}/* pc 769px */


/* ================================
top-about
=================================*/
.section_about {
    margin-top: 100px;
}

.about {
    margin-top: 36px;
    /* gap: 36px; */
    display: flex;
    /* flex-direction: column; */
}

.about_txt_first,
.about_txt_second {
    text-align: center;
}
.about_txt_second {
    margin-top: 24px;
}

.btn_item_about {
    margin-top: 36px;
}

.about_img_onlyPc {
    display: none;
}

/*中間 769以上*/
@media screen and (min-width:769px) and (max-width: 1109px) {
    .about_img_onlyPc {
        display: none;
    }

    .section_about {
        margin-top: 180px;
    }

    .about {
        margin-top: 60px;
        /* gap: 24px; */
        /* flex-direction: row; */
        justify-content: center;
    }

    /* .about img {
        max-width: 350px;
        aspect-ratio: 2/3;
        object-fit: cover; 
    } */

    .about_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about_txt_first,
    .about_txt_second {
        text-align: center;
    }
    .about_txt_second {
        margin-top: 24px;
    }

    .btn_item_about {
        margin-top: 36px;
    }


}

/* top-about pcのcss */
@media screen and (min-width:1110px) {
    .section_about {
        margin-top: 180px;
    }

    .about {
        margin-top: 60px;
        /* gap: 24px; */
        /* flex-direction: row; */
        justify-content: center;
    }

    .about_img_onlyPc {
        display: block;
    }

    /* .about img {
        max-width: 350px;
        aspect-ratio: 2/3;
        object-fit: cover; 
    } */

    .about_content {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .about_txt_first,
    .about_txt_second {
        text-align: center;
    }

    .about_txt_second {
        margin-top: 24px;
    }

    .btn_item_about {
        margin-top: 36px;
    }

}/* pc 769px */


/* ================================
top-service
=================================*/
.section_service {
    margin-top: 120px;
}

.service {
    margin-top: 60px;
    gap: 60px;
    display: flex;
    flex-direction: column;
}

.service_item {
    display: flex;
    flex-direction: column;
    gap: 12px;
    position: relative;
    align-items: stretch;
}
.service_item_detail {
    width: 100%;
}
.service_item_detail::before {
    font-family: 
    "Bilbo",
    cursive ,      
    sans-serif;
    font-size: 40px;
    line-height: 1;
    color: #E6DCD2;
    transform: translateY(28%);
    z-index: -10;
    display: flex;
    position: relative;
}
.service_item_history::before {
    content: 'Life Story Photo Art Project';
    justify-content: start;
}
.service_item_business::before {
    content: 'Business Photo';
    justify-content: end;
}
.service_item_memory::before {
    content: 'Family/Memory Photo';
    justify-content: start;
}

.img_onlySp {
    display: block;
}
.img_onlyPc {
    display: none;
}

.service_content {
    background-color: var(--primary-rightBeige);
    padding: 36px 12px;
    border-radius: 5px;
    margin-top: 12px;
}

.service_title {
    text-align: center;
    font-size: 2.4rem;
    line-height: 1.5;
}

.service_txt {
    margin-top: 24px;
}

.btn_item_service {
    margin-top: 24px;
}

/* top-service pcのcss */
/*@media screen and (min-width:769px) {*/
@media screen and (min-width:1390px) {
    .section_service {
        margin-top: 220px;
    }

    .service {
        margin-top: 150px;
        gap: 150px;
    }

    .service_item {
        flex-direction: row;
        gap: 24px;
        justify-content: space-between;
        align-items: end;
    }

    .service_item_detail::before {
        font-size: 64px;
    }

    .img_onlySp {
        display: none;
    }
    .img_onlyPc {
        display: block;
        max-width: 730px;
    }

    .service_content {
        padding: 36px;
        margin-top: 0;
    }

    .service_title {
        text-align: start;
        font-size: 3.6rem;
    }

    .service_txt {
        margin-top: 48px;
    }

    .btn_item_service {
        margin-top: 48px;
    }
}/* pc 769px */


/* ================================
top-contact
=================================*/
.section_contact {
    margin-top: 120px;
    display: 120px;
}

.contact_content {
    text-align: center;
}

.contact_txt {
    margin-top: 48px;
}

.btn_item_contact {
    margin-top: 48px;
}

/* top-gallery pcのcss */
@media screen and (min-width:769px) {
    .section_contact {
        margin-top: 270px;
    }

    .contact_txt {
        margin-top: 60px;
    }

    .btn_item_contact {
        margin-top: 60px;
    }
}/* pc 769px */


/* ================================
top-gallery
=================================*/
.section_gallery {
    margin-top: 180px;
    margin-bottom: 120px;
}

.slider {
    max-width: 100%;
    margin: 0 auto;
    overflow: visible;
    display: flex;
    gap: 20px;
}

.slider_bottom {
    margin-top: 20px;
}

.slider_img {
    margin-right: 20px;
    box-shadow: 4px 4px 5px rgba(108,96,89,0.2);
}

.slider_img_tate {
    height: 120px;
    width: 80px;
}
.slider_img_yoko {
    height: 120px;
    width: 180px;
}

/* top-gallery pcのcss */
@media screen and (min-width:769px) {
    .slider_img_tate {
        height: 267px;
        width: 178px;
    }
    .slider_img_yoko {
        height: 267px;
        width: 400px;
    }
}/* pc 769px */


/* ================================
下層ページタイトル
=================================*/
.mainImg_txt_lowerPage {
    background-color: var(--primary-white);
    padding: 12px 24px;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    position: absolute;
    bottom: 0;
    left: 50%;
    /*transform: translateX(-50%);*/
    transform: translate(-50%, 2px);
    text-align: center;
}

.mainImg_txt_lowerPage::before {
    display: block;
    content: '';
    width: 30px;
    height: 30px;
    background-image: url(../images/contact_icon_talk.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    margin: 0 auto;
}

.mainImg_title_lowerPage {
    font-size: 3.2rem;
    white-space: nowrap;
    padding: 0 10px;
    border-bottom: 1px solid var(--primary-brown);
}

/* pcのcss */
@media screen and (min-width:1200px) {
    .mainImg_txt_lowerPage {
        padding: 36px 48px;
    }

    .mainImg_txt_lowerPage::before {
        width: 50px;
        height: 50px;
    }

    .mainImg_title_lowerPage {
        font-size: 4rem;
    }
}/* pc 769px */


/* ================================
about_service_history
=================================*/
.service_section_history {
    margin-top: 60px;
}

.service_history_img,
.service_history_content {
    margin-top: 48px;
}

.service_history_content {
    text-align: center;
}

.service_history_txt_first1 {
    font-size: 2.8rem;
}

.service_history_txt_first2 {
    font-size: 2rem;
}

.service_history_txt_middle {
    margin-top: 36px;
}

.service_history_point {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    padding-bottom: 200px;
}

.service_history_point_content {
    width: 300px;
}

.service_history_point_content::before {
    display: block;
    content: '';
    width: 375px;
    height: 375px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: -10;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.service_history_point_contentLife::before {
    background-image: url(../images/service_circle_green.webp);
}
.service_history_point_contentBond::before {
    background-image: url(../images/service_circle_pink.webp);
}
.service_history_point_contentCare::before {
    background-image: url(../images/service_circle_blue.webp);
}

.service_history_point_detail {
    transform: translateY(30%);
}

.service_history_point_title {
    font-size: 2.4rem;
    font-weight: bold;
}
.service_history_point_subtitle {
    font-weight: bold;
    border-bottom: 1px solid var(--primary-brown);
}

.service_history_point_txt {
    width: 250px;
    margin: 0 auto;
}

.btn_item_history {
    margin-top: 48px;
    margin-bottom: 84px;
}

/*600-1020*/
@media screen and (min-width:710px) and (max-width:1020px) {
    .service_history_point {
        gap: 20px;
    }

    .service_history_point_contentLife,
    .service_history_point_contentCare {
        transform: translateX(-50%) !important;
    }

    .service_history_point_contentBond {
        transform: translateX(50%) !important;
    }

    .service_history_point_content::before {
        width: 400px;
        height: 400px;
        left: auto;
        transform: translateX(-12%);
    }
}

/*1020-*/
/* about_service pcのcss */
@media screen and (min-width:1020px) {
    .service_section_history {
        margin-top: 120px;
    }

    .service_history_img,
    .service_history_content {
        margin-top: 80px;
    }

    .service_history_txt_first1 {
        font-size: 3.2rem;
    }

    .service_history_txt_middle {
        margin-top: 48px;
    }

    .service_history_point {
        flex-direction: row;
        justify-content: space-evenly;
        gap: 0;
    }

    .service_history_point_content::before {
        width: 400px;
        height: 400px;
        left: auto;
        transform: translateX(-12%);
    }

    .btn_item_history {
        margin-top: 80px;
        margin-bottom: 120px;
    }
}/* pc 769px */


/* ================================
about_service_common business&memory共通項目
=================================*/
.service_common {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.service_about_common {
    font-size: 1.8rem;
    text-align: center;
    margin-top: 36px;
}

.service_content_common li:nth-of-type(2) {
    margin-top: 36px;
}

.service_item_common {
    padding: 48px 12px;
    border-radius: 5px;

    display: flex;
    flex-direction: column;
}

.service_item_position_common {
    display: flex;
    flex-direction: column;
    gap: 36px;
}

.service_item_imgPortrait_sp {
    display: block;
}

.service_item_imgPortrait_pc,
.service_item_imgLandscape_pc {
    display: none;
}

.service_item_title_common {
    font-size: 2.4rem;
    text-align: center;
}

.service_item_title_second {
    margin-top: 36px;
}

.service_detail_common {
    padding: 0;
}

.detail_title_common {
    font-size: 2rem;
    font-weight: bold;
    border-bottom: 1px solid var(--primary-brown);
}

.detail_title_common,
.detail_list_common {
    padding: 12px;
}

.service_example_list {
    display: flex;
    flex-wrap: wrap;
}

.service_example_item {
    padding: 5px 12px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.service_example_item::before {
    content: '';
    background-image: url(../images/service_other_check.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 18px;
    width: 18px;
    display: block;
}

.service_explane {
    text-align: center;
}

/* about_service pcのcss */
@media screen and (min-width:1410px) {
    .service_common {
        gap: 70px;
    }

    .service_about_common {
        font-size: 2rem;
        margin-top: 70px;
    }

    .service_content_common li:nth-of-type(2) {
        margin-top: 70px;
    }

    .service_item_common {
        padding: 36px 80px;

        flex-direction: row;
        align-items: center;
        gap: 24px;
        justify-content: center;
    }

    .service_item_position_common {
        /*flex-direction: row;*/
        gap: 0px;
        height: 712px;
        width: 649px;
        justify-content: space-between;
    }

    .service_item_imgPortrait_sp {
        display: none;
    }

    .service_item_imgPortrait_pc,
    .service_item_imgLandscape_pc {
        display: block;
    }

    /*yoko*/
    .service_item_imgLandscape_pc {
        width: 649px;
        height: 433px;
    }
    /*tate*/
    .service_item_imgPortrait_pc,
    .service_business_picture {
        width: 475px;
        height: 712px;
    }

    .service_detail_common {
        padding: 3px 80px;
    }

    .service_item_title_common {
        font-size: 3.2rem;
    }

    .service_item_title_second {
        margin-top: 0px;
    }
}/* pc 769px */

/* ================================
about_service_business
=================================*/
.service_section_business {
    background-color: var(--primary-rightBeige);
    padding-top: 60px;
    padding-bottom: 84px;
}

.service_business_item {
    background-color: var(--primary-white);
}

.btn_price::after {
    background-image: url(../images/btn_arrow_down.svg);
    width: 10px;
    height: 13px;
}

.price_title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}
.price_title::after {
    content: '';
    background-image: url(../images/service_price_down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 11px;
    width: 20px;
    display: block;
    transform: rotate(180deg);
    transition: transform 0.3s;
}
.price_title.active_price::after {
    content: '';
    background-image: url(../images/service_price_down.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    height: 11px;
    width: 20px;
    display: block;
    transform: rotate(360deg);
}

.price_list {
    display: block;
}

.price_item {
    line-height: 2;
    display: flex;
    gap: 36px;
}

.price_item dt {
    font-weight: normal;
}

.price_item dt::before {
    content: '・';
}

/* about_service pcのcss */
@media screen and (min-width:1410px) {
    .service_section_business {
        padding-top: 120px;
        padding-bottom: 120px;
    }
}/* pc 769px */


/* ================================
about_service_memory
=================================*/
.service_section_memory {
    padding-top: 60px;
    padding-bottom: 84px;
}

.service_memory_item {
    background-color: var(--primary-rightBeige);
}

.service_memory_item_price {
    text-align: center;
}

.service_item_price_size {
    font-size: 3.2rem;
}

/* about_service pcのcss */
@media screen and (min-width:1410px) {
    .service_section_memory {
        padding-top: 120px;
        padding-bottom: 120px;
    }

    .service_item_price_size {
        font-size: 3.6rem;
    }
}/* pc 769px */


/* ================================
about_service_delivery
=================================*/
.service_section_delivery {
    padding-top: 60px;
    padding-bottom: 84px;
}

.service_delivery,
.btn_item_delivery {
    margin-top: 36px;
}

.service_delivery {
    background-color: var(--primary-rightBeige);
    padding: 36px 24px;
    border-radius: 10px;
}

.service_delivery_item::before {
    content: '・';
}

.service_delivery_item_sub li::before {
    content: '→';
    padding-left: 20px;
}

/* about_service pcのcss */
@media screen and (min-width:1410px) {
    .service_section_delivery {
        padding-bottom: 120px;
    }

    .service_delivery,
    .btn_item_delivery {
        margin-top: 48px;
    }

    .service_delivery {
        padding: 36px 80px;
    }
}/* pc 769px */


/* ================================
about_content
=================================*/
.about_about {
    display: flex;
    flex-direction: column;
}

.about_about_photo_sp {
    margin-top: 60px;
}

.about_about_photo_pc,
.about_about_img_sp_hair,
.about_about_img_sp_couple {
    display: none;
}

.about_about_txt_first,
.about_about_txt_second {
    font-size: 2rem;

}

.about_about_txt_first,
.about_about_txt_second,
.about_about_name,
.btn_item_aboutAbout {
    margin-top: 36px;
}
.btn_item_aboutAbout {
    margin-bottom: 36px;
}

@media screen and (min-width:769px) and (max-width:1200px) {
    .about_about_photo_sp {
        display: flex;
        justify-content: space-evenly;
        gap: 20px;
    }

    .about_about_img_sp_hair,
    .about_about_img_sp_couple {
        display: block;
    }

    .about_about_img_sp_girl,
    .about_about_img_sp_couple {
        width: 133px;
        height: 200px;
    }

    .about_about_img_sp_hair {
        width: 300px;
        height: 200px;
    }
}
/* about_content pcのcss */
@media screen and (min-width:1200px) {
    .about_about {
        flex-direction: row;
        align-items: center;
    }

    .about_about_photo_sp {
        display: none;
    }
    .about_about_photo_pc {
        display: block;
        padding: 80px 0;
    }

    .about_about_photo_pc_top {
        display: flex;
        justify-content: space-between;
        gap: 24px;
    }

    .about_about_photo_pc_top_left,
    .about_about_photo_pc_top_right {
        height: 416px;
        display: flex;
    }

    .about_about_photo_pc_top_left {
        align-items: end;
    }

    .about_about_photo_pc_top_right {
        align-items: start;
    }

    .about_about_img_pc_tate {
        width: 229px;
        height: 344px;
    }

    .about_about_photo_pc_bottom {
        margin-top: 60px;
    }

    .about_about_img_pc_yoko {
        width: 516px;
        height: 344px;
    }

    .about_about_content {
        margin-right: 60px;
    }

    .about_about_txt_first,
    .about_about_txt_second {
        font-size: 2.4rem;
    }
    .about_about_name,
    .about_about_mailadress {
        font-size: 2rem;
    }

    .about_about_txt_first,
    .about_about_txt_second,
    .about_about_name,
    .btn_item_aboutAbout {
        margin-top: 60px;
    }
    .btn_item_aboutAbout {
        margin-bottom: 60px;
    }
}/* pc 769px */


/* ================================
contact_section
=================================*/
.contact_wrapper {
    padding: 0 30px;
}

.contact_txt_first,
.contact_txt_second {
    text-align: center;
}
.contact_txt_first {
    margin-top: 60px;
}
.contact_txt_second {
    margin-top: 48px;
    margin-bottom: 60px;
}

.form_item {
    margin-bottom: 36px;
}
.form_item input,
.form_item textarea {
    width: 100%;
    border: 1px solid var(--primary-brown);
    border-radius: 5px;
    padding: 20px 10px;
}

.btn_item_contact {
    margin-top: 30px;
    margin-bottom: 80px;
}
.btn_item_contact button {
    padding: 30px 140px;
}

/* contact_section pcのcss */
@media screen and (min-width:1200px) {
    .contact_wrapper {
        padding: 0 200px;
    }
    .contact_txt_first {
        margin-top: 100px;
    }
    .contact_txt_second {
        margin-top: 60px;
    }

    .form_item {
        margin-bottom: 60px;
    }
}/* pc 769px */


/* ================================
thanks_page
=================================*/
.thanks_content {
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100vh;
}

.thanks_en {
    font-family: 
    "Bilbo",
    cursive ,
    sans-serif;
    font-size: 3.6rem;
    line-height: 1;
}

.thanks_txt {
    font-size: 2.4rem;
    line-height: 2;
}

.btn_thanks {
    margin-top: 16px;
    padding: 15px 60px;
}