@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap');

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
html{
    overflow-y: scroll;
    font-size: 62.5%;
}
body{
    font-family: 'Shippori Mincho B1', serif;
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2;
    letter-spacing: 0.08em;
    color: #1c1c1c;
    text-size-adjust: 100%;
}
a{
    text-decoration: none;
}
a:hover{
    opacity: .7;
    transition: all .2s;
}
img{
    border: 0;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
}
ul{
    list-style: none;
    padding-left: 0;
}

.ff-sanserif{
    font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}
.container {
	max-width: 1280px;
	width: 100%;
	margin: 0 auto;
	padding-left: 20px;
	padding-right: 20px;
}
.flex-box{
    display: flex;
}

/*========================================
ヘッダー
========================================*/
#header{
    position: relative;
    height: 100vh;
}
#header nav{
    position: absolute;
    top: 20px;
    left: auto;
    width: 100%;
    z-index: 2;
}
#header nav ul{
    display: flex;
    justify-content: center;
    gap: 0 40px;
}
#header nav ul li{
    display: flex;
    align-items: center;
    gap: .5em;
}
#header nav ul li::before{
    content: "";
    background: url(../img/listhead01.png) no-repeat;
    display: block;
    width: 15px;
    height: 14px;
}
#header a{
    color: #fff;
}

/* ～～～～～～～～～～～～～～～
メインビジュアル 
～～～～～～～～～～～～～～～ */
.main_catch{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 2;
}
.index_mv{
    position: absolute;
    top:0;
    z-index: 1;
}
.slick_mv{
    position:relative;
    z-index: 1;
    /*↑z-indexの値をh1のz-indexの値よりも小さくして背景に回す*/
    height: 100%;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}
.mv_item01{
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0) 100%), url(../img/slide01.jpg);
}
.mv_item02{
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0) 100%), url(../img/slide02.jpg);
}
.mv_item03{
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0) 100%), url(../img/slide03.jpg);
}
.mv_item04{
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0) 100%), url(../img/slide04.jpg);
}
.mv_item05{
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0) 100%), url(../img/slide05.jpg);
}
.mv_item06{
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0) 100%), url(../img/slide06.jpg);
}
.mv_item07{
    background: linear-gradient(to bottom, rgba(0,0,0,0.5) 0%,rgba(0,0,0,0.2) 10%,rgba(0,0,0,0) 100%), url(../img/slide07.jpg);
}
.slick_mv_item{
    width: 100%;/*各スライダー全体の横幅を画面の高さいっぱい（100%）にする*/
    height:100vh;/*各スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
    background-repeat: no-repeat;/*背景画像をリピートしない*/
    background-position: center;/*背景画像の位置を中央に*/
    background-size: cover;/*背景画像が.slider-item全体を覆い表示*/
}
/*========================================
フッター
========================================*/
#footer{
    background: #1c1c1c;
    color: #fff;
    padding-bottom: 80px;
}
#footer .container{
    border-bottom: 1px solid #393939;
    padding: 60px 0;
}
.f_guide{
    width: 50%;
    padding: 0 40px;
}
.f_guide section+section{
    margin-top: 40px
}
.f_guide h2{
    display: flex;
    align-items: center;
    gap: .5em;
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 1em;
}
.f_guide h2::before{
    content: "";
    display: block;
    background: url(../img/listhead01.png) no-repeat;
    width: 15px;
    height: 14px;
}
.f_guide p{
    font-size: 1.4rem;
}
.f_guide p+p{
    margin-top: 1em;
}
.f_info{
    padding: 40px 0;
}
.f_info .flex-box{
    align-items: center;
    justify-content: center;
    gap: 40px;
    margin-bottom: 20px;
}
.f_info address{
    font-style: normal;
    font-size: 1.2rem;
    line-height: 1.5;
}
.f_info address a{
    color: #fff;
}
.btn-backtohome{
    display: flex;
    align-items: center;
    justify-content: center;
}
.btn-backtohome a{
    display: block;
    border: 1px solid #393939;
    background-color: #262626;
    color: #666;
    padding: .5em 2em;
    font-size: 1.4rem;
}
.copy{
    background: #393939;
    text-align: center;
    color: #666;
    font-size: 1.3rem;
    line-height: 1;
    padding: 20px 0;
}
#pagetop{
    position: fixed;
    right: 0px;
    bottom: 0px;
    z-index: 99;
}
#fixedbanner{
    position: fixed;
    width: calc(100% - 80px);
    bottom: 0;
    left: 0;
    z-index: 98;
    background: #C32B10;
}
#fixedbanner a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4%;
    background: url(../img/bg_fixedbanner.png) no-repeat right;
    height: 80px;
}
#fixedbanner a::before{
    content: "";
    background: url(../img/fixedbanner_txt02.png) no-repeat;
    display: block;
    width: 164px;
    height: 72px;
}

/**/
#hayawari{
    background: #FE7C3C url(../img/top14_bg.png) repeat-x top;
    text-align: center;
    padding: 40px 0 60px;
}
#hayawari h2{
    padding: 20px 0;
}
#hayawari .outer{
    background: url(../img/hayawari_bg.png);
    border-radius: 10px;
    padding: 10px;
}
#hayawari .inner{
    border: 1px solid #FE7C3C;
    background: url(../img/discount.png) no-repeat left top;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.5;
    padding: 40px 0;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}
#hayawari .fs-large{
    font-size: 4rem;
}
#hayawari .fc-orange{
    color: #FE7C3C;
    font-size: 5.6rem;
}
#hayawari .present{
    margin-top: 20px;
    text-align: left;
    align-items: center;
    gap: 40px;
}
br.sp{
    display: none;
}
/**/
#about{
    background: url(../img/contents1_bg01.png) no-repeat right,
url(../img/contents1_bg02.jpg) no-repeat left bottom #1c1c1c;
    padding: 60px 0 0 0;
    text-align: center;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
}
#about .outer{
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid #CDB670;
    padding: 3px;
}
#about .inner{
    background: rgba(0,0,0,0.7);
    border: 1px solid #CDB670;
    padding: 60px;
    
    align-items: center;
    gap: 40px;
}
#about .fs-large{
    font-size: 4.8rem;
}
#about .fs-midium{
    font-size: 2.8rem;
    padding-left: 1em;
}
#about .bottom{
    padding: 80px 0 120px;
}
/**/
#safety{
    background: url(../img/contents2_bg02.png) no-repeat left 0 top 0,
url(../img/contents2_bg03.png) no-repeat right 0 bottom 0,
url(../img/contents2_bg01.png) no-repeat left #fff;
    padding: 160px 0;
    text-align: center;
    font-size: 2.4rem;
    font-weight: 600;
}
.listhead02{
    max-width: 720px;
    margin: 2em auto;
    border-radius: 6px;
    background: #FBF5EA;
    padding: 1em 1.5em;
    color: #FF5B02;
    display: flex;
    align-items: center;
    gap: .5em;
}
.listhead02::before{
    content: "";
    background: url(../img/listhead02.png) no-repeat;
    display: block;
    width: 16px;
    height: 16px;
}
/**/
#reason{
    background: url(../img/contents3_bg.jpg) repeat;
    text-align: center;
    padding-bottom: 80px;
}
#reason h2{
    font-size: 4.8rem;
    color: #E35833;
}
#reason .fs-large{
    font-size: 8rem;
}
.reasonlist{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
}
.reasonlist li{
    background: #fff;
    border-radius: 6px;
    color: #A5804E;
    font-size: 2.8rem;
    font-weight: 600;
    text-align: left;
    padding: .5em 0 .5em 150px;
    position: relative;
}
.reasonlist li+li{
    margin-top: 30px;
}
.reasonlist li:nth-child(1):before{
    content: "";
    background: url(../img/contents3_pic02.png) no-repeat;
    display: block;
    width: 118px;
    height: 98px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.reasonlist li:nth-child(2):before{
    content: "";
    background: url(../img/contents3_pic03.png) no-repeat;
    display: block;
    width: 118px;
    height: 98px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.reasonlist li:nth-child(3):before{
    content: "";
    background: url(../img/contents3_pic04.png) no-repeat;
    display: block;
    width: 118px;
    height: 98px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
.reasonlist li:nth-child(4):before{
    content: "";
    background: url(../img/contents3_pic05.png) no-repeat;
    display: block;
    width: 118px;
    height: 98px;
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
}
/**/
.seizou-upper{
    background: url(../img/contents4_pic01.jpg) no-repeat top center / cover;
    padding-top: 320px;
}
#seizou{
    background: url(../img/contents4_bg.jpg) repeat;
    text-align: center;
    padding: 60px 0 80px;
}
#seizou .container{
    max-width: 720px;
}
#seizou h2{
    font-size: 4.8rem;
    color: #E35833;
    line-height: 1.5;
    margin-bottom: 1em;
}
#seizou p{
    font-size: 1.8rem;
    font-weight: 500;
}
#seizou p+p{
    margin-top: 1em;
}
/**/
#lineup .head{
    background: url(../img/contents5_bg01.png) no-repeat left bottom,
url(../img/contents5_bg02.png) no-repeat top right #1c1c1c;
    padding: 80px 0;
}
#lineup .head h2{
    text-align: center;
    line-height: 1.5;
    margin-bottom: 20px;
}
#lineup .head h2 span{
    display: block;
    font-size: 8rem;
    color: #fff;
}
#lineup .head h3{
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}
#lineup .head h3::before{
    content: "";
    display: block;
    background: #A38152;
    width: calc((100% - 240px)/2);
    height: 2px;
}
#lineup .head h3::after{
    content: "";
    display: block;
    background: #A38152;
    width: calc((100% - 240px)/2);
    height: 2px;
}
.select-outer{
    background: #A38152;
    padding:10px;
    border-radius: 10px;
}
.select-inner{
    border: 1px solid #FFD869;
    justify-content: space-between;
    gap: 20px;
    padding: 40px;
}
.select-inner > div{
    width: calc(33.33% - 20px);
}
.select-inner h4{
    color: #fff;
    font-size: 2rem;
}
.select-inner h4::before{
    content: "";
    background: url(../img/listhead01.png) no-repeat;
    display: inline-block;
    width: 15px;
    height: 14px;
    margin-right: .5em;
}
.select-inner ul.flex-box{
    flex-wrap: wrap;
    gap: 0 20px;
}
.select-inner ul.flex-box li{
    width: calc(50% - 20px);
}
.select-inner ul li{
    border-bottom: 1px dashed #FFD869;
}
.select-inner ul li::before{
    content: "";
    background: url(../img/arrow01.png) no-repeat;
    display: inline-block;
    width: 13px;
    height: 13px;
    margin-right: .5em;
}
.select-inner ul li a{
    color: #fff;
}



.lineup_pic{
    position: relative;
    max-width: 1240px;
    height: 720px;
    margin: 0 auto;
}
.lineup_pic figure{
    position: absolute;
    max-width: 1240px;
    height: 720px;
    top: 0;
    left: 0;
    z-index: 1;
}
.lineup_pic .sinakazu{
    position: absolute;
    top: 15px;
    left: -20px;
    width: 72px;
    height: 72px;
    color: #fff;
    font-weight: 600;
    border-radius: 100px;
}
.lineup_pic .sinakazu .fs-large{
    font-size: 3.2rem;
}
.lineup_pic .name{
    color: #A38052;
    text-align: center;
    background: #fff;
    width: 260px;
    height: 260px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;

    justify-content: center;
    align-items: center;
}

.lineup_pic .name .sub{
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 10px;
}
.lineup_pic .name h3{
    font-size: 7.2rem;
    line-height: 1.2;
}
.lineup_pic .name h3 span{
    display: block;
    font-size: 1.6rem;
}
.lineup_pic .cap{
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: 2;
    width: 480px;
    height: 480px;
    background: url(../img/caption_bg.png) no-repeat right bottom / cover;
    color: #fff;
    font-weight: 600;
    text-align: right;
    padding-right: 40px;
    padding-bottom: 40px;

    justify-content: flex-end;
    align-items:flex-end;
}
.lineup_pic .cap .souryo{
    display: inline-block;
    background: #E35833;
    padding: 0 1em;
}
.lineup_pic .cap .price{
    font-size: 2.4rem;
    line-height: 1.5;
    padding-bottom: 10px;
    border-bottom: 1px solid #fff;
    margin-bottom: 10px;
}
.lineup_pic .cap .price .fs-large{
    font-size: 4.8rem;
}
.lineup_pic .cap .btn-order{
    margin-top: 20px;
}
.lineup_pic .cap .btn-order a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    text-align: center;
    border: 1px solid #666;
    background: #1c1c1c;
    color: #fff;
    font-size: 2rem;
    padding: .25em 1.5em;
}
.lineup_pic .cap .btn-order a::after{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
}
.lineup_pic .cap .btn-order a::before{
    content: "";
    background: url(../img/icon_cart.png) no-repeat;
    display: block;
    width: 24px;
    height: 20px;
}

/* 慶賀 */
.bg_keiga{
    background: url(../img/top7_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
    padding-top: 40px;
    padding-bottom: 60px;
}
.pic_keiga .sinakazu{
    background: #7A4171;
}
/* 京舞 */
.bg_kyomai{
    background: url(../img/top8_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
    padding-top: 40px;
    padding-bottom: 60px;
}
.pic_kyomai .sinakazu{
    background: #223A70;
}
/* 平安 */
.bg_heian{
    background: url(../img/top9_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
    padding-top: 40px;
    padding-bottom: 60px;
}
.pic_heian .sinakazu{
    background: #852E19;
}
/* 春陽 */
.bg_shunyo{
    background: url(../img/top10_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
    padding-top: 40px;
    padding-bottom: 60px;
}
.pic_shunyo .sinakazu{
    background: #E6B422;
}
/* ゆく年くる年 */
.bg_yukukuru{
    background: url(../img/top11_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
    padding-top: 40px;
    padding-bottom: 60px;
}
.pic_yukukuru .sinakazu{
    background: #839B5C;
}
.pic_yukukuru .name h3{
    font-size: 4rem;
}
/* 方丈 */
.bg_hojo{
    background: url(../img/top12_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
    padding-top: 40px;
    padding-bottom: 60px;
}
.pic_hojo .sinakazu{
    background: #7EBEAB;
}
/* 祇園 */
.bg_gion{
    background: url(../img/top13_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
    padding-top: 40px;
    padding-bottom: 60px;
}
.pic_gion .sinakazu{
    background: #F2A0A1;
}
/**/

.back-selectmenu{
    text-align: right;
    margin-bottom: 40px;
    margin-top: 10px;
}
.back-selectmenu a{
    color: #1C1C1C;
    font-size: 1.4rem;
    font-weight: 600;
    line-height: 1;
}
.back-selectmenu a::before{
    content: "▲";
    display: inline-block;
}

/****slick****/
.slick_lineup{
    /*background: rgba(255, 255, 255, .8);
    border-radius: 10px;
    padding: 40px;
    max-width: 1240px;*/
    font-weight: 700;
}
.slick_lineup .arrow_prev,
.slick_lineup .arrow_next{
    cursor: pointer;
    display: flex !important;
    align-items: center;
}
.slick_lineup .arrow_prev{
    position: absolute;
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.slick_lineup .arrow_next{
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}
.slick_lineup .arrow_prev::before{
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    border-left: 2px solid #1c1c1c;
    border-bottom: 2px solid #1c1c1c;
    transform: rotate(45deg);
}
.slick_lineup .arrow_next::after{
    content: "";
    display: block;
    width: 32px;
    height: 32px;
    border-top: 2px solid #1c1c1c;
    border-right: 2px solid #1c1c1c;
    transform: rotate(45deg);
}
.slick_lineup .slick-disabled{/* 最初と最後は矢印を非表示 */
    display: none !important;
}
/****/
.lineup_wrapper_1{
    background: url(../img/top7_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
                border-bottom: 10px solid #E6CA81;
}
.lineup_wrapper_2{
    background: url(../img/top8_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
                border-bottom: 10px solid #E6CA81;
}
.lineup_wrapper_3{
    background: url(../img/top9_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
                border-bottom: 10px solid #E6CA81;
}
.lineup_wrapper_4{
    background: url(../img/top10_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
                border-bottom: 10px solid #E6CA81;
}
.lineup_wrapper_5{
    background: url(../img/top11_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
                border-bottom: 10px solid #E6CA81;
}
.lineup_wrapper_6{
    background: url(../img/top12_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
                border-bottom: 10px solid #E6CA81;
}
.lineup_wrapper_7{
    background: url(../img/top13_bg01.png) repeat-x top,
url(../img/bg_lineup.png) no-repeat bottom / cover;
                border-bottom: 10px solid #E6CA81;
}
.lineup-title{
    text-align: center;
    margin: 0;
    font-size: 4.8rem;
    line-height: 1;
}

.lineup-notice{
    display: flex;
    justify-content: center;
    margin-top: 20px;
}
.lineup-notice span{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 .75em;
    color: #C32B10;
    background: #fff;
    border: 1px solid #C32B10;
    border-radius: 999px;
    padding: 1.5vw 2vw;
    font-size: 1.8rem;
    font-weight: 800;
    line-height: 1;
}
.lineup-notice span::before,
.lineup-notice span::after{
    content: "";
    display: block;
    background: url(../img/bg_lineup-notice.png) no-repeat center;
    width: 14px;
    height: 14px;
}

.lineup-pic{
    margin-top: 20px;
}
.lineup-pic img{
    margin-left: auto;
    margin-right: auto;
}

/* 品目リスト */
.lineup-list{
    max-width: 720px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 20px;
    display: flex;
    justify-content: center;
    background: rgba(255, 255, 255, .8);
    border-radius: 10px;
    padding: 1.25em 2em;
}
.lineup-list ul{
    display: flex;
    flex-wrap: wrap;
    gap: .75em 1.5em;
    /*counter-reset: hinmoku 0;*/
}
.lineup-list ul li{
    line-height: 1;
    font-size: 1.4rem;
}
/*
.lineup-list ul li::before{
    content: "";
    counter-increment: hinmoku 1;
    content: counter(hinmoku) ".";
}
*/
/* カウンター */
.slick_lineup .slick-counter{
    text-align: center;
    margin-top: 20px;
}

/*------------------------------
ラインナップ用モーダルウィンドウ
------------------------------*/
.modaal-container{
    background: transparent;
    color: #fff;
    max-width: 1240px;
    box-shadow: none;
    border: #CDB670 1px solid;
}
.modaal-content-container{
    padding: 3px;
}
.lineup-inner{
    align-items: center;
    /*gap: 0 40px;*/
    background: #1C1C1C;
    border: #CDB670 1px solid;
}
.lineup-inner figure{
    width: 600px;
}
.lineup-inner .txt{
    width: calc(100% - 600px);
    padding: 0 40px;
    font-family: serif;
}
/* 閉じるボタン */
.modaal-close{
    right: 40px;
    top: 40px;
    width: 96px;
    height: 96px;
}
.modaal-close:focus,
.modaal-close:hover{
    outline: 0;
    background: transparent;
}
.modaal-close:after,
.modaal-close:before{
    top: 0;
    left: 48px;
    width: 2px;
    height: 96px;
    border-radius: 0;
    background: #fff;
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
    background: #999;
}
/**/
#haisou{
    background: url(../img/bg_nami.png) repeat center;
    text-align: center;
    padding: 60px 0;
}
#haisou .container{
    max-width: 720px;
}
#haisou h2{
    font-size: 6.4rem;
    line-height: 1;
    margin-bottom: .5em;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: .5em;
}
#haisou h2::before,
#haisou h2::after{
    content: "";
    background: url(../img/goyoyaku_ttl_bg.png) no-repeat;
    display: block;
    width: 46px;
    height: 42px;
}
#haisou .btn-order a{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1em;
    color: #C32B10;
    border: 2px solid #C32B10;
    font-size: 2.4rem;
    padding: .5em 1em;
}
#haisou .btn-order a::before{
    content: "";
    background: url(../img/icon_cart02.png) no-repeat;
    display: block;
    width: 24px;
    height: 20px;
}
#haisou .btn-order a::after{
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    border-top: 2px solid #C32B10;
    border-right: 2px solid #C32B10;
    transform: rotate(45deg);
}
#haisou h3{
    background: #FDEDEA;
    border-radius: 99px;
    color: #C32B10;
    font-size: 1.6rem;
    padding: .25em .5em;
    margin-bottom: 1em;
}
#haisou .phone{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
}
#haisou .phone::before{
    content: "";
    background: url(../img/icon_phone.png) no-repeat;
    display: block;
    width: 18px;
    height: 24px;
}
#haisou .phone a{
    color: #C32B10;
    font-size: 2.8rem;
}
#haisou > section > section{
    border-bottom: 1px solid #FDEDEA;
    padding: 40px 0;
    margin-bottom: 40px;
}
#haisou > section > section p{
    font-size: 1.4rem;
}
#haisou .outer{
    border: 1px solid #1c1c1c;
    padding: 3px;
    margin-top: 40px;
}
#haisou .inner{
    border: 1px solid #1c1c1c;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    text-align: left;
    padding: 20px;
}
#haisou .inner::before{
    content: "";
    background: url(../img/haisou_icon.png) no-repeat;
    display: block;
    width: 48px;
    height: 48px;
}
#haisou .inner p{
    font-size: 2rem;
    line-height: 1.2;
}
#haisou .inner span{
    display: block;
    font-size: 1.2rem;
}