@charset "utf-8";

/*=============== 全体にかかわる設定 ===============*/
html *,
::before,
::after {
	box-sizing: border-box;
}

html {
	font-size: 17px;
  letter-spacing: 0.2em;
}

@media (max-width: 768px) {
	html {
		font-size: 17px;
	}
}

body {
  font-family: "Sawarabi Mincho", serif;
  font-weight: 400;
  font-style: normal;
	--color_text: #333333;
	--color_base: #F5F5F5;
	--color_main: #1A365D;
	--color_sub: #E6EFF6;
	--color_ac: #967407;
	--color_link: #3E6C99;
	line-height: 1.6;
	letter-spacing: 0.07em;
  color: var(--color_text);
	background: var(--color_base);
}



a {
	color: var(--color_link);
	transition: all 0.6s;
}
a:hover {
	opacity: 0.6;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}

.level1-heading {
	text-align: center;
	margin: 0;
	font-weight: normal;
}

.level2-heading-wrapper {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;

	color: var(--color_main);
}

.level2-heading {
	font-size: 28px;
	display: flex;
	align-items: center;
	text-align: center;
	margin-top: 0;
}
.level2-heading span {
	font-size: 12px;
	font-weight: normal;
}
.level2-heading span::before {
	content: "/";
	font-size: 20px;
	margin: 0 14px;
}


@media (max-width: 768px) {
.level2-heading {
	font-size: 24px;
}
}





/*================ヘッダー================*/
.header {
	background-color: var(--color_main);
	color: var(--color_base);

}
.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 16px 2%;
	font-size: 16px;
}

.header__reservation {
	color: var(--color_base);
	background-color: var(--color_ac);
	padding: 4px 18px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, .20);
	text-decoration: none;
	font-size: 14px;
}

.header__logo-wrapper {
	width: 280px;
	margin: 0;
	display: flex;
	align-items: center;
}

.header__logo-wrapper a {
	display: flex;
	align-items: center;
}



.header-nav-utility {
	display: flex;
	flex-direction: row;
	justify-content: end;
	align-items: center;
	margin-bottom: 16px;
}


.header-nav__tel {
	margin: 0;
	margin-right: 40px;
	font-size: 18px;
}

.header-nav {
	display: flex;
	align-items: center;
	margin: 0;
}

.header-nav__item {
	list-style: none;
}

.header-nav__item:not(:last-child) {
	margin-right: 40px;
}

.header-nav__link {
	color: var(--color_base);
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	list-style: none;
	text-decoration: none;
}
@media (max-width: 1200px) {
}



@media (max-width: 1050px) {
	.header {
		position: fixed;
		z-index: 999;
		top:0;
		width: 100%;
	}
	.header__inner {
		padding: 0px 2%;
		height: 60px;
		justify-content: start;
	}
	.header__logo-wrapper {
		margin-bottom: 0px;
		width: 180px;
	}
	.header-nav__item:not(:last-child) {
		margin-right: 0px;
	}
	.header-nav__item:last-child {
	}	
	.header-nav__link {
		font-size: 16px;
	}
	.header__reservation {
/*		padding: 16px 16px;*/
	}

}



@media (max-width: 1050px) {
	#g-nav{
	  position:fixed;
	    /*ナビのスタート位置と形状*/
		top:0;
	  right: 0;
		width:100%;
	  height: 100vh;/*ナビの高さ*/
		background:var(--color_main);
	  /*動き*/
		transition: all 0.4s;
		opacity: 0;
		display: none;
	}

	/*アクティブクラスがついたら位置を0に*/
	#g-nav.panelactive{
	    opacity: 1;
	    display: block;
	}
	/*ナビゲーションの縦スクロール*/
	#g-nav.panelactive #g-nav-list{
	    /*ナビの数が増えた場合縦スクロール*/
	    position: fixed;
	    z-index: 999; 
	    width: 100%;
	    height: 100vh;/*表示する高さ*/
	    overflow: auto;
	    -webkit-overflow-scrolling: touch;
	}


	/*ナビゲーション*/

	.header-nav-utility {
		position: absolute;
	    bottom:0%;
	    left:50%;
	    transform: translate(-50%,-50%);
	    flex-direction: column;	
	    width: 100%;
	}
	.header-nav__tel {
		margin-right: 0;
		font-weight: bold;
		margin-bottom: 10px;
	}
	.header__reservation {
		width: 100%;
		max-width: 230px;
		text-align: center;
		padding: 12px;
	}

	.header-nav {
	    /*ナビゲーション天地中央揃え*/
	    position: absolute;
	    top:50%;
	    left:50%;
	    transform: translate(-50%,-50%);
	    flex-direction: column;
	    padding-left: 0;
	    width: 100%;
	}

	/*リストのレイアウト設定*/

	.header-nav__item{
		list-style: none;
	    text-align: center;
	    margin: 0;
	    padding: 10px;
	}

	.header-nav__link{
		color: #fff;
		text-decoration: none;
		padding:10px;
		display: block;
		text-transform: uppercase;
	}

	.openbtn{
		position:fixed;
	  	z-index: 9999;/*ボタンを最前面に*/
		top:5px;
		right: 10px;
		cursor: pointer;
	  	width:50px;
	  	height:50px;
	}


		
	/*×に変化*/	
	.openbtn span{
	  display: inline-block;
	  transition: all .4s;
	  position: absolute;
	  left: 14px;
	  height: 1px;
	  border-radius: 0px;
	  background-color:	#FFFAF6;
	  width: 45%;
	  }

	.openbtn span:nth-of-type(1) {
		top:15px;	
	}

	.openbtn span:nth-of-type(2) {
		top:23px;
	}

	.openbtn span:nth-of-type(3) {
		top:31px;
	}

	.openbtn.active span {
		background: #fff;
	}

	.openbtn.active span:nth-of-type(1) {
	    top: 18px;
	    left: 18px;
	    transform: translateY(6px) rotate(-45deg);
	    width: 30%;
	}

	.openbtn.active span:nth-of-type(2) {
		opacity: 0;
	}

	.openbtn.active span:nth-of-type(3){
	    top: 30px;
	    left: 18px;
	    transform: translateY(-6px) rotate(45deg);
	    width: 30%;
	}
}


/*=============== hero ===============*/
.hero {
	height: 650px;
	display: flex;
	position: relative;
}

#slider {
    width: 100%;
}

.hero__title {
	position: absolute;
	top: 50%;
	right: 7%;
	font-size: 36px;
	color: var(--color_base);
	text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.4);
}


@media (max-width: 840px) {
	.hero__title {
		right: 4%;
		font-size: 30px;
	}
}



@media (max-width: 768px) {
	.hero {
		margin-top: 50px;
	}
	.hero__img {
		width: 400px;
}
}


@media (max-width: 550px) {
	.hero__title {
		font-size: 24px;
		top: 42%;
	}
}

@media (max-width: 460px) {
	.hero__title {
		font-size: 20px;
	}
}





/*=============== プロフィール ===============*/

.greet__inner {
	padding: 140px 5%;
	max-width: 1280px;
	margin: 0 auto;
}

.about__container {
	display: flex;
	text-align: left;
/*	align-items: center;*/
	justify-content: space-around;
}

.greet__heading {
	text-align: center;
	margin-bottom: 80px;
}

.greet__heading br {
	display: none;
}

.about__icon {
	width: 20%;
    filter: drop-shadow(1px 1px 1px #fff);
    min-width: 220px;
    margin-right: 40px;
}

.about__icon img {
}

.about__contents {
 	width: 60%;
 	max-width: 740px;
 }

.about__name {
	font-size: 18px;
	margin: 20px 0 0;
	text-align: center;
	line-height: 1.4;
}

.about__name span {
	font-size: 10px;
}



.about__text {
	margin: 0 0 32px;
}

@media (max-width: 768px) {

	.greet__heading br {
		display: block;
	}
	.greet__heading {
		font-size: 24px;
	}
	.about__container {
		flex-direction: column;
	}
	.about__icon {
		margin: 0 auto;
		width: 40%;
	}
	.about__name {
		text-align: center;
	}
	.about__contents {
	margin-top: 20px;
	width: 100%;
	}
}

@media (max-width: 500px) {
.about__contents {
	padding: 30px 0px;
 }
}










/*=============== コンセプト ===============*/

.concept {
	margin-bottom: 120px;
}

.concept__container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	padding: 0 5% 0;
}

.concept__item {
	width: 27%;
	padding: 20px 30px 36px;
  background-color: var(--color_sub);
  margin-top: 100px;
  box-shadow: 2px 3px 3px rgba(0, 0, 0, 0.03);
  position: relative;
}

.concept__number {
	background-color: var(--color_main);
	color: var(--color_base);
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 28px;
	height: 80px;
	width: 80px;
	border-radius: 50%;
	margin: 0 auto;
	position: absolute;
	top: -40px;
	left: -15px;

}





.level3-heading {
	font-size: 18px;
	margin-bottom: 40px;
	padding-top: 16px;
	text-align: center;
}

.concept-item p {
	text-align: left;
}




.concept__number p {

}

.concept__text {
	font-size: 16px;
	text-align: left;
}


hr {
	border: 0;
	height: 12px;
	width: 90%;
	background-image:
	repeating-linear-gradient(45deg, var(--color_text) 0px, var(--color_text) 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%),
	repeating-linear-gradient(135deg, var(--color_text) 0px, var(--color_text) 1px, rgba(0,0,0,0) 0%, rgba(0,0,0,0) 50%);
	background-size: 8px 8px;
	margin-bottom: 120px;
}


@media (max-width: 960px) {
	.concept__item {
		width: 30%;
	}	
}


@media (max-width: 768px) {
	.concept__container {
		/*flex-direction: column;*/
	}
	.concept__item {
		width: 100%;
		max-width: 400px;
	}
	.concept__item:not(:last-child)  {
		margin-bottom: 40px;
	}
	.concept__icon {
	width: 15%;
	}
	.concept__text {
		font-size: 0.9rem;
	}
}




/*=============== service ===============*/


.service__container {
	max-width: 1000px;
	margin-left: 15%;
	display: flex;
	position: relative;
}

.service__container--reverse {
	margin-left: 0;
	margin: 0 15% 0 auto;
}

.service__item {
	display: flex;
	align-items: center;
	justify-content: start;
}

.service__content {
	color: var(--color_base);
	text-decoration: none;
	background:rgba(26, 54, 93, 0.7);
	padding: 25px 50px;
	width: 100%;
	max-width: 380px;
}
.service__content:hover {
	background:rgba(26, 54, 93, 1);
	opacity: 1;
}

.service__title {
	margin: 0;
	margin-bottom: 26px;
	font-size: 20px;
	font-weight: normal;
	position: relative;
}

.service__title::before {
  background-color: var(--color_base); /* 線の色 */
  bottom: -6px; /* 線の位置 */
  content: "";
  height: 0.5px; /* 線の高さ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  transform: translateY(-50%); /* 線の中央寄せ */
  width: 30%; /* 線の長さ */
}


.service__text {
	margin: 10px 0 20px;
	font-size: 15px;
}
.service__btn {
	margin-bottom: 10px;
	font-size: 13px;
}



.service__item--room {
	background: url(../image/service_1.jpg) no-repeat center center / cover;
	height: 450px;
}
.service__item--spa {
	background: url(../image/service_2.jpg) no-repeat center center / cover;
	height: 450px;
}
.service__item--food {
	background: url(../image/service_3.jpg) no-repeat center center / cover;
	height: 450px;
}

@media (max-width: 768px) {
	.service__container {
		padding: 0 3%;
	}
	.service__container {
		margin-left: 2.5%;
	}

	.service__container--reverse {
		margin: 0 2.5% 0 auto;
	}
}



@media (max-width: 550px) {
	.service__container {
		margin-left: auto;
		margin-right: auto;
	}

	.service__container--reverse {
		margin: 0 auto;
	}
}










/*=============== news ===============*/
.news {
		padding: 80px 5% 106px;

}

.news__inner {
		padding: 40px;
}

.news__heading {
	text-align: center;
	margin-bottom: 50px;
}

.news__wrapper {
	margin: 0 auto;
	max-width: 960px;
	border-top: 1px solid var(--color_text);
}

.news__item {
	text-decoration: none;
	color: var(--color_text);
	font-size: 14px;
}

.news__item-inner {
	display: flex;
	align-items: center;
	border-bottom: 1px solid var(--color_text);
	padding: 10px 0;
}

.news__item-inner:hover {

}

.news__time {
	margin-right: 60px;
}

@media (max-width: 768px) {
	.news {
		padding: 50px 3%;
	}
	.news__inner {
		padding: 0;
	}
	.news__item-inner {
		flex-direction: column;
		align-items: start;
		padding: 12px 0;
	}
	.news__item-inner p {
		margin: 6px 0 0;
	}

}




/*================店舗情報================*/

.info {
	margin-bottom: 100px;
}

.info__item {
	display: flex;
	align-items: stretch;
	margin-bottom: 56px;
}

.info__map-wrapper {
	width: 50%;
	margin-right: 80px;
}

.info__map-wrapper iframe {
	width: 100%;
	height: 100%;
	filter: grayscale(.25);
}



.info__data {
	display: flex;
	flex-wrap: wrap;
	width: 40%;
	background: var(--color_sub);
	padding: 45px 55px;
	margin: 0;
	font-size: 14px;
		position: relative;
}



.info__data::before,
.info__data::after {
    position: absolute;
    width: 30px;
    height: 30px;
    content: '';
}

.info__data::before {
    border-left: solid 5px var(--color_main);
    border-top: solid 5px var(--color_main);
    top: 0;
    left: 0;
}

.info__data::after {
    border-right: solid 5px var(--color_main);
    border-bottom: solid 5px var(--color_main);
    bottom: 0;
    right: 0;
}


.info__data dt {
	width: 100%;
	font-size: 15px;
	margin-bottom: 6px;
}

.info__data dd {
   width: 100%;
   margin-bottom: 20px;
   margin-left: 0;
}

@media (max-width: 768px) {
	.info__item {
		display: flex;
		flex-direction: column;
		width: 95%;
		margin: 0 auto;
	}
	.info__map-wrapper {
		width: 100%;
		height: 300px;
		margin-right: 0px;
		margin-bottom: 20px;
	}
	.info__data {
		width: 100%;
		padding: 24px 32px;
	}
}









/*================子ページ================*/
.child-container {
	max-width: 1080px;
	margin: 0 auto 80px;
	padding: 120px 3%;
}

.child-container h2 {
	font-size: 22px;
	color: var(--color_main);
	position: relative;
	margin-bottom: 32px;
}



.child-container h2::before {
  background-color: var(--color_main); /* 線の色 */
  bottom: -6px; /* 線の位置 */
  content: "";
  height: 0.5px; /* 線の高さ */
  position: absolute;
  transform: translateX(-50%); /* 線の中央寄せ */
  transform: translateY(-50%); /* 線の中央寄せ */
  width: 80px; /* 線の長さ */
}


.child-section {
	margin-bottom: 100px;
}



.child-h1 {
	font-size: 30px;
	position: relative;
	text-align: center;
	padding: 40px;
	background: var(--color_sub);
	margin-bottom: 120px;
}

.child-h1::before,
.child-h1::after {
    position: absolute;
    width: 30px;
    height: 30px;
    content: '';
}

.child-h1::before {
    border-left: solid 5px;
    border-top: solid 5px;
    top: 0;
    left: 0;
}

.child-h1::after {
    border-right: solid 5px;
    border-bottom: solid 5px;
    bottom: 0;
    right: 0;
}


.article__heading {
	font-size: 22px;
	font-weight: normal;
	margin-bottom: 60px;
}

.article__time {
	font-size: 12px;
}

.article__text p {
	margin-bottom: 28px;
}

/*子ページプロフィール*/
.child-profile {
	display: flex;
}

.child-profile__img {
	margin-right: 40px;
	width: 100%;
	max-width: 200px;
	min-width: 200px;
}
.child-profile__name {
	font-weight: bold;
}

@media (max-width: 768px) {
	.child-profile {
		flex-direction: column;
		align-items: center;
	}
	.child-profile__name {
		text-align: center;
	}
	.child-profile__img {
		margin-right: 0;
		margin-bottom: 40px;
	}
}
/* ==================== フッター（コンタクト） ==================== */

.level2-heading--cta {
	color: var(--color_base);
	margin-bottom: 26px;
}



.cta {
	padding: 0 5% 0;
	color: var(--color_base);
	margin-bottom: 120px;
}

.cta__inner {
	background-color: var(--color_main);
	padding: 60px 0;
}

.cta__level2-heading {
	margin-bottom: 70px;
}

.cta__br {
	display: none;
}
.cta__level2-heading::before {
  content: "";
  display: inline-block;
  width: 36px;
  height: 25px;
  vertical-align: middle;
  background: url(../images/cta_icon.svg) no-repeat;
  background-size: contain;
  margin-right: 8px;
  margin-bottom: 6px;
}

.cta__body {
	display: flex;
	justify-content: space-around;
}

.cta__btn-wrapper {
	width: 50%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.cta__btn-text {
	margin-bottom: 12px;
	font-size: 14px;
}

.cta__btn {
  display: inline-block;
  width: 100%;
  max-width: 428px;
  background-color: var(--color_base);
  color: var(--color_main);
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  padding: 20px 0;
}

.cta__btn--text {
	margin: 0;
	background: var(--color_base);
}

@media (max-width: 1060px) {

	.cta__level2-heading {
		font-size: 30px;
	}
	.cta__btn {
	  width: 95%;
	  max-width: 428px;
	  font-size: 20px;
	  padding: 20px 0;
	}
}


@media (max-width: 870px) {
	.cta__body {
		flex-direction: column;
		align-items: center;
	}
	.cta__btn {
	  width: 90%;
	  max-width: 600px;
	  font-size: 18px;
	  padding: 16px 0;
	}
	.cta__btn:first-of-type {
		margin-bottom: 40px;
	}
	.cta__btn-wrapper {
		width: 95%;
	}
}

@media (max-width: 750px) {
	.cta__level2-heading {
		font-size: 24px;
	}
	.cta__level2-heading::before {
	  width: 28px;
	  height: 20px;
	  margin-right: 8px;
	}
}


@media (max-width: 520px) {

	.cta {
		padding: 180px 3% 0;
	}
	.cta__level2-heading {
		font-size: 24px;
	}
	.cta__level2-heading::before {
	  width: 28px;
	  height: 20px;
	  margin-right: 8px;
	}
	.cta__br {
		display: block;
	}
}





/*=============== footer ===============*/
.footer {
	display: flex;
	justify-content: center;
	padding: 0 5% 0;
	font-size: 12px;
}

.footer__inner {
	margin: 0 auto;
	width: 100%;
	padding: 20px 0;
	border-top: 1px solid var(--color_main);
}

.footer__inner p {
	margin: 20px 0;
}

.footer-utilities {
	display: flex;
	justify-content:space-between;
	align-items: center;
	margin-bottom: 25px;
}

.footer-utilities__item {
	width: 33.3%;
	display: flex;
	justify-content: space-around;
	flex-direction: column;
}


.footer__copyright {
	color: var(--color_main);
	text-align: right;
}

@media (max-width: 768px) {
}






/*=============== animation ===============*/
/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}




/*==================================================
機能編　　7-1-21	線から塗に変化（上から下）
===================================*/

/* ボタン共通設定 */

.btn-wrapper {
	display: flex;
	justify-content: center;
	margin-top: 60px;
}


.btn {
    /*線の基点とするためrelativeを指定*/
	position: relative;
    /*ボタンの形状*/
	display:inline-block;
  padding:14px 30px;
	color:var(--color_main);
	border:1px solid var(--color_main);
    text-decoration: none;
    outline: none;
    /*はみ出す背景色を隠す*/
 	overflow: hidden;
 	font-size: 14px;
}

/*hoverした際のボタンの形状*/
.btn:hover {
	color:var(--color_base);
	border-color: transparent;
    /*色の変化を遅らせる*/
	transition-delay: .3s;
	opacity: 1;
}

/*線の設定*/
.btn span{
    display: block;
    z-index: 2;
}
/*== 線から塗に変化（上から下） */

/*線の設定*/
.bordertop span::before,
.bordertop span::after {
    content: '';
    /*絶対配置で線の位置を決める*/
    position: absolute;
    width:1px;
    height: 0;
    /*線の形状*/
    background: var(--color_main);
    /*アニメーションの設定*/
	transition: all .3s;
}

/*左線*/
.bordertop span::before {
    left:0;
    top:0;
}

/*右線*/
.bordertop span::after {
    right:0;
    top:0;
}

/*hoverをすると線が伸びる*/
.bordertop:hover span::before,
.bordertop:hover span::after {
    height: 100%;
}

/*背景の設定*/
.bordertop::before{
	content: '';
    /*絶対配置で線の位置を決める*/
	position: absolute;
	left: 0;
    top:0;
	z-index: -1;
    /*背景の形状*/
	width: 100%;
	height: 0;
	background:var(--color_main);
    /*アニメーションの設定*/
	transition: all .3s;
}

/*hoverをすると背景が伸びる*/
.bordertop:hover::before{
	height: 100%;
    /*0.4秒遅れてアニメーション*/
	transition-delay: .3s;
}





/*=============== お問い合わせ ===============*/
.contact {
	margin: 0 auto;
}

.contact p , form {
	font-size: 14px;
}

.contact__items {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 52px;
}

label {
	width: 300px;
	text-align: left;
}

input[type="text"],
input[type="email"],
textarea {
	width: 100%;
	margin-left: 20px;
	height: 45px;
	border: 1px solid #E5E5E5;
	padding: 10px;
}

textarea {
	height: 300px;
}

.contact-submit {
	text-align: center;
}

input[type="submit"] {
	padding: 10px 20px;
	border: none;
	background: var(--color_main);
	color: var(--color_base);
	margin: 0 auto;
}

input[type="submit"]:hover {
	opacity: 0.5;
}

.contact__info {
	margin-bottom: 40px;
	text-align: left;
}


@media (max-width: 768px) {
	.contact__items {
		flex-direction: column;
		align-items: start;
	}
	input[type="text"],
	input[type="email"],
	textarea {
		margin: 0;
	}
}
