@charset "utf-8";
/*==================================================
  ヘッダ
--------------------------------------------------*/
#header {
	border-top: 2px solid #fe6d69;
	position: relative;
	height: 70px;
	padding: 15px;
	background: #fff;
	font-family: var(--font-sans);
	text-align: left;
}
/* タイトル */
#header h1.title {
	height: 100%;
	/* 縦方向中央揃え */
	display: flex;
	align-items: center;
}
#header h1.title img {
	object-fit: contain;
	object-position: left;
	width: 100%;
	height: 100%;
	max-width: none;
}
/* お問い合わせ */
#header .contact {
	column-gap: 20px;
	margin-right: 130px;
	margin-left: 30px;
	line-height: 1.2;
	align-items: flex-start;
}
#header .contact p {
	text-align: center;
	font-weight: normal;
	font-weight: 500;
	font-weight: bold;
}
#header .contact p a {
	display: block;
	font-size: 14px;
	color: #999;
	line-height: 1.1;
}
#header .contact p.btn a {
	color : #999;
}
#header .contact p.ggl a {
	color : #999;
}
#header .contact p a .maru {
	width: 38px;
	height: 38px;
	border: 1px solid #ccc;
	background : #fff;
	border-radius: 11px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
}
#header .contact p.btn a .maru {
	background : #fff;
}
#header .contact p.ggl a .maru {
	border-color: #ccc;
	background: #fff;
}
#header .contact p a .maru img {
	width: 25px;
}
#header .contact p.btn a .maru img {
	width: 22px;
}
#header .contact p.ggl a .maru img {
	width: 100%;
}
/*LINEアイコン*/
#header .contact p.btn.line a .maru {
	border: none;
}
#header .contact p.btn.line a .maru img {
	width: 100%;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#header {
		padding: 7px;
	}
	#header h1.title {
		width: 200px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	/* ベースカラー*/
	#switchBtnArea #switchBtn { background: #1AFF00; }

	/* ヘッダ */
	#header {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 60px;
		padding: 0 46px 0 0;
		background: #fff;
		z-index: 9997;
	}
	#header h1.title {
		width: 200px;
		height: 100%;
		padding: 10px;
	}
	#pc_menu {
		display: none;
	}
	/* お問い合わせ */
	#header .contact {
		column-gap: 5px;
		margin-right: 80px;
	}
	#header .contact p a {
		font-size: 12px;
	}
}
@media only screen and (max-width: 640px) {
	#header {
		height: 53px;
	}
	#header h1.title {
		padding: 5px;
		width: 180px;
	}
	#header .contact {
		margin-left: 0;
		margin-right: 20px;
	}
	#header .contact p a {
		font-size: 10px;
	}
	#header .contact p a .maru {
		width: 35px;
		height: 35px;
	}
	#header .contact p a .maru img {
		width: 22px;
	}
	#header .contact p.btn a .maru img {
		width: 20px;
	}
}
@media only screen and (max-width: 320px) {
	#header h1.title {
		width: 130px;
	}
}
/*--------------------------------------------------
  メニュー
--------------------------------------------------*/
#pc_menu {
	margin-left: auto;
}
#pc_menu ul {
	display: flex;
	column-gap: 30px;
}
#pc_menu li a {
	display: block;
	color: #333;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
}
#pc_menu li.on a,
#pc_menu li a:hover {
	color: var(--color-red);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
}
#pc_menu ul li.dsp_tbs {
	display: none;
}
/*--------------------------------------------------
  ページタイトル
--------------------------------------------------*/
#page_title {
	position: relative;
	text-align: center;
}
#page_title p {
	text-align: center;
}
#sub_ttl {
	position: relative;
	padding-left: 100px;
}
#sub_ttl::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	background: #fff;
	width: 100%;
	height: 230px;
	z-index: -1;
}
#sub_ttl span {
	display: block;
	position: relative;
	border-top-left-radius: 30px;
	border-bottom-left-radius: 100px;
	overflow: hidden;
}
#sub_ttl span::after {
	content: "";
	position: absolute;
	left: 10px;
	top: -10px;
	width: 100%;
	height: 100%;
	border: 1px solid #fff;
	border-top-left-radius: 35px;
	border-bottom-left-radius: 100px;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#sub_ttl {
		padding-left: 50px;
		margin-bottom: 10px;
	}
	#sub_ttl::before {
		height: 120px
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#sub_ttl {
		padding-left: 30px;
	}
	#sub_ttl::before {
		height: 50px
	}
	#sub_ttl span {
		border-top-left-radius: 15px;
		border-bottom-left-radius: 50px;
	}
	#sub_ttl span::after {
		border-top-left-radius: 20px;
		border-bottom-left-radius: 50px;
	}
}
/*--------------------------------------------------
  コンテナ
--------------------------------------------------*/
#wrap {
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}
#container {
	text-align: left;
	line-height: 1.8;
}
#container p {
	margin-bottom: 1em;
}
h2.line {
	font-size: 63px;
	margin-bottom: 100px;
	border-bottom: 2px dashed #FE6D69;;
}
h3.sub {
	position: relative;
	margin-bottom: 50px;
	font-size: 53px;
	padding-top: 32px;
}
h3.sub::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 1px;
	height: 50px;
	background: var(--color-red);
}
h3.sub .en {
	color: var(--color-red);
	font-size: 14px;
	letter-spacing : 2.8px;
	display: block;
	padding-left: 20px;
	margin-bottom: 30px;
}
h3.sub .jp {
	display: inline-block;
}
h3.sub2 {
	position: relative;
	margin-bottom: 50px;
	font-size: 53px;
	text-align: center;
}
h3.sub2::before {
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	top: -50px;
	width: 1px;
	height: 30px;
	background: var(--color-red);
}
h3.sub2 .en {
	color: var(--color-red);
	font-size: 14px;
	display: block;
	letter-spacing : 2.8px;
	margin-bottom: 15px;
}
@media print, screen and (min-width: 769px){ /* PCのみ */
	#wrap, #header {
		min-width: 1150px;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#container {
		padding-top: 60px;
	}
	h2.line {
		font-size: 35px;
		margin-bottom: 50px;
	}
	h3.sub {
		padding-top: 15px;
		margin-bottom: 30px;
		font-size: 30px;
	}
	h3.sub::before {
		height: 30px;
	}
	h3.sub .en {
		margin-bottom: 15px;
	}
	h3.sub2 {
		font-size: 30px;
		margin-bottom: 30px;
	}
	h3.sub2::before {
		height: 20px;
		top: -30px;
	}
	#main, #navi {
		clear: both;
		padding-bottom: 30px;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#container {
		padding-top: 53px;
	}
	#wrap, #footer {
		min-width: 320px;
	}
	h2.line {
		font-size: 23px;
		margin-bottom: 30px;
	}
	h3.sub {
		margin-bottom: 20px;
		font-size: 23px;
	}
	h3.sub .en {
		font-size: 13px;
		margin-bottom: 10px;
	}
	h3.sub2 {
		font-size: 23px;
	}
	h3.sub2 .en {
		font-size: 13px;
		margin-bottom: 10px;
	}
}
/*--------------------------------------------------
  メイン
--------------------------------------------------*/
.main {
	width: 1150px;
	max-width: 100%;
	margin: auto;
	padding: 0 25px;
}
.list_a {
	list-style-type: disc;
	padding-left: 1em;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.main {
		padding-left: 20px;
		padding-right: 20px;
	}
}
/*--------------------------------------------------
  フッタ
--------------------------------------------------*/
#footer {
	clear: both;
	width: 100%;
	margin-top: auto;
	font-size: 14px;
	line-height: 1.6;
	position: relative;
}
#footer::before {
	background: #FFF;
}
#footer .bg_white {
	position: relative;
	padding-bottom: 80px;
}
#footer .bg_white::before {
	background: url("../img/img-f-bg.jpg") no-repeat top/cover;
	opacity: 0.1;
}
@media only screen and (max-width: 1150px) {
	#footer .bg_white {
		padding: 0 25px;
	}
}
#footer .bg_white .main {
	padding-left: 0;
	padding-right: 0;
}
#footer .bg_white .main .link {
	width: 50%;
}
#footer .bg_white .main .info .ttl {
	margin-bottom: 30px;
}
#footer .bg_white .main .info .ttl a img {
	width: 400px;
}
#footer .bg_white .main .info .txt {
	margin-bottom: 20px;
}
#footer .bg_white .main .info .txt.map a {
	font-size: 130%;
	color: #fe6d69;
	font-weight: 600;
}
#footer .bg_white .main .info .txt.map .pin img {
	width: 27px;
	margin-right: .5em;
}
#footer .bg_white .main .info .txt .area {
	background: #aaa;
	color: #FFF;
	padding: 2px 10px 3px;
	margin-right: 10px;
}
/* リンク */
#footer .link .col:not(:last-of-type) {
	margin-bottom: 30px;
}
#footer .link .col ul {
	width: 125px;
	text-align: left;
}
#footer .link .col ul:nth-of-type(2) {
	width: 140px;
}
#footer .link .col ul:last-of-type {
	width: 125px;
}
#footer .link .col ul li {
	position: relative;
	padding-left: 10px;
	line-height: 1;
	margin-bottom: 20px;
}
#footer .link .col ul li:last-of-type {
	margin-bottom: 0;
}
#footer .link ul li::before {
	content: "";
	position: absolute;
	top: 5px;
	left: 0;
	width: 6px;
	height: 6px;
	background: #e7dd54;
	border-radius: 50%;
	display: inline-block;
}
#footer .link ul li a {
	color: #333;
	text-decoration: none;
}
#footer .link ul li a:hover {
	text-decoration: underline;
}
#footer .footer_btm {
	position: relative;
}
#footer #page_top {
	position: absolute;
	right: 0;
	bottom: 0;
}
#footer #page_top a img {
	width: 72px;
}
/* コピーライト */
#copyright {
	margin-top: 50px;
	color: #BBB;
	font-size: 12px;
}
@media print, screen and (min-width: 641px){ /* PC・タブレット */
	#footer .contact li {
		width: 48%;
	}
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#footer .bg_white {
		padding: 30px 15px 0;
	}
	#footer .bg_white::before {
		background: url("../img/img-f-bg.jpg") no-repeat center/cover;
	}
	#footer .bg_white .main .info {
		width: 100%;
	}
	#footer .bg_white .main .info .ttl {
		margin-bottom: 20px;
		text-align: center;
	}
	#footer .bg_white .main .info .ttl a img {
		width: 300px;
	}
	#footer .bg_white .main .info .txt {
		text-align: center;
	}
	#footer .bg_white .main .link {
		display: none;
	}
	#footer #page_top {
		bottom: 25px;
	}
	#copyright {
		margin-top: 20px;
		padding: 10px 0;
		font-size: 10px;
		text-align: center;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	#footer .bg_white .main .info {
		margin-bottom: 80px;
	}
	#footer .bg_white .main .info .ttl a img {
		width: 280px;
	}
	#footer .bg_white .main .info .txt {
		font-size: 13px;
		font-weight: normal;
	}
	#footer #page_top {
		right: auto;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		bottom: 40px;
	}
	#copyright {
		padding: 5px 0;
	}
}
/*--------------------------------------------------
  共通
--------------------------------------------------*/
.iv { opacity: 0; }
.cmn_faq .bg {
	position: relative;
	background: #e7dd54;
	border-radius: 50px;
	padding: 50px 50px 50px;
}
.cmn_faq .bg h3 {
	font-size: 55px;
	line-height: 1;
	position: relative;
	top: -71px;
	margin-bottom: -10px;
}
.cmn_faq .bg h3 span {
	font-size: 30px;
}
.cmn_faq .bg dl {
	background: #fff;
	margin-bottom: 10px;
	padding: 20px 35px;
	border-radius: 35px;
	font-size: 110%;
}
.cmn_faq .bg dl:last-of-type {
	margin-bottom: 0;
}
.cmn_faq .bg dl dt, .cmn_faq .bg dl dd {
	position: relative;
	padding: 1px 0 1px 40px;
}
.cmn_faq .bg dl dt::before, .cmn_faq .bg dl dd::before {
	content: "Q";
	font-size: 25px;
	position: absolute;
	top: 0;
	left: 0;
	line-height: 1;
}
.cmn_faq .bg dl dd::before {
	content: "A";
	top: 15px;
}
.cmn_faq .bg dl dt {
	cursor: pointer;
	padding-right: 50px;
	background: url("../img/ico-plus.png") no-repeat top right;
}
.cmn_faq .bg dl dt.open {
	background-image: url("../img/ico-minus.png");
}
.cmn_faq .bg dl dd {
	padding-top: 14px;
	display: none;
}
.cmn_contact {
	padding: 120px 0;
}
.cmn_contact::before {
	background: #fe6d69;
}
.main .cmn_contact .main {
	padding: 0;
}
.cmn_contact h3.sub {
	color: #fff;
	text-align: left;
}
.cmn_contact .btn_wrap {
	width: 800px;
	display: flex;
	justify-content: space-between;
}
.cmn_contact a {
	display: block;
	width: 370px;
	border: 1px solid #fff;
	border-radius: 20px;
	padding: 9px;
	text-align: center;
	color: #fff;
}
.cmn_contact a:hover {
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	background: #fff;
	color: #fe6d69;
}
.cmn_contact a .in {
	border: 1px dashed #fff;
	display: block;
	height: 100%;
	border-radius: 18px;
	padding: 32px 17px 0;
}
.cmn_contact a:hover .in {
	border-color: #fe6d69;
}
.cmn_contact a .in .no {
	display: flex;
	align-items: center;
	font-size: 33px;
	margin-bottom: 20px;
}
.cmn_contact a.mail .in .no {
	margin-bottom: 30px;
}
.cmn_contact a .in .no .maru {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #fff;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	margin-right: 15px;
}
.cmn_contact a:hover .in .no .maru {
	background: #fe6d69;
}
.cmn_contact a .in .no .maru::before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 25px;
	background: url("../img/tel.png") no-repeat center / 100% auto;
}
.cmn_contact a.mail .in .no .maru::before {
	width: 24px;
	height: 18px;
	background-image: url("../img/mail.png")
}
.cmn_contact a:hover .in .no .maru::before {
	background-image: url("../img/tel-w.png")
}
.cmn_contact a.mail:hover .in .no .maru::before {
	background-image: url("../img/mail-w.png")
}
.cmn_contact a .in .txt {
	font-weight: normal;
}
.cmn_contact a.mail .in .arrow::before {
	content: "";
	display: inline-block;
	width: 20px;
	height: 13px;
	background: url("../img/arrow-w.png") no-repeat center / 100% auto;
}
.cmn_contact a.mail:hover .in .arrow::before {
	background-image: url("../img/arrow.png")
}
.cmn_contact h3.sub::before {
	background: #fff;
}
.cmn_contact h3.sub .en {
	color: #fff;
}
.btn01 a {
	color: #333;
	font-size: 16px;
	line-height: 60px;
	display: inline-block;
	width: 300px;
	padding-left: 40px;
	background: #fff url("../img/arrow.png") no-repeat right 20px center;
	box-shadow: 0 0 10px #e6e6e5;
	border-radius: 30px;
	position: relative;
	text-align: left;
}
.btn01 a::before {
	content: "";
	width: 6px;
	height: 6px;
	background: #f2a65e;
	border-radius: 30px;
	position: absolute;
	top: calc(50% - 3px);
	left: 20px;
}
.btn01.btn_grad a {
	background : url(../img/arrow-w.png) no-repeat right 20px center, linear-gradient(90deg, rgba(254, 109, 105, 1) 63.2%, rgba(231, 221, 84, 1) 100%);
	color: #fff;
}
.btn01.btn_grad a:hover {
	border: 3px solid var(--color-red);
	background: #fff url("../img/arrow.png") no-repeat right 20px center;
	color: var(--color-red);
	filter:alpha(opacity=100);
	-moz-opacity: 1;
	opacity: 1;
	line-height: 54px;
}
/* 枠のマージン・パディング */
.mt { margin-top: 120px; }
.mb { margin-bottom: 120px; }
.pt { padding-top: 120px; }
.pb { padding-bottom: 120px; }
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	.cmn_faq .bg {
		border-radius: 30px;
		padding: 20px;
	}
	.cmn_faq .bg h3 {
		font-size: 35px;
		top: -40px;
	}
	.cmn_faq .bg h3 span {
		font-size: 25px;
	}
	.cmn_contact {
		padding: 50px 0;
	}
	.cmn_contact > .box_flex {
		display: block;
	}
	.cmn_contact .btn_wrap {
		width: 100%;
	}
	.cmn_contact a {
		width: 48%;
		padding: 5px;
	}
	.cmn_contact a .in {
		padding: 15px;
	}
	.cmn_contact a .in .no {
		font-size: 25px;
	}
	.mb { margin-bottom: 50px; }
	.pt { padding-top: 50px; }
	.pb { padding-bottom: 50px; }
}
@media only screen and (max-width: 640px){ /* スマホ */
	.cmn_faq .bg {
		border-radius: 20px;
		padding: 15px;
	}
	.cmn_faq .bg h3 {
		font-size: 30px;
		top: -30px;
	}
	.cmn_faq .bg h3 span {
		font-size: 20px;
	}
	.cmn_faq .bg dl {
		border-radius: 20px;
		padding: 15px;
		font-size: 100%;
	}
	.cmn_faq .bg dl dt::before, .cmn_faq .bg dl dd::before {
		font-size: 20px;
	}
	.cmn_faq .bg dl dt, .cmn_faq .bg dl dd {
		padding: 1px 0 1px 25px;
	}
	.cmn_faq .bg dl dt {
		padding-right: 25px;
		background-size: 20px auto;
	}
	.cmn_faq .bg dl dd {
		padding-top: 14px;
	}
	.cmn_contact {
		padding: 40px 0;
	}
	.cmn_contact .btn_wrap {
		display: block;
	}
	.cmn_contact a {
		width: 100%;
		margin-bottom: 15px;
		padding: 3px;
	}
	.cmn_contact a:last-of-type {
		margin-bottom: 0;
	}
	.cmn_contact a .in {
		padding: 10px;
	}
	.cmn_contact a .in .no {
		margin-bottom: 10px;
		font-size: 22px;
	}
	.cmn_contact a.mail .in .no {
		margin-bottom: 10px;
	}
	.btn01 a {
		width: 260px;
	}
	.mb { margin-bottom: 40px; }
	.pt { padding-top: 40px; }
	.pb { padding-bottom: 40px; }
}
@media only screen and (max-width: 320px){
	.cmn_faq .bg dl {
		padding: 11px;
	}
/*	.cmn_faq .bg dl dt, .cmn_faq .bg dl dd {
		padding: 1px 0 1px 22px;
	}*/
}
/*------------------------------------------------*/
/* パンくずリスト */
#page_navi {
	margin-bottom: 50px;
	padding-top: 30px;
	color: var(--color-thin);
	font-size: 12px;
	line-height: 1;
	/* フレックス */
	display: flex;
	flex-wrap: wrap;
	gap: 0.5em;
}
#page_navi li+li:before {
	content: ">";
	margin-right: 0.5em;
}
#page_navi a {
	color: var(--color-thin);
	text-decoration: none;
}
@media only screen and (max-width: 768px) {  /* タブレット以下 */
	#page_navi {
		margin-bottom: 30px;
		padding-top: 15px;
		font-size: 11px;
	}
}
/*------------------------------------------------*/
/* テーブル */
.tbl {
	width: 100%;
	background: #fff;
}
.tbl th,
.tbl td {
	padding: 14px;
	border: 1px solid var(--color-tbl-border);
}
.tbl th {
	white-space: nowrap;
	background: var(--color-tbl-th);
}
@media only screen and (max-width: 640px){ /* スマホ */
	.tbl {
		border-bottom: 1px solid var(--color-tbl-border);
	}
	.tbl th,
	.tbl td {
		display: block;
		width: auto;
		padding: 10px;
		border-bottom: none;
	}
}
/*------------------------------------------------*/
/* 注意書き */
p.attention {
	margin-left: 1em;
	text-indent: -1em;
}
/*------------------------------------------------*/
/* 横100％ */
.w100 {
	width: 100vw;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
}
/*------------------------------------------------*/
/* 横100％背景 */
.bg_wide {
	position: relative;
}
.bg_wide::before,
.bg_wide.bg_after::after {
	position: absolute;
	left: 0;
	top: 0;
	display: block;
	width: 100vw;
	height: 100%;
	margin-left: calc(((100vw - 100%) / 2) * -1);
	margin-right: calc(((100vw - 100%) / 2) * -1);
	content: "";
	z-index: -1;
}
@media only screen and (max-width: 1150px) {
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 50px);
		margin-left: -25px;
		margin-right: 0;
	}
}
@media only screen and (max-width: 640px){ /* スマホ */
	.w100,
	.bg_wide::before,
	.bg_wide.bg_after::after {
		width: calc(100% + 40px);
		margin-left: -20px;
		margin-right: 0;
	}
}
/*------------------------------------------------*/
/* フレックスボックス */
.box_flex_sp {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
}
.box_flex_sp.rev { flex-direction: row-reverse; }
.box_flex_sp.vcen { align-items: center; }
.box_flex_sp.vtop { align-items: flex-start; }
.box_flex_sp.htop { justify-content: flex-start; }
.box_flex_sp.hcen { justify-content: center; }
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_flex {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.box_flex.rev { flex-direction: row-reverse; }
	.box_flex.vcen { align-items: center; }
	.box_flex.vtop { align-items: flex-start; }
	.box_flex.htop { justify-content: flex-start; }
	.box_flex.hcen { justify-content: center; }
}
/*------------------------------------------------*/
/* 箱のパディング */
.box_pad {
	padding: 20px;
}
@media print, screen and (min-width: 641px){ /* PC用 */
	.box_pad { padding: 30px; }
}
