@charset "UTF-8";
/* 共通 */
html {
	font-size: 100%;
}
body {
	position: relative;
	font-family: 'Zen Maru Gothic', sans-serif;
	font-weight: 500;
	line-height: 1.7;
	color: #333;
	font-size: 16px;
	background: #fff;
	-webkit-font-smoothing: antialiased; /*アンチエイリアスを滑らかに*/
	-moz-osx-font-smoothing: grayscale;
	letter-spacing: 0.1em;
	line-height: 1.9;
}
a {
	text-decoration: none;
	color: #ffd638; /*#4fb4ff*/
	transition: .4s;
}
a:hover {
	color: #4BAB93;
}
ul, ol {
	list-style: none;
	padding: 0;
}
main {
	display: block;
	position: relative;
	overflow: hidden;
}
main section {
	padding: 80px 0 100px;
	position: relative;
}
main section:last-child {
	padding-bottom: 180px;
}
main section:last-child::before {
	content: "";
	width: 100%;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: -2px;
	background: url(../img/illust.svg);
	background-size: 34%;
	background-repeat: repeat-x;
	background-position: bottom;
	pointer-events: none;
	z-index: 1;
}
@media (max-width: 1255px) {
	main section:last-child::before {
		background-size: 44%;
	}
}
@media (max-width: 850px) {
	main section:last-child::before {
		background-size: 64%;
	}
}
@media (max-width: 450px) {
	main section:last-child::before {
		background-size: 100%;
	}
}
@media (max-width: 1045px) {
	main section {
		padding: 90px 0;
	}
	main section:last-child {
		padding-bottom: 120px;
	}
}
@media (max-width: 550px) {
	main section:first-child {
		padding-top: 45px;
	}
	main section {
		padding: 50px 0 60px;
	}
	main section:last-child {
		padding-bottom: 80px;
	}
}
/* 画像 */
img {
	line-height: 1;
	vertical-align: top;
	max-width: 100%;
	transition: .4s;
}
/* テキスト */
p {
	margin-bottom: 10px;
}
.marker {
	text-decoration: underline;
	text-decoration-thickness: 0.4em;
	text-decoration-color: rgba(255, 239, 135, 0.75);
	text-underline-offset: -0.05em;
	text-decoration-skip-ink: none;
}
/*見出し01*/
.maintitle {
	margin-bottom: 35px;
	display: block;
	text-align: center;
	line-height: 1.3;
}
.maintitle .mf {
	text-align: center;
	color: #37aaff;
	font-size: clamp(2.1rem, 1.44rem + 2.3467vw, 3.2rem);
	margin-bottom: 13px;
	font-weight: 700;
	font-family: 'Zen Kaku Gothic New', sans-serif;
}
.maintitle .sf {
	font-weight: 500;
	font-size: clamp(1.05rem, 0.96rem + 0.32vw, 1.2rem);
}
@media (max-width: 750px) {
	.maintitle {
		margin-bottom: 35px;
	}
}
@media (max-width: 450px) {
	.maintitle {
		margin-bottom: 22px;
	}
}
/*見出し02*/
.mtitle {
	font-weight: 500;
	position: relative;
	margin-bottom: 20px;
	letter-spacing: 0.1em;
	font-size: clamp(1.3rem, 1.21rem + 0.32vw, 1.45rem);
	line-height: 1.5;
}
.mtitle span {
	font-size: 75%;
	color: #ffd638;
}
@media (max-width: 750px) {
	.mtitle {
		margin-bottom: 15px;
	}
}
@media (max-width: 450px) {
	.mtitle {
		margin-bottom: 7px;
	}
}
/*見出し03*/
.stitle {
	background: #ffd638;
	border-radius: 30px;
	padding: 7px 17px;
	position: relative;
	font-size: clamp(0.97rem, 0.832rem + 0.4907vw, 1.2rem);
	margin-bottom: 15px;
	color: #333;
}
.stitle::before {
	font-family: "Font Awesome 5 Free";
	content: "\f111";
	font-weight: bold;
	color: #fff;
	position: relative;
	margin-right: 7px;
}
@media (max-width: 750px) {
	.stitle {
		margin-bottom: 10px;
	}
}
@media (max-width: 450px) {
	.stitle {
		padding: 2px 15px;
	}
}
/*見出し04*/
.dtitle {
	position: relative;
	font-size: clamp(1.15rem, 0.97rem + 0.64vw, 1.45rem);
	border-bottom: 2px dashed #ffd638;
	margin-bottom: 15px;
	padding-bottom: 5px;
	padding-left: 2px;
	color: #333;
}
.dtitle:first-letter {
	color: #37aaff;
	font-size: 115%;
}
@media (max-width: 750px) {
	.dtitle {
		margin-bottom: 10px;
	}
}
/*ボタン*/
.mainbtn a {
	position: relative;
	vertical-align: middle;
	margin: 0 auto;
	padding: 10px;
	border: 2px solid transparent;
	transition: .4s;
	display: inline-block;
	width: 16.5rem;
	text-align: center;
	color: #FFF;
	background: #37aaff;
	z-index: 1;
	overflow: hidden;
	font-size: 1rem;
	font-weight: 700;
	border-radius: 50px;
}
.mainbtn a:hover {
	color: #37aaff;
	background: #fff;
	transition: .4s;
	border: 2px solid #37aaff;
}
.mainbtn a::after {
	position: absolute;
	top: 50%;
	right: 10px;
	font-family: "Font Awesome 5 Free";
	content: "\f105";
	font-weight: bold;
	line-height: 1;
	transform: translate(0, -50%);
	font-size: .7em;
	transition: .1s;
}
@media (max-width: 450px) {
	.mainbtn {
		margin: auto;
	}
	.mainbtn a {
		width: 220px;
		padding: 4px;
	}
}
@media (max-width: 320px) {
	.mainbtn a {
		width: 80%;
	}
}
/*flex要素*/
.flexbox {
	display: flex;
	justify-content: space-between;
}
.fwrap {
	flex-wrap: wrap;
}
@media (max-width: 750px) {
	.flexbox {
		display: block;
	}
	.flexbox img {
		width: 100%;
		margin-bottom: 7px;
	}
	.flexbox div {
		width: 100%;
	}
	.fwrap div {
		width: 100% !important;
	}
}
.reverse {
	flex-direction: row-reverse;
}
.aic {
	align-items: center;
}
/*幅*/
.inner {
	width: 92%;
	max-width: 1200px;
	margin: 0 auto;
}
.w80 {
	width: 80%;
}
.w69 {
	width: 69.5%;
}
.w65 {
	width: 65%;
}
.w48 {
	width: 48%;
}
.w46 {
	width: 46%;
}
.w34 {
	width: 34%;
}
.w32 {
	width: 32%;
}
.w28 {
	width: 28.5%;
}
.w26 {
	width: 26%;
}
.w24 {
	width: 24%;
}
/* 背景 */
.bg_blue::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #96e1ff; /*#BBE2F2*/
	z-index: -2;
}
.bg_yellow::after {
	position: absolute;
	display: block;
	content: "";
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	background-color: #ffdd57;
	z-index: -2;
}
/* imgアニメ */
.img_up {
	position: relative;
	overflow: hidden;
	height: fit-content !important;
}
.img_up::after {
	content: '';
	width: 100%;
	height: 101%;
	position: absolute;
	top: 0;
	left: 0;
	background: #f5f5f5;
	z-index: 1;
	transition: 1.3s;
	transition-delay: 0.2s;
}
.img_up.inview::after {
	transform: translateX(100%);
}
/*フェードイン*/
.flowup {
	opacity: 0;
	transform: translateY(25px);
	transition: opacity 1.2s, transform 1.2s;
}
.flowup.inview {
	opacity: 1;
	transform: translateY(0);
}
/*=== 共通部分ここまで ===*/
/* header */
.header_sticky {
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	background: #fff;
	box-shadow: 0px 4px 4px -5px rgba(0, 0, 0, 0.4);
}
.header {
	padding: 7px 5px 10px;
	transition: all .5s;
	width: 100%;
	z-index: 100;
	position: relative;
	font-weight: 500;
}
.header_inner {
	width: 95%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header_title a {
	display: flex;
	align-items: center;
}
.header_logo {
	width: 320px;
}
.header h1 {
	transition: .3s;
	z-index: 110;
}
.header_title:hover h1 {
	opacity: 0.6;
	transition: .3s;
}
.header ul {
	display: flex;
	text-align: center;
}
.header ul li {
	position: relative;
	line-height: 1.6;
	border-left: 1px solid #ddd;
}
.header ul li a {
	display: block;
	width: 100%;
	transition: all .3s;
	position: relative;
	top: 0;
	padding: 0 20px 3px;
	color: #333;
	font-size: 1.09rem;
	font-weight: 700;
}
.header ul li a:hover {
	opacity: 0.6;
}
.header ul li a span {
	display: block;
	font-size: 125%;
	color: #37aaff;
}
.hnav {
	margin-left: auto;
	width: fit-content;
}
.header_item {
	display: flex;
	align-items: flex-end;
	justify-content: flex-end;
	margin-bottom: 12px;
}
.header_item > div {
	margin: 0 8.5px;
}
.header_item .mainbtn a {
	width: 11rem;
	line-height: 1.55;
	padding: 5px;
	font-size: 0.9rem;
}
.tel a {
	color: #37aaff;
	font-weight: 700;
}
.tel {
	font-size: 1.75rem;
	line-height: 1.3;
	transition: .3s;
}
.tel:hover {
	opacity: 0.6;
	transition: .3s;
}
.tel i {
	font-size: 80%;
}
.header_item .mainbtn a:after {
	content: none;
}
.hamburger_menu {
	display: none;
}
.hum_tel {
	text-align: center;
	margin-bottom: 15px;
}
.hum_tel:last-child {
	margin-bottom: 0;
}
.hum_tel a {
	pointer-events: none;
	color: #ffd638;
}
.htm {
	font-size: 87%;
	pointer-events: none;
}
.hts {
	font-size: 1.35rem;
	pointer-events: auto;
	transition: .3s;
	padding-bottom: 3px;
	border-bottom: 1px solid #ffd638;
}
.hts:hover {
	opacity: 0.6;
	transition: .3s;
}
@media (max-width: 450px) {
	.hts {
		font-size: 1.15rem !important;
	}
}
.iconbtn {
	display: block;
	position: relative;
	width: 35px;
	height: 35px;
	text-align: center;
	margin-left: 2px;
}
.iconbtn i {
	position: absolute;
	top: 50%;
	left: 52%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	font-size: 2.25rem;
	color: #37aaff;
}
.iconbtn:hover {
	opacity: 0.6;
}
.menu_btn {
	position: fixed;
	top: 19px;
	right: 16px;
	cursor: pointer;
	display: flex;
	height: 23px;
	width: 23px;
	justify-content: center;
	align-items: center;
	z-index: 110;
}
.menu_btn span, .menu_btn span:before, .menu_btn span:after {
	content: '';
	display: block;
	height: 2px;
	width: 30px;
	background: #37aaff;
	position: absolute;
	transition: all 0.4s;
}
.menu_btn span:before {
	bottom: 7px;
}
.menu_btn span:after {
	top: 7px;
}
#menu_btn_check:checked ~ .menu_btn span {
	background-color: rgba(255, 255, 255, 0) !important;
	transition: all 0.4s;
}
#menu_btn_check:checked ~ .menu_btn span::before {
	bottom: 0;
	transform: rotate(45deg) !important;
	transition: all 0.4s;
	background: #333;
}
#menu_btn_check:checked ~ .menu_btn span::after {
	top: 0;
	transform: rotate(-45deg) !important;
	transition: all 0.4s;
	background: #333;
}
#menu_btn_check {
	display: none;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 80;
	background-size: cover;
	background-position: center;
	overflow: auto;
}
.menu_content .menu_padding {
	position: absolute;
	top: 52%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	width: 90%;
}
.menu_content nav {
	padding: 0 30px 15px;
}
.menu_content ul {
	text-align: center;
}
.menu_content ul li {
	padding: 3px 0;
	margin: 3px 0;
	list-style: none;
}
.menu_content ul li a {
	display: block;
	width: 100%;
	font-size: 1.1rem;
	box-sizing: border-box;
	text-decoration: none;
	padding: 9px 0;
	color: #333;
	position: relative;
}
.menu_content ul li a:hover {
	opacity: 0.6;
}
.menu_content {
	width: 100%;
	height: 100%;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 100;
	background: #fff;
	transition: all 0.6s;
	pointer-events: none;
	opacity: 0;
}
.menu_content .mainbtn a {
	padding: 7px !important;
}
.menu_content .mainbtn {
	text-align: center;
	margin-bottom: 7px;
}
.menu_content .mainbtn:last-child {
	margin-bottom: 0;
}
.menu_content .mainbtn a:after {
	content: none;
}
.menu_content .mainbtn a {
	padding: 10px;
}
#menu_btn_check:checked ~ .menu_content {
	opacity: 1;
	pointer-events: auto;
}
@media (max-width: 1125px) {
	.header {
		background: transparent;
		padding: 10px 20px;
	}
	.header_logo {
		width: 225px;
	}
	.menu_btn_mgt, .hamburger_menu, .header_inner label {
		display: block;
	}
	.header_nav {
		display: none;
	}
	.header .inner {
		display: none;
	}
	.header_inner {
		margin: 0;
	}
	.menu_btn {
		top: 17px;
		right: 30px;
	}
}
@media (max-width: 500px) {
	.header_title {
		width: 165px;
	}
	.header {
		padding: 10px;
	}
	.menu_btn {
		top: 12px;
		right: 21px;
	}
	.menu_content .mainbtn a {
		width: 65%;
		padding: 7px;
		font-size: 0.97rem;
	}
	.menu_content ul li a {
		font-size: 0.97rem;
	}
	.menu_content .mainbtn a {
		padding: 5px !important;
	}
}
@media (max-width: 315px) {
	.header_title {
		width: 44vw;
	}
	.menu_btn {
		top: 8px;
		right: 15px;
	}
}
/* footer */
.fax {
	pointer-events: none;
}
.footer_contact {
	position: relative;
	z-index: 1;
	padding: 40px 0 70px;
	text-align: center;
	color: #333;
}
.footer_contact .flexbox {
	justify-content: center;
}
.footer_contact .maintitle {
	margin-bottom: 45px;
}
.footer_contact .btn_wrap .btn a {
	display: block;
	width: 100%;
	border: 2px solid transparent;
	color: #fff;
	background: #37aaff;
	padding: 17px 5px;
	font-size: 1.2rem;
	font-weight: 700;
}
.lbtn a {
	background: #fff !important;
	border: 2px solid #37aaff !important;
	color: #37aaff !important;
	border-radius: 10px 0 0 10px;
}
.lbtn a:hover {
	background-color: #ffd638 !important;
}
.rbtn a {
	border-radius: 0 10px 10px 0;
	border-left: none !important;
}
.rbtn a:hover {
	border: 2px solid #37aaff !important;
	border-left: none !important;
	color: #37aaff !important;
	background-color: #ffd638 !important;
}
.footer_contact .btn_wrap .btn {
	width: 385px;
}
@media (max-width: 960px) {
	.footer_contact .btn_wrap .btn {
		width: 320px;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 1.1rem;
	}
}
.cwrap {
	margin-top: 45px;
}
.ctext {
	font-size: 1.05rem;
	margin-right: -5px;
	font-weight: 500;
	margin-bottom: 45px;
}
.ctitle {
	font-size: 1.15rem;
	position: relative;
	margin-bottom: 15px;
	margin-left: 3px;
}
.fcon {
	text-align: center;
}
.onebtn {
	width: 355px;
	margin: auto;
}
.onebtn a {
	width: 100% !important;
	padding: 15px 0 !important;
	border-radius: 50px;
}
@media (max-width: 750px) {
	.lbtn a, .rbtn a {
		padding: 12px 0 !important;
		border-radius: 50px;
	}
	.rbtn a {
		border-left: 2px solid #37aaff !important;
	}
	.rbtn a:hover {
		border: 2px solid #37aaff !important;
		color: #37aaff !important;
		background-color: #ffd638 !important;
	}
	.footer_contact .maintitle {
		margin-bottom: 30px;
	}
	.footer_contact {
		padding: 35px 0 50px;
	}
	.cwrap {
		margin-top: 55px;
	}
	.fcon {
		margin-bottom: 15px;
	}
	.fcon:last-child {
		margin-bottom: 25px;
	}
	.footer_contact .btn_wrap {
		display: block;
	}
	.footer_contact .btn_wrap .btn {
		width: 65%;
		margin: auto;
		margin-bottom: 15px;
	}
	.footer_contact .btn_wrap .btn a {
		font-size: 1rem;
	}
	.ctext {
		font-size: 1rem;
	}
}
@media (max-width: 575px) {
	.ctext {
		margin-bottom: 25px;
	}
	.footer_contact {
		padding: 45px 0;
	}
	/*
	.cts {
		display: inline-block;
		text-align: center;
		width: 100%;
	}
	*/
}
@media (max-width: 450px) {
	.footer_contact {
		padding: 25px 0 50px;
	}
	.fcon {
		margin-bottom: 10px;
	}
	.footer_contact .btn_wrap .btn {
		width: 83%;
		margin-bottom: 10px;
	}
	.ctext {
		font-size: 0.9rem;
	}
	.ctitle {
		font-size: 1rem;
		margin-bottom: 10px;
	}
	.onebtn {
		width: 88% !important;
	}
	.onebtn a {
		padding: 10px 0 !important;
	}
}
@media (max-width: 325px) {
	.footer_contact .btn_wrap .btn a {
		font-size: 1rem;
	}
}
/* アドレス */
.footer_address {
	max-width: 930px;
	margin: auto;
	margin-top: 60px;
	background-color: #fff;
	border-radius: 15px;
	box-shadow: rgb(0 0 0 / 7%) 0px 2px 8px 0px;
	padding: 25px 10px 30px;
}
.flogo {
	width: 340px;
	margin-bottom: 16px;
}
.flogo:hover {
	opacity: 0.6;
	transition: .3s;
}
.taddress br {
	display: none;
}
.taddress {
	font-size: 1rem;
	margin-bottom: 0;
}
@media (max-width: 750px) {
	.footer_address {
		margin-top: 35px;
	}
}
@media (max-width: 560px) {
	.flogo {
		max-width: 270px;
		margin-bottom: 5px;
	}
}
@media (max-width: 450px) {
	.flogo {
		max-width: 85%;
		min-width: 120px;
	}
	.taddress {
		margin-bottom: 7px;
	}
	.taddress:last-child {
		margin-bottom: 0;
	}
	.taddress span {
		font-size: 95%;
	}
	.taddress br {
		display: block;
	}
}
/* copyright */
.copyright {
	text-align: center;
	padding: 7px 0 10px;
	background: #37aaff;
	color: #fff;
	font-weight: 500;
}
@media (max-width: 500px) {
	.copyright {
		padding: 5px 0 7px;
	}
}
/*ページ上に戻るボタン*/
.go_top {
	display: block;
	width: 65px;
	height: 65px;
	box-sizing: border-box;
	border: 2px solid #fff;
	background: #37aaff;
	padding-top: 30px;
	text-align: center;
	letter-spacing: -1px;
	font-size: 85%;
	text-decoration: none;
	position: fixed;
	bottom: 10px;
	right: 10px;
	border-radius: 50px;
	transition: 0.3s;
	z-index: 79;
}
.go_top::before {
	content: "";
	display: block;
	border-top: 3.5px solid #fff;
	border-right: 3.5px solid #fff;
	width: 37%;
	height: 37%;
	top: 22px;
	left: 0;
	right: 0;
	margin: auto;
	position: absolute;
	transform: rotate(-45deg);
}
.go_top:hover {
	background: #ffe047;
	border: 2px solid #37aaff;
}
.go_top:hover::before {
	border-top: 3.5px solid #37aaff;
	border-right: 3.5px solid #37aaff;
}
@media(max-width:450px) {
	.go_top {
		width: 55px;
		height: 55px;
		text-indent: -9999px;
		bottom: 10px;
		right: 10px;
		opacity: 1;
	}
	.go_top::before {
		bottom: 18px;
	}
}
/* スライド */
.topslide {
	overflow: hidden;
	position: relative;
	clip-path: ellipse(100% 100% at top);
}
.slwrap {
	background-color: #96e1ff;
}
/* 波 */
.scanvas {
	position: absolute;
	bottom: -80px;
	left: 0;
	width: 100%;
}
.slide_items {
	width: 100%;
	overflow: hidden;
}
.slide_items img {
	width: 100%;
	height: calc(100vh - 200px);
	min-height: 700px;
	object-fit: cover;
	z-index: -2;
}
.slide_text {
	white-space: nowrap;
	position: absolute;
	font-size: 4.1rem;
	letter-spacing: 0.2em;
	color: #37aaff;
	font-weight: 700;
	z-index: 2;
	line-height: 1.6;
	text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff, -2px 2px 0 #fff, 2px -2px 0 #fff, 0px 2px 0 #fff, 0 -2px 0 #fff, -2px 0 0 #fff, 2px 0 0 #fff;
	top: 48%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}
.slide_text p {
	/*animation: fadeIn 1s ease 0.3s 1 normal backwards;*/
	margin-bottom: 0;
}
.slbr {
	display: none;
}
/*
@keyframes fadeIn {
	from {
		opacity: 0;
		transform: translateY(15px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
*/
@media (max-width: 1625px) {
	.slide_text {
		font-size: 3.45rem;
	}
	.slide_items img {
		min-height: auto;
		height: 620px;
	}
}
@media (max-width: 1355px) {
	.slide_text {
		font-size: 3.25rem;
	}
}
@media (max-width: 1305px) {
	.slide_text {
		top: 48.5%;
		font-size: 2.95rem;
	}
}
@media (max-width: 1155px) {
	.slide_text {
		font-size: 4vw;
		text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
	}
}
@media (max-width: 1130px) {
	.short {
		font-size: 5vw;
	}
}
@media (max-width: 845px) {
	.short {
		font-size: 5.2vw;
	}
}
@media (max-width: 750px) {
	.slide_items img {
		height: 350px;
	}
}
@media (max-width: 500px) {
	.slbr {
		display: block;
	}
	.slide_items img {
		height: 270px;
	}
	.slide_text {
		top: 47%;
		font-size: 5.4vw;
	}
	.short {
		font-size: 5.8vw;
	}
	.scanvas {
		position: absolute;
		bottom: -110px;
		left: 0;
		width: 100%;
	}
}
.pdb0 {
	padding-bottom: 0;
}
.center {
	text-align: center;
}
.tbtn {
	margin-top: 35px;
}
@media (max-width: 450px) {
	.tbtn {
		margin-top: 20px;
	}
}
/* 丸画像 */
.mimg img {
	position: relative;
	display: block;
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 3px;
}
/* 角丸画像 */
.cimg img {
	border-radius: 15px;
}
/* 白いボックス */
.wbox {
	background-color: #fff;
	padding: 40px 40px 55px;
	border-radius: 15px;
	box-shadow: rgb(0 0 0 / 7%) 0px 2px 8px 0px;
}
/* お知らせ */
/*テーブル*/
.info_table {
	width: 100%;
	table-layout: fixed;
	border-collapse: collapse;
	font-weight: normal;
}
.info_table tr {
	border-bottom: 2px solid #ffd638;
}
.info_table th {
	width: 25%;
	border-bottom: 2px solid #37aaff;
}
.info_table th, .info_table td {
	font-weight: 500;
	padding: 15px 0;
}
.info_table td {
	padding-left: 15px;
}
.info_table td {
	width: 75%;
}
.info_table th br {
	display: none;
}
@media (max-width: 450px) {
	.info_table th br {
		display: block;
	}
	.info_table td {
		width: 70%;
		padding-left: 5px;
	}
	.info_table th {
		width: 30%;
	}
}
.news {
	padding-top: 100px;
}
.news .wbox {
	padding: 30px 60px 60px;
}
.newstext {
	max-width: fit-content;
	margin: auto;
	margin-bottom: 40px;
}
.ndetail, .nnote {
	margin: auto;
	max-width: 1000px;
}
.ndetail .stitle {
	margin-bottom: 10px;
}
.ndetail {
	margin-bottom: 17px;
}
.newmap img {
	max-width: 100%;
}
/* バナー */
.banner_add {
	max-width: 950px;
	background: #fff;
	padding: 20px;
	margin: auto;
	margin-top: 60px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-shadow: rgb(0 0 0 / 3%) 0px 2px 8px 0px;
}
.ad01 {
	width: 40%;
}
.ad02 {
	width: 57%;
}
@media (max-width: 750px) {
	.banner_add {
		padding: 10px 15px;
		margin-top: 35px;
	}
}
@media (max-width: 450px) {
	.banner_add {
		display: block;
		padding: 5px 15px 17px;
	}
	.ad01, .ad02 {
		width: 100%;
	}
	.ad01 {
		margin-bottom: 5px;
	}
}
.banner {
	margin: auto;
	margin-top: 60px;
	max-width: 750px;
}
@media (max-width: 1150px) {
	.news .flexbox {
		display: block;
	}
	.news .flexbox div, .news .flexbox img {
		width: 100%;
	}
	.newmap {
		margin: auto;
		margin-top: 35px;
		max-width: 300px !important;
		height: 100%;
	}
	.ndetail {
		margin-bottom: 25px;
	}
}
@media (max-width: 1000px) {
	.news {
		padding-top: 80px;
	}
}
@media (max-width: 600px) {
	.news .wbox {
		padding: 30px 30px 50px;
	}
	.banner {
		margin-top: 30px;
	}
}
@media (max-width: 450px) {
	.news .wbox {
		padding: 30px 17px 50px;
	}
	.newstext {
		margin-bottom: 23px;
	}
	.ndetail .stitle {
		margin-bottom: 0;
	}
	.ndetail {
		margin-bottom: 13px;
	}
}
/* 実績と信頼のある高品質なクリーニングであなたに綺麗をお届けします。 */
.welcome .maintitle .mf {
	margin-bottom: 17px;
}
.welcome {
	position: relative;
	z-index: 1;
	background: url(../img/welcome.jpg);
	background-position: 50% 40%;
}
@media (max-width: 450px) {
	.welcome {
		background-position: center;
	}
}
.welcome::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	opacity: 0.83;
	z-index: -1;
}
.welcome .inner {
	max-width: 1003px;
}
.welcome p {
	line-height: 2.2;
	margin-bottom: 15px;
}
.welcome p:last-child {
	margin-bottom: 0 !important;
}
@media (max-width: 750px) {
	.welcome p {
		line-height: 1.9;
		margin-bottom: 10px;
	}
}
/* 魅力 */
.swhite::before {
	content: "";
	width: 103%;
	height: 85%;
	position: absolute;
	display: block;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	background: #fff;
	z-index: -1;
}
@media (max-width:750px) {
	.swhite::before {
		height: 93%;
	}
}
.feature .inner {
	max-width: 1350px;
}
@media (max-width: 450px) {
	.feature .maintitle {
		margin-bottom: 13px;
	}
}
/* CONTENTS */
.contents .inner {
	max-width: 1350px;
}
.contents {
	position: relative;
	z-index: 1;
	background: url(../img/contents.jpg);
}
.contents::after {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	opacity: 0.65;
	z-index: -1;
}
.contents .wbox {
	box-shadow: none;
	background: rgba(255, 255, 255, 0.8);
}
.contents .flexbox {
	margin: auto;
	max-width: 1030px;
	margin-bottom: 60px;
}
.contents .flexbox:last-child {
	margin-bottom: 0 !important;
}
.contents .wbox .tbtn {
	margin-top: 23px;
	text-align: center;
}
@media (max-width: 750px) {
	.contents .wbox .mimg {
		margin: auto;
		max-width: 85%;
	}
}
@media (max-width: 450px) {
	.contents .wbox {
		background: rgba(255, 255, 255, 0.9);
		padding: 30px 17px 50px;
	}
}
/* news */
@media (max-width: 550px) {
	.addnews {
		padding-top: 30px;
	}
}
/* 下層ページトップ ==============================================================*/
.fyellow {
	background-color: #ffdd57;
}
.fblue {
	background-color: #96e1ff;
}
.fv {
	height: 370px;
	width: 100%;
	display: flex;
	align-items: center;
	background: url(../img/welcome.jpg);
	background-size: cover;
	background-repeat: no-repeat;
	background-position: 50% 40%;
	position: relative;
	clip-path: ellipse(100% 100% at top);
}
.fv::before {
	content: '';
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	opacity: 0.75;
}
.fv .inner {
	max-width: 80%;
}
.fv h2 {
	font-weight: 700;
	text-align: center;
	line-height: 1.3;
	z-index: 1;
	position: relative;
	margin-bottom: 0 !important;
	/*text-shadow: 0px 0.3px 1px rgb(255 255 255 / 95%), 0px -0.3px 2px rgb(255 255 255 / 98%);*/
}
@media(max-width:1260px) {
	.fv {
		height: 270px;
	}
	.fv .inner {
		max-width: 90%;
	}
}
@media(max-width:750px) {
	.fv {
		height: 200px;
	}
}
@media(max-width:450px) {
	.fv {
		height: 160px;
	}
	.fv h2 {
		font-size: 1.2rem;
		line-height: 1.35;
	}
	.fv h2 .en {
		font-size: 0.9rem;
	}
	.fv::before {
		opacity: 0.8;
	}
}
.wm.maintitle .mf, .wm.maintitle .sf {
	text-shadow: 1px 1px 0 #fff, -1px -1px 0 #fff, -1px 1px 0 #fff, 1px -1px 0 #fff, 0px 1px 0 #fff, 0 -1px 0 #fff, -1px 0 0 #fff, 1px 0 0 #fff;
}
/* 店舗概要ページ ==============================================================*/
/* 店舗概要 */
.about .fflex div {
	width: 49%;
}
.about .wbox {
	padding: 25px 80px 70px;
}
@media(max-width:850px) {
	.about .wbox {
		padding: 25px 60px 70px;
	}
}
/* map */
@media (max-width: 550px) {
	.about .wbox {
		padding: 20px 17px 55px;
	}
	.map iframe {
		height: 280px;
	}
}
/* こだわりページ ==============================================================*/
@media(max-width:750px) {
	.boximg {
		max-width: 500px;
		margin: 0 auto 10px;
	}
}
.commitment .inner {
	max-width: 1050px !important;
}
/* ドライ機 */
.comtext {
	margin-bottom: 25px;
}
.drytext {
	margin-bottom: 60px;
}
.dry {
	margin-bottom: 40px;
}
.dry {
	font-size: clamp(0.97rem, 0.862rem + 0.384vw, 1.15rem);
}
.dry .info_table {
	max-width: 400px;
	margin: auto;
}
@media (max-width: 750px) {
	.dry .flexbox img {
		margin-bottom: 0;
	}
	.dry .flexbox .center {
		margin-bottom: 0;
	}
	.drytext {
		margin-top: 15px;
		margin-bottom: 30px;
	}
	.comtext {
		margin-bottom: 0;
	}
	.normalshop {
		margin-bottom: 30px;
	}
	.normalshop p {
		margin-bottom: 10px;
	}
}
/* 水洗いとドライの違い */
.diftext {
	margin-top: 23px;
}
.difimg {
	max-width: 200px;
	margin: auto;
	margin-bottom: 33px;
}
@media (max-width: 550px) {
	.difimg {
		margin-bottom: 20px;
	}
}
/* 特殊な洗い物も対応 */
.special {
	max-width: 1050px;
	margin: auto;
	padding: 30px 60px 10px;
}
.sptext {
	margin-bottom: 35px;
}
.special .dflex {
	justify-content: center;
}
.special .dflex .leather {
	text-align: center;
	margin-left: -25px;
	line-height: 1.65;
}
.special .dflex .leather span {
	white-space: nowrap;
	font-size: 90%;
}
.special .dflex .leather br {
	display: block;
}
.special .dflex div {
	width: 24%;
}
@media (max-width: 1175px) {
	.special .dflex .leather {
		margin-left: 0;
	}
	.special .dflex .leather span {
		white-space: normal;
	}
}
@media (max-width: 875px) {
	.special .dflex div {
		width: 32%;
	}
	.special {
		padding: 30px 30px 10px;
	}
}
@media (max-width: 630px) {
	.special .dflex div {
		width: 47%;
		margin: 0 1.5% 13px;
	}
	.special {
		padding: 20px 20px 5px;
	}
	.sptext {
		margin-bottom: 25px;
	}
}
@media (max-width: 450px) {
	.special .dflex div {
		position: relative;
	}
	.special .dflex .leather {
		position: relative;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
	}
	.special .dflex .leather span {
		white-space: nowrap;
	}
}
@media (max-width: 335px) {
	.special .dflex .leather span {
		white-space: normal;
	}
}
/* 衣類の大敵「４大リスク」と衣類を守る「２ステップ」 */
.fb {
	font-size: 110%;
	font-weight: 700;
}
.pb {
	color: #37aaff;
	font-size: 110%;
	font-weight: 700;
}
.stitle .fb {
	font-size: 115%;
	margin: 0 3px;
	letter-spacing: 0.15em;
}
.fred {
	color: #db411c;
}
.pbbr {
	display: none;
}
.pbtext {
	font-size: clamp(0.97rem, 0.862rem + 0.384vw, 1.15rem);
	width: fit-content;
	margin: auto;
	margin-bottom: 35px;
}
.step {
	font-size: clamp(1.1rem, 0.86rem + 0.8533vw, 1.5rem);
	position: relative;
}
.step:after {
	font-family: "Font Awesome 5 Free";
	content: "\f0ab";
	font-weight: bold;
	font-size: 1.3rem;
	color: #37aaff;
	line-height: 1;
	position: absolute;
	top: -25px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.steps p {
	max-width: 97%;
	margin: auto;
}
/* 衣類の大敵「４大リスク」と衣類を守る「２ステップ」イラスト */
.co03 {
	margin-top: 19px !important;
}
.pinner {
	width: 98%;
	max-width: 1500px;
}
.pinner .flexbox {
	justify-content: center;
}
.pinner .flexbox div {
	margin: 10px 10px 30px;
}
@media (max-width:1000px) {
	.fsteps {
		display: block;
	}
	.fsteps div {
		width: 100%;
	}
	.fsteps img {
		width: 100%;
	}
	.steps:first-child {
		margin-bottom: 30px;
	}
}
@media (max-width: 750px) {
	.pinner .flexbox div {
		margin: 0 0 20px;
	}
	.pinner {
		width: 95%;
		max-width: 1500px;
	}
	.steps:first-child {
		margin-bottom: 25px;
	}
	.steps p .pb, .steps p .fb {
		font-size: 100%;
	}
	.co03 {
		margin-top: auto !important;
	}
}
@media(max-width:580px) {
	.step:after {
		font-size: 1.2rem;
		top: -25px;
	}
	.step {
		margin-bottom: 25px;
	}
	.pbbr {
		display: block;
	}
	.fipbt span {
		font-size: 100%;
	}
	.fipbt {
		margin-bottom: 25px;
	}
	.protection .stitle {
		margin-bottom: 5px;
		font-size: 0.97rem;
	}
	.stitle .fb {
		font-size: 100%;
		margin: 0;
		letter-spacing: 0.1em;
	}
	.protection .stitle::before {
		font-size: .55em;
		top: -0.3em;
		margin-right: 4px;
	}
	_:lang(x)::-internal-media-controls-overlay-cast-button, .protection .stitle::before {
		top: -0.4em;
	}
	.pinner {
		width: 98%;
	}
}
@media(max-width:365px) {
	.protection .stitle {
		font-size: 0.9rem;
		letter-spacing: 0.08em;
	}
}
/* サービス内容ページ ==============================================================*/
.service .inner {
	max-width: 1100px;
}
.service .swhite::before {
	height: 100%;
	top: 51%;
}
.service .flexbox {
	margin-bottom: 50px;
}
.bringing .flexbox {
	margin-bottom: 40px;
}
.service .maintitle {
	margin-bottom: 43px;
}
.bringing .maintitle {
	margin-bottom: 45px;
}
/* 外交サービス */
.dipl div {
	margin-bottom: 30px;
}
.diplomacy .stitle {
	margin-bottom: 35px;
}
/* こんな方におすすめ */
.dflex {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 990px;
	margin: auto;
}
.dflex div {
	width: 30%;
}
.dflex .mimg img {
	margin: auto;
	width: 85%;
	margin-bottom: 8px !important;
}
.dflex p {
	width: fit-content;
	margin: auto;
}
.dflex p br {
	display: none;
}
.dflex p::before {
	font-family: "Font Awesome 5 Free";
	content: "\f058";
	font-weight: bold;
	display: inline-block;
	color: #37aaff;
	margin-right: 0.5em;
	font-size: .9em;
}
@media (max-width: 1085px) {
	.dipl div {
		margin-bottom: 20px;
	}
	.ojf .flexbox img {
		object-fit: cover;
		width: 100%;
		height: 370px;
	}
	.service .flexbox {
		margin-bottom: 40px;
	}
	.bringing .flexbox {
		margin-bottom: 30px;
	}
}
@media (max-width: 1045px) {
	.dflex p br {
		display: block;
	}
	.dflex p {
		text-align: center;
	}
}
@media (max-width: 800px) {
	.ojf .flexbox img {
		height: 430px;
	}
}
@media (max-width: 750px) {
	.ojf .flexbox img {
		height: auto;
		margin-bottom: 9px;
	}
	.service .maintitle {
		margin-bottom: 25px !important;
	}
}
@media (max-width: 630px) {
	.dflex {
		position: relative;
		justify-content: center;
	}
	.dflex div {
		width: 47%;
		margin: 0 1.5% 13px;
	}
	.dflex div:last-child {
		margin-bottom: 0;
	}
	.service .swhite::before {
		top: 50.5%;
	}
}
@media (max-width: 450px) {
	.diplomacy .stitle {
		margin-bottom: 20px;
	}
	.dflex p br {
		display: none;
	}
	.dflex p {
		text-align: center;
	}
	.service .flexbox {
		margin-bottom: 35px;
	}
	.bringing .flexbox {
		margin-bottom: 20px;
	}
	.dipl div {
		margin-bottom: 35px;
	}
}
/* 流れ */
#flow {
	position: relative;
	top: -105px;
}
@media (max-width:1125px) {
	#flow {
		top: -70px;
	}
}
.flowitem {
	position: relative;
	margin: auto;
	max-width: 98%;
	margin-bottom: 60px;
	background: #fffef5;
	padding: 20px 30px;
	box-shadow: rgb(0 0 0 / 3%) 0px 2px 8px 0px;
}
.flowitem::after {
	font-family: "Font Awesome 5 Free";
	content: "\f0ab";
	font-weight: bold;
	font-size: 1.8rem;
	color: #37aaff;
	line-height: 1;
	position: absolute;
	bottom: -45px;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
}
.flowitem:last-child::after {
	content: none !important;
}
.flowitem .flexbox {
	margin-bottom: 0 !important;
}
.flow p a {
	color: #333;
}
.flow p a i {
	font-size: 85%;
}
.flow p a:hover {
	opacity: 0.6;
}
.ftitle {
	position: relative;
	font-weight: 700;
	margin-bottom: 13px;
	border-bottom: 2px solid #37aaff;
	font-size: clamp(0.93rem, 0.81rem + 0.4267vw, 1.13rem);
	padding-bottom: 5px;
}
.ftitle::before {
	font-family: "Font Awesome 5 Free";
	content: "\f0da";
	font-weight: bold;
	color: #37aaff;
	position: relative;
	margin-right: 7px;
}
.ftitle span {
	color: #37aaff;
	font-size: 1.15rem;
}
.ftitle span span {
	font-size: 110%;
	margin-left: 3px;
	margin-right: 12px;
}
.ftitle span span::before {
	content: none;
}
.flowitem .mainbtn a {
	padding: 5px 0;
}
@media (max-width:550px) {
	.flow .stitle {
		margin-bottom: 17px;
	}
	.flowitem {
		margin-bottom: 40px;
		padding: 15px 15px 20px;
		max-width: 100%;
	}
	.flowitem p {
		font-size: 0.95rem;
	}
	.flowitem .mainbtn {
		margin-bottom: 10px;
	}
	.flowitem::after {
		font-size: 1.3rem;
		bottom: -30px;
	}
	.ftitle {
		margin-bottom: 17px;
		letter-spacing: 0.08em;
	}
	.ftitle span {
		font-size: 1rem;
	}
	.ftitle span span {
		margin-left: 1px;
		margin-right: 5.5px;
	}
	.ftitle::before {
		margin-right: 4.5px;
	}
}
@media (max-width: 450px) {
	.flowitem {
		max-width: 95%;
	}
}
/*
.ftitle::before {
    content: '';
    position: absolute;
    bottom: -2px;
    width: 80px;
    height: 2px;
	left: 0;
    background:#37aaff;
}
.ftitle span::before{
	font-family: "Font Awesome 5 Free";
	content: "\f138";
	font-weight: bold;
	display: inline-block;
	color: #37aaff;
	margin-right: 0.25em;
	font-size: .9em;
}
.ftitle span {
	color: #37aaff;
	background: #ffd638;
	padding: 3px 15px 5px;
	margin-right: 12px;
	border: 2px solid #37aaff;
	border-radius: 30px;
}
*/
/*対応エリア*/
.area .stitle {
	margin-bottom: 25px;
}
.area .flexbox {
	align-items: center;
	max-width: 1000px;
	margin: auto;
}
.atext {
	max-width: 595px;
	margin-right: auto;
	font-size: 1.08rem;
	border-bottom: 2px dotted #37aaff;
	padding-bottom: 5px;
	margin-bottom: 15px;
}
.p_area {
	margin-bottom: 80px;
}
.atext i {
	color: #37aaff;
}
.amap {
	width: 100%;
	max-width: 340px;
}
@media (max-width: 1150px) {
	.area .flexbox {
		max-width: 98%;
	}
	.atext {
		max-width: 100%;
	}
}
@media (max-width: 750px) {
	.p_area {
		margin-bottom: 35px;
	}
	.amap {
		margin: auto;
	}
	.amap img {
		margin: auto !important;
	}
}
@media (max-width: 600px) {
	.p_area {
		margin-bottom: 20px;
	}
	.amap {
		max-width: 75%;
	}
	.atext {
		font-size: 1rem;
		margin-bottom: 10px;
	}
	.area .stitle {
		margin-bottom: 10px;
	}
}
@media (max-width: 450px) {
	.amap {
		max-width: 80%;
	}
	.atext {
		max-width: 100%;
	}
	.area .flexbox {
		max-width: 95%;
	}
}
/* お客様の衣類をお預かり致します */
.storage {
	background: url(../img/storage.jpg);
}
.storage .wbox {
	background: rgba(255, 255, 255, 0.9);
}
.storage .inner {
	max-width: 1100px;
}
.stotext {
	margin-bottom: 30px;
}
.stwrap {
	max-width: 900px;
	margin: auto;
}
@media (max-width: 550px) {
	.stotext {
		margin-bottom: 20px;
	}
}
/* 料金表ページ ==============================================================*/
.feepage .banner {
	max-width: 655px;
}
.fflex {
	display: flex;
	justify-content: space-between;
	margin-bottom: 10px;
}
@media (max-width: 550px) {
	.fflex {
		margin-bottom: 0;
	}
}
.feetext {
	margin-top: 20px;
}
.feetext a {
	color: #37aaff;
}
.feetext a:hover {
	opacity: 0.6;
	transition: .3s;
}
.info_table.fee tr {
	border-bottom: 2px solid #ffdd59;
}
.info_table.fee th br {
	display: block !important;
}
.info_table.fee th {
	width: 30%;
	border-bottom: 2px solid #5ebdff;
}
.info_table.fee td {
	width: 70%;
}
@media (max-width:1185px) {
	.info_table.fee th {
		width: 40%;
	}
	.info_table.fee td {
		width: 60%;
	}
}
@media (max-width: 750px) {
	.info_table.fee th {
		text-align: left;
		padding-left: 10px;
	}
	.info_table.fee td {
		text-align: right;
		padding-right: 10px;
	}
	.feelong {
		padding-right: 0 !important;
		text-align: left !important;
	}
}
@media (max-width: 550px) {
	.feepage .wbox {
		padding: 25px 17px;
	}
	.dfee {
		margin: 17px 0 23px !important;
	}
}
@media (max-width: 365px) {
	.info_table.fee th br {
		display: none !important;
	}
}
/* 外交サービスの場合 外交手数料 */
.fdiplomacy .info_table.fee {
	max-width: 98%;
	margin: auto;
}
.dfee {
	margin: 30px 0 40px;
}
.dfee .stitle {
	margin-bottom: 5px;
}
/* よくある質問ページ ==============================================================*/
.faqs .maintitle {
	margin-bottom: 50px;
}
.faq {
	counter-reset: number 0;
}
.faq .wbox {
	margin-bottom: 30px;
	padding: 35px 40px;
	background: #fffef5;
	box-shadow: rgb(0 0 0 / 3%) 0px 2px 8px 0px;
}
.faq .wbox:last-child {
	margin-bottom: 0 !important;
}
.subfaq {
	max-width: 1100px;
	counter-reset: sub-number 0;
}
.qt, .at {
	position: relative;
	padding-left: 40px;
}
.qt {
	padding-bottom: 8px;
	border-bottom: 2px dashed #ffd638;
	font-weight: 500;
	margin-bottom: 15px;
	font-size: 1.1rem;
}
.qt::before, .at::before {
	font-weight: 700;
	font-size: 1.4rem;
	position: absolute;
	left: 0;
}
.qt::before {
	counter-increment: number 1;
	content: "Q"counter(number);
	top: -4.5px;
	/*color: #757575;*/
}
.at::before {
	counter-increment: sub-number 1;
	content: "A"counter(sub-number);
	color: #37aaff;
	margin-left: 0.6px;
	top: -7.5px;
}
@media (max-width: 780px) {
	.faqs .maintitle {
		margin-bottom: 35px;
	}
	.faq .wbox {
		margin-bottom: 30px;
		padding: 25px;
	}
	.faq .wbox .mainbtn a {
		padding: 5px 0;
	}
	.qt, .at {
		padding-left: 35px;
	}
	.qt::before, .at::before {
		font-size: 1.25rem;
		top: -2.7px;
	}
}
@media (max-width: 450px) {
	.faq .flexbox img {
		margin-bottom: 8.5px;
	}
	.qt::before, .at::before {
		top: -5px;
	}
	.faq .wbox {
		margin-bottom: 20px;
		padding: 23px 17px 18px;
	}
	.qt {
		padding-bottom: 10px;
		margin-bottom: 10px;
		font-size: 1rem;
	}
}
.telb.mainbtn a:after {
	content: none;
}