@charset "utf-8";

@import url("assets/css/base.css");
@import url("assets/css/page.css");
@import url("assets/css/custom_parts.css");

.reset-margin .content-repeat-box + .content-repeat-box {
	margin-left: 0 !important;
}

/* ---------------------------

ヘッダー　-共通CSS

---------------------------*/
/*　「ヘッダータイプ　-ナビ左：縦並び　-メニュー固定」以外のロゴ、電話番号（ナビ）部分　　*/
.header-face {
	padding: 25px;
}
.header-face-inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header-face img {width: auto;}

/*　スマホ用ヘッダー　　*/
.mobile-header {
	position: relative;
}

.icon-hamburger {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
	position: fixed;
	right: 20px;
	width: 60px;
	height: 60px;
	top: 20px;
	z-index: 200;
	background: #fff;
	cursor: pointer;
}
.icon-hamburger span:not(:last-child) {
	position: absolute;
	width: 30px;
	height: 3px;
	background-color: #222;
	border-radius: 4px;
	transition: all 0.4s;
}
.icon-hamburger .menu {
	font-size: 1.0rem;
	position: absolute;
	top: 36px;
	left: 14px;
	opacity: 1;
}
.icon-hamburger span:nth-of-type(1) {top: 15px;left: 15px;}
.icon-hamburger span:nth-of-type(2) {top: 24px;left: 15px;}
.icon-hamburger span:nth-of-type(3) {top: 33px;left: 15px;}

.drawer-open .icon-hamburger span:nth-of-type(1) {
	width: 65%;
	transform: translate3d(-5px, 13px, 0) rotate(45deg);
}
.drawer-open .icon-hamburger span:nth-of-type(2) {
	transform: translate3d(13px, 0, 0) rotate(0);
	width: 0;
}
.drawer-open .icon-hamburger span:nth-of-type(3) {
	width: 65%;
	transform: translate3d(-5px, -5px, 0) rotate(-45deg);
}
.drawer-open .icon-hamburger span:last-child {opacity: 0;}

.drawer-contain .logo {margin: 20px;}
.drawer-contain .logo img {width: auto;}
.mobileNav a {
	display: block;
	padding: 15px;
	position: relative;
	transition: 0.5s;
}
.mobileNav a:after {
	content: '';
	display: inline-block;
	width: 6px;
	height: 6px;
	border: 1px solid;
	border-color: #565656 #565656 transparent transparent;
	transform: rotate(45deg);
	position: absolute;
	top: 50%;
	right: 20px;
	margin-top: -3px;
}
.mobileNav a:hover:after {
	border-color: #fff #fff transparent transparent;
}
.mobileNav li {
	border-top: 1px solid #F5F5F5;
}
.mobileNav .sub-menu a {
	padding-left: 45px;
}

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

	.drawer-contain .logo img {width: 100%;}
	.drawer-contain .logo {max-width: 150px;}

	.header-face {padding: 15px;}

	.header-face-inner > * {max-width: 45%;}
	.header-face-inner .tel {display: none;}
	.header-face-inner img {width: 100%;}

}

/* ---------------------------

メイン画像　-基本設定-

---------------------------*/

/*  横：コンテンツ幅（max-width：1100px）  */
.main-iamge-content-fix .main-image-inner {
	max-width: 1100px;
	margin: 0 auto;
}

/*  横：ウィンドウ幅（max-width：2200px）・ヒーローヘッダー（max-width：2200px）  */
.main-iamge-window-fix .main-image-inner,
.main-iamge-hero .main-image-inner {
	max-width: 2200px;
	margin: 0 auto;
}

/*  ヒーローヘッダー（max-width：2200px）時の重なり調整  */
.main-iamge-hero .header-face,
.main-iamge-hero .globalNav {
	position: relative;
	z-index: 10;
}

/* ---------------------------

メイン画像　-下層ページ-

---------------------------*/

.lower-main-image .main-image-inner {
	position: relative;
	width: 100%;
	overflow: hidden;
	max-height: 200px;
}
.lower-main-image .title-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: rgba(255, 255, 255,0.7);
    transform: translateY(-50%) translateX(-50%);
    width: 80%;
    max-width: 1000px;
    height: 130px;
    text-align: center;
    font-size: 3.0rem;
    letter-spacing: 0.08em;
    vertical-align: middle;
    line-height: 130px;
	color: #222;
}
/*  ヒーローヘッダー（max-width：2200px）  */
.main-iamge-hero .main-image-inner {
	max-height: none;
}
.main-iamge-hero .main-image-inner img {
	object-fit: cover;
}
.main-iamge-hero .lower-main-image .title-wrapper {
	top: auto;
	bottom: 20px;
	transform: translateY(0) translateX(-50%);
}

@media screen and ( max-width: 767px) {
	.header-wrapper:not(.main-iamge-hero) .lower-main-image .main-image-inner  {
		max-height: 100px;
	}
	.lower-main-image .title-wrapper {
		font-size: 2.0rem;
		line-height: 60px;
		height: 60px;
	}
}

/* ---------------------------

グローバルナビ　-共通CSS

---------------------------*/
.globalNav {
	position: relative;
	z-index: 999;
}
.globalNav li a {
	display: block;
	height: 100%;
	transition: 0.5s;
}

.globalNav .sub-menu li {
	transition: 1s;
	overflow: hidden;
}

.globalNav-wrapper > li > a,
.globalNav-fixed > li > a,
.globalNav-tel > li > a {
    line-height: 1;
    font-size: 1.6rem;
    font-weight: bold;
	padding: 20px;
}

.globalNav-wrapper > li > a span,
.globalNav-fixed > li > a span,
.globalNav-tel > li > a span {
    font-size: 1.2rem;
    font-weight: normal;
}

@media screen and ( max-width: 767px) {
	.globalNav {
		display: none;
	}
}

.globalNav li li {
	background-color: rgba(255,255,255,0.8);
}


/* ---------------------------

パンくずリスト

---------------------------*/
.header_type1.navi_position2 .main-iamge-hero .breadcrumb,
.header_type1.navi_position3 .main-iamge-hero .breadcrumb,
.header_type2.navi_position3 .main-iamge-hero .breadcrumb {background: none!important;}

.breadcrumb a {
	color: #222;
	text-decoration: underline;
}
.breadcrumb a:hover {
	text-decoration: none;
}
.breadcrumb ul {
	max-width: 1100px;
	margin: 0 auto;
	padding: 10px 0;
}
.breadcrumb li {
	display: inline-block;
}
.breadcrumb li:first-child {
	font-weight: bold;
}
.breadcrumb li:first-child:before {
	font-family: "Font Awesome 5 Free";
	content: "\f015";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: inline-block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	margin-right: 10px;
}
.breadcrumb li:not(:first-child):before {
	content: '>';
	margin: 0 10px;
}

/* ---------------------------

フッター

---------------------------*/
footer {
	text-align: center;
	padding: 50px 12.5px 10px;
	margin-top: 50px;
}
.footer-wrapper {margin-bottom: 30px;}
.footerNav {margin-bottom: 40px;}
.footerNav-inner {
	display: flex;
	justify-content: space-between;
	text-align: left;
	width: 70%;
	max-width: 1100px;
	margin: 0 auto;
	line-height: 1;
}
.footerNav-inner a {
	transition: 0.5s;
	opacity: 1;
}
.footerNav-inner a:hover {
	opacity: 0.7;
}
.footerNav-inner > li > a {
    line-height: 1;
    font-size: 1.6rem;
    font-weight: bold;
}
.footerNav-inner > li > a span {
    font-size: 1.2rem;
    font-weight: normal;
}
.footerNav-inner .sub-menu {
    line-height: 2.3;
    margin-top: 20px;
}

.footer-logo {font-size: 1.6rem;}
.footer-logo img {width: auto;}
.footer_info {
    font-size: 1.2rem;
    opacity: 0.8;
}
.footer_copy {
    text-align: center;
    opacity: 0.5;
}

.mobile-footer-menu {
    display: none;
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 50px;
    background: rgba(255,255,255,0.7);
}

.mobile-footer-menu li {
    height: 50px;
    width: 33.3%;
    text-align: center;
    align-self: center;
    font-size: 1.1rem;
}
.mobile-footer-menu li + li {
    border-left: 1px solid #d8d8d8;
}

.mobile-footer-menu a {
    display: block;
    width: 100%;
    height: 100%;
    padding-top: 9px;
}
.mobile-footer-menu li:nth-child(1) a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f1e0";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 2.0rem;
}
.mobile-footer-menu li:nth-child(2) a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f095";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 2.0rem;
}
.mobile-footer-menu li:nth-child(3) a:before {
	font-family: "Font Awesome 5 Free";
	content: "\f0e0";
	font-weight: 900;
	-webkit-font-smoothing: antialiased;
	display: block;
	font-style: normal;
	font-variant: normal;
	text-rendering: auto;
	line-height: 1;
	font-size: 2.0rem;
}

.modalwin {
	position: fixed;
	width: 90%;
	z-index: 1;
}
.modalwin.show {display: block;}
.modalwin.hide {display: none;}

.modalwin ul {
    display: flex;
    justify-content: center;
}

.modalwin ul li + li {margin-left: 5px;}

.modalwin button {
    font-size: 3.0rem;
    display: inline-block;
    color: #fff;
}

#shade {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: #222;
	opacity: 0.7;
	z-index: 1;
}
@media screen and (min-width: 768px) and ( max-width: 1100px) {
	.footerNav-inner {
		width: 100%;
	}
}
@media screen and ( max-width: 767px) {
	.mobile-footer-menu {
    display: flex;
	}
	footer {
		padding: 0 0 10px;
		margin-bottom: 50px;
	}
	.footerNav {margin-bottom: 20px;}
	.footerNav-inner {
		flex-wrap: wrap;
		justify-content: flex-start;
		width: 100%;
		text-align: center;
	}
	.footerNav-inner li:nth-child(2n) {border-left: 1px solid #d1d1d1;}
	.footerNav-inner .sub-menu {display: none;}

	.footerNav a {
		display: block;
		/* width: 50%; */
		padding: 15px;
	}
	.footerNav li {
		width: 50%;
		border-bottom: 1px solid #d1d1d1;
	}
}







/* ---------------------------
SNSバナー
--------------------------- */
.bnr-area {
	border-top: 1px solid #bfbfbf;
	background-color: #ddd;
	padding: 30px;
/*	margin-top: 50px;*/
	}

.blog-wrapper {
	margin-bottom: 50px!important;
}

.bnr-area_inner {
	max-width: 1100px;
	margin: 0 auto;
	}

.bnr-area ul {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

footer {
	margin-top: 0;
}


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

	.bnr-area ul {
		display: block;
	}

	.bnr-area ul li {
		margin-bottom: 20px;
	}

	.bnr-area ul li:last-child {
		margin-bottom: 0px;
	}
}

.bnr-area ul li:first-child:nth-last-child(4),
.bnr-area ul li:first-child:nth-last-child(4) ~ li {
    width: 24%;
}

@media screen and (max-width: 767px) {
    .bnr-area ul li:first-child:nth-last-child(4),
    .bnr-area ul li:first-child:nth-last-child(4) ~ li {
        width: 100%;
    }
}





/* ---------------------------
インスタバナー
--------------------------- */

.insta .insta_sp {
	display: none;
	}

.drawer-contain .insta img {
	width: auto;
	}

.drawer-contain .insta .insta_pc {
	padding: 10px;
	}


@media screen and (max-width: 767px) {
	.insta .insta_sp {
		display: block;
		}

	.insta .insta_sp img {
		width: 100%;
		}

	.insta .insta_pc {
		display: none;
		}

	.drawer-contain .insta.insta_sp {
		text-align: center;
		padding-bottom: 2%;
		width: auto;
		}

	.drawer-contain .insta.insta_sp img {
		width: auto;
		}
	}



/* ---------------------------
PCとSPで画像を切り分け
--------------------------- */
.sp_disp {
	display:none;
}

@media only screen and (max-width: 767px){
	.pc_disp {
		display:none;
	}

	.sp_disp {
		display:block;
	}
}



/* ---------------------------
スマホのグローバルメニューがスクロールできるように
--------------------------- */
@media only screen and (max-width: 767px){
	.mobile-header .drawer-contain {
		touch-action: auto !important;
		overflow-y: scroll !important;
	}
}

/* ---------------------------

2021.03.24 Ikedo add

---------------------------*/

/*  共通  */
body {
	font-size: 1.6rem;
	font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif,"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
}
.lower-main-image .title-wrapper {
	color: #582707;
}
.globalNav {
	padding-top: 10px;
	padding-bottom: 10px;
}
.globalNav a ,
.mobileNav a {
	color: #582707;
}
.globalNav-upper > li + li, .globalNav-bottom > li + li {
	border-left: 1px solid #c3a580 !important;
}
.fixed-menu {
	background: #a18276;
	border-color: #fff;
	border-width: 1px 0 1px 1px;
	border-style: solid;
}
.content-child-button {
	max-width: 330px;
	width: 100%;
}
.heading01 h3 ,
.heading01 h4 {
	font-size: 4rem;
}
.heading01 h3 span {
	display: block;
	font-size: 1.6rem;
	margin-top: -10px;
}
.heading02 h3 ,
.heading02 h4 {
	font-size: 4rem;
	position: relative;
	padding: 1.5rem;
	text-align: center;
}
.heading02 h3:before ,
.heading02 h4:before{
	position: absolute;
	bottom: 0px;
	left: calc(50% - 30px);
	width: 60px;
	height: 5px;
	content: '';
	background: #c3a580;
}
table.original-table th {
	background: #a18276;
	color: #fff;
}
.dl01 dl {
  display:flex;
  flex-wrap: wrap;
  border-top: none;
}
.dl01 dl dt {
  width: 30%;
  padding: 10px;
  box-sizing: border-box;
  border-bottom: 1px solid #c3a580; 
}
.dl01 dl dd {
  padding: 10px;
  margin: 0;
  border-bottom: 1px solid #c3a580; 
  width: 70%;
  box-sizing: border-box;
  text-align: left;
}
#privacy {
	padding-top: 0;
	padding-bottom: 80px;
}
.design_button_type1 .button, .design_button_type3 .button{
	width: 100%;
	background: #fff;
	color: #582707;
	border: 2px solid #582707;
	position: relative;
}
.design_button_type1 .button:hover, .design_button_type3 .button:hover{
	background: #582707;
	color: #fff;
	border-color: #582707;
}
.design_button_type1 .button::before, .design_button_type3 .button::before{
	position: absolute;
    content: "";
    left: 90%;
    top: calc(50% - 3px);
    width: 6px;
    height: 6px;
    border-top: 1px solid #582707;
    border-right: 1px solid #582707;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
.design_button_type1 .button::after, .design_button_type3 .button::after{
	position: absolute;
    content: "";
    left: calc(90% - 9px);
    top: calc(50%);
    width: 15px;
    height: 1px;
    border-top: 1px solid #582707;
}
.design_button_type1 .button:hover::before, .design_button_type3 .button:hover::before,
.design_button_type1 .button:hover::after, .design_button_type3 .button:hover::after{
	border-color: #fff;
}

@media only screen and (max-width: 981px){
	.heading01 h3 ,
	.heading02 h3 ,
	.heading01 h4 ,
	.heading02 h4 {
		font-size: 2.6rem;
	}
}

@media only screen and (max-width: 767px){
	.dl01 dl {
		flex-flow: column nowrap;
	}
	.dl01 dl dt,
	.dl01 dl dd {
		width: 100%;
	}
	.dl01 dl dd{
		border-left: none;
	}
}

@media only screen and (max-width: 767px){
	.dl01 dl dt {
		border-width: 0;
		padding-bottom: 0;
	}
}

/*  01 home  */
#home001_txt {
	padding-top: 80px;
	padding-bottom: 80px;
}
#home002_img {}
#home003_concept {}
#home004_menu {}
#home005_3col {}
#home006_access {}
#home007_contact {
	padding-top: 60px;
	padding-bottom: 60px;
}

@media only screen and (max-width: 767px){
	#home003_concept .section-child-num0 {
		order: 2;
	}
	#home003_concept .section-child-num1 {
		order: 1;
	}
	#home004_menu .section-child-num1 {
		margin-top: 0;
	}
}

/*  02 concept  */
#concept001_top {
	padding-top: 80px;
	padding-bottom: 80px;
}
#concept002_kodawari {
	margin-bottom: 0;
	padding-top: 60px;
}
#concept003_2col {
	padding-top: 30px;
	padding-bottom: 60px;
}
#concept004_nani {
	padding-top: 80px;
	padding-bottom: 80px;
}
#concept005_dl dl dt ,
#concept005_dl dl dt + dd {
	width: 100%;
	text-align: left;
}
#concept005_dl dl dt {
	font-size: 2.8rem;
	background: #a18276;
	color: #fff;
	padding: 10px 20px;
}
#concept005_dl dl dt + dd {
	padding: 20px;
}
#concept006_2col {}

@media only screen and (max-width: 981px){
	#concept005_dl dl dt {
		font-size: 2rem;
	}
}

@media only screen and (max-width: 767px){
	#concept002_kodawari {
		padding-top: 50px;
	}
	#concept003_2col {
		padding-top: 25px;
		padding-bottom: 50px;
	}
	#concept004_nani {
		padding-top: 0px;
		padding-bottom: 240px;
		background-size: 100% auto;
		background-position: bottom right;
	}
	#concept005_dl dl dt {
		font-size: 1.8rem;
	}
}


/*  03 menu  */
#menu001_beauty {
	padding-top: 80px;
	padding-bottom: 80px;
}
#menu002_m01 ,
#menu003_m02 {
	padding-bottom: 80px;
}
#menu004_flow {
	margin-bottom: 0;
	padding-top: 60px;
}
#menu005_2col {
	margin-bottom: 0;
	padding-top: 30px;
}
#menu006_2col {
	padding-top: 30px;
	padding-bottom: 60px;
}
#menu007_info {}

@media only screen and (max-width: 767px){
	#menu004_flow {
		padding-top: 50px;
	}
	#menu005_2col {
		padding-top: 25px;
	}
	#menu006_2col {
		padding-top: 25px;
		padding-bottom: 50px;
	}
}


/*  04 info  */
#info001_message .section-child-num1 {
	margin-top: 50px;
}
#info001_message + .section-parallax a {
	color: #582707;
}
@media only screen and (max-width: 981px){
	#info001_message {
		background-size: 85% 100%;
		padding-top: 40px;
		padding-bottom: 40px;
	}
	#info001_message .section-child-num1 {
		margin-top: 20px;
	}
}

@media only screen and (max-width: 767px){
	#info001_message {
		margin-top: 0;
		background-size: 100% 80%;
		background-position: bottom center;
	}
}

/*  05 contact  */
#contact001_cont {
	padding-top: 80px;
	padding-bottom: 80px;
}
@media only screen and (max-width: 767px){}