﻿@charset "utf-8";
/* Foundation
***********************************************************************/
:root{
	--color-text: #1f233b;
	--color-text-gray: #7e7f88;
	--color-text-gray-dark: #5f5f5f;
	--color-gray: #8e9599;
	--color-gray-light: #d8d8d8;
	--color-primary: #3151a4;
	--color-primary-rgb: 23, 75, 207;
	--color-accent: #ce3c5c;
	--color-bg-primary-soft: #38549f;/*sectionなど広範囲の背景*/
	--color-bg-primary-pail: #e1eafa;/*cardなどの背景*/
	--color-bg-primary-light: #c8dafa;
	--color-bg-primary-gray: #ebeef5;/*section*/
	--color-bg-primary-dark: #3c466c;/*gnav,footer*/
}
*,
:before,
:after{
	box-sizing:border-box;
}
html,
body{
	height: 100%;
}
html{
	position: relative;
	font-size: 62.5%;
	scroll-padding: 20px;
}
body{
	color: var(--color-text);
	font-family:"Arial", "游ゴシック体", "Yu Gothic","游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "yu-gothic-pr6n", "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
	font-weight: 400;
	font-size: 1.6rem;
	line-height: 1.8;
	letter-spacing: .02em;
	-webkit-text-size-adjust:100%;
}
figure{
	display: grid;
	justify-content: center;
}
img{
	max-width: 100%;
	vertical-align: middle;
}
:focus-visible{
	outline: 1px solid var(--color-primary);
}
sup{
	vertical-align: super;
	font-size: 1.2rem;
}

/* a
***********************************************************************/
a{
	color: var(--color-primary);
	cursor: pointer;
	text-decoration: none;
	word-break: break-all;
}
:is(main, .pagetop) a{
	text-decoration: underline;
}
figure a{
	display: inline-block;
}
section[class="u-bg-primary"] a:not(.btn){
	color: #fff;
}
[target="_blank"]::after{
	content: url(../images/icon_blank_wh.svg);
	display: inline-block;
	height: 1em;
	aspect-ratio: 1;
	margin-left: 4px;
}
main section:not([class="u-bg-primary"]) [target="_blank"]::after{
	content: url(../images/icon_blank_primary.svg);
}
.btn_area{
	display: grid;
	place-content: center;
	gap: 15px;
	grid-template-columns: repeat(auto-fit, minmax(200px, auto));
	margin-top: 20px;
}
.sec_content > .btn_area:last-child{
	margin-top: 40px;
}
.btn{
	display: grid;
	align-items: center;
	grid-template-columns: 1fr auto 1fr;
	gap: 10px;
	border: 0;
	font-weight:bold;
	line-height: 1.5;
	padding: 10px 15px;
	border-radius: 5px;
	cursor: pointer;
	white-space: normal;
	text-decoration: none !important;
	transition: opacity .2s;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.btn::before{
	content: "";
}
.btn::after{
	content: "";
	display: inline-block;
	justify-self: end;
	width: 8px;
	height: 8px;
	border-right: 2px solid;
	border-top: 2px solid;
	transform: rotate(45deg);
}
.btn_s{
	width: auto;
	white-space: nowrap;
}
.btn_l{
	font-size: 2.2rem;
	padding: 15px 25px;
}
.btn_primary{
	color: #fff;
	background: var(--color-primary);
}
.btn_primary.btn_l{
	background: var(--color-bg-primary-soft);
}
.btn_primary_light{
	color: var(--color-primary);
	background: var(--color-bg-primary-light);
}
.btn_white{
	color: var(--color-primary);
	background: #fff;
}
.btn_ghost{
	color: #fff;
	border: 1px solid;
}
.btn_red{
	color: #fff;
	background: #ba2828;
	align-items: center;
}
.btn_orange{
	color: #fff;
	background: #e67022;
}
.btn_yellow{
	color: #fff;
	background: #f2c40b;
}
.btn_red::after,
.btn_orange::after,
.btn_yellow::after{
	content: "" !important;
}
:is(.btn_red, .btn_orange, .btn_yellow) .label{
	display: block;
	background: #fff;
}
.btn_red .label{
	color: #ba2828;
}
.btn_orange .label{
	color: #e67022;
}
.btn_yellow .label{
	color: #b2990a;
}


/* layout
----------------------------------------------------------------------*/
.layout{
	padding: 0 20px;
	margin: 0 auto;
	width: 100%;
}

/* gnav
***********************************************************************/
header{
	position: fixed;
	inset: 0 auto auto 0;
	width: 100%;
	height: 50px;
	background: #fff;
	z-index: 100;
	transition: transform .2s;
}
header::before{
	content: "";
	position: absolute;
	inset: 50px auto auto 0;
	width: 100%;
	height: 1px;
	background: var(--color-gray-light);
}
header.is-hidden{
	transform: translateY(-100%);
}
nav > .layout{
	position: fixed;
	height: 50px;
	padding: 0;
}
.gnav_wrap, .gnav_info{
	opacity: 0;
	visibility: hidden;
	transition: opacity .2s;
}
.gnav_wrap{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 80px 20px 17rem;
	background: var(--color-bg-primary-dark);
	overflow-y: auto;
}
header.is-active :is(.gnav_wrap, .gnav_info){
	visibility: visible;
	opacity: 1;
}
nav > .layout,
header.is-active .logo_wrap{
	top: 0;
	left: 0;
	width: 100%;
	z-index: 100;
}
nav > .layout{
	padding: 0;
}
.logo_wrap{
	position: relative;
	padding: 10px 20px;
	width: 100%;
	height: 50px;
	background: #fff;
	z-index: 100;
	flex: none;
}
.logo a{
	display: inline-block;
}
.logo img{
	height: 30px;
}
.gnav{
	padding-bottom: 30px;
}
.gnav > li + li{
	margin-top: 1.5rem;
}
.gnav .acc{
	position: static;
	background: transparent;
	border: 0;
}
.gnav .acc a{
	color: rgba(255,255,255,.7);
}
.gnav .acc_ttl{
	justify-content: space-between;
	padding: 0;
	color: #fff;
	font-size: 2.2rem;
}
.gnav .acc_ttl::after{
	border-color: currentColor;
}
.gnav .acc_content > .layout{
	display: grid;
	gap: 15px 30px;
	padding: 0;
	margin: 15px 0 40px;
}
.gnav_info{
	position: fixed;
	inset: auto auto 0 0;
	width: 100%;
}
.h_top{
	padding: 20px;
	border-top: 1px solid;
	background: var(--color-bg-primary-dark);
	color: #fff;
	text-align: center;
}
.h_top a{
	display: inline-flex;
	align-items: center;
	gap: 2px;
	font-size: 2.4rem;
	font-weight: bold;
	color: currentColor;
}
.h_top a::before{
	content: "";
	height: 1em;
	aspect-ratio: 17 / 18;
	background: url(../images/icon_tel_wh.svg) center / contain no-repeat;
}
.btn_area_gnav{
	display: grid;
	grid-template-columns: 1fr 1fr;
}
.btn_gnav{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	padding: 15px 0 30px;
	font-weight: bold;
	text-align: center;
}
.btn_gnav::before,
.btn_gnav::after{
	content: "";
	position: absolute;
	margin: 0 auto;
}
.btn_gnav::before{
	inset: auto 0 12px 0;
	width: 6px;
	height: 6px;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
	z-index: 1;
}
.btn_gnav.btn_primary::before{
	border-color: var(--color-primary);
}
.btn_gnav.btn_primary_light::before{
	border-color: var(--color-bg-primary-pail);
}
.btn_gnav::after{
	inset: auto 0 7px 0;
	width: 16px;
	height: 16px;
	border-radius: 50%;
}
.btn_gnav.btn_primary::after{
	background: #fff;
}
.btn_gnav.btn_primary_light::after{
	background: var(--color-primary);
}

/*hamburger_menu*/
#hamburger_menu{
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 10px;
	margin: auto 0;
	width: 50px;
	height: 50px;
	cursor: pointer;
	z-index: 100;
}
#hamburger_menu span{
	display: block;
	position: relative;
	width: 30px;
	height: 3px;
	background: var(--color-primary);
}
#hamburger_menu span::before,
#hamburger_menu span::after{
	content: "";
	position: absolute;
	left: 0;
	width: inherit;
	height: inherit;
	background: var(--color-primary);
	transition: transform .2s;
}
#hamburger_menu span::before{
	top: -8px;
}
#hamburger_menu span::after{
	top: 8px;
}
header.is-active #hamburger_menu span{
	background: transparent;
	z-index: 100;
}
header.is-active #hamburger_menu span::before,
header.is-active #hamburger_menu span::after{
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	background: var(--color-primary);
}
header.is-active #hamburger_menu span::before{
	transform: rotate(45deg);
}
header.is-active #hamburger_menu span::after{
	transform: rotate(135deg);
}

/* pagetop
----------------------------------------------------------------------*/
.pagetop{
	padding-top: 25px;
}
.pagetop_ttl{
	position: relative;
	margin: 20px 0 10px;
	font-size: 3.6rem;
	font-weight: bold;
	line-height: 1.5;
	opacity: 0;
	animation: fade_in .6s ease-out .1s forwards;
}
.pagetop_ttl::after{
	content: "";
	position: absolute;
	inset: 0 0 0 auto;
	width: 100%;
	height: 2em;
	margin: auto 0;
	background: url(../images/pagetop_img.svg) center right / contain no-repeat;
	opacity: 0.7;
	z-index: -1;
}
.pagetop_txt{
	padding-top: 20px;
	opacity: 0;
	animation: fade_in .6s ease-out .2s forwards;
}

/* main
----------------------------------------------------------------------*/
section{
	padding: 60px 0;
}
section:first-child{
	margin-top: 35px;
}
section:first-child:not([class*="u-bg-"]){
	padding-top: 0;
}
section[class*="u-bg-"]{
	padding: 60px 0;
}
section[class*="u-bg-"]:last-child{
	margin-bottom: -60px;
}
.sec_ttl{
	display: grid;
	justify-content: center;
	margin-bottom: 20px;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
}
.sec_ttl::after{
	content: "";
	display: block;
	width: 30px;
	margin: 10px auto 0;
	border-bottom: 5px dotted var(--color-primary);
}
.u-bg-primary .sec_ttl{
	margin-top: 0;
	color: #fff;
}
.u-bg-primary .sec_ttl::after{
	border-color: currentColor;
}
section > .txt_area{
	margin: -10px auto 40px;
}
.txt_area > * + *{
	margin-top: 1em;
}
.txt_area.u-ta-c{
	text-align: left;
}
.item_ttl{
	margin-bottom: 4px;
	font-size: 2rem;
	font-weight: bold;
	line-height: 1.5;
}
.item_ttl + :is(.media, .table_wrap){
	margin-top: 15px;
}
.item_ttl + .txt_area{
	margin-top: 10px;
}
* + .item_ttl,
.txt_area + .sec_content > .item_ttl:first-child{
	margin-top: 60px;
}

/*icon*/
.icon_circle{
	display: flex;
	gap: 4px;
	align-items: start;
}
.icon_circle::before{
	content: "";
	display: inline-block;
	position: relative;
	top: .5em;
	width: .5em;
	aspect-ratio: 1;
	background: var(--color-primary);
	border-radius: 50%;
	flex: none;
}

/*icon_wrap*/
.icon_wrap{
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	align-items: center;
	line-height: 1;
}
.icon_wrap.nowrap{
	flex-wrap: nowrap;
}
.icon_wrap.u-b-gray-light{
	justify-content: center;
	background: #fff;
}
.media_img.icon_wrap{
	justify-content: center;
}
.icon_wrap.item3{
	display: grid;
	grid-template-columns: repeat(3, auto);
}

/*breadcrumb*/
.breadcrumb{
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 2px 15px;
	padding: 6px 0;
}
.breadcrumb a{
	color: var(--color-text);
	text-decoration: underline;
}
.breadcrumb > li{
	color: var(--color-text-gray);
}
.breadcrumb li:not(:last-child)::after{
	content: "";
	display: inline-block;
	position: relative;
	left: 7px;
	width: 8px;
	height: 8px;
	border-right: 1px solid var(--color-text-gray);
	border-bottom: 1px solid var(--color-text-gray);
	transform: rotate(-45deg);
	flex: none;
}

/*acc*/
.acc{
	position: relative;
	background: #fff;
	border-radius: 5px;
}
.acc > input[type="checkbox"]{
	display: none;
}
.acc_ttl{
	display: flex;
	align-items: center;
	gap: 8px;
	padding: 4px 10px;
	font-weight: bold;
	border-radius: 5px;
	cursor: pointer;
}
.acc_ttl::after{
	content: "";
	display: inline-block;
	position: relative;
	top: 2px;
	width: 6px;
	height: 6px;
	border-right: 1px solid var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	transform: rotate(-135deg);
	flex: none;
}
.acc_content{
	height: 0;
	margin: 0;
	opacity: 0;
	visibility: hidden;
	transition: padding .2s ease-out, opacity .2s linear, height .2s ease-out;
}
input:checked + .acc_ttl::after{
	top: -2px;
	transform: rotate(45deg);
}
input:checked ~ .acc_content{
	height: auto;
	opacity: 1;
	visibility: visible;
}

/*faq*/
.faq > li + li{
	margin-top: 4px;
}
.faq .acc_ttl{
	justify-content: start;
	background: rgba(var(--color-primary-rgb), .15);
}
.faq .acc_ttl::before{
	display: inline-grid;
	place-content: center;
	width: 1.5em;
	height: 1.5em;
	background: var(--color-primary);
	color: #fff;
	font-weight: bold;
	border-radius: 50%;
}
.faq .acc_ttl::before{
	content: "Q";
}
.faq .acc_ttl::after{
	margin-left: auto;
}
input:checked ~ .acc_content{
	padding: 6px 10px 20px;
}

/*label*/
.label_wrap{
	display: inline-flex;
	flex-wrap: wrap;
	gap: 4px;
}
.label{
	display: inline-block;
	padding: 2px 6px;
	border-radius: 5px;
	font-size: 1.4rem;
	line-height: 1.5;
	vertical-align: text-bottom;
}

/*card*/
.card{
	padding: 20px;
	border-radius: 5px;
	background: #fff;
}
:not(.media) > .card + .card{
	margin-top: 30px;
}
.card.center_x{
	text-align: center;
}
.card.center_x .icon_wrap{
	justify-content: center;
}
.sec_card{
	padding: 50px 20px;
}
section:not(:first-child) .sec_card{
	margin: -60px auto;
}

/*media*/
.media,
.media_rev{
	display: flex;
	flex-direction: column;
	gap: 20px 30px;
	align-items: start;
}
.media + .media{
	margin-top: 60px;
}
.media.item2,
.media.item3{
	display: grid;
}
.media.item3{
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}
.media_txt{
	flex: 1;
}
.media_img{
	margin: 0 auto;
}

/*grid*/
.grid{
	display: grid;
	gap: 60px 30px;
}
.grid .item_ttl{
	text-align: center;
}
.grid.item4{
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}
.grid.item5{
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
}
.subgrid{
	display: grid;
	gap: 20px;
	grid-template-rows: subgrid;
}
.subgrid.item2{
	grid-row: span 2;
}
.subgrid.item3{
	grid-row: span 3;
}
.subgrid.item4{
	grid-row: span 4;
}
.subgrid.item5{
	grid-row: span 5;
}
.subgrid > *{
	margin-top: 0 !important;
}
.subgrid figure{
	place-content: center;
}
.subgrid .item_ttl{
	margin-bottom: 0;
}

/*numbering*/
.numbering{
	counter-reset: numbering;
}

/*list*/
.list_disc > li{
	position: relative;
	padding-left: 16px;
}
.list_disc > li::before{
	content: "";
	position: absolute;
	top: calc(0.85em - 3px);
	left: 0;
	width: 6px;
	height: 6px;
	background: currentColor;
	border-radius: 50%;
}
:is(.list_rice, .list_rice_num) > li{
	position: relative;
}
.list_rice > li{
	padding-left: 1em;
}
:is(.list_rice, .list_rice_num) > li::before{
	position: absolute;
	inset: 0 auto auto 0;
}
.list_rice > li::before{
	content: "※";
}
.list_rice_num,
.list_rice_num_wrap{
	counter-reset: list_rice_num;
}
.list_rice_num_wrap .list_rice_num{
	counter-reset: none;
}
.list_rice_num > li{
	padding-left: 2.5em;
}
.list_rice_num > li::before{
	content: "※" counter(list_rice_num);
	counter-increment: list_rice_num;
}
.list_num,
.list_num_bracket{
	counter-reset: list_num;
}
.list_num > li,
.list_num_bracket > li{
	position: relative;
	padding-left: 1.5em;
}
.list_num > li::before,
.list_num_bracket > li::before{
	counter-increment: list_num;
	position: absolute;
	inset: 0 auto auto 0;
	color: var(--color-text-gray);
	font-weight: bold;
}
.list_num > li::before{
	content: counter(list_num) ".";
}
.list_num_bracket > li::before{
	content: "(" counter(list_num) ")";
}

/*dl_table_wrap*/
:is(.dl_table_wrap, .dl_grid_wrap){
	display: grid;
	gap: 0 20px;
}
:not(form) .dl_table_wrap{
	gap: 1em 0;
}
:not(form) .dl_table_wrap dl{
	display: grid;
	grid-template-columns: subgrid;
	grid-column: span 2;
	gap: 0 20px;
	align-items: baseline;
	/* grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); */
}
form .dl_table_wrap dl{
	padding: 20px 0;
}
form .dl_table_wrap dl{
	border-top: 1px solid var(--color-gray);
}
form .dl_table_wrap dl:last-child{
	border-bottom: 1px solid var(--color-gray);
}
:is(form .dl_table_wrap, .dl_grid_wrap) dt{
	font-weight: bold;
}

/*table*/
.taxin::before{
	content: "（税込）";
	display: block;
	font-size: 1.2rem;
	text-align: right;
}
.table_wrap:not(.scroll_x) :is(table, tbody, tr, th, td){
	display: block;
}
table{
	width: 100%;
}
table .u-ta-r{
	text-align: left;
}
.table_wrap:not(.scroll_x) thead{
	display: none;
}
tbody{
	background: #fff;
}
tr + tr{
	margin-top: -1px;
}
thead + tbody tr + tr{
	margin-top: 10px;
}
th,td{
	border:1px solid var(--color-gray);
	padding: 4px 10px;
}
:is(th, td).u-ta-r{
	text-align: left;
}
tbody th{
	background: #8497bd;
	color: #fff;
}
th,
table [data-label]::before{
	background: #d5deee;
	font-weight: bold;
	line-height: 1.5;
	text-align: left;
}
.subhead{
	background: #edf1f7;
}
.table_wrap:not(.scroll_x) .subhead{
	display: none;
}
th a{
	color: #fff;
}
table td{
	margin-top: -1px;
}
table [data-label]::before{
	content: attr(data-label);
	display: block;
	padding: 2px 10px;
	margin: -4px -10px 4px;
	border-bottom: 1px solid var(--color-gray);
}
table .subhead + [data-label]{
	display: flex;
	flex-wrap: wrap;
	align-items: baseline;
}
table .subhead + [data-label]::before{
	content: attr(data-label) "：";
	display: inline;
	padding: 0;
	margin: 0;
	border-bottom: 0;
	background: transparent;
}
td[data-label="カードブランド"] .icon_wrap{
	padding: 6px 0;
}
.table_wrap.scroll_x thead th{
	vertical-align: middle;
	text-align: center;
}
.scroll_x.sticky tr :first-child{
	position: sticky;
	inset: 0 auto auto 0;
}
.scroll_x.sticky tr :first-child::before{
	content: "";
	position: absolute;
	inset: 0 auto auto -1px;
	width: calc(100% + 2px);
	height: 100%;
	border-right: 1px solid var(--color-gray);
	border-left: 1px solid var(--color-gray);
}

/*scroll*/
.scroll_y{
	overflow-y: auto;
	max-height: 250px;
}
.scroll_x{
	overflow-x: auto;
	white-space: nowrap;
}
.scroll_x *{
	white-space: nowrap;
}
.is-scrollable{
	padding-top: 35px;
}
.scroll_x dl:not(.dl_table_ttl) :is(dt, dd){
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
}
.scroll-hint-icon-wrap{
	top: 0;
	opacity: 1 !important;
}
.scroll-hint-icon {
	top: 0;
	left: 0;
	padding: 4px 10px 2px;
	width: auto;
}
.scroll-hint-icon:before,
.scroll-hint-icon:after{
	content: none;
}
.scroll-hint-text {
	font-size: 1.4rem;
}

/*gmap*/
section:last-child .gmap{
	margin-bottom: -60px;
}
.gmap{
	line-height: 0;
	margin-top: 40px;
}
.gmap iframe{
	aspect-ratio: 16 / 5;
	width: 100%;
	height: auto;
	border: 0;
}

/*sec_list*/
.sec_list.numbering{
	padding-top: 30px;
}
.sec_list > li{
	position: relative;
	padding: 30px 0;
	border-top: 1px solid var(--color-gray);
}
.sec_list > .media{
	flex-direction: column;
}
.sec_list.numbering > li{
	padding: 30px 0 55px;
}
.sec_list.numbering > li::before{
	content: counter(numbering, decimal-leading-zero);
	counter-increment: numbering;
	position: absolute;
	inset: -1.2em auto auto 0;
	color: var(--color-text-gray);
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
}
.sec_list > li:last-child{
	border-bottom: 1px solid var(--color-gray);
}
.sec_list.numbering > li:last-child{
	border-bottom: 0;
	padding-bottom: 0;
}
.sec_list > .media + .media{
	margin-top: 0;
}
.sec_list .media_img .icon_wrap{
	justify-content: center;
}
.sec_list .media_txt{
	flex: 1;
	width: 100%;
}
.sec_list .media .item_ttl{
	text-align: center;
}
.icon_m{
	height: 1em;
	aspect-ratio: 1;
}

/*sec_flow*/
.sec_flow > li{
	position: relative;
	gap: 10px 30px;
	padding-left: calc(3rem + 6px);
}
.sec_flow .media_txt::before{
	content: counter(numbering);
	counter-increment: numbering;
	display: inline-grid;
	place-content: center;
	position: absolute;
	inset: 0 auto auto 0;
	background: var(--color-primary);
	width: 3rem;
	height: 3rem;
	margin: 0 6px 4px 0;
	border-radius: 50%;
	color: #fff;
	font-size: 2.2rem;
	font-weight: bold;
	line-height: 1;
}
.sec_flow > li + li{
	margin-top: 60px;
}
.sec_flow .media_txt{
	flex: 1;
}
.sec_flow .media_img{
	text-align: center;
}

/*list_flow*/
.list_flow{
	--gap: 18px;
	position: relative;
	display: grid;
	justify-content: center;
	gap: var(--gap);
	counter-reset: list_flow;
	font-weight: bold;
	z-index: 0;
}
.list_flow > li{
	position: relative;
	display: grid;
	grid-template-columns: subgrid;
	grid-auto-flow: row;
	grid-column: span 3;
	gap: 10px;
	padding-left: 50px;
	min-height: 40px;
}
.list_flow > li::after{
	content: "";
	position: absolute;
	top: 0;
	left: 18px;
	width: 4px;
	height: calc(100% + var(--gap));
	font-size: 2rem;
	background: var(--color-primary);
	z-index: -1;
}
.list_flow > li:last-child::after{
	height: 0;
}
.list_flow > li::before{
	content: counter(list_flow);
	counter-increment: list_flow;
	display: grid;
	place-content: center;
	position: absolute;
	inset: 0 auto auto 0;
	width: 40px;
	height: 40px;
	color: #fff;
	font-size: 2rem;
	background: var(--color-primary);
	border-radius: 50%;
	flex: none;
}
.list_flow .media_txt{
	display: flex;
	align-items: center;
}
.list_flow_l{
	--gap: 60px;
}
.list_flow_l > li{
	display: block;
	padding-left: 60px;
}
.list_flow_l figure{
	justify-content: start;
	margin-bottom: 20px;
}
.list_flow_l > li > div{
	font-size: 1.6rem;
	font-weight: normal;
}
.list_flow_l .btn_area{
	justify-content: start;
}

/*sec_link*/
.sec_link{
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
}
.sec_link a{
	position: relative;
	display: flex;
	align-items: center;
	gap: 10px;
	position: relative;
	padding: 8px 50px 8px 20px;
	background: var(--color-bg-primary-gray);
	color: var(--color-text-gray);
	font-weight: bold;
	text-decoration: none;
}
.sec_link > li:first-child > a{
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
}
.sec_link > li:last-child > a{
	border-bottom-left-radius: 5px;
	border-bottom-right-radius: 5px;
}
.sec_link > li + li a::before{
	content: "";
	position: absolute;
	inset: 0 0 auto 0;
	width: calc(100% - 40px);
	height: 1px;
	margin: 0 auto;
	background: #fff;
	z-index: 1;
}
.sec_link a::after{
	content: "";
	position: absolute;
	inset: 0 20px 0 auto;
	margin: auto 0;
	width: 8px;
	height: 8px;
	border-right: 1px solid var(--color-primary);
	border-bottom: 1px solid var(--color-primary);
	transform: rotate(45deg);
}
.sec_link a.is-active{
	background: var(--color-bg-primary-light);
	color: var(--color-text);
	pointer-events: none;
}
.sec_link_content{
	margin-top: 40px;
}
.sec_link_content > li{
	margin-top: 0 !important;
	transition: opacity .4s;
}


/*lightbox*/
a[data-lightbox]:not(.lightbox_txt){
	pointer-events: none;
}
.lightbox img{
	max-width: none;
}

/* form
----------------------------------------------------------------------*/
.control_wrap{
	display: flex;
	flex-wrap: wrap;
	gap: .5em;
}
.select_wrap{
	position: relative;
	display: inline-block;
}
.select_wrap::before{
	content: "";
	position: absolute;
	inset: 0 12px 4px auto;
	margin: auto 0;
	width: 8px;
	height: 8px;
	border-top: 2px solid var(--color-text);
	border-right: 2px solid var(--color-text);
	transform: rotate(135deg);
}
input,
select,
textarea{
	padding: 6px;
	min-width: 50px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	color: var(--color-text);
	font-size: 1.6rem;
}
input,
.select_wrap select,
textarea{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
input{
	min-height: 44px;
}
input[type="radio"],
input[type="checkbox"]{
	display: none;
}
form input + .btn{
	width: auto;
	min-height: 44px;
	margin-left: 6px;
}
.control_xs{
	width: 5rem;
}
.control_s{
	width: 10rem;
}
.control_m{
	width: 20rem;
}
.control_l{
	width: 100%;
}
select{
	padding-right: 28px;
}
textarea{
	width: 100%;
}
::placeholder{
	color: #666;
}
.required::after{
	content: "必須";
	display: inline-block;
	padding: 4px;
	margin: 0 0 4px 6px;
	background: var(--color-primary);
	border-radius: 5px;
	color: #fff;
	font-size: 1.4rem;
	font-weight: bold;
	line-height: 1;
}
.checkbox_txt{
	display: inline-flex;
	align-items: center;
	gap: 0 5px;
	position: relative;
	min-height: 18px;
	padding: 6px 6px 6px calc(1.5em + 8px);
	border-radius: 5px;
	cursor: pointer;
	vertical-align: middle;
	background: rgba(var(--color-primary-rgb), .15);
	transition: background .1s ease-in-out, border .1s ease-in-out;
}
.checkbox_txt::after,
.checkbox_txt::before{
	content: "";
	display: inline-block;
	position: absolute;
}
.checkbox_txt::after{
	inset: 0 auto 2px 6px;
	width: 7px;
	height: 10px;
	margin: auto;
	transition: transform .06s .04s;
	transform: rotate(90deg);
}
input:checked + .checkbox_txt::after{
	border-right: 2px solid #fff;
	border-bottom: 2px solid #fff;
	transform: rotate(45deg);
	z-index: 1;
}
input + .checkbox_txt::after{
	inset: 13px auto auto 13px;
	margin: auto 0;
}
.checkbox_txt::before{
	inset: 8px auto 0 6px;
	width: 22px;
	height: 22px;
	border: 1px solid #ccc;
	border-radius: 5px;
	background: #fff;
	transition: background .1s;
}
input:checked + .checkbox_txt::before{
	background-color: var(--color-primary);
	border-color: var(--color-primary);
}

/*error*/
.is-error{
	background-color: #ffe6ea !important;
	border: 1px solid #f9000d;
	border-radius: 5px;
}
.error_box{
	margin-top: 20px;
}
.error_txt{
	color: #f9000d;
}


/* Footer
----------------------------------------------------------------------*/
footer,
footer a{
	color: #fff;
}
footer{
	position: sticky;
	top: 100vh;
	top: 100dvh;
	padding-top: 60px;
	margin-top: 60px;
	background: var(--color-bg-primary-dark);
}
.asj_logo{
	justify-content: start;
}
.asj_logo a::after{
	content: none;
}
.asj_logo img{
	height: 26px;
}
.fnav{
	display: grid;
	gap: 10px 30px;
	margin-top: 30px;
}
.fnav_head{
	font-size: 2rem;
	font-weight: bold;
}
.fnav li:not(.fnav_head){
	display: none;
}
.fnav_mark{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 10px;
	padding: 10px 20px;
	margin-top: 30px;
	background: #fff;
	border-radius: 5px;
}
.fnav_mark img{
	max-height: 40px;
}
.fnav_sub{
	padding: 8px 0;
	margin-top: 10px;
	border-top: 1px solid;
	border-bottom: 1px solid;
	font-size: 1.4rem;
}
small{
	display: block;
	padding: 4px 20px;
	font-size: 1.2rem;
	text-align: center;
}

/* btn_floating
----------------------------------------------------------------------*/
#btn_floating{
	position: fixed;
	bottom: 10px;
	right: 10px;
	z-index: 99;
}
#btn_floating > div{
	position: relative;
}
#btn_floating input{
	display: none;
}
.btn_floating{
	display: flex;
	align-items: center;
	gap: 10px;
	padding: 8px 20px;
	height: 60px;
	background: var(--color-accent);
	border-radius: 5px;
	color: #fff;
	font-weight: bold;
	line-height: 1.5;
	text-align: center;
	transition: .2s ease-out;
}
#btn_floating .acc_ttl{
	position: absolute;
	inset: auto 10px 50px auto;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	background: #fff;
	border: 2px solid var(--color-accent);
	line-height: 0;
	z-index: 1;
 }
#btn_floating .acc_ttl::before,
#btn_floating .acc_ttl::after{
	display: inline-block;
	position: absolute;
	inset: 0;
	margin: auto;
	background: var(--color-accent);
 }
 #btn_floating input:checked + .acc_ttl::before{
	content: "";
	width: 3px;
	height: 13px;
 }
#btn_floating .acc_ttl::after{
	width: 13px;
	height: 3px;
	border: 0;
	transform: rotate(0);
}
#btn_floating .acc_content{
	opacity: 1;
	visibility: visible;
}
#btn_floating input:checked ~ .btn_floating{
	display: grid;
	place-content: center;
	padding: 8px;
	border-radius: 50%;
	width: 70px;
	height: 70px;
}
#btn_floating input:checked ~ .btn_floating p{
	display: none;
}

/* anime
***********************************************************************/
@keyframes fade_in{
	100%{
		opacity: 1;
	}
}
.anime_slide_up,
.anime_fade_in{
	opacity : 0;
}
.anime_fade_in{
	transition: opacity .4s ease-in;
}
.anime_slide_up {
	transform: translateY(50px);
	transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1), opacity .4s ease-out;
}

.is-anime,
.is-anime::after,
.is-anime::before{
	opacity: 1;
}
.anime_slide_up.is-anime{
	transform: translate(0);
}

/* utility
***********************************************************************/
.u-fw-b{
	font-weight: bold;
}
.u-fz-12{
	font-size: 1.2rem;
}
.u-fz-14{
	font-size: 1.4rem;
}
.u-fz-1_75em{
	font-size: 1.75em;
	line-height: 1;
}
.u-fz-0_75em{
	font-size: .75em;
}
.u-ta-c{
	text-align: center;
}
.u-ta-r{
	text-align: right;
}
.u-ta-l{
	text-align: left !important;
}
.u-ai-s{
	align-items: start !important;
}
.u-mx-auto{
	margin-right: auto;
	margin-left: auto;
}
.u-w-fit{
	width: fit-content;
}
.u-mt-10{
	margin-top: 10px !important;
}
.u-mt-20{
	margin-top: 20px !important;
}
.u-mt-30{
	margin-top: 30px !important;
}
.u-mt-60{
	margin-top: 60px !important;
}
.u-gap-8{
	gap: 8px !important;
}
.u-jc-c{
	justify-content: center;
}
.u-jc-s{
	justify-content: start;
}
.u-col-primary{
	color: var(--color-primary);
}
.u-col-accent{
	color: var(--color-accent);
}
.u-bg-primary{
	background: var(--color-bg-primary-soft);
	color: #fff;
}
.u-bg-primary-rgba15{
	background: rgba(var(--color-primary-rgb), .15);
}
.u-bg-primary-pail{
	background: var(--color-bg-primary-pail);
}
.u-bg-primary-gray{
	background: var(--color-bg-primary-gray);
}
.u-bg-gray-light{
	background: var(--color-gray-light);
}
.u-b-gray-light{
	padding: 10px;
	border: 1px solid var(--color-gray-light);
}
img.u-b-gray-light{
	padding: 0;
}
.is-hidden{
	opacity: 0;
	visibility: hidden;
	height: 0 !important;
}
.is-fixed{
	position: fixed;
}
br.is-pc{
	display: none;
}


/*=====================================================================
   769 start
======================================================================*/
@media screen and ( min-width:769px ){

/* a
***********************************************************************/
a:hover{
	text-decoration: none;
}
[href^="tel:"]{
	color: var(--color-text);
	text-decoration: none !important;
	pointer-events: none;
}
.btn{
	transition: background .2s;
}
.btn::after{
	position: relative;
	right: 0;
	transition: right .2s;
}
.btn:hover::after{
	right: -4px;
}
:is(.btn_primary, .btn_primary_light):not(.btn_gnav):hover{
	background: #fff;
	outline: 1px solid;
	color: var(--color-primary);
}
.btn_ghost:hover{
	background: #fff;
	color: var(--color-primary);
}
.btn_white:hover{
	background: var(--color-bg-primary-light);
}
.gnav :is(a, .acc_ttl),
.fnav a{
	transition: opacity .2s;
}
.gnav :is(a, .acc_ttl):hover,
.fnav a:hover{
	opacity: .7;
}

/* layout
----------------------------------------------------------------------*/
.layout{
	max-width: calc(1000px + 20vw);
}

/* pagetop
----------------------------------------------------------------------*/
.pagetop{
	padding: 45px 0;
}
.pagetop_ttl{
	margin-top: 40px;
}
.pagetop_ttl::after{
	opacity: 1;
}
.pagetop_txt{
	margin-top: 30px;
}

/* main
----------------------------------------------------------------------*/
section{
	padding: 80px 0;
}
.sec_ttl{
	font-size: 3rem;
	margin: 0 auto 40px;
}
section > .txt_area{
	text-align: center;
}
section > .txt_area:not(:first-child){
	margin: -20px auto 40px;
}
.item_ttl{
	font-size: 2.2rem;
}
.txt_area.u-ta-c{
	text-align: center;
}
.txt_area .btn_area{
	justify-content: start;
}
.content_w80p{
	max-width: 80%;
	margin-left: auto;
	margin-right: auto;
}

/*card*/
.sec_card{
	padding-left: 40px;
	padding-right: 40px;
}

/*media*/
.media,
.media_rev{
	gap: 20px 30px;
}
.media{
	flex-direction: row;
}
.media.flex_wrap{
	flex-wrap: wrap;
}
.media.item2{
	grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}
.media_rev{
	flex-direction: row-reverse;
	justify-content: start;
}
.media_txt{
	min-width: 50%;
}
.media_txt .btn_area{
	justify-content: start;
}

/*grid*/
.grid:is(.item3, .item4){
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/*dl_table_wrap*/
.dl_table_wrap, .dl_grid_wrap{
	gap: 0 30px;
}
.dl_table_wrap{
	grid-template-columns: repeat(auto-fit, minmax(200px, auto) minmax(50%, 1fr));
}
:not(form) .dl_table_wrap{
	gap: 0;
}
.dl_table_wrap .dl_table_wrap{
	grid-template-columns: repeat(auto-fit, minmax(60px, auto) minmax(50%, 1fr));
}
.dl_grid_wrap{
	grid-template-columns: repeat(auto-fit, minmax(60px, auto) minmax(220px, 1fr));
}
.dl_table_wrap dl + dl{
	padding-top: 0;
}
form .dl_table_wrap dl + dl{
	padding-top: 20px;
}
.dl_table_wrap dl{
	grid-template-columns: repeat(auto-fit, minmax(auto, 200px) minmax(50%, 1fr));
}
:is(form .dl_table_wrap, .dl_grid_wrap) > dl{
	display: grid;
	grid-template-columns: subgrid;
	grid-column: span 2;
	gap: 20px;
	align-items: baseline;
}

/*table*/
:not(.media) > .table_wrap,
:not(.media) > .table_wrap > table{
	max-width: fit-content;
	margin-left: auto;
	margin-right: auto;
}
table{
	display: table !important;
	width: 100%;
}
table .u-ta-r{
	text-align: right;
}
thead{
	display: table-header-group !important;
}
thead th{
	text-align: center;
}
tbody{
	display: table-row-group !important;
}
tr{
	display: table-row !important;
}
th,
td{
	display: table-cell !important;
	vertical-align: middle;
}
tbody th{
	background: #d5deee;
	color: var(--color-text);
	white-space: nowrap;
}
.subhead:first-child{
	border-top: 1px;
}
th a{
	color: var(--color-primary);
}
td[data-label]{
	background: #fff;
}
table [data-label]::before,
table .subhead + [data-label]::before,
.table_wrap.scroll_x::before{
	content: none;
}

/*sec_list*/
.sec_list > .media{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row;
}
.sec_list .media_img{
	margin: 0;
	max-width: 300px;
	width: 100%;
}
.sec_list .media_txt{
	width: auto;
}
.sec_list .media_img .icon_wrap:not(.u-b-gray-light){
	justify-content: start;
}
.sec_list .media .item_ttl{
	text-align: left;
}
.sec_list .btn_area{
	justify-content: start;
}

/*sec_flow*/
.sec_flow > li{
	display: flex;
	flex-wrap: nowrap;
	flex-direction: row-reverse;
	padding-left: 0;
}
.sec_flow .media_txt::before{
	position: static;
}
.sec_flow .media_img{
	margin: 0;
	max-width: 300px;
	width: 100%;
}

/*list_flow*/
.list_flow > li{
	align-items: center;
	padding: 0;
	font-size: 2rem;
}
.list_flow > li::after{
	--position: 50%;
	left: 23px;
	font-size: 3rem;
}
.list_flow > li:first-child::after{
	top: var(--position);
	height: calc(var(--position) + var(--gap));
}
.list_flow > li:last-child::after{
	top: auto;
	bottom: var(--position);
	height: calc(var(--position) + var(--gap));
}
.list_flow > li::before{
	position: static;
	font-size: 3rem;
	width: 50px;
	height: 50px;
}
.list_flow_l > li{
	display: grid;
	gap: 30px;
	align-items: start;
}
.list_flow_l > li::after{
	--position: 100%;
}
.list_flow_l > li:first-child::after{
	top: 0;
}
.list_flow_l figure{
	justify-content: center;
	margin-bottom: 0;
}

/*sec_link*/
.sec_link{
	gap: 6px;
	flex-direction: row;
	margin: 0 auto;
	justify-content: center;
}
.sec_link a{
	display: block;
	padding: 10px;
	height: 100%;
	text-align: center;
	background: transparent;
	transition: background .2s;
}
.sec_link > li a::after{
	inset: auto auto 0 0;
	width: 100%;
	height: 4px;
	border: 0;
	background: var(--color-primary);
	transform: rotate(0);
}
.sec_link > li a:not(.is-active):after{
	content: none;
}
.sec_link a:hover{
	background: var(--color-bg-primary-pail);
	border-radius: 5px;
}
.sec_link > li + li a::before{
	inset: 0 auto 0 0;
	width: 1px;
	height: calc(100% - 20px);
	margin: auto 0;
}
.sec_link a.is-active{
	background: transparent;
}
.sec_link figure{
	width: auto;
}
.sec_link_content .media_img{
	width: 300px;
}
.sec_link_content .btn_area{
	justify-content: start;
}

/*lightbox*/
a[data-lightbox]:not(.lightbox_txt){
	display: inline-block;
	position: relative;
	pointer-events: all;
}
a[data-lightbox]:not(.lightbox_txt)::before{
	content: url(../images/icon_zoom.png);
	position: absolute;
	inset: auto 4px 4px auto;
	line-height: 1;
}

/* form
----------------------------------------------------------------------*/

/* Footer
----------------------------------------------------------------------*/
.fnav{
	grid-template-columns: repeat(3, 1fr);
	gap: 50px 40px;
}
.fnav_head{
	border-bottom: 1px solid;
	margin-bottom: 10px;
	pointer-events: none;
}
.fnav li:not(.fnav_head){
	display: block;
}
.fnav li li{
	position: relative;
	padding-left: 20px;
}
.fnav li li::before{
	content: "";
	position: absolute;
	inset: .4em auto auto 8px;
	width: 8px;
	height: .5em;
	border-bottom: 1px solid;
	border-left: 1px solid;
}
.fnav_mark{
	margin-top: 50px;
}
.fnav_mark img{
	max-height: 100%;
}
.fnav_sub{
	display: flex;
	justify-content: center;
	gap: 20px;
}

/* btn_floating
----------------------------------------------------------------------*/
.btn_floating{
	padding: 8px 30px;
	height: 80px;
}
.btn_floating:hover{
	background: #e16580;
}
#btn_floating input:checked ~ .btn_floating{
	width: 80px;
	height: 80px;
}
#btn_floating .acc_ttl{
	inset: auto 10px 65px auto;
 }

/* utility
----------------------------------------------------------------------*/
.u-ta-r-pc{
	text-align: right;
}
br.is-sp{
	display: none;
}
br.is-pc{
	display: block;
}
.hidden-pc{
	display: none !important;
}

/*=====================================================================
   769 end
======================================================================*/
}

/*=====================================================================
   930 start
======================================================================*/
@media screen and ( min-width:930px ){
	body{
		position: static !important;
		margin-top: 102.59px;
	}

/* gnav
***********************************************************************/
header{
	height: auto;
	border-bottom: 1px solid var(--color-gray-light);
}
header::before{
	content: none;
}
nav > .layout{
	display: flex;
	align-items: flex-end;
	gap: 30px;
	position: static;
	padding: 0 20px;
	margin: 0 auto;
	height: auto;
	max-width: 100%;
}
.gnav_wrap{
	display: block!important;
	position: static;
	padding: 0;
	height: auto;
	background: transparent;
	overflow-y: visible;
	visibility: visible;
	opacity: 1;
}
.logo_wrap{
	padding: 1.5rem 0;
	width: auto;
	height: auto;
	background: transparent;
	box-shadow: none;
}
header.is-active .logo_wrap{
	width: auto;
}
.logo img{
	height: 45px;
}
.gnav{
	display: flex;
	justify-content: end;
	align-items: end;
	gap: 30px;
	padding-bottom: 0;
}
.gnav > li + li{
	margin-top: 0;
}
.gnav .acc a{
	color: #fff;
}
.gnav .acc_ttl{
	display: inline-flex;
	color: var(--color-text);
	font-size: 1.6rem;
	padding-bottom: 8px;
}
.gnav .acc_ttl::after{
	border-color: var(--color-primary);
}
.gnav input:checked ~ .acc_content{
	height: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
}
.gnav .acc_ttl{
	pointer-events: none;
	transition: opacity .2s;
}
.gnav .acc_content{
	position: absolute;
	inset: auto 0 -26rem 0;
	width: 100vw;
	height: 26rem !important;
	padding: 30px 20px;
	margin: 0 auto;
	background: var(--color-bg-primary-dark);
	box-shadow: 0 5px 15px rgba(0, 0, 0, .1);
	transition: opacity .2s;
}
.gnav .acc_content > .layout{
	display: grid;
	justify-content: center;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 15px 50px;
	padding: 0 20px;
	margin: auto;
}
.gnav input:checked + .acc_ttl::after{
	top: 2px;
  transform: rotate(-135deg);
}
.gnav .acc:hover .acc_ttl{
	opacity: .7;
}
.gnav .acc:hover .acc_ttl::after{
	top: -2px;
  transform: rotate(45deg);
}
.gnav .acc:hover .acc_content{
	opacity: 1;
	visibility: visible;
}
.gnav_info{
	position: relative;
	display: block !important;
	margin-right: -20px;
	flex: 1;
	opacity: 1;
	visibility: visible;
}
.btn_area_gnav{
	display: inline-grid;
	grid-template-columns: 9.5rem 9.5rem;
}
.btn_gnav{
	transition: opacity .2s;
}
.btn_gnav:hover{
	opacity: 0.7;
}
.h_top{
	display: flex;
	justify-content: end;
	align-items: center;
	gap: 10px;
	position: absolute;
	inset: 0 19rem auto auto;
	width: calc(100vw - 40px - 19rem);
	max-width: calc(980px - 19rem);
	background: transparent;
	border-top: 0;
}
.h_top,
.h_top a{
	color: var(--color-text);
	font-size: 1.4rem;
	font-weight: normal;
}
.h_top a::before{
	background: url(../images/icon_tel_bk.svg) center / contain no-repeat;
}

/*hamburger_menu*/
#hamburger_menu{
	display: none;
}

/*=====================================================================
   769 end
======================================================================*/
}