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


/* ボタン　================================================== */
.btn_wrap{
	display: block;
	width: 270px;
	margin-inline: auto;
}

.btn01{
	display: inline-block;
	text-align: center;
	width: 100%;
	background: rgba(255,255,255,1);
	color: #1a1a1a;
	border: solid 3px #ff7341;
	padding: 1em;
	position: relative;
	border-radius: 50px;
	box-shadow: 5px 5px rgba(0,0,0,0.1);
	font-size: 1em;
	font-weight: 500;
	transition: .5s;
}
.btn01::after{
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f105";
	color: #ff7341;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	right: 15px;
	transition: .5s;
}
.btn01:hover{
	box-shadow: 1px 1px rgba(0,0,0,0.1);
	transition: .5s;
}
.btn01:hover::after{
	right: 10px;
}
.bg_img01 .btn01{
	background: rgba(0,0,0,0);
	color: #fff;
	border: solid 1px #fff;
}

/* リスト ============================== */
.line02 table {
    border-spacing:0;
    margin: 0 auto;
    padding: 0;
    width:100%;
}
.line02 table th{
	border-bottom: solid 3px #ff7341;
	padding: 1em;
	width: 25%;
	min-width: 9em;
	font-weight: 700;
}
.line02 table td{
	border-bottom: solid 3px #ccc;
	padding: 1em;
}
.line02 table td i{
	color: #ff7341;
	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 3px #ff7341;
	}
	.line02 dl{
		flex-direction: column;
		align-self: flex-start;
		justify-content: flex-start;
	}
}

/* リスト ============================== */
ul.border01{
	padding-left: 1.2em;
	font-size: 1.2em;
}
ul.border01 li{
	border-bottom: dotted 5px #ffb440;
	margin-bottom: 1rem;
}
ul.border01 li i{
	color: #ff7341;
}
.dl_border01{
	padding: 1rem;
}
.dl_border01 dl{
	display: flex;
	align-items: flex-start;
	border-bottom: dotted 5px #ffb440;
}
.dl_border01 dl dt{
	width: 20%;
	padding: 1em 0 1em 1em;
	font-weight: 700;
}
.dl_border01 dl dt i{
	color: #ff7341;
}
.dl_border01 dl dd{
	padding: 1em;
}
@media (max-width: 960px){
	ul.border01{
		padding-left: 0;
	}
	ul.border01 li{
		text-indent: -1.5rem;
		padding-left: 1.5rem;
	}
	ul.border01 li i{
		display: inline;
	}
	.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;
	}
}

/* リスト============================================================ */
.nb_list{
	
}
.nb_list li{
	font-size: clamp(1rem, 0.91rem + 0.32vw, 1.2rem);
	margin-bottom: 1rem;
	border-bottom: dotted 5px #ffb440;
	padding: 1rem;
	width: calc(100% - 8em);
}
.nb_list li .nb{
	font-weight: 700;
	font-style: normal;
	color: #ffb440;
	font-size: 200%;
	padding-right: 0.5rem;
}
.nb_list li .ja{
	font-weight: 700;
	font-size: 120%;
	color: #ff7341;
}
.nb_list li .comment{
	display: inline-block;
	margin-top: 10px;
	font-size: 1rem;
}
.nb_list li:nth-child(2){
	margin-left: 1em;
}
.nb_list li:nth-child(3){
	margin-left: 2em;
}
.nb_list li:nth-child(4){
	margin-left: 3em;
}
.nb_list li:nth-child(5){
	margin-left: 4em;
}
.nb_list li:nth-child(6){
	margin-left: 5em;
}
.nb_list li:nth-child(7){
	margin-left: 6em;
}
.nb_list li:nth-child(8){
	margin-left: 7em;
}
.nb_list li:nth-child(9){
	margin-left: 8em;
}
@media (max-width: 960px){
	.nb_list li:nth-child(n+1){
		margin-left: 0;
		width: 100%;
	}
}
@media (max-width: 750px){
	.nb_list li .nb{
		display: block;
	}
}

/* リンクコンテンツ　==================== */
.contents_link {
	display: flex;
	justify-content: flex-start;
	gap:15px;
	margin-inline: auto;
}
.effect-chico{
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 4 / 5;
	background: #000;
	overflow: hidden;
	border-radius: 15px;
}
.effect-chico img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: opacity 0.35s, transform 0.35s;
	transform: scale(1.12);
	opacity: 0.8;
}

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

.effect-chico .inner {
	width: 100%;
	padding: 3em;
	position: absolute;
	top:0;
	left: 0;
	bottom: 0;
	right: 0;
}

.effect-chico h3 {
	font-weight: 500;
	position: absolute;
	right: 35px;
	bottom: 35px;
	font-size: clamp(2rem, 1.55rem + 1.6vw, 3rem);
	writing-mode: vertical-rl;
	letter-spacing: 0.12em;
	text-align: right;
	color: #fff;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
	line-height: 110%;
}
.effect-chico h3 span{
	font-size: 1rem;
	font-family: "Noto Sans JP", sans-serif;
}

.effect-chico p {
	position: absolute;
	bottom: 35px;
	left: 40px;
	font-size: 0.9em;
	margin-inline: auto;
	text-align: right;
	-webkit-transform: scale(1.5);
	transform: scale(1.5);
}

.effect-chico:hover .inner::before,
.effect-chico:hover p {
	opacity: 1;
	-webkit-transform: scale(1);
	transform: scale(1);
}
.effect-chico a{
	position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.effect-chico .btn{
	position: absolute;
	bottom: 15px;
	left: 15px;
	width: 50px;
	height: 50px;
	border-radius: 50%;
	border: solid 1px #fff;
}
.effect-chico .btn::after{
	position: absolute;
	font-family: 'Font Awesome 6 Free';
	font-weight: 900;
	content: "\f061";
	color:#fff;
	bottom: 17px;
	left: 17px;
}
@media (max-width: 960px){
	.contents_link {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		max-width: 700px;
	}
	.effect-chico{
		display: block;
		position: relative;
		width: 100%;
		height: 220px;
		background: #000;
		overflow: hidden;
	}
	.effect-chico img{
		width: 100%;
		height: 100%;
		object-fit:cover;
	}
	.effect-chico h3 {
		writing-mode:horizontal-tb;
		top:35px;
	}
}
.banner01 img{
	width: 100%;
	aspect-ratio: 12 / 5;
	border-radius: 15px;
	object-fit: cover;
}

/* カルーセル============================================================ */
.carousel_wrap{
	width: 100%;
	margin: auto;
}
.carousel {
	width:100%;
	margin: 50px auto;
}
.carousel .inner {
	overflow: hidden;
	padding: 15px;
}
.carousel .inner img {
	display: block;
	aspect-ratio: 4 / 3;
	border-radius: 15px;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* 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: dotted 5px #ffb440;
}
.qa-list dl:first-child {
    border-top: dotted 5px #ffb440;
}
.qa-list dl::before {
    position: absolute;
    top: 35px;
    right: 35px;
    display: block;
    width: 7px;
    height: 7px;
    margin-inline: auto;
    content: '';
    transform: rotate(135deg);
    border-top: 2px solid #ff7341;
    border-right: 2px solid #ff7341;
}
.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.';
    color:#ffb440;
	font-weight: 700;
}
.qa-list dl dd::before {
    font-size: 30px;
    line-height: 1;
    position: absolute;
    top: 3px;
    left: 2px;
    display: block;
    content: 'A.';
    color: #ff7341;
	font-weight: 700;
}
.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;
	}
}
/* ながれ ================================================== */
/* メールフォーム ================================================== */

