@charset "UTF-8" ;

/* トップページ
------------------------------------------*/
#top #contents{
	width: 100%;
}

#top #contents .inner{
	width: 1200px;
	margin: 0 auto;
	max-width: 100%;
}

#top .bnr_box img{
	margin-top: 20px;
}

#top .bnr_box{
	margin-top: -220px;
}

#top #concept img,
#top #bridal img,
#top #spa img{
	width: 100%;
}

/*バナーボタンエリア*/
.bnr-btn-area{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    margin-top: 50px;
}
.bnr-btn-area .bnr-btn{
    width: 33.3%;
    height: auto;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.bnr-btn-area .bnr-btn::before{
    content: "";
    width: 100%;
    height: 100%;
    background: #00000026;
    display: inline-block;
}

.bnr-btn-area .bnr-btn span{
    font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 Pro", "游明朝", YuMincho, "Noto Serif JP", serif;
    font-size: calc(100vw * 35 / 1920);
    font-weight: bold;
    text-align: center;
    color: #fff;
    text-shadow:0px 3px 6px #000;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bnr-btn-area .bnr-btn div{
    background-size: cover !important;
    background-position: center !important;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    z-index: -1;
    
    -webkit-transition: all .3s ease-out;
    -moz-transition: all .3s ease-out;
    -ms-transition: all .3s ease-out;
    transition: all .3s ease-out;
}
.bnr-btn-area .bnr-btn:hover div {
    -moz-transform: scale(1.15);
    -webkit-transform: scale(1.15);
    -ms-transform: scale(1.15);
    transform: scale(1.15);
}
.bnr-btn-area .bnr-btn .seijin{
    background: url("../img/top/top_bnr_seijin.jpg") no-repeat;
}
.bnr-btn-area .bnr-btn .bridal{
    background: url("../img/top/top_bnr_bridal.jpg") no-repeat;
}
.bnr-btn-area .bnr-btn .visiting{
    background: url("../img/top/top_bnr_visiting_2.jpg") no-repeat;
}
.bnr-btn-area .bnr-btn .menu{
    background: url("../img/top/top_bnr_menu.jpg") no-repeat;
}
.bnr-btn-area .bnr-btn .recruit{
    background: url("../img/top/top_bnr_recruit_2.jpg") no-repeat;
}
.bnr-btn-area .bnr-btn .recruit_reduced{
    background: url("../img/top/top_bnr_recruit_reduced.jpg") no-repeat;
}

@media screen and (max-width: 768px) {
    .bnr-btn-area .bnr-btn{
        width: 50%;
        height: 170px;
        aspect-ratio: initial;
    }
    .bnr-btn-area .bnr-btn span{
        font-size: calc(100vw * 20 / 375);
        text-shadow:0px 3px 6px #000;
    }
}



/* blog */
#top .blog_box_head{
	position: relative;
}
#top .blog_box_head .btn{
	position: absolute;
	right: 0;
	top:0;
}
#top .blog{
	margin-bottom: 80px;
}

#top .blog ul {
    padding: 0;
    overflow: hidden;
    zoom: 1;
}
#top .blog li{
    padding: 10px 0;
    border-bottom: 1px solid #d1d5dc;
    font-size: 0;
}

#top .blog li a{

    color: #333333;
    font-size: 15px;
    letter-spacing: 0.1em;
}

#top .blog li span{
    display: inline-block;
    vertical-align: top;
    font-size: 15px;
    color: #999999;
}
#top .blog li span:first-child{
    width: 100px;
}
#top .blog li span:nth-child(2){
    width: calc(100% - 100px);
}
/* ↓↓↓.menu-recs↓↓↓ */
#top #contents .menu-recs{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

#top #contents .menu-recs .detail_box{
    width: 32%;
    margin: 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
#top #contents .menu-recs .detail_box .img{
    width: 100%;
}
#top #contents .menu-recs .detail_box .img iframe{
    width: 100%;
    height: auto;
    max-height: 350px;
    aspect-ratio: 16 / 9;
}

#top #contents .menu-recs .txt{
    box-sizing: border-box;
    width: 100%;
    background: #F5F5F5;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
}

#top #contents .menu-recs .btm_txt{
    display: block;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}
#top #contents .menu-recs .btm_txt.open{
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.4s ease, opacity 0.3s ease;
}

#top .btn.plus a{
    display: inline-block;
    border: none;
    text-decoration: underline;
    position: relative;
    font-weight: bold;
    width: auto;
    color: #222;
    cursor: pointer;
}
#top .btn.plus a .icon{
    position: relative;
    display: inline-block;
    width: 10px;
    height: 10px;
    padding-left: 10px;
}
#top .btn.plus a .icon:before, #top .btn.plus a .icon:after{
    display: block;
    content: '';
    position: absolute;
    left: 10; 
    top: 50%;
    width: 70%;
    height: 2px;
    margin: auto;
    background-color: #333;
    border-radius: 10px;
    transition: 0.5s ease;
}
#top .btn.plus a .icon:after {
    transform: rotate(90deg);
}

.btn.plus.open a .icon::after {
  transform: rotate(90deg) scale(0.5); /* 縮める */
  opacity: 0;
}

@media screen and (max-width: 768px) {
    #top #contents .menu-recs{
        flex-direction: column;
    }
    #top #contents .menu-recs .detail_box{
        width: 100%;
    }
    #top #contents .menu-recs iframe{
        width: 100% !important;
        height: 210px;
        aspect-ratio: 16 / 9;
    }
}
/* ↑↑↑.menu-recs↑↑↑ */

#top #contents .detail_box .inner{
	display: flex;
	flex-direction: row;
	margin-bottom: 80px;
}
#top #contents #concept .inner div,
#top #contents .detail_box .inner div{
	width: 50%;
}

#top #bridal.detail_box .inner{
	flex-direction: row-reverse;
}
#top #kera.detail_box {
	width: 1200px;
    margin: 0 auto 100px auto;
	max-width: 100%;
}
#top #kera.detail_box .inner , #top #kera.detail_box .inner .txt p {
	margin-bottom: 0;
}

#top #contents #spa.detail_box .inner .txt{
    flex: 1;
    position: relative;
    padding: 60px 30px;
    margin-top: 60px;
}
#top #contents #spa.detail_box .inner .txt::before{
    content: "";
    position: absolute;
    top: 0;      /* 上にはみ出す量 */
    bottom: 0;   /* 下にはみ出す量 */
    left: -70%;  /* 左に少し伸ばす */
    right: 0;
    background: #F5F5F5;
    z-index: -1;
}

#top #concept .lead + p,
#top .detail_box .lead + p{
    margin-bottom: 20px;
    font-size: 15px;
    color: #333333;
    line-height: 1.667;
    letter-spacing: 0.1em;

}
#top h2.t_line,
#top #concept h2,
#top .detail_box h2{
	margin-bottom: 40px;
	color:#333;
	font-size:40px;
	font-family: 'Noto Sans JP', sans-serif;
	font-weight: 700;
	letter-spacing: 0.2em;
    line-height: 1.05;
}

#top h2.t_line{
    margin: 80px auto 40px;
}

#top h2.t_line small,
#top #concept h2 small,
#top .detail_box h2 small{
    display: block;
    margin-top: 13px;
    color: rgb(102, 102, 102);
	font-size:14px;
    letter-spacing: 0.34em;
    font-weight: normal;
}
#top #concept .lead,
#top .detail_box .lead{
	font-size:22px;
	font-family: 'Noto Serif JP', serif;
    font-weight: 700;
    line-height: 1.273;
    letter-spacing: 0.22em;
	margin-bottom: 20px;
}
#top #concept .lead.none {
	display: none;
}
#top #concept{
	position: relative;
	background: url(../img/top/bg_concept.jpg) no-repeat left bottom;
    margin: 130px auto 80px;
    width: calc(100% - (100% - 1024px) / 2);
		max-width: 100%;
}
#top #concept .inner{
	padding: 80px 0;
	display: flex;
	flex-direction: row;
}

#top #concept .img{
	position: absolute;
	top:-50px;
	right: -35px;
}

#top .top_bnr_area{
	background: url(../img/top/bg_bnrarea.jpg) no-repeat;
	background-size: cover;
	padding: 80px 0;
}
#top .top_bnr_area ul{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
#top .top_bnr_area ul.bnr_2, #top .top_bnr_area ul.bnr_3{
    margin-bottom: 30px;
}
#top .top_bnr_area ul.bnr_2 li{
    width: 49%;
    max-width: 585px;
}
#top .top_bnr_area ul.bnr_3 li{
    width: 32%;
    max-width: 380px;
}
#top .top_bnr_area ul.bnr_2 li, #top .top_bnr_area ul.bnr_3 li{
    margin: 0;
}
#top .top_bnr_area ul li a{
    display: block;
}
#top .top_bnr_area ul img{
    width: 100%;
}
#top .top_bnr_area .inner .pc{	
	display:block;
	}
#top .top_bnr_area .inner .sp{	
	display:none;
	}

#top .btn a{
	display: inline-block;
    width: 200px;
    font-size: 13px;
    padding: 5px 0;
    line-height: 3.231;
    letter-spacing: 0.34em;
	text-align: center;
	text-decoration: none;
	border: 1px solid #222;
}

#top .btn.solid a{
	background: #222;
	color:#fff;
}
#top .btn.solid a::after{
    content: '';
	background: url("../img/top/w_arrow.svg") no-repeat;
    background-size: contain;
    width: 5px;
    height: 10px;
    display: inline-block;
    margin-left: 10px;
}

@media screen and (max-width: 768px) {
    #top h2.t_line{
        margin: 40px auto 40px;
    }

	#top #contents #concept .inner div,
	#top #contents .detail_box .inner div{
		width: 100%;
	}
	#top #contents .detail_box .inner{
		flex-direction: column-reverse;
		margin-bottom: 40px;
	}
	#top #bridal.detail_box .inner{
		flex-direction:column-reverse;
    }
    #top .top_bnr_area ul {
        margin: 0 auto 20px;
    }
    #top .blog{
        margin-bottom: 20px;
    }
    #top .blog_box.inner .btn,
    #top .inner .btn{
        text-align: center;
    }
    #top .blog_box.inner,
    #top .inner .txt{
        box-sizing: border-box;
        padding: 10px;
    }
	#top #kera.detail_box {
		margin-bottom: 40px;
	}
	#top #kera.detail_box .inner {
		margin-bottom: 0;
	}
	#top #kera.detail_box .inner .txt {
		padding-bottom: 0;
	}
    
    #top #contents #spa.detail_box .inner{
        flex-direction: column;
    }
    #top #contents #spa.detail_box .inner .txt{
        margin-top: 0;
        padding: 30px;
    }
    #top #contents #spa.detail_box .inner .txt::before{
        left: 0;
    }
    #top #contents #spa.detail_box .inner .btn{
        text-align: justify;
    }
	
	#top #concept .inner{
		padding: 40px 0;
		flex-direction: column-reverse;
    }
    #top #concept {
        margin: 0px auto;
        width: 100%;
    }
    #top #concept .img {
        position: static;
    }
    #top .top_bnr_area{
        padding: 20px 10px;
    }
    #top .top_bnr_area ul {
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
/*        flex-direction: column;*/
    }
    #top .top_bnr_area ul.bnr_2{
        margin-bottom: 10px;
    }
    #top .top_bnr_area ul.bnr_3{
        margin-bottom: 0;
    }
    #top .top_bnr_area ul.bnr_2 li, #top .top_bnr_area ul.bnr_3 li{
        margin: 0;
    }
}
/** mv */
.mvArea{
	width: 1920px;
	margin: 0 auto;
	max-width: 100%;
}
.mvWrap{
    position: relative;
	overflow: hidden;
    width: 1920px;
    height: 630px;
		max-width: 100%;
}
.mvWrap .mvSlider{
    position: absolute;
    right: 0;
    top:0;
    display: flex;
    flex-direction: row-reverse;
}

.mvWrap .mvSlider li {
    position: relative;
    box-sizing: border-box;
    margin: 0 0 0 30px;
    width: 450px;
    height: 630px;
    overflow: hidden;
}
.mvWrap .mvSlider li.slide-active {
    width: 940px;
    overflow: hidden;
    animation-name: fadeIn-next;
    animation-duration: 2s;
}

@keyframes fadeIn-next {
    0% {
        opacity:0.2;
    }
    10% {
        opacity:0.4;
    }
    25% {
        opacity:0.5;
    }
    40% {
        opacity:0.6;
    }
    50% {
        opacity:0.8;
    }
    100% {
        opacity:1;
    }
}
.mvWrap .mvSlider li img {
    width: 940px;
    opacity: 0.1;
    -webkit-filter: grayscale(90%);
    filter: grayscale(90%);
    -webkit-transition: all .45s ease 0s;
    transition: all .45s ease 0s;
}
.mvWrap .mvSlider li.slide-active img {
	  width: 940px;
      opacity: 1;
      -webkit-filter: grayscale(0);
      filter: grayscale(0);
}
/* ボタン */
.mvWrap .slider-controll{
    position: absolute;
    display: flex;
    justify-content: space-around;
    width: 92px;
    z-index: 9;
    left: 158px;
    bottom: 105px;
}
.mvWrap .slider-controll > div{
    width: 32px;
    height: 32px;
}
.mvWrap .button-prev {
	background: url(../img/top/mv/icon_arrow.png) center no-repeat;
	transform: rotate(180deg);
    cursor: pointer;
}
.mvWrap .button-next {
    background: url(../img/top/mv/icon_arrow.png) center no-repeat;

    cursor: pointer;
}
/* MV テキスト部分　*/
.mvTextWrap {
    position: absolute;
    z-index: 3;
    top: 190px;
    left: 170px;
    width: 100%;
}
.mvText {
    position: relative;
 }
.mvText li {
    display: none;
    position: absolute;
	top: 60px;
	left: 0;
    width: 100%;
    height: 110px;
    font-family: "Noto Sans JP";
}
.mvText li:last-of-type {
        bottom: 0;
    }
.mvText li:last-of-type div{
    display: flex;
    bottom: -80px;
}
.mvText li:last-of-type a{
    width: 33.33%;
}
.mvText li:last-of-type a img{
    width: 223px;
}
.mvText li .textWrap{
    position: absolute;
    bottom: 0;
}
.mvText li.active{
    display: block;
    animation-name: fadeIn-next;
    animation-duration: 2s;
}
.mvText .textWrap{
    text-shadow:2px 2px 20px #ffffff;
}

/* MV下キャッシュレス */
.cashless img {
	display: block;
	margin: 25px auto;
	width: 800px;
}
/* MV下bnrリンク */
.bnr_link a {
	/*display: block;*/
	margin: 0 auto;
	width: 700px;
}
.bnr_link a:hover {
	opacity: 0.7;
}
.bnr_link img {
	display: block;
	margin: 25px auto;
	width: 800px;
}
.top_bnr_link img {
	width: 700px;
	max-width: 100%;
	margin: 0;
}
.top_bnr_link {
	margin: 0 15px;
}
/*230510追記*/
.flexbox1 {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  align-items: center;
  justify-content: center;
}
.flexbox2 {
  display: flex;
  flex-direction: row;
  margin-top: 25px;
  align-items: center;
  justify-content: center;
}
/*230727追記*/
.flexbox3 {
  display: flex;
  flex-direction: row;
  margin-bottom: 50px;
  align-items: center;
  justify-content: center;
}
.flexbox3.inner{
    justify-content: space-between;
    margin-bottom: 80px !important;
}
/*/230727*/
.bnr_link{
	margin: 0 15px;
}
.flexbox3.inner .bnr_link{
    width: 49%;
}
/*240530追記*/
.bnr_sl{
    width: 100%;
    text-align: center;
    margin: 50px 0 0;
}
/*/240530*/

@media screen and (max-width: 768px){
/*230512*/
.flexbox1{
		flex-direction: column;
	    margin-top: 50px;
	}
.flexbox2{
		flex-direction: column;
	    margin-top: 5px;
	}
/*230512*/
/*230804追記*/
.flexbox3{
		flex-direction: column;
	    margin-top: 50px;
	}
.flexbox3.inner{
        margin: 50px 20px !important;
}
.flexbox3.inner .bnr_link{
        width: 100%;
}
/*230804*/
.bnr_link a {
	display: block;
	width: 800px;
}
.bnr_link img {
	display: block;
	width: 800px;
	margin-bottom: 20px;
}
	
}

/*230510*/

/* MV下テキスト */
.feedWrapp{
	position: relative;
	box-sizing: border-box;
	width: 1195px;
	max-width: 100%;
	height: 80px;
	margin: -40px 0 0 auto;
	padding:10px 0 10px 40px;
	background: #222;
    color: #fff;
    display: flex;
    flex-direction:row;
}

.feedWrapp #shopIconList ul{
    position:absolute;
    width: 300px;
    bottom: 1px;
    right: 12px;
    display: flex;
    flex-direction:row-reverse;
    justify-content:space-around;
    align-items: flex-end;
}
.feedWrapp #shopIconList ul li{
	width: 70px;
}
.feedWrapp #shopIconList ul li img{
    border: #222 4px solid;
    background: #fff;
    width: 100%;
}
.feedWrapp #shopIconList ul li.active{
    width: 120px;
}
.feedWrapp .textMessage #message{
    position: relative;
    box-sizing: border-box;
    width: 800px;
		max-width: 100%;
    height: 80px;
    text-align: left;
    font-size: 15px;
    font-family: "Noto Sans JP";
    white-space: nowrap;
    overflow: hidden;
    -webkit-transition: all .45s ease 0s;
     transition: all .45s ease 0s;
}

.feedWrapp #message li{
    display: none;
    position: absolute;
	top: 0;
    left: 0;
    line-height:60px;
}

.feedWrapp #message li.active{
    display: block;
}
.feedWrapp .textMessage #message .shopname{
    display: inline-block;
    padding-right: 40px;
    margin-right: 40px;
    border-right: #fff 2px solid;
    line-height:60px;
}
/* .feedWrapp .textMessage #message .line2{
    display: inline-block;
    width: 640px;
    line-height: 1.5;
    vertical-align: middle;
} */
.line2{
    display: inline-block;
    width: 640px;
		max-width: 100%;
    line-height: 1.5;
    vertical-align: middle;
		padding-top: 4px;
}
/* .feedWrapp .textMessage #message .line2 p{
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
} */
.line2 p{
    width: 90%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
		font-size: 15px;
    font-family: "Noto Sans JP";
		white-space: nowrap;
		font-weight: normal;
}

.shop1 h2{
	display: none;
}

.feedWrapp .textMessage #message a{
    color:#fff;
    text-decoration: none;
}
.line2 p a{
    color:#fff;
    text-decoration: none;
}
/* iPad pro */
@media screen and (max-width: 1024px) {
	.mvArea {
        width: 100%;
	}
    .mvWrap {
        width: 100%;
    }
    .feedWrapp{
        width: 100%;
    }
    .mvTextWrap {
        top: 140px;
        left: 10px;
    }

    .mvWrap .slider-controll {
        left: 10px;
    }
    #top #concept{
        overflow-x: hidden;
    }
}
@media screen and (max-width: 768px) {
	.mvArea {
		width: 100%;
	}
    .mvWrap {
        position: relative;
        overflow: hidden;
        width: 100%;
        height: 20vh;
    }
    .mvTextWrap {
        position: absolute;
        z-index: 3;
        top: auto;
        left: auto;
        right: 2.5%;
        bottom: 126px;
        width: 70%;
    }
    .mvText li {
        top: 0;
    }
    .mvText li:last-of-type {
        bottom: 0;
    }
    .mvText li:last-of-type div{
        bottom: 0;
    }
	.mvWrap .slider-controll{
        left: 0px;
        bottom:25px;
	}

    .feedWrapp .textMessage #message {
        width: 100%;
        height: 110px;
        white-space:normal;
    }
    .mvWrap .mvSlider li{
        margin: 0;
    }
    .mvWrap .mvSlider li img {
        width: 100%;
        max-width: 100%;
    }
    .mvWrap .mvSlider li.slide-active img {
        width: 100%;
        max-width: 100%;
    }
    .feedWrapp {
        display: flex;
        flex-direction: column-reverse;
        width: 100%;
        margin-top: 0;
        height: auto;
        padding: 0 10px;
    }
    .feedWrapp .textMessage #message {
        height: 90px;
    }

    .feedWrapp .textMessage #message li{
        line-height: 1.2;
        top:1em;
    }
    .feedWrapp .textMessage #message li img{
        background: #fff;
        width: 70%;
    }
    .feedWrapp .textMessage #message .shopname{
        display: block;
        padding-right: 0;
        margin-right: 0;
        border-right: none;
        line-height: 1.2;
    }
    .feedWrapp .textMessage #message .line2{
        width: 100%;
    }
    .feedWrapp #shopIconList ul{
        width: 150px;
    }
    .feedWrapp #shopIconList ul {
        display: none;
        position: static;
        margin: 0 8px 0 auto;
    }
    .feedWrapp #shopIconList ul li{
        width: 40px;
    }
    .feedWrapp #shopIconList ul li.active{
        width: 60px;
    }
    .feedWrapp .textMessage #message .line2 p{

        width: 90vw;
    }
}

/* 240802 */
#top .attention,#shop .attention {
	border: 2px solid #F00;
	text-align: center;
	width: 100%;
	max-width: 1024px;
	margin: 20px auto 0;
}
#top .attention h3,#shop .attention h3 {
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0;
}
#top .attention p,#shop .attention p {
	text-align: center;
	font-size: 14px;
	font-weight: bold;
	padding: 0 20px;
	margin-bottom: 10px;
}
