@charset "utf-8";

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

html {
	font-size: 21px;
}

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

body {
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
	color: #333;
	line-height: 1.6;
	letter-spacing: 0.05em;
}

main {
	margin-top: 65px;
}

ul {
	padding-left: 0;
}


h3 {
	margin: 12px 0 0;
}

@media (max-width: 768px) {
	body {
		line-height: 1.3;
	}
}

a {
	color: #333;
	text-decoration: none;
}

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

.container {
	max-width: 1200px;
	margin: 0 auto;
}

.small-container {
	max-width: 600px;
	margin: 0 auto;
	text-align: center;
	margin-bottom: 80px;
}

.small-container--blog {
	text-align: left;
}

.wrapper {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
}

.item {
	width: 32.2%;
	position:relative;
    display: inline-block;
    color: #333;
    text-decoration: none;
    outline: none;
}

@media (max-width: 768px) {
	.item {
		width: 49.0%;
	}
	.item--service {
		width: 100%;
	}
}

.level1-heading {
	text-align: center;
	margin: 150px 0 70px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: normal;
	font-size: 1.5rem;
	letter-spacing: 0.05em;
}



.level2-heading {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom:30px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: normal;
	letter-spacing: 0.05em;
	margin-top: 0;
}


.level3-heading {
	font-size: 0.8em;
	text-align: center;
}

.tax-about {
	text-align: right;
	font-size: 0.8rem;
	margin-top: 0;
}

.btn-box {
	display: inline-block;
	margin: 0 auto;
	margin-top: 50px;
	display: flex;
	justify-content: center;
}
.blog-btn {
  color: #fff;
	font-size: 16px;
	background: #333;
	padding: 10px 56px;
	position: relative;
	z-index: 1;
	display: block;
	transition: .3s;
	letter-spacing: 0.05em;
}

.blog-btn:hover {
	opacity: 0.8;
}




/*=============== header ===============*/
.header {
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: #fff;
	z-index: 100;
}


.header__inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 0 auto;
	padding: 0 5%;
  height: 65px;
  background: #fff;
}

.header-nav {
	display: flex;
	list-style: none;
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-weight: normal;
	letter-spacing: 0.05em;
}

.header-nav__item {
	padding-left: 32px;
	font-size: 0.8em;
}

.header__logo {
	margin: 0;
	line-height: 0;
	vertical-align: bottom;
	font-family: 'Cormorant Garamond', serif;
	font-weight: normal;
	letter-spacing: 0.13em;
	font-size: 1.8rem;
	font-weight: bold;
}



.header-nav__link {
  position: relative;
  display: inline-block;
  text-decoration: none;
}
.header-nav__link::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 1.9px;
  background: #333;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .4s;
}
.header-nav__link:hover::after {
  transform: scale(1, 1);
}

.logo {
	line-height: 1.0;
	font-size: 2em;
	font-weight: 550;
	margin: 0;
}

@media (max-width: 768px) {
	.header {
		box-shadow: none;
		height: 0px;
		padding-bottom: 0;
	}
}


/*スマホ用のナビゲーション*/

@media (max-width: 768px) {
	#g-nav{
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position:fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
		top:0;
    right: -120%;
		width:100%;
    height: 100vh;/*ナビの高さ*/
		background:#333;
    /*動き*/
		transition: all 0.8s;
		opacity: 0.7;
	}

	/*アクティブクラスがついたら位置を0に*/
	#g-nav.panelactive{
	    right: 0;
	    opacity: 1.0;
	}

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

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

	.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;
		letter-spacing: 0.1em;
		font-weight: bold;
	}
}

/*ボタンのためのCSS*/

.openbtn{
	position:fixed;
  z-index: 9999;/*ボタンを最前面に*/
	top:8px;
	margin-right: 2.5%;
	right: 0px;
	cursor: pointer;
  width: 50px;
  height:50px;
  display: none;
}


	
/*×に変化*/	
.openbtn span{
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 0px;
	background-color: #333;
  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%;
}

@media (max-width: 768px) {
	.header {

	}
	.openbtn {
		display: block;
	}
}



/*=============== mainに関する設定 ===============*/

/*hero*/
.hero {
	margin-bottom: 50px;
}
.hero__img {

}
.hero__img-medium {
	display: none;
}
.hero__img-small {
	display: none;
}



@media (max-width: 1200px) {
 .hero__img {
 	display: none;
	}
	.hero__img-medium {
		display: block;
	}
}

@media (max-width: 768px) {
	.hero__img-medium {
		display: none;
	}
	.hero__img-small {
		display: block;
	}
}


.hero img {
	width: 100%;
}

/*全体*/
.home-container {
	margin-top: 100px;
	margin-bottom: 100px;
}

/*home-concept*/
.home-concept {
	width: 93%;
	margin-right: auto;
	margin-left: auto;
	border-bottom: solid 1px;
}

.home-concept__heading {
	text-align: center;
  font-size: 1.2rem;
  margin-bottom:50px;
  margin-top: 0;
	font-family: 'Cormorant Garamond', serif;
	font-weight: normal;
	letter-spacing: 0.05em;	
}

/*home-menu*/
.home-menu {
	width: 100%;
	margin: 0 auto;
}
.wrapper--home-menu {
	margin-bottom: 100px;
}

.home-menu__link {

}

.home-menu__heading {
	font-size: 1.4rem;
	text-align: center;
	font-family: 'Cormorant Garamond', serif;
	font-weight: normal;
	letter-spacing: 0.05em;
	position: absolute;
	top: 50%;
	left: 50%;
	color: #fff;
  	-ms-transform: translate(-50%,-50%);
  	-webkit-transform: translate(-50%,-50%);
 	 transform: translate(-50%,-50%);
}

.service-img {
transition: 0.5s all;
	filter: brightness(80%);
	position: relative;
}

.item--service {
	width: 33.3333333%;
}

.service-img:hover {
	filter: brightness(100%);
}


@media (max-width: 1000px) {
	.item--service {
		width: 100%;
	}
	.home-menu__heading {
		font-size: 1.7rem;
	}
}


/*home-style*/
.home-style {
	width: 99%;
	margin: 0 auto 100px;
}

.home-style__img-wrapper {
	width: 19.5%;
	height: 500px;
}

.home-style__img {
	height: 100%;
	width: 100%;
	object-fit: cover;
	transition: 0.5s all;
}


.home-style__img:hover {
	filter: brightness(80%);
}


@media (max-width: 1000px) {
	.home-style__img-wrapper {
		width: 24.5%;
	}
	.home-style__img-wrapper--sp {
		display: none;
	}
}

@media (max-width: 768px) {
	.home-style {
		width: 98%;
	}
	.home-style__img-wrapper {
		width: 49.5%;
		height: 450px;
	}
	.home-style__img-wrapper:nth-child(1), .home-style__img-wrapper:nth-child(2){
		margin-bottom: 8px;
	}
	.home-concept__heading {
		display: none;
	}

}

@media (max-width: 484px) {
	.home-style__img-wrapper {
		height: 350px;
	}
}



/*=============== blog ===============*/
.home-blog {
	margin-bottom: 100px;
	width: 94%;
	margin: 0 auto;
}



.home-blog__wrapper {
	display: flex;
	flex-direction: row;
	width: 100%;
	flex-wrap: wrap;
}





.item img {
	height: 190px;
	width: 100%;
	object-fit: cover;
}



.item--service img {
	height: 360px;
}

.item--blog {
	margin-bottom: 20px;
}


.blog__media-link {
	width: 50%;
}

.blog__media-link--archive {
	width: 100%;
	margin-bottom: 50px;
}

.blog__media-link:nth-child(1), .blog__media-link:nth-child(2), .blog__media-link:nth-child(3), .blog__media-link--sp {
	margin-bottom: 50px;
}

.blog__media {
	display: flex;
	flex-direction: row;
}


@media (max-width: 1200px) {
	.home-blog {
		width: 98%;
	}	
}
@media (max-width: 1000px) {
	.blog__media-link {
		width: 100%;
	}
	.blog__media {
		justify-content: center;
	}
	.blog__media-link--none {
		display: none;
	}
  .blog__media-link--sp {
		margin-bottom: 0px;
	}
}


@media (max-width: 768px) {
	.item--contents img {
		height: 220px;
	}
}



.blog-hero {
	margin: 100px auto 40px;
	text-align: center;
}

.blog-hero img {
	height: 370px;
	width: 100%;
	object-fit: cover;
}


.blog-time  {
	font-size: 0.65rem;
	color: #8F8F8F;
	line-height: 1.2;
}

.level1-heading--blog {
	margin-top: 10px;
	margin-bottom: 10px;
	font-size: 1.3rem;
	font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.blog-time--child {
	text-align: center;
	font-size: 0.7rem;
	margin-bottom: 40px;
}

.blog p {
	font-size: 0.85rem;
}

.blog p:not(:last-child) {
	margin-bottom: 30px;
}

.blog__pagination-wrapper {
	display: flex;
	justify-content: space-between;
	margin-top: 50px;
	font-size: 0.8rem;
}

.blog__pagination-wrapper--none {
	justify-content: end;
}

.blog__pagination {
	color: #8F8F8F;	
	transition: 0.5s all;
}

.blog__pagination:hover {
	color: #333;
}

.blog__pagination--none {
	display: none;
}

.blog__thumbnail-wrapper {
  transition: 0.5s all;
}

.blog__contents {
	display: flex;
	flex-direction: column;
}

.blog__thumbnail {
  transition: 0.5s all;
  width: 250px;
  height: 150px;
  object-fit: cover;
}

.level3-heading--home-blog {
	text-align: left;
	margin:14px 0;
}

.blog__thumbnail:hover {
	filter: brightness(80%);
}

.blog__contents {
	width: 55%;
	padding-left: 4%;
}

.blog__discription {
	font-size: 0.7rem;
	margin: 0;
}



.small-container--concept {
	text-align: left;
}



@media (max-width: 768px) {
	.blog-hero {
		margin-top: 70px;
	}
}
@media (max-width: 430px) {
	.blog__thumbnail {
	  width: 150px;
	  height: 130px;
	}
	.blog__contents {
		width: 55%;
		padding-left: 3%;
	}
	.level3-heading--home-blog {
		margin:12px 0;
	}
	.home-blog {
		width: 99%;
	}	
}



/*=============== access ===============*/
.access {
	margin-bottom: 100px;
}


.access__body {
	width: 94%;
	display: flex;
	align-items: center;
	font-size: 0.74rem;
	border-top: solid 1px;
	padding-top: 100px;
	margin: 0 auto;
	justify-content: space-between;
}



.access__body dt {
	float: left;
}
.access__body dd {
	margin-left: 90px;
	margin-bottom: 8px;
}

.access__map-button {
	font-size: 1.0rem;
}

.btn-box--access {
	margin: 0;
	justify-content: start;
}

.access__information {
	width: 40%;
	padding-left: 10%;
}

.access__information-text {
	margin: 28px 0;
}

.access__heading {
	font-size: 1.2rem;
	margin: 0;
	font-family: 'Cormorant Garamond', serif;
	font-weight: normal;
	letter-spacing: 0.1em;
	line-height: 0.8;
}

.access__map {
	height: 340px;
	width: 57%;
		filter: brightness(80%);
}

.access__map iframe {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}



@media (max-width: 1200px) {
	.access__information {
		width: 40%;
		padding-left: 0%;
	}
}

@media (max-width: 760px) {
	.access__body {
		width: 94%;
		flex-direction: column-reverse;
		justify-content: space-between;
	}
	.access__information {
		width: 100%;
		margin-top: 50px;
	}
	.access__map {
		width: 100%;
	}
}



/*=============== reserve ===============*/
.reserve {
	background-image: url(../image/reserve.jpg);
	background-size: cover;
	text-align: center;
	height: 400px;
	width: 100%;
	color: #fff;
	vertical-align: middle;
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 0;
	background-position: center;
}
.reserve__inner {

}

.reserve__heading {
	font-size: 1.7rem;
	margin-bottom: 60px;
	font-family: 'Cormorant Garamond', serif;
	font-weight: normal;
	letter-spacing: 0.05em;
}


.reserve__tel {
	margin-bottom: 60px;
}

.reserve__tel-number {
	font-size: 1.8rem;
	margin-left: 12px;
	letter-spacing: 0.05em;

}

.reserve__tel-number a {
	color: #fff;	
}

.reserve__caution {
	font-size: 0.7rem;
}

/*=============== footer ===============*/
.footer {
	background: #333;
	color: #fff;
	height: 90px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.footer__inner {
/*	max-width: 1200px;*/
	width: 100%;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 5%;
}

.footer__sns {
	width: 27px;
	margin-left: 15px;
	transition: .3s all;
}

.footer__sns:hover {
	opacity: 0.7;
}

.copyright {
	font-size: 0.75rem;
	text-align: center;
	margin: 0;
	letter-spacing: 0.05em;
}

@media (max-width: 600px) {
	.footer {
		height: 110px;
	}
	.footer__inner {
		flex-direction: column;
	}
	.footer__sns {
		width: 22px;
	}
	.copyright {
		margin-bottom: 16px;
	}
}

/*=============== page ===============*/
.page-container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 2%;
}



.page-hero {
	margin-top: 100px;
	margin-bottom: 50px;
}

.page-hero img {
	height: 520px;
	width: 100%;
	object-fit: cover;
}




/*=============== menu ===============*/

.menu-item {
	margin-bottom: 80px;
  padding-top: 60px;
  margin-top:-60px;
}


.menu-contents {
	display: flex;
	justify-content: space-between;
	border-bottom: solid 1px #cfcdcd;
	margin-bottom: 10px;
}


.menu-contents p {
	margin: 4px 0;
	font-size: 0.85rem;
}

.menu-item__img-wrapper {
	position: relative;
}

.menu-item__img {
	height: 250px;
	width: 100%;
	object-fit: cover;
	margin-bottom: 20px;
	filter: brightness(0.9);
}

.menu-item__heading {
	position: absolute;
	color: #fff;
	font-weight: normal;
	font-family: 'Cormorant Garamond', serif;
	letter-spacing: 0.08rem;
	font-size: 2em;
  top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	margin:0;
	padding:0;
}

@media (max-width: 768px) {
	.page-hero {
		margin-top: 70px;
	}
	.menu-contents {
		padding: 0 3%;
	}
}



/*=============== archive ===============*/
.archive-container {
	max-width: 800px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}

.archive-item {
	width: 100%;
	margin-bottom: 30px;
}


.archive-item__thumbnail {
	height: 220px;
	width: 100%;
	object-fit: cover;
}

.page-title--blog {
	margin-top: 100px;
}

.pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 50px;
	font-size: 0.9em;
}

.pagination a:nth-child(1) {
	margin-right: 15px;
}

.current {
	display: block;
	border-bottom: solid 2px;
}

.inactive:hover {
	color: red;
}

@media (max-width: 768px) {
	.style-item {
		width: 49%;
		margin-bottom: 10px;
	}
	.style-item img {
		height: 420px;
	}
}



/*=============== style ===============*/
.wrapper--style {
	justify-content: ;
}

.style-item {
	width: 24%;
	text-align: center;
	margin-bottom: 20px;
}

.style-item img {
	height: 400px;
	width: 100%;
	object-fit: cover;
}

.style-item img:hover{
  transition:.7s all;
	filter: brightness(80%);
}

/*style-detail*/
.style-detail {
	width: 100%;
}

.style-detail__inner {
	max-width: 800px;
	width: 100%;
	height: 61vh;
	margin: 90px auto 70px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 10px;
}

.style-detail__wrapper {
	width: 46%;
}
.style-detail__img-wrapper {
	width: 36%;
}

.style-detail__img {
	width: 100%;
}

.style-detail__heading {
	font-size: 1.5rem;
	text-align: center;
	font-weight: normal;
	margin-bottom: 30px;
}

.style-detail__font {
	font-size: 0.9rem;
}

@media (max-width: 768px) {
	.style-detail__inner {
		margin-top: 70px;
		margin-bottom: 50px;
	}

	.style-item {
		width: 32.5%;
	}
}

@media (max-width: 548px) {
	.style-item {
		width: 48.5%;
	}
}



/*=============== concept ===============*/
.concept__item-wrapper {
	max-width: 1200px;
	display: flex;
	justify-content: space-around;
	overflow: hidden;
	align-items: center;
	margin: 0 auto 100px;
}


.concept__img-wrapper {
	width: 22%;
	text-align: center;
}

.concept__img-wrapper--child {
	width: 28%;
}



.concept__img {
	width: 100%;
	padding-top: 60px;
}

.concept__img--child {
	padding-top: 0;
}

.concept__text-wrapper {
	font-size: 0.9rem;
	display: flex;
	align-items: center;
	width: 36%;
}

.concept__text:not(:last-child) {
	margin-bottom: 52px;
}

.concept__img-sp-wrapper {
	display: none;
}

@media (max-width: 1200px) {
	.concept__text-wrapper {
		width: 40%;
	}
	.concept__img-wrapper {
		width: 26%;
	}
}

@media (max-width: 1000px) {
	.concept__text-wrapper {
		width: 45%;
	}
	.concept__img-wrapper {
		width: 33%;
	}
}




@media (max-width: 768px) {
	.concept__item-wrapper {
		flex-direction: column;
	}
	.concept__img {
		margin-bottom: 50px;
	}
	.concept__text-wrapper {
		font-size: 1rem;
	}
	.concept__text-wrapper {
		width: 70%;
	}
	.concept__img-wrapper--home {
		display: none;
	}
	.concept__img-sp-wrapper {
		width: 100%;
		display: block;
		text-align: center;
		margin-bottom: 70px;
	}
	.concept__img-sp {
		width: 60%;
	}
	.home-concept__heading {
		font-size: 1.8rem;
	}
}

@media (max-width: 600px) {
	.concept__text-wrapper {
		width: 90%;
	}	
	.concept__img-wrapper--child {
		width: 55%;
	}
	}


/*fadein*/
.fadeIn {
animation-name:fadeInAnime;
animation-duration:0.5s;
animation-fill-mode:forwards;
opacity: 0;
}
@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}


.delay-time02{
animation-delay: 0.1s;
}

.delay-time04{
animation-delay: 0.2s;
}

.delay-time06{
animation-delay: 0.3s;
}

.delay-time08{
animation-delay: 0.4s;
}

.delay-time10{
animation-delay: 0.5s;
}

.delay-time12{
animation-delay: 0.6s;
}

.delay-time14{
animation-delay: 0.7s;
}

.delay-time16{
animation-delay: 0.8s;
}

.delay-time18{
animation-delay: 0.9s;
}

.delay-time20{
animation-delay: 1.0s;
}

.delay-time22{
animation-delay: 1.1s;
}




/*---------------モーダルウィンドウ---------------*/


/*全て共通：hideエリアをはじめは非表示*/
.hide-area{
	display: none;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after, 
.modaal-close:before{
	background:#ccc;	
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before{
	background:#666;
}


.modaal-close:after, .modaal-close:before {
	border-radius: 0px;
	background: #fff;
}
