@charset "UTF-8";
/* CSS Document */


/* ボタン　================================================== */
.btn_wrap{
	display: block;
	width: 300px;
	margin: 30px auto;
}

.btn01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background: linear-gradient( to left, #e82e32 0 50% , #000080 50% 100%);
	background-size: 200% 100%;
	background-position: right;
	color: #fff;
	padding: 1em 0.8em;
	position: relative;
	border-radius: 50px;
	font-size: 0.9em;
	font-weight: 500;
	transition: .5s;
}
.btn01::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f061";
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: .5s;
}
.btn01:hover{
	background-position: left;
	transition: .5s;
}
.btn01:hover::after{
	right: 10px;
}

@media (max-width: 450px){
	.btn_wrap{
		max-width: 100%;
	}
	.btn01{
		font-size: 0.8rem;
	}
}

/* テーブル　================================================== */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	border-bottom: solid 2px #e82e32;
	padding: 1em;
	width: 25%;
	min-width: 9em;
}
.line02 table td{
	border-bottom: solid 2px #000080;
	padding: 1em;
}
.line02 table td i{
	color: #000080;
	padding-left: 1em;
}
.line02 dl{
	margin-bottom: 0.5em;
	font-size: 0.9rem;
	display: flex;
}
.line02 dl dt{
	width: 11em;
}
.line02 dl dd{
	
}

.line02 ul li{
	padding-left: 1em;
	text-indent: -1em;
	margin-bottom: 0.5em;
}
@media (max-width: 768px){
	.line02 table th{
		display: block;
		width: 100%;
		border-bottom: none;
		text-align: left;
		padding-bottom: 0;
	}
	.line02 table td{
		display: block;
		width: 100%;
		border-bottom: solid 2px #000080;
	}
	.line02 dl{
		flex-direction: column;
		align-self: flex-start;
		justify-content: flex-start;
	}
}
.simple01 table {
	border-collapse: collapse;
    border-spacing: 5px;
    margin: 0 auto;
    padding: 0;
    width:100%;
	
}
.simple01 table tr{
	border-bottom: solid 1px #ccc;
}
.simple01 table th,.simple01 table td{
	padding: 1.5em 1em;
	text-align: left;
	vertical-align: top;
}
.simple01 table th{
	color: #000080;
	font-weight: 500;
	width: 20%;
	min-width: 6em;
}
.simple01 table td i{
	color: #000080;
}
@media (max-width: 960px){
	.simple01 table th,.simple01 table td{
		display: block;
		width: 100%;
	}
	.simple01 table th{
		padding-bottom: 0;
	}
}
.info{
	width: 100%;
	overflow-y: auto;
}
.info::-webkit-scrollbar{
	width: 3px;
	height: 3px;
}
.info table{
	width: 100%;
	min-width: 900px;
	border-collapse: collapse;
    border-spacing: 5px;
	border-top: solid 1px #ccc;
	border-left: solid 1px #ccc;
	margin-bottom: 30px;
}
.info table tr{
	border-bottom: solid 1px #ccc;
}
.info table th,.info table td{
	text-align: center;
	padding: 0.5rem;
	border-right: solid 1px #ccc;
	min-width: 4em;
}
.info table .m01{
	color: #fff;
	background: #000080;
	font-weight: 500;
	white-space: nowrap;
}
.info table .m02{
	background: #f0f8ff;
	font-weight: 500;
}

/* リスト ============================== */
ul.border01{
	padding-left: 1em;
	font-size: 1em;
}
ul.border01 li{
	border-bottom: dashed 2px #000080;
	margin-bottom: 1rem;
	font-weight: 500;
	font-size: 1.1rem;
}
ul.border01 li i{
	color: #000080;
}
ul.border01 li.small{
	font-size: 1rem;
}
.dl_border01{
	padding: 1rem;
}
.dl_border01 dl{
	display: flex;
	align-items: flex-start;
	border-bottom: solid 1px #000080;
	width: 100%;
}
.dl_border01 dl dt{
	padding: 1em 0 1em 1em;
	
}
.dl_border01 dl dt i{
	color: #000080;
}
.dl_border01 dl dd{
	padding: 1em;
	font-weight: 500;
}
.dl_border01 dl dd::before{
	content: '...';
	padding-right: 15px;
}
@media (max-width: 960px){
	.dl_border01 dl{
		display: block;
		width: 100%;
	}
	.dl_border01 dl dt{
		width: 100%;
		padding: 1em 1em 0.5em;
	}
	.dl_border01 dl dd{
		width: 100%;
		padding:0.5em 1em 1em;
	}
}

/* リンクコンテンツ　==================== */
.contents_link {
	width: 100%;
	display: flex;
	justify-content: space-around;
	margin: auto;
	gap:15px;
}
figure.effect-chico{
	display: block;
	position: relative;
	width: 100%;
	max-width: 550px;
	max-height: 500px;
	aspect-ratio: 4 / 3;
	background: #000080;
	border-radius: 50px;
	overflow: hidden;
}

figure.effect-chico img {
	position: relative;
	display: block;
	min-height: 100%;
	max-width: 100%;
	aspect-ratio: 4 / 3;
	object-fit: cover;
	opacity: 0.8;
	transition: opacity 0.35s, transform 0.35s;
	transform: scale(1.12);
}

figure.effect-chico:hover img {
	opacity: 0.5;
	transform: scale(1);
}

figure.effect-chico figcaption {
	width: 100%;
	padding: 3em;
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
	backface-visibility: hidden;
}

figure.effect-chico figcaption::before {
	color: #fff;
	opacity: 0;
	backdrop-filter: blur(6px);
	transition: opacity 0.35s, transform 0.35s;
}
figure.effect-chico h3{
    position: absolute;
    top: 16%;
    left: 12%;
	color: #fff;
	font-size: 1em;
	font-weight: 500;
    z-index: 10;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}

figure.effect-chico h3 span{
    font-size: clamp(2rem, 1.4rem + 2.1333vw, 3rem);
    font-family: 'Afacad', sans-serif;
	color: #ee3b2c;
}
figure.effect-chico h4 {
	position: absolute;
	bottom: 10%;
	left: 0;
	width: 100%;
	text-align: center;
	font-family: 'Afacad', sans-serif;
	font-size: 1em;
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
figure.effect-chico p{
	position: absolute;
	color: #fff;
	top: 45%;
	left: 12%;
	right: 12%;
	font-size: 1em;
	font-weight: 500;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
figure.effect-chico:hover figcaption::before {
	opacity: 1;
	transform: scale(1);
}
figure.effect-chico a{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (max-width: 1200px){
	.contents_link{
		flex-direction: column;
		max-width: 960px;
		margin: auto;
	}
	.contents_link .b01{
		align-self: flex-start;
	}
	.contents_link .b02{
		align-self: flex-end;
	}
}
@media (max-width: 768px){
	figure.effect-chico p{
		font-size: 0.8em;
	}
}

/* Map ============================================================ */
.map iframe{
	width: 100%;
	vertical-align: middle;
}


/* QA ============================================================ */
.qa-list dl {
    position: relative;
    margin: 0;
    padding: 28px 80px 28px 30px;
    cursor: pointer;
    border-bottom: 1px solid #ccc;
}
.qa-list dl:first-child {
    border-top: 1px solid #ccc;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #000080;
    border-right: 2px solid #000080;
}
.qa-list .open::before {
    transform: rotate(-45deg);
}
.qa-list dl dt {
    position: relative;
    margin: 0;
    padding: 0 0 0 50px;
    font-weight: 500;
    font-size: 1.2rem;
}
.qa-list dl dt::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    content: 'Q.';
	font-family: "Afacad", sans-serif;
	font-weight: 500;
    color:#000080;
}
.qa-list dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
	font-family: "Afacad", sans-serif;
	font-weight: 500;
    color: #e82e32;
}
.qa-list dl dd {
    position: relative;
    display: none;
    height: auto;
    margin: 20px 0 0;
    padding: 0 0 0 50px;
}
.qa-list dl dd p {
    margin: 30px 0 0;
}
.qa-list dl dd p:first-child{
    margin-top: 0;
}
@media (max-width: 750px){
	.qa-list dl{
		 padding: 28px 30px 28px 15px;
	}
	.qa-list dl::before{
		right: 15px;
	}
	.qa-list dl dt{
		padding: 0 0 0 40px;
	}
}
/* ながれ ================================================== */
.flow {
	position: relative;
}
.flow::before {
	content: "";
	width: 16px;
	height: 100%;
	background-color: #000080;
	display: block;
	position: absolute;
	top: 0;
	left: 0;
}
.ftitle {
	font-weight: 500;
	margin-bottom: 13px;
	ont-size: clamp(1.1rem, 0.98rem + 0.4267vw, 1.3rem);
	position: relative;
	z-index: 2;
	padding-bottom: 3px;
	border-bottom: 2px dashed #000080;
}
.ftitle span {
	font-weight: 500;
	margin-right: 13px;
	font-size: 200%;
	position: relative;
	color:#000080;
}
.flow .fwrap {
	padding: 35px;
	background: rgba(255,255,255,0.7);
}
.flow .flowd {
	margin-bottom: 45px;
}
.flow .flowd:last-child {
	margin-bottom: 0 !important;
}
.flow .fwrap .mainbtn a {
	width: 100%;
	padding: 8px 0;
}
.flow .fwrap .mainbtn a::after {
	content: none;
}
.flow .flowd::after, .flow .flowd::before {
	content: "";
	display: block;
	position: absolute;
	top: 57px;
}
.flow .flowd {
	padding-left: 80px;
	position: relative;
}
.flow .flowd::before {
	z-index: 1;
	width: 11px;
	height: 11px;
	margin-top: -5px;
	background: #fff;
	border-radius: 50%;
	left: 3px;
}
.flow .flowd::after {
	width: 63px;
	border-bottom: 2px dashed #000080;
	position: absolute;
	left: 13px;
}
.flow .card003 .f_img{
	width: 100%;
	max-width: 300px;
}
.flow .card003 .f_img img{
	width: 100%;
	aspect-ratio: 3 / 2;
	border-radius: 15px;
	object-fit: cover;
}
.flow_link{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
	flex-wrap: wrap;
	gap:10px;
}
.flow_link li {
	padding: 5px;
	text-align: center;
	font-size: 0.9em;
	width: calc(100% / 3 - 10px);
	transition: .5s;
}
.flow_link li a{
	display: block;
	padding: 0.5em 1em;
	line-height: 100%;
	vertical-align: middle;
	background: #000080;
	border-radius: 30px;
	color: #fff;
	transition: .5s;
}
.flow_link li :hover{
	background: #e82e32;
}
@media (max-width: 1200px) {
	.flow_link{
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}
	.flow_link li {
		width: calc(100% - 10px);
		max-width: 300px;
	}

}
@media (max-width: 1100px) {
	.flow .flexbox {
		align-items: center;
	}

}
@media (max-width: 960px) {

	.flow .flowd {
		padding-left: 0;
		z-index: 1
	}
	.flow .flowd::before {
		content: none;
	}
	.flow .flowd::after{
		left: 50%;
		top: auto;
		bottom: 15px;
		width: 50px;
		transform: rotate(90deg) translateY(-50%);
		transform-origin: top left;
		z-index: 10;
	}
	.flow::before {
		content: none;
	}

	.flow .flowd {
		margin-bottom: 25px;
	}
	.ftitle span {
		margin-right: 8px;
	}
}

@media(max-width: 750px) {
	.flow .flowd {
		margin-bottom: 15px;
	}
	.btns .mainbtn a {
		font-size: 100%;
	}

	.flow .flexbox {
		display: block;
	}

	.flow .flexbox img {
		width: 100%;
	}
	.flow .flexbox div {
		width: 100%;
	}
	.flow .flowd .flexbox img {
		margin-bottom: 10px;
	}
	.flow .flex div {
		margin: 0 5px 8px;
	}
	.flowd .flimg img {
		object-fit: cover;
		width: 100%;
		height: 240px;
	}
	.ftitle {
		font-size: 1rem;
	}

}
@media(max-width: 600px) {
	.flow .flex {
		display: block;
	}
	.flow .flex img {
		width: 100%;
	}
	.flow .flex div {
		width: 100%;
		margin: 0 0 8px;
	}
	.flowd .flimg img {
		height: 100%;
	}
}
@media(max-width: 450px) {
	.flow .fwrap {
		padding: 15px;
	}
	.ftitle {
		margin-bottom: 10px;
	}
}

/* ナンバーリスト======================================== */

.number_list{
	padding: 2rem;
}
.number_list > li{
	padding: 1rem 0;
	border-bottom: solid 2px #000080;
	position: relative;
}

.number_list li .li_numbar{
	font-size: clamp(2rem, 1.52rem + 1.7067vw, 2.8rem);
	font-family: "Afacad", sans-serif;
	font-weight: 500;
	color:#000080;
}
.number_list li .li_txt{
	font-size: 1.2rem;
	font-weight: 500;
	margin-left: 0.5rem
}
.number_list li p{
	margin-top: 1em;
	margin-left: 4.5em;
}
.number_list .flow_link{
	margin-left: 4.5em;
}

@media (max-width: 960px){
	.number_list li .inner_flex{
		display: flex;
		justify-content: flex-start;
		align-items: flex-end;
	}
	.number_list li .li_numbar{
		width: 1.5em;
		align-self: flex-end;
	}
	.number_list li .li_txt{
		flex: 1;
		align-self: flex-end;
	}
	.number_list li p{
		margin-top: 1em;
		margin-left: 0;
	}
	.number_list .flow_link{
		margin-left: 0;
	}
	.number_list.flow li .li_numbar{
		width: inherit;
		
	}
}
@media (max-width: 750px){
	.number_list.flow .inner_flex{
		flex-direction: column;
		justify-content: flex-start;
		align-items: flex-start;
		text-align: left;
	}
	.number_list.flow li .li_numbar,
	.number_list.flow li .li_txt{
		align-self: flex-start;
	}
		
}
@media (max-width: 450px){
	.number_list{
		padding: 1rem 0;
	}
}
/* メールフォーム==================== */
.contents_mail{
	max-width: 960px;
	padding: 10px 10px 30px;
	margin: auto;
}
/* TEL FAX */
.phone_flex{
	display: flex;
	justify-content: center;
	max-width: 900px;
	margin: auto;
}
.phone_flex .phone{
	text-align: center;
	color: #1a1a1a;
	display: block;
	width: calc(100% - 30px);
	margin: 15px;
	padding: 1.5rem;
	border: solid 1px #ccc;
	background: #fff;
	border-radius: 30px;
	opacity: 1;
	transition: .5s;
}
.phone_flex .phone:hover{
	opacity: 0.5;
}
.phone_flex .phone .nb{
	font-weight: 600;
	font-size: clamp(1.5rem, 1.2rem + 1.0667vw, 2rem);
	line-height: 50px;
	vertical-align: middle;
	display: block;
	color: #000080;
}
.phone_flex .phone .nb i{
	display: inline-block;
	text-align: center;
	color:  #fff;
	background:#000080 ;
	vertical-align: bottom;
	line-height: 50px;
	width: 50px;
	font-size: 1rem;
	border-radius: 50%;
	margin-right: 1rem;
	transition: .5s;
}
.phone_flex .phone .txt01{
	font-size: 1.1rem;
	font-weight: 500;
	text-align: center;
	display: block;
	padding: 10px;
	margin-bottom: 1rem;
}
.phone_flex .phone .txt02{
	font-size: 1rem;
	text-align: center;
	display: block;
	margin-top: 1em;
	font-weight: 400;
	
}
.phone_flex .phone .txt03{
	font-size: 0.75rem;
	text-align: left;
	display: block;
	margin-top: 1em;
}
.phone_flex .phone ul{
	display: flex;
	justify-content: center;
	align-items: flex-start;
}
.phone_flex .phone ul li{
	font-size: 0.9em;
	font-weight: 500;
	padding: 1em 0.5em 0;
}
.phone_flex .phone ul li i{
	padding-right: 0.5em;
	color: #000080;
}
.phone_flex .phone dl{
	display: flex;
	justify-content: flex-start;
	align-items: flex-start;
}
.phone_flex .phone dl dt{
	width: 5em;
	text-align: left;
	font-size: 0.9rem;
}
.phone_flex .phone dl dd{
	margin-left: 0.5em;
}
.phone_flex .phone dl dd::before{
	content: '｜'
}

@media (max-width: 960px){
	.phone_flex{
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 500px;
	}
	.phone_flex .phone{
		padding: 1rem;
	}
}

@media (max-width: 450px){
	.phone_flex .phone{
		width: calc(100%);
		margin: 15px 0;
	}
	.phone_flex .phone ul{
		flex-direction: column;
		justify-content: flex-start;
	}
}
#mailform{
	width: 100%;
	padding: 20px;
}
#mailform table{
	width: 100%;
	font-size: 1rem;
	border-collapse: collapse;
	border-spacing: 0;
}
#mailform table tr{
	border-bottom: solid 1px #ccc;
}
#mailform table tr:last-child{
	border-bottom:none;
}
#mailform table th{
	width: 230px;
	text-align: left;
	padding:1em 0.5em;
	vertical-align: middle;
	line-height: 120%;
	font-weight: 400;
}
#mailform table td{
	padding: 1em;
}
.flex_btn{
	display: flex;
	align-items: flex-start;
	flex-wrap: wrap;
	width: 100%;
}
#mailform .radio{
	padding: 0 1rem;
}
#mailform .checkbox{
	padding: 0 1rem;
}
#mailform .form_input,#mailform textarea{
	background:#fff;
	width: 100% !important;
	padding: 15px 10px;
	border: none;
}
#mailform span.form_required{
	font-size: 60%;
	font-weight: normal;
	color: #fff;
	background:#e82e32;
	padding: 3px 8px;
	margin-left: 0.5rem;
	border-radius: 5px;
}
input[type='submit']{
	display: block;
	width: 100%;
	max-width: 300px;
	padding: 1em;
	font-weight: 400;
	background: #000080;
	color:#fff;
	border-radius: 50px;
	margin: 0 auto;
	transition: .5s;
}
input[type='submit']:hover{
	background: #e82e32;
	color: #fff;
}
.infobox{
	margin-bottom: 30px;
}
.infobox h4{
	text-align: center;
	color: #1f1f1f !important;
	font-size: 1em !important;
	padding-bottom: 1em;
}
.infobox h5{
	color: #1f1f1f;
	margin-top: 1em;
	font-weight: 500;
}
.infobox h5 i{
	color: #000080;
}
.infobox p{
	font-size: 0.8em !important;
	color: #1f1f1f;
	padding: 0.5em 0;
}
.postcord{
	width:150px !important;
	margin-bottom: 5px;
	padding: 5px 10px;
	background:#f5f5f5;
	border-radius: 5px;
}
.postcord_btn{
	font-size: 0.7em;
	font-weight: 700;
	border-radius: 30px;
	background:#666;
	padding: 0.25em 1em;
	color: #fff;
}
summary{
	cursor: pointer;
	display: block;
	list-style: none;
}
summary::-webkit-details-marker {
	color: transparent;
	display: none;
}
details::before{
	display: none;
}
details[open]{
	animation: fadeIn 1s ease;
}
@keyframes fadeIn {
  0% {
    opacity: 0; /* 透明 */
    transform: translateY(-10px); /* 上から表示 */
  }
  100% {
    opacity: 1;
    transform: none;
  }
}
details summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f067';
	padding-right: 15px;
}
details[open] summary h4::before{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: '\f068';
	padding-right: 15px;
}
.visually-hidden { /* 元のボタンを非表示にする*/
	position: absolute;
	white-space: nowrap;
	width: 1px;
	height: 1px;
	overflow: hidden;
	border: 0;
	padding: 0;
	clip: rect(0 0 0 0);
	clip-path: inset(50%); 
	margin: -1px;
}
label.radio-label {
	cursor: pointer;
	padding-left: 30px;
	position: relative;
}

label.radio-label::before,
label.radio-label::after {
	content: "";
	display: block;
	border-radius: 50%;
	position: absolute;
	transform: translateY(-50%);
	top: 50%;
}

label.radio-label::before {
	background-color: #fff;
	border: 1px solid #ccc;
	height: 20px;
	width: 20px;
	left: 5px;
}

label.radio-label::after {
	background-color: #666;
	opacity: 0;
	height: 14px;
	width: 14px;
	left: 8px;
	transition: ease .2s;
}

input:checked + label.radio-label::after {
  opacity: 1;
}


label.check-label {
  position: relative;
  padding-left: 30px;
  cursor: pointer;
}

label.check-label:before {
  content: "";
  display: block;
  position: absolute;
  left: 5px;
  width: 20px;
  height: 20px;
  top: 3px;
  border: solid 2px #ccc;
  border-radius: 3px;
  transition: all ease-in-out.5s;
}

label.check-label:after {
  content: "";
  position: absolute;
  top: 12px;
  left: 11px;
  transform: rotate(-45deg) scaleX(0);
  transform-origin: left;
  width: 12px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  transition: transform 0.125s ease-in-out;
}

input:checked + label.check-label:before {
  background-color: #000080;
  border-color: #000080;
}

input:checked + label.check-label:after {
  transform: rotate(-45deg) scaleX(1);
}
@media (max-width: 960px){
	#mailform{
		padding: 10px 0;
	}
	#mailform table th,
	#mailform table td{
		display: block;
		width: 100%;
		padding: 0.5rem 0;
	}
	#mailform table td{
		padding-bottom: 1rem;
	}
	
	input[type='text'] ,input[type='date'] , textarea{
		width: 100% ;
	}
}
