@charset "utf-8";
/* ----------------------------------------------------------------------
 user reset
---------------------------------------------------------------------- */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
  list-style: none;
}
table {
  border-collapse: collapse;
}
ul {
    list-style: none;
}
*,
*::after,
*::before {
  margin: 0;
  padding: 0;
  box-sizing: inherit;
}
a{
	text-decoration: none;
	color: #000;
}
h5 {
	font-weight: 500;;
}

*,
*:before,
*:after {
  -webkit-box-sizing: inherit;
  box-sizing: border-box;
}

body, html {
    overflow-x: hidden;
}


html {
    font-size: 50%;
	scroll-behavior: smooth;
}
@media (min-width: 1025px) {
	html {
		font-size: 62.5%;
		scroll-behavior: smooth;
		-webkit-box-sizing: border-box;
		box-sizing: border-box;
	}
}
/* font family */
:root {
    --font-family-main:"Jost", serif; /*little*/
    --font-family-sub: "EB Garamond", serif; /* aqua */ 
    --font-family-mincho: "Shippori Mincho", serif; /* mincho */ 
	--font-weight: 400;
}
/* 基本のスタイル */
body {
    position: relative; /* 擬似要素を正しく配置するために必要 */
/*    color: #fff;*/
    color: #231815;
    font-family: YakuHanJP, "Noto Sans JP", sans-serif, "Hiragino Kaku Gothic Pro", Meiryo, sans-serif;
    font-weight: 500;
    font-size: 1.6rem;
    line-height: 2;
/*    background: url(images/body-bg-sp.jpg), #000001;*/
	background: url(images/body-bg.jpg);
    background-attachment: fixed;
    background-position: bottom center;
    background-size: cover;
    margin: 0; /* 必要に応じてリセット */
    padding: 0; /* 必要に応じてリセット */
    overflow: hidden; /* 必要に応じて調整 */
}

/* アニメーションの定義 */
@keyframes fadeInOverlay {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* メディアクエリの設定（必要に応じて） */
@media (min-width: 768px) {
    body {
        background-attachment: fixed;
        background-position: bottom center;
        background-size: cover;
    }
}

@media (min-width: 1025px) {
    body {
        background-attachment: fixed;
        background-position: bottom center;
        background-size: cover;
    }
}

/* ----------------------------------------------------------------------
 layout
---------------------------------------------------------------------- */
.flex{
    display: flex;
}

.fl-reverse {
	flex-direction: row-reverse;
}

.fl-wrap{
    flex-wrap: wrap;
}

.fl-column {
    flex-direction: column;
}

.fl-center{
    justify-content: center;
    align-items: center;
}

.fl-between{
    flex-wrap: wrap;
    justify-content: space-between;
}

.fl-justify{
    justify-content: center;
}

.fl-around{
    justify-content: space-around;
}

.fl-end{
	justify-content: flex-end;
}

.fl-start{
	justify-content: flex-start;
}

.fl-align-center {
    align-items: center;
}

.fl-align-start{
    align-items: flex-start;
}

.fl-align-self-start-only {
	align-self: flex-start;
}

.fl-align-self-end {
	align-self: center;
}
@media (min-width: 768px) {	
	.fl-align-self-end {
		align-self: flex-end;
	}
}

.fl-align-self-start {
	align-self: center;
}
@media (min-width: 768px) {	
	.fl-align-self-start {
		align-self: flex-start;
	}
}

.col-2{
    width: 100%;
}
@media (min-width:768px) {
	.col-2 {
		width: 50%;
	}
}

.col-xs-2 {
    width: 50%;
}
.col-xs-2-sub {
    width: 48.5%;
}


.col-news-1 {
    width: 100%;
}
@media (min-width: 1025px) {
	.col-news-1 {
		width: 30%;
	}
}

.col-news-2 {
    width: 100%;
}
@media (min-width: 1025px) {
	.col-news-2 {
		width: 68%;
	}
}


.col-3{
    width: 100%;
}
@media (min-width:768px) {
	.col-3 {
		width: 31%;
	}
}

.col-xs-3 {
    width: 48%;
}
@media (min-width:768px) {
	.col-xs-3 {
		width: 31%;
	}
}

.col-3-sp {
    width: 26%;
}
@media (min-width:768px) {
	.col-3-sp {
		width: 31%;
	}
}

.col-4{
    width: calc(50% - 1px);
}
@media (min-width:768px) {
	.col-4 {
		width: calc(25% - 1px);
	}
}

/* sub-page */
.col-2-sub {
    width: 100%;
}
@media (min-width:768px) {
	.col-2-sub {
		width: 48%;
	}
}

/* sub-page */
.col-2-sub-hero {
    width: 84%;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width:768px) {
	.col-2-sub-hero {
		width: 40%;
	}
}

.col-4-sub {
    width: calc(50% - 10px);
}
@media (min-width:768px) {
	.col-4-sub {
		width: calc(25% - 10px);
	}
}
@media (min-width:1025px) {
	.col-4-sub {
		width: calc(25% - 20px);
	}
}


.contents-pd-none  {
	max-width: 100%;
	margin-right: auto;
    margin-left: auto;
}
@media (min-width:768px) {
	.contents-pd-none {
        width: 94%;
    }
}
@media (min-width: 1025px) {
	.contents-pd-none {
        width: 97rem;
    }
}

.contents,.contents-hero,.contents-90,.contents-80,.contents-75,.contents-70,.contents-60  {
	max-width: 100%;
    padding-left: 1.5rem;
    padding-right: 1.5rem;	
	margin-right: auto;
    margin-left: auto;
}
@media (min-width:768px) {
	.contents,.contents-90,.contents-hero {
        width: 94%;
    }
}

@media (min-width: 1025px) {
	.contents-hero {
        width: 110rem;
    }
	.contents {
        width: 97rem;
    }
	.contents-90 {
        width: 90rem;
    }
	.contents-80 {
        width: 80rem;
    }
	.contents-75 {
        width: 75rem;
    }
	.contents-70 {
        width: 70rem;
    }
	.contents-60 {
        width: 60rem;
    }
}

.text-c{
    text-align: center;
}

.text-r{
    text-align: right;
}

.text-lc,.text-l,.text-lr {
    text-align: left;
}

.text-cl{
    text-align: center;
}

@media (min-width:768px) {
	.text-lc {
		text-align: center;
	}
	.text-cl {
		text-align: left;
	}
	.text-lr {
		text-align: right;
	}
}

.text-deco-none {
	text-decoration: none;
}

/* ----------------------------------------------------------------------
共通
---------------------------------------------------------------------- */
.grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}

.grid-column{
	padding: 1.5rem 1rem;
	max-width: 43.4rem;
}

/* 3つ */
.grid-3 {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}
@media (min-width:768px) {
	.grid-3 {
		display: grid;
		gap: 3rem;
		grid-template-columns: repeat(auto-fit, minmax(29%, 1fr));
	}
}

/* ----------------------------------------------------------------------
 スマホ特例
---------------------------------------------------------------------- */
@media (max-width:400px) {
	.hero-iphone-se {
		margin-bottom: 6rem !important;
	}
}	
	@media (max-width:767px) {
	.sp-column {
		flex-direction: column;
	}
	.sp-center{
		text-align: center;
	}
	.sp-mgn {
		padding-left: 2.5rem;
		padding-right: 2.5rem;
	}
	.sp-mt-1 {
		margin-top: 1rem;
	}
	.sp-mt-2 {
		margin-top: 2rem;
	}
	.sp-mt-3 {
		margin-top: 3rem;
	}
	.sp-mt-5 {
		margin-top: 5rem;
	}
	.sp-mt-8 {
		margin-top: 8rem;
	}
	.sp-mt-10 {
		margin-top: 10rem;
	}
	.and-more {
		width: 48vw;
	}
}

/* ----------------------------------------------------------------------
 タブレット特例
---------------------------------------------------------------------- */
@media (max-width: 1024px) {
	.tb-mt-3 {
		margin-top: 3rem;
	}

	.tb-mt-8 {
		margin-top: 8rem;
	}
}

/* ----------------------------------------------------------------------
 margin
---------------------------------------------------------------------- */
.mt-1{
    margin-top: 1rem;
}

.mt-2{
    margin-top: 2rem;
}

.mt-3{
    margin-top: 1.5rem;
}
@media (min-width: 768px) {
	.mt-3{
	   	margin-top: 3rem;
	}
}

.mt-4{
    margin-top: 2rem;
}
@media (min-width: 768px) {
	.mt-4{
	   	margin-top: 4rem;
	}
}

.mt-5 {
	margin-top: 2.5rem;
}
@media (min-width: 768px) {
	.mt-5{
	   	margin-top: 5rem;
	}
}

.mt-6 {
	margin-top: 3rem;
}
@media (min-width: 768px) {
	.mt-6{
	   	margin-top: 6rem;
	}
}

.mt-7 {
	margin-top: 3.5rem;
}
@media (min-width: 768px) {
	.mt-7{
	   	margin-top: 7rem;
	}
}

.mt-8 {
	margin-top: 4rem;
}
@media (min-width: 768px) {
	.mt-8{
	   	margin-top: 8rem;
	}
}

.mt-10{
    margin-top: 5rem;
}
@media (min-width: 768px) {
	.mt-10{
	   	margin-top: 10rem;
	}
}


.mt-10-pc {
    margin-top: 0;
}
@media (min-width: 768px) {
	.mt-10-pc {
	   	margin-top: 10rem;
	}
}

.mt-15{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-15{
	   	margin-top: 15rem;
	}
}

.mt-20{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-20{
	   	margin-top: 20rem;
	}
}

.mt-25{
    margin-top: 8rem;
}
@media (min-width: 768px) {
	.mt-25{
	   	margin-top: 25rem;
	}
}

.mb-5{
    margin-bottom: 3rem;
}
@media (min-width: 768px) {
	.mb-5{
	   	margin-bottom: 5rem;
	}
}

.mb-10{
    margin-bottom: 5rem;
}
@media (min-width: 768px) {
	.mb-10{
	   	margin-bottom: 10rem;
	}
}

.mb-15{
    margin-bottom: 7.5rem;
}
@media (min-width: 768px) {
	.mb-15{
	   	margin-bottom: 15rem;
	}
}

.mb-20{
    margin-bottom: 10rem;
}
@media (min-width: 768px) {
	.mb-20{
	   	margin-bottom: 20rem;
	}
}

.ml-05 {
    margin-left: .5rem;
}

.ml-1 {
    margin-left: 1rem;
}

.ml-2{
    margin-left: 2rem;
}

.ml-3{
    margin-left: 3rem;
}

.mr-03{
    margin-right: .3rem;
}

.mr-1{
    margin-right: 1rem;
}

.mr-2{
    margin-right: 2rem;
}

.mr-3{
    margin-right: 3rem;
}

.m-auto {
	margin-left : auto;
	margin-right: auto; 
}

@media (max-width: 767px) {
	.m-auto-sp {
		margin-left : auto;
		margin-right: auto; 
	}
}

.ml-auto {
	margin-left : auto;
	margin-right: auto; 
}
@media (min-width: 768px) {
	.ml-auto {
		margin-left : auto;
		margin-right: 0; 
	}
}

.mr-auto {
	margin-left : auto;
	margin-right: auto; 
}
@media (min-width: 768px) {
	.mr-auto {
		margin-left : 0;
		margin-right: auto; 
	}
}

.mt-0 {
	margin-top: 0;
}

.mb-0 {
	margin-bottom: 0;
}

.pt-10 {
	padding-top: 5rem;
}
@media (min-width: 768px) {
	.pt-10 {
		padding-top: 10rem;
	}
}
.pt-20 {
	padding-top: 8rem;
}
@media (min-width: 768px) {
	.pt-20 {
		padding-top: 20rem;
	}
}

.pd-1 {
    padding: 1rem;
}

.pd-2 {
    padding: 2rem;
}

.pd-3 {
    padding: 2rem;
}
@media (min-width: 1025px) {
	.pd-3 {
		padding: 3rem;
	}
}

.pd-5 {
    padding: 3rem;
}
@media (min-width: 1025px) {
	.pd-5 {
		padding: 5rem;
	}
}

.pd-5-p {
    padding: 3rem 0;
}
@media (min-width: 1025px) {
	.pd-5-p {
		padding: 5rem;
	}
}

.pd-8 {
    padding: 5rem;
}
@media (min-width: 1025px) {
	.pd-8 {
		padding: 8rem;
	}
}

.pb-1{
    padding-bottom: 1rem;
}

.pb-20 {
	padding-bottom: 10rem;
}
@media (min-width: 1025px) {
	.pb-20 {
		padding-bottom: 20rem;
	}
}

.pd-tb-4 {
	padding: 4rem 0;
}

.mg-lr-3 {
	margin-left: 3rem;
	margin-right: 3rem;
}

.mt-m1{
    margin-top: -1rem;
}

.height-100p {
	height: 100%;
}

.width-83p {
	width: calc(100% - 3rem);
}
@media (min-width: 768px) {
	.width-83p {
		width: 83%;
	}
}

.width-86p {
	width: calc(100% - 3rem);
}
@media (min-width: 768px) {
	.width-86p {
		width: 86%;
	}
}

.width-100p {
	width: 100%;
}

.background-size-100 {
	background-size: 100% auto
}

.box-sizing-border-box {
	box-sizing: border-box;
}


/* ----------------------------------------------------------------------
 表示・非表示
---------------------------------------------------------------------- */
.sp-only-on {
    display: block;
   }
@media (min-width: 768px) {
	.sp-only-on {
        display: none;
    }
}

.tab-on {
    display: none;
}
@media (min-width: 768px) {
	.tab-on {
		display: block;
	}
}

.sp-on {
    display: block;
   }
@media (min-width: 1025px) {
	.sp-on {
        display: none;
    }
}

.pc-on {
    display: none;
}
@media (min-width: 1025px) {
	.pc-on {
		display: block;
	}
}

/* ----------------------------------------------------------------------
 フォント関連
---------------------------------------------------------------------- */
.fs-60 {
    font-size: 4.8rem;
    line-height: 1.5;
}
@media (min-width: 768px) {
	.fs-60{
    	font-size: 6rem; /* aqua */
	}
}

.fs-50 {
    font-size: 4rem;
    line-height: 1.5;
	/*font-family: 'Yu Mincho', '游明朝', serif;*/
	font-family: var(--font-family-mincho);
}
@media (min-width: 768px) {
	.fs-50{
    	font-size: 4rem; /* aqua */
	}
}

.fs-38 {
	font-size: 3.8rem;
	line-height: 1.7;
}

.fs-32 {
	font-size: 3.2rem;
	line-height: 1.7;
/*	font-family: 'Yu Mincho', '游明朝', serif;*/
	font-family: var(--font-family-mincho);
}

.fs-30 {
	font-size: 3rem;
	line-height: 1.7;
}

.fs-24{
   	font-size: 2.4rem;
}

.fs-22{
	font-size: 2.2rem;
}

.fs-20{
	font-size: 2rem;
}

.fs-18{
    font-size: 1.8rem;
    line-height: 1.7;
}

.fs-16{
    font-size: 1.6rem;
    line-height: 1.7;
}

.fs-15{
   	font-size: 1.5rem;
}

.fs-14{
   	font-size: 1.4rem;
}


.fs-80p {
    font-size: 80%;
}

.fs-90p {
    font-size: 90%;
}

.fs-110p {
    font-size: 110%;
}

.fs-120p {
    font-size: 120%;
}

.en {
	font-family: var(--font-family-main);
	font-weight: var(--font-weight);
	font-optical-sizing: auto;
	font-style: normal;
}

.bold{
    font-weight: 700!important;
}

.mincho {
	font-family: var(--font-family-mincho);
}

.text-shadow {
	text-shadow: 0px 3px 6px #00000029;
}

.box-shadow {
	box-shadow: 0px 3px 6px #00000029;
}

.normal {
	font-weight: 400!important;
}

.line-10 {
	line-height: 1.0;
}

.line-14 {
	line-height: 1.4;
}

.line-15 {
	line-height: 1.5;
}

.line-16 {
	line-height: 1.6;
}
.line-17 {
	line-height: 1.7;
}

.line-20 {
	line-height: 2;
}
.line-22 {
	line-height: 2.2;
}
.line-24 {
	line-height: 2.4;
}

.line-27 {
	line-height: 2.7;
}

/* 色*/
.white{
    color: #ffffff;
}

.black{
    color: #231815;
}

.red {
	color: #bf1e33;
	color: #FF4500;
	/*color: #EF454A;
	color: #EE836F;*/
}

.yellow {
	color: #FFF564;
}

.purple {
	color: #5800AA;
}

/* インデント */
.indent-1 {
    padding-left: .5em;
    text-indent: -.5em;
}

/* position */
.p-relative {
	position: relative;
}

/* padding */
.bg-pd {
	padding-top: 7.5rem;
	padding-bottom: 7.5rem;
}
@media (min-width: 1025px) {
	.bg-pd {
		padding-top: 12.8rem;
		padding-bottom: 12.8rem;
	}
}

/* ----------------------------------------------------------------------
 動画埋め込み
---------------------------------------------------------------------- */
.movie-wrap {
    position: relative;
    padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
    height: 0;
    overflow: hidden;
    margin: 1rem auto 5rem auto;
}

.movie-wrap iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 1025px) {
	.movie-wrap {
		margin: 6rem auto 10rem auto;
		width: 100%;
	}
}

/* ----------------------------------------------------------------------
 動画埋め込み 1対1
---------------------------------------------------------------------- */
.movie-wrap-s {
    position: relative;
    padding-bottom: 100%; /*アスペクト比 1:1の場合の縦幅*/
    height: 0;
    overflow: hidden;
    margin: 1rem auto 5rem auto;
}

.movie-wrap-s iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
@media (min-width: 1025px) {
	.movie-wrap-s {
		margin: 6rem auto 10rem auto;
		width: 100%;
	}
}


/* ----------------------------------------------------------------------
 動画埋め込み(サーバーに)
---------------------------------------------------------------------- */


/* もしくは aspect-ratio を使用 */
@supports (aspect-ratio: 16 / 16) {
  .video-container {
    padding-top: 0; /* 従来のパディングを無効化 */
    aspect-ratio: 16 / 16;
  }
  .video-container video {
    position: static;
    width: 100%;
    height: 100%;
    object-fit: cover; /* または contain */
  }
}


/* ----------------------------------------------------------------------
 GoogleMap埋め込み
---------------------------------------------------------------------- */
.gmap {
	height: 0;
	overflow: hidden;
	padding-bottom: 56.25%;
	position: relative;
}
.gmap iframe {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
	width: 100%;
}
	
/* ----------------------------------------------------------------------
画像
---------------------------------------------------------------------- */
img.scale, img.responsive {
	max-width: 100%;
	height: auto;
}

/* ----------------------------------------------------------------------
見出し
---------------------------------------------------------------------- */
.catch-copy-bg {
	background: #fff;
	display: inline-block;
	padding-left: 1rem;
	padding-right: 1rem;
}

.catch-copy {
	font-size: 3.2rem;
	line-height: 1.5;
	font-weight: 700;
	background:  linear-gradient(90deg, rgba(77,150,200,1) 0%, rgba(127,26,174,1) 50%, rgba(190,10,174,1) 100%);
	-webkit-background-clip: text;
	color: rgba(0,0,0,0);
}

.heading-1 {
	background-color: rgba(255,255,255,1);
	/*color: #fff;*/
	font-size: 1.8rem;
	font-weight: 700;
	line-height: 1.5;
}

.line-up {
	background: #C80405;
	color: #fff;
	border-radius: 30px;
}


.underline {
	display: inline-block;
	font-size: 24px;
	text-decoration-line: underline;
	text-decoration-color: rgba(244,236,124, .9);
	text-decoration-thickness: .6em;
	text-underline-offset: -.3em;
	text-decoration-skip-ink: none;

	font-family: "Noto Sans", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	font-style: normal;

}
@media (min-width: 768px) {
	.underline {
		font-size: 32px;
		font-weight: 800;
	}
}

.naname {
	display: inline-block;
	-webkit-transform: skew(-15deg);
	transform: skew(-15deg);
}

/* ----------------------------------------------------------------------
ボタン
---------------------------------------------------------------------- */
.call-fix{
	z-index: 100;
	display: none;
	}
@media screen and (min-width:1025px){
	.call-fix {
		display: block;
		position: fixed;
		bottom: 0px;
		right: 0px;
		width: 30rem; /* defalt */
		width: 26rem; /* defalt */
	}
}
@media screen and (min-width:1500px){
	.call-fix{
		bottom: 10px;
		right: 10px;
		width: 38rem; /* defalt */
	}
}

a.btn-sp {
	display: none;	
}
@media screen and (min-width:376px){
	a.btn-sp {
	z-index: 100;
	position: fixed;
	bottom: 0;
	display: block;
	padding: 1rem 0 .2rem;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	letter-spacing: 0.1em;
	background: #bf1e33;
	width: 100%;
	outline: 1px solid rgb(255, 255, 255);
	outline-offset: -8px;
	}	
}	
@media screen and (min-width:1025px){
	a.btn-sp {
		display: none;
	}
}

a.btn-sp img {
	width: 10rem;
}
@media screen and (min-width:376px){
	a.btn-sp img {
		width: 18rem;
	}
}	
a.btn-sp p{
	position: relative;
	margin-top: .5rem;
	margin-bottom: 1.2rem;
}

a.btn-sp p::after {
	position: absolute;
	content: "";
	background: url("images/btn_sp_arrow.svg");
	background-repeat: no-repeat;
	top: 58%;
	right: 3rem;
	transform: translateY(-50%);
	background-size: 15px;
	width: 15px;
	height: 26px;
}
@media screen and (min-width:376px){
	a.btn-sp p::after {
		background-size: 15px;
		width: 15px;
		height: 26px;
	}
}

.btn-sp-2 {
	display: none;	
}
@media screen and (min-width:376px){
	.btn-sp-2 {
	z-index: 100;
	position: fixed;
	bottom: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 1.5rem 0 .2rem;
	cursor: pointer;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	background: #fff;
	width: 100%;
	outline: 1px solid rgb(255, 255, 255);
	outline-offset: -8px;
	}	
}	
@media screen and (min-width:1025px){
	.btn-sp-2 {
		display: none;
	}
}

.btn-sp-2 img {
}
@media screen and (min-width:376px){
	.btn-sp-2 img {
		
	}
}

.coming-soon {
	position: absolute;
	top: -37px;
	left: 1px;
}

.coming-soon-yoko {
	width: 80%;
	max-width: 300px;
}
@media (min-width: 768px) {
	.coming-soon-yoko {
		width: 300px;
	}
}
@media (min-width: 1025px) {
	.coming-soon-yoko {
		width: 340px;
		max-width: 340px;
	}
}


/* ----------------------------------------------------------------------
header
---------------------------------------------------------------------- */
.wrapper {
    width: 100%;
	padding-top: 7rem;
	min-height: calc(100vh - 7rem);
}
@media (min-width: 1025px) {
	.wrapper {
		padding-top: 9rem;
		min-height: calc(100vh - 9rem);
	}
}

.hero-con {
	position: relative;
    width: 100%;
	min-height: calc(100vh - 7rem);
	overflow: hidden;
}
@media (min-width: 1025px) {
	.hero-con {
		min-height: calc(100vh - 9rem);
		
	}
}


header{	
    position: fixed;
	width: 100%;
    z-index: 99;
	background: #fff;
	display: flex;
	height: 7rem;
}
@media screen and (min-width:376px){
	header {
		height: 9rem;
    }
}
@media (min-width: 1025px) {
	header {
		align-items: center;
    }
}

.header-logo {
	margin-top: 1rem;
	margin-left: 1rem;
	width: 190px;
	z-index: 200;
}

@media screen and (min-width:376px){
	.header-logo {
		margin-top: 1rem;
	}
}

@media (min-width: 1025px) {
	.header-logo {
		width: 230px;
		margin-top: 1rem;
		margin-left: 2rem;
	}
}

.header-logo img {
	width: 80px;
}

/*
@media screen and (min-width:376px){
	.header-logo img {
		width: 100px;
	}
}

@media (min-width: 1025px) {
	.header-logo img {
		width: 140px;
	}
}
*/

/*パソコンメニュー*/
.pc-nav {
	display: none;
}
@media (min-width: 1025px) {
	.pc-nav{
        display: flex;
		align-items: center;
		justify-content: space-around;
		margin-left: auto;
    }
    .pc-nav li{
        margin: 0;
		line-height: 1.7;
		font-size: 22px;
		margin-right: 6rem;
    }
	.pc-nav li a {
		display: block;
		font-family: var(--font-family-main);
		font-weight: var(--font-weight);
		font-style: normal;
		/*color: #fff;*/
		color: #231815;
		text-decoration: none;
		letter-spacing: .1em;/* aqua */
	}
}

/* バーガーメニュー */
.nav {
	display: block;
	margin-left: auto;
}
@media (min-width: 1025px) {
	.nav {
		display: none;
	}
}

.drawer-hidden {
	display: none;
}

/* ハンバーガーアイコンの設置スペース */
.drawer-open {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	right: 36px;
	z-index: 100;/* 重なり順を一番上にする */
	cursor: pointer;
	padding-top: 4rem;
}

/* ハンバーガーメニューのアイコン */
.drawer-open span,
.drawer-open span:before,
.drawer-open span:after {
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background: #fff;
	background: #231815;
	transition: 0.5s;
	position: absolute;
}

/* 三本線の一番上の棒の位置調整 */
.drawer-open span:before {
  bottom: 8px;
}

/* 三本線の一番下の棒の位置調整 */
.drawer-open span:after {
  top: 8px;
}

/* アイコンがクリックされたら真ん中の線を透明にする */
#drawer-input:checked ~ .drawer-open span {
  background: rgba(255, 255, 255, 0);
}

/* アイコンがクリックされたらアイコンが×印になように上下の線を回転 */
#drawer-input:checked ~ .drawer-open span::before {
  bottom: 0;
  transform: rotate(45deg);
}

#drawer-input:checked ~ .drawer-open span::after {
  top: 0;
  transform: rotate(-45deg);
}
  
/* メニューのデザイン*/
.nav-content {
	position: fixed;
	bottom: 100%;
	left: 0%;
	z-index: 99;
	width: 100%;
	height: 100%;
	transition: .5s;
	text-align: center;
	/*background: linear-gradient(90deg, rgba(77,150,200,1) 0%, rgba(127,26,174,1) 50%, rgba(190,10,174,1) 100%);
	background-size: 200% 200%;
	animation: bggradient 15s ease infinite;*/

	background-image: url(images/body-bg.jpg);
	background-size: cover;
	background-position: center;
}

/* メニュー黒ポチを消す */
.nav-list {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50% , -50%);
	list-style: none;
/*	margin-top: 50%;*/
}

.nav-item a {
	font-family: var(--font-family-main);
	font-weight: var(--font-weight);
	font-optical-sizing: auto;
	font-style: normal;
	font-size: 5rem;
	color: #fff;
	color: #231815;
	text-decoration: none;
}

/* アイコンがクリックされたらメニューを表示 */
#drawer-input:checked ~ .nav-content {
  bottom: 0;/* メニューを画面に入れる */  
}

/* ----------------------------------------------------------------------
load画面 ＆ hero
---------------------------------------------------------------------- */
/* ロード時の平安神宮 */
.logo-fadein {
	background: url(images/body-bg-fade.jpg) bottom center no-repeat;
	background-size: cover;
	position: fixed;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	z-index: 999;
}

/* ロード時のロゴの位置 */
.logo-fadein p {
	display: none;
	position: fixed;
	left: 50%;
	top: 50%;
	transform: translate(-50%, -50%);
	z-index: 9999;	
}

.logo-fadein p img {
	width: 76vw;
}
@media (min-width: 768px) {
	.logo-fadein p img {
		width: 34vw;
	}
}

/* heroのロゴの配置 */
#hero-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
    width: 50vh;
    max-width: 550px;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 376px) {
    #hero-logo {
        margin-top: 0;
        width: 76vw;
    }
}
@media (min-width: 768px) {
    #hero-logo {
		position: absolute;
		top: 50.3%;
    }
}
@media (min-width: 1025px) {
    #hero-logo {
		position: absolute;
		top: 54%;
    }
}
@media (min-width: 1200px) {
    #hero-logo {
		position: absolute;
		top: 53.6%;
    }
}

/* heroのロゴの大きさ */
#hero-logo img {
    display: block;
    width: 100%;
/* 	width: 76vw; */

	/*opacity: 0;
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 4s;*/
}

@media (min-width: 768px) {
    #hero-logo {
		width: 32.8vw;
    }
}

@keyframes fadeup {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* hero */
.hero {
	display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央揃え */
    
	/*width: 70%;
	height: auto;*/
    
    z-index: 1; /* 最下層 */
}
@media (min-width: 1025px) {
	.hero {
		display: block;
	}
}

.hero img {
/*    width: 100%;
    height: auto;
    object-fit: cover;*/
	height: calc(100vh - 9rem);

	/*opacity: 0;
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 3.28s;*/
}

.hero-tb {
	display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央揃え */
    
	width: 100%;
    height: auto;	

    z-index: 1; /* 最下層 */
}
@media (min-width: 768px) {
	.hero-tb {
		display: block;
	}
}
@media (min-width: 1025px) {
	.hero-tb {
		display: none;
	}
}


.hero-tb img {
    width: 100%;
    height: auto;
    object-fit: cover;

/*	opacity: 0;
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 3.28s;	*/
}


.hero-sp {
	display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央揃え */
    width: 100%;
    height: auto;	
    z-index: 1; /* 最下層 */
}
@media (min-width: 768px) {
	.hero-sp {
		display: none;
	}
}
@media (min-width: 1025px) {
	.hero-sp {
	}
}

.hero-sp img {
    width: 100%;
    height: auto;
    object-fit: cover;

/*	opacity: 0;
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 3.28s;	*/
}


.hero-deco {
	display: none;
	position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央揃え */
    width: 100%;
    height: 100%;
    z-index: 2; /* 中間層 */
}
@media (min-width: 1025px) {
	.hero-deco {
		display: block;
		pointer-events: none; /* クリックとテキスト選択可能にするコード */
	}
}

.hero-deco img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナに合わせて拡大縮小 */

/*	opacity: 0;
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 3.48s;	*/
}

.hero-deco-sp {
	display: block;
	position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%); /* 中央揃え */
    width: 100%;
    height: 100%;
    z-index: 2; /* 中間層 */
}
@media (min-width: 1025px) {
	.hero-deco-sp {
		display: none;
	}
}

.hero-deco-sp img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像をコンテナに合わせて拡大縮小 */	

/*	opacity: 0;
	animation: fadeup 1s cubic-bezier(0.33, 1, 0.68, 1) forwards;
    animation-delay: 3.48s;	*/
}


.contents-outline {
  	width: 100%;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width:768px) {
	.contents-outline {
        width: 98%;
    }
}
@media (min-width:1025px) {
	.contents-outline {
		max-width: 800px;
		width: 100%;	
	}
}

.fs-50o {
    font-size: 2rem;
    line-height: 1.5;
	font-family: var(--font-family-mincho);
}
@media (min-width: 376px) {
	.fs-50o {
		font-size: 2.22rem;
	}
}
@media (min-width: 768px) {
	.fs-50o {
    	font-size: 3.4rem;
	}
}
@media (min-width: 1025px) {
	.fs-50o {
    	font-size: 4rem;
	}
}

.fs-24o {
	font-size: 1.8rem;
}
@media (min-width:768px) {
	.fs-24o {
		font-size: 2.4rem;
	}	
}

/* ----------------------------------------------------------------------
contents
---------------------------------------------------------------------- */
.bg-10p {
	background-color: rgba(255,255,255,0.3);
	border-radius: 15px;
	padding: 3rem;
}

.bg-white {
	background-color: #fff;
	border-radius: 15px;
	padding: 3rem;
}

.bg-white-alpha {
	background-color: rgba(255,255,255,0.6);
	padding-top: 6rem;
	padding-bottom: 5rem;
}
@media (min-width: 768px) {
	.bg-white-alpha {
		padding-top: 6rem;
		padding-bottom: 5rem;
	}
}


.contents-logo {
	display: block;
	width: 80%;
	margin-left: auto;
	margin-right: auto;
}
@media (min-width: 768px) {
	.contents-logo {
		width: 60rem;
	}
}

/* ----------------------------------------------------------------------
modal
---------------------------------------------------------------------- */
.modaal-container {
	/*background: linear-gradient(90deg, rgba(77,150,200,1) 0%, rgba(127,26,174,1) 50%, rgba(190,10,174,1) 100%)!important;*/
	background: url(images/body-bg.jpg) 50% !important;
	background-position: center;
}

.modal-area {
	color: #231815;
}

/* ----------------------------------------------------------------------
 faq
---------------------------------------------------------------------- */
.accordionbox{
	width: 100%;
	margin: 5rem auto 10rem;
}
/* 質問 */
.accordionlist dt{
    display: flex;
    align-items: center;
	border-bottom: 2px dotted #231815;
    margin: 0;
    padding: .5rem 0;
	cursor: pointer;
}
@media screen and (min-width: 768px) {
	.accordionlist dt{
		margin: 0;
		border-bottom: 2px dotted #231815;
	}
}

.accordionlist dt .title{
    padding-left: 1rem;
}

/* 回答 */
.accordionlist dd{
    display: none;
	color: #231815;
	padding: 1rem;
}
@media screen and (min-width: 768px) {
	.accordionlist dd{
		padding: 1rem 4rem 1rem 3rem;
	}
}

/* ＋ */
.accordion_icon,
.accordion_icon span {
	display: inline-block;
	transition: all .4s;
	box-sizing: border-box;
    padding: 0 1rem;    
}
@media screen and (min-width: 768px) {
	.accordion_icon,
	.accordion_icon span {
		padding: 0 1.5rem;    
	}
}
.accordion_icon {
	position: relative;
	width: 50px;
    text-align: center;
    margin-left: auto;
    margin-right: 2rem;
}
@media screen and (min-width: 768px) {
	.accordion_icon {
		margin-right: 4rem;
	}	
}
.accordion_icon span {
	position: absolute;
    width: 10px;
    right: 5px;
	height: 2px;
    background-color: #231815; /* ＋の色 */
	border-radius: 4px;
	-webkit-border-radius: 4px;
	-ms-border-radius: 4px;
	-moz-border-radius: 4px;
	-o-border-radius: 4px;
}
.accordion_icon span:nth-of-type(1) {
    top: 0px;
	transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
}
.accordion_icon span:nth-of-type(2) {
    top: 0px;
	transform: rotate(90deg);
    -webkit-transform: rotate(90deg);
	-moz-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
}

/*＋、－切り替え*/
.accordion_icon.active span:nth-of-type(1) {
	display:none;
}
.accordion_icon.active span:nth-of-type(2) {
	top: 0px;
	transform: rotate(180deg);
    -webkit-transform: rotate(180deg);
	-moz-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
}

/* Q&A画像 */
.question{
	background: url("images/faq-q.png") 1.5rem center no-repeat;
    background-size: 15px;
	padding: 1.5rem 1.5rem 1.5rem 6rem;
    color: #231815;
    font-size: 16px;
	font-weight: 500;
    line-height: 1.4;	
}
@media screen and (min-width: 768px) {
	.question{
		background: url("images/faq-q.png") 4rem center no-repeat;
		background-size: 25px;
		padding: 2.2rem 2.2rem 2.2rem 11rem;
		font-size: 20px;
	}
}

.answer{
	/*background: url("../images/faq-a.png") 0 center no-repeat;*/
    background-size: 15px;
	padding: 1.5rem 1.5rem 1.5rem 6rem;
    font-size: 14px;
    line-height: 1.8;
}
@media screen and (min-width: 768px) {
	.answer{
		background: url("images/faq-a.png") 2rem center no-repeat;
		background-size: 25px;
		padding: 2.5rem 2.5rem 2.5rem 9rem;
		font-size: 18px;
	}
}


/* ----------------------------------------------------------------------
footer
---------------------------------------------------------------------- */
footer{
    max-width: 100%;
	/*background: url("images/footer-bg.jpg") center center no-repeat;*/
	height: auto;
    padding-top: 4rem;
	padding-bottom: 15em;
	/*color: #fff;*/
	text-align: center;
}
@media (min-width: 1025px) {
	footer{
		padding-top: 8rem;
		padding-bottom: 8rem;
	}	
}

.border-top {
	border-top: 1px solid #fff;
	border-top: 1px solid #231815;
}

.footer-logo {
	width: 140px;
}
@media (min-width: 1025px) {
	.footer-logo {
		width: 140px;
	}
}

.footer-logo-en {
	width: 200px;
}
@media (min-width: 1025px) {
	.footer-logo-en {
		width: 200px;
	}
}

.copyright{
	font-size: 14px;
	/*color: #fff;*/
}

.ktx {
/*	width: 210px;*/
	width: 190px;
}
@media (min-width: 768px) {
	.ktx {
		width: 280px;
	}
}

.logo110 {
	width: 75px;
}
@media (min-width: 768px) {
	.logo110 {
		width: 110px;
	}
}

.logo220 {
	/*width: 180px;*/
	width: 90px;
}
@media (min-width: 768px) {
	.logo220 {
		width: 220px;
	}
}

.logo240 {
	/*width: 195px;*/
	width: 160px;
}
@media (min-width: 768px) {
	.logo240 {
		width: 240px;
	}
}

.logo300{
	width: 240px;
}
@media (min-width: 768px) {
	.logo300 {
		width: 300px;
	}
}


/* ----------------------------------------------------------------------
スマホ背景装飾
---------------------------------------------------------------------- */
/*
@media screen and (max-width: 769px) {
	.sp-line-up {
		background: url(images/sp-line-up.png) top left no-repeat;
		background-size: 100%;
	}
	.sp-tikets {
		background: url(images/sp-tikets.png) top center no-repeat;
		background-size: 116%;
	}
	.sp-access {
		background: url(images/sp-access.png) bottom center no-repeat;
		background-size: 106%;
	}
	.sp-notice {
		background: url(images/sp-notice.png) top center no-repeat;
		background-size: 100%;
	}
	.sp-contact {
		background: url(images/sp-contact.png) bottom center no-repeat;
		background-size: 106%;
	}
}
*/