@charset "utf-8";
/*------------------------------------------------------------
	汎用スタイル
------------------------------------------------------------*/
/* 81-JYJ */
/* clearfix */	
.clearfix:after {content: "";display: block;clear: both;}
/* flex */	
.flex,.flexA,.flexB,.flexC {display: flex;flex-wrap: wrap;}
.flexA {justify-content: space-around;}
.flexB {justify-content: space-between;}
.flexC {justify-content: center;}
/*------------------------------------------------------------
	common
------------------------------------------------------------*/
/* fonts */
.elina,
.en {
	font-family: "elina",sans-serif;
}
.font01,
.tk-ten-mincho-text {
	font-family:"ten-mincho-text",serif;
	font-weight: normal;
}
/* content */
.content {
	margin: 0 auto;
	max-width: 120rem;
}
@media all and (min-width: 897px) {
	.content.mid {
		max-width: 110rem;
	}
	.content.sml {
		max-width: 100rem;
	}
}
@media all and (max-width: 896px) {
	.content {
		padding: 0 2rem;
		max-width: inherit;
	}
}
/* comTel */
.comTel {
	margin-right: 2rem;
}
.comTel li {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	font-weight: bold;
	position: relative;
	flex-wrap: wrap;
}
.comTel .supTxt {
	margin: 1.4rem 0.4rem -0.9rem;
	width: 100%;
	text-align: right;
	font-size: 1.1rem;
	color: var(--col01);
	letter-spacing: 0.45em;
}
.comTel .txt {
	margin-right: 1.1rem;
	padding: 0.3rem 0.9rem 0.2rem;
	width: fit-content;
	font-weight: bold;
	color: var(--white);
	background: var(--col01);
	letter-spacing: 0.1em;
	font-feature-settings: "palt";
}
.comTel .txt small {
	font-size: 1.3rem;
}
.comTel a {
	padding: 0 0 0.1rem 3.5rem;
	display: block;
	font-size: 3rem;
	font-weight: 400;
	letter-spacing: 0.12em;
	font-feature-settings: "palt";
	font-family: "elina",sans-serif;
	box-sizing: border-box;
	background: url(../img/common/icon01.webp) no-repeat left center / 2.8rem;
}
.comTel li:not(:last-child) a {
	border-bottom: 1px solid var(--border-col01);
}
.comTel .tel01 .txt {
	background: var(--col02);
}
.comTel .tel01 a {
	background-image: url(../img/common/icon02.webp);
}
@media all and (max-width: 896px) {
	.comTel {
		margin-right: 0.8rem;
	}
	.comTel li + li {
		margin-top:0.31rem;
	}
	.comTel a {
		font-size: 2.6rem;
		letter-spacing: 0.08em;
		background-size: 2.6rem;
	}
	.comList .comTel .txt {
		margin: -0.6rem 1.6rem 0 0;
		padding: 0.4rem 0.5rem;
		font-size: 1rem;
	}
	.comTel .supTxt {
		margin: 1rem 0.4rem -0.2rem;
		font-size: 1rem;
		letter-spacing: 0.1em;
	}
}
@media (min-width: 897px) and (max-width: 1220px) {
	.comTel .supTxt { 
		margin-bottom: -0.4rem;
	}
}
/* shake */
.shakeImg {
	animation: shake .4s step-end .1s infinite;
}
@keyframes shake {
	0% {
		rotate: -1deg
	}
	50% {
		rotate: 1deg
	}
	to {
		rotate: -1deg
	}
}
/* comBtn */
.comBtn a {
	padding: 0.8rem 3.4rem 0.8rem 2.3rem;
	width: fit-content;
	min-width: 10.4rem;
	font-size: 1.3rem;
	letter-spacing: 0.04em;
	border-radius: 5rem;
	font-weight: bold;
	display: block;
	text-align: center;
	box-sizing: border-box;
	border: 1px solid var(--base-color);
	background: url(../img/common/arrow_img01.webp) no-repeat right 0.6rem center / 2.3rem;
}
.comBtn.btn01 a {
	padding-right: 2.2rem;
	margin: 0 auto;
	min-width: 37.5rem;
	min-height: 8rem;
	font-size: 1.6rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background-size: 3rem;
	background-position: right 2.2rem center;
}
@media all and (min-width: 1025px) {
	.comBtn a:hover {
		color: var(--white);
		background-image: url(../img/common/arrow_icon02.webp);
		border-color: var(--red);
		background-color: var(--red);
	}
}
@media all and (max-width: 896px) {
	.comBtn a {
		padding: 0.7rem 3.4rem 0.7rem 2.3rem;
	}
	.comBtn.btn01 a {
		min-width: 33.5rem;
    	min-height: 7rem;
		background-size: 2.3rem;
		background-position: right 1.3rem center;
	}
}
/* headLine01 */
.headLine01 {
	margin-bottom: 2.3rem;
	text-align: center;
	position: relative;
	z-index: 3;
}
.headLine01 .en {
	margin-bottom: 1.4rem;
	display: block;
	font-size: 6.6rem;
	line-height: 1;
	font-weight: normal;
}
.headLine01 .jp {
	letter-spacing: 0.08em;
}
.headLine01 .jp .num {
	line-height: 0.8;
	font-size: 3rem;
	color: var(--red);
}
@media all and (max-width: 896px) {
	.headLine01 {
		margin-bottom: 3.3rem;
		font-size: 1.3rem;
	}
	.headLine01 .en {
		margin-bottom: 0.7rem;
		font-size: 5.4rem;
	}
	.headLine01 .jp .num {
		font-size: 2.4rem;
	}	
}
/* table */
table {
	width: 100%;
	border-collapse: collapse;
}
table th,
table td {
	vertical-align: middle;
	text-align: left;
	border-top: 1px solid var(--border-col02);
	border-bottom: 1px solid var(--border-col02);
}
table tr:first-of-type th,
table tr:first-of-type td {
	border-top: none;
}
/* comTips */
.comTips {
	padding-left: 2.1rem;
	font-size: 1.43rem;
	font-weight: 500;
	letter-spacing: 0.1em;
	line-height: 1.539;
	text-indent: -2.1rem;
}
@media all and (max-width: 896px) {
	.comTips {
		font-size: 1.144rem;
		line-height: 1.539;
	}
}
/* lightTxt */
.lightTxt {
	color: var(--red);
	font-weight: 700;
}
/* comBg */
.comBg {
	background: var(--bg06) url(../img/common/bg01.webp) no-repeat center top / 100%;
}
@media all and (max-width: 896px) {
	.comBg {
		background-image: url(../img/common/bg01_sp.webp);
	}
}
/* comList */
.comList > li {
	width: calc(50% - 2.7rem);
	font-weight: 500;
}
.comList .map {
	margin-bottom: 2.1rem;
	border-radius: 2rem;
	overflow: hidden;
}
.comList .map img {
	width: 100%;
}
.comList .tab {
	margin-bottom: 0.4rem;
	padding: 3.2rem 5.6rem 3.8rem;
	border-radius: 2rem;
	background: var(--bg07);
}
.comList thead th {
	padding: 0.7rem 0;
}
.comList th,
.comList td {
	padding: 0.9rem 0 0.4rem;
	font-weight: 500;
	letter-spacing: 0.05em;
}
.comList td {
	color: var(--red);
	font-size: 1.27rem;
}
.comList td.no {
	color: var(--base-color);
}
.comList th {
	width: calc(64% / 7);
}
.comList th:first-child {
	width: 36%;
	padding-right: 3.3rem;
	text-align: right;
}
.comList table {
	margin-bottom: 1.4rem;
}
.comList .comTel .txt {
	flex: 1;
	text-align: center;
}
.comList .addressUl {
	margin-bottom: 1.9rem;
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}
.comList .addressUl li {
	width: fit-content;
	letter-spacing: 0.15em;
}
.comList p span {
	margin-right: 1.1rem;
	padding: 0.6rem 1.1rem 0.4rem;
	display: inline-block;
	font-size: 1.3rem;
	font-weight: 500;
	letter-spacing: 0.06em;
	background: var(--bg04);
}
.comList  p .bg01 {
	background: var(--bg05);
}
@media all and (max-width: 896px) {
	.comList {
		display: block;
	}
	.comList > li {
		width: 100%;
	}
	.comList .tab {
		padding: 1.7rem 2rem 1.6rem;
	}
	.comList thead th {
		padding: 0.5rem 0;
	}
	.comList th, .comList td {
		padding: 0.7rem 0 0.4rem;
		font-size: 1.28rem;
	}
	.comList th:first-child {
		padding-right: 2.2rem;
	}
	.comList td {
		font-size: 1.016rem;
	}
	.comList table {
		margin-bottom: 1.1rem;
	}
	.comList .addressUl {
		margin-bottom: 2.5rem;
		display: block;
	}
	.comList .addressUl li + li {
		margin-top: 1.9rem;
	}
	.comList .addressUl .comBtn a {
		padding: 0.8rem 3.4rem 0.8rem 2.3rem;
	}
	.comList p span {
		margin-bottom: 0.9rem;
		display: block;
		width: fit-content;
	}
	.comList p span:last-of-type {
		margin-bottom: 0;
	}
	.comList > li + li {
		margin-top: 1.8rem;
	}
}
/* dotBg */
.dotBg {
	background-image: radial-gradient(circle, #333 1px, transparent 1px);
	background-size: 20px 20px; 
}
/* popBox */
.popBox {
	padding: 11.2rem 7rem 7.3rem;
	margin: 0 auto;
	width: 106.6rem;
	border-radius: 3rem;
	background: var(--white);
	position: relative;
}
.popBox .popUl {
	display: flex;
	gap: 4.9rem;
}
.popBox .popUl li {
	width: calc((100% - 9.8rem) / 3);
}
.popBox .popUl a {
	padding: 1px 1px 2.6rem;
	display: block;
	color: var(--white);
	font-size: 3rem;
	background: var(--green);
	border-radius: 3rem;
	text-align: center;
	letter-spacing: 0.16em;
	font-weight: bold;
	font-feature-settings: "palt";
}
.popBox .popUl a .txt {
	display: block;
	width: fit-content;
	margin: 0 auto;
	padding-right: 3.3rem;
	font-size: 1.8rem;
	letter-spacing: 0.08em;
	background: url(../img/common/arrow_icon02.webp) no-repeat right center / 3rem;
}
.popBox .popUl .img {
	margin: -2.5rem -2.1rem 1rem;
	width: 31.9rem;
}
.popBox .popUl .img img {
	width: 100%;
}
/* comClose */
.comClose {
    right: 3.3rem;
    top: 3.4rem;
    width: 4.4rem;
    height: 3.4rem;
    position: absolute;
	cursor: pointer;
}
.comClose span {
	position: absolute;
	top: 0;
	left: 0;
	transform: translateY(1.5rem) rotate(45deg);
	width: 4.81rem;
	height: 1px;
	background: var(--base-color);
}
.comClose span:nth-child(2) {
	transform: translateY(1.5rem) rotate(-45deg);
}
@media all and (min-width: 1025px) {
	.popBox .popUl a:hover,
	.comClose:hover {
		opacity: 0.6;
	}
}
.mfp-container {
	padding: 5rem 0.6rem;
	overflow-y: scroll;
}
@media all and (max-width: 896px) {
	.popBox {
		margin: 0 1.5rem;
		width: auto;
		padding: 7.7rem 2.6rem 6.2rem;
		overflow: auto;
	}
	.popBox .popUl p {
		font-size: 2rem;
	}
	.popBox .popUl p .font01 {
		font-weight: normal;
	}
	.popBox .popUl a .txt {
		padding-right: 2.7rem;
		margin: 0;
		font-size: 1.3rem;
		background-size: 2.4rem;
	}
	.popBox .popUl {
		display: block;
	}
	.popBox .popUl li {
		width: 100%;
	}
	.popBox .popUl li + li {
		margin-top: 3.2rem;
	}
	.popBox .popUl .img {
		margin: -1.4rem 0.6rem -1.4rem -1.3rem;
		width: 12.8rem;
	}
	.popBox .popUl a {
		padding: 1px;
		display: flex;
		text-align: left;
		align-items: center;
		border-radius: 2rem;
		letter-spacing: 0;
		font-feature-settings: "palt";
	}
	.popBox .popUl p {
		flex: 1;
	}
	.comClose {
		right: 3rem;
		top: 2.5rem;
		width: 3.2rem;
		height: 3.2rem;
	}
	.comClose span {
		width: 3.7rem;
	}
}