@charset "utf-8";


body {
    font-family: "Noto Serif JP", serif;
    background-color: white;
    font-size: clamp(12px, 1vw, 18px);
    overflow: auto;
    letter-spacing: 0.2em;
    width: 100%;
}

p {
    display: block;
    unicode-bidi: isolate;
}

body img {
    max-width: 100%;
}

body li {
    list-style: none;
}

body a{
    text-decoration: none;
}

.all_wrap {
    width: 100%;
}
/*-----------------------メイン開始--------------------------*/
.menubtn {
    display: none;
}

.nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 15%;
    height: 100vh;
    position: fixed;
    text-align: center;
    padding-top: 3em;
    z-index: 999;
}

.top_logo {
    width: 2em;
}

.nav_wrap {
    margin-top: 3em;
}

.menu_list {
    line-height: 3em;
}

.menu_list a {
    color: #353535;
    font-weight: 800;
    font-size: 70%;
}

.menu_list a:hover {
    color: #cec18e;
    transition: 0.3s;
}


/* ---------------
スクロールダウンの位置
---------------*/
.scroll {
    position: fixed;
    bottom: 20vh;
    writing-mode: vertical-rl;
    color: #cec18e;
    font-size: 80%;
}
/* ---------------
線のアニメーション部分
--------------- */
.scroll::before {
    animation: scroll 2s infinite;
    background-color: #cec18e;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
/* ---------------
線のアニメーション
--------------- */
@keyframes scroll {
    0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
    }
    50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
    }
    51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
    }
    100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
    }
}

.sp_scroll {
    display: none;
}

.topimage_wrap {
    width: 85%;
    margin-left: 15%;
    position: relative;
}

.top_image {
    display: block !important;
    width: 100%;
    border-radius: 0 0 0 5em;
}

.sp_topimage {
    display: none !important;
}

.sp_toplogo {
    display: none;
}

.top_hd_wrap {
    position: absolute;
    top: 25%;
    left: 6%;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    gap: 1em;
}

.top_hd {
    writing-mode: vertical-rl;
    padding: 1vw;
    background-color: white;
    font-size: 90%; 
    font-weight: 700;
    letter-spacing: 0.5em;
    color: #353535;
    border-radius: 1em;
}

.sp_top_hd_wrap {
    display: none;
}

/*---------------------------メイン終了----------------------------*/
/*---------------------------サービス開始--------------------------*/
#service,
#question,
#greeting,
#contact{
    background-color: #f2eee2;
    margin-top: 14em;
    margin-left: 15%;
    width: 85%;
    border-radius: 5em 0 0 5em;
    padding: 20em 0 10em 0;
    position: relative;
}

h1 {
    position: absolute;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    margin-top: -13.5em;
}

h1 img {
    height: 6em;
    object-fit: cover;
}

.heading_name {
    writing-mode: vertical-rl;
    color: #353535;
    font-weight: 700;
    letter-spacing: 0.5em;
    padding-top: 1em;
    font-size: 50%;
}

.service_wrap {
    display: flex;
    justify-content: center;
    width: 100%;
    gap: 0 8em;
}

.service_left {
    width: 40%;
}


.sticky_inner {
    position: sticky;
    top: 2vh;
}

.service_message_l {
    font-weight: 700;
    line-height: 2em;
    color: #353535;
    margin-bottom: 1em;
    font-size: 120%;
}

.service_message {
    font-weight: 700;
    line-height: 2em;
    color: #353535;
    font-size: 90%;
}

.price_image {
    margin-top: 2em;
    width: 100%;
    display: block;
    min-width: 250px;
    border-radius: 2em;
}

.service_right {
    width: 45%;
    display: flex;
    flex-direction: column;
    gap: 7em 0;
}

.service_card {
    position: relative;
    text-align: center;
}

.service_image {
    width: 100%;
    min-width: 250px;
}

.service_name {
    position: absolute;
    background-color: white;
    border-radius: 1em;
    top: -4vh;
    left: -1vw;
    white-space: nowrap;
    width: 3em;
    height: auto;
    padding: 1em 0;
}

.service_name p {
    writing-mode: vertical-rl;
    text-orientation: upright;
    letter-spacing: 0.5em;
    color: #353535;
    font-size: 100%;
    font-weight: 700;
    margin: 0 auto;
}

/*--------------------------サービス終了------------------------*/
/*--------------------------スライダー開始-----------------------*/
@keyframes horizontal-animation {
    from {
    transform: translateX(0);
    }

    to {
    transform: translateX(-100%);
    }
}

.slider {
    display: flex;
    overflow: hidden;
    margin-top: -40px;
}

.slider-wrapper {
    display: flex;
    animation: horizontal-animation 30s linear infinite;
}

.slide {
    width: 210px;
    margin-right: 40px;
}

.slide img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
}

@media (hover: hover) {
    .slider:hover .slider-wrapper {
    animation-play-state: paused;
    }
}
/*--------------------------スライダー終了-----------------------*/
/*-------------------------よくある質問開始----------------------*/
.inner {
    width: 80%;
    margin: 0 auto;
}

/*---------------
アコーディオン開始
---------------*/
.accordion_container {
    max-width: 880px;
    margin: 0 auto;
}

.accordion_title {
    color: #353535;
    font-weight: 700;
    padding: 2em 3em;
    text-align: left;
    position: relative;
    z-index: 1;
    cursor: pointer;
    transition-duration: 0.2s;
    border-bottom: 1px solid #d2d3be;
}

.icon_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 50%;
    right: 5%;
    width: 40px;
    height: 40px;
    margin-top: -20px;
    box-sizing: border-box;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.5s;
}

.icon {
    display: block;
    width: 18px;
    height: 18px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transform-origin: center center;
    transition-duration: 0.5s;
    position: relative;
}

.accordion_title.open 
.icon_wrap {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
}

.icon:before, .icon:after {
    display: flex;
    content: '';
    background-color: #cec18e;
    width: 18px;
    height: 4px;
    position: absolute;
    top: 7px;
    left: 0;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    transform-origin: center center;
}

.icon:before {
    width: 4px;
    height: 18px;
    top: 0;
    left: 7px;
}

.accordion_title.open 
.icon_wrap .icon:before {
    content: none;
}

.accordion_title.open 
.icon_wrap .icon:after {
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

.accordion_inner {
    display: none;
    padding: 20px 20px;
    border-bottom: 1px solid #d2d3be;
    box-sizing: border-box;
}

.ac_inner_wraper {
    height: 50px;
}

p.txt_a_ac {
    padding-left: 20px;
    color: #353535;
    font-weight: 700;
}

/*---------------
アコーディオン終了
---------------*/
/*--------------------------よくある質問終了---------------------------*/
/*---------------------------ごあいさつ開始----------------------------*/
.greeting_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5em;
}

.greeting_left {
    width: 50.5%;
}

.profile {
    color: #353535;
    font-size: 120%;
    font-weight: 600;
    line-height: 3em;
    border-bottom: 1px solid #d2d3be;
}

.profile_text {
    color: #353535;
    font-weight: 700;
    line-height: 2.5em;
    margin-top: 1em;
}

.greeting_right {
    width: 28.5%;
}

.photo {
    display: block;
    width: 100%;
    border-radius: 2em;
}
/*---------------------------ごあいさつ終了-------------------------*/
/*---------------------------お問合せ開始----------------------------*/
.contact_wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 5em;
}

.contact_left {
    width: 40%;
}

.contact_message {
    color: #353535;
    font-weight: 700;
    line-height: 2.5em;
}

.contact_right {
    width: 30vw;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 3em 2em;
    border-radius: 2em;
    text-align: center;
}

.qr{
    width: 30%;
    display: block;
    margin: 0 auto;
    margin-bottom: 2vh;
}

.btn_insta {
    padding: 1em;
    border-radius: 3em;
    margin: 0 auto;
    background-color: #ffffff;
    text-decoration: none;
    color: #cec18e;
    font-size: 120%;
    border: 1px solid #cec18e;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    transition-duration: 0.5s;
}

.btn_insta:hover {
    background-color: #cec18e;
    color: #fff;
}


.fa-instagram {
    font-size: 130%;
    margin-right: 0.5vw;
}
/*----------------------------お問合せ終了--------------------------*/
/*----------------------------フッター開始--------------------------*/
footer {
    margin-top: 10em;
    text-align: center;
    padding: 4em;
    border-top: 1px solid #ebe7d9;
}

.footer_logo {
    margin-bottom: 2em;
    height: 2em;
}

.footer_copy {
    font-size: 60%;
    font-weight: 600;
    color: #353535;
}
/*---------------------------フッター終了--------------------------*/
/*------------------------トップに戻るボタン開始--------------------*/
.container_02 {
    display: none;
    margin: 0;
    padding: 0;
    height: 200px;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 5vw;
    bottom: 4vh;
    transform: scale(0.8);/*右下を基準に80％小さくする*/
    transform-origin: right bottom;/*右下を基準にしてる*/
    }

.container_02 a:hover {
    opacity: 0.7;
    }

.scroll-down_02 {
    position: relative;
    width: 200px;
    height: 200px;
    color: #cec18e;
    font-family: serif;
    text-decoration: none;
    }

.circle-text_02 {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: rotate 20s linear infinite;
    }

.circle-text_02 span {
    position: absolute;
    left: 50%;
    font-size: 16px;
    transform-origin: 0 100px;
    }

.arrow_02 {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 30px;
    border-left: 1px solid #b39e41;
    border-bottom: 1px solid #b39e41;
    transform: translate(-50%, -50%) rotate(135deg);
    animation: pulse_02 2s infinite;
    margin-top: 10px;
    }

@keyframes rotate {
    0% {
    transform: rotate(0deg);
    }
    100% {
    transform: rotate(360deg);
    }
    }

@keyframes pulse_02 {
    0%,
    100% {
    transform: translate(-50%, -50%) rotate(135deg) scale(1);
    }
    50% {
    transform: translate(-50%, -50%) rotate(135deg) scale(1.1);
    }
    }
/*-------------------------トップに戻るボタン終了---------------------*/
/*--------------------------ローディング開始-------------------------*/
.loader_bg {
    align-items: center; /* 上下左右中央 */
    background-color: #ffffff;
    display: flex; /* 上下左右中央 */
    height: 100vh; /* 縦いっぱい */
    justify-content: center; /* 上下左右中央 */
    left: 0;
    position: fixed; /*コンテンツは見えないようにする*/
    top: 0;
    width: 100vw; /* 横幅いっぱい */
    z-index: 9999;
}

.loader img {
    height: 18em;
}
/*---------------------------ローディング終了------------------------*/


/*---------------------------------------------------------------------------
SP css 開始
----------------------------------------------------------------------------*/

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


.menubtn {
    position: fixed;
    z-index: 102;
    right: 3vw;
    top: 3vw;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    width: 4.5em;
    height: 4.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border: 1px solid #36233c;
}

.menubtn i {
    color: #36233c;
    font-size: 225%;
}

.close_m {
    position: fixed;
    z-index: 101;
    right: 3vw;
    top: 3vw;
    background-color: rgb(255, 255, 255);
    border-radius: 50%;
    width: 4.5em;
    height: 4.5em;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.nav {
    width: 100%;
    background-color: #f2eee2;
    margin: 0 auto;
    height: 100vh;
    z-index: 99;
    position: fixed;
    top: -100%;
}

.nav_inner {
    margin: 0 auto;
    margin-top: 8vh;
    width: 40%;
}

.nav_wrap {
    margin-top: 8em;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
    margin-top: 12vh;
}

.menu_list {
    padding-bottom: 2em;
    font-size: 90%;
}

.menu_list a {
    font-size: 120%;
}

.scroll {
    display: none;
}

/* ---------------
スクロールダウンの位置
---------------*/
.sp_scroll {
    display: block;
    position: relative;
    left: 5em;
    bottom: -2em;
    writing-mode: vertical-rl;
    color: #cec18e;
    font-size: 80%;
}
/* ---------------
線のアニメーション部分
--------------- */
.sp_scroll::before {
    animation: scroll 2s infinite;
    background-color: #cec18e;
    bottom: -115px;
    content: "";
    height: 100px;
    left: 0;
    margin: auto;
    position: absolute;
    right: 0;
    width: 1px;
}
/* ---------------
線のアニメーション
--------------- */
@keyframes scroll {
    0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
    }
    50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
    }
    51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
    }
    100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
    }
}

.top_image {
    display: none !important;
}

.topimage_wrap {
    position: relative;
    width: 95%;
    margin-left: 5%;
}

.sp_topimage {
    display: block !important;
    width: 100%;
    border-radius: 0 0 0 4em;
}

.top_hd_wrap {
    display: none;
}


.sp_toplogo {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 20%;
    background-color: #ffffff;
    padding: 2em 2em 3em 1em;
    border-radius: 0 0 2em 0;
    max-width: 100px;
    min-width: 80px;
}

.sp_top_hd_wrap {
    display: block;
    display: flex;
    gap: 5vw;
    flex-wrap: nowrap;
    flex-direction: row-reverse;
    position: absolute;
    top: 12vh;
    left: 34vw;
}

.sp_top_hd {
    writing-mode: vertical-rl;
    padding: 1vw;
    font-size: 120%; 
    font-weight: 700;
    letter-spacing: 0.4em;
    color: #ffffff;
    text-shadow: 0 0 5px #567385,0 0 10px #567385;
}

#service,#question,#greeting,#contact{
    background-color: #f2eee2;
    margin-top: 14em;
    margin-left: 5%;
    width: 95%;
    border-radius: 4em 0 0 4em;
    padding-bottom: 8em;
}

.inner {
    width: 80%;
}

h1 {
    position: absolute;
    top: -7vh;
    right: 0;
    left: 0;
    width: 100%;
    margin: auto;
    z-index: 2;
}

h1 img {
    height: 4em;
    object-fit: contain;
}

/*サービス開始*/

.service_wrap {
    display: block;
}

.service_right {
    width: 100%;
    margin-top: 5em;
}

.service_left {
    width: 100%;
}

/*よくある質問開始*/

.accordion_title {
    padding: 20px 60px 20px 15px;
}

/*ごあいさつ開始*/

.greeting_wrap {
    display: flex;
    flex-direction: column-reverse;
}

.greeting_left {
    width: 100%;
}

.greeting_right {
    width: 100%;
    margin-bottom: 2em;
}

.greeting_right img {
    width: 60%;
    margin: 0 auto;
}

/*お問合せ開始*/

.contact_wrap {
    display: block;
}

.contact_left {
    width: 100%;
}

.contact_right {
    width: 100%;
    margin-top: 3em;
}

/*トップに戻るボタン*/

.container_02 {
    display: none;
    margin: 0;
    padding: 0;
    height: 200px;
    justify-content: center;
    align-items: center;
    position: fixed;
    right: 3vw;
    bottom: 3vh;
    transform: scale(0.5);/*右下を基準に50％小さくする*/
    transform-origin: right bottom;/*右下を基準にしてる*/
    }

}