﻿@charset "UTF-8";

* {

	margin: 0;
	padding: 0;
	box-sizing: border-box;

}

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

li {

	list-style: none;
	
}

a {

	color: #111;
	text-decoration: none;

}

::-moz-selection {
	
	color: #fff;
	background: #111;
	
}

::selection {
	
	color: #fff;
	background: #111;
	
}

/* AdobeFontの読み込み */
/*

html * {
	
  visibility: hidden;
  
}

html.wf-active * {

  visibility: visible;
  
}

*/

/* HTML */
html {

	min-width: 320px;
	font-size: 62.5%;
	text-size-adjust: 100%;         /* スマホ横向き時のテキストの拡大を防ぐ */
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;
	
}

/* ボディ */
body {

	min-width: 320px;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
	line-height: 1.5;
	color: #111;
	letter-spacing: 0.04em;
	background: #ede9e6;
	-webkit-text-size-adjust: 100%;
	overflow-x: hidden;

}

/* メイン */
main {
	
	display: block;

}

/* ヘッダー */
header {
	
	opacity: 1;
	position: fixed;
	top:  0;
	left: 0;
	z-index: 20;
	width: 100%;
	background: rgba(237,233,230, 0.8);
	transform: translate3d(0, 0, 0); 
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
}

/* 隠す */
header.nav-up {
	
	opacity: 0;
  transform: translate3d(0, -100%, 0);
  
}

/* 表示 */
header.nav-down {
	
	opacity: 1;
  transform: translate3d(0, 0, 0);
  
}

header .inner {

  display: flex;
  justify-content: space-between;
	width: 94%;
	margin: 0 auto;
	padding: 0.8rem 0;

}

header .inner p {

	font-size: 4.6rem;
	font-size: 5.6rem;
	font-weight: 500;

}

header .inner p a {

	color: #000;

}

header .inner p a img {
	
	width: 12rem;
	margin-right: 1.6rem;

}

.main_navi {
	
	opacity: 0;
	position: fixed;
	top:  0;
	left: 0;
	z-index: 100;
	width:  100%;
	height: 100%;
	min-height: 100vh;
	background: #ede9e6;
	
	overflow-x: hidden;
	overflow-y: auto;
	
	-ms-overflow-style: none;  /* IE, Edge */
	scrollbar-width: none;     /* Firefox  */
	transition: all 0.3s;
	pointer-events: none;
	
	overscroll-behavior-y: contain; /* 親要素にスクロールが伝わらないようにする */

}

.main_navi.active {
	
	opacity: 1;
	pointer-events: auto;

}

.main_navi::-webkit-scrollbar {

	display: none; /* Chrome, Safari */

}

.main_navi ul {

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
	width: 80%;
	margin: 0 auto;
	padding-top:    15vh;
	padding-bottom: 20vh;
	text-align: left;

}

.main_navi.active ul {



}

.main_navi ul li {
		
	position: relative;
	width: 50%;
	height: auto;
	padding: 0.2em 0;
	font-size: 7rem;
	font-weight: 500;
	letter-spacing: 0.08em;

}

.main_navi ul li a {
	
	position: relative;
	color: #111;

}

.main_navi ul li a:before, .main_navi ul li a:after {

  position: absolute;
  top:   50%;
  right: 0;
  content: '';
  width:  0;
  height: 0.3rem;

}

.main_navi ul li a:before {

	background: #333;
  transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);

}

.main_navi ul li a:after {

	background: #333;
  transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);

}

.main_navi ul li a:hover:before, .main_navi ul li a:hover:after {

	left:  0;
  width: 100%;

}
	
	/* トグル */
	/*
	#menu {
		
	  position: fixed;
	  top:   0;
	  right: 3%;
	  z-index: 1000;
	  width:  8.6rem;
	  height: 8.6rem;
	  width:  10rem;
	  height: 10rem;
	  cursor: pointer;
	  background: #111;
		
	}
	
	.menu__line {
		
		position: absolute;
	  display: block;
	  width:  60%;
	  height: 5%;
	  background: #ede9e6;
	  transform: rotate(0deg) scaleX(1);
	  transition: all 0.3s;
	  
	}
	
	.menu__line--top {
		
		top:  25%;
		left: 20%;
	
	}
	
	.menu__line--center {
		
	  top:   47%;
	  right: 20%;
	  
	}
	
	.menu__line--bottom {
		
	  bottom: 25%;
	  left:   20%;
	  
	}
	
	#menu.active .menu__line--top {
	
	  top: 50%;
	  transform: rotate(45deg);
	  
	}
	
	#menu.active .menu__line--center {
		
	  transform: scaleX(0);
	  
	}
	
	#menu.active  .menu__line--bottom {
	
	  bottom: 46%;
	  transform: rotate(135deg);
	  
	}
	*/
	
	#menu {
		
	  position: fixed;
	  top:   0;
	  right: 3%;
	  z-index: 1000;
	  width:  8.6rem;
	  height: 8.6rem;
	  width:  10rem;
	  height: 10rem;
	  cursor: pointer;
	  background: #233191;
	  border-radius: 100%;
		
	}
	
	#menu .menu__line {
		
		position: absolute;
	  display: block;
	  height: 4.5%;
	  background: #ede9e6;
	  border-radius: 9999px;
	  transition: all 0.2s;
	  
	}
	
	#menu .menu__line--top {
		
		top:  30%;
		left: 20%;
		width: 60%;
	
	}
	
	#menu .menu__line--center {
		
	  top:  45%;
	  left: 20%;
	  width: 45%;
	  
	}
	
	#menu .text {
	
		position: absolute;
		top: 52%;
		left: 20%;
		font-size: 1.8rem;
		font-weight: 500;
		color: #ede9e6;
		letter-spacing: 0.12em;
	
	}
	
	#menu .text:before {
	
		content: "MENU";
	
	}
	
	#menu.active .text:before {
	
		content: "CLOSE";
		letter-spacing: -0.02em;
	
	}

.mainimg {
	
	position: relative;
	z-index: 10;
	width:  100%;
	height: 100vh;
	padding: 0;
	overflow: hidden;
  
}

.swiper-container {
	
	opacity: 0.85;
	position: relative;
	width:  100%;
	height: 100vh;
  overflow: hidden;
  
}

.swiper-wrapper .swiper-slide {
	
	position: relative;
	overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;

}

.swiper-wrapper .swiper-slide:after {

	position: absolute;
	top:  0;
	left: 0;
	content: "";
	width:  100%;
	height: 100%;
	/*
	opacity: 0.3;
	background: #fff;
	*/

}

.swiper-wrapper .swiper-slide .slide-img {
	
	width:  100%;
	height: 100%;
	background-size: cover;
	background-position: center center;

}

.swiper-wrapper .swiper-slide .slide-img.img1 {

	background-image: url('../img/88_original.webp');

}

.swiper-wrapper .swiper-slide .slide-img.img2 {

	background-image: url('../img/81_original.webp');
	background-position: center bottom 30%;

}

.swiper-wrapper .swiper-slide .slide-img.img3 {

	background-image: url('../img/16_original.webp');

}

.swiper-wrapper .swiper-slide .slide-img.img4 {

	background-image: url('../img/57_original.webp');

}

.swiper-wrapper .swiper-slide .slide-img.img5 {

	background-image: url('../img/29_original.webp');
	/*background-position: right bottom;*/

}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {

  animation: zoomUp 7s linear 0s 1 normal both; 

}

@keyframes zoomUp {

    0% { transform: scale(1.15); }
  100% { transform: scale(1.0); }
  
}

/*
.mainimg .catch {

	position: absolute;
	z-index: 10;
	letter-spacing: 0.02em;
	color: #000;
	font-weight: 800;
	left: 0;
	bottom: 2.5%;
	
}

.mainimg .catch .line1 {
	
	display: inline-block;
	margin-bottom: 0.2em;
	padding: 0 0.2em;
	padding-bottom: 0.2em;
	padding-left: 5%;
	font-size: 9rem;
	font-size: 12rem;
	line-height: 1.3;
	letter-spacing: 0.02em;
	background: rgba(237,233,230, 0.8);

}

.mainimg .catch .line1 .text {

	display: inline-block;
	border-bottom: 2px solid #111;

}

.mainimg .catch .line1 .batu {

	display: inline-block;
	margin: 0 0.2em;

}

.mainimg .catch .line2 {

	display: inline-block;
	padding: 0.15em 0.4em 0.18em 0.4em;
	padding-left: 5%;
	font-size: 3.8rem;
	font-size: 5.0rem;
	line-height: 1.4;
	letter-spacing: 0;
	background: rgba(237,233,230, 0.8);

}

.mainimg .catch .line2 .one {

	display: inline-block;
	margin-left: -0.45em;

}

.mainimg .catch .line2 .two {

	display: inline-block;
	margin-left: -0.4em;

}
*/


.mainimg .catch {

/*
	position: absolute;
	left: 0;
	bottom: 2.5%;
*/
	z-index: 10;
	letter-spacing: 0.02em;
	color: #000;
	font-weight: 800;
	
	position: absolute;
	top:  50%;
	left: 50%;
	width: 100%;
	text-align: center;
	transform: translate(-50%, -50%);
	
}

.mainimg .catch .line1 {
	
	display: inline-block;
	margin-bottom: 1em;
	padding: 0 0.1em;
	padding-bottom: 0.2em;
	/*padding-left: 5%;*/
	font-size: 11.4rem;
	font-size: 8.4rem;
	line-height: 1.25;
	letter-spacing: 0.02em;
	background: rgba(237,233,230, 0.8);

}

.mainimg .catch .line1 .text {

	display: inline-block;
	border-bottom: 2px solid #111;

}

.mainimg .catch .line1 .batu {

	display: inline-block;
	margin: 0 0.2em;

}

.mainimg .catch .line2 {

	display: inline-block;
	padding: 0.1em 0.4em 0.15em 0.35em;
	padding: 0.02em 0.1em 0.08em 0.1em;
	/*padding-left: 5%;*/
	font-size: 4.8rem;
	font-size: 8.8rem;
	line-height: 1.15;
	letter-spacing: 0;
	background: rgba(237,233,230, 0.8);
	margin-bottom: 0.1em;

}

.mainimg .catch .line2 .one {

	display: inline-block;
	margin-left: -0.45em;

}

.mainimg .catch .line2 .two {

	display: inline-block;
	margin-left: -0.4em;

}

.mainimg .catch .line3 {

	display: inline-block;
	padding: 0.1em 0.4em 0.15em 0.35em;
	padding: 0.02em 0.1em 0.08em 0.1em;
	/*padding-left: 5%;*/
	font-size: 4.8rem;
	font-size: 8.8rem;
	line-height: 1.15;
	letter-spacing: 0;
	background: rgba(237,233,230, 0.8);

}

.mainimg .catch .line3 .one {

	display: inline-block;
	margin-left: -0.45em;

}

.mainimg .catch .line3 .two {

	display: inline-block;
	margin-left: -0.4em;

}

/*
.mainimg .catch .line2 .top {
	
	display: inline-block;
	margin-bottom: 0.1em;
	background: rgba(237,233,230, 0.8);

}

.mainimg .catch .line2 .bottom {

	background: rgba(237,233,230, 0.8);

}
*/

.yoyaku {

	position: fixed;
	top:   0;
	right: 12%;
	z-index: 20;
	display: flex;
  flex-wrap: nowrap;
	width:  40rem;
	height: 10rem;

}

.yoyaku .tel {

	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	width: 50%;
	font-size: 3.2rem;
	font-weight: 500;
	color: #fff;
	background: #BEB197;

}

.yoyaku .line {

	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	width: 50%;
	font-size: 3.2rem;
	font-weight: 500;
	color: #fff;
	background: #07b53b;

}

.under_main {

	margin-bottom: 20rem;

}

section {
	
	position: relative;
	z-index: 3;
	padding-top: 11rem;
	padding-bottom: 26rem;

}

section .inner {

	width: 152rem;
	margin: 0 auto;

}

section .inner .wrap {

  display: flex;
  justify-content: space-between;

}

.under h1 {
	
	position: relative;
	width: -moz-fit-content;
  width: fit-content;
	margin-bottom: 0.9em;
	padding-bottom: 0.25em;
	font-size: 9.4rem;
	letter-spacing: 0.04em;

}

.under h1:after {

	position: absolute;
	bottom: 0;
	right:  0;
	content: "";
	width: 200%;
	width:  0;
	height: 1px;
	background: #555;

}

.under h1.active:after {

	width: 200%;
	transition: width 1s;

}

.under h1 .ja {

	display: block;
	font-size: 0.22em;
	letter-spacing: 0.04em;

}

#concept .inner .img {
	
	opacity: 0;
	width: 46%;
  -webkit-filter: brightness(1.4);
          filter: brightness(1.4);
  will-change: filter, -webkit-filter, opacity;  
  
}

#concept .inner .img.active {
	
	opacity: 1;
  -webkit-filter: brightness(1);
          filter: brightness(1);
	transition: opacity 1s linear, filter 1s linear 0.5s, -webkit-filter 1s linear 0.5s;
  
}

#concept .inner .txt {
	
	padding-top: 3.5rem;
	width: 48%;

}

#concept .inner .txt p {

	margin-bottom: 2.1em;
	line-height: 2;
	letter-spacing: 0.04em;

}

#message .inner .img {
	
	opacity: 0;
	width: 46%;
  -webkit-filter: brightness(1.4);
          filter: brightness(1.4);
  will-change: filter, -webkit-filter, opacity;  
  
}

#message .inner .img.active {
	
	opacity: 1;
  -webkit-filter: brightness(1);
          filter: brightness(1);
	transition: opacity 1s linear, filter 1s linear 0.5s, -webkit-filter 1s linear 0.5s;
  
}

#message .img_sp {

	display: none;

}

#message .inner .txt {
	
	width: 48%;

}

#message .inner .txt p {

	margin-bottom: 1.1em;
	line-height: 2;
	letter-spacing: 0.04em;

}

#access {
	
	/*
	padding-bottom: 11rem;
	*/

}

#access .wrap {

	margin-bottom: 15rem;

}

#access .txt {

	width: 47%;

}

#access .txt p {

	padding: 1.7em 0;
	border-bottom: 1px solid #999;

}

#access .txt p:first-child {

	border-top: 1px solid #999;

}

#access .map {

	position: relative;
	width:  47%;
	height: 0;
	padding-bottom: 29.6%;
	overflow: hidden;

}

#access .map iframe {

	position: absolute;
	top:  0;
	left: 0;
	width:  100% !important;
	height: 100% !important;
	
	/*
	-webkit-filter: grayscale(1);
	        filter: grayscale(1);
	*/
	
}

#access .wrap2 {

  display: flex;
  justify-content: space-between;

}

#access h2 {
	
	width: 30%;
	margin-bottom: 1em;
	font-size: 5.6rem;
	line-height: 1;

}

#access h2:before {

	content: "";
	display: inline-block;
	width:  0.5em;
	height: 0.4rem;
	margin-right: 0.25em;
	background: #111;
	
}

#access table {

	width: 68%;
	border-collapse: collapse;
	
}

#access table tr th,  #access table tr td {

	text-align: left;
	padding: 0.6em 0;
	font-size: 3.2rem;
	border-bottom: 0.1rem solid #999;

}

#access table tr th {

	width: 50%;

}

#access table .top {

	border-top: 0.1rem solid #999;

}

#apo .tel {
	
	position: relative;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	width: 48%;
	padding: 9rem 4rem;
	font-size: 6rem;
	border: 0.3rem solid #111;

}

#apo .tel:after {
	
	position: absolute;
	left: 0;
	bottom: -1rem;
	content: "";
	width:  100%;
	height: 0.2rem;
	background: #111;

}

#apo .tel span {

	display: inline-block;
	margin-right: 0.5em;

}

#apo .mail {
	
	position: relative;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
	width: 48%;
	padding: 9rem 4rem;
	font-size: 4rem;
	border: 0.3rem solid #111;

}

#apo .mail:after {
	
	position: absolute;
	left: 0;
	bottom: -1rem;
	content: "";
	width:  100%;
	height: 0.2rem;
	background: #111;

}

#apo .mail p a {

	padding-bottom: 0.2em;
	border-bottom: 1px solid #333;

}

#panel {
	
	opacity: 0;
  visibility: hidden;
	position: fixed;
	top:  0;
	left: 0;
	z-index: 30;
	width:  100%;
	height: 100vh;
	background: #ede9e6;
	display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: none;
  
}

#panel.active {

	opacity: 1;
  visibility: visible;
	pointer-events: auto;

}

#panel a {

	display: block;
	width: 30rem;
	margin: 1rem 0;

}

#panel .close {

	position: absolute;
	top:   5rem;
	right: 5rem;
	font-size: 8rem;
	font-weight: 500;
	cursor: pointer;

}

.bg {

  position: fixed;
  top:  -5%;
  left: 0;
  z-index: -1;
  width:  100%;
  height: 110%;
  background-color: transparent;
  -webkit-mask: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 8px,
    black 9px,
    black 10px
  );
  mask: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 8px,
    black 9px,
    black 10px
  );
  scale: 1.2;
  pointer-events: none;

}

.bg.active {

	z-index: 50;

}

.bg::after {

  position: absolute;
  top:  0;
  left: 0;
  width:  100%;
  height: 100%;
	content: "";
  background-image: radial-gradient(circle at 50% 50%, #f6f4ee 0%, transparent 50%),
                    radial-gradient(circle at 45% 45%, #f6f4ee 0%, transparent 45%),
                    radial-gradient(circle at 55% 55%, #f6f4ee 0%, transparent 45%),
                    radial-gradient(circle at 45% 55%, #f6f4ee 0%, transparent 45%),
                    radial-gradient(circle at 55% 45%, #f6f4ee 0%, transparent 45%);
                    
  animation:
    transform-animation 2s infinite alternate,
    opacity-animation 4s infinite;
  animation-timing-function: cubic-bezier(0.6, 0.8, 0.5, 1);
  
}

@keyframes transform-animation {
  0% {
    transform: translate(-55%);
  }
  100% {
    transform: translate(55%);
  }
}

@keyframes opacity-animation {
  0%,
  100% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  65% {
    opacity: 0;
  }
}


.main_navi .bg {

  position: absolute;
  top:  -10%;
  left: 0;
  width:  100%;
  height: 140%;
  background-color: transparent;
  -webkit-mask: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 8px,
    black 9px,
    black 10px
  );
  mask: repeating-linear-gradient(
    90deg,
    transparent 0,
    transparent 8px,
    black 9px,
    black 10px
  );
  scale: 1.2;
  pointer-events: none;
  overflow: hidden;


}

.main_navi .bg::after {

  position: absolute;
  top:  -20%;
  left: 0;
  width:  100%;
  height: 140%;
	content: "";
  background-image: radial-gradient(circle at 50% 50%, #f6f4ee 0%, transparent 50%),
                    radial-gradient(circle at 45% 45%, #f6f4ee 0%, transparent 45%),
                    radial-gradient(circle at 55% 55%, #f6f4ee 0%, transparent 45%),
                    radial-gradient(circle at 45% 55%, #f6f4ee 0%, transparent 45%),
                    radial-gradient(circle at 55% 45%, #f6f4ee 0%, transparent 45%);
                    
  animation:
    transform-animation 2s infinite alternate,
    opacity-animation 4s infinite;
  animation-timing-function: cubic-bezier(0.6, 0.8, 0.5, 1);
  
}

#viewPosts {
	
  width: 80%;
  margin: 0 auto;
  list-style: none;

}

#viewPosts li.posts {

  width: 100%;
  margin-bottom: 3em;
  padding-bottom: 3em;
  border-bottom: 1px solid #999;

}

#viewPosts li.posts a img {

  margin-bottom: 1em;
  object-fit: cover;
  height: 250px;
  border-radius: 3px 3px 0 0;
  
}

#viewPosts time.postTime {

  display: block;
  font-size: 3rem;
  font-weight: 500;

}

#viewPosts p.postTitle {
	
  font-size: 3.5rem;
  font-weight: 500;
  
}


/* スマホ改行 */
.sp_break {

	display: none;

}


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

	html {
		
		font-size: 61.8489583%;
		
	}

}


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

	html {
		
		font-size: 61.5234%;
		
	}

}


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

	html {
		
		font-size: 60.5468%;
		
	}

}


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

	html {
		
		font-size: 59.89583%;
		
	}

}


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

	html {
		
		font-size: 59.25%;
		
	}

}


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

	html {
		
		font-size: 58.59375%;
		
	}

}


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

	html {
		
		font-size: 58.2682%;
		
	}

}


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

	html {
		
		font-size: 57.6171%;
		
	}

}


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

	html {
		
		font-size: 56.96614%;
		
	}

}


/* MacBook Pro16 */
@media only screen and (max-width: 1728px) {

	html {
		
		font-size: 56.25%;
		
	}

}


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

	html {
		
		font-size: 55.33854%;
		
	}

}


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

	html {
		
		font-size: 54.375%;
		
	}

}


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

	html {
		
		font-size: 53.3854%;
		
	}

}


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

	html {
		
		font-size: 52.75%;
		
	}

}


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

	html {
		
		font-size: 52.0833%;
		
	}

}


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

	html {
		
		font-size: 51.125%;
		
	}

}


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

	html {
		
		font-size: 50.1302%;
		
	}

}


/* MacBook Pro14 */
@media only screen and (max-width: 1512px) {

	html {
		
		font-size: 49.25%;
		
	}

}


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

	html {
		
		font-size: 48.5026%;
		
	}

}


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

	html {
		
		font-size: 47.526%;
		
	}

}


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

	html {
		
		font-size: 46.875%;
		
	}

}


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

	html {
		
		font-size: 46.223958%;
		
	}

}


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

	html {
		
		font-size: 45.562%;
		
	}

}


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

	html {
		
		font-size: 44.9218%;
		
	}

}


/* 中サイズ */
@media only screen and (max-width: 1366px) {

	html {
		
		font-size: 44.4375%;
		
	}

}


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

	html {
		
		font-size: 43.61979%;
		
	}

}


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

	html {
		
		font-size: 43%;
		
	}

}


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

	html {
		
		font-size: 42.3177%;
		
	}

}


/* MacBook Air */
@media only screen and (max-width: 1280px) {

	html {
		
		font-size: 41.6875%;
		
	}

}


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

	html {
		
		font-size: 41.0156%;
		
	}

}


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

	html {
		
		font-size: 40.375%;
		
	}

}


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

	html {
		
		font-size: 39.71354%;
		
	}

}


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

	html {
		
		font-size: 39.0625%;
		
	}

}


/* iPad Pro11の横 */
@media only screen and (max-width: 1194px) {

	html {
		
		font-size: 38.875%;
		
	}

}


/* iPad 5th Airの横 */
@media only screen and (max-width: 1180px) {

	html {
		
		font-size: 38.4375%;
		
	}

}


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

	html {
		
		font-size: 37.7604%;
		
	}
	
	.sp_break {

		display: block;

	}
		
	/* ヘッダー */
	header {
		
		opacity: 1;
		position: fixed;
		top:  0;
		left: 0;
		z-index: 20;
		width: 100%;
		background: rgba(237,233,230, 0.8);
		transform: translate3d(0, 0, 0); 
	  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
	  
	}

	/* 隠す */
	header.nav-up {
		
		opacity: 0;
	  transform: translate3d(0, -100%, 0);
	  
	}

	/* 表示 */
	header.nav-down {
		
		opacity: 1;
	  transform: translate3d(0, 0, 0);
	  
	}

	header .inner {

	  display: flex;
	  justify-content: space-between;
		width: 100%;
		margin: 0 auto;
		padding: 2rem 0;
		padding: 2.9rem 0;

	}

	header .inner p {

		font-size: 14rem;
		font-size: 13rem;
		letter-spacing: 0;

	}
	
	header .inner p a img {
		
		width: 26rem;
		margin-right: 2rem;

	}

	.main_navi {
		
		opacity: 0;
		position: fixed;
		top:  0;
		left: 0;
		z-index: 100;
		width:  100%;
		height: 100%;
		min-height: 100vh;
		
		overflow-x: hidden;
		overflow-y: auto;
		
		-ms-overflow-style: none;  /* IE, Edge */
		scrollbar-width: none;     /* Firefox  */
		transition: all 0.3s;
		pointer-events: none;
		
		overscroll-behavior-y: contain; 
		
		display: flex;
	  flex-direction: column;
	  justify-content: center;

	}

	.main_navi.active {
		
		opacity: 1;
		pointer-events: auto;

	}

	.main_navi::-webkit-scrollbar {

		display: none; /* Chrome, Safari */

	}

	.main_navi ul {

	  display: block;
		width: 80%;
		margin: 0 auto;
		height: 100%;
		
		padding-top:    13vh;
		padding-bottom: 20vh;

	}

	.main_navi ul li {
			
		width: 100%;
		height: auto;
		padding: 0.2em 0;
		font-size: 14rem;
		letter-spacing: 0.06em;

	}

	.main_navi ul li a:before, .main_navi ul li a:after {

	  position: absolute;
	  top:   50%;
	  right: 0;
	  width:  0;
	  height: 0.3rem;

	}

	.main_navi ul li a:before {

	  transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);

	}

	.main_navi ul li a:after {

	  transition: width 0.2s cubic-bezier(0.29, 0.18, 0.26, 0.83);

	}

	.main_navi ul li a:hover:before, .main_navi ul li a:hover:after {

		left:  0;
	  width: 100%;

	}
		
		/*
		#menu {
			
		  position: fixed;
		  top:   0;
		  right: 1%;
		  z-index: 1000;
		  width:  25rem;
		  height: 25rem;
			
		}
		
		.menu__line {
			
			position: absolute;
		  width:  60%;
		  height: 5%;
		  transform: rotate(0deg) scaleX(1);
		  transition: all 0.3s;
		  
		}
		*/
		
	#menu {
		
	  position: fixed;
	  top:   0;
	  right: 1%;
		width:  25rem;
		height: 25rem;
		
	}
	
	#menu .menu__line {
		
		position: absolute;
	  height: 4.5%;
	  transition: all 0.3s;
	  
	}
	
	#menu .menu__line--top {
		
		top:  30%;
		left: 20%;
		width: 60%;
	
	}
	
	#menu .menu__line--center {
		
	  top:  45%;
	  left: 20%;
	  width: 45%;
	  
	}
	
	#menu .text {
	
		position: absolute;
		top: 52%;
		left: 20%;
		font-size: 4.5rem;
		letter-spacing: 0.12em;
	
	}
	
	#menu .text:before {
	
		content: "MENU";
	
	}
	
	#menu.active .text:before {
	
		content: "CLOSE";
		letter-spacing: -0.02em;
	
	}

	.mainimg {
		
		position: relative;
		z-index: 10;
		width:  100%;
		height: 100vh;
		height: 100dvh;
		padding: 0;
		overflow: hidden;
	  
	}

/*
	.mainimg .catch {

		position: absolute;
		z-index: 10;
		letter-spacing: 0.02em;
		left: 0;
		bottom: 4%;
		
	}

	.mainimg .catch .line1 {
		
		margin-bottom: 0.3em;
		padding: 0 0.2em;
		padding-bottom: 0.2em;
		padding-left: 5%;
		font-size: 17.8rem;
		line-height: 1.3;
		letter-spacing: 0.01em;
		background: rgba(237,233,230, 0.8);

	}

	.mainimg .catch .line1 .text {

		border-bottom: 2px solid #111;

	}

	.mainimg .catch .line1 .batu {

		margin: 0 0.2em;

	}

	.mainimg .catch .line2 {

		padding: 0.15em 0.4em 0.18em 0.4em;
		font-size: 10rem;
		letter-spacing: 0;
		background: rgba(237,233,230, 0.8);
		
		display: inline-block;
		padding-left: 3%;
		padding-right: 5%;
		transform: translateX(2.8em);

	}

	.mainimg .catch .line2 .one {

		margin-left: -0.45em;

	}

	.mainimg .catch .line2 .two {

		margin-left: -0.4em;

	}

*/

	.mainimg .catch {

		z-index: 10;
		letter-spacing: 0.01em;
		
		position: absolute;
		top:  45%;
		left: 50%;
		width: 100%;
		text-align: center;
		transform: translate(-50%, -50%);
		
	}

	.mainimg .catch .line1 {
		
		display: inline-block;
		margin-bottom: 1em;
		padding: 0.1em 0.3em;
		padding-bottom: 0.3em;
		font-size: 18.6rem;
		font-size: 12rem;
		line-height: 1.2;
		letter-spacing: 0.02em;
		background: rgba(237,233,230, 0.8);

	}

	.mainimg .catch .line1 .text {

		display: inline-block;
		border-bottom: 2px solid #111;

	}

	.mainimg .catch .line1 .batu {

		display: inline-block;
		margin: 0 0.2em;

	}

/*
	.mainimg .catch .line2 {

		padding: 0.17em 0.4em 0.2em 0.4em;
		font-size: 11rem;
		line-height: 1.4;

	}
*/

	.mainimg .catch .line2 {
		
		margin-bottom: 0.25em;
		padding: 0.1em 0.4em 0.2em 0.4em;
		font-size: 13.2rem;
		line-height: 1.15;
		letter-spacing: 0;
		letter-spacing: -0.08em;

	}
	
	.mainimg .catch .line3 {

		padding: 0.1em 0.4em 0.2em 0.4em;
		font-size: 13.2rem;
		line-height: 1.15;
		letter-spacing: 0;
		letter-spacing: -0.08em;
		white-space: nowrap;

	}

	.yoyaku {

		position: fixed;
		top:   auto;
		right: 0;
		bottom: 0;
		z-index: 20;
		display: flex;
	  flex-wrap: nowrap;
		width:  100%;
		height: 26rem;

	}
	
	.swiper-wrapper .swiper-slide .slide-img.img1 {

		background-image: url('../img/88_original.webp');
		background-position: center center;

	}

	.swiper-wrapper .swiper-slide .slide-img.img2 {

		background-image: url('../img/81_original.webp');

	}

	.swiper-wrapper .swiper-slide .slide-img.img3 {

		background-image: url('../img/16_original.webp');

	}

	.swiper-wrapper .swiper-slide .slide-img.img4 {

		background-image: url('../img/57_original.webp');

	}

	.swiper-wrapper .swiper-slide .slide-img.img5 {

		background-image: url('../img/29_original.webp');
		/*background-position: right bottom;*/

	}

	.yoyaku .tel {

		display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
		width: 50%;
		font-size: 11rem;
		font-weight: 500;
		color: #fff;
		background: #BEB197;

	}

	.yoyaku .line {

		display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
		width: 50%;
		font-size: 11rem;
		font-weight: 500;
		color: #fff;
		background: #07b53b;

	}

	.under_main {

		margin-bottom: 20rem;

	}

	section {
		
		padding-top:    40rem;
		padding-bottom: 40rem;

	}

	section .inner {

		width: 88%;

	}

	section .inner .wrap {

	  display: block;

	}

	.under h1 {
		
		width: -moz-fit-content;
	  width: fit-content;
		margin-bottom: 1.1em;
		padding-bottom: 0.25em;
		font-size: 19rem;
		letter-spacing: 0.02em;

	}

	.under h1:after {

		position: absolute;
		bottom: 0;
		right:  0;
		content: "";
		width: 200%;
		width:  0;
		height: 1px;

	}

	.under h1.active:after {

		width: 200%;
		transition: width 1s;

	}

	.under h1 .ja {

		font-size: 0.4em;
		letter-spacing: 0.02em;

	}

	#concept .inner .img {
		
		opacity: 0;
		width: 100%;
	  -webkit-filter: brightness(1.4);
	          filter: brightness(1.4);
	  will-change: filter, -webkit-filter, opacity;  
	  
	}

	#concept .inner .img.active {
		
		opacity: 1;
	  -webkit-filter: brightness(1);
	          filter: brightness(1);
		transition: opacity 1s linear, filter 1s linear 0.5s, -webkit-filter 1s linear 0.5s;
	  
	}

	#concept .inner .txt {
		
		padding-top: 15rem;
		width: 100%;

	}

	#concept .inner .txt p {

		margin-bottom: 2em;
		font-size: 8rem;
		line-height: 2;
		letter-spacing: 0.02em;

	}
	
	#message .wrap {
	
	  display: block;
	
	}

	#message .inner .img {
		
		opacity: 0;
		width: 100%;
	  -webkit-filter: brightness(1.4);
	          filter: brightness(1.4);
	  will-change: filter, -webkit-filter, opacity;  
	  
	}

	#message .inner .img.active {
		
		opacity: 1;
	  -webkit-filter: brightness(1);
	          filter: brightness(1);
		transition: opacity 1s linear, filter 1s linear 0.5s, -webkit-filter 1s linear 0.5s;
	  
	}
	
	#message .img_sp {

		display: block;

	}
	
	#message .img_pc {

		display: none;

	}

	#message .inner .txt {
		
		width: 100%;
		margin-top: 18rem;

	}

	#message .inner .txt p {
		
		margin-bottom: 1em;
		font-size: 8rem;
		line-height: 2;
		letter-spacing: 0.04em;

	}

	#access .wrap {

		margin-bottom: 30rem;

	}

	#access .txt {

		width: 100%;
		margin-bottom: 22rem;

	}

	#access .txt p {
		
		font-size: 7rem;
		padding: 1.2em 0;
		border-bottom: 1px solid #999;

	}

	#access .txt p:first-child {

		border-top: 1px solid #999;

	}

	#access .map {

		width:  100%;
		height: 0;
		padding-bottom: 60%;
		overflow: hidden;

	}

	#access .map iframe {

		position: absolute;
		top:  0;
		left: 0;
		width:  100% !important;
		height: 100% !important;
		/*
		-webkit-filter: grayscale(1);
		        filter: grayscale(1);
		*/
		
	}

	#access .wrap2 {

	  display: block;

	}

	#access h2 {
		
		width: 100%;
		margin-bottom: 1.2em;
		font-size: 14rem;
		line-height: 1;

	}

	#access h2:before {

		width:  0.5em;
		height: 0.4rem;
		margin-right: 0.25em;
		background: #111;
		
	}

	#access table {

		width: 100%;
		
	}

	#access table tr th,  #access table tr td {

		text-align: left;
		padding: 0.6em 0;
		font-size: 8rem;
		border-bottom: 0.1rem solid #999;

	}

	#access table tr th {

		width: 50%;

	}

	#access table .top {

		border-top: 0.1rem solid #999;

	}

	#apo .tel {
		
		display: block;
		width: 100%;
		margin-bottom: 16rem;
		padding: 10rem 0;
		text-align: center;
		font-size: 13rem;
		border: 0.6rem solid #111;

	}

	#apo .tel:after {
		
		position: absolute;
		left: 0;
		bottom: -2rem;
		content: "";
		width:  100%;
		height: 0.6rem;

	}

	#apo .tel span {

		margin-right: 0.5em;

	}

	#apo .mail {
		
		display: block;
		width: 100%;
		padding: 10rem 0 13rem 0;
		text-align: center;
		font-size: 10rem;
		border: 0.6rem solid #111;

	}

	#apo .mail:after {
		
		position: absolute;
		left: 0;
		bottom: -2rem;
		content: "";
		width:  100%;
		height: 0.6rem;

	}

	#apo .mail p a {

		padding-bottom: 0.2em;
		border-bottom: 1px solid #333;

	}
	
	#panel {
		
		opacity: 0;
	  visibility: hidden;
		position: fixed;
		top:  0;
		left: 0;
		z-index: 30;
		width:  100%;
		height: 100vh;
		background: #ede9e6;
		display: flex;
	  flex-direction: column;
	  justify-content: center;
	  align-items: center;
	  pointer-events: none;
	  
	}

	#panel.active {

		opacity: 1;
	  visibility: visible;
		pointer-events: auto;

	}

	#panel a {

		display: block;
		width: 70rem;
		margin: 2rem 0;

	}

	#panel .close {

		position: absolute;
		top:   8rem;
		right: 8rem;
		font-size: 20rem;
		font-weight: 500;
		cursor: pointer;

	}
	
	#viewPosts {
		
	  width: 90%;

	}

	#viewPosts li.posts {

	  width: 100%;
	  margin-bottom: 10rem;
	  padding-bottom: 10rem;

	}

	#viewPosts li.posts a img {

	  margin-bottom: 1em;
	  object-fit: cover;
	  height: 250px;
	  border-radius: 3px 3px 0 0;
	  
	}

	#viewPosts time.postTime {

	  display: block;
	  font-size: 7rem;

	}

	#viewPosts p.postTitle {
		
	  font-size: 8rem;
	  
	}


	.main_navi .bg {

	  position: absolute;
	  top:  -20%;
	  left: 0;
	  width:  100%;
	  height: 140%;
	  background-color: transparent;
	  -webkit-mask: repeating-linear-gradient(
	    90deg,
	    transparent 0,
	    transparent 8px,
	    black 9px,
	    black 10px
	  );
	  mask: repeating-linear-gradient(
	    90deg,
	    transparent 0,
	    transparent 8px,
	    black 9px,
	    black 10px
	  );
	  scale: 1.2;
	  pointer-events: none;
	  overflow: hidden;

	}

	.main_navi .bg::after {

	  position: absolute;
	  top:  -20%;
	  left: 0;
	  width:  100%;
	  height: 140%;
		content: "";
	  background-image: radial-gradient(circle at 50% 50%, #f6f4ee 0%, transparent 50%),
	                    radial-gradient(circle at 45% 45%, #f6f4ee 0%, transparent 45%),
	                    radial-gradient(circle at 55% 55%, #f6f4ee 0%, transparent 45%),
	                    radial-gradient(circle at 45% 55%, #f6f4ee 0%, transparent 45%),
	                    radial-gradient(circle at 55% 45%, #f6f4ee 0%, transparent 45%);
	                    
	  animation:
	    transform-animation 2s infinite alternate,
	    opacity-animation 4s infinite;
	  animation-timing-function: cubic-bezier(0.6, 0.8, 0.5, 1);
	  
	}

}


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

	html {
		
		font-size: 37.434895%;
		
	}

}


/* iPad 6th Miniの横 */
@media only screen and (max-width: 1133px) {

	html {
		
		font-size: 36.875%;
		
	}

}


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

	html {
		
		font-size: 36.4583%;
		
	}

}


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

	html {
		
		font-size: 35.8125%;
		
	}

}


/* iPad 9thの横 */
@media only screen and (max-width: 1080px) {

	html {
		
		font-size: 35.8125%;
		
	}

}


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

	html {
		
		font-size: 34.5052%;
		
	}

}


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

	html {
		
		font-size: 34.17968%;
		
	}

}


/* iPadPro */
@media only screen and (max-width: 1024px) {

	html {
		
		font-size: 33.3125%;
		
	}

}


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

	html {
		
		font-size: 32.552%;
		
	}

}


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

	html {
		
		font-size: 31.90104%;
		
	}

}


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

	html {
		
		font-size: 31.57552%;
		
	}

}


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

	html {
		
		font-size: 30.937%;
		
	}
	
}


/* iPhone14 ProMaxの横 */
@media only screen and (max-width: 932px) {

	html {
		
		font-size: 30.937%;
		
	}
	
}


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

	html {
		
		font-size: 29.62239%;
		
	}
	
}


/* XRの横 */
@media only screen and (max-width: 896px) {

	html {
		
		font-size: 29.2%;
		
	}
	
}


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

	html {
		
		font-size: 28.64583%;
		
	}
	
}


/* AndroidのＬの横 */
@media only screen and (max-width: 854px) {

	html {
		
		font-size: 27.8125%;
		
	}

}


/* iPhone14 Proの横 */
@media only screen and (max-width: 852px) {

	html {
		
		font-size: 27.75%;
		
	}

}


/* iPhone14の横*/
@media only screen and (max-width: 844px) {

	html {
		
		font-size: 27.5%;
		
	}

}



/* iPad Pro11 */
@media only screen and (max-width: 834px) {

	html {
		
		font-size: 27.125%;
		
	}

}


/* iPad Air */
@media only screen and (max-width: 820px) {

	html {
		
		font-size: 26.687%;
		
	}

}


/* iPhone13 miniの横 */
@media only screen and (max-width: 812px) {

	html {
		
		font-size: 26.437%;
		
	}

}


/* iPad 9th */
@media only screen and (max-width: 810px) {

	html {
		
		
		
	}

}


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

	html {
		
		font-size: 25.7161%;
		
	}

}


/* iPad */
@media only screen and (max-width: 768px) {

	html {
		
		font-size: 25%;
		
	}

}


/* iPad 6th Mini */
@media only screen and (max-width: 744px) {

	html {
		
		font-size: 24.25%;
		
	}

}


/* iPhonePlusの横 */
@media only screen and (max-width: 736px) {

	html {
		
		font-size: 23.937%;
		
	}

}


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

	html {
		
		font-size: 23.4375%;
		
	}

}


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

	html {
		
		font-size: 22.75%;
		
	}

}


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

	html {
		
		font-size: 22.1354%;
		
	}

}


/* iPhone8の横 */
@media only screen and (max-width: 667px) {

	html {
		
		font-size: 21.687%;
		
	}

}


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

	html {
		
		font-size: 21.158854%;
		
	}

}


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

	html {
		
		font-size: 20.507%;
		
	}

}


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

	html {
		
		font-size: 20.18229%;
		
	}

}


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

	html {
		
		font-size: 19.53125%;
		
	}

}


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

	html {
		
		font-size: 18.8802%;
		
	}

}


/* iPhone5の横 */
@media only screen and (max-width: 568px) {

	html {
		
		font-size: 18.5%;
		
	}

}


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

	html {
		
		font-size: 17.5781%;
		
	}

}


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

	html {
		
		font-size: 16.927%;
		
	}

}


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

	html {
		
		font-size: 16.276014%;
		
	}

}


/* AndLoidL */
@media only screen and (max-width: 480px) {

	html {
		
		font-size: 15.625%;
		
	}

}


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

	html {
		
		font-size: 14.648%;
		
	}

}


/* Iphone13 Pro Max */
@media only screen and (max-width: 430px) {

	html {
		
		font-size: 14%;
		
	}

}


/* Iphone12 Pro Max */
@media only screen and (max-width: 428px) {

	html {
		
		font-size: 13.93229%;
		
	}

}


/* iPhonePlus */
@media only screen and (max-width: 414px) {

	html {
		
		font-size: 13.5%;
		
	}

}


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

	html {
		
		font-size: 13.02083%;
		
	}

}


/* iPhone14 Pro */
@media only screen and (max-width: 393px) {

	html {
		
		font-size: 12.812%;
		
	}

}


/* iPhone12 Pro */
@media only screen and (max-width: 390px) {

	html {
		
		font-size: 12.687%;
		
	}

}


/* iPhone8 */
@media only screen and (max-width: 375px) {

	html {
		
		font-size: 12.187%;
		
	}

}


/* Galaxy */
@media only screen and (max-width: 360px) {

	html {
		
		font-size: 11.75%;
		
	}

}


/* iPhone5 */
@media only screen and (max-width: 320px) {

	html {
		
		font-size: 10.437%;
		
	}

}