@charset "utf-8";
/* CSS Document */
body{
	font-family: "Shippori Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 100%;
	background: #fff;
	color:#000;
	line-height: 1.85;}
body.page p:empty{
	display: none;}
h1,h2,h3,h4,h5,h6{
	font-weight: 500;}
ul li{
	list-style: none;}
a{
	-webkit-tap-highlight-color: transparent;}
.container {
	width: 100%;
	min-height: 100vh;
	position: relative;}
.main-title h2.s_title{
	font-size: 28px;
	line-height: 36px;
	letter-spacing: 3px;
	text-align: center;}
.main-title2 h2.s_title{
	padding-top: 50px;
	font-size: 28px;
	font-weight: 600;
	line-height: 38px;
	letter-spacing: 3px;
	text-align: center;}
.main-title3 h2.s_title{
	margin: 0 0 10px;
	font-size: 24px;
	line-height: 34px;
	letter-spacing: 3px;
	text-align: center;}
.s_subtitle{
	margin-top:10px;
	text-align: center;}
.fsmall{
	font-size: 14px;}
.b-list{
	width: 90%;
	margin: 0 auto 15px;}
/* ボタン */
.button a {
    background: #fff;
	border:1px solid #ccc;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 300px;
    padding: 13px 25px;
    color: #000;
	font-size: 14px;
	font-weight: 600;
    transition: 0.3s ease-in-out;}
.button a:before {
    content: '';
    position: absolute;
    top: calc(50% - 1px);
    right: -1em;
    transform: translateY(calc(-50% - 1px)) rotate(30deg);
    width: 10px;
    height: 1px;
    background: #020e2e;
    transition: 0.3s;}
.button a:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -1em;
    transform: translateY(-50%);
    width: 30px;
    height: 1px;
    background: #020e2e;
    transition: 0.3s;}
.button a:hover:before, .button a:hover:after {
    right: 0.5em;
	background: #fff;}
.button a:hover {
    background: #020e2e;
    color: #fff;}
.heading1 {
	position: relative;
	font-size: 24px;
	line-height: 36px;
	font-weight: 600;
	text-align: center;}
.heading1::before {
	content: attr(data-number);
	display: block;
	margin-bottom: 40px;
	color: #020e2e;
	font-size: 30px;
	font-weight: 600;}
.heading1::after {
	content: '';
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	width: 1px;
	height: 20px;
	background-color: #020e2e;}
.heading2 {
	position: relative;
	font-size: 22px;
	font-weight: 600;}
.heading2::before {
	content: attr(data-number);
	display: block;
	color: #ee7800;
	font-size: 30px;}
.heading2::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100px;
	height: 1px;
	background-color: #ee7800;}
@media screen and (max-width:400px){
.button a {
	width: 250px;}
.main-title h2.s_title{
	font-size: 28px;
	line-height: 36px;
	letter-spacing: 0;
	text-align: center;}
}
/* header */
nav ul {
	list-style: none;}
a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;}
#header {
	position:fixed;
	top: 0;
	padding: 0;
	width: 100%;
	height: 60px;
	background: #fff;
	border-bottom: 1px solid #f1f0f2;
	z-index: 115;}
#header .header-inner {
	margin: auto;
	display: -webkit-box;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	flex-direction: row;
	-webkit-box-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	align-items: center;
	max-width: 100%;
	min-width: 960px;
	width: 96%;
	height: 60px;}
#header .logo {
	width: 20%;}
.logo img{
	width: 80%;
	height: auto;
	margin: 10px 0 0 10px;}
#header .contact {
	width: 20%;
	text-align: right;}
figure.c_tel{
	margin: 0;}
.c_tel img{
	width: 80%;
	height: auto;
	margin:12px 10px 0 0;}
nav{
	color:#000;
	text-align: center;}
/*ナビゲーションを横並びに*/
nav ul{
	position: relative;
	list-style: none;
	display: flex;
	justify-content: center;}
/*2階層目以降は横並びにしない*/
nav ul ul{
	display: block;}
/*ナビゲーションのリンク設定*/
nav ul li a{
	display: block;
	position: relative;
	text-decoration: none;
	color: #000;
	padding:10px 25px;
	cursor:pointer;
	transition:all .3s;}
nav ul li li a{
	padding:0;}
nav ul li a:hover{
	color:#aaa;}
/*矢印の設定*/
nav ul li.has-child > a::before,
nav ul li.has-child2 > a::before{
	content:'';
	position: absolute;
	left:10px;
	top:22px;
	width:6px;
	height:6px;
	border-top: 2px solid #000;
    border-right:2px solid #000;
    transform: rotate(135deg);}
/*==2階層目以降の画像設定*/
nav ul li.has-child img,
nav ul li.has-child2 img{
	max-width: 100%;
	height: auto;
	transition: all .5s;
	vertical-align: bottom;}
nav ul li.has-child dt,
nav ul li.has-child2 dt{
	overflow: hidden;
	height: 19vh;
	border-radius: 10px;
	margin:0;}
/*hoverしたら画像拡大*/
nav ul li.has-child img:hover,
nav ul li.has-child2 img:hover{
	transform: scale(1.2);}
/*== 2層目の設定 */
nav li.has-child ul{
    position: absolute;
	left:-25%;
	top:45px;
	z-index: 4;    
	justify-content:space-around;
	flex-wrap: wrap;
	background:#fff;border:1px solid #ccc;
	border-radius: 20px;
	width:100%;
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	padding: 10px 0;}
nav li.has-child2 ul{
    position: absolute;
	left:-5%;
	top:45px;
	z-index: 4;    
	justify-content:space-around;
	flex-wrap: wrap;
	background:#fff;border:1px solid #ccc;
	border-radius: 20px;
	width:100%;
	display: none;
	visibility: hidden;
	opacity: 0;
	transition: all .3s;
	padding: 10px 0;}
/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child2:hover > ul{
	display:flex;
	visibility: visible;
	opacity: 1;}
/*各ナビゲーション横幅*/
nav li.has-child ul li,
nav li.has-child2 ul li{
	width:30%;}
/*ナビゲーションaタグの形状*/
nav li.has-child ul li a,
nav li.has-child2 ul li a{
	color: #000;}
.nav-sp{
	display: none;}
@media screen and (max-width:1200px){
nav ul li.has-child dt,
nav ul li.has-child2 dt{
	height: 17vh;}	
}
@media screen and (max-width:1050px){
#header .header-inner {
	min-width: 100%;
	width: 100%;}
nav ul li a{
	padding:10px 15px;}
nav ul li.has-child > a::before,
nav ul li.has-child2 > a::before{
	left:5px;}
}
@media screen and (max-width:880px){
nav ul li.has-child dt,
nav ul li.has-child2 dt{
	height: 15vh;}	
}
@media screen and (max-width:830px){
.nav-pc{
	display: none;}
.nav-sp{
	display: block;}
.contact{
	display: none;}
#header .logo {
	width: 180px;}
.logo img{
	width: 100%;
	height: auto;
	margin: 10px 0 0 15px;}
#g-nav{
    position:fixed;
    z-index: 999;
	top:-100vh;
	width:100%;
    height: 100vh;
	background: #fff;
	transition: all 0.6s;}
#g-nav.panelactive{
    top: 0;}
#g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
	padding-bottom: 80px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;}
#g-nav li{
	list-style: none;
    text-align: center;}
#g-nav-list{
    display: none;
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;}
#g-nav.panelactive{
    position:fixed;
    z-index: 999;
	top: 0;
	left:0;
	width:100%;
    height: 100vh;
	background: #fff;}
#g-nav.panelactive #g-nav-list{
    display: block;}
.nav-sp ul.menu-btn{
	width: 90%;
	margin: 80px auto 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;}
.nav-sp ul.menu-btn li{
	width: 29%;}
.nav-sp ul.menu-btn li a{
	background: #EE7800;
	border-radius: 15px;
	margin: 0 8px 15px;
	padding: 0 0 10px 0;}
nav ul.menu-btn li img{
	width: 100%;
	height: auto;
	transition: all .5s;
	border-top-left-radius: 15px;
	border-top-right-radius: 15px;}
nav ul.menu-btn li dd{
	font-weight: 400;
	color:#fff;}
.nav-sp ul.menu{
	width: 90%;
	display: flex;
	justify-content: center;
	margin: 0 auto;}
.nav-sp ul.menu li{
	width: 25%;
	font-size: 14px;
	font-weight: 400;}
.nav-sp ul.menu li a{
	display:inline-block;}
.nav-sp ul.menu li img{
	width: 50px;
	height: 50px;}


/*========= ボタンCSS ===============*/
.openbtn{
	position:fixed;
    z-index: 9999;
	top: 5px;
	right: 5px;
	cursor: pointer;
    width: 50px;
    height:50px;}	
.openbtn span{
    display: inline-block;
    transition: all .4s;
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 1px;
	background-color: #000;
  	width: 45%;  }
.openbtn span:nth-of-type(1) {
	top:15px;}
.openbtn span:nth-of-type(2) {
	top:23px;}
.openbtn span:nth-of-type(3) {
	top:31px;}
.openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;}
.openbtn.active span:nth-of-type(3){
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;}
}
@media screen and (max-width:630px){
.nav-sp ul.menu-btn{
	width: 95%;}
nav ul.menu-btn li dd{
	font-size: 14px;}
}
@media screen and (max-width:540px){
.nav-sp ul.menu-btn li{
	width: 48%;}
}
@media screen and (max-width:430px){
.nav-sp ul.menu li{
	width: 30%;}
}
@media screen and (max-width:390px){
nav ul.menu-btn li dd{
	padding-top: 0;
	font-size: 13px;}
}
/* サブページメインビジュアル */
#s_mainvisual{
	position: relative;
    width:100%;
	height: 300px;
	z-index: 1;}
#s_mainvisual .main_wrap{
	position: absolute;
	width:85%;
	top: 70%;
	left: 50%;
	-webkit-transform: translate(-50%, -70%);
	-ms-transform: translate(-50%, -70%);
	transform: translate(-50%, -70%);}
#s_mainvisual h1{
	font-size: 28px;
	font-weight: 900;
	line-height: 40px;}
#s_mainvisual .sub_title{
	font-size:18px;}
#top_main{
	position:relative;
	background: linear-gradient(140deg, rgba(138, 35, 135, 0.1) 0, rgba(240, 34, 0, 0.1) 20%, rgba(252, 176, 69, 0.1) 80%, rgba(30, 150, 0, 0.1) 100%);
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
    width:100%;
	height: auto;}
.visual_top{
	width: 700px;
	margin: 0 auto 10px;
	text-align: center;}
.visual_top img{
	width: 100%;
	height: auto;
	padding:70px 0 20px;}
.visual{
	width: 75%;
	margin: 0 auto;}
.visual img{
	width: 100%;
	height: auto;
	margin:0 0 10px;}
/* パンくずリスト */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  font-size: 14px;
  color: #6C6C6C;
  line-height: 3.2;}
.breadcrumbs > li {
  display: inline-block;
  position: relative;}
.breadcrumbs > li:not(:last-of-type)::after {
  content: ">";
  display: inline-block;
  margin-right: 0.5em;
  margin-left: 0.5em;}
@media screen and (max-width: 768px) {
.breadcrumbs {
	font-size: 11px;}
}
/* footer */
.footer {
	width: 100%;
	padding: 50px 0;
	background-color: #FFFFFF;
	position: relative;
	z-index: 15;}
.footer video{
	width: 100%;
	height: 460px;
	object-fit: cover;
	position: absolute;
	bottom: 0;
	left: 0;}
.footer-inner {
	position: relative;
	width: 80%;
	margin: 0 auto;}
.contact-box {
	width: 100%;
	padding-top: 50px;
	padding-bottom: 20px;
	margin: 0 auto;
	background:rgba(246,246,246,0.9);
	border-radius: 10px;}
.contact-box .content-title {
 	text-align: center;}
.contact-box .content-wrapper {
	width: 90%;
	margin: 0 auto;
	padding: 30px 0;
	display: flex;
 	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;}
.item-left,
.item-right {
	width: 48%;
	padding: 30px 20px;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 2;
	text-align: center;}
.item-left{
	border-right: 1px solid #CCC;}
.content-title{
	font-family: "Noto Serif JP", serif;
	font-size: 24px;
	font-weight: 500;
	letter-spacing: 2px;
	position: relative;}
.content-title::before {
	content: attr(data-title);
	display: block;
	margin-bottom: 17px;
	color: #020e2e;
	line-height: 0.8;
	letter-spacing: 5px;
	text-transform: uppercase;}
.content-title {
	margin-bottom: 20px;}
.content-title::before {
	font-size: 50px;
	font-weight: 600;}
.footer-img,
.footer-tel-img{
	width: 100%;
	text-align: center;}
.footer-img img{
	width: 250px;
	height: auto;}
.footer-tel-img img{
	width: 300px;
	height: auto;
	margin-top: 20px;}
address{
	line-height: 26px;}
h3.time-title{
	padding: 5px 0;
	border-top: solid 3px #020e2e;
	border-bottom: solid 3px #020e2e;
	color: #000;
	font-size: 20px;
	letter-spacing: 5px;}
	table.time-table {
	width: 100%;
	margin: 15px auto 0;
	border-collapse: collapse;}
.time-table th,
.time-table td{
	display: block;
	width: 100%;
	padding: 2px;
	border: solid 1px #ccc;
	text-align:center;
	box-sizing:border-box;}
.time-table th{
	background:#f6f6f6;}
.time-table td{
	background:#fff;}
.time-table th,
.time-table td{
	border-bottom: none;}
.time-table tr:last-child{
    border-bottom: solid 1px #ccc;}
.footer-nav{
	text-align: right;
	padding: 0 10px;}
.footer-nav a {
	line-height: 50px;
	color:#fff;}
.dli-arrow-right {
	display: inline-block;
	vertical-align: middle;
	color: #fff;
	line-height: 1;
	position: relative;
	width: 1em;
	height: 1.7px;
	background: currentColor;}
.dli-arrow-right::before {
	content: '';
	width: 0.65em;
	height: 0.65em;
	border: 0.1em solid currentColor;
	border-left: 0;
	border-bottom: 0;
	transform: rotate(45deg);
	transform-origin: top right;
	position: absolute;
	top: 50%;
	right: -0.05em;
	box-sizing: border-box;}
.footer-bottom{
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 50px;
	text-align: center;}
.copyright{
	line-height: 50px;}
@media screen and (max-width:1050px){
.footer-inner {
	width: 90%;}
}
@media screen and (max-width:900px){
.contact-box .content-wrapper {
	width: 100%;
	flex-wrap: wrap-reverse;}
.item-left,
.item-right {
	width: 50%;}
.footer-img img,
.footer-tel-img img {
	width: 90%;}
}
@media screen and (max-width:620px){
.footer {
	padding-bottom: 110px;}
.contact-box .content-wrapper{
	padding: 0;}
.item-left{
	border-right: none;}
.item-left,
.item-right {
	width: 90%;
	margin: 0 auto;}
.item-right{	
	padding: 0 10px;}
table.time-table {
	width: 100%;}
.footer-img img,
.footer-tel-img img {
	width: 250px;}
.footer video{
	height: 700px;}
.footer-bottom{
	height: 110px;}
}
@media screen and (max-width:450px){
#s_mainvisual h1{
	font-size: 25px;
	line-height: 40px;}
#s_mainvisual .sub_title{
	font-size:16px;}
.breadcrumbs {
	font-size: 10px;}
}
/* ページトップへ */
.pagetop {
	height: 50px;
	width: 50px;
	position: fixed;
	right: 30px;
	bottom: 30px;
	background: #ee7800;
	border: 0;
	border-radius: 50%;
	display: none;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
	z-index: 30;
	cursor: pointer;}
.pagetop__arrow {
	display: inline-block;
	height: 10px;
	width: 10px;
	border-top: 3px solid #fff;
	border-right: 3px solid #fff;
	transform: translateY(20%) rotate(-45deg);}
/* footer icon */
.fixed_area,
.bottom-menu{
	display: none;}
@media screen and (max-width:830px){
 p.copyright{
	height:110px;
	background:  #020e2e;}
.pagetop {
	right: 15px;
	bottom: 90px;}
/*footer icon*/
.mini-text{
	font-size:10px;
	text-align: center;}
ul.bottom-menu {
    position: fixed;
	display: -webkit-box;
	display: flex;
	-webkit-box-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	align-items: center;
    left:0;
    bottom:0;
    width: 100%;
    height:60px;
    margin:0;
    padding:0;
	background: #ee7800;
    z-index:30;}
ul.bottom-menu li.fitem01{
	width: 70%;}
ul.bottom-menu li.fitem02{
	width: 30%;}
ul.bottom-menu li {
    list-style-type:none;
    text-align:center;
    border-right: 1px solid #fff;}
ul.bottom-menu li:last-of-type{
	border-right:0;	}
.bottom-menu li a {
    display: block;
    color:#fff;
    padding-top:5px;
    padding-bottom:5px;
    line-height:10px;
    text-decoration:none;
	text-align: center;}
.bottom-menu li img{
	width: 60%;}
.bottom-menu li.fitem02 img.icon{
	width: auto;
	height: 30px;
	margin-bottom: 5px;}
.classic_list_item {
	width: 46%;}
}
@media screen and (max-width:640px){
.pagetop {
	right: 15px;
	bottom: 70px;}	
}
/* 横向き */
@media (orientation: landscape)and (max-width: 1000px){
.fixed_area .bottom-menu{
	display: none;}
}