@charset "utf-8";

* {
	-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
	box-shadow: none;
	outline: none;
}

html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, a, address, img, dl, dt, dd, ol, ul, li, label, table, tr, th, td, hr, input, textarea,
article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, picture {
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	font-size: 100%;
	vertical-align: baseline;
}

iframe, article, aside, details, figure, figcaption, header, footer, hgroup, menu, nav, section, picture {
	display: block;
}

body {
	line-height: 1;
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
}

a {
	color: inherit;
	text-decoration: none;
}

address {
	font-style: normal;
}

img {
	max-width: 100%;
	height: auto;
	vertical-align: middle;
}

ol, ul {
	list-style: none;
	list-style-type: none;
}

ol {
	counter-reset: number;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input, textarea, select, button {
	border: 0;
	border-radius: inherit;
	background: none;
	color: inherit;
	font-weight: inherit;
	font-size: inherit;
	font-family: inherit;
	line-height: inherit;
	letter-spacing: inherit;
}

textarea {
	overflow: auto;
}

input:not([type="checkbox"]):not([type="radio"]), textarea, button {
	-webkit-appearance: none;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+-*/
html {
	font-size: 62.5%;
}

body {
	overflow: hidden scroll;
	color: #000;
	font-size: 1.2em;
	font-family: "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "BIZ UDPGothic", "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
	font-family: "Yu Mincho", YuMincho, "Hiragino Mincho ProN", "Shippori Mincho B1", "BIZ UDPMincho", "MS PMincho", serif;
	line-height: 1.5;
}

.limelight {
	color: #4d4d4d;
	font-family: "Limelight", "Helvetica Neue", Arial, Roboto, sans-serif;
}

main {
	overflow-x: hidden;
	min-height: 800px;
}

section {
	padding: 30px 0;
}

.inner {
	max-width: 960px;
	margin: auto;
	padding: 0 30px;
}

h1 {
	margin-bottom: 20px;
	color: #4d4d4d;
	font-size: 2.9rem;
	font-family: "Limelight", "Helvetica Neue", Arial, Roboto, sans-serif;
	text-align: center;
}

h2 {
	margin-bottom: 20px;
	color: #4d4d4d;
	font-size: 2.9rem;
	font-family: "Limelight", "Helvetica Neue", Arial, Roboto, sans-serif;
	text-align: center;
}

a {
	transition: opacity 0.3s ease-in-out, background 0.3s ease-in-out, color 0.3s ease-in-out;
}

a:hover {
	opacity: 0.7;
}

iframe {
	width: 100%;
}

th {
	font-weight: inherit;
	text-align: left;
	vertical-align: top;
}

td {
	text-align: left;
	vertical-align: top;
}

h1 span:not([class]),
h2 span:not([class]),
h3 span:not([class]),
h4 span:not([class]),
p span:not([class]),
a span:not([class]),
li span:not([class]),
table span:not([class]),
small span:not([class]) {
	display: inline-block;
}

.inline-block {
	display: inline-block;
}

.link {
	display: inline-block;
	margin-top: 20px;
	color: #4d4d4d;
	font-size: 2rem;
	font-family: "Limelight", "Helvetica Neue", Arial, Roboto, sans-serif;
}

.link:hover {
	opacity: 1;
	color: #28c3d4;
}

.more {
	display: inline-block;
	margin: 20px 0 0 auto;
	color: #4d4d4d;
	font-family: "Limelight", "Helvetica Neue", Arial, Roboto, sans-serif;
    background: #2fb0c0;
    padding: 2rem 4rem;
    color: #fff;
}

.more:hover {
	opacity: 1;
	color: #28c3d4;
}

@media screen and (min-width: 768px) {
body {
	font-size: 1.9em;
}

section {
	padding: 50px 0;
}

h1 {
	margin-bottom: 30px;
	font-size: 5.8rem;
}

h2 {
	margin-bottom: 30px;
	font-size: 5.8rem;
}

a[href^="tel:"] {
	pointer-events: none;
}

.link {
	margin-top: 40px;
	font-size: 3rem;
}

.more {
	margin-top: 40px;
	font-size: 2.3rem;
}

.flex {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ローディング
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes circle {
0% {
	transform: rotate(0deg);

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

.loader {
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 10;
	width: 100%;
	height: 100%;
	background: #fff;
	justify-content: center;
	align-items: center;
}

.loader .circle {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	width: 50px;
	height: 50px;
	margin: auto;
	border-radius: 100%;
	border: 5px solid transparent;
	content: "";
}

.loader .circle:nth-child(1) {
	border-top-color: #2fb0c0;
	animation: circle 1s infinite;
}

.loader .circle:nth-child(2) {
	border-bottom-color: #abd6ca;
	animation: circle 1s infinite alternate;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ヘッダー
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header {
	position: relative;
	z-index: 3;
	height: 120px;
	color: #4d4d4d;
	font-family: "Limelight", "Helvetica Neue", Arial, Roboto, sans-serif;
}

header .inner {
	max-width: none;
}

header .logo a{
	display: inline-block;
}

header .logo img {
	width: 140px;
}
header .logo2 img {
	margin-left: 20px;
}

@media screen and (min-width: 768px) {
header {
	height: 180px;
	font-size: 1.7rem;
}

header .decoration {
	height: 110px;
	background: url("img/common/header-decoration.png") left top repeat-x rgba(255, 255, 255, 0.8);
	background-size: 300px 38px;
}

header .inner {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

header .logo {
	margin-right: 30px;
}

header .logo img {
	width: 276px;
	min-width: 240px;
}
}

@media screen and (max-width: 767.9px) {
header .inner {
	padding: 0;
}

header .logo {
	padding: 15px 0 25px;
	background: linear-gradient(0deg, rgba(47, 176, 192, 0) 10px, #2fb0c0 10px), url("img/common/s/header-decoration.png") left bottom repeat-x;
	background-size: 100%, 185px 10px;
	text-align: center;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
ナビゲーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
header .menu-ul {
	display: flex;
	justify-content: space-between;
}

header .menu-li a {
	display: block;
	padding: 4px 2px;
}

header .menu-li a:hover {
	opacity: 1;
	color: #28c3d4;
}

@media screen and (min-width: 768px) {
header .menu {
	width: 100%;
	max-width: 470px;
	margin: 0 70px 0 auto;
}

#overlay {
	display: none;
	position: fixed;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	background: rgba(47, 176, 192, 0.2);
}

#toggle {
	position: absolute;
	top: 105px;
	right: 30px;
	z-index: 3;
	width: 46px;
	height: 46px;
	border: 2px solid #fff;
	border-radius: 50%;
	background: #2fb0c0;
	cursor: pointer;
	flex: none;
}

header.change #toggle {
	position: fixed;
	top: 20px;
}

#toggle:hover {
	opacity: 0.7;
}

#toggle span {
	display: block;
	position: absolute;
	right: 0;
	left: 0;
	width: 22px;
	height: 3px;
	margin: auto;
	border-radius: 3px;
	background: #fff;
	transition: 0.3s ease-in-out;
}

#toggle span:nth-child(1) {
	top: 16px;
}

#toggle span:nth-child(2) {
	top: 24px;
}

header.open #toggle span:nth-child(1) {
	top: 20px;
	transform: rotate(-45deg);
	will-change: transform;
}

header.open #toggle span:nth-child(2) {
	top: 20px;
	transform: rotate(45deg);
	will-change: transform;
}

header nav {
	overflow-y: auto;
	position: fixed;
	top: 0;
	right: 0;
	z-index: 2;
	width: 300px;
	background: #fff;
	height: 100%;
	transform: translateX(100%);
}

header.open nav {
	transform: translateX(0);
}

header .drawer {
	padding: 50px 0;
	text-align: center;
}

header .drawer-li:nth-last-child(n+2) {
	margin-bottom: 15px;
}

header .drawer-li a {
	display: inline-block;
	padding: 4px;
}

header .drawer-li a:hover {
	opacity: 1;
	color: #28c3d4;
}
}

@media screen and (max-width: 767.9px) {
header .menu {
	padding: 15px 20px;
	background: rgba(255, 255, 255, 0.8);
}

header.change .menu {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
}

header .menu-ul {
	max-width: 330px;
	margin: auto;
}

#toggle {
	display: none;
}

header nav {
	display: none;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
フッター
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
footer {
	padding: 16px 0;
	background: #2fb0c0;
	color: #fff;
	text-align: center;
}

footer small {
	font-size: 0.9rem;
}

@media screen and (min-width: 768px) {
footer {
	padding: 54px 0;
}

footer small {
	font-size: 1.2rem;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
HOME
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes width {
0% {
	width: 0;
}

100% {
	width: 100%;
}
}

.home-header h1 {
	margin-bottom: 60px;
}

.home-header h1 img {
	width: 285px;
}

.home-header .swiper-container {
	padding: 25px 0;
	background: #2fb0c0;
}

.home-header .swiper-slide {
	overflow: hidden;
}

.home-header .slide-outer {
	overflow: hidden;
	width: 0;
}

.home-header .swiper-slide-prev .slide-outer,
.home-header .swiper-slide-active .slide-outer,
.home-header .swiper-slide-duplicate-active .slide-outer {
	animation: width 2s cubic-bezier(0.3, 0, 0.2, 1) forwards;
}

.home-header .slide {
	width: 100vw;
	min-height: 330px;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	will-change: transform;
}

.home-header .slide01 {
	background-image: url("img/home/s/header01.jpg");
}

.home-header .slide02 {
	background-image: url("img/home/s/header02.jpg");
}

.home-header .slide03 {
	background-image: url("img/home/s/header03.jpg");
}

.home-header .slide04 {
	background-image: url("img/home/s/header04.jpg");
}

.home-about {
	text-align: center;
}

.home-about .text {
	width: 211px;
	height: 147px;
	margin-bottom: 60px;
}

.home-about .image {
	display: flex;
	padding: 5% 2.5%;
	background: #2fb0c0;
	justify-content: space-between;
	align-items: center;
}

.home-about .image img {
	width: 32.3%;
}

.home-instagram .instagram-ul {
	display: flex;
	justify-content: space-between;
}

.home-instagram .instagram-li {
	width: 49%;
}

.home-instagram .instagram-link {
	display: block;
	overflow: hidden;
}

.home-instagram .instagram-link:hover {
	opacity: 1;
}

.home-instagram .image {
	height: 34vw;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	transition: 0.4s ease-in-out;
}

.home-instagram .instagram-link:hover .image {
	transform: scale(1.1);
}

.home-access {
	padding-bottom: 0;
}

.home-access .inner {
	max-width: 1100px;
}

.home-access .flex {
	margin-bottom: 60px;
}

.home-access table {
	line-height: 1.9;
}

.home-access th {
	width: 5.5em;
}

.home-access iframe {
	height: 63vw;
	min-height: 362px;
	max-height: 767px;
}

@media screen and (min-width: 768px) {
.home-header .flex {
	position: relative;
	flex-flow: row-reverse;
}

.home-header .inner {
	width: 28%;
	min-width: 340px;
	text-align: center;
}

.home-header h1 {
	margin-bottom: 50px;
}

.home-header h1 img {
	width: 73px;
	height: 251px;
}

.home-header .swiper-container {
	position: static;
	width: 72%;
	padding: 50px 0;
}

.home-header .slide {
	width: 72vw;
	min-height: 580px;
}

.home-header .slide01 {
	background-image: url("img/home/header01.jpg");
}

.home-header .slide02 {
	background-image: url("img/home/header02.jpg");
}

.home-header .slide03 {
	background-image: url("img/home/header03.jpg");
}

.home-header .slide04 {
	background-image: url("img/home/header04.jpg");
}

.home-header .swiper-pagination {
	right: 0;
	bottom: 0;
	left: auto;
	width: 28%;
	min-width: 340px;
}

.home-header .swiper-pagination-bullet {
	opacity: 1;
	width: 14px;
	height: 14px;
	margin: 0 10px !important;
	background: #2fb0c0;
}

.home-header .swiper-pagination-bullet-active {
	background: #fff07f;
}

.home-about .text {
	width: 271px;
	height: 189px;
}

.home-instagram .instagram-li {
	width: 33%;
}

.home-instagram .image {
	height: 228px;
}

.home-access .image {
	width: 44%;
	max-width: 407px;
	margin-right: 6%;
}

.home-access table {
	flex: 1;
}
}

@media screen and (max-width: 767.9px) {
.home-header .image {
	display: none;
}

.home-header .swiper-pagination {
	display: none;
}

.home-menu .image {
	/*width: calc(135% + 60px);
	max-width: none;
	margin: 0 calc(-15% - 30px) 0 calc(-20% - 30px);*/
width: 100%;
max-width: 100%;
text-align: center;
}

.home-menu .inner{ padding: 0; }

.home-instagram .instagram-li:last-child {
	display: none;
}

.home-access .image {
	width: calc(100% + 60px);
	max-width: none;
	margin: 0 -30px 50px;
}

.home-access table {
	margin: auto;
}
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
404 Not Found
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
.notfound-article section {
	text-align: center;
}

/*+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+
アニメーション
+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+--+*/
@keyframes fade {
0% {
	opacity: 0;
}

100% {
	opacity: 1;
}
}

@keyframes fade-up {
0% {
	opacity: 0;
	transform: translateY(30px);
}

100% {
	opacity: 1;
	transform: translateY(0);
}
}

@keyframes fade-right {
0% {
	opacity: 0;
	transform: translateX(40px);
}

100% {
	opacity: 1;
	transform: translate(0);
}
}

@keyframes fade-left {
0% {
	opacity: 0;
	transform: translateX(-40px);
}

100% {
	opacity: 1;
	transform: translate(0);
}
}

@keyframes fade-zoom-in {
0% {
	opacity: 0;
	transform: scale(0.8);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes fade-zoom-out {
0% {
	opacity: 0;
	transform: scale(1.1);
}

100% {
	opacity: 1;
	transform: scale(1);
}
}

@keyframes show {
0% {
	transform: translateX(0);
}

100% {
	transform: translateX(100%);
}
}

.load .animation {
	will-change: transform;
}

.load .animation.fade {
	animation: fade 0.6s ease-out 0.3s forwards;
}

.load .animation.fade-up {
	animation: fade-up 0.6s ease-out 0.3s forwards;
}

.load .animation.fade-right {
	animation: fade-right 0.6s ease-out 0.3s forwards;
}

.load .animation.fade-left {
	animation: fade-left 0.6s ease-out 0.3s forwards;
}

.load .animation.fade-zoom-in {
	animation: fade-zoom-in 1s ease-out 0.3s forwards;
}

.load .animation.fade-zoom-out {
	animation: fade-zoom-out 1s ease-out 0.3s forwards;
}

.show {
	overflow: hidden;
	position: relative;
}

.show::after {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	z-index: 1;
	background: #fff;
	content: "";
	transform: translateX(0);
}

.load .animation.show::after {
	animation: show 1.6s ease-out forwards;
}

.load .animation.delay05 {
	animation-delay: 0.5s;
}

.load .animation.delay07 {
	animation-delay: 0.7s;
}

.load .animation.delay09 {
	animation-delay: 0.9s;
}
