@charset UTF-8;

body {
	font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", sans-serif, Verdana, "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

/* トップに戻るボタン  */
html {
    scroll-behavior: smooth;
}

body, html {
  overflow-x: hidden;
}

.pagetop {
    height: 25px;
    width: 25px;
    position: fixed;
    right: 10px;
    bottom: 30px;
    background: #aa3746;
    border: solid 1px #FFF;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}

.pagetop__arrow {
    height: 10px;
    width: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: translateY(20%) rotate(-45deg);
}

/* ハンバーガーメニュー  */
button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 32px;
	right: 16px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 48px;
	height: 48px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: #333;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #333;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-16px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(16px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #333;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}


.nav-list {
	/* メニューを縦に */
	display: block;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -100%;
	width: 100%;
	height: 100vh;
	background-color: #f3eed9;
	color: #333;
	transition: .3s;
}

.nav-item:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #333;
	cursor: pointer;
	transition: .3s;
}


/***** メニューオープン時位置0にして画面内に *****/
.nav-list.open {
	right: 0;
	top: 0;
	bottom: 30%;
}

.nav-item {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: flex-end;
	justify-content: flex-start;
	width: 100%;
	height: 10%;
	color:#333;
	font-size: 18px;
	padding:10px 20px;
}

.line{
  border: none;
  width:90%;
  border-top: 2px dashed #999;
  margin: 0 auto;
}

ul{
	list-style: none;
	display: flex;
	font-size: 16px;
	}
	
.navi{
	text-decoration:none;
	color: #333;
	white-space: nowrap;
}

.nav-item .navi img {
  vertical-align: middle;
}



ul{
	list-style: none;
	display: flex;
	font-size: 16px;
	}
	
.navi{
	margin-right: 10px;
	text-decoration:none;
	color: #696969;
	white-space: nowrap;
}


header .wrap{
	position: fixed;
	z-index: 2;
	max-width: 1160px;
	top: 0;
	left: 0;
	right: 0;
	margin: 20px 20px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	color: #696969;
}

header p{
	text-align: center;
	font-size: 14px;
	white-space: nowrap;
}

header p span{
	font-size: 30px;
	font-weight: bold;
}


header a{
	margin: 0 30px;
}

.wrap.headerColorScroll{
  color: #696969;
  transition: color 0.4s ease-out;
}

.navi.headerColorScroll2{
	  color: #696969;
      transition: color 0.4s ease-out;
}

	
.main-visual{
	display: flex;
	justify-content: flex-end;
	align-items: flex-end;
}

.photo{
	width: 70%;
	height: 390px;
}

.photo img{
	object-fit:contain;
	width: 100%;
}

.scroll{
	display: block;
	align-items: center;
	position: relative;
	margin: 80px 30px 40px;
}
.scroll::before {
  animation: scroll 3.5s infinite;
  border: solid #000;
  border-width: 0 0 1px 1px;
  content: "";
  display: inline-block;
  margin: auto;
  position: absolute;
  bottom: 5%;
  transform: rotate(-45deg);
  width: 15px;
  height: 15px;
}
@keyframes scroll {
  0% {
    transform: rotate(-45deg) translate(0, 0);
  }
  80% {
    transform: rotate(-45deg) translate(-30px, 30px);
  }
  0%, 80%, 100% {
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
}

.txt{
    font-size: 12px;
	padding-top: 30px;
}


.topic{
	writing-mode: vertical-rl;
	font-family: "Zen Kaku Gothic New";
	font-size: 30px;
	font-weight: bold;
	color: #000;
	opacity: 0.7;
}

.zen-kaku-gothic-new-regular {
	font-family: "Zen Kaku Gothic New", sans-serif;
	font-weight: 400;
	font-style: normal;
  }

.ready{
	font-size:30px;
	margin: 150px;
	color:#aa3746;
}
  
.map {
	width: 100%;
	text-align: center;
	margin-top: 100px;
}
	


.container {
  max-width: 1160px;
  margin: 0 auto;
  padding-inline: 40px;
}

.visually-hidden {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.main-section{
	padding: 80px 0 100px;
}

.heading-group{
	text-align: center;
	margin: 0 0 60px;
	color: #f3eed9;
	font-size: 36px ;
	font-weight: bold;
	font-family: "Kosugi Maru";
	overflow: hidden;
	.red {
       color: #aa3746;
	}
}

.fadein {
    opacity: 0;
    transform: translate(0,0);
    transition: all 1.5s;
	&.red{
		transform: translate(0,30px);
	}
	&.scrollin{
	  opacity: 1 !important;
	  transform: translate(0, 0) !important;
	}
  }

.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.sliderphoto{
	width: 700px;
}

.about{
	text-align: center;
	background-color: #f3eed9;
}


.content{
	.layout{
		display: flex;
		justify-content: flex-start;
		margin-top: 20px;
	    }
}

.text-wrap{
	text-align: center;
	margin: 50px 0 50px 0;
	display: inline-block;
	width: 100%;
}


.text-wrap p{
	font-size: 14px;
	line-height: 1.5;
	width: 200px;
	margin:0 auto;
}

.news{
	text-align: center;
	background-color:#f3eed9;
}
.news h2{
	color: #aa3746;
}

.news ul{
	display: block;	
	text-align: left;
	font-size: 16px;
	width: 400px;
	margin: 0 auto;
	line-height: 1.8;
	padding-top: 50px;
}

.footer{
	background-color: #f3eed9;
	font-size: 10px;
	padding: 20px;
	text-align: center;
}

/*ここからタブレットサイズ（画面の横幅が560px〜959px）*/

@media screen and (max-width: 959px){
	
	
	.logo img{
			width: 80px;
		}
		ul{
			font-size: 14px;
		}
	.main-visual .catch-copy{
		font-size: 50px;	
		}
		
	h2{
		font-size: 28px;	
		}
	.first{
		width: 70%
	}

}
	
/*ここからSPサイズ（画面の横幅が559pxまで）*/	
	
	@media screen and (max-width: 559px){

		.btn {
		/* ボタンの大きさ  */
	    width: 30px;
	    height: 30px;
        }

		.btn-line::before {
	    /* 上の線の位置 */
	    transform: translateY(-12px);
        }
        .btn-line::after {
	    /* 下の線の位置 */
	    transform: translateY(12px);
        }
		
		
		.logo img{
			width: 45px;
		}
		ul{
			font-size: 10px;
		}
		.txt p{
		font-size: 10px;	
		}

		.topic p{
			font-size: 18px;
		}
		
		header p{
			font-size: 10px;
		}
		header p span{
			font-size: 20px;
		}

		.main-visual img{
			height: 100%;
			object-fit: cover;
		}

		.map iframe{
			width: 85%;
		}

		.sliderphoto{
			width: 300px;
		}

		.instagram img{
			width: 30px;
		}
		h2{
		font-size: 24px;	
		}
		.content .layout{
			display: block;
			margin: 0 auto;
		}
		.first{
			width: 90%;
			font-size: 14px;
		}
		.content img{ 
			width: 300px;	
			margin: 0 auto;
			display: block;
		}
		.text-wrap img{
			width: 40%;
			margin-top: 30px;
		}
	
		.ready{
			font-size:30px;
			margin: 50px;
			color:#aa3746;
		}


		.nav-item{
		height: 5%;
	    }

		.navilogo{
        width: 50px;    
		}
		  
}