@charset "UTF-8";
@import url("https://use.typekit.net/zxg0pxv.css");

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    font-family: "Noto Serif JP", serif;
}

body {
    height: auto;
    overflow-x: hidden;
    font-family: "Noto Serif JP", serif;
}

/* ヘッダー */
/* 流れるテキスト */
.loop_wrap {
    display: flex;
    align-items: center;
    overflow: hidden;
    height: 20px;
    background-color: #D5C8BC;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    font-family: 'Noto Serif JP', sans-serif;
}

.loop_area {
    display: flex;
    animation: loop-slide 75s infinite linear 1s both;
    list-style: none;
    margin: 0;
    padding: 0;
}

.loop_area .content {
    width: 1500px;
}

@keyframes loop-slide {
    from {
      transform: translateX(0);
    }
    to {
      transform: translateX(-100%);
    }
}

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

    .loop_wrap {
        height: 15px;
        font-size: 10px;
    }

    .loop_area .content {
        width: 350px;
    }

}


.header {
    width: 100%;
    height: 94px;
    position: fixed;
    top: 0;
    right: 0;
    background-color: #fff;
    z-index: 9999;
}

.header_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 0 0 25px;
    border-bottom: 1px solid #CBBBAC;
}

.header_logo {
    display: flex;
}

.header_nav {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 73px;
    font-family: 'Noto Serif JP', sans-serif;
}

.header_nav_list,
.header_nav_snslist {
    display: flex;
    gap: 25px;
}

.header_nav_list {
    font-size: 14px;
}

.header_nav_snslist {
    margin: 0 0 0 30px;
}

.header_btn {
    padding: 16px 8px;
    background-color: #CBBBAC;
    color: #fff;
    text-align: center;
    font-size: 14px;
    margin: 0 0 0 30px;
}

.header_btn_text {
    margin: 10px 0 0 0;
} 


/* ハンバーガーメニュー */
@media screen and (max-width: 1024px) {

    .header {
        height: 65px;
    }

    .header_logo img {
        width: 130px;
    }

    .header_top {
        height: 50px;
    }

    .header_nav {
        position: fixed;
        top: 10px;
        right: -100%;
        transition: .5s;
        position: fixed;
        top: 0;
        right: 0;
        background-color: #eee;
        min-height: 100vh;
        min-width: 60%;
        padding: 20px 70px 20px 20px;
        line-height: 1.8;
        transition: all .4s;
        transform: translateX(100%);
        display: block;
    }

    .header_nav a {
        display: block;
    }
    
    .header_nav.active {
        transform: translateX(0);
    }

    .header_nav_list {
        display: block;
    }

    .header_nav_list li{
        line-height: 45px;
        border-bottom: 1px solid #A09388;
        padding: 0 0 0 5px;
    }

    .header_nav_snslist {
        margin: 0;
        padding: 20px 0;
        display: flex;
        position: relative;
        left: 1px;
        gap: 28px;
    }

    .header_btn {
        margin: 0;
        padding: 15px 0;
        border-radius: 3px;
    }

    .init_buttom {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .header_btn_text {
        margin: 0;
    }

    .header_hamburger {
        position: fixed;
        top: 24px; 
        right: 15px;
        z-index: 9999;
        width: 25px;
        height: 30px;
    }

    .header_hamburger span {
        position: absolute;
        top: 20%;
        width: 100%;
        border-top: 2px solid #CBBBAC;
        transform-origin: center;
        transition: all .4s;
    }

    .header_hamburger span:nth-of-type(2) {
        top: 50%;
    }

    .header_hamburger span:nth-of-type(3) {
        top: 80%;
    }
    
    .header_hamburger.active span {
        border-color: #CBBBAC;
        transform: rotate(45deg);
        top: 50%;
    }

    .header_hamburger.active span:nth-of-type(2) {
        transform: none;
        opacity: 0;
    }

    .header_hamburger.active span:nth-of-type(3) {
        transform: rotate(-45deg);
    }

} 

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

    .header_nav {
        padding: 20px;
    }

    .header_top {
        padding: 0 0 0 15px;
    }

    .header_nav_list,
    .header_btn {
        font-size: 13px;
    }
    
}

.main {
    margin-top: 150px;
    text-align: center;
}

.greetings_title {
    background: linear-gradient(transparent 70%, #E6DDD5 40%);
    padding: 0 4px;
    letter-spacing: 2px;
}

.main h1 {
    font-size: 30px;
    text-align: center;
}

h2 {
    font-size: 24px;
    font-weight: bold;
    margin-top: 50px;
    margin-bottom: 50px;
}

.greeting_title {
    font-size: 2rem;
    font-weight: bold;
    margin-top: 120px;
    margin-bottom: 20px;
}

.greeting_message {
    font-size: 1rem;
    line-height: 2.0;
    margin-top: 50px;
}


@media screen and (max-width: 768px) {
    
    .main {
        margin: 100px 0 0 0;
        font-size: 14px;
        line-height: 21px;
    }

    .greetings_title {
        font-size: 24px;
    }

    .greeting h2 {
        font-size: 22px;
    }

    .greeting_message {
        font-size: 14px;
    }

}

/* サービス */
.service {
    margin: 150px 0 0;
    padding: 0 24px;
}

.service_title,
.service_subtitle {
    background: linear-gradient(transparent 70%, #E6DDD5 40%);
    padding: 0 4px;
    letter-spacing: 2px;
}

.service h1 {
    font-size: 30px;
    text-align: center;
}

.service h2 {
    font-size: 25px;
}

.service_text,
.service_Charges,
.service_attention {
    line-height: 50px;
    letter-spacing: 2px;
}

.service_text {
    margin: 30px 0;
}

.service_Charges {
    font-size: 14px;
}

.service_Charges,
.service_attention {
    color: #991D1D;
}

.service_attention {
    text-align: center;
    margin: 60px 0 0 0 ;
}

.service_box_hp,
.service_box {
    display:flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 70px;
    margin: 150px 0 0;
    scroll-margin-top: 190px;
}

.service_box_hp{
    margin: 100px 0 0;
}

.service_box:nth-child(even),
.service_box_hp {
    flex-direction: row-reverse;
}

.service_box:nth-child(even) .text {
    text-align: right;
}

/* ボタン */
.service_btn a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 23px 40px;
    font-weight: bold;
    width: 280px;
    color: #CBBBAC;
    letter-spacing: 2px;
    border: 2px solid #CBBBAC;
    transition: 0.3s;
    border-radius: 3px;
}
  
.service_btn a::after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 2px solid #CBBBAC;
    border-right: 2px solid #CBBBAC;
    transform: rotate(45deg);
}
  
/* .businesses_btn a:hover {
    text-decoration: none;
    background-color: #bbbbbb;
} */

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

    .service {
        margin: 150px 0 0 0;
    }

    .service_text_span,
    .service_Charges {
        display: inline-block;
    }
    
    .service_box_hp,
    .service_box {
        gap: 13px;
    }
}
  
@media screen and (max-width: 768px) {

    .service {
        margin: 100px 0 0 0;
    }


    .service h1 {
        font-size: 24px;
    }

    .service h2 {
        font-size: 22px;
        margin: 30px 0 0 0;
    }

    .service_box {
        display: block;
        flex-direction: column;
        margin: 70px 0 0 0;
    }

    .service_box_hp {
        display: block;
        flex-direction: column;
        margin: 50px 0 0 0;
    }

    .service_text_hp,
    .service_text,
    .service_Charges,
    .service_attention {
        line-height: 40px;
        letter-spacing: 2px;
        font-size: 14px;
    }

    .service_text {
        margin: 20px 0;
    }

    .service_Charges {
        font-size: 12px;
    }

    .service_attention {
        margin: 30px 0 0 0 ;
        line-height: 30px;
        font-size: 12px;
    }

    .service_box:nth-child(even) {
        flex-direction: column;
    }

    .service_group {
        text-align: center;
    }

    .service img {
        width: 300px;
        height: 200px;
    }

    .pict {
        text-align: center;
    }

    .box:nth-child(even) .service_group {
        text-align: center;
    }

    .service_btn a {
        margin: 0 auto;
    }

    .service_attention_span {
        display: inline-block;
    }

}

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

    .service img {
        width: 250px;
        height: 150px;
    }
}


/* お問い合わせ */
.Contact {
    background-color: rgba(203, 187, 172, 0.75);
    margin-top: 50px;
}

.Contact_title {
    background: linear-gradient(transparent 70%, #D2C2B7 40%);
    padding: 0 4px;  
}

.Contact h1 {
    font-size: 30px;
    text-align: center;
    color: #fff;
    padding: 40px 0;
}

.Contact_btn {
    display: block;
    border: 2px solid #FFFFFF;
    background-color: rgba(203, 187, 172, 0.6);
    width: 350px;
    padding: 30px 0;
    font-size: 20px;
    color: #fff;
    font-weight: bold;
    letter-spacing: 1px;
    text-decoration: none;
    text-align: center;
    margin: 0 auto;
}

.Contact_text {
    color: #fff;
    font-size: 18px;
    letter-spacing: 3px;
    line-height: 150%;
    text-align: center;
    padding: 40px 0;
}

/* フッター */
.footer {
    display: flex;
    padding: 30px 0;
    margin: 120px 50px 0;
    border-top: 1px solid #CBBBAC;
    justify-content: center;
}

.footer_context {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.footer_group {
    display: grid;
    grid-template-columns: repeat(auto-fit, 120px);
    gap: 5px 10px;
    justify-content: center;
}

.footer_title {
    font-size: 14px;
    font-weight: bold;
}

.footer_li {
    padding: 10px 0;
    width: 140px;
    font-size: 12px;
    font-family: 'Noto Serif JP', sans-serif;
}

/* 下 */
.logo_sns_group {
    display: flex;
    gap: 50px;
    align-items: center;
    color: #fff;
    background-color: #CBBBAC;
    padding: 50px;
}

.logo_sns_ul {
    padding: 20px 0 0;
}

.logo_sns_li {
    display: flex;
    gap: 30px;
}

.footer_mail {
    color: #000;
}

.footer_text {
    padding: 5px 0;
    color: #000;
    font-size: 12px;
    text-align: center;
    font-family: 'Noto Serif JP', sans-serif;
    background-color: #D5C8BC;
}



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

    .footer {
        margin: 70px 24px 0;
    }

    .footer_context {
        flex-wrap: wrap;
        gap: 40px;
    }
    
    .footer_title {
        font-size: 16px;
    }

    .footer_mail {
        font-size: 14px;
    }

    .footer_li {
        font-size: 12px;
        padding: 8px 0;
    }
    
    .footer_text {
        font-size: 10px;
    }
    
    .footer_title {
        font-size: 14px;
    }

    .logo_sns_group {
        display: block;
        text-align: center;
    }

    .logo_sns_ul {
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }

}

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

    .footer {
        margin: 70px 0 0;
    }
}