@charset "UTF-8";

@media screen and (min-width:768px){
/*pc・タブレットcss*/
	
/* ここから下はスライダーの調整 */
	
	

*{

min-width: 0;

min-height: 0;

}

.spmainimg{display: none;}
	
	
	
.slider{
	visibility: hidden;
	position: relative;	
	z-index: 10;	
	overflow: hidden; /* 画像がはみ出ないようにする */
	transition: 1.3s;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {/* slickの設定とリンクしている*/
    animation: zoomUp 10s linear 0s normal both;
}
	
	
.slider.slick-initialized{
	visibility: visible;
}

	
.kurai{
    filter: brightness(32%);
}	


	
	

/* ここからファーストビュー */


.pcbox{
    position: absolute;
}
.pcmainbgbox{
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
}

.slick-img img{
  height: 100vh;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.pcfvbox{
	position: fixed;
	color: #FFFFFF;
}


.mainttl{
	writing-mode: vertical-rl;
	position: fixed;
	top: 9vw;
	right: 12.6vw;
	font-size: 1.1vw;
	letter-spacing: 0.35vw;
	line-height: 2.4vw;
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
    transition: all 1.2s;
	}

.mainicon{
	position: fixed;
	top: 1vw;
	left: 1vw;
	font-size: 0.6vw;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #FFFFFF;
}
	
.mainicon:before {
  content: '';
  position: fixed;
  top: 2.3vw;/*線の上下位置*/
  left: 0;
  display: inline-block;
  width: 0.8vw;/*線の長さ*/
  height: 1px;/*線の太さ*/
  background-color: #FFFFFF;/*線の色*/
}
	
	

.logo{
	position: fixed;
	top: 6.5vw;
	left: 5vw;
    transition: all 1.2s;
	}
	
.logo img{
	width: 16vw;
}


.menu{
	position: fixed;
	top: 20.2vw;
	left: 7.5vw;
	font-size: 0.92vw;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    transition: all 1.2s;
}
	
.menu a{color: #FFFFFF;}
	
	
.menu li{	
	margin-bottom: 30px;
	transition: ease .2s;
	}
	
	.spmenu{
		display: none;
	}	
	
	
.btnugoku{
	position: relative;
}
	
	
.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:32%;
    left: -27px;
    /*矢印の形状*/
    width: 3px;
    height: 3px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}	
	
.btnarrow1:hover::after{
    left: -15px;
}
	
	
	
.instabox{
	position: fixed;
	bottom: 2.4vw;
	left: 2.4vw;
	background-image: url("../images/top/insta_logo.svg");
	background-repeat: no-repeat;
	background-position: center center;
	width: 160px;
    transition: all 1.2s;
	}	

	
	
	.instaboxsp{display: none;}	
	
	
	
	
#box1{
  animation:7s linear infinite rotation;
}
	
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(-360deg); }
}	
	

	
.pagetopkotei{
	position: fixed;
	bottom: 1.2vw;
	right: -20vw;
	font-size: 12px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    transition: all 1.2s;
}	
	
.pagetopkotei:before {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 15px;/*画像の幅*/
  height: 15px;/*画像の高さ*/
  background-image: url("../images/top/ashiato_single.svg");
  background-size: contain;
  vertical-align: middle;
	background-repeat: no-repeat;
	margin-right: 5px;
}	

.pagetopkotei a{color: #FFFFFF;}
	
	
	
	
/* ここから下はコンテンツ */

	
.whitebg{
	background-color: #FFFFFF;
	transition: 2s;
}	
	

.maincontainer{
	display: flex;
	flex-flow: column;
	position: relative;
	width: 500px;
	margin: 0 auto;
	margin-top: 100vh;
	margin-bottom: 100vh;
}
	
	



/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position: relative;
    left: 50vw;
    top: -5vw;
    /*全体の高さ*/
	height:40px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
	color: #333;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 2px;
	height: 40px;
	background: #FFFFFF;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.7s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:100px;
		opacity: 0;
	}
}	
	
	
/* ここから下はメッセージ */

.message{
	width: 500px;
	z-index: 3;
	height: 2000px;
	color: #333333;
}	
	
	
	
#sticky{
	margin-top: -90px;
	padding: 0 0 0 30px;
	height: 1070px;
	}
	
.mess_ttl{
	position: sticky;
	top: 268px;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	writing-mode: vertical-rl;
	z-index: 5;
	float: left;
	margin-top: 16px;
	margin-left: 40px;
    transition: all 1.2s;
}
	
.shirokunaru{
	color: #FFFFFF;
}
	
	
	
.mess_bgtext{
	font-family: 'Rozha One', serif;
}	
	

	
.messtextbox{
	margin-left: 100px;
	margin-bottom: 100px;
	position: relative;
	z-index: 20;
	}
	
.messtextbox p{
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 50px;
	margin-bottom: 40px;
	}

	
	
.mess_bgtext{
	padding-top: 80px;
	font-size : 210px;
	text-align : center;
	overflow : hidden;
}	
	
	
	
.nagareru{
margin:0;
display : inline-block;
padding-left: 100%;
white-space : nowrap;
line-height : 1em;
	
  background: linear-gradient(135deg, rgba(140, 209, 234,  0.6), rgba(238, 198, 238, 0.6));
  background: -webkit-linear-gradient(135deg, rgba(140, 209, 234, 0.6), rgba(238, 198, 238, 0.6));
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

animation : nagarerut 30s linear infinite;
}
	
@keyframes nagarerut{
0% { transform: translateX(0)}
100% { transform: translateX(-100%)}
from {background-position: left}
to {background-position: right}
}
	

	.simple-slider{
	clear:both;
	}
	
.simple-slider-img img{
	}
	
	

.messtextjpbox{
	margin-left: 130px;
	margin-top: -108px;
	}
	
.messtextjpbox p{
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 50px;
	color: #FFFFFF;
	margin-bottom: 40px;
	}

	
	
	
	
.ashiato1 img{
    margin: 60px 0 0 210px;
    width: 130px;
	}

	
	
@keyframes hatoashiato{
  0%{
    opacity: 0;;
  }
  100%{
    opacity: 1;;
  }
}	
		
	
/* ここから下はフレンド */
	
	
	.friend{
	height: 910px;
	}
	
	.soushoku{
	font-family: mina, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: #FFE700;
	font-size: 30px;
	}
	
	.midashi_shiro{
	text-align: center;
	color: #FFFFFF;
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	margin-bottom: 45px;
	}
	
	
	.friend h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-align: center;
	color: #FFFFFF;
	font-size: 40px;
	margin-bottom: 10px;
	}
	
	
	
	.yarikata{
		width: 440px;
		height: 600px;
		border-radius: 200px;
		background-color: #FFFFFF;
		margin: 0 auto;
		margin-bottom: 45px;
	  color: #333333;
	}
	
	.howto{
		padding: 85px;
	}
	
	.howto p{
		margin-top: 30px;
		line-height: 32px;
	}
	
	.numb{
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 24px;
	}
	
	
	
	.howto li{
		display: flex;
		justify-content: space-between;
		margin-bottom: 40px;
	}
	
	
	.chuui{
	text-align: center;
	color: #FFFFFF;
	font-size: 14px;
	line-height: 23px;
	}
	
	

	
	
	
	
	.gallery-slider-img{
		width: 180px;
	}
	
	
	
	
	.gallery{
		margin-bottom: 100px;
	}
	
	
/* ここから下はアクセス */
	
	.access{
		margin-bottom: 120px;
	  color: #333333;
	}
	
	.midashi_kuro{
	text-align: center;
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 14px;
	margin-bottom: 45px;
	}
	
	
	.access h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-align: center;
	font-size: 40px;
	margin-bottom: 10px;
	}
		
	
	
.map {
  width: 440px;
  height: 400px;
  overflow: hidden;
	margin: 0 auto 30px;
}

	.map iframe {
	width: 440px;
	height: 400px;
	filter: grayscale(97%);
	}

	.linkmap{
	text-align: center;
	font-size: 14px;
	}

	
	
	
/* ここから下はフッター */
	
	
	.bnrbox{
		padding: 30px;
	}
	
	.bnrbox h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-align: center;
	font-size: 24px;
	margin-bottom: 30px;
	  color: #333333;
	}
	
	
	.bnrlist li{
		display: flex;
		justify-content: space-between;
		width: 440px;
		height: 126px;
		margin-bottom: 30px;
		background: linear-gradient(135deg, rgba(140, 209, 234,  0.7), rgba(238, 198, 238, 0.7));
		color: #FFFFFF;
	}
	
	
	.bnrlist li p{
	margin: 22px 0 0 22px;
		line-height: 26px;
		font-size: 11px;
	}
	
	.koushiki{
		color: #c5e2f3;
		background-color: #FFFFFF;
		padding: 1px 6px;
	}
	.bnrttl{
		font-size: 19px;
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	}
	
	
	
	
	
	.pagetop{
	text-align: center;
		margin: 60px auto 100px;
		font-size: 14px;
	  color: #333333;
	}
	.pagetop img{
		margin-bottom: 10px;	
	}
	
	
	
	.atogaki{
		padding: 30px;
		font-size: 14px;
		line-height: 23px;
	  color: #333333;
	}
	.atogaki p{
		margin-bottom: 8px;
	}

	
	.small{
		margin-top: 30px;
	text-align: center;
	}
	
	
	
	.kieru{
		opacity: 0;
	}
	
	
	
	
}




















@media screen and (max-width:768px){
/*pc・タブレット用cssを丸々コピーしたものを編集していく（スマホ用css）*/
	
/* ここから下はスライダーの調整 */
	
	

*{

min-width: 0;

min-height: 0;

}

	
	.pcmainimg{display: none;}
	
.slider{
	visibility: hidden;
	position: relative;	
	z-index: 10;	
	overflow: hidden; /* 画像がはみ出ないようにする */
	transition: 1.3s;
}


@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15); /* 拡大率 */
  }
}
.add-animation {/* slickの設定とリンクしている*/
    animation: zoomUp 10s linear 0s normal both;
}
	
	
.slider.slick-initialized{
	visibility: visible;
}

	
.kurai{
    filter: brightness(32%);
}	


	
	

/* ここからファーストビュー */


.pcbox{
    position: absolute;
}
.pcmainbgbox{
	width: 100vw;
	height: 100vh;
	position: fixed;
	top: 0;
	left: 0;
	overflow: hidden;
}

.slick-img img{
  height: 100vh;
  margin: auto;
  max-height: 100%;
  max-width: 100%;
  object-fit: cover;
  width: 100%;
}

.pcfvbox{
	position: fixed;
	color: #FFFFFF;
}


.mainttl{
    writing-mode: vertical-rl;
    position: fixed;
    top: 7vw;
    right: 5vw;
    font-size: 3.4vw;
    letter-spacing: 1vw;
    line-height: 7.5vw;
    font-family: dnp-shuei-gothic-kin-std, sans-serif;
    font-weight: 400;
    font-style: normal;
    transition: all 1.2s;
	}

.mainicon{
	position: fixed;
	top: 5vw;
	left: 5vw;
	font-size: 2.4vw;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	color: #FFFFFF;
}
	
.mainicon:before {
  content: '';
  position: fixed;
  top: 6vw;/*線の上下位置*/
  left: 0;
  display: inline-block;
  width: 2.4vw;/*線の長さ*/
  height: 1px;/*線の太さ*/
  background-color: #FFFFFF;/*線の色*/
}

	
.logo{
	position: fixed;
	top: 58vw;
	left: 21vw;
    transition: all 1.2s;
	}
	
.logo img{
	width: 60vw;
}


.menu{
	display: none;
	position: fixed;
	top: 20.2vw;
	left: 7.5vw;
	font-size: 0.92vw;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    transition: all 1.2s;
}
	
.menu a{color: #FFFFFF;}
	
	
.menu li{	
	margin-bottom: 30px;
	transition: ease .2s;
	}

	
	
	
	
	.spmenu{
		position: relative;
		z-index: 50;
	}
	
/*　ハンバーガーメニューボタン　*/
.hamburger {
	display : block;
	position: fixed;
	z-index : 3;
	right : -20vw;
	top   : 5vw;
	width : 46px;
	height: 46px;
	cursor: pointer;
	text-align: center;
	}
	
	
.hamburger span {
  display : block;
  position: absolute;
  width   : 18px;
  height  : 2px ;
  left    : 14px;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 17px;
  background : #B1D0E4;
}
.hamburger span:nth-child(2) {
  top: 23px;
  background : #C6CAE3;
}
.hamburger span:nth-child(3) {
  top: 29px;
  background : #D2C6E3;
}

/* スマホメニューを開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 23px;
  left: 14px;
  background :#FFFFFF;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 23px;
  background :#FFFFFF;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

	
	
	
	
/* メニュー背景　*/
nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #fff;
  background: linear-gradient(135deg, rgba(140, 209, 234,  0.9), rgba(238, 198, 238, 0.9));
  text-align: center;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
  transition: all 0.6s;
}

nav.globalMenuSp ul {
  margin: 39vw auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  font-size: 8vw;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  padding: 0;
  width: 100%;
  transition: .4s all;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
}
nav.globalMenuSp ul li:hover{
  background :linear-gradient(135deg, rgba(140, 209, 234,  1), rgba(238, 198, 238, 1));
}

nav.globalMenuSp ul li a {
  display: block;
  color: #fff;
  padding: 1em 0;
  text-decoration :none;
}

/* クリックでjQueryで追加・削除 */
nav.globalMenuSp.active {
  opacity: 100;
  display: block;
   transform: translateY(0%);
}
	
	
	
	
	
	
	
.btnugoku{
	position: relative;
}
	
	
.btnarrow1::after{
    content: '';
    /*絶対配置で矢印の位置を決める*/
	position: absolute;
    top:32%;
    left: -27px;
    /*矢印の形状*/
    width: 3px;
    height: 3px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    transform: rotate(45deg);
    /*アニメーションの指定*/
    transition: all .3s;
}	
	
.btnarrow1:hover::after{
    left: -15px;
}
	
	
	
.instabox{
display: none;
}	

	
	.instaboxsp{
	position: fixed;
	top: -50vw;
	left: 50%;
	transform: translateX(-50%);
    transition: all 1.2s;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
		line-height: 6.2vw;
	}
	
	.instaboxsp img{
		float: left;
		margin-top: 3.5vw;
	}
	
	.instatext{
		margin-left: 11vw;
	}
	.instaclear{
		clear: both;
	}
	
	.instaboxsp a{
		color: #FFFFFF;
	}
	.morekurupo{
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
		font-size: 3vw;
	}
	
	
#box1{
  animation:7s linear infinite rotation;
}
	
@keyframes rotation{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(-360deg); }
}	
	

	
.pagetopkotei{
	position: fixed;
	bottom: -15vw;
	left: 50%;
	transform: translateX(-50%);
	font-size: 3vw;
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    transition: all 1.2s;
}	
	
.pagetopkotei:before {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 15px;/*画像の幅*/
  height: 15px;/*画像の高さ*/
  background-image: url("../images/top/ashiato_single.svg");
  background-size: contain;
  vertical-align: middle;
	background-repeat: no-repeat;
	margin-right: 5px;
}	

.pagetopkotei a{color: #FFFFFF;}
	
	
	
	
/* ここから下はコンテンツ */

	
.whitebg{
	background-color: #FFFFFF;
	transition: 2s;
}	
	

.maincontainer{
	display: flex;
	flex-flow: column;
	position: relative;
	width: 100vw;
	margin: 0 auto;
	margin-top: 100vh;
	margin-bottom: 100vh;
}
	
	



/*スクロールダウン全体の場所*/
.scrolldown1{
    /*描画位置※位置は適宜調整してください*/
	position: relative;
    left: 50vw;
    top: -35vw;
    /*全体の高さ*/
	height:40px;
}

/*Scrollテキストの描写*/
.scrolldown1 span{
    /*描画位置*/
	position: absolute;
	left:-15px;
	top: -15px;
    /*テキストの形状*/
	color: #333;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after{
	content: "";
    /*描画位置*/
	position: absolute;
	top: 0;
    /*線の形状*/
	width: 1px;
	height: 40px;
	background: #FFFFFF;
    /*線の動き1.4秒かけて動く。永遠にループ*/
	animation: pathmove 1.7s ease-in-out infinite;
	opacity:0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove{
	0%{
		height:0;
		top:0;
		opacity: 0;
	}
	30%{
		height:30px;
		opacity: 1;
	}
	100%{
		height:0;
		top:100px;
		opacity: 0;
	}
}	
	
	
/* ここから下はメッセージ */

.message{
	width: 100vw;
	z-index: 3;
	height: 410vw;
	color: #333333;
}	
	
	
	
#sticky{
	margin-top: -18vw;
	padding: 0 0 0 5vw;
	height: 242vw;
	}
	
.mess_ttl{
	position: sticky;
	top: 40vh;
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	writing-mode: vertical-rl;
	z-index: 5;
	float: left;
	margin-top: 4.6vw;
	margin-left: 6vw;
    transition: all 1.2s;
	font-size: 4vw;
}
	
.shirokunaru{
	color: #FFFFFF;
}
	
	
	
.mess_bgtext{
	font-family: 'Rozha One', serif;
}	
	

	
.messtextbox{
	margin-left: 20vw;
	margin-bottom: 24vw;
	position: relative;
	z-index: 20;
	}
	
.messtextbox p{
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 12vw;
	margin-bottom: 10vw;
	font-size: 3.7vw;
	}

	
	
.mess_bgtext{
	padding-top: 20vw;
	font-size : 40vw;
	text-align : center;
	overflow : hidden;
}	
	
	
	
.nagareru{
margin:0;
display : inline-block;
padding-left: 100%;
white-space : nowrap;
line-height : 1em;
	
  background: linear-gradient(135deg, rgba(140, 209, 234,  0.6), rgba(238, 198, 238, 0.6));
  background: -webkit-linear-gradient(135deg, rgba(140, 209, 234, 0.6), rgba(238, 198, 238, 0.6));
  background-size: 100% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

animation : nagarerut 30s linear infinite;
}
	
@keyframes nagarerut{
0% { transform: translateX(0)}
100% { transform: translateX(-100%)}
from {background-position: left}
to {background-position: right}
}
	

	.simple-slider{
	clear:both;
	}
	
.simple-slider-img img{
	width: 100vw;
	}
	
	

.messtextjpbox{
	margin-left: 25vw;
	margin-top: -26.5vw;
	}
	
.messtextjpbox p{
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	line-height: 12vw;
	color: #FFFFFF;
	margin-bottom: 10vw;
	font-size: 3.7vw;
	}

	
	
	
	
.ashiato1 img{
    margin: 10vw 0 0 42vw;
    width: 24vw;
	}

	
	
@keyframes hatoashiato{
  0%{
    opacity: 0;;
  }
  100%{
    opacity: 1;;
  }
}	
		
	
/* ここから下はフレンド */
	
	
	.friend{
	height: 230vw;
	}
	
	.soushoku{
	font-family: mina, serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
	color: #FFE700;
	font-size: 6vw;
	}
	
	.midashi_shiro{
	text-align: center;
	color: #FFFFFF;
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 3.2vw;
	margin-bottom: 45px;
	}
	
	
	.friend h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-align: center;
	color: #FFFFFF;
	font-size: 10vw;
	margin-bottom: 3vw;
	}
	
	
	
	.yarikata{
		width: 90vw;
		height: 160vw;
		border-radius: 45vw;
		background-color: #FFFFFF;
		margin: 0 auto;
		margin-bottom: 45px;
	  color: #333333;
	}
	
	.howto{
		padding: 23vw 15vw;
	}
	
	.howto p{
		margin-top: 6vw;
		line-height: 9vw;
		font-size: 3.7vw;
	}
	.howto img{
		width: 41%;
	}
	
	.numb{
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 5.5vw;
	}
	
	
	
	.howto li{
		display: flex;
		justify-content: space-between;
		margin-bottom: 15vw;
	}
	
	
	.chuui{
	text-align: center;
	color: #FFFFFF;
	font-size: 3.2vw;
	line-height: 6vw;
	}
	
	

	
	
	
	
	.gallery-slider-img{
		width: 180px;
	}
	
	
	
	
	.gallery{
		margin-bottom: 30vw;
	}
	
	
/* ここから下はアクセス */
	
	.access{
		margin-bottom: 32vw;
	  color: #333333;
	}
	
	.midashi_kuro{
	text-align: center;
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 3.2vw;
	margin-bottom: 45px;
	}
	
	
	.access h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-align: center;
	font-size: 10vw;
	margin-bottom: 3vw;
	}
		
	
	
.map {
  width: 90vw;
  height: 80vw;
  overflow: hidden;
	margin: 0 auto 30px;
}

	.map iframe {
	width: 440px;
	height: 400px;
	filter: grayscale(97%);
	}

	.linkmap{
	text-align: center;
	font-size: 3.2vw;
	}

	
	
	
/* ここから下はフッター */
	
	
	.bnrbox{
		padding: 7vw;
	}
	
	.bnrbox h2{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	text-align: center;
	font-size: 6vw;
	margin-bottom: 6vw;
	  color: #333333;
	}
	
	
	.bnrlist li{
		display: flex;
		justify-content: space-between;
		width: 86vw;
		height: 30vw;
		margin-bottom: 30px;
		background: linear-gradient(135deg, rgba(140, 209, 234,  0.7), rgba(238, 198, 238, 0.7));
		color: #FFFFFF;
	}
	
	
	.bnrlist li p{
	margin: 6vw 0 0 5vw;
		line-height: 6vw;
		font-size: 3vw;
	}
	
	.koushiki{
		color: #c5e2f3;
		background-color: #FFFFFF;
		padding: 1px 6px;
	}
	.bnrttl{
		font-size: 3.5vw;
	font-family: dnp-shuei-gothic-kin-std, sans-serif;
	font-weight: 400;
	font-style: normal;
	}
	
	
	
	
	
	.pagetop{
	text-align: center;
		margin: 10vw auto 20vw;
		font-size: 3.2vw;
	  color: #333333;
	}
	.pagetop img{
		margin-bottom: 10px;	
	}
	
	
	
	.atogaki{
		padding: 5vw;
		font-size: 3.2vw;
		line-height: 5.2vw;
	  color: #333333;
	}
	.atogaki p{
		margin-bottom: 5vw;
	}

	
	.small{
		margin-top: 10vw;
	text-align: center;
	}
	
	
	
	.kieru{
		opacity: 0;
	}
	
	.slick-slide-sp img{width:  36.5vw;}

	
}














