@charset "utf-8";

/* =ヘッダー
------------------------------------------------------------------------------ */

header#top {
	position: fixed;
	top: 0;
	left: 0;
	background-color: var(--whiteColor);
	z-index: 9;
	height: 160px;
	width: 100%;
}
body.sidebar header#top {
	border-right: 1px solid var(--grayLowColor);
	height: 100vh;
	width: 300px;
	display: flex;
	flex-flow: column;
	justify-content: space-around;
	padding: 0 2em;
}

/* ロゴ */

header#top h1 {
	text-align: center;
}
header#top h1 img {
	display: inline-block;
	height: auto;
	margin: 1em auto 1.5em;
}
body.sidebar header#top h1 img {
	margin: 2em auto 0;
}

@media screen and (max-width: 1200px){

header#top {
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
}
body.sidebar header#top {
	border-right: none;
	height: 80px;
	width: 100%;
	flex-flow: row;
	align-items: center;
	justify-content: center;
}
header#top h1 img {
	margin: 0 auto;
	width: 256px;
}
body.sidebar header#top h1 img {
	margin: 0 auto;
}

}
@media screen and (max-width: 768px){


}

@media screen and (max-width: 568px){

header#top h1 img {
	width: 200px;
}



}

/* =ナビゲーション
------------------------------------------------------------------------------ */

/*メニューボタン */

.openbtn {
	display: none;
}

/*メニュー */

#g-nav {
	background-color: transparent;
	margin: auto;
}
#g-nav ul {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
	width: fit-content;
}
#g-nav ul li {
	margin: 0 2em 0 0;
}
#g-nav ul li:last-child {
	margin-right: 0;
}
body.sidebar #g-nav ul {
	display: block;
}
body.sidebar #g-nav ul li {
	margin: 0 0 0.5em;
}
body.sidebar #g-nav ul li:last-child {
	margin-bottom: 0;
}
#g-nav ul li a {
	display: block;
	color: var(--brackColor);
	text-decoration: none;
	word-break: keep-all;
	font-weight: 500;
	transition: all .2s;
}
body.sidebar #g-nav ul li a {
}
#g-nav ul li a:hover {
	color: var(--keyColor);
}

/*メニュー（入れ子） */

#g-nav ul li.nest {
	position: relative;
	padding-right: 1em;
}
#g-nav ul li.nest a::after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(135deg);
}
#g-nav ul li.nest ul.child {
	display: none;
	position: absolute;
	top: calc(100% + 0.5em);
	left: 0;
	z-index: 9;
	width: 300%;
	border: 1px solid var(--grayColor);
	background-color: rgba(255,255,255,0.75);
}
body.sidebar #g-nav ul li.nest ul.child {
	width: 200%;
	top: 0;
	left: calc(100% + 1em);
}
#g-nav ul li.nest ul.child li {
	padding: 0;
	margin: 0;
}
#g-nav ul li.nest ul.child li a {
	padding: 1em;
	line-height: 1.5;
	border-bottom: 1px solid var(--grayColor);
}
#g-nav ul li.nest ul.child li:last-child a {
	border-bottom: none;
}
#g-nav ul li.nest ul.child li a::after {
	display: none;
	width: 0;
	height: 0;
	border: none;
}

/*メニュー（SNS） */

#g-nav ul li.sns ul {
	position: absolute;
	top: 32px;
	right: 32px;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 auto;
}
body.sidebar #g-nav ul li.sns ul {
	position: inherit;
	top: auto;
	right: auto;
	margin-top: 4em;
	flex-wrap: wrap;
}
#g-nav ul li.sns ul li {
	margin: 0 1.5em 0 0;
}
#g-nav ul li.sns ul li:last-child {
	margin-right: 0;
}
#g-nav ul li.sns ul li a svg {
	vertical-align: middle;
	height: auto;
	width: 20px;
	fill: var(--keyColor);
}

/*電話番号 */

#g-nav ul li.sns ul li.number {
	font-size: 2.5rem;
	margin-right: 1em;
	line-height: 1;
}
body.sidebar #g-nav ul li.sns ul li.number {
	width: 100%;
	text-align: center;
	margin: 0 auto 1em;
}
#g-nav ul li.sns ul li.number a {
	color: var(--keyColor);
	word-break: keep-all;
	font-weight: bold;
}
#g-nav ul li.sns ul li.number a svg {
	width: 16px;
	margin-right: 4px;
}

/*ボタン */

#g-nav ul li.sns ul li.btn {
	font-size: 80%;
}
body.sidebar #g-nav ul li.sns ul li.btn {
	margin: 0 auto 1em;
	width: 100%;
	text-align: center;
}
#g-nav ul li.sns ul li.btn a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	background-color: var(--keyColor);
	color: var(--whiteColor);
	padding: 1em;
	line-height: 1;
	word-break: keep-all;
	border-radius: 3px;
}
#g-nav ul li.sns ul li.btn a svg {
	width: 12px;
	margin-right: 4px;
	fill: var(--whiteColor);
}


/* 問い合わせ先 */

#g-nav ul li.credit {
	display: none;
}


@media screen and (max-width: 1200px){

/*メニューボタン */

.openbtn {
	display: block;
	position: fixed;
	width: 64px;
	height: 64px;
	top: 8px;
	right: 8px;
	z-index: 9999;
	margin: auto 0;
	cursor: pointer;
	background-color: transparent;
}
.openbtn span {
	background-color: var(--blackColor);
	transition: all .5s;
	position: absolute;
	left: 16px;
	height: 2px;
  	width: 32px;
}
/*
.openbtn.inv span {
	background-color: var(--blackColor);
}
.openbtn.inv.active span {
	background-color: var(--whiteColor);
}
*/
.openbtn span:nth-of-type(1) {
	top: 24px;
}
.openbtn span:nth-of-type(2) {
	top: 32px;
}
.openbtn span:nth-of-type(3) {
	top: 40px;
}

/*active */
.openbtn.active span {
	background-color: var(--whiteColor);
}
/*
.openbtn.active span:nth-of-type(1),
.openbtn.active span:nth-of-type(3){
	top: 32px;
}
*/
.openbtn.active span:nth-of-type(1) {
    top: 25px;
    left: 19px;
    transform: translateY(6px) rotate(45deg);
    width: 40%;
}
.openbtn.active span:nth-of-type(2) {
	display: none;
	height: 0;
	width: 0;
}
.openbtn.active span:nth-of-type(3) {
    top: 37px;
    left: 19px;
    transform: translateY(-6px) rotate(-45deg);
    width: 40%;
}
/*メニュー */

#g-nav {
	position: fixed;
	z-index: 99;
	top: -100%;
	left: 0;
	right: auto;
	width: 100%;
	height: 100vh;
	transition: all 0.5s;
	margin: 0;
}
#g-nav.panelactive {
	background-color: var(--panelactive);
	display: block;
	top: 0;
}
#g-nav ul {
	display: none;
	position: absolute;
	z-index: 99;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	list-style: none;
	height: 80%;
	width: 72%;
	overflow-y: auto;
}
#g-nav.panelactive ul {
	display: block;
}
#g-nav.panelactive ul li {
	margin: 0;
	width: 100%;
	line-height: 1.5;
}
body.sidebar #g-nav.panelactive ul li {
	margin-bottom: 0;
}
#g-nav.panelactive ul li a {
	display: block;
	border-bottom: 1px solid var(--whiteColor);
	padding: 1em 0;
	margin: 0;
	font-size: 2.0rem;
	color: var(--whiteColor);
	position: relative;
}
#g-nav ul li a,
body.sidebar #g-nav ul li a {
	font-size: 2.0rem;
}
#g-nav.panelactive ul li a::after {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 8px;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
}

/*メニュー（入れ子） */

#g-nav.panelactive ul li.nest {
	padding-right: 0;
}
#g-nav.panelactive ul li.nest a::after {
	right: 8px;
	transform: rotate(135deg);
}
#g-nav.panelactive ul li.nest ul.child,
body.sidebar #g-nav.panelactive ul li.nest ul.child {
	display: block;
	position: inherit;
	top: inherit;
	left: inherit;
	transform: none;
	border: none;
	background-color: transparent;
	height: auto;
	width: auto;
	overflow-y: inherit;
}
#g-nav.panelactive ul li.nest ul.child li a {
	border-color: var(--whiteColor);
	padding-left: 1em;
}
#g-nav.panelactive ul li.nest ul.child li a {
	border-bottom: 1px solid var(--whiteColor);
}

/*メニュー（SNS） */

#g-nav.panelactive ul li.sns {
	width: 100%;
}
#g-nav.panelactive ul li.sns ul {
	position: inherit;
	top: auto;
	left: auto;
	height: auto;
	width: auto;
	transform: none;
	display: flex;
	justify-content: center;
	align-items: center;
	overflow-y: hidden;
	margin-top: 1em;
}
body.sidebar #g-nav.panelactive ul li.sns ul {
	margin-top: 1em;
}
#g-nav.panelactive ul li.sns ul li {
	width: auto;
	margin: 0 1em;
}
#g-nav.panelactive ul li.sns ul li a {
	border: none;
}
#g-nav.panelactive ul li.sns a::after {
	height: 0;
	width: 0;
	border: none;
}
#g-nav.panelactive ul li.sns ul li a svg {
	width: 24px;
	fill: var(--whiteColor);
}

/* 問い合わせ先 */

#g-nav.panelactive ul li.credit {
	display: block;
	width: 100%;
	margin-top: 4em;
	font-size: 90%;
}
#g-nav.panelactive ul li.credit dl {
	display: flex;
	justify-content: center;
	align-items: flex-start;
	color: var(--whiteColor);
	margin: 0 auto;
}
#g-nav.panelactive ul li.credit dl dt {
	margin-right: 1em;
	font-weight: 600;
	word-break: keep-all;
	flex-shrink: 0;
}
#g-nav.panelactive ul li.credit p {
	display: block;
	color: var(--whiteColor);
	margin: 0 auto;
	width: fit-content;
}

/*電話番号 */

#g-nav ul li.sns ul {
	flex-wrap: wrap;
}
#g-nav ul li.sns ul li.number {
	width: 100%;
	text-align: center;
}
#g-nav ul li.sns ul li.number,
body.sidebar #g-nav ul li.sns ul li.number {
	margin-bottom: 0;
}
#g-nav.panelactive ul li.sns ul li.number a {
	color: var(--whiteColor);
}
#g-nav.panelactive ul li.sns ul li.number a svg {
	width: 16px;
}

/*ボタン */
#g-nav.panelactive ul li.sns ul li.btn {
	margin: 0 auto 1em;
	width: 100%;
	text-align: center;
}
#g-nav.panelactive ul li.sns ul li.btn a {
}
#g-nav.panelactive ul li.sns ul li.btn a svg {
	width: 12px;
}


/* アニメーション調整 */
#g-nav li:nth-of-type(1) {animation-delay: 0.1s;}
#g-nav li:nth-of-type(2) {animation-delay: 0.2s;}
#g-nav li:nth-of-type(3) {animation-delay: 0.3s;}
#g-nav li:nth-of-type(4) {animation-delay: 0.4s;}
#g-nav li:nth-of-type(5) {animation-delay: 0.5s;}
#g-nav li:nth-of-type(6) {animation-delay: 0.6s;}
#g-nav li:nth-of-type(7) {animation-delay: 0.7s;}
#g-nav li:nth-of-type(8) {animation-delay: 0.8s;}
#g-nav li:nth-of-type(9) {animation-delay: 0.9s;}
#g-nav li:nth-of-type(10) {animation-delay: 1.0s;}
#g-nav li:nth-of-type(11) {animation-delay: 1.1s;}
#g-nav li:nth-of-type(12) {animation-delay: 1.2s;}
#g-nav li:nth-of-type(13) {animation-delay: 1.3s;}
#g-nav li:nth-of-type(14) {animation-delay: 1.4s;}
#g-nav li:nth-of-type(15) {animation-delay: 1.5s;}
}


@media screen and (max-width: 568px){

#g-nav.panelactive ul li a {
	font-size: 1.5rem;
}
#g-nav ul li a,
body.sidebar #g-nav ul li a {
	font-size: 1.5rem;
}
#g-nav ul li.sns ul li.number a {
	font-size: 2.5rem;
}
#g-nav.panelactive ul li.credit dl {
	display: block;
	margin-right: auto;
	margin-left: auto;
	width: fit-content;
}
#g-nav.panelactive ul li.credit dl dt {
	margin: 0 auto;
}

}

/* =アイキャッチ
------------------------------------------------------------------------------ */

.eyecach {
	position: relative;
	height: 80vh;
	overflow: hidden;
}
.eyecach .inner {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 2;
	display: flex;
	justify-content: center;
	align-items: center;
	/*
	background-color: rgba(0,0,0,0.25);
	background-color: rgba(255,255,255,0.3);
	background: linear-gradient(to bottom, rgba(73,122,191,0.5) 0%,rgba(189,217,104,0.5) 100%);
	*/
	background-color: rgba(83,198,255,0.25);

}

.eyecach #header-img {
	position: absolute;
	z-index: 1;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: url("../images/eyecach.jpg");
	background-position: center top;
	background-repeat: no-repeat;
	background-size: cover;
}

/* キャッチコピー */

.eyecach .inner .copy {
	color: var(--whiteColor);
	/*
	text-shadow: 1px 1px 0 rgba(255,255,255,0.8);
	*/
	text-shadow: 1px 1px 0 rgba(0,0,0,0.8);	
	text-align: center;
	z-index: 3;
	padding: 0;
	line-height: 1.5;
}
.eyecach .inner .copy .prim {
	display: block;
	/*
	font-size: clamp(2rem, 0.636rem + 5.82vw, 5rem);
	*/
	font-size: clamp(2rem, 0.182rem + 7.76vw, 6rem);
	font-weight: 600;
}
.eyecach .inner .copy .seco {
	display: block;
	font-size: clamp(1.25rem, 0.455rem + 3.39vw, 3rem);
	font-weight: 500;
	margin-bottom: 0.5em;
}
.eyecach .inner .copy  i.dot {
	position: relative;
	padding-top: 0.1em;
	font-style: normal;
}
.eyecach .inner .copy i.dot::before {
	position: absolute;
	content: "";
	width: 0.2em;
	height: 0.2em;
	border-radius: 50%;
	background-color: var(--whiteColor);
	top: 0;
	left: 50%;
	transform: translate(-50%, 0);
}

/* 下層ページ */

body.lower .eyecach {
	height: 48vh;
}
body.lower .eyecach #header-img {
	background-image: url("../images/eyeUnder.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
body.lower .eyecach .inner {
	justify-content: center;
	align-items: center;
	/*
	background-color: rgba(255,255,255,0.25);
	*/
	background-color: rgba(83,198,255,0.25);
}
body.lower .eyecach .inner .copy {
	font-size: clamp(2.5rem, 1.591rem + 3.88vw, 4.5rem);
	text-align: center;
	padding: 0;
}
body.lower .eyecach .inner .copy .ja {
	display: block;
	word-break: keep-all;
	font-weight: 600;
}
body.lower .eyecach .inner .copy .en {
	display: block;
	font-size: 40%;
	font-weight: 400;
	letter-spacing: 0;
	margin-top: 0.5em;
}


/* タイトル */

.eyecach .inner .title {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	z-index: 10;
	text-align: center;
	color: var(--blackColor);
	text-shadow: 2px 2px 0 #fff, -2px -2px 0 #fff,-2px 2px 0 #fff, 2px -2px 0 #fff,0px 2px 0 #fff,  0-2px 0 #fff,-2px 0 0 #fff, 2px 0 0 #fff;
	font-size: clamp(2rem, 1.318rem + 2.91vw, 3.5rem);
	font-weight: 600;
	width: 100%;
}
.eyecach .inner .title br.adj {
	display: none; 
}
/*
.eyecach .inner .title span {
	text-shadow: none;
	background-color: rgba(255,255,255,0.85);
	color: #0d0d0d;
}
*/
/* スライダー */

.slider {
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
}
.slider .slider-item {
	padding: 0;
	margin: 0;
}
.slider .slider-item img {
	display: block;
	object-fit: cover;
	object-position: center;
	height: 64vh;
	width: 100%;
	border-right: 8px solid var(--whiteColor);
	border-left: 8px solid var(--whiteColor);
	border-radius: 24px;
}
.slider-item.slick-slide {
	transition: all ease-in-out .3s;
	opacity: 1;
}
.slider-item.slick-active {
	opacity: 1;
}
.slider-item.slick-current {
	opacity: 1;
}

/*キャプション*/

.slider .slider-item .caption {
	position: absolute;
	top: 4%;
	left: 1%;
	z-index: 3;
	background-color: rgba(0,0,0,0.5);
	color: #fff;
	line-height: 1.4;
	font-size: 100%;
	padding: 0.75em 1em;
}

/*矢印の設定*/

.slick-prev, 
.slick-next {
	position: absolute;
	z-index: 10;
	top: 0;
	bottom: 0;
	margin: auto 0;
	cursor: pointer;
	outline: none;
	height: 48px;
	width: 48px;
	border-radius: 50%;
	background-color: var(--keyColor);
}
.slick-prev {
	left: 18.5%;
}
.slick-next {
	right: 18.5%;
}
.slick-prev::after,
.slick-next::after {
	position: absolute;
	z-index: 10;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	content: url("../images/slickArrow.svg");
	height: 16px;
	width: 16px;
	line-height: 16px;
	letter-spacing: 0;
}
.slick-prev::after {
	transform: rotate(-180deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	z-index: 10;
	text-align: center;
	padding: 0;
	margin: auto;
}
.slick-dots li {
	display: inline-block;
	margin: 0 16px;
}
.slick-dots button {
	width: 12px;
	height: 12px;
	display: block;
	border-radius: 50%;
	background-color: #ddd;
	border: 0;
	letter-spacing: 0;
	color: transparent;
	outline: none;
}
.slick-dots .slick-active button {
	background-color: var(--keyColor);
}



@media screen and (max-width: 1200px){


.slick-prev, 
.slick-next {
	height: 40px;
	width: 40px;
}
.slick-prev {
	left: 2%;
}
.slick-next {
	right: 2%;
}
.slider .slider-item img {
	border-right: none;
	border-left: none;
	border-radius: 0;
}

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

.eyecach .inner .title br.adj {
	display: block; 
}

}
@media screen and (max-width: 768px){


.eyecach .inner .copy {
	text-align: center;
}
}
@media screen and (max-width: 568px){

.eyecach {
	height: 72vh;
}
.slider .slider-item img {
	height: 72vh;
}
body.lower .eyecach {
	height: 32vh;
}

}


/* =コンテンツ
------------------------------------------------------------------------------ */

#contents {
	overflow: hidden;
	position: relative;
	z-index: 2;
	background-color: var(--whiteColor);
}

.pankz {
	font-size: clamp(1rem, 0.886rem + 0.48vw, 1.25rem);
	border-bottom: 1px solid var(--grayLowColor);
	background-color: var(--whiteColor);
	padding: 1.5em 2%;
}
.pankz a {
	text-decoration: none;
}
.pankz a:hover {
	opacity: 0.75;
}
/* =フッター
------------------------------------------------------------------------------ */

footer {
	clear: both;
	overflow: hidden;
	position: relative;
	z-index: 2;
	background-color: var(--keyColor);
	color: var(--whiteColor);
}
footer a {
	color: var(--whiteColor);
	text-decoration: none;
}
footer a:hover {
	text-decoration: none;
	opacity: 0.75;
}
footer ul {
	display: flex;
	justify-content: center;
	align-items: stretch;
	flex-wrap: wrap;
	margin: 2em auto;
}
footer ul li {
	margin: 0;
}
footer ul li a {
	position: relative;
	display: flex;
	align-items: center;
	padding: 0 0 0 0.75em;
	margin: 0 2em 0 0;
	font-size: 90%;
}
footer ul li a::before {
	display: block;
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	width: 5px;
	height: 5px;
	border-top: 2px solid;
	border-right: 2px solid;
	transform: rotate(45deg);
}
footer ul li:last-child {
	margin-right: 0;
}

footer .credit {
	padding: 1em 0;
	line-height: 1.5;
	font-size: 90%;
}
footer .credit dl {
	display: flex;
	align-content: center;
	justify-content: center;
	margin: 0 auto 2em;
	width: fit-content;
}
footer .credit dl dt {
	border-right: 1px solid var(--whiteColor);
	padding-right: 1em;
	font-weight: normal;
}
footer .credit dl dd {
	padding-left: 1em;
	text-align: left;
}
footer .credit p {
	margin: 0 auto 2em;
	width: fit-content;
}
footer .copyright {
	font-size: 1.2rem;
	padding: 1em 0;
	text-align: center;
}

footer a#change  {
	display: inline-flex;
	line-height: 1;
	padding: 0.5em 1em;
	border: 1px solid var(--whiteColor);
	font-size: 80%;
}

@media screen and (max-width: 768px){

footer .credit dl {
	display: block;
}
footer .credit dl dt {
	border-right: none;
	border-bottom: 1px solid var(--whiteColor);
	padding: 0 0 1em;
	text-align: center;
}
footer .credit dl dd {
	padding: 1em 0 0;
}


}
@media screen and (max-width: 568px){

footer ul {
	justify-content: space-between;
	width: 92%;
}
footer ul li {
	width: 48%;
}


}



/* =ページトップ
------------------------------------------------------------------------------ */

.pagetop {
	position: fixed;
	bottom: 1em;
	right: 1em;
	z-index: 3;
}
.pagetop a {
	width: 64px;
	height: 64px;
	border-radius: 50%;
	background-color: var(--whiteColor);
	border: 1px solid var(--keyColor);
	display: flex;
	justify-content: center;
	align-items: center;
	cursor: pointer;
}
.pagetop a span {
	display: block;
	margin-top: 8px;
	width: 12px;
	height: 12px;
	border-top: 2px solid var(--keyColor);
	border-left: 2px solid var(--keyColor);
	transform: rotate(45deg);
}

