﻿@charset "UTF-8";

html {
	font-size: 62.5%;
}

body {
	font-family: "Noto Sans JP", sans-serif;
	line-height: 1;
	color: #242424;
	font-size: 1.6rem;
	font-weight: 700;
	font-style: normal;
	letter-spacing: 0.05em;
	background-image: linear-gradient(170deg, #00C5E5 0%, #3fd1ca 40%, #00C5E5 60%, #03afc9 100%);
}

*,
*::before,
*::after {
	box-sizing: border-box;
}

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

li {
	list-style: none;
}

.fadein {
	opacity: 0;
	transform: translateY(30px);
	transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.fadein.is-visible {
	opacity: 1;
	transform: translateY(0);
}

main {
	width: 100%;
	margin: 0 auto;
	overflow-x: hidden;
}

.conteiner {
	position: relative;
}

.wrap {
	max-width: 1080px;
	margin: 0 auto;
	text-align: center;
}

.sp-only {
	display: none;
}

h1 {
	position: relative;
}

h1::before {
	content: '';
	display: block;
	background-image: url(./img/flower_left.png);
	width: 391px;
	height: 357px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 0;
	left: -190px;
	z-index: -1;
}

h1::after {
	content: '';
	display: block;
	background-image: url(./img/flower_right.png);
	width: 391px;
	height: 357px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -216px;
	right: -220px;
	z-index: -1;
}

h1 picture img {
	padding-top: 30px;
	width: 900px;
}

/* 鳥 */
.bird {
	position: absolute;
	width: 7px;
	height: 7px;
	transform: rotate(45deg);
	animation: moving 16s linear infinite;
}

.bird.-type_2 {
	animation-delay: 1s;
}

.bird.-type_2:before,
.bird.-type_2:after {
	animation-delay: -2s;
}

.bird.-type_3 {
	animation-delay: 3s;
}

@keyframes moving {
	0% {
		top: 40vh;
		left: 0vw;
	}

	25% {
		top: 45vh;
		left: 23vw
	}

	100% {
		top: 40vh;
		left: 101vw;
	}
}

@media screen and (max-width:1024px) {
	@keyframes moving {
		0% {
			top: 28vh;
			left: 0vw;
		}

		25% {
			top: 33vh;
			left: 23vw
		}

		100% {
			top: 28vh;
			left: 101vw;
		}
	}
}

.bird:before,
.bird:after {
	content: "";
	position: absolute;
	bottom: 0;
	right: 0;
	background-color: rgb(255, 255, 255);
	transform: rotate(-30deg);
	transform-origin: right bottom;
}

.bird:before {
	width: 100%;
	height: 1px;
	animation: leftWing 8s linear infinite;
}

.bird:after {
	width: 1px;
	height: 100%;
	animation: rightWing 8s linear infinite;
}

@keyframes leftWing {
	0% {
		transform: rotate(-30deg);
	}

	2% {
		transform: rotate(-110deg);
	}

	4% {
		transform: rotate(-30deg);
	}

	6% {
		transform: rotate(-110deg);
	}

	8% {
		transform: rotate(-30deg);
	}

	10% {
		transform: rotate(-110deg);
	}

	12% {
		transform: rotate(-30deg);
	}

	30% {
		transform: rotate(-30deg);
	}

	42% {
		transform: rotate(-35deg);
	}

	72% {
		transform: rotate(-35deg);
	}

	74% {
		transform: rotate(10deg);
	}

	76% {
		transform: rotate(-30deg);
	}

	78% {
		transform: rotate(-110deg);
	}

	80% {
		transform: rotate(-30deg);
	}

	82% {
		transform: rotate(-110deg);
	}

	84% {
		transform: rotate(-30deg);
	}

	86% {
		transform: rotate(-110deg);
	}

	88% {
		transform: rotate(-30deg);
	}

	90% {
		transform: rotate(-110deg);
	}

	92% {
		transform: rotate(-30deg);
	}

	94% {
		transform: rotate(-110deg);
	}

	96% {
		transform: rotate(-30deg);
	}

	98% {
		transform: rotate(-110deg);
	}

	100% {
		transform: rotate(-30deg);
	}
}

@keyframes rightWing {
	0% {
		transform: rotate(30deg);
	}

	2% {
		transform: rotate(110deg);
	}

	4% {
		transform: rotate(30deg);
	}

	6% {
		transform: rotate(110deg);
	}

	8% {
		transform: rotate(30deg);
	}

	10% {
		transform: rotate(110deg);
	}

	12% {
		transform: rotate(30deg);
	}

	30% {
		transform: rotate(30deg);
	}

	42% {
		transform: rotate(35deg);
	}

	72% {
		transform: rotate(35deg);
	}

	74% {
		transform: rotate(0deg);
	}

	76% {
		transform: rotate(30deg);
	}

	78% {
		transform: rotate(110deg);
	}

	80% {
		transform: rotate(30deg);
	}

	82% {
		transform: rotate(110deg);
	}

	84% {
		transform: rotate(30deg);
	}

	86% {
		transform: rotate(110deg);
	}

	88% {
		transform: rotate(30deg);
	}

	90% {
		transform: rotate(110deg);
	}

	92% {
		transform: rotate(30deg);
	}

	94% {
		transform: rotate(110deg);
	}

	96% {
		transform: rotate(30deg);
	}

	98% {
		transform: rotate(110deg);
	}

	100% {
		transform: rotate(30deg);
	}
}



section {
	padding-top: 150px;
	text-align: center;
	margin: 0 auto;
}

.sec01 {
	padding-top: 50px;
	padding-bottom: 100px;
}

.logo02 {
	width: 119px;
	margin-bottom: 30px;
}

h2 {
	font-size: 4.8rem;
	line-height: 1.6;
	margin-bottom: 120px;
	font-weight: 900;
}

h2 span.line {
	position: relative;
}

h2 span.line:after {
	content: '';
	display: block;
	background-image: url(./img/line.png);
	width: 100%;
	height: 50px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -45px;
	left: 0;
}

h2 span.small {
	font-size: 3.2rem;
}

.arrow-title {
	position: relative;
}

.arrow-title:after {
	content: '';
	display: inline-block;
	background-image: url(./img/arrow.png);
	width: 37px;
	height: 42px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -67px;
	left: 50%;
	transform: translateX(-50%) rotate(90deg);
}

.suben-title {
	color: #fff;
	font-family: "Poppins", sans-serif;
	margin-bottom: 10px;
}

.oubo-box {
	background-color: #F2E725;
	border: 5px solid #fff;
	width: 350px;
	height: 175px;
	margin: 0 auto;
	padding-top: 22px;
	position: relative;
}

.oubo-box::before {
	content: '';
	display: block;
	background-image: url(./img/server01.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 54px;
	height: 235px;
	position: absolute;
	bottom: -3px;
	left: -70px;
	filter: drop-shadow(0px 5px 2px rgba(54, 54, 67, 0.1));
}

.oubo-box::after {
	content: '';
	display: block;
	background-image: url(./img/2gal.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 126px;
	height: 114.87px;
	position: absolute;
	bottom: 0;
	right: -140px;
	filter: drop-shadow(0px 5px 2px rgba(54, 54, 67, 0.1));
}

.oubo-title {
	display: inline-block;
	color: #0DA1BD;
	font-size: 2.4rem;
	border-bottom: 2px solid #0DA1BD;
	padding-bottom: 5px;
	margin-bottom: 8px;
	font-weight: 700;
}

.oubo-date {
	color: #d81b0a;
	font-size: 3.2rem;
	font-family: "Poppins", sans-serif;
	display: inline-block;
	position: relative;
	margin: 0 0 20px -20px;
	vertical-align: text-bottom;
}

.oubo-date::after {
	position: absolute;
	content: '';
	display: block;
	background-image: url(./img/week.png);
	background-size: contain;
	background-repeat: no-repeat;
	width: 30px;
	height: 30px;
	top: 14px;
	right: -32px;
}

.oubo-date span {
	font-size: 5rem;
}

.oubo-atte {
	font-size: 1.6rem;
	letter-spacing: -0.05em;
	font-weight: 600;
}

.thurs {
	width: 30px;
}

.dateline {
	font-size: 2rem;
}

.sec02 {
	margin: 0 calc(50% - 50vw);
	width: 100vw;
	background-image: url('./img/sec02bg.jpg');
	background-size: cover;
	background-position: center;
	background-attachment: fixed;
	min-height: 80vh;
	padding: 150px 0;
	position: relative;
	z-index: 2;
}

.sec02::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, rgba(145, 242, 255, 0.7) 0%, rgba(0, 197, 229, 0.7) 50%, rgba(152, 241, 255, 0.7) 100%);
	z-index: -1;
	/* 動画の上に、コンテンツの下に配置 */
}


.sec02-flex {
	display: flex;
	width: 660px;
	justify-content: space-between;
	margin: 50px auto 100px;
}

.sec02-flex li {
	width: 300px;
}

.sec02-no {
	color: #F2E725;
	font-family: "Poppins", sans-serif;
	font-size: 4rem;
	font-weight: 800;
	margin-bottom: 10px;
}

.sec02-img {
	width: 300px;
	box-shadow: 5px 5px 0px 0px rgb(203, 182, 84);
}

.sec02-img1 {
	width: 450px;
	box-shadow: 5px 5px 0px 0px rgb(203, 182, 84);
}

.sec02-text {
	width: 900px;
	margin: 0 auto;
}

.sec02-text li {
	font-size: 1.8rem;
	line-height: 2;
	text-align: left;
	padding-left: 1em;
	text-indent: -1em;
}

.sec03 {
	margin-bottom: 120px;
	position: relative;
}

.sec03::before {
	content: '';
	display: block;
	background-image: url(./img/flower_left.png);
	width: 391px;
	height: 357px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	top: 70px;
	left: -190px;
	z-index: -1;
}

.sec03::after {
	content: '';
	display: block;
	background-image: url(./img/flower_right.png);
	width: 391px;
	height: 357px;
	background-size: contain;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -230px;
	right: -230px;
}

.sec03-text {
	width: 900px;
	margin: 0 auto 60px;
}
.sec03-text li {
	font-size: 1.8rem;
	text-align: left;
	line-height: 2;
	padding-left: 1em;
	text-indent: -1em;
}

.sec03-text span {
	font-size: 2rem;
}

.sec03-text a {
	text-decoration: underline;
	position: relative;
}
.sec03-text a span {
	font-size: 1.2rem;
	letter-spacing: -0.05em;
}


/* アコーディオン全体 */
.kiyaku-box {
	width: 800px;
	margin: 0 auto 100px;
}
.kiyaku {
    width: 100%;
    border-radius: 5px;
    background-color: #fff;
}

.kiyaku summary {
	font-size: 2rem;
	color: #0DA1BD;
	text-align: center;
	list-style-type: none;
	position: relative;
	padding: 20px;
}

.kiyaku summary::-webkit-details-marker {
    display: none;
}

.kiyaku summary::after {
    content: '';
	background-image: url(./img/arrow02_b.png);
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
	width: 16px;
    height: 16px;
    transition: transform .3s;
	position: absolute;
	right: 30px;
	top: 25px;
}

.kiyaku[open] summary::after {
	transform: rotate(180deg);
}

.kiyaku-detail {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 2em 1.5em;
    color: #333333;
    transition: transform .5s, opacity .5s;
	text-align: left;
}

.kiyaku[open] .kiyaku-detail {
    transform: none;
    opacity: 1;
}

.kiyaku-txt01 {
	font-size: 1.6rem;
	margin-bottom: 10px;
}

.kiyaku-txt02 {
	font-size: 1.4rem;
	margin-bottom: 20px;
	line-height: 1.6;
	font-weight: 500;
}
.kiyaku-txt02 a {
	text-decoration: underline;
}

.btn {
	font-size: 2.8rem;
	color: #0DA1BD;
	background-color: #F2E725;
	border: 3px solid #fff;
	border-radius: 70px;
	padding: 20px 50px;
	box-shadow: 5px 5px 0px 0px rgba(13, 161, 189, 1);
	transition: all .2s ease-out;
	position: relative;
	top: 0;
	letter-spacing: -0.05em;
}

@media screen and (min-width: 768px) {
	.btn:hover {
		box-shadow: 0px 0px 0px 0px;
		position: relative;
		top: 3px;
	}
}

.sec04 {
	padding: 100 0;
	background-color: #63D1F0;
	position: relative;
	box-shadow: 0px 0px 10px 0px rgba(255, 255, 255, 0.2);
	z-index: 2;
	border-radius: 10px;
}

/* 動画のスタイル */
#video-background {
	position: absolute;
	/* 親要素 (.sec04) を基準に配置 */
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	/* セクション全体を覆うように、アスペクト比を維持しつつ拡大/縮小 */
	z-index: 0;
	/* 他のコンテンツの下に配置 */
	opacity: .5;
	border-radius: 10px;
}

.sec04::after {
	content: "";
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(to right, #29daf6 0%, #00C5E5 60%, #00C5E5 100%);
	z-index: -1;
	/* 動画の上に、コンテンツの下に配置 */
	border-radius: 10px;
}

.background {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 0;

}

.m-50 {
	margin-bottom: 50px;
}

.green {
	color: #076a7e;
}
.sec04-h2 {
	color: #076a7e;
	font-size: 4.8rem;
}

.sec04-text {
	font-size: 1.6rem;
	line-height: 2;
	text-align: center;
	color: #076a7e;
	margin-bottom: 30px;
	font-weight: 500;
}

.sec04-bottle {
	width: 462px;
	filter: drop-shadow(0px 0px 16px rgba(238, 246, 255, 0.5));
	border-radius: 5px;
}

.sec04-server {
	width: 564px;
}

.sec04-link-text {
	font-size: 2rem;
	color: #076a7e;
	margin-bottom: 20px;
	letter-spacing: -0.02em;

}

.sec04-link {
	display: inline-block;
	color: #0DA1BD;
	background-color: #fff;
	border: 3px solid #0DA1BD;
	border-radius: 70px;
	width: 430px;
	height: 86px;
	padding-top: 13px;
	line-height: 1.4;
	font-size: 2rem;
	box-shadow: 5px 5px 0px 0px rgba(13, 161, 189, 1);
	margin-bottom: 100px;
	transition: all .3s ease-out;
	position: relative;
	top: 0;
	letter-spacing: -0.05em;
}

@media screen and (min-width: 768px) {
	.sec04-link:hover {
		box-shadow: 0px 0px 0px 0px;
		position: relative;
		top: 3px;
	}
}

.contact {
	margin: 100px auto;
	text-align: center;
	width: 750px;
	border: 2px solid #F2E725;
}

.contact-title {
	display: inline-block;
	font-size: 2.8rem;
	color: #0DA1BD;
	background-color: #F2E725;
	padding: 10px 30px;
	margin-bottom: 30px;
}

.contact-text {
	color: #F2E725;
	font-size: 2.4rem;
	margin-bottom: 30px;
	letter-spacing: -0.05em;
}
.contact-flex {
	margin-left: 80px;
}

.contact-flex li {
	display: flex;
	margin: 0 auto 20px;
	width: 100%;
}

.contact-flex li:last-child {
	margin-bottom: 40px;
}

.contact-flex-title {
	font-size: 2rem;
	color: #0DA1BD;
	background-color: #F2E725;
	width: 130px;
	height: 56px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right: 30px;
}

.contact-flex-text {
	color: #F2E725;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 2.4rem;
}

.slider {
	display: flex;
	overflow-x: scroll;
	overflow-y: hidden;
	padding-left: 0;
	margin: 0 0 100px 0;
	scrollbar-width: none;
	/* Firefox */
	-ms-overflow-style: none;
	/* IE/Edge */
}

.slider::-webkit-scrollbar {
	display: none;
}

.slider li {
	flex-shrink: 0;
	margin-right: 0.7%;
	flex-basis: 30%;
}

.slider li img {
	width: 100%;
	height: auto;
	display: block;
}

.campany {
	display: block;
	color: #242424;
	font-size: 1.2rem;
	text-align: center;
	padding-bottom: 5px;
}

.campany:last-child {
	margin-bottom: 50px;
}

/* entryボタン　*/

.entry-btn {
	width: 170px;
	height: 170px;
	position: fixed;
	bottom: 100px;
	right: 100px;
	z-index: 100;
	background-color: transparent;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

.entry-btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: relative;
    z-index: 1;
}

.entry-btn a::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0; 
    background-image: url('./img/entry_btn.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.entry-btn.is-active {
	opacity: 1;
	visibility: visible;
}

.entry-btn-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	text-align: center;
	position: relative;
	z-index: 2;
}

.entry-btn-en {
	color: #0DA1BD;
	font-family: "Poppins", sans-serif;
	font-size: 1.4rem;
	display: block;
	margin-top: 25px;
	margin-bottom: 12px;
}

.entry-btn-text {
	color: #242424;
	font-size: 1.6rem;
	display: block;
	line-height: 1.4;
	letter-spacing: -0.05em;
}


@media screen and (min-width:769px) and (max-width:1024px) {
	.wrap {
		width: 100%;
		margin: 0 auto;
		overflow: hidden;
	}

	h1::before {
		width: 200px;
		top: -30px;
		left: -30px;

	}

	h1::after {
		width: 180px;
		bottom: -320px;
		right: -44px;
	}

	h1 picture img {
		padding-top: 30px;
		width: 90%;
	}

	section {
		padding-top: 100px;
	}

	h2 {
		font-size: 3.6rem;
		margin-bottom: 100px;
	}

	.sec02-flex {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}

	.sec02-flex li {
		margin-bottom: 30px;
	}

	.sec02-text {
		width: 750px;
	}

	.sec03::before {
		width: 200px;
		top: 120px;
		left: -20px;
	}

	.sec03::after {
		width: 200px;
		bottom: -230px;
		right: -30px;
	}
	.sec03-text {
		width: 750px;
		margin: 0 auto 60px;
	}
	/* アコーディオン全体 */
.kiyaku-box {
	width: 650px;
	margin: 0 auto 100px;
}
	.slider {
		margin: 0 auto 50px;
		width: 100%;
		flex-direction: row;
		direction: ltr;
	}

	.slider li {
		flex-basis: 40%;
	}
}
	/* entryボタン */
	.entry-btn {
		bottom: 20px;
		right: 20px;
	}

@media screen and (max-width: 768px) {
	.wrap {
		width: 100%;
		padding: 0 20px;
		overflow-x: hidden;
	}

	@media screen and (max-width: 320px) {
		.wrap {
			padding: 0 5px;
		}
	}

	.sp-only {
		display: block;
	}

	h1::before {
		width: 150px;
		top: -30px;
		left: -30px;

	}

	h1::after {
		width: 110px;
		bottom: -320px;
		right: -44px;
	}

	h1 picture img {
		padding-top: 30px;
		margin: 0 calc(50% - 50vw);
		width: 100vw;
	}

	section {
		padding-top: 50px;
	}

	.sec01 {
		padding-top: 20px;
		padding-bottom: 50px;
	}

	.logo02 {
		width: 80px;
		margin-bottom: 20px;
	}

	h2 {
		font-size: 2.2rem;
		margin-bottom: 50px;
		letter-spacing: -0.05em;
		white-space: nowrap;
		font-weight: 700;
	}

	@media screen and (max-width: 320px) {
		h2 {
			font-size: 1.8rem;
		}
	}

	h2 span.line:after {
		width: 95%;
		bottom: -48px;
		left: 50%;
		transform: translateX(-50%);
	}

	h2 span.small {
		font-size: 1.8rem;
	}

	.suben-title {
		font-size: 1.2rem;
	}

	.arrow-title:after {
		width: 17px;
		height: 19px;
		bottom: -30px;
	}

	.oubo-box {
		width: 280px;
		height: 140px;
		padding-top: 20px;
	}

	.oubo-box::before {
		width: 44px;
		left: -38px;
		bottom: -60px;
	}

	.oubo-box::after {
		width: 106px;
		right: -95px;
		bottom: -25px;
	}

	.oubo-title {
		margin-bottom: 12px;
		font-size: 2rem;
	}

	.oubo-date {
		font-size: 3rem;
		margin-bottom: 10px;
	}

	.oubo-date::after {
		width: 25px;
		height: 25px;
		top: 9px;
		right: -28px;
	}

	.oubo-date span {
		font-size: 4rem;
	}

	.oubo-atte {
		font-size: 1.4rem;
		letter-spacing: 0em;
	}

	.sec02 {
		padding: 50px 0;
	}

	.sec02-flex {
		width: 100%;
		flex-direction: column;
		align-items: center;
		margin-bottom: 20px;
		gap: 20px;
	}

	.sec02-flex li {
		margin-bottom: 30px;
	}

	.sec02-no {
		font-size: 3rem;
	}

	.sec02-img1 {
		width: 300px;
	}

	.sec02-text {
		width: 100%;
		padding: 0 20px;
	}

	.sec02-text li {
		font-size: 1.4rem;
		line-height: 1.4;
		padding-bottom: 5px;
	}

	.sec03 {
		margin-bottom: 70px;
	}

	.sec03-text {
		width: 100%;
		margin-bottom: 30px;
	}
	.sec03-text li {
		font-size: 1.4rem;
		line-height: 1.4;
		padding-bottom: 5px;
	}
	.sec03-text02 {
		padding-left: 0 !important; 
		text-indent: 0 !important;
	}
	.sec03-text span {
		font-size: 1.4rem;
	}

	/* アコーディオン全体 */
.kiyaku-box {
	width: 100%;
	margin: 0 auto 50px;
}
.kiyaku {
    width: 100%;
}

.kiyaku summary {
	font-size: 1.8rem;
	padding: 10px;
}

.kiyaku summary::after {
	position: absolute;
	right: 19px;
	top: 14px;
}

.kiyaku-detail {
    padding: .5em 1.3em 1.5em;
}

.kiyaku-txt01 {
	font-size: 1.4rem;
}

.kiyaku-txt02 {
	font-weight: 400;
}

	.btn {
		font-size: 2rem;
		padding: 15px 40px;
	}

	@media screen and (max-width: 320px) {
		.btn {
			font-size: 1.6rem;
			padding: 15px 20px;
		}
	}

	.sec03::before {
		width: 130px;
		top: 24px;
		left: -35px;
	}

	.sec03::after {
		width: 130px;
		bottom: -354px;
		right: -39px;
	}

	.sec04 {
		margin-left: 0;
		margin-right: 0;
	}

	.sec04-text {
		font-size: 1.4rem;
		line-height: 1.4;
		font-weight: 400;
	}

	.m-50 {
		margin-bottom: 30px;
	}

	.sec04-h2 {
		font-size: 2rem;
	}

	.sec04-bottle {
		width: 300px;
	}

	.sec04-server {
		width: 300px;
	}

	.sec04-link-text {
		font-size: 1.4rem;
		font-weight: 500;
	}

	.sec04-link {
		width: 300px;
		font-size: 1.6rem;
		padding-top: 18px;
		letter-spacing: -0.05em;
		margin-bottom: 50px;
	}

	@media screen and (max-width: 320px) {
		.sec04-bottle {
			width: 100%;
		}

		.sec04-server {
			width: 100%;
		}

		.sec04-link {
			font-size: 1.4rem;
			width: 100%;
		}
	}

	.contact {
		width: 100%;
		margin: 50px auto;
	}

	.contact-title {
		font-size: 2rem;
		padding: 10px 20px;
		margin-bottom: 30px;
	}

	.contact-text {
		font-size: 1.6rem;
		margin-bottom: 30px;
		line-height: 1.6;
	}
	.contact-flex {
		margin-left: 0px;
	}
	.contact-flex li {
		width: 100%;
		flex-direction: column;
		align-items: center;
	}

	.contact-flex-title {
		font-size: 1.4rem;
		width: 80px;
		height: 30px;
		margin-right: 0px;
		margin-bottom: 20px;
	}

	.contact-flex-text {
		font-size: 1.6rem;
	}

	.slider {
		margin: 0 auto 50px;
		width: 100%;
		flex-direction: row;
		direction: ltr;
	}

	.slider li {
		flex-basis: 60%;
	}

	.campany {
		font-size: 0.9rem;
	}

	.campany:last-child {
		margin-bottom: 20px;
	}

	/* entryボタン */
	.entry-btn {
		width: 130px;
		height: 130px;
		position: fixed;
		bottom: 10px;
		right: 5px;
	}

	.entry-btn-en {
		font-size: 1.2rem;
		margin-top: 25px;
		margin-bottom: 8px;
	}

	.entry-btn-text {
		font-size: 1.4rem;
		line-height: 1.2;
		letter-spacing: -0.05em;
	}
}