@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@600&display=swap');
/* Base */
body{
    background: #666;
    font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	font-weight: 500;
	/*color: #fff;*/
	color:#00a1e9;
	font-size: 1rem;
	line-height: 1.25;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	-webkit-text-size-adjust: 100%;
	word-wrap: break-word;
}

@media screen and (max-width:768px) {
body{
	font-size: 0.8rem;
}
}
main{
	/*background: url(../img/umipurin3.jpg) no-repeat 90% 50%;*/
	background: url(../img/bg.png) center center repeat;
}

.float-right {
    float: right; /* 右に浮かせる */
    width: 30%; /* 幅を設定（調整可能） */
    background-color: #f0f0f0; /* 背景色（任意） */
    padding: 10px; /* パディング（任意） */
    margin: 10px; /* マージン（任意） */
    width: 300px;
}
/* メディアクエリ */
@media (max-width: 600px) {
	.float-right {
    float: right;
    width: 30%;
    background-color: #f0f0f0;
    padding: 10px;
    margin: 10px;
    width: 200px;
}
}
/* メディアクエリ */
@media (max-width: 600px) {
    .float-right {
        float: none; /* floatを解除して縦並びにする */
        /*width: 100%;*/ /* 幅を100%にする */
        width: 65%; /* 幅を100%にする */
    }
}

ul{
	margin: 0;
	padding: 0;
	list-style: none;
}
ul.pagination{
	display: none;	
}

a{
	color: #fff;
    outline: none;
}

a:hover,
a:active{
	text-decoration: none;
}

/* heading */
.heading-block{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
}

h1 img{
	width: 20vw;
	height: 100%;
	display: none;
}

h2{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    font-size: 4.25em;
    line-height: 1;
	padding-bottom: 0.425em;
}

#about-text{
	font-size: 1.3rem;
	display: table;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	list-style: none;
	padding: 0;
}
#about-text-right{
	font-size: 1.3rem;
	display: table;
	text-align: right;
	margin-left: auto;
	margin-right: auto;
	list-style: none;
	padding: 0;
}

#info-text{
	font-size: 1.3rem;
	display: table;
	text-align: left;
	margin-left: auto;
	margin-right: auto;
	list-style: none;
	padding-bottom: 1.5em;
}

.text70{
	font-size: 70%;
	padding-top: 0.25em;
}

.box-area{
	max-width: 1000px;
	width: 97%;
	margin: 0px 300px 0px 0px;
}
.box-area2{
	max-width: 1000px;
	width: 97%;
	margin: 0 auto;
}

/* Google Mapを囲う要素 */
.map {
	position: relative;
	width: 85%;
	height: 40vh;
}
 
/* Google Mapのiframe */
.map iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

/*横幅が768px以下になった際の指定*/
@media only screen and (max-width:768px) {
h1 img{
	width: 50vw;
	height: 100%;
}

h2{
	font-size: 2.25em;
	padding-bottom: 0.3.5em;
}
	
#about-text{
	font-size: 0.7rem;
}
#about-text-right{
	font-size: 0.7rem;
}

#info-text{
	font-size: 0.7rem;
}
	
.map {
	height: 30vh;
}
.box-area {
    max-width: 1000px;
    width: 100%;
    margin: 0px 100px 0px 0px;
}	
}

/* sns icon */
#sns-icon img{
    width: 20px;
}

#sns-icon{
    position: fixed;
    right:20px;
    top:20px;
    display: flex;
}

#sns-icon li{
     margin:0 10px;   
}

#sns-icon a{
}

#sns-icon a:hover{
    opacity: 0.6;
    transition: all .5s;
}

/* instagram */
.insta-area{
}

.insta_list{
	width: 50vw;
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
	margin-bottom: 20px;
}

.insta_list li{
	position: relative;
	width: calc((100% - 40px)/4);
}

@media screen and (max-width: 768px){
	.insta_list{
	width: 100vw;
	gap: 10px;}
	.insta_list li{
	width: calc((100% - 20px)/4);
}
}

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
}

.insta_list img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.insta_list img:hover{
 	opacity: 0.6;
	transition: all .3s;
}

.insta_btn{
	font-family: "Montserrat", sans-serif;
	font-weight: 600;
	background-color: #fff;
	padding: .4em 1em;
	width: fit-content;
	margin: 0 auto;
	cursor: pointer;
}

.insta_btn a{
	color: #aad0de;
	text-decoration: none;
}

.insta_btn:hover{
 	opacity: 0.6;
	transition: all .3s;
}

/* copyright */
small{
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    position: fixed;
    left:20px;
    top:35%;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
}

/*===========================================================*/
/*ぼかしから出現*/
/*===========================================================*/

/*== ぼかしから出現 ==*/

/* fadeIn */
.fadeIn{
animation-name: fadeInAnime;
animation-duration:2s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/

.fadeInTrigger{
    opacity: 0;
}

/* js */
/*===========================================================*/
/*ゆっくりズームアウトさせながら全画面で見せる*/
/*===========================================================*/
#slider {
    width: 100vw;
    height: 100vh;/*スライダー全体の縦幅を画面の高さいっぱい（100vh）にする*/
}

/*===========================================================*/
/*スクロールすると1画面移動*/
/*===========================================================*/
.box{
    padding: 40px;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

#box1{
    /*background: #009ed2 url("../img/umipurin.png") no-repeat center;*/
    /*background: #aad0de url("../img/umipurin.png") no-repeat 90% 50%;*/
    background: url("../img/umipurin.jpg") no-repeat 90% 50%;
    background-size: 20vw;
}
#box1-2{
    /*background: #009ed2 url("../img/umipurin.png") no-repeat center;*/
    /*background: #85c5db url("../img/umipurin2.jpg") no-repeat 10%  50%;*/
    background: url("../img/umipurin2.jpg") no-repeat 10%  50%;
    background-size: 20vw;
}
#box1-3{
    /*background: #009ed2 url("../img/umipurin.png") no-repeat center;*/
    /*background: #64BBD9 url("../img/umipurin3.jpg") no-repeat 90%  50%;*/
    /*background: url("../img/umipurin3.jpg") no-repeat 90%  50%;*/
    background: url("../img/umipurin3.png") no-repeat 90%  50%;
    background-size: 20vw;
}
#box1-4{
    /*background: #009ed2 url("../img/umipurin.png") no-repeat center;*/
    /*background: #64BBD9 url("../img/umipurin3.jpg") no-repeat 90%  50%;*/
    background: url("../img/umipurin4.png") no-repeat 90%  50%;
    background-size: 20vw;
}
#box2{
    /*background: #4cb3ef;*/
   /*background: #aad0de;*/
   /* background-size: cover;*/
   background-size: 35vw;
}
#box3{
    /*background: #009ed2 url("../img/footer01.jpg") no-repeat left 50%;*/
    background: url("../img/footer01.jpg") no-repeat 90% 50%;
    background-size: 35vw;
}

@media screen and (max-width:768px) {
#box1{
    /*background: #aad0de url("../img/umipurin.png") no-repeat 90% 50%;*/
    background: url("../img/umipurin.jpg") no-repeat 90% 90%;
    background-size: 30vw;
}
#box1-2{
	/*background: #85c5db url("../img/umipurin2.jpg") no-repeat 10%  50%;*/
	background: url("../img/umipurin2.jpg") no-repeat 90%  50%;
    background-size: 30vw;
}
#box1-3{
	/*background: #64BBD9 url("../img/umipurin3.jpg") no-repeat 90%  50%;*/
	/*background: url("../img/umipurin3.jpg") no-repeat 90%  95%;*/
	background: url("../img/umipurin3.png") no-repeat 90%  95%;
    background-size: 30vw;
}
#box1-4{
	/*background: #64BBD9 url("../img/umipurin3.jpg") no-repeat 90%  50%;*/
	background: url("../img/umipurin4.png") no-repeat 90%  95%;
    background-size: 30vw;
}

#box2{
    /*background: #4cb3ef;*/
   /*background: #aad0de;*/
   /*background-size: cover;*/
    background-size: 35vw;

#box3{
    /*background: #009ed2 url("../img/footer01.jpg") no-repeat left 50%;*/
    background: url("../img/footer01.jpg") no-repeat left 50%;
    /*background: #ebc8a0;*/
    /*background-size: cover;*/
    background-size: 35vw;
}
}

/*========= ページネーションCSS ===============*/

.pagination {
	position:fixed;
	right:20px;
	top: 50%;
  	transform: translateY(-50%);
	font-size:1em;
	z-index: 10;
	list-style: none;
	display: none;
}

.pagination a {
	display:block;
	height:20px;
	margin-bottom:5px;
	color:#fff;
	position:relative;
	padding:4px;
}

.pagination a.active:after {
	box-shadow:inset 0 0 0 5px;
}

.pagination a .hover-text {
	position:absolute;
	right:15px;
	top:0;
	opacity:0;
	-webkit-transition: opacity 0.5s ease;
	transition: opacity 0.5s ease;
	padding-right: 15px;
	display: none;
}

.pagination a:hover .hover-text {
	opacity: 1;
	display: none;
}

.pagination a:after {
	-webkit-transition:box-shadow 0.5s ease;
	transition:box-shadow 0.5s ease;
	width:10px;
	height:10px;
	display: block;
	border:1px solid;
	border-radius:50%;
	content:'';
	position: absolute;
	margin:auto;
	top:0;
	right:3px;
	bottom:0;
}

@media screen and (max-width:768px) { 
	.pagination a .hover-text{
		display: none;
}
}

#shop-btn {
    position: fixed;
    right: 100px;
    bottom: 100px;
    display: flex;
    z-index:9999;
}


.media-grid {
    height: 80%;
    width: 80%;
}

.media-grid {
    height: 70% important;
    width: 70% important;
    margin: auto important;
}


