@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');



/* -------------------------------------------

base

------------------------------------------- */
:root {
	--grey: #333;
	--navy: #04345a;
	--bg-red: #fff4f4;
	--bg-yellow: #feffe8;
	--prime: #eb2d1c;
}
body {
	color: var(--grey);
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* ---- link ---- */
a {
	color: var(--grey);
}



/* -------------------------------------------

header

------------------------------------------- */
header {
	position: sticky;
	top: 0;
	background: #fff;
	z-index: 999;
	height: 12.9rem;
}
@media screen and (max-width: 768px) {
	header {
		position: relative;
		height: auto;
	}
}
/* ---- wrap ---- */
header .wrap {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 0.5rem;
	height: 8rem;
}
@media screen and (max-width: 768px) {
	header .wrap {
		justify-content: center;
		margin-bottom: 0;
		height: 6rem;
	}
}
/* ---- h1 ---- */
header .logo {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
	white-space: nowrap;
}
h1 a {
	display: flex;
	align-items: center;
}
h1 img {
	width: 5rem;
}
h1 span {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-size: 2.8rem;
}
h1 span i {
	font-size: 1.2rem;
	font-weight: normal;
}
header .summary {
	font-size: 1.05rem;
	white-space: nowrap;
	margin-bottom: -0.6rem;
}
@media screen and (max-width: 768px) {
	h1 img {
		width: 4.4rem;
		margin-right: 0.5rem;
	}
	h1 span {
		font-size: 2.2rem;
	}
}
/* ---- tel ---- */
.header-tel {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}
.header-tel > span {
	padding-left: 3.4rem;
}
.header-tel a {
	display: flex;
	align-items: flex-start;
}
.header-tel a img {
	width: 3.2rem;
	height: 3.2rem;
	margin-right: 0.2rem;
}
.header-tel a > span {
	display: flex;
	flex-direction: column;
	align-items: center;
	line-height: 1;
}
.header-tel a > span i:nth-of-type(1) {
	color: var(--prime);
	font-weight: bold;
	font-size: 2.8rem;
}
.header-tel a > span i:nth-of-type(2) {
	font-size: 1.1rem;
	margin-top: 0.2rem;
}



/* -------------------------------------------

nav

------------------------------------------- */
.gnav-menu {
	display: flex;
	align-items: center;
}
.gnav-menu > li {
	white-space: nowrap;
	width: calc(100% / 7);
	text-align: center;
}
.gnav-menu > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 4.4rem;
}
.gnav-menu > li > a:hover {
	opacity: 1;
	background-color: #ffdcdc;
}




/* -------------------------------------------

footer

------------------------------------------- */
footer {
	background: #ffecec;
}
@media screen and (max-width: 768px) {
	footer {
		padding-bottom: 6rem;
	}
}
footer > div {
	padding: 3rem 0;
}
/* ---- wrap ---- */
footer .wrap {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}
@media screen and (max-width: 768px) {
	footer .wrap {
		flex-direction: column;
	}
}
/* ---- logo --- */
footer .logo a {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	font-size: 2.4rem;
	line-height: 1.4;
}
footer .logo i {
	font-size: 1.4rem;
	font-weight: normal;
}
@media screen and (max-width: 768px) {
	footer .logo {
		margin-bottom: 2rem;
	}
}
/* ---- nav ---- */
footer nav ul {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}
footer nav ul li:not(:last-child) {
	margin-right: 2.5rem;
}
@media screen and (max-width: 768px) {
	footer nav ul li {
		text-align: center;
		width: 50%;
	}
	footer nav ul li a {
		display: block;
		padding: 0.5rem 0;
	}
	footer nav ul li:not(:last-child) {
		margin-right: 0;
	}
}
/* ---- address ---- */
footer address {
	margin-top: 2rem;
	text-align: center;
}
@media screen and (max-width: 768px) {
	footer address {
		font-size: 1.2rem;
	}
}
/* ---- small ---- */
footer small {
	display: block;
	font-size: 1.2rem;
	text-align: center;
	background: var(--prime);
	color: #fff;
	padding: 0.6rem 0;
}



/* -------------------------------------------

page-ttl

------------------------------------------- */
.page-ttl {
	background: url(../img/mv.jpg) no-repeat center / cover;
}
.page-ttl > div {
	background: rgba(0,0,0,0.5);
	display: flex;
	align-items: center;
	justify-content: center;
	height: 16rem;
}
@media screen and (max-width: 768px) {
	.page-ttl > div {
		height: 14rem;
	}
}
/* ---- h2 ---- */
.page-ttl h2 {
	color:#fff;
	font-size: 3.6rem;
	line-height: 1;
	align-items: center;
}



/* -------------------------------------------

layout

------------------------------------------- */
/* ---- base-width ---- */
.base-width {
	width: 88rem;
	margin-left: auto;
	margin-right: auto;
}
@media screen and (max-width: 768px) {
	.base-width {
		width: auto;
	}
}
/* ---- container ---- */
.container {
	margin: 8rem auto 10rem auto;
	width: 88rem;
}
@media screen and (max-width: 768px) {
	.container {
		margin: 6rem 3rem 8rem 3rem;
		width: auto;
	}
}
.container .wrap {
	display: flex;
	justify-content: space-between;
}
.container .wrap.reverse {
	flex-direction: row-reverse;
}
.container .wrap > figure {
	width: 35%;
}
.container .wrap > div {
	width: 62%;
}
@media screen and (max-width: 768px) {
	.container .wrap {
		display: block;
	}
	.container .wrap > figure {
		width: 100%;
		margin-bottom: 2rem;
	}
	.container .wrap > div {
		width: 100%;
	}
}
/* ---- page-top ---- */
#page-top {
    position: fixed;
	bottom: 1rem;
	right: 1rem;	
	z-index: 999;	
}
#page-top a {
	background: #fff;
	border: solid 0.2rem var(--prime);
	border-radius: 50%;
	color: var(--prime);	
	font-size: 1.6rem;
	width: 3.6rem;
	height: 3.6rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.1rem;
}
@media screen and (max-width: 768px) {
	#page-top {
		bottom: 7rem;
	}
}



/* -------------------------------------------

style

------------------------------------------- */
/* ---- heading ---- */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
	display: flex;
	flex-direction: column;
	align-items: center;
}
.heading-1 span {
	display: block
}
.heading-1 .jp {
	font-size: 4.8rem;
	letter-spacing: 0.08em;
}
.heading-1 .en {
	font-size: 1.5rem;
	letter-spacing: 0.2em;
	margin-top: 1rem;
}
@media screen and (max-width: 768px) {
	.heading-1 .jp {
		font-size: 4rem;
	}
	.heading-1 .en {
		font-size: 1.5rem;
	}
}
.heading-2 {
	background: var(--navy);
	color: #fff;
	border-left: solid 0.8rem var(--prime);
	padding: 1.2rem 2rem 1.35rem 2rem;
	font-size: 2.2rem;
	margin-bottom: 2.5rem;
}
/* ---- more ---- */
.more {
	color: var(--prime);
	display: flex;
	align-items: center;
	justify-content: center;
	line-height: 1;
	padding: 1.6rem 0 1.75rem 0;
	width: 28rem;
	border: solid 0.2rem var(--prime);
	border-radius: 20rem;
	background-color: #fff;
	padding-left: 1rem;
	margin: 0 auto;
}	
.more i {
	margin-top: 0.2rem;
	margin-left: 0.5rem;
	font-size: 1.2rem;
}
.more:hover {
	opacity: 1;
	background: var(--prime);
	color: #fff;
}
@media screen and (max-width: 768px) {

}
/* ---- ttl ---- */
.ttl {
	border-bottom: solid 1px rgba(0,0,0,0.3);
	font-size: 2.4rem;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
}
.ttl::first-letter {
	color: var(--prime);
}
.ttl:after {
	content: "";
	background: var(--prime);
	display: block;
	height: 3px;
	bottom: -3px;
	position: absolute;
	width: 25%;
	z-index: 10;
}
@media screen and (max-width: 768px) {
	.ttl:after {
		width: 40%;
	}	
}
/* ---- detail ---- */
ul.detail li {
	border-bottom: dotted 0.15rem;
	padding: 1.5rem 2rem;
}
ul.detail li dl {
	display: flex;
}
ul.detail li dl dt {
	width: 15rem;
}
ul.detail li dl dd {
	width: calc(100% - 15rem);
}
@media screen and (max-width: 768px) {
	ul.detail li {
		padding: 1.5rem 0;
	}	
	ul.detail li dl {
		display: block;
	}
	ul.detail li dl dt {
		width: 100%;
		margin-bottom: 0.3rem;
		font-weight: bold;
	}
	ul.detail li dl dt::before {
		content: "◆";
		color: var(--prime);
	}
	ul.detail li dl dd {
		width: 100%;
	}
}




/* -------------------------------------------

hamburger

------------------------------------------- */
.gnav-sp {
	background: #fff;
	display: block;
	position: fixed;
	top: 0;
	bottom: 0;
	width: 100%;
	opacity: 0;
	overflow-x: hidden;
	overflow-y: auto;
	transition: all .5s;
	z-index: -1;
	-webkit-overflow-scrolling: touch;
}
/* ---- wrap ---- */
.gnav-sp .wrap {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
/* ---- gnav-sp-menu ---- */
.gnav-sp-menu li {
	font-size: 1.8rem;
	text-align: center;
	font-weight: 500;
}
.gnav-sp-menu li span {
	display: block;
}
.gnav-sp-menu li a {
	display: block;
	padding: 1.2rem 0;
	white-space: nowrap;
}
/* ---- toggle ---- */
.toggle-btn {
	background: var(--prime);
	cursor: pointer;
	display: block;
	position: fixed;
	top: 0;
	right: 0;
	width: 6rem;
	height: 6rem;
	transition: all .5s;
	z-index: 100000;
}
.toggle-btn span {
	background: #fff;
	display: block;
	position: absolute;
	left: 2rem;
	width: 2rem;
	height: 0.2rem;
	transition: all .4s;
}
.toggle-btn span:nth-child(1) {
	top: 1.9rem;
}
.toggle-btn span:nth-child(2) {
	top: 2.7rem;
}
.toggle-btn span:nth-child(3) {
	top: 3.5rem;
}
/* ---- open ---- */
.open .gnav-sp {
	top: 0;
	opacity: 1;
	z-index: 99999;
}
.open .toggle-btn span:nth-child(1) {
	transform: translateY(0.8rem) rotate(-45deg);
}
.open .toggle-btn span:nth-child(2) {
	opacity: 0;
}
.open .toggle-btn span:nth-child(3) {
	transform: translateY(-0.8rem) rotate(45deg);
}



/* -------------------------------------------

class

------------------------------------------- */
/* ---- txt-vertical ---- */
.txt-vertical {
	writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
	.txt-vertical.not {
		writing-mode: horizontal-tb;
		white-space: normal;
	}
}
/* ---- list ---- */
ul.list-group li {
	margin-left: 2rem;
	list-style: disc;
}
ul.list-group li:not(:last-child) {
	margin-bottom: 0.6rem;
}
ul.list-group li::marker {
	color: var(--prime);
}
@media screen and (max-width: 768px) {
	ul.list-group li:not(:last-child) {
		margin-bottom: 1rem;
	}
}
/* ---- prepare ---- */
.prepare {
    font-size: 2rem;
	font-weight: bold;
	text-align: center;
    padding: 8rem 0;
}
/* ---- map ---- */
.gmap iframe {
	width: 100%;
	height: 36rem;
}
.gmap.grey iframe {
	filter: grayscale(100%);
}
/* ---- display ---- */
@media screen and (min-width: 769px) {
	.sp {
		display: none !important;
	}
}
@media screen and (max-width: 768px) {
	.pc {
		display: none !important;
	}
}
/* ---- margin ---- */
.mb-10 { margin-bottom: 1rem !important; }
.mb-15 { margin-bottom: 1.5rem !important; }
.mb-20 { margin-bottom: 2.0rem !important; }
.mb-25 { margin-bottom: 2.5rem !important; }
.mb-30 { margin-bottom: 3.0rem !important; }
.mb-35 { margin-bottom: 3.5rem !important; }
.mb-40 { margin-bottom: 4.0rem !important; }
.mb-45 { margin-bottom: 4.5rem !important; }
.mb-50 { margin-bottom: 5.0rem !important; }
.mb-55 { margin-bottom: 5.5rem !important; }
.mb-60 { margin-bottom: 6.0rem !important; }
.mb-65 { margin-bottom: 6.5rem !important; }
.mb-70 { margin-bottom: 7.0rem !important; }
.mb-75 { margin-bottom: 7.5rem !important; }
.mb-80 { margin-bottom: 8.0rem !important; }
.mb-85 { margin-bottom: 8.5rem !important; }
.mb-90 { margin-bottom: 9.0rem !important; }
.mb-95 { margin-bottom: 9.5rem !important; }
.mb-100	{ margin-bottom: 10.0rem !important; }



/* -------------------------------------------

fade

------------------------------------------- */
.fade {
	opacity: 0;
	transform: translateY(2rem);
}
.fade.is-animation {
    animation: fade 0.5s ease;
    animation-fill-mode: both;
}
@keyframes fade {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
		transform: translateY(0);
	}
}



/* -------------------------------------------

news common

------------------------------------------- */
/* ---- CMS-NEWS-MORE-READ ---- */
.CMS-NEWS-MORE-READ {
	background: var(--prime);
    border: none;
	color: #fff !important;
    display: block;
    font-size: 1.4rem;
	/* font-family: 'Noto Serif JP', serif; */
    margin: 0 auto;
    padding: 1.6rem 0 1.7rem 0;
    width: 31%;
    text-align: center;
    transition: all .3s;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    -webkit-transform: translate(-50%, 0);
	border-radius: 10rem;
}
.CMS-NEWS-MORE-READ:hover {
    cursor: pointer;
    opacity: 0.6;
}
@media screen and (max-width: 768px) {
	.CMS-NEWS-MORE-READ {
		width: 100%;
	}
}
/* ---- newsdetail ---- */
/* CMS-NEWS-TITLE */
.CMS-NEWS-TITLE {
    border-bottom: solid 1px rgba(0,0,0,0.3);
    font-size: 2.2rem;
    margin-bottom: 3rem;
    padding: 1rem 0 1.5rem 0;
    position: relative;
    font-weight: bold;
}
.CMS-NEWS-TITLE:after {
	content: "";
	background: var(--prime);
	display: block;
	height: 3px;
	bottom: -3px;
	position: absolute;
	width: 25%;
	z-index: 10;
}
.CMS-NEWS-CONTENT img {
    width: 80%;
    height: auto;
    display: block;
    margin: 0 auto 3rem auto;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-CONTENT img {
        width: 100%;
    }
}



/* -------------------------------------------

news thumbnail

------------------------------------------- */
/* ---- CMS-NEWS ---- */
.CMS-NEWS-INDEX {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 10rem;
	position: relative;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-INDEX {
        display: block;
    }
}
.CMS-NEWS-INDEX > * {
    width: 31%;
    margin-right: 3.5%;
}
.CMS-NEWS-INDEX > *:nth-of-type(3n) {
    margin-right: 0;    
}
.CMS-NEWS-INDEX > *:nth-of-type(n + 4) {
    margin-top: 3.5rem;
}
@media screen and (max-width: 768px) {
	.CMS-NEWS-INDEX > * {
		width: 100%;
		margin-right: 0;
	}
	.CMS-NEWS-INDEX > *:nth-of-type(n + 4) {
		margin-top: 0;
	}
	.CMS-NEWS-INDEX > *:nth-of-type(n + 2) {
		margin-top: 3.5rem;
	}   
}
.CMS-NEWS-ITEM a {
    transition: all .3s;
    display: block;
}
.CMS-NEWS-ITEM a:hover {
    opacity: 0.6;
}
/* ---- time ---- */
.CMS-NEWS-TIME {
    font-size: 1.2rem;
    margin: 1.8rem 0 0.6rem 0;
    line-height: 1;
}
@media screen and (max-width: 768px) {
	.CMS-NEWS-TIME {
        margin: 1.5rem 0 0.2rem 0;
    }  
}
/* ---- img ---- */
.CMS-NEWS-INDEX > * img {
    height: 16rem;
    width: 100%;
    object-fit: cover;
	border-radius: 1rem;
}
@media screen and (max-width: 768px) {
    .CMS-NEWS-INDEX > * img {
        height: 20rem;
    }
}



/* -------------------------------------------

faq

------------------------------------------- */
.faq-ttl {
	align-items: center;
	border-bottom: dotted 0.15rem #000;
	transition: all .3s;
}
.faq-ttl:hover {
	cursor: pointer;
	color: var(--prime);
}
.faq-ttl i {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translate(-50%,0);
	color: var(--prime);
	transition: all .3s;
	font-size: 1.4rem;
}
.faq-ttl.open i {
	transform: translate(-50%,0) rotate(-180deg);
}
.faq-content {
	background: #f6f6f6;
}
.faq-ttl,
.faq-content {
	position: relative;
	display: flex;
	padding: 2rem;
	font-size: 1.7rem;
}
.faq-ttl {
	padding: 2rem 3.5rem 2rem 2rem;
}
@media screen and (max-width: 768px) {
	.faq-ttl,
	.faq-content {
		padding: 1.5rem;
	}
	.faq-ttl {
		padding: 1.5rem 3.5rem 1.5rem 1.5rem;
	}
}
.faq-ttl > span:nth-child(1),
.faq-content > span:nth-child(1) {
	width: 4rem;
	height: 4rem;
	font-size: 1.8rem;
	font-weight: bold;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	border: solid 0.15rem var(--prime);
	padding-left: 0.15rem;
	padding-bottom: 0.2rem;
}
.faq-ttl > span:nth-child(1) {
	color: #fff;
	background: var(--prime);

}
.faq-content > span:nth-child(1) {
	color: var(--prime);
	background: #fff;
}

.faq-ttl > span:nth-child(2),
.faq-content > span:nth-child(2) {
	width: calc(100% - 4rem);
	padding-left: 1.5rem;
}



/* -------------------------------------------

fixed

------------------------------------------- */
.fixed-btn {
	position: fixed;
	top: 50%;
	right: 0;
	transform: translate(0, -50%);
	-webkit-transform: translate(0, -50%);
	z-index: 999;
}
.fixed-btn a {
	display: flex;
	justify-content: center;
	align-items: center;
	width: 7.2rem;
	padding: 1.5rem 0;
	line-height: 1;
	background: var(--prime);
	border-radius: 1rem 0 0 1rem;
	border-top: solid 0.3rem #fff;
	border-left: solid 0.3rem #fff;
	border-bottom: solid 0.3rem #fff;
	box-shadow: 0 0 0.7rem rgba(0,0,0,0.3);
	color: #fff;
}
.fixed-btn a img {
	width: 4rem;
	margin-bottom: 1rem;
}
.fixed-btn a > span {
	display: flex;
	flex-direction: column;
}
.fixed-btn a > span > span:nth-child(1) {
	margin-left: 0.3rem;
}
.fixed-btn a > span > span:nth-child(2) {
	font-weight: bold;
	font-size: 3rem;
}
@media screen and (max-width: 768px) {
	.fixed-btn {
		top: auto;
		right: auto;
		bottom: 0;
		transform: none;
		-webkit-transform: none;
		width: 100%;
		display: flex;
	}	
	.fixed-btn li {
		width: 100%;
	}
	.fixed-btn a {
		display: flex;
		justify-content: center;
		align-items: center;
		width: 100%;
		padding: 0;
		border-radius: 0;
		border: none;
		box-shadow: none;
		text-decoration: none !important;
		height: 6rem;
	}
	.fixed-btn a img {
		width: 3.6rem;
		margin-bottom: -0.1rem;
		margin-right: 1rem;
	}
	.fixed-btn a > span {
		display: flex;
		flex-direction: column;
	}
	.fixed-btn a > span > span:nth-child(1) {
		margin-left: 0;
		margin-bottom: 0.2rem;
	}
	.fixed-btn a > span > span:nth-child(2) {
		font-size: 2.6rem;
	}	
}