body {
    margin: 0;
    padding: 0;
    font-family: 'M PLUS 1p', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    color: #000;
}
.wrapper {
    width: 100%;
    margin: 0 auto;
}
main{
    position: relative;
}
img{
    width: 100%;
}

a:hover{
    opacity: 0.8;
}

body .pc_view{
    display: block;
}

body .sp_view{
    display: none;
}
  
@media screen and (max-width: 768px){
    body .pc_view {
        display: none !important;
    }
    body .sp_view {
        display: block !important;
    }
}

/* container */
.container{
    margin: 0 auto;
}

/* head_menu_area */
.head_menu_area{
    position: fixed;
    display: flex;
    flex-wrap: wrap;
    z-index: 999;
    width: 100%;
    height: 100vh;
}
.head_menu_area .left_menu{
    width: 70%;
    height: 100vh;
    background: #000;
    opacity: 0.7;
}
.head_menu_area .right_menu{
    width: 30%;
    height: 100vh;
    background: #FBF4EB;
    padding: 4%;
}

/* fv */
.fv{
    padding: 1.5% 0 27.9%;
}
.fv .header{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    width: 88vw;
    justify-content: space-between;
}
.fv .header h1{
    width: 7%;
}
.fv .header .ttl_logo{
    width: 22%;
    margin: 0.5% 0 0 3%;
}
.fv nav{
    width: 76vw;
    margin: 1% auto 0;
}
.fv nav ul{
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}
.fv nav ul li{
    width: 20%;
}


/*　ハンバーガーメニュー　*/
.btn_hamburger {
    display : block;
    position: fixed;
    z-index : 101;
    right: 2%;
    top: 2%;
    width: 3.6vw;
    height: 3.6vw;
    cursor: pointer;
    text-align: center;
    background: #2F2F2F;
    border-radius: 2vw;
}
.btn_hamburger.active{
    background: none;
    position: fixed;
}
.btn_hamburger span {
    display : block;
    position: absolute;
    width   : 40%;
    height  : 2px ;
    left: 30%;
    background : #FFF;
    -webkit-transition: 0.3s ease-in-out;
    -moz-transition   : 0.3s ease-in-out;
    transition        : 0.3s ease-in-out;
}
.btn_hamburger.active span{
    background: #2F2F2F;
}
.btn_hamburger span:nth-child(1) {
    top: 36%;
}
.btn_hamburger span:nth-child(2) {
    top: 50%;
}
.btn_hamburger span:nth-child(3) {
    top: 64%;
}
  
.btn_hamburger.active span:nth-child(1) {
    top: 50%;
    left: 29%;
    background :#2f2f2f;
    -webkit-transform: rotate(-45deg);
    -moz-transform   : rotate(-45deg);
    transform        : rotate(-45deg);
}

.btn_hamburger.active span:nth-child(2),
.btn_hamburger.active span:nth-child(3) {
    top: 50%;
    background :#2f2f2f;
    -webkit-transform: rotate(45deg);
    -moz-transform   : rotate(45deg);
    transform        : rotate(45deg);
}

/* メニュー */
.global_menu {
    display: none;
    position: fixed;
    z-index : 100;
    top  : 0;
    left : 0;
    color: #fff;
    background: rgba( 71,70,73,0.6 );
    text-align: center;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: all 0.6s;
    overflow: auto;
}
.global_menu.active {
    display: block;
    opacity: 100;
    opacity: 1;
}
.menu_inner{
    float: right;
    min-width: 300px;
    width: 32%;
    height: 100%;
    padding: 5% 5% 5% 3%;
    overflow: auto;
    background: #FBF4EB;
    transform: translateX(100%);
}
.global_menu.active .menu_inner{
    transform: translateX(0%);
}
.global_menu ul {
    margin: 0 auto;
    padding: 0;
    width: 100%;
}

.global_menu ul li {
    list-style-type: none;
    padding: 0;
    width: 100%;
    transition: .4s all;
    color:#000;
}
.global_menu ul li:last-child {
    padding-bottom: 0;
}
.global_menu ul li:hover{
    background :#ddd;
}

.global_menu ul li a {
    display: block;
    color: #2f2f2f;
    padding: 1em 0;
    text-decoration :none;
}

.ac_menu{
    margin: 10% 0 0;
}
.ac_menu .btn_ac_link{
    border-top: 2px solid #2F2F2F;
}
.ac_menu .btn_ac_link a{
    display: block;
    color: #2F2F2F;
    font-size:1.5vw;
    text-align: left;
    padding: 6% 0;
}
.ac_menu .btn_ac{
    position: relative;
    background: url(../img/common/border_solid.svg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    color:#2F2F2F;
    font-size:1.1vw;
    font-weight: 800;
    text-align: left;
    padding: 8% 0;
    cursor: pointer;
}
.ac_menu .btn_ac span{
    position: absolute;
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 2vw;
    background: #2f2f2f;
    display: block;
    top: 20%;
    right: 3%;
}
.ac_menu .btn_ac span::after,
.ac_menu .btn_ac span::before {
    content: "";
    position: absolute;
    right: 47%;
    top: 38%;
    width: 2px;
    height: 0.6em;
    background-color: #fff;
    transition: all 0.3s;
}
.ac_menu .btn_ac span::after {
    transform: rotate(90deg);
}
.ac_menu .btn_ac.active span{
    position: absolute;
    width: 2.6vw;
    height: 2.6vw;
    border-radius: 2vw;
    background: #FFF;
    border:2px solid #2f2f2f;
    display: block;
    top: 20%;
    right: 3%;
}
.ac_menu .btn_ac.active span::after {
    transform: rotate(90deg);
    background: #2f2f2f;
    top: 38%;
    right: 47%;
}

.ac_menu .txt_ac_menu{
    display:none;
    text-align: left;
    font-size: 1vw;
    text-decoration: underline;
    padding: 0 0 5%;
}
.ac_menu .txt_ac_menu li{
    line-height: 0.7;
}
.ac_menu .txt_ac_sub_menu{
    width: 100%;
    background: #FBF4EB;
    padding:0 0 0 10%;
}
.menu_inner .link_other{
    background: url(../img/common/border_solid.svg) no-repeat;
    background-size: 100% auto;
    background-position: center top;
    padding: 8% 0 0;
}

.menu_inner .link_other li{
    text-align: left;
    line-height: 0.6;
}

.menu_inner .link_other li a{
    text-decoration: underline;
    color:#2F2F2F;
    font-size: 1vw;
}

@media screen and (max-width: 768px){
    .fv{
        padding: 5% 0 62%;
    }
    .fv .header{
        width: 83vw;
    }
    .fv .header h1{
        width: 12vw;
        margin: 0.5% 0 0;
    }
    .fv .header .ttl_logo{
        width: 40vw;
        margin: 1% 0 0 4%;
    }
    .fv nav{
        width: 90vw;
        margin: 3% auto 0;
    }
    .fv nav ul li{
        width: 24%;
    }
    /* head_menu */
    .head_menu{
        position: absolute;
        top: 1%;
        right: -1%;
        background: #2f2f2f;
        cursor: pointer;
        width: 40px;
        height: 40px;
        border-radius: 20px;
    }
    
    .head_menu span{
        display: inline-block;
        transition: all .4s;
        position: absolute;
        left: 11px;
        height: 2px;
        border-radius: 2px;
        background: #fff;
        width: 45%;
    }
    
    .head_menu span:nth-of-type(1) {
        top:12px;
    }

    .head_menu span:nth-of-type(2) {
        top:20px;
    }

    .head_menu span:nth-of-type(3) {
        top:28px;
    }

    .head_menu.active span:nth-of-type(1) {
        top: 13px;
        left: 11px;
        transform: translateY(6px) rotate(-45deg);
        width: 45%;
    }
    
    .head_menu.active span:nth-of-type(2) {
        opacity: 0;
    }
    
    .head_menu.active span:nth-of-type(3){
        top: 25px;
        left: 11px;
        transform: translateY(-6px) rotate(45deg);
        width: 45%;
    }
    /* ハンバーガーメニュー */
    .btn_hamburger {
        right: 4%;
        top: 2%;
        width: 10vw;
        height: 10vw;
        border-radius: 5vw;
    }
    .btn_hamburger.active span{
        width: 70%;
    }
    /* アコーディオン */
    .menu_inner{
        float: none;
        min-width: auto;
        width:100%;
        height: 100%;
        padding: 5% 6%
    }
    .ac_menu .btn_ac_link a {
        font-size: 4vw;
    }
    .ac_menu .btn_ac{
        font-size: 4vw;
    }
    .ac_menu .btn_ac span {
        position: absolute;
        width: 8vw;
        height: 8vw;
        border-radius: 4vw;
        background: #2f2f2f;
        display: block;
        top: 26%;
        right: 14%;
    }
    .ac_menu .btn_ac span::after,
    .ac_menu .btn_ac span::before {
        top: 34%;
    }
    .ac_menu .btn_ac.active span {
        position: absolute;
        width: 8vw;
        height: 8vw;
        border-radius: 4vw;
        background: #FFF;
        border: 2px solid #2f2f2f;
        display: block;
        top: 26%;
        right: 14%;
    }
    .ac_menu .txt_ac_menu{
        font-size: 3.5vw;
    }
    .menu_inner .link_other li a{
        font-size: 3.4vw;
    }
}

/* menu */
.menu{
    width: 100%;
    margin: -19% 0 0;
    padding: 0 0 16%;
}
.menu_list{
    width: 64vw;
    margin: 0 auto;
    padding: 4% 7% 4%;
    border-radius: 15px;
    border: 3px solid #2F2F2F;
}

.menu_list h2{
    width: 7vw;
    margin: 0 auto 3%;
}
.menu_list ul{
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.menu_list ul li{
    padding: 1.5% 0 2% 6.6%;
}
.menu_list ul li a{
    font-size:1.5vw;
    font-weight: 800;
}

@media screen and (max-width: 768px){
    .menu{
        width: 100%;
        margin: -72% 0 0;
        padding: 0 0 16%;
    }
    .menu_list{
        width: 84vw;
        margin: 0 auto;
        padding: 7% 3%;
        border: 1px solid #2F2F2F;
    }
    .menu_list h2{
        width: 20vw;
        margin: 0 auto 3%;
    }
    .menu_list ul{
        display: block;
    }
    .menu_list ul li{
        width:80%;
        margin: 0 auto;
        padding: 5% 0 5% 16%;
    }
    .menu_list ul li a{
        font-size:4vw;
    }
}


/* slick */
.gallery li{
    margin: 0 1%;
}
.gallery .slick-arrow{
    width: 4vw;
}
.gallery .slick-next{
    top:48%;
    right:15%;
}
.gallery .slick-prev{
    top:48%;
    left:15%;
}

.gallery .slick-prev.slick-disabled,
.gallery .slick-next.slick-disabled {
    visibility: hidden;
}

.gallery .slick-dots{
    bottom: -40px;
}
@media screen and (max-width: 768px){
    .gallery li{
        margin: 0 1%;
    }
    .gallery .slick-arrow{
        width: 12vw;
    }
    .gallery .slick-next{
        top:48%;
        right:3%;
    }
    .gallery .slick-prev{
        top:48%;
        left:3%;
    }
}

/*modal*/
.modal-open{
	cursor: pointer;
}

.modal-container{
	position: fixed;
    z-index: 999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	text-align: center;
	background: rgba(0,0,0,50%);
	padding: 40px 20px;
	overflow: auto;
	opacity: 0;
	visibility: hidden;
	transition: .3s;
    box-sizing: border-box;
}

.modal-container:before{
	content: "";
	display: inline-block;
	vertical-align: middle;
	height: 100%;
}

.modal-container.active{
	opacity: 1;
	visibility: visible;
}

.modal-body{
	position: relative;
	display: inline-block;
	vertical-align: middle;
	width: 54vw;
}

.modal-close{
    position: absolute;
    display: flex;
    justify-content: center;
    top: -18px;
    right: -18px;
    width: 50px;
    height: 50px;
    border-radius: 25px;
    background: #fff;
    border: 1px solid #000;
    font-size: 39px;
    color: #000;
    cursor: pointer;
    line-height: 44.85px;
}

.modal-content{
	background: #fff;
	text-align: left;
	padding: 7% 6% 7% 15%;
    border-radius: 12px;
    border: 1px solid #000;
}
.modal-content .modal-inner{
    width: 100%;
    max-height: 700px;
    overflow:auto;
    padding: 0 8% 0 0px;
}

.modal-content .modal-inner::-webkit-scrollbar {
    width: 8px;
}
.modal-content .modal-inner::-webkit-scrollbar-thumb {
    background: #FFF3A6;
    border-radius: 25px;
    border: 2px solid #2f2f2f;
}
.modal-content .modal-inner::-webkit-scrollbar-track{
    background: #FFF;
    border: 2px solid #2f2f2f;
    border-radius: 25px;
}

.modal-content h3{
    font-size: 1.1vw;
    font-weight: bold;
    margin: 8% 0 2%;
}
.modal-content h4{
    position: relative;
    padding: 0 0 0 3%;
    font-size: 1.2vw;
    margin: 0 0 1%;
}
.modal-content .ttl_modal{
    width: 20vw;
    margin: 0 auto 6%;
}
.modal-content .ttl_modal_ll{
    width: 16vw;
    margin: 0 auto 4%;
}
.modal-content .ttl_modal_l{
    width: 14vw;
    margin: 0 auto 4%;
}
.modal-content .ttl_modal_ml{
    width: 11vw;
    margin: 0 auto 4%;
}
.modal-content .ttl_modal_m{
    width: 8vw;
    margin: 0 auto 4%;
}
.modal-content .ttl_modal_sm{
    width: 6.5vw;
    margin: 0 auto 4%;
}
.modal-content .ttl_modal_s{
    width: 5vw;
    margin: 0 auto 4%;
}
.modal-content .ttl_modal_ss{
    width: 3vw;
    margin: 0 auto 4%;
}
.modal-content .img_modal{
    width: 60%;
    margin: 0 auto 6%;
}

.modal-content .border_modal{
    width: 100%;
    margin: 8% 0;
}

.modal-content ul.list_modal{
    width: 100%;
    padding: 3% 0 0 8%;
}
.modal-body .modal-content ul.list_modal li{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    font-size: 1vw;
}
.modal-content ul.list_modal li p{
    width: 77%;
}
.modal-content ul.list_modal li img{
    width: 18%;
    margin: 0 4% 0 0;
}
.modal-content .txt_modal{
    font-size: 1.1vw;
    line-height: 1.7;
    margin: 0 0 6%;
}
.modal-content .txt_modal .bold{
    font-weight: bold;
}
.modal-content .shop_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modal-body .modal-content .shop_list li{
    width: 46%;
    margin: 0 0 6%;
}

.modal-body .modal-content .btn_double_modal{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.modal-container .modal-body .modal-content .btn_single_modal{
    width: 50%;
    margin: 0 auto 6%;
}
.modal-container .modal-body .modal-content .btn_double_modal li{
    width: 47%;
}
.modal-container .modal-body .modal-content .btn_single_modal li{
    width:100%;
    margin: 0 0 4%;
}
.modal-body .modal-content .btn_single_modal li a,
.modal-body .modal-content .btn_double_modal li a{
    display: block;
}
.modal-container .modal-body .modal-content .btn_double_modal li.full{
    width: 100%;
}
@media screen and (max-width: 768px){
    .modal-body{
        width: 88vw;
    }
    .modal-content{
        display: block;
        padding: 10% 3% 10% 5%;
    }
    .modal-content .modal-inner{
        padding: 0 3% 0 0px;
        max-height: 520px;
    }
    .modal-content h3 {
        font-size: 4vw;
        font-weight: bold;
        margin: 8% 0 4%;
    }
    .modal-content h4 {
        position: relative;
        padding: 0 0 0 1.1em;
        font-size: 4vw;
        margin: 0 0 2%;
    }
    .modal-content h4::after {
        position: absolute;
        top: 0.1em;
        left: 0.2em;
        width: 15px;
        height: 15px;
    }
    .modal-content .ttl_modal{
        width: 60vw;
        margin: 0 auto 4%;
    }
    .modal-content .ttl_modal_ll{
        width: 44vw;
    }
    .modal-content .ttl_modal_l{
        width: 40vw;
    }
    .modal-content .ttl_modal_ml{
        width: 32vw;
    }
    .modal-content .ttl_modal_m{
        width: 26vw;
    }
    .modal-content .ttl_modal_sm{
        width: 20vw;
    }
    .modal-content .ttl_modal_s{
        width: 14vw;
    }
    .modal-content .ttl_modal_ss{
        width: 12vw;
    }
    .modal-content ul.list_modal li {
        font-size: 4vw;
    }
    .modal-content ul.list_modal li img{
        width: 24%;
    }
    .modal-content ul.list_modal li p{
        width: 70%;
    }
    .modal-body .modal-content ul.list_modal li {
        font-size: 3.2vw;
    }
    .modal-content .img_modal{
        width: 84%;
        margin: 0 auto 4%;
    }
    .modal-content .txt_modal{
        font-size: 4vw;
        line-height: 1.6;
    }
    .modal-container .modal-body .modal-content .btn_single_modal{
        width: 100%;
    }
}

/* link */
.link{
    margin: -0.2% 0 0;
    padding: 5% 0 7%;
    background: #FBF4EB;
}

.link .link_list{
    width: 80vw;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.link .link_list li{
    width: 30%;
}
@media screen and (max-width: 768px){
    .link{
        padding: 10% 0 12%;
    }
    
    .link .link_list{
        width: 70vw;
        margin: 0 auto;
        display: block;
    }
    
    .link .link_list li{
        width: 100%;
        margin: 0 0 6%;
    }
}

/* pagetop */

.pagetop{
    display: none;
    position: fixed;
    z-index: 100;
    width: 5vw;
    right:2%;
    bottom:2%;
}
.pagetop a{
    display: block;
}
.pagetop.active{
    display: block;
}

@media screen and (max-width: 768px){
    .pagetop{
        display: none;
        position: fixed;
        width: 14vw;
        right:1%;
        bottom:1%;
    }
    
    .pagetop.active{
        display: block;
    }
}

/* footer */
.footer{
    width: 100%;
    padding: 1% 0;
    position: relative;
    background: #FFF;
}

.footer .footer_inner{
    width: 70%;
    margin: 0 auto;
}

.footer .footer_inner .footer_nav{
    width: 100%;
    margin:0 0 4%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}
.footer .footer_inner .footer_nav li{
    text-align: center;
}
.footer .footer_inner .footer_nav li:first-child{
    width: 22%;
}
.footer .footer_inner .footer_nav li:nth-child(2){
    width: 30%;
}
.footer .footer_inner .footer_nav li:nth-child(3){
    width: 18%;
}
.footer .footer_inner .footer_nav li:nth-child(4){
    width: 14%;
}
.footer .footer_inner .footer_nav li a{
    position: relative;
    display: block;
    padding: 4% 0;
    font-size: 0.9vw;
    color:#2F2F2F;
    border-left: 2px solid #2F2F2F;
}
.footer .footer_inner .footer_nav li:nth-child(2) a{
    padding: 0;
}
.footer .footer_inner .footer_nav li:nth-child(4) a{
    border-right: 2px solid #2F2F2F;
}
.footer .footer_inner .footer_nav li a::before{
    content: '';
    display: inline-block;
    position: relative;
    width: 21px;
    height: 17px;
    padding-top: 1px;
    margin-right: 7px;
    background: url(../img/common/icon_link.svg) center no-repeat;
    background-size: contain;
}
.footer .footer_credit{
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.footer .footer_credit .footer_logo{
    width: 18%;
}
.footer .footer_credit .footer_copyright{
    width: 38%;
    padding: 1.2% 0 0 1%;
    font-size: 0.7vw;
}
.footer .footer_credit .footer_credit_number{
    width: 20%;
    margin: 0;
    font-size: 0.7vw;
}
.footer .footer_credit .footer_pmark{
    width: 6.4%;
    margin: -2% 0 0 1%;
}

@media screen and (max-width: 768px){
    .footer{
        padding: 3% 0;
    }
    
    .footer .footer_inner{
        width: 90%;
    }
    .footer .footer_inner .footer_nav{
        display: block;
    }
    .container .footer .footer_inner .footer_nav li{
        width: 100%;
        text-align: left;
    }
    .footer .footer_inner .footer_nav li a{
        padding: 4% 0;
        font-size: 3.3vw;
        border-left:none;
    }
    .footer .footer_inner .footer_nav li:nth-child(2) a{
        padding: 4% 0;
    }
    .footer .footer_inner .footer_nav li a::before{
        content: '';
        display: inline-block;
        position: relative;
        width: 15px;
        height: 12px;
        padding-top: 1px;
        margin-right: 7px;
        background: url(../img/common/icon_link.svg) center no-repeat;
        background-size: contain;
    }
    .footer .footer_credit{
        display: block;
    }
    .footer .footer_credit .footer_logo{
        width: 50%;
        margin: 0 0 4%;
    }
    .footer .footer_credit .footer_copyright{
        width: 100%;
        margin: 0;
        font-size: 10px;
    }
    .footer .footer_credit .footer_credit_number{
        width: 100%;
        margin: 0 0 2%;
        font-size: 13px;
    }
    .footer .footer_credit .footer_pmark{
        width: 20%;
        margin: 0 0 4%;
    }
}