@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap');



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

base

------------------------------------------- */
:root {
	--grey: #202020;
	--yellow: #fbc600;
	--red: #cc0047;
	--orange: #f85527;
	--prime: #f85527;
}
body {
	background: url(../img/texture-1.jpg) center top;
	background-size: 100% auto;
	color: #202020;
	font-family: "M PLUS 1", sans-serif;
	font-size: 1.4rem;
	letter-spacing: 0.06em;
	line-height: 1.6;
	-webkit-text-size-adjust: 100%;
	border-top: solid 1rem var(--orange);	
}
@media screen and (max-width: 768px) {
	body {
		font-size: 1.5rem;
	}
}
/* link */
a {
	color: #202020;
}


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

header

------------------------------------------- */
header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #fff;
	padding: 0 5rem;
	height: 7rem;
	position: relative;
	z-index: 99;
}
@media screen and (max-width: 768px) {
	header {
		justify-content: center;
		height: 5rem;
		padding: 0;
	}
}
/* h1 */
header h1 {
	width: 18rem;
	line-height: 1;
}
@media screen and (max-width: 768px) {
	header h1 {
		width: 15rem;
	}	
}



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

nav

------------------------------------------- */
.gnav-menu {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 4rem;
}
.gnav-menu > li {
	font-weight: bold;
	white-space: nowrap;
	position: relative;
}
.gnav-menu > li:not(:last-child)::before {
	content: "";
	width: 0.1rem;
	height: 1.6rem;
	background: #000;
	position: absolute;
	right: -2rem;
	top: calc(50% - 0.8rem)
}
.gnav-menu > li:nth-last-child(2)::before {
	display: none;
}
.gnav-menu > li:last-child {
	font-size: 2.4rem;
	margin-left: -2rem;
}
.gnav-menu > li > a {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 7rem;
}
.gnav-menu > li > a:hover {
	opacity: 1;
	color: var(--orange);
}
.gnav-menu > li > a i {
	margin-left: 0.5rem;
	margin-top: 0.1rem;
}
.dropmenu {
	display: flex;
	align-items: center;
	height: 7rem;
}
.dropmenu ul {
	position: absolute;
	left: 0;
	top: 7rem;
	z-index: 10;
	transition: all .3s;
	opacity: 0;
	pointer-events: none;
	background: rgba(255,255,255,0.9);
	padding: 1.2rem 2rem;
	transform: translateY(-0.5rem);
}
.dropmenu ul a:hover {
	opacity: 1;
	color: var(--orange);
}
.dropmenu:hover ul {
	opacity: 1;
	pointer-events: all;
	transform: translateY(0);	
}
@media screen and (max-width: 768px) {
	.gnav-menu {
		gap: 0;
	}
	.gnav-menu > li {
		text-align: center;
		width: 50%;
	}
	.gnav-menu > li a {
		display: block;
		padding: 0.6rem 0;
	}
}
	

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

footer

------------------------------------------- */
footer {
	padding: 5rem 0 0 0;
	background: #202020;
	display: flex;
	flex-direction: column;
	align-items: center;
	position: relative;
}
.footer-insta {
	position: absolute;
	line-height: 1;
	right: 25rem;
	top: 6.5rem;
	font-size: 3rem;
}
footer a {
	color: #fff;
}
footer .logo {
	width: 24rem;
}
footer nav {
	margin: 5rem 0;
}
footer nav > ul {
	display: flex;
	justify-content: center;
	gap: 5rem;
}
footer nav > ul > li {
	position: relative;
}
footer nav > ul > li:not(:last-child)::before {
	content: "";
	width: 0.1rem;
	height: 1.6rem;
	background: #fff;
	position: absolute;
	right: -2.5rem;
	top: 0.4rem
}
footer nav > ul > li > a {
	font-weight: bold;
}
footer nav ul ul {
	font-size: 1.2rem;
	margin-top: 0.8rem;
}
footer nav ul ul a {
	display: flex;
	align-items: center;
}
footer nav ul ul a::before {
	content: "";
	width: 0.5rem;
	height: 0.1rem;
	background: #fff;
	margin-right: 0.5rem;
}
footer small {
	display: block;
	font-size: 1rem;
	text-align: center;
	background: var(--yellow);
	width: 100%;
	padding: 0.5rem 0;
}
@media screen and (max-width: 768px) {
	footer {
		padding: 3rem 0 0 0;
	}
	.footer-insta {
		position: relative;
		right: auto;
		top: auto;
		font-size: 3rem;
		margin-top: 0.5rem;
	}
	footer nav {
		margin: 3rem 0;
	}
	footer nav > ul {
		flex-direction: column;
		gap: 2rem;
	}
	footer nav > ul > li {
		position: relative;
	}
	footer nav > ul > li:not(:last-child)::before {
		display: none;
	}
	footer nav > ul > li > a {
		font-weight: bold;
	}
	footer nav ul ul {
		font-size: 1.3rem;
		margin-top: 0.5rem;
	}
}



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

page-ttl

------------------------------------------- */
.page-ttl {
	background: 
		url(../img/top-point-bg-1.png) no-repeat left top,
		url(../img/top-point-bg-1.png) no-repeat right bottom,
	
		url(../img/texture-2.jpg) center top;
	background-size: 
		40rem auto,
		40rem auto,
		100% auto;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 15rem;
	padding-bottom: 0.4rem;
}
/* h2 */
.page-ttl h2 {
	font-size: 3.6rem;
	line-height: 1;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-shadow: 0.07rem 0.07rem 0 rgba(255,255,255,0.8);
}
@media screen and (max-width: 768px) {
	.page-ttl {
		background: 
			url(../img/top-point-bg-1.png) no-repeat left -8rem top -4rem,
			url(../img/top-point-bg-1.png) no-repeat right -8rem bottom -4rem,
		
			url(../img/texture-2.jpg) center top;
		background-size: 
			28rem auto,
			24rem auto,
			100% auto;
		height: 14rem;
		padding-bottom: 0.5rem;
	}
	.page-ttl h2 {
		font-size: 3.2rem;
	}	
}



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

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 > figure img {
	aspect-ratio: 3 / 2;
	height: 100%;
	object-fit: cover;
}
.container .wrap > div {
	width: 60%;
}
@media screen and (max-width: 768px) {
	.container .wrap,
	.container .wrap.reverse {
		flex-direction: column;
	}
	.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: var(--prime);
	border-radius: 50%;
	color: #fff;	
	font-size: 1.2rem;
	width: 3.2rem;
	height: 3.2rem;
	display: flex;
	justify-content: center;
	align-items: center;
	line-height: 1;
	padding-left: 0.1rem;
}



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

style

------------------------------------------- */
/* heading */
.heading-1 {
	line-height: 1;
	margin-bottom: 4rem;
}
/* more */
.more {
	background-color: var(--prime);
	color: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	line-height: 1;
	width: 29rem;
	height: 6rem;
	margin: 0 auto;
	font-weight: bold;
	padding: 0 2.5rem 0.16rem 2.5rem;
	font-size: 1.7rem;
	border: solid 0.3rem #fff;
	box-shadow: 0.5rem 0.5rem 0 #454b4e;
}	
.more i {
	margin-top: 0.3rem;
}
/* ttl */
.ttl,
.CMS-NEWS-TITLE,
.CMS-ARTICLE-TITLE {
	border-bottom: solid 1px rgba(0,0,0,0.3);
	font-size: 2.2rem;
	font-weight: bold;
	margin-bottom: 3rem;
	padding: 1rem 0 1.5rem 0;
	position: relative;
	font-weight: bold;
}
.ttl:after,
.CMS-NEWS-TITLE:after,
.CMS-ARTICLE-TITLE::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,
	.CMS-NEWS-TITLE:after,
	.CMS-ARTICLE-TITLE::after {
		width: 40%;
	}	
}
/* detail */
dl.detail {
	display: flex;
	flex-wrap: wrap;
}
dl.detail dt {
	padding: 1.5rem 0;
	width: 25%;
	white-space: nowrap;
	font-weight: bold;
}
dl.detail dd {
	padding: 1.5rem 0;
	width: 75%;
}
@media screen and (max-width: 768px) {
	dl.detail {
		display: block;
	}	
	dl.detail dt {
		display: flex;
		align-items: center;
		padding: 1.5rem 0 0.3rem 0;
		width: 100%;
	}
	dl.detail dt::before {
		content: "◆";
		color: var(--prime);
		font-size: 1.2rem;
		margin-right: 0.5rem;
	}	
	dl.detail dd {
		padding: 0 0 1.5rem 0;
		width: 100%;
	}	
}
dl.bk dt,
dl.bk dd {
	border-bottom: 1px solid var(--grey);
}
dl.wh dt,
dl.wh dd {
	border-bottom: 1px solid rgba(255,255,255,0.5);
}
@media screen and (max-width: 768px) {
	dl.bk dt {
		border-bottom: none;
	}
	dl.wh dt {
		border-bottom: none;
	}
}



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

hamburger

------------------------------------------- */
.gnav-sp {
	background: url(../img/texture-1.jpg) center top;
	background-size: 100% auto;
	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;
}
.gnav-sp nav {
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
}
.gnav-sp-menu {
	display: flex;
	flex-direction: column;
	gap: 2rem;
}
.gnav-sp-menu > li:last-child {
	font-size: 2.8rem;
}
.gnav-sp-menu > li {
	font-size: 1.6rem;
	font-weight: bold;
}
.gnav-sp-menu > li > a {
	display: block;
	white-space: nowrap;
}
.gnav-sp-menu ul {
	font-size: 1.3rem;
	font-weight: normal;
	margin-top: 0.4rem;
}
.gnav-sp-menu ul li:not(:last-child) {
	margin-bottom: 0.3rem;
}
.gnav-sp-menu ul a {
	display: flex;
	align-items: center;
}
.gnav-sp-menu ul a::before {
	content: "";
	width: 0.5rem;
	height: 0.1rem;
	background: var(--grey);
	margin-right: 0.3rem;
}
/* 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;
	}
}
/* 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);
	}
}