@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPGothic:wght@400;700&display=swap');



/*  ----------------------------------------------------------

base

----------------------------------------------------------  */
:root {
	--navy: #101c28;
	--green: #23b4db;
	--grey: #4c4948;
	--grd: linear-gradient(to right, #0bc9bc, #03b0a7);
}
body {
	color: var(--grey);
	font-family: "BIZ UDPGothic", sans-serif;
	font-size: 1.4rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
a {
	color: var(--grey);
}



/*  ----------------------------------------------------------

font-size

----------------------------------------------------------  */
html {
    font-size: 0.833vw;
}
@media screen and (max-width: 768px) {
    html {
        font-size: 1.303vw;
    }	
}
@media screen and (max-width: 540px) {
    html {
        font-size: 1.851vw;
    }	
}
@media screen and (max-width: 414px) {
    html {
        font-size: 2.415vw;
    }	
}



/*  ----------------------------------------------------------

header

----------------------------------------------------------  */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	height: 10rem;
	padding: 0 5rem;
}
header h1 {
	font-size: 2.4rem;
	line-height: 1;
	letter-spacing: 0.2em;
}
header h1 a {
	color: var(--green);
}
@media screen and (max-width: 768px) {
	header {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 6rem;
		padding: 0;
	}
	header h1 {
		font-size: 2rem;
	}	
}



/*  ----------------------------------------------------------

nav

----------------------------------------------------------  */
ul.gnav-menu {
	display: flex;
	align-items: center;
}
ul.gnav-menu > li {
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	line-height: 1.4;
}
ul.gnav-menu > li:not(:last-child) {
	margin-right: 4rem;
}
ul.gnav-menu > li > a {
	display: flex;
	flex-direction: column;
	align-items: center;
}
ul.gnav-menu > li > a span {
	color: var(--green);
	font-size: 1rem;
}
ul.gnav-menu > li:last-child {
	margin-bottom: 0.7rem;
}
a.contact {
	background: var(--green);
	color: #fff;
	display: flex;
	flex-direction: row !important;
	align-items: center;
	justify-content: flex-start;
	position: relative;	
	width: 18rem;
	padding-left: 2rem;
	padding-bottom: 0.15rem;
	height: 4rem;
	border-radius: 10rem;
}
a.contact span {
	font-size: 1rem;
	margin-left: 0.5rem;
	transition: all .3s;
	color: #fff !important;
}
a.contact i {
	position: absolute;
	top: 50%;
	right: 1.5rem;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);	
	font-size: 1rem;
	transition: all .3s;
}
footer a.contact {
	background: #fff;
	color: var(--navy);
}
footer a.contact span {
	color: var(--green) !important;
}
footer a.contact:hover {
	opacity: 1;
	background: var(--green);
	color: #fff;
}
footer a.contact:hover span {
	color: #fff !important;
}
footer a.contact:hover i {
	color: #fff;
}
a.insta {
	line-height: 1;
	font-size: 2.8rem;
	margin-top: 0.8rem;
}





/*  ----------------------------------------------------------

footer

----------------------------------------------------------  */
footer {
	background: url(../img/footer-wave.png) no-repeat center top;
	background-size: 100% auto;
	position: relative;
	padding: 14rem 0 0 0;
}
footer.top {
	background-color: #cbedf7;
}
footer .wrap {
	display: flex;
	justify-content: space-between;
	padding: 0 5rem;
	margin-bottom: 4rem;
}
footer .logo {
	font-size: 2.4rem;
}
footer .logo a {
	color: #fff;
}
footer ul {
	display: flex;
	align-items: center;
}
footer ul > li {
	font-weight: bold;
	white-space: nowrap;
	text-align: center;
	line-height: 1.4;
}
footer ul > li:not(:last-child) {
	margin-right: 4rem;
}
footer ul > li > a {
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
}
footer ul > li > a span {
	font-size: 1rem;
}
footer ul > li:last-child {
	margin-bottom: 0.7rem;
}
footer small {
	display: block;
	background: var(--green);
	color: #fff;
	font-size: 1.2rem;
	padding: 1rem 0 1.2rem 0;
	text-align: center;
}
@media screen and (max-width: 768px) {
	footer {
		background: url(../img/footer-wave.png) no-repeat center top;
		background-size: 100% auto;
		position: relative;
		padding: 10rem 0 6rem 0;
	}
	footer::before {
		content: "";
		width: 100%;
		height: calc(100% - 5rem);
		position: absolute;
		left: 0;
		top: 5rem;
		background: var(--green);
	}
	footer .wrap {
		flex-direction: column;
		align-items: center;
		padding: 0;
		margin-bottom: 6rem;
	}
	footer .logo {
		margin: 0 auto 4rem auto;
	}
	footer nav ul {
		flex-direction: column;
	}
	footer nav ul li {
		text-align: center;
	}
	footer nav ul li:not(:last-child) {
		margin-right: 0;
		margin-bottom: 3rem;
	}
	footer small {
		position: relative;
		z-index: 10;
	}
}



/*  ----------------------------------------------------------

page-ttl

----------------------------------------------------------  */
.page-ttl {
	background: url(../img/mv.jpg) no-repeat center bottom -14rem / cover;
	position: relative;
}
.page-ttl > div {
	background: rgba(0,0,0,0.4);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 18rem;
	position: relative;
	padding-top: 0.5rem;
}
.page-ttl h2 {
	font-size: 3.6rem;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	color: #fff;
}
.page-ttl h2 span {
	font-size: 1.8rem;
	font-weight: normal;
	color: #0bc9bc;
	margin-top: 1.2rem;
}
@media screen and (max-width: 768px) {
	.page-ttl {
		background: url(../img/mv.jpg) no-repeat center bottom / cover;
	}	
	.page-ttl > div {
		height: 16rem;
	}
	.page-ttl h2 span {
		margin-top: 0.8rem;
	}	
}



/*  ----------------------------------------------------------

style

----------------------------------------------------------  */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	font-size: 1.6rem;
	display: flex;
	align-items: flex-end;
}
.heading-1 span {
	display: block
}
.heading-1 .en {
	font-weight: normal;
	font-size: 5.6rem;
}
.heading-1 .jp {
	color: var(--green);
	margin-bottom: 0.7rem;
	margin-left: 1rem;
}
.heading-1.center {
	flex-direction: column;
	align-items: center;
}
.heading-1.center .jp {
	margin-bottom: 0;
	margin-top: 1rem;
}
.heading-2 {
	font-weight: 500;
	font-size: 1.8rem;
	letter-spacing: 0.15em;
	line-height: 1.6;
	margin-bottom: 3rem;
}
.heading-2 strong {
	font-size: 2.4rem;
	font-weight: bold;
}
.heading-2 i {
	color: var(--green);
}
@media screen and (max-width: 768px) {
	.heading-2 {
		font-weight: 500;
		font-size: 1.8rem;
		letter-spacing: 0.15em;
		line-height: 1.6;
		margin-bottom: 2rem;
	}
}

/* more */
.more {
	line-height: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	width: 20rem;
	background: var(--green);
	height: 4.0rem;
	border-radius: 10rem;
	position: relative;
	padding-bottom: 0.15rem;
}
.more.wide {
	width: 24rem;
}
.more i {
	position: absolute;
	top: 50%;
	right: 2rem;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);	
	transition: all .3s;
}

/* ttl */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.2);
	font-size: 2.2rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
}
.ttl:after {
	border-bottom: solid 4px var(--green);
	bottom: -4px;
	content: " ";
	display: block;
	position: absolute;
	width: 25%;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}

/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem;
	width: 25%;
	white-space: nowrap;
	font-weight: bold;
	color: var(--green);
}
dl.detail dd {
	padding: 1.5rem;
	width: 75%;
}
dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid rgba(0,0,0,0.2);
}
dl.wt dt,
dl.wt dd {
	border-bottom: 1px solid rgba(255,255,255,0.4);
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.2rem 1.2rem 0 1.2rem;
		width: 100%;
	}
	dl.detail dt::before {
		content: "◆";
		font-size: 1.2rem;
		margin-right: 0.5rem;
	}
	dl.detail dd {
		padding: 0 1.2rem 1.2rem 1.2rem;
		width: 100%;
	}
	dl.bk dt {
		border-bottom: none;
	}
	dl.wt dt {
		border-bottom: none;
	}
}



/*  ----------------------------------------------------------

hamburger

----------------------------------------------------------  */
.gnav-sp {
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	overflow-x: hidden;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
	transition: all .5s;
	z-index: -1;
	opacity: 0;
	background: #fff;	
}
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu li {
	font-size: 1.8rem;
	text-align: center;
	font-weight: bold;
	line-height: 1.4;
}
.gnav-sp-menu li span {
	display: block;
	color: var(--green);
	font-size: 1.2rem;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.2rem 0;
	white-space: nowrap;
}
.gnav-sp-menu a.contact {
	display: flex;
	justify-content: center;
	width: 28rem;
}
.gnav-sp-menu li:last-child {
	margin-top: 1.2rem;
}
.gnav-sp-menu a.contact span {
	color: var(--green);
	margin-top: 0.2rem;
	margin-left: 1rem;
}
/* toggle */
.toggle-btn {
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	cursor: pointer;
	z-index: 100000;
	background: var(--green);
}
.toggle-btn span {
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	background-color: #fff;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* open */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span {
	background-color: #fff;
}
.open .toggle-btn span:nth-child(1) {
	-webkit-transform: translateY(0.8rem) rotate(-45deg);
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	-webkit-transform: translateY(-0.8rem) rotate(45deg);
	transform: translateY(-0.8rem) rotate(45deg);
}



/*  ----------------------------------------------------------

layout

----------------------------------------------------------  */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
.container .wrap {
	display: flex;
	justify-content: space-between;
}
.container .wrap.reverse {
	flex-direction: row-reverse;
}
.container .wrap > figure {
	width: 35%;
}
.container .wrap > div {
	width: 60%;
}
.container .more {
	margin: 0 auto;
}
.service .more {
	margin: 0;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
	.container .wrap {
		display: block;
	}
	.container .wrap > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.container .wrap > div {
		width: 100%;
	}
	.service .more {
		margin: 0 auto;
	}	
}



/*  ----------------------------------------------------------

display

----------------------------------------------------------  */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}



/*  ----------------------------------------------------------

page-top

----------------------------------------------------------  */
#page-top {
    position: fixed;
	z-index: 999;
	bottom: 1rem;
	right: 1rem;	
}
#page-top a {
	background: var(--green);
	color: #fff;	
	width: 4rem;
	height: 4rem;
	display: flex;
	justify-content: center;
	align-items: center;
	border-radius: 50%;
	line-height: 1;
	font-size: 2rem;
	padding-left: 0.1rem;
	border: solid 0.2rem #fff;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 7rem;
	}
}



/*  ----------------------------------------------------------

link

----------------------------------------------------------  */
a {
    text-decoration: none;
    -webkit-transition: 0.3s ease-in-out;  
    -moz-transition: 0.3s ease-in-out;  
    -o-transition: 0.3s ease-in-out;  
    transition: 0.3s ease-in-out; 
}
a.line {
	text-decoration: underline;
}
a:hover.line {
	text-decoration: none;
}
a:hover {
    opacity: 0.5;
} 
@media screen and (min-width: 769px) {
    a[href^="tel:"] {
        pointer-events: none;
    }
}
@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        text-decoration: underline;
    }
}



/*  ----------------------------------------------------------

class

----------------------------------------------------------  */
/* txt */
.txt-vertical {
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		-ms-writing-mode: lr-tb;
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}

/* map */
.gmap iframe {
	width: 100%;
	height: 36rem;
}

/* margin */
.mb-10 { 
	margin-bottom: 1rem !important;
}
.mb-15 {
	margin-bottom: 1.5rem !important;
}
.mb-20 {
	margin-bottom: 2.0rem !important;
}
.mb-25 {
	margin-bottom: 2.5rem !important;
}
.mb-30 {
	margin-bottom: 3.0rem !important;
}
.mb-35 {
	margin-bottom: 3.5rem !important;
}
.mb-40 {
	margin-bottom: 4.0rem !important;
}
.mb-45 {
	margin-bottom: 4.5rem !important;
}
.mb-50 {
	margin-bottom: 5.0rem !important;
}
.mb-55 {
	margin-bottom: 5.5rem !important;
}
.mb-60 {
	margin-bottom: 6.0rem !important;
}
.mb-65 {
	margin-bottom: 6.5rem !important;
}
.mb-70 {
	margin-bottom: 7.0rem !important;
}
.mb-75 {
	margin-bottom: 7.5rem !important;
}
.mb-80 {
	margin-bottom: 8.0rem !important;
}
.mb-85 {
	margin-bottom: 8.5rem !important;
}
.mb-90 {
	margin-bottom: 9.0rem !important;
}
.mb-95 {
	margin-bottom: 9.5rem !important;
}
.mb-100	{
	margin-bottom: 10.0rem !important;
}



/*  ----------------------------------------------------------

fade

----------------------------------------------------------  */
@keyframes fadeUp {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}
.fadeUp {
    animation: fadeUp 0.5s ease;
    animation-fill-mode: both
}
.fade {
	opacity: 0;
	transform: translateY(2rem);
}



/*  ----------------------------------------------------------

fixed

----------------------------------------------------------  */
.fixed {
	position: fixed;
	z-index: 999;
	right: 0;
	top: 50%;
	transform: translate(0,-50%);
}
.fixed li:not(:last-child) {
	margin-bottom: 1rem;
}
.fixed li a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 5.6rem;
	padding: 2rem 0;
	background: var(--green);
	color: #fff;
	font-weight: bold;
	font-size: 1.7rem;
	line-height: 1.2;
}
.fixed li a img {
	width: 3rem;
	margin-bottom: 0.5rem;
}
.fixed li span {
	display: flex;
	flex-direction: column;
}
.fixed li span i {
	font-size: 1.2rem;
}
.fixed li:last-child a {
	font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
	.fixed {
		position: fixed;
		z-index: 999;
		right: 0;
		top: auto;
		bottom: 0;
		width: 100%;
		transform: none;
		display: flex;
	}
	.fixed li {
		width: 50%;
	}
	.fixed li:not(:last-child) {
		margin-bottom: 0;
	}
	.fixed li a {
		width: 100%;
		height: 6rem;
		padding: 0;
		text-decoration: none;
	}
	.fixed li span {
		align-items: center;
	}
	.fixed li span i {
		font-size: 1.2rem;
		margin-bottom: 0.2rem;
	}
	.fixed li a img {
		margin-bottom: 0;
		margin-right: 0.5rem;
	}	
}