/*
    Theme Name: rouken-haru
 */

@charset "UTF-8";

/* リセットCSS */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
    letter-spacing: 0.025em;
    line-height: 1.5;


}
.txt p,p.txt,h2,h3,h4,a span,li,
p.title,p.sub.txt,span.txt,
.sub_txt p,.postscript p,p.answer,
a.dl_pdf,span.title,span.sub_title,span.tit,
.contact a,.contact p,
footer p,.copyright{
    /* 文字のアンチエイリアス */
    transform: rotate(0.03deg);
}
/* ボックスモデルを一貫して扱うためにすべての要素にボックスボーダーを適用 */
* {
    box-sizing: border-box;
}
/* buttonタグリセット */
button {
    all: unset;
    display: inline-block;
    box-sizing: border-box;
    cursor: pointer;
    text-align: center;
    padding: 0;
    margin: 0;
    background: none;
    border: none;
    font: inherit;
    line-height: inherit;
    color: inherit;
}


/* HTML5要素の表示を改善 */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}
html{
    scroll-behavior: smooth;
    scroll-padding: 82px;
}
/* ボディのデフォルトフォントスタイル */
body {
    line-height: 1;
    /* scroll-behavior: smooth; */
}
img{
    image-rendering: -webkit-optimize-contrast;
}
/* リストのスタイルをリセット */
ol, ul {
    list-style: none;
}

/* 引用のスタイルをリセット */
blockquote, q {
    quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
    content: '';
    content: none;
}

/* テーブルのセルパディングをリセット */
table {
    border-collapse: collapse;
    border-spacing: 0;
}
/* aタグのスタイルをリセット */
a{
    text-decoration: none;
    color: inherit;
}
.pc_disp{
    display: block!important;
}
.sp_disp{
    display: none!important;
}

    /* アニメーション管理（SPでは非表示） */
    @media (min-width: 841px) and (max-width: 2560px){
        .fadein {
            opacity: 0;
            transform: translate(0, 0);
            transition: all 1.0s;
          }
          .latency13{
            transition: all 1.3s;
          }
          .latency16{
            transition: all 1.6s;
          }
          .fadein.fadein-left {
            transform: translate(-30px, 0);
          }
          
          .fadein.fadein-right {
            transform: translate(30px, 0);
          }
          
          .fadein.fadein-up {
            transform: translate(0, -30px);
          }
          
          .fadein.fadein-bottom {
            transform: translate(0, 30px);
          }
          
          .fadein.scrollin {
            opacity: 1 !important;
            transform: translate(0, 0) !important;
          }
      }

/* ------------------------------ */
/* 共通 */
/* ------------------------------ */
body{
    font-family: m-plus-rounded-2c, sans-serif;
    font-weight: 400;
    font-style: normal;
    color: #412512;
    font-size: 16px;
    background-color: #FEF6EA;

    /* 幅 */
    max-width: 100%;
    /* overflow-x: hidden; */

    /* ヘッダー分の余白 */
    padding-top: 82px;
}
h2{
    font-family: fot-tsukubrdgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
}
h2{
    color: #AC6A3D;
    font-size: 40px;
    text-align: center;
}
h2::before{
    content: "";
    display: inline-block;
    width: 38px;
    height: 34px;
    background-image: url("./images/ico_h2.svg");
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 6px;
    
}
h2,ul{
    position: relative;
    z-index: 2;
}
.sub_h2{
    position: absolute;
    top: -45px;
    left: -235px;

    z-index: 0;
}
section{
    min-width: 840px;
    padding: 60px 0 0;
    position: relative;
    /* z-index: 1; */
    /* overflow-x: hidden; */
}
section::-webkit-scrollbar{
    display: none;
  }
.content_w{
    width: 800px;
    width: 840px;
    margin: 0 auto;
    position: relative;
    /* overflow-x: hidden; */
}
/* ------------------------------ */
/* ヘッダー */
/* ------------------------------ */
header{
    width: 100vw;

    padding: 0 30px;
    box-sizing: border-box;
    height: 82px;
    border-bottom: 2px solid #AD6B3F;
    background-color: rgba(255,255,255,.9);

    /* background-color: gray; */
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
header .header_w{
    max-width: 1366px;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
}
header .logo img{
    width: 139px;
    object-fit: inherit;
    image-rendering: unset;
}

header .menu_frame,
header .menu_frame ul{
    display: flex;
    align-items: center;
}
header .menu_frame ul{
    column-gap: 27px;
    margin-right: 34px;
    font-family: fot-tsukubrdgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #AD6B3F;
}
header nav a{
    transition: 0.3s;
}
header nav a:hover{
    transition: 0.3s;
    color: #F3A065;
}


/* ヘッダーハンバーガーメニュー */
/* ハンバーガーメニューの基本スタイル */
@media (max-width: 1080px) {
    .menu-toggle {
        display: none;
        display: block;
        background: none;
        border: none;
        cursor: pointer;
        position: relative;
        box-sizing: border-box;
        width: 30px;
        height: 30px;

        /* width: 40px!important; */
        margin-left: 16px;
    }
    
    .menu-icon {
        display: block;
        width: 100%;
        height: 2px;
        height: 3px;
        background: #AC6A3D;
        position: relative;
        transition: all 0.3s;
        
    }
    
    .menu-icon::before,
    .menu-icon::after {
        content: '';
        display: block;
        width: 100%;
        height: 2px;
        height: 3px;
        background: #AC6A3D;
        position: absolute;
        transition: all 0.3s;
    }
    
    .menu-icon::before {
        top: -8px;
        top: -10px;
    }
    
    .menu-icon::after {
        top: 8px;
        top: 10px;
    }
    
    /* メニューとボタンの表示・非表示設定 */
    .nav-menu {
        display: block;
    }

    .menu-toggle {
		display: block!important;
	}

	.nav-menu {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 82px; /* 必要に応じて調整 */
		right: 0;
		background: #fff;
        opacity: 0.9;
		width: 200px; /* 必要に応じて調整 */
		box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        width: 100%;
        box-sizing: border-box;
        /* padding: 0 10px; */
	}

	.nav-menu.active {
		display: block;

	}
    header .nav-menu ul{
        display: block;
        box-sizing: border-box;
        padding: 0 20px;

        margin: 20px 0;
    }
    .nav-menu ul li{
        font-size: 20px;
        margin-bottom: 20px;
        padding-bottom: 4px;
        border-bottom: 1px solid #AD6B3F;
    }
    .nav-menu ul li:last-child{
        border-width: 0;
        margin-bottom: 0;
    }
    header .nav-menu ul a{
        display: block;
        width: 100%;
    }

	.menu-toggle.active .menu-icon {
		background: transparent;
	}

	.menu-toggle.active .menu-icon::before {
		transform: rotate(45deg);
		top: 0;
	}

	.menu-toggle.active .menu-icon::after {
		transform: rotate(-45deg);
		top: 0;
	}
}




/* ------------------------------ */
/* フッター */
/* ------------------------------ */
footer{
    background-color: #F3A065;
    color: #fff;

    padding: 60px 0 0;
}
footer nav ul{
    height: 121px;
    height: 150px;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    row-gap: 16px;
    column-gap: 48px;
    margin-bottom: 30px;
}
footer nav ul li{
    font-weight: 500;
}
footer nav ul li::before{
    content: '';
    display: inline-block;
    width: 5px;
    height: 9px;
    background-image: url("images/chevron-down-solid.svg");
    background-repeat: no-repeat;
    background-size: 5px 9px;
    margin-right: 8px;
}
footer nav a{
    transition: 0.3s;
}
footer nav a:hover{
    transition: 0.3s;
    opacity: 0.7;
}
footer .footer_container{
    display: flex;
    justify-content: space-between;
    width: 100%;
    width:840px;
    margin: 0 auto 60px;
}
footer .footer_container address{
    margin-top: 10px;
}
footer .footer_container .time{
    margin-top: 30px;
}
footer .footer_container .title{
    font-weight: 700;
    border-bottom: 1px solid #fff;
    padding-bottom: 6px;
    margin-bottom: 6px;
}
footer .logo img{
    width: 173px;
}
footer .copyright{
    font-size: 12px;
    color: #412512;
    color: #fff;
    background-color: #FEF6EA;
    background-color: #AC6A3D;
    padding: 10px 0;
    padding: 6px 0;
    text-align: center;
}


/* ------------------------------ */
/* KV */
/* ------------------------------ */
body.page .top_kv,
body.home .top_kv{
    width: 100%;
    /* max-width: 1600px; */
    
    margin: 0 auto;
    position: relative;
}
body.page .top_kv img,
body.home .top_kv img{
    display: block;
    
}
body.page .top_kv .main_kv_pc2,
body.home .top_kv .main_kv_pc2{
    text-align: center;
    max-width: 1176px;
    padding: 0 10px;
    width: 100%;
    /* height: 510px; */
    /* height: 618px; */
    /* min-width: 1200px;
    min-width: 800px; */
    margin: 40px auto 0px;
    object-fit: contain;
    object-position: 50% 50%;


    /* 位置調整用 */
    margin-bottom: -104px;
  
}
body.page .top_kv .main_kv_pc,
body.home .top_kv .main_kv_pc{
    text-align: center;
    width: 1366px;
    width: 100%;
    min-height: 66px;
    /* height: 618px; */
    /* min-width: 1200px;
    min-width: 800px; */
    margin: 40px auto 0px;
    object-fit: cover;
    object-position: 50% 50%;
  
}

/* ------------------------------ */
/* 晴について */
/* ------------------------------ */
section.about{
    padding-top: 90px;
    padding-bottom: 60px;
    overflow-x: hidden;
    background-color: #fff;
}
section.about .content_w{
    overflow-x: visible;
}
section.about .about_main{
    background-color: #FFE5C7;
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    margin-bottom: 84px;
    position: relative;
}
section.about .about_main .deco_img.right{
    position: absolute;
    right: -21px;
    bottom: -44px;
}
section.about .about_main .deco_img.left{
    position: absolute;
    left: -21px;
    bottom: -44px;
}
section.about .about_main h2{
    margin-bottom: 30px;
}
section.about .about_main .txt{
    text-align: center;
}
section.about .bg_frame1,
section.about .bg_frame2{
    position: relative;
}
section.about .bg_frame1::before{
    content: '';
    display: block;
    height: 60px;
    width: 740px;
    background-image: url("./images/ico_foot.svg");
    position: absolute;
    right: -740px;
    top: 60px;
    transform: rotate(-20deg);
}
section.about .bg_frame2::before{
    content: '';
    display: block;
    height: 60px;
    width: 740px;
    background-image: url("./images/ico_foot.svg");
    position: absolute;
    left: -740px;
    bottom: -60px;
    transform: rotate(-20deg);
}
section.about .about_sub{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
section.about .about_sub h3{
    font-family: fot-tsukubrdgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #AC6A3D;
    border-bottom: 1px solid #AC6A3D;
    padding-bottom: 4px;
    font-size: 28px;
    margin-bottom: 12px;
}
section.about .about_sub .txt{
    height: 277px;
    display: table-cell;
    vertical-align: middle;
}
section.about .about_sub img.pic{
    /* box-shadow: 0 3px 6px rgba(0,0,0,.16); */
    filter: drop-shadow(0 3px 6px rgba(0,0,0,.16));
    width: 377px;
}
section.about .about_sub.bg2 img.pic{
    width: 429px;
}
section.about .about_sub.bg1{
    margin-bottom: 40px;
    margin-bottom: 60px;
}
section.about .about_sub.bg1 .txt_frame{
    background-image: url("./images/about_sub_txt1.svg");
    background-repeat: no-repeat;
    position: relative;
}
section.about .about_sub.bg1 .txt_frame img.arrow{
    position: absolute;
    bottom: 0;
    left: -20px;
}
section.about .about_sub.bg2 .txt_frame{
    background-image: url("./images/about_sub_txt2.svg");
    background-repeat: no-repeat;
    position: relative;
}
section.about .about_sub.bg2 .txt_frame{
    position: relative;
}
section.about .about_sub.bg2 .txt_frame img.arrow{
    position: absolute;
    bottom: 0;
    right: -80px;
}
section.about .about_sub.bg2 .txt{
    width: 360px;
    padding-left: 40px;
}
/* スライダー設定 */
section.about .swiper{
    /* width: 100vw!important; */
    margin: 90px 0 0px;
    background-color: #fff!important;
    overflow-x: hidden;
}
section.about .swiper .swiper-slide{
    width: 200px;
    transition-timing-function: linear;
}
section.about .swiper .swiper-slide img{
    width: 200px;
    height: 133px;
    object-fit: cover;
    background-color: #fff!important;
}
section.about .swiper .swiper-slide:nth-child(2n){
    padding-top: 14px;
    /* background-color: #fff!important; */
}
section.about .swiper-wrapper{
    transition-timing-function: linear !important;
}
/* ------------------------------ */
/* お知らせ */
/* ------------------------------ */
section.news{
    background-color: inherit;
    padding-top: 0;
    padding-bottom: 60px;
}
section.news h2{
    background-color: #F3A065;
    color: #fff;
    padding: 30px 0px;
    position: relative;
    margin-bottom: 50px;
}
section.news h2:before{
    background-image: url("./images/ico_h2_w.svg");
}
section.news h2:after{
    content: "";
    display: block;

    width: 0;
    height: 0;
    border-style: solid;
    border-right: 13px solid transparent;
    border-left: 13px solid transparent;
    border-top: 23px solid #F3A065;
    border-bottom: 0;
    position: absolute;
    bottom: -23px;
    left: 50%;
    transform: translateX(-50%);
}
section.news .sub_h2{
    top: 20px;
    left: -220px;
}
/* インスタ */
#sb_instagram .sbi_follow_btn a{
    width: 272px;
    height: 48px;
    line-height: 34px;
    box-sizing: border-box;
    margin-top: 20px;
    font-size: 16px;

    font-family: m-plus-rounded-2c, sans-serif;
    font-weight: 700;
    transform: rotate(0.03deg);
}
#sb_instagram .sbi_follow_btn a:hover, #sb_instagram .sbi_follow_btn a:focus{
    box-shadow: none!important;
    /* background-color: #359dff;
    background-color: inherit!important; */
    opacity: 0.7;
    
}
/* ------------------------------ */
/* サービス・料金 */
/* ------------------------------ */
section.service{
    background-color: #fff;
    padding: 60px 0 0;
    overflow-x: hidden;
    overflow-y: hidden;
}
section.service .content_w{
    overflow-x: visible;
}
section.service .long_plan{
    margin-bottom: 60px;
}
section.service .sub_h2{
    top: -150px;
    left: -250px;
}
section.service h3{
    font-family: fot-tsukubrdgothic-std, sans-serif;
    font-weight: 700;
    font-style: normal;
    color: #AC6A3D;
    border-bottom: 1px solid #AC6A3D;
    padding-bottom: 4px;
    font-size: 28px;
    margin-top: 60px;
    margin-bottom: 12px;
    text-align: center;
}
section.service .use_fee_frame{
    display: flex;
    justify-content: space-between;
    margin: 30px auto 40px;
}
section.service .use_fee .title{
    background-color: #FFDBB2;
    height: 48px;
    text-align: center;
    padding: 8px 0;
    box-sizing: border-box;
    font-size: 22px;
}
section.service .use_fee .price{
    background-color: #FEF6EA;
    height: 48px;
    padding: 8px 0;
    font-size: 22px;
}
section.service .use_fee .price .txt.sub{
    font-size: 12px;
    font-size: 14px;
}
section.service .use_fee .price .txt{
    width: fit-content;
    margin: 0 auto;
    display: block;
    line-height: 1.3;

}
section.service .long_plan .use_fee{
    width: 320px;
}
section.service .postscript{
    background-color: #FEF6EA;
    border-radius: 16px;
    padding: 30px 20px;
    padding-left: 34px;
    box-sizing: border-box;
}
section.service .postscript li{
    list-style-type: "・";
    font-size: 14px;
    font-size: 16px;
    margin-bottom: 10px;
}
section.service .postscript li:last-child{
    margin-bottom: 0;
}
section.service .short_plan .use_fee{
   /* width: 190px; 修正前 */
    width: 150px;
}
section.service .short_plan .postscript{
    position: relative;
}
section.service .short_plan .sub_txt{
    margin-bottom: 60px;
}
section.service .short_plan .sub_txt p{
    margin-bottom: 6px;
}
section.service .short_plan .sub_txt p:last-child{
    margin-bottom: 0;
}
section.service .short_plan .sub_txt p em{
    font-weight: bold;
}
section.service .short_plan .postscript .deco_img{
    position: absolute;
    bottom: -27px;
    right: 0px;
}
section.service .short_plan .postscript p.check_time{
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px ;
}
section.service .short_plan .postscript .txt{
    margin-bottom: 6px;
}
section.service .short_plan .postscript .txt:last-child{
    margin-bottom: 0;
}
section.service .short_plan .dl_pdf{
    display: block;
    width: 272px;
    height: 48px;
    background-color: #DD8620;
    color: #fff;
    font-weight: 700;
    text-align: center;
    border-radius: 6px;
    line-height: 48px;
    margin: 45px auto 60px;
    transition: 0.3s;
}
section.service .short_plan .dl_pdf:hover{
    opacity: 0.7;
    transition: 0.3s;
}
section.service .short_plan .dl_pdf::after{
    content: "";
    display: inline-block;
    background-image: url("./images/ico_download.svg");
    width: 26px;
    height: 20px;
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: sub;
    margin-left: 8px;
}
section.service .other_plan .use_fee_frame{
    display: block;
}
section.service .other_plan .use_fee{
    display: flex;
    height: 128px;
    margin-bottom: 22px;
    width: 100%;
}
section.service .other_plan .use_fee:last-child{
    margin-bottom: 0;
}
section.service .other_plan .use_fee p,
section.service .other_plan .use_fee p .txt{
    height: 100%;
    /* line-height: 128px; */
    text-align: center;
    padding: 0;
    box-sizing: border-box;
}
section.service .other_plan .use_fee p .txt{
    line-height: 128px;
}
section.service .other_plan .use_fee p span.sub_title{
    font-size: 16px;
    font-weight: 400;
    display: inline-block;
}
section.service .other_plan  .title{
    font-weight: 700;
    /* line-height: normal; */
}
section.service .other_plan .transfer .title{
    padding-top: 22px;
}
section.service .other_plan .shampoo .title{
    padding-top: 28px;
}
section.service .other_plan .dog .title{
    padding-top: 48px;
}
section.service .other_plan .sub_title{
    max-width: 220px;
    width: fit-content;
    margin: 0 auto;
    text-align: left;
    letter-spacing: 0.05em;
    margin-top: 8px;
    font-weight: 400;
}
section.service .other_plan .use_fee p .txt .size{
    margin-right: 36px;
}
section.service .other_plan .use_fee p .txt .size:last-child{
    margin-right: 0px;
}
section.service .other_plan .use_fee .title{
    width: 260px;
}
section.service .other_plan .use_fee .price{
    width: calc(100% - 260px);
    line-height: 128px;
}
section.service .other_plan .use_fee .season{
    display: block;
    margin-bottom: 6px;
}
section.service .other_plan .use_fee .tit{
    font-size: 16px;
    font-weight: 700;
    margin-right: 16px;
    width: 104px;
    display: inline-block;
    color: #DD8620;
}
section.service .other_plan .use_fee.dog p .txt{
    text-align: left;
    width: fit-content;
    margin: 0 auto;
    padding-top: 30px;
}
section.service .other_plan .use_fee .txt{

}
section.service .facility_frame{
    margin: 70px calc(50% - 50vw); 
    width: 100vw;     
    display: flex;
    justify-content: center;
    column-gap: -10px;
    background-image: url("./images/facility04.svg");
    background-repeat: no-repeat;
    background-position:  center 65%;
    /* background-size: 100vw; */
}
section.service .facility_frame img{
    filter: drop-shadow(3px 3px 10px rgba(0,0,0,.16));
    width: 280px;
}
section.service .postscript{
    font-size: 14px;
    font-size: 16px;
    margin-bottom: 60px;
}
section.service .postscript h4{
    font-size: 22px;
    color: #DD8620;
    text-align: center;
    margin-bottom: 30px;
    font-weight: 700;
}
section.service .postscript em{
    color: #C52727;
    font-weight: 700;
    margin-top: 10px;
    display: block;
}
section.service .message{
    background-color: #FFE5C7;
    padding: 60px 0;
}
section.service .message .content_w{
    background-color: #fff;
    padding: 40px 30px 0;
    border-radius: 16px;
    box-sizing: border-box;
    position: relative;
    overflow: visible;
}
section.service .message .content_w h3{
    margin-top: 0;
}
section.service .message .content_w img{
    width: 628px;
    display: block;
    margin: 30px auto 0;
}
section.service .message .content_w:before{
    content: "";
    background-image: url("./images/ico_foot_short.svg");
    background-repeat: no-repeat;
    width: 180px;
    height: 120px;
    display: block;
    transform: rotate(-16deg);
    position: absolute;
    bottom: -55px;
    left: -55px;
}

/* ------------------------------ */
/* お客様の声 */
/* ------------------------------ */
section.voice{
    padding-bottom: 60px;
}
section.voice .sub_h2{
    top: -30px;
    left: -190px;
   
    /* z-index: -1; */
}
section.voice .review{
    margin-top: 30px;
}
section.voice li{
    display: flex;
    column-gap: 30px;
    margin-bottom: 20px;
}
section.voice li .icon{
    width: 88px;
    height: 88px;
}

section.voice li .box{
    position:relative;
    display: block;
    
    background:#FFFFFF;
    padding:20px;
    box-sizing: border-box;
    border:1px solid #DD8620;
    border-radius:16px;
    -webkit-border-radius:10px;
    -moz-border-radius:10px;
}
section.voice li .box:after,
section.voice li .box:before{
    border: solid transparent;
    content:'';
    height:0;
    width:0;
    pointer-events:none;
    position:absolute;
    right:100%;
    top:30%;
    top: 35px;
}
section.voice li .box:after{
    border-color: rgba(255, 255, 255, 0);
    border-top-width:8px;
    border-bottom-width:8px;
    border-left-width:13px;
    border-right-width:13px;
    margin-top: -8px;
    border-right-color:#FFFFFF;
}
section.voice li .box:before{
    border-color: rgba(221, 134, 32, 0);
    border-top-width:9px;
    border-bottom-width:9px;
    border-left-width:14px;
    border-right-width:14px;
    margin-top: -9px;
    margin-right: 1px;
    border-right-color:#DD8620;
}
section.voice li .title{
    display: block;
    font-size: 18px;
    font-weight: 700;
    color: #DD8620;
    margin-bottom: 4px;
    letter-spacing: 0.005em;
}
section.voice li .txt{
    display: block;
    font-size: 14px;
    font-size: 16px;
}
section.voice li:last-child{
    margin-bottom: 0;
}

/* ------------------------------ */
/* よくあるご質問 */
/* ------------------------------ */
section.qa{
    background-color: #fff;
}
section.qa .qa_list{
    margin-top: 60px;
    padding-bottom: 60px;
}
section.qa .qa_list li{
    margin-bottom: 20px;
}
section.qa .qa_list li:last-child{
    margin-bottom: 0;
}
section.qa .qa_list li h3.question{
    color: #DD8620;
    border: 1px solid #DD8620;
    font-weight: 700;
    font-size: 18px;
    height: 50px;
    line-height: 50px;
    padding: 0 25px;
    box-sizing: border-box;
    position: relative;
    cursor: pointer;
    background-color: #fff;
}
section.qa .qa_list li h3::after{
    content: "";
    background-image: url("./images/qa_arrow.svg");
    width: 20px;
    height: 10px;
    display: inline-block;
    background-repeat: no-repeat;
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
}
section.qa .qa_list li p.answer{
    padding: 20px;
    background-color: #FEF6EA;
    margin: 0 5px;
    box-sizing: border-box;
    display: none;
}

/* ------------------------------ */
/* お問い合わせ先 */
/* ------------------------------ */
section.contact{
    /* padding-bottom: 60px; */
}
section.contact .link_frame{
    margin-top: 60px;
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
}
section.contact .contact_link p{
    font-size: 12px;
    text-align: center;
    margin-bottom: 4px;
}
section.contact .contact_link a{
    display: block;
    width: 260px;
    height: 60px;
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    background-color: #DD8620;
    border-radius: 30px;
    text-align: center;
    line-height: 60px;
    position: relative;
    transition: 0.3s;
}
section.contact .contact_link a:hover{
    transition: 0.3s;
    opacity: 0.7;
}
section.contact .contact_link a:before{
    content: "";
    margin-right: 8px;
    display: inline-block;
    background-repeat: no-repeat;
    background-size: contain;
    vertical-align: middle;
    margin-top: -4px;
}
section.contact .contact_link.tell a:before{
    background-image: url("./images/ico_tell.svg");
    width: 18px;
    height: 23px;
}
section.contact .contact_link.insta a:before{
    background-image: url("./images/ico_insta_w.svg");
    width: 24px;
    height: 24px;
}
section.contact .contact_link.mail a:before{
    background-image: url("./images/ico_mail.svg");
    width: 26px;
    height: 18px;
}

section.contact .open_time em{
    font-weight: 700;
}
section.contact .open_time{
    margin-bottom: 30px;
}
section.contact .map{
    margin-top: 40px;
    height: 280px;
    height: 350px;
    height: 299px;
}
section.contact .map iframe{
    width: 100%;
    height: 280px;
    height: 350px;
    height: 299px;
}

@media (min-width: 768px) and (max-width: 1024px) {
    .sub_h2{
        left: 0!important;       
    }
    section.news .sub_h2{
        top: -70px;
    }
}