@charset "utf-8";

/***************************************************
	common.css
	共通レイアウトスタイル定義
***************************************************/

/* Base
------------------------------------------------------------ */
html {
	font-size: 62.5%;
}
body {
	line-height: 1.5;
	color: #212121;
	margin: 0;
	padding: 0;
	background: #ffffff;
	font-family:'ヒラギノ角ゴ Pro W3','Hiragino Kaku Gothic Pro','メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif;
	word-wrap: break-word;
}
@media only screen and (max-width: 767px) {
	body {
		min-width: inherit;
	}
}

img {
	vertical-align: top;
	max-width: 100%;
	height: auto;
	image-rendering: -webkit-optimize-contrast;
}

.innerBox {
	max-width: 1000px;
	margin: 0 auto;
	padding: 0 20px;
}
@media only screen and (max-width: 767px) {
	.innerBox {
		padding: 0 30px;
	}
}
@media only screen and (max-width: 320px) {
	.innerBox {
		padding: 0 15px;
	}
}


/* Link
------------------------------------------------------------ */
a { outline: none; }
a:link {
	color: #212121;
	text-decoration: none;
}
a:visited {
	color: #212121;
	text-decoration: none;
}
a:hover {
	color: #212121;
	text-decoration: none;
}

a img {
	transition: 0.3s;
}
a:hover img {
	opacity: 0.7;
	filter: alpha(opacity=70);
}
a em {
	font-style: normal;
	text-decoration: underline;
}

/* wrapper
-------------------------------------------------------------------*/
.wrapper {
}

/* header
-------------------------------------------------------------------*/
.header {
	margin: 0;
	padding: 0;
	position: sticky;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
	background-color: rgba(255,255,255,0.8);
}
body.open .header {
	background: #ffffff;
}
.header .headerRow01 {
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.header .logo {
	margin: 0 0 0 10px;
	width: 167px;
}
@media only screen and (min-width: 768px) {
	.header .logo {
		width: 335px;
	}
}


.header .btnMenu {
	display: block;
	overflow: hidden;
	z-index: 1;
	width: 60px;
	height: 60px;
	cursor: pointer;
	margin: 0;
	position: relative;
	background: #00a0e9;
}
.header .btnMenu:hover {
	opacity: 0.7;
}
.header .btnMenu .line,
.header .btnMenu::before,
.header .btnMenu::after {
	display: block;
	position: absolute;
	top: -1px;
	bottom: 0;
	left: 0;
	right: 0;
	width: 24px;
	height: 2px;
	margin: auto;
	background: #ffffff;
	transition: transform 0.2s;
}
.header .btnMenu::before {
	z-index: 2;
	transform: translate(0, -8px);
	content: "";
}
.header .btnMenu::after {
	z-index: 2;
	transform: translate(0, 8px);
	content: "";
}
body.open .header .btnMenu .line {
	opacity: 0;
}
body.open .header .btnMenu::before {
	transform: rotate(45deg);
}
body.open .header .btnMenu::after {
	transform: rotate(-45deg);
}
@media only screen and (min-width: 768px) {
	.header .btnMenu {
		width: 80px;
		height: 80px;
	}
}
.header .menuBox {
	display: block;
	visibility: hidden;
	opacity: 0;
	/*height: 0;*/
	margin: 0;
	padding: 15px;
	position: absolute;
	width: 100%;
	top: 60px;
	left: 0;
	background-color: #ffffff;
	box-sizing: border-box;
	transition: 0.2s;
	z-index: 10;
	overflow: auto;
	-webkit-overflow-scrolling:touch;
}
body.open .header .menuBox {
	visibility: visible;
	opacity: 1;
	/*height: calc(100vh - 60px);*/
}
@media only screen and (min-width: 768px) {
	.header .menuBox {
		top: 80px;
	}
}
.header .menuBox .naviBox {
}
body #overlay {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	z-index: 100;
	background: rgba(0, 0, 0, .3);
	visibility: hidden;
	opacity: 0;
	transition: 0.5s;
}
body.open #overlay {
	visibility: visible;
	opacity: 1;
}

.menuBoxNaviList01 {
	margin: 0;
	padding: 0;
	list-style-type: none;
	border-top: 1px solid #00a0e9;
}
.menuBoxNaviList01 > li {
	margin: 0;
	padding: 0;
	border-bottom: 1px solid #00a0e9;
}
.menuBoxNaviList01 > li a {
	display: block;
	font-size: 1.4rem;
	font-weight: bold;
	padding: 1em;
}
.menuBoxNaviList01 > li a:hover {
	text-decoration: underline;
}
@media only screen and (min-width: 768px) {
	.menuBoxNaviList01 > li a {
		font-size: 1.6rem;
	}
}


/* main
-------------------------------------------------------------------*/
.main {
	display: block;
	clear: both;
	font-size: 1.2rem;
	margin: 0 auto;
	padding: 0;
}
@media only screen and (min-width: 768px) {
	.main {
		font-size: 1.6rem;
	}
}
.commonContactBtnList01 {
	margin: 30px auto 0;
	padding: 0;
	list-style-type: none;
}
.commonContactBtnList01 > li {
	margin: 0;
}
.commonContactBtnList01 > li + li {
	margin-top: 15px;
}
.commonContactBtnList01 > li a {
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
	border-radius: 100px;
	min-height: 3.7em;
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}
.commonContactBtnList01 > li a:hover {
	opacity: 0.7;
}
.commonContactBtnList01 > li.contact a {
	color: #ffffff;
	background: #00a0e9;
}
.commonContactBtnList01 > li.tel a {
	background: #ffffff;
	border: 2px solid #00A0E9;
}
.commonContactBtnList01 > li.tel a img {
	width: 168px;
}
@media only screen and (min-width: 768px) {
	.commonContactBtnList01 > li.tel a img {
		width: 252px;
	}
}


/* footer
-------------------------------------------------------------------*/
.footer {
	margin: 0;
	padding: 30px 0;
	color: #ffffff;
	background: #9FA0A0;
}
.footer .box01 {
	max-inline-size: max-content;
	margin-inline: auto;
}
.footer .ttl01 {
	margin: 0;
	font-size: 1.8rem;
	font-weight: bold;
}
.iconInsta {
	width: 50px;
	margin: 15px auto;
}
.menuBox .iconInsta {
	margin-top: 30px;
}
.iconInsta a {
	display: block;
	padding: 10px;
	border-radius: 50%;
	background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
	position: relative;
	overflow: hidden;
}
.iconInsta a img {
	position: relative;
}
.iconInsta a::before {
	content: "";
	display: block;
	position: absolute;
	top: 40%;
	left: -20%;
	width: 100%;
	height: 100%;
	background: radial-gradient(#ffdb2c 10%, rgba(255, 105, 34, 0.65) 55%, rgba(255, 88, 96, 0) 70%);
}
.footer .address {
	font-size: 1.2rem;
	margin: 2em 0 0 0;
}
.footer .cr {
	font-size: 1rem;
	text-align: center;
	margin: 3em 0 0 0;
}
@media only screen and (min-width: 768px) {
	.footer .ttl01 {
		font-size: 2.4rem;
	}
	.footer .address {
		font-size: 1.6rem;
	}
	.footer .cr {
		font-size: 1.4rem;
	}
}



