<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset"UTF-8";

/* 
***********************************************************
* Copyright(C) CIDARIO Inc.
* URI:https://cidario.co.jp
* Editor:Hiromi Yoshino
***********************************************************
*/

/* html body
========================================================================================================
*/

html{
	font-size:62.5%;
}

body{
	font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  color: #444;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

@media print, screen and (min-width:768px) {
  body{
   font-size: 1.6rem;
  }
}

main{
  padding: 0 0 120px 0;
}

main.outline{
  padding: 0;
}

@media print, screen and (min-width:900px) {
main{
  padding: 0;
  }
}

/* header
========================================================================================================
*/

header{
  position: fixed;
  width:100%;
  top:0;
  left:0;
  z-index: 500;
}

.header-wrap{
  width:100%;
  padding: 15px 0 0 0;  
}

@media print, screen and (min-width:900px) {
.header-wrap{
  width:100%;
  display: grid;
  grid-template-columns: 300px 1fr;
  padding: 25px 80px 0 0;
  }
}

.header-wrap h1{
  width:22%;
  margin: 0 10px;
}

@media print, screen and (min-width:900px) {
.header-wrap h1{ 
  width:70%;
  margin: 0 40px;
  }
}

.header-wrap h1 img{
  display: block;
  width:100%;
}

@media print, screen and (min-width:900px) {
.header-wrap h1 img{
  width:100%;
 }
}

.header-wrap nav{
  display: none;
}

@media print, screen and (min-width:900px) {
.header-wrap nav{
  display: block;
  }
}

.header-wrap ul.global-nav{
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
}

.header-wrap ul li.g-nav01{
  width:140px;
  height: 40px;
  display: flex;
  align-items: center;
}

.header-wrap ul li.g-nav02{
  width:240px;
  height:40px;
}

.header-wrap ul li a{
  width:100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: #FFF;
  transition: 1s;
}

.request-menu{
  display: none;
  width:calc(240px * 1);
  /*謨ｰ蛟､螟画峩 譽滓焚*/
  position: absolute;
  right: 0;
}

.request-menu ul{
  display:grid;
  grid-template-columns: repeat(auto-fit,240px);
  justify-content: flex-end;
}

.request-menu ul li{
  height: 40px;
}

.request-menu ul li a{
  font-size: 1.4rem;
  color: #FFF;
}

.request-menu ul + p{
  font-size: 1.4rem;
  color: #000;
  text-align: center;
  margin: 10px 0 0 0;
}

.header-wrap ul li.g-nav01 a{
  background: #20202F;
}

.header-wrap ul li.g-nav02 a{
  background: #C71236;
}

.header-wrap ul li.g-nav01 a:hover{
  background: #535362;
}

.header-wrap .request-menu ul li a:hover{
  background: #951734;
}

/* 繝上Φ繝舌�繧ｬ繝ｼ繧｢繧､繧ｳ繝ｳ */
.drawer-icon{ 
  display: none;
}

@media print, screen and (min-width:900px) {
.drawer-icon{ 
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  padding: 11px 10px 10px 10px; 
  position: fixed;
  top:25px;
  right: 20px;
  z-index:1001;
}

.drawer-icon.active{ 
  width: 50px;
  height: 50px;  
  position: fixed;
  top:25px;
  right: 30px;
}

.drawer-icon-parts{
  position: relative;
}

.drawer-icon .drawer-icon-parts span {
  display: block;
  background:#20202F;   
  width: 100%;
  height: 2px;
  position: absolute;
  right:0px;
  transition: all .4s;
}

.drawer-icon .drawer-icon-parts span:nth-of-type(1) {  
  width: 100%;
  top: 0;
  animation: menu-bar .75s forwards;
}
.drawer-icon .drawer-icon-parts span:nth-of-type(2) {
  width: 100%;
  top: 7px;
  animation: menu-bar .75s forwards;
}
.drawer-icon .drawer-icon-parts span:nth-of-type(3) {
  width: 100%;
  top: 14px;
  animation: menu-bar .75s forwards;
}

.drawer-icon.active .drawer-icon-parts span:nth-of-type(1) {
  animation: active-menu-bar01 .75s forwards;
  background: #535362;
}
.drawer-icon.active .drawer-icon-parts span:nth-of-type(2) {  
  animation: active-menu-bar02 .75s forwards; 
  background: #535362;
}
.drawer-icon.active .drawer-icon-parts span:nth-of-type(3) {  
  animation: active-menu-bar03 .75s forwards;  
  background: #535362;
  }  
}

@keyframes menu-bar {
  0% {
    transform: scale(0);
    transform-origin: left;
  }
  100% {
    transform: scale(1);
    transform-origin: left;
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}

.side-navigation{
  display: none;
  position:fixed;
  top:0;
  left:0;
  width:100vw;
  height: 100%;
  background:#20202F;
  padding: 60px 0;
  overflow-y:scroll;
  z-index: 501;
}

.side-navigation.panelactive{
  display: block;
  background:rgba(32,32,47,1);
  z-index: 500;
}

.IsScrollAllowed {
  overflow: hidden;
}

/* side-navigation
========================================================================================================
*/

.side-navigation-box{
  width:95%;
  max-width:800px;
  margin:0 auto;
 }

.side-logo{
  width:100%;
  text-align: center;
  margin: 0 auto;
}

.side-logo img{
  width:210px;
}
  
.side-navigation-box nav ul.navi01{
  width:905%;
  max-width:680px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,200px));
  column-gap: 40px;
  grid-row-gap: 50px;
  margin:80px auto;
}  

.side-navigation-box nav ul.navi01 li{
  border-bottom: 1px solid #535362;
  text-align: center; 
}

.side-navigation-box nav ul.navi01 li a{
  display: block;
  width:100%;
  height: 100%;
  font-size:2rem;
  color: #FFF; 
  padding: 0 0 20px 0;
  transition:1s;
}

.side-navigation-box nav ul.navi01 li a:hover{
  color: #535362;
}

.side-navigation-box nav ul.navi02{
  margin: 0 0 80px 0;
}

.side-navigation-box nav ul.navi02 li a{
  display: flex;
  align-items: center;
  justify-content: center;
  width:260px;
  height: 60px;
  background: #C71236;
  margin: 0 auto;
  transition: 1s;
}

.side-navigation-box nav ul.navi02 li a:hover{
  background: #951734;
}

.side-navigation-box nav ul.navi02 li a span{
  font-size: 1.6rem;
  color: #FFF;
}

.side-navigation-box p.side-bn{
  width:100%;
}

.side-navigation-box p.side-bn img{
  display: block;
  width:100%;
  margin: 0 auto;
}

.side-request-box{
  width:380px;
  /*display: grid;
  grid-template-columns: 40% 1fr;
  column-gap: 20px;*/
  background:#C71236;
  padding: 20px;
  margin: 0 auto 80px auto;
}

.side-request-box p{
  font-size:1.8rem;
  color: #FFF;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
}

.side-request-box p span{
  display: block;
  font-size: 1.3rem;
  color: #FFF;
  margin: 15px 0 0 0;
}

.side-request-box ul{
  display: grid;
  grid-template-columns: repeat(auto-fit, 120px);
  grid-gap:5px 5px;
  align-items: center;
  justify-content: center;
  margin: 20px 0 0 0;
}

.side-request-box ul li{
  height: 25px;
  background: #FFF;
  color: #C71236;
  transition: 1s;
}

.side-request-box ul li a{
  width:100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 700;
}

.side-request-box ul li:hover{
  background: #951734;
  color: #FFF;
}

/* top
========================================================================================================
*/

#top{
  position: relative;
  width:100%;
  padding: 0 0 40px 0;
}

@media only screen and (min-width:768px) { 
#top{
  padding: 0 0 100px 0;
 }
}

#top .mv{
  position: relative;
  width:100%;
}

#top .mv figure{
  width:100%;
  height:100%;
}

#top .mv figure img{
  display: block;
  width:100%;
  height:100%;
  object-fit: cover;
  object-position: 50% 0%;
}

#top .mv .mv-box01{
  display: none;
}

@media only screen and (min-width:900px) { 
#top .mv .mv-box01{
  display: inline-block;
  position: absolute;
  top:14%;
  right:9%;
  }
}

#top .mv .mv-box01 h2{
  font-size: clamp(1.5rem,2.3vw,2.0em);
  letter-spacing: 0.1em;
  color: #000;
  letter-spacing: 0em;
  text-align: right;
  /*border-bottom: 1px solid #000;*/
  padding: 0 0 7px 0;
  margin: 0 0 7px 0;
}

@media only screen and (min-width:900px) {
#top .mv .mv-box01 h2{
  font-size: clamp(1.8rem,2.3vw,4.0em);
  letter-spacing: 0.1em;
  color: #000;
  text-align: right;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  }
}

#top .mv .mv-box01 h2 + p{
  font-size: clamp(1.2rem,1.6vw,2rem);  
  color: #000;
  text-align: left;
}

@media only screen and (min-width:900px) {
#top .mv .mv-box01 h2 + p{
  font-size: clamp(1.6rem,1.6vw,3rem);  
  color: #000;
  text-align: right;
  }
}

#top .mv .mv-box01 h2 + p span{ 
  display: block;
  font-size: clamp(1.1rem,1.6vw,2rem);  
  letter-spacing: -0.05em;
}

@media only screen and (min-width:900px) { 
#top .mv .mv-box01 h2 + p span{ 
  display: inline-block;
  font-size: clamp(1.2rem,1.0vw,2rem);  
  letter-spacing: -0.05em;  
  }
}

#top .mv .mv-box02{
  width:38%;
  position: absolute;
  top:12%;
  right:2.5%;
}

@media only screen and (min-width:900px) { 
#top .mv .mv-box02{
   display: none;
  }
}

#top .mv .mv-box02 img{
  display: block;
  width: 100%;
  max-width: 258px;
}

#top .mv .mv-box03{
  width:15%;
  position: absolute;
  top:20px;
  left:52%;
  transform: translateX(-50%);
}

@media only screen and (min-width:900px) {
#top .mv .mv-box03{
  width:14%;
  position: absolute;
  top:80px;
  left:55%;
  transform: translateX(-50%);
  }
}

#top .mv .mv-box03 img{
  display: block;
  width:100%;
  max-width: 100px;
}

@media only screen and (min-width:900px) {
#top .mv .mv-box03 img{
  max-width: 200px;
  }
}

#top .mv ul.mv-caption{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.0rem; 
  line-height: 1.5em;
  font-weight: 400;
  color: #FFF;
  padding: 0 10px 0 0;
  position: absolute;
  left:10px;
  bottom:10px;
}

@media only screen and (min-width:1100px) {
#top .mv ul.mv-caption{
  width:90%;
  font-size: 1.1rem;
  line-height: 1.8em;
  position: absolute;
  left:20px;
  bottom:20px;
  }
}

#top .point{ 
  width: 100%;
}

#top .point h2{
  width: 100%;   
  height: 180px;  
  background:url("../../images/top/top02.jpg") no-repeat 0 0;
  background-size: cover; 
  font-size:2rem;
  line-height: 1.5em;
  letter-spacing: -0.05em;
  color: #FFF;
  text-align: center;
  padding: 40px 0 0 0;
}

@media only screen and (min-width:768px) { 
 #top .point h2{ 
   width: 100%;
   height: 470px;
   font-size:clamp(3rem,2.2vw,3.2rem); 
   line-height: 1em; 
   letter-spacing: 0.05em;
   padding: 80px 0 0 0;
  }
}

#top .point h2 span{
  display: block;
  font-size: 1.2rem;
  margin:20px 0 0 0 ;
}

@media only screen and (min-width:768px) {
#top .point h2 span{
  display: block;
  font-size: 1.8rem;
  margin: 40px 0 0 0;
  }
}

#top .point ul{ 
  display: flex;
  flex-flow: row wrap;
  margin: 0 auto;
}

@media only screen and (min-width:768px) { 
#top .point ul{ 
  display: flex;
  flex-flow: row wrap;
  max-width: 1400px;
  margin: -210px auto 0 auto;
  }
}

#top .point ul li{
  width:calc(100% / 2);
  min-height: 85px;
  background: linear-gradient( 160deg, #031224, #0F3574);
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}

@media only screen and (min-width:768px) { 
#top .point ul li{ 
  width:calc(100% / 3);
  min-height: 140px;
  background: linear-gradient( 160deg, #031224, #0F3574);
 }
}

#top .point ul li p{
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.5em;
  color: #FFF;
  text-align: center;
}

@media only screen and (min-width:768px) { 
#top .point ul li p{
  font-size: 1.8rem;
  }
}

#top .point ul li p.number01{
  display: flex;
  flex-flow: row wrap;
  align-items: center;  
  margin: 10px 0 0 0;
}
#top .point ul li p.number02{
  display: flex;
  flex-flow: row wrap;
  align-items: center;  
  margin: 15px 0 0 0;
}

#top .point ul li p + p{ 
  margin: 15px 0 0 0;
}

@media only screen and (min-width:768px) {
#top .point ul li p.number01{
  display: flex;
  flex-flow: row wrap;
  align-items: center;  
  margin: 30px 0 0 0;
}
#top .point ul li p.number02{
  display: flex;
  flex-flow: row wrap;
  align-items: center;  
  margin: 20px 0 0 0;
}

#top .point ul li p + p{ 
  margin: 30px 0 0 0;
  }
}

.point .pt-txt01{ 
  font-size:1.2rem;
}
.point .pt-txt02{ 
  font-size:1.5rem;
}
.point .pt-txt03{ 
  font-size:1.8rem;  
  color:#cbbe83;
}
.point .pt-txt04{ 
  display: inline-block;
  font-size: 3.5rem;
  font-weight: 400;
  color:#cbbe83;
  margin: 0 3px;
}

@media only screen and (min-width:768px) { 
 .point .pt-txt01{ 
  font-size: clamp(1.6rem, 1.8vw, 2.6rem);
 }
 .point .pt-txt02{  
  font-size: clamp(2.0rem, 2vw, 2.8rem);
 }
 .point .pt-txt03{ 
  font-size: 3.2rem;
  font-size: clamp(2.2rem, 2.2vw, 3.2rem);
 }
 .point .pt-txt04{
  font-size: clamp(4rem,4.8vw, 6.4rem);
  margin: 0 3px;
 }
}

#top .information{
  width:95%;
  background:#FFF;
  padding: 20px 0 0 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#top .information{  
  position: relative;
  width:90%;
  max-width: 1400px;
  background: #EEE;
  padding: 80px 20px 80px 20px;
  margin: 100px auto 0 auto;
  }
}

#top .information .information-ttl{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 25px;
  border: 1px solid #444;
  font-size:1.3rem;
  line-height: 1em;
  font-weight: 600;
  margin: 20px auto 30px auto;
}  

@media only screen and (min-width:768px) {
#top .information .information-ttl{
  width: 140px;
  height: 30px;
  border: 1px solid #444;
  font-size:1.5rem;
  line-height: 1em;
  margin: 0 auto 60px auto;
  }
}

#top .information h2{ 
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.5em;
  color: #000;
  margin: 0 0 20px 0;
}

@media only screen and (min-width:768px) {
#top .information h2{  
  font-size: 3rem;
  margin: 0 0 60px 0;
 }
}

.information p{ 
  text-align: center;
  font-size: 1.5rem;
  line-height: 1.75em;
}

@media only screen and (min-width:768px) {
.information p{ 
  font-size: 1.8rem;  
  line-height: 2em;
  }
}

.information p + p{ 
 margin: 10px 0 0 0;
}

.information ul.information-box{
  width:90%;
  margin: 30px auto 0 auto;
}

@media only screen and (min-width:768px) {
.information ul.information-box{
  width:100%;
  max-width: 800px;
  display: grid;
  grid-template-columns: 50% 50%;  
  grid-template-rows: auto;  
  grid-gap: 0 0;
  margin: 50px auto 0 auto;
  }
}

.information-box li.info-box01{ 
  position: relative;
  padding: 20px 0;
}
.information-box li.info-box02{ 
  padding: 30px 0 20px 0;
}

@media only screen and (min-width:768px) {
 .information-box li.info-box01{ 
  padding: 0;
 }
.information-box li.info-box02{ 
  padding: 25px 0 20px 0;
 }
}

.information-box li.info-box01{ 
  background:#c71236;
  transition: 1s;
}

.information-box li.info-box02{ 
  background:#20202f; 
}

.information-box li.info-box01 p{
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 1.6rem;
}

@media only screen and (min-width:768px) {
.information-box li.info-box01 p{
  font-size: 2.2rem;
  }
}

.information-box .info-request{
  display: block;
  width:100%;
  background: #c71236;
}

@media only screen and (min-width:768px) {
.information-box .info-request{
  display: none;
  position: absolute;
  top:10%;
  left:0;
  }
}

.information-box .info-box01 .info-request p{
  font-size: 1.2rem; 
  color: #FFF;
  text-align: center;
  padding: 0;
  opacity: 0;
}

@media only screen and (min-width:768px) {
.information-box .info-box01 .info-request p{
  font-size: 1.4rem;  
  color: #FFF;
  text-align: center;
  padding: 15px 0;
  opacity: 1;
  }
}

.info-box01 .info-request ul.info-request-btn{
  display: grid;
  grid-template-columns: repeat(1,120px);
  grid-gap: 1px 1px;
  justify-content: center;
}

@media only screen and (min-width:768px) {
.info-box01 .info-request ul.info-request-btn{
  display: grid;
  grid-template-columns: repeat(1,120px);
  grid-gap: 5px 5px;
  justify-content: center;
  }
}

.info-box01 .info-request ul.info-request-btn li{
  height: 30px;
  background: #FFF;
}

.info-box01 .info-request ul.info-request-btn li a{
  width:100%;
  height:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;  
  font-weight: 600;
  color: #951734;
  transition: 1s;
}

@media only screen and (min-width:768px) {
.info-box01 .info-request ul.info-request-btn li a{
  font-size: 1.4rem;  
  }
}

.info-box01 .info-request ul.info-request-btn li a:hover{  
  background:#951734;
  color: #FFF;
}

/*  info-box02  */

.information-box li.info-box02 dl{
  display: grid;
  grid-template-rows: 22px 1fr;
  height: 100%;
}

@media only screen and (min-width:768px) {
.information-box li.info-box02 dl{
  display: grid;
  grid-template-rows: 26px 1fr;
  }
}

.information-box li.info-box02 dl dt{
  font-size: 1.4rem;
  line-height: 1.5em;
  letter-spacing: 0.2rem;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0 auto;
}

.information-box li.info-box02 dl dd{
  position: relative;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  color: #FFF;
  font-size: 2.2rem;
  padding: 20px 0 0 0;
}

@media only screen and (min-width:768px) {
.information-box li.info-box02 dl dd{ 
  font-size: 2.4rem;
  padding: 15px 0 0 0;
  }
}  

.information-box li dl dd span{
  display: block;
}

.information-box li dl dd span.info01{
 font-size: 2.4rem;
}

@media only screen and (min-width:768px) {
.information-box li dl dd span.info01{
 font-size: 3.2rem;
  }
}

.information-box li.info-box02 dl dd span.info01{
  display: inline-block;
  display: inline-flex;
  align-items: center;
}

.information-box li.info-box02 dl dd span.info01 img{
  width:100%;
  max-width: 35px;
  margin: 5px 10px 0 0;
}

.information-box li dl dd span.info02{
  font-size: 1.1rem;  
  margin:10px 0 0 0;
}
@media only screen and (min-width:768px) {
.information-box li dl dd span.info02{
  font-size: 1.1rem;  
  margin: 10px 0 0 0;
  }
}

/* access
========================================================================================================
*/
#access{
  width:100%;
  background: #EEE; 
  padding:40px 0 15px 0;
}

@media only screen and (min-width:768px) {
#access{
  padding:80px 0;
  }
}

#access div.map-box{
  width:95%;
  background: #FFF;
  padding: 20px 0 0 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#access div.map-box{
  width:95%;
  max-width: 1600px;
  padding: 60px 0 0 0;
  }
}

#access div.map-box img{
  display: block;
  width:90%;
  max-width: 1400px;
  margin: 0 auto;
}

#access div.access-box{
  width:95%;  
  background: #FFF;
  padding:40px 0 15px 0;
  margin:0 auto;
}

@media only screen and (min-width:768px) {
#access div.access-box{
  width:95%;  
  max-width: 1600px;
  padding:60px 0 80px 0;
  }
}

#access div.access-box h4{
  width:95%;
  height: 50px;
  background: #20202F;
  color: #FFF;
  text-align: center;
  padding:12px 15px;
  margin:0 auto;
}

@media only screen and (min-width:768px) {
#access div.access-box h4{
  width:90%;
  max-width: 1440px;
  height: 60px;
  background: #20202F;
  color: #FFF;
  text-align: center;
  padding:15px;
  margin:0 auto;
  }
}

#access div.access-box h4 span{
  font-size: 2.0rem;
}

@media only screen and (min-width:768px) {
#access div.access-box h4 span{
  font-size: 2.4rem;
 }
}

#access div.access-list-wrap{
  width:85%;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 35px;
  margin: 30px auto;
}

@media only screen and (min-width:768px) {
#access div.access-list-wrap{  
  margin: 30px auto 0 auto;
  }
}

@media only screen and (min-width:900px) {
#access div.access-list-wrap{
  width:80%;
  max-width: 1400px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 60px;
  margin: 60px auto 0 auto;
  }
}

#access .access-list{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  margin: 0 0 20px 0;
}

@media only screen and (min-width:768px) {
#access .access-list{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  margin: 0 0 50px 0;
  }
}

#access .access-list dl{
  display: grid;
  grid-template-columns: 40% 1fr;
  border-bottom: 1px solid #000;  
  align-items: flex-end;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
}

@media only screen and (min-width:768px) {
#access .access-list dl{
  display: grid;
  grid-template-columns: 45% 1fr;
  padding: 0 0 10px 0;
  margin: 0 0 10px 0;
  }
}

#access .access-list dl dt{
  font-size: 1.8rem;
}

#access .access-list dl dt span{
  font-size: 1.6rem;
}

@media only screen and (min-width:768px) {
#access .access-list dl dt{
  font-size:clamp(1.8rem, 1.6vw, 2.4rem);
}

#access .access-list dl dt span{  
  font-size:clamp(1.6rem, 1.4vw, 2.0rem);
  }
}

#access .access-list dl dd{
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  align-items: flex-end; 
}

#access .access-list dl dd strong{
  display: inline-block;    
  font-size: 4.0rem;
  font-weight: 500;
  line-height: 100%;
  margin: 0 5px -5px 0;
}
@media only screen and (min-width:768px) {
  #access .access-list dl dd strong{   
  font-size:clamp(3.6rem, 2.8vw, 4rem);
  }
}

#access .access-list dl dd span.direct-line{
  width:40px;
  height: 20px;
  background:#C71236;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight:400;
  color: #FFF;
  margin: 0 10px 3px 0;
}

@media only screen and (min-width:1000px) {
#access .access-list dl dd span.direct-line{
  width:50px;
  height: 24px;  
  background:#C71236;
  font-size: 1.4rem;
  margin: 0 20px 3px 0;
  }
}

#access .access-list p{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  line-height: 1.75em; 
  font-weight: 400;
}

@media only screen and (min-width:768px) {
#access .access-list p{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  line-height: 1.75em; 
  }
}

#access .access-box ul{
  max-width: 960px;
}

#access .access-box a{
  margin: 0 auto;
}

#access .access-car{
  width:95%;
  margin:60px auto 0 auto;
}

@media only screen and (min-width:768px) {
#access .access-car{
  width:90%;
  margin:80px auto 0 auto;
  }
}

#access .access-car img{
  display: block;
  width:100%;
  max-width: 800px;
  margin:0 auto;
}


/* life
========================================================================================================
*/

#lifeinformation{
  width:100%;
  padding: 40px 0 0 0;
  background: #FFF;
}

@media only screen and (min-width:768px) {
#lifeinformation{
  padding: 80px 0;
  }
}

#lifeinformation .life-box01{
  position: relative;
  width:95%;
  margin: 0 auto;
  z-index: 301;
}

@media only screen and (min-width:768px) {
#lifeinformation .life-box01{  
  width:95%;
  max-width: 1600px;
 }
}

#lifeinformation .life-box01 figure img{
  display: block;
  width:100%;
}

#lifeinformation .life-box01 .lifeinfo{
  width:100%;
  background: rgba(15,53,116,1);
  color: #FFF;
  padding:30px 25px;
  z-index: 302;
}

@media only screen and (min-width:768px) {
#lifeinformation .life-box01 .lifeinfo{
  width:320px;
  background: rgba(15,53,116,0.9);
  color: #FFF;
  position: absolute;
  bottom:-40px;
  right: 8%;
  padding: 50px 25px;
  }
}

#lifeinformation .life-box01 .lifeinfo h4{
  font-family: 'Noto Sans JP', sans-serif;
  font-size:1.6rem;
  text-align: center;
  margin: 0 0 10px 0;
}

#lifeinformation .life-box01 .lifeinfo h4 + ul + p{
  font-size:1.4rem;
  line-height: 1.8em;
}

#lifeinformation .life-box01 .lifeinfo ul{  
  font-family: 'Noto Sans JP', sans-serif;
  font-size:1.3rem;
  line-height: 1.8em;
  font-weight: 400;
  text-align: center;
  margin: 0 0 15px 0;
}

@media only screen and (min-width:768px) {
#lifeinformation .life-box01 .lifeinfo ul{  
  margin: 0 0 25px 0;
  }
}

#lifeinformation .life-box01{
  width:95%;  
  background: #EEE;
  /*padding: 10px 2.5%;*/
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#lifeinformation .life-box01{
  width:95%;  
  max-width: 1600px;
  padding: 40px 40px 0 40px;
  margin: 0 auto;
  }
}

#lifeinformation .life-box02{
  width:95%;    
  background: #FFF;
  padding: 15px 0 0 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#lifeinformation .life-box02{
  width:95%;   
  background: #EEE; 
  max-width: 1600px;  
  padding: 110px 0 80px 0;
 }
}

#lifeinformation .life-wrap{
  width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); 
  grid-gap: 15px 40px;
  margin: 0 auto 15px auto;
}

#lifeinformation .life-box02 .lifeinfo{
  background: #EEE;
  padding: 0 0 20px 0;
 }

@media only screen and (min-width:768px) {
#lifeinformation .life-wrap{
  width:84%;
  max-width: 1400px;
  display: flex;
  flex-flow: row nowrap;
  grid-gap: 40px 40px;
  margin: 0 auto;
  }

#lifeinformation .life-box02 .lifeinfo{
  width:calc( ( 100% - 80px ) / 3);
  padding: 0;
 }
}

#lifeinformation .life-wrap figure img{
  display: block;
  width:100%;
  object-fit: cover;
}

#lifeinformation .life-box02 .lifeinfo h4{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  /*color: #0f3574;*/
  margin: 20px 0 0 0;
}

#lifeinformation .life-box02 .lifeinfo h4 + p{
  font-size: 1.4rem;
  line-height: 1.8em;
  margin: 20px 0 0 0;
}

#lifeinformation .life-box02 .lifeinfo ul{    
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  margin: 8px 0 0 0;
}

@media only screen and (min-width:768px) {
#lifeinformation .life-box02 .lifeinfo ul{
  font-size: 1.4rem;
  line-height: 1.8em;
  margin: 10px 0 0 0;
  }
}

/* plan
========================================================================================================
*/

#plan{
  width:100%;
  padding: 40px 0 15px 0;
  background: #EEE;
}

@media only screen and (min-width:768px) {
#plan{
  padding: 80px 0;
  }
}

.plan-box{
  width:95%;
  max-width:1600px;
  margin: 0 auto;
}

.floorplan-list{  
  width:100%;
  margin:0 auto;
}

.floorplan-list .plan-item{
  position: relative;
  width:100%;
  background: #FFF;
  padding: 10px 0 105px 0;
  margin: 20px auto 0 auto;
}

@media only screen and (min-width:768px) {
.floorplan-list .plan-item{
  width:100%; 
  padding: 80px 0;
  margin: 0 auto;  
  }
}

.floorplan-list .plan-item + .plan-item{
  margin:10px auto 0 auto;
}

.plan-detail01{
  width:95%;
  display: grid;
  grid-template-columns: 1fr; 
  grid-template-rows: auto auto auto;
  column-gap: 50px;
  background: #F1F1F1;
  color: #20202F;
  font-weight: 600;
  padding: 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.plan-detail01{
  width:95%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 200px 1fr; 
  grid-template-rows: auto auto;
  column-gap: 50px;
  background: #F1F1F1;
  padding: 0 50px 0 0;
  margin: 0 auto;
  }
}

.plan-detail01 .type{
  grid-column: 1/3;
  grid-row: 1/2;
}

@media only screen and (min-width:768px) {
.plan-detail01 .type{
  grid-column: 1/2;
  grid-row: 1/3;
  }
}

.plan-detail01 .type{
  background: #20202F;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5px 0;
}

@media only screen and (min-width:768px) {
.plan-detail01 .type{
  min-height: 200px;
  background: #20202F;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  }
}

.plan-detail01 .type p{
  font-size: 2.8rem;
  font-weight: 400;
}

@media only screen and (min-width:768px) {
.plan-detail01 .type p{
  font-size: 5.0rem;
  }
}

.plan-detail01 .type p span{
  font-size: 1.6rem;
}

.plan-detail01 .ldk{  
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 20px;
  border-bottom: 1px solid #999;  
  padding: 20px 10px;
  margin: 0 20px;
}

@media only screen and (min-width:768px) {
.plan-detail01 .ldk{  
  grid-column: 2/3;
  grid-row: 1/2;
  min-height: 90px;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  column-gap: 20px;
  border-bottom: 1px solid #999;  
  padding: 30px 0 25px 0;
  margin: 0;
 }
}

.plan-detail01 .ldk p{
  font-size:2.4rem;
  line-height:0.1em;
}

@media only screen and (min-width:768px) {
.plan-detail01 .ldk p{
  font-size:3rem;
  }
}

.plan-detail01 .ldk ul{  
  display: flex;
  flex-flow: row wrap;
}

.plan-detail01 .ldk ul li{  
  position: relative;
  font-size: 1.3rem;  
  line-height: 1em;
  letter-spacing: 0;
  padding: 5px 3px 5px 15px;
}

.plan-detail01 .ldk ul li::before{  
  content: " �� ";
  font-size: 1.3rem;  
  position: absolute;
  top:45%;
  left:0;
  transform:translateY(-50%);
}

.plan-detail01 .area{
  grid-column: 1/3;
  grid-row: 3/4;
}

@media only screen and (min-width:768px) {
.plan-detail01 .area{
  grid-column: 2/3;
  grid-row: 2/3;
  }
}

.plan-detail01 .area{
  padding: 20px 0 10px 0;
  margin: 0 20px;
}

@media only screen and (min-width:768px) {
.plan-detail01 .area{
  padding: 30px 0 20px 0;
  margin: 0;
  }
}

.plan-detail01 .area .area01{
  margin: 0 0 10px 0;
}

@media only screen and (min-width:1050px) {
.plan-detail01 .area .area01{
  display: flex;
  flex-flow: row nowrap;
  margin: 0;
  }
}

.plan-detail01 .area .area01 dl{  
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 0 10px 0;
}

.plan-detail01 .area dl{  
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0 0 10px 0;
}

@media only screen and (min-width:1050px) {
.plan-detail01 .area .area01 dl,
.plan-detail01 .area .area02 dl{  
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  margin: 0;
  }
}

.plan-detail01 .area .area01 dl dt{ 
  width:60px;
  height: 20px;
  background: #20202F;
  font-size: 1.1rem;
  line-height: 0.1em;  
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 0 10px 0;
}

@media only screen and (min-width:1050px) {
.plan-detail01 .area .area01 dl dt{ 
  width:80px;
  height: 25px;
  font-size: 1.3rem;
  line-height: 0.1em;  
  margin: 0;
  }
}

.plan-detail01 .area .area01 dl dd{ 
  font-size: 1.2rem;
  line-height: 0.1em;
  padding: 0 30px 0 15px;
}

@media only screen and (min-width:768px) {
.plan-detail01 .area .area01 dl dd{ 
  font-size: 1.5rem;
  line-height: 0.1em;
  padding: 0 30px 0 15px;
  }
}

.plan-detail01 .area .area01 dl dd span{ 
  font-size: 1.8rem;
}
@media only screen and (min-width:768px) {
.plan-detail01 .area .area01 dl dd span{ 
  font-size: 2.4rem;
  }
}

.plan-detail01 .area p{  
  margin: 0 0 10px 0;
}
@media only screen and (min-width:1050px) {
.plan-detail01 .area p{  
  margin: 0;
  }
}

.plan-detail01 .area .area02{  
  display: flex;
  flex-flow: column wrap;
  font-size: 1.2rem;
  margin: 15px 0 0 0;
}

@media only screen and (min-width:768px) {
.plan-detail01 .area .area02{
  display: flex;
  flex-flow: row wrap;
  font-size: 1.4rem;
  margin: 15px 0 0 0;
  }
}

.plan-detail01 .area .area02 dl dd{ 
  margin: 0 20px 0 0;
}

.plan-detail02{
  width:90%;
  display: grid;
  grid-template-columns: 1fr; 
  grid-template-rows: auto auto;
  margin:30px auto 0 auto;
}

@media only screen and (min-width:768px) {
.plan-detail02{
  width:90%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr 177px; 
  grid-template-rows: auto auto;
  column-gap: 50px; 
  margin:60px auto 0 auto;
  }
}

.plan-lead{ 
  letter-spacing: 0.1em;
}

.plan-lead p{ 
  font-size: 1.8rem;
  line-height: 1.5em;
  color: #20202F;
  font-weight: 600;
  margin: 0 0 30px 0;
}

@media only screen and (min-width:768px) {
.plan-lead p{ 
  font-size: 2.0rem;
  margin: 0;
 }
}

.plan-lead ul{ 
  display: none;
}

@media only screen and (min-width:768px) {
.plan-lead ul{
  display: block;
  font-size: 1.5rem;
  line-height: 1.8em;
  margin: 40px 0;
  }
}
.plan-lead ul li + li{ 
  margin: 15px 0 0 0;
}

.plan-layout img{ 
  display: none;
}

@media only screen and (min-width:768px) {
.plan-layout img{ 
  display: block;
  border: 1px solid #CCC;
  margin: 0 0 20px 0;
  }
}

@media only screen and (max-width:768px) {
.plan-layout ul{
  width:100%;
  max-width: 60%;
  position: absolute;
  bottom:40px;
  left:50%;
  transform: translateX(-50%);
  }
}

.plan-layout ul li + li{
  margin: 10px 0 0 0;
}

.plan-item .floorplan{ 
  width:90%;  
  margin: 0 auto;
}

.plan-item .floorplan figure{ 
  width:100%;  
  max-width: 1060px;
  margin: 0 auto;
}

.simplebar-track.simplebar-horizontal{
  height: 14px;
  border: 1px solid #999;
  border-radius: 7px;
}

.plan-item .floorplan figure{ 
  padding: 0 0 30px 0;
}

@media only screen and (min-width:768px) {
.plan-item .floorplan figure{ 
  padding: 0;
  }
}

.plan-item .floorplan figure img{ 
  display: block;
  width:700px;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.plan-item .floorplan figure img{ 
  display: block;
  width:100%;
  margin: 0 auto;
  }
}

.plan-item .floorplan + p img.plan-cap-pc{
  display: none;
}
@media only screen and (min-width:768px) {
.plan-item .floorplan + p img.plan-cap-pc{ 
  display: block;
  width:90%;
  max-width: 675px;
  margin: 0 5% 0 auto;
  }
}

.plan-item .floorplan + p img.plan-cap-sp{ 
  width:80%;
  max-width: 430px;
  padding: 30px 0 20px 0;
  margin: 0 auto 0 5%;
}
@media only screen and (min-width:768px) {
.plan-item .floorplan + p img.plan-cap-sp{ 
  display: none;
 }
}

/* model
========================================================================================================
*/

#model{
  width:100%;
  padding: 40px 0 0 0;
  background: #FFF;
}

@media only screen and (min-width:768px) {
 #model{
   width:100%;
   padding: 80px 0 0 0;
  }
}

.model-box{
  position: relative;
  width:95%;
  max-width:1600px;  
  background: #EEE;
  margin: 0 auto;  
  z-index: 301;
}

.model-wrap{
  position: relative;
  width:95%;
  padding:15px 0;
  margin: 0 auto;  
  z-index: 301;
}

@media only screen and (min-width:960px) {
.model-wrap{    
  width:100%;
  display: grid;
  grid-template-columns:70% 1fr;
  align-items: flex-start;
  column-gap: 20px;
  padding:40px 2.5%;
  margin: 0 auto;
 }
}

.modelSlider{
  margin: 0 0 10px 0;
}

.thumbnail-list{
  /*display: none;*/
  width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(90px,1fr));
  gap:1px;
}

@media only screen and (min-width:960px) {
.thumbnail-list{
  width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(75px,1fr));
  gap:1px;
  }
}

@media only screen and (min-width:1210px) {
.thumbnail-list{
  width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px,1fr));
  gap:1px;
  }
}

@media only screen and (min-width:1460px) {
.thumbnail-list{
  width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px,1fr));
  gap:1px;
  }
}

.slide-item{
  width:100%;
}

@media only screen and (min-width:768px) {
.slide-item{
  width:100%;
  }
}

.slide-item figure{
  position: relative;
}

.slide-item figure img{
  display: block;
  width:100%;
}

.slide-item figure figcaption{
  display: inline-block;
  width:100%;
  min-width:100px;
  background: rgba(32,32,47,0.7);
  position: absolute;
  bottom:0;
  left:0;
  font-size: 1.2rem;
  color: #FFF;
  text-align: center;
  padding: 7px 10px;
}

@media only screen and (min-width:768px) {
.slide-item figure figcaption{
  display: inline-block;
  min-width: 200px;
  font-size: 1.4rem;
  padding: 10px 20px;
  }
}

.thumbnail-item{
  position: relative;
  cursor: pointer;
}

@media only screen and (min-width:768px) {
.thumbnail-item{
  position: relative;
  cursor: pointer;
  }
}

.thumbnail-item figure{
  position: relative;
  width:100%;
}

.thumbnail-item figure img{
  display: block;
  width:100%;
}

.thumbnail-item figure figcaption{ 
  display: block;
  width: 90%;
  /*background: rgba( 0 ,0, 0 ,0.6);*/
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  font-size: 1.1rem;
  color: #FFF;
  text-align: center;  
  line-height: 1.5em;
  padding: 10px 0;
  opacity: 0;
  z-index: 101;
}

@media only screen and (min-width:1200px) {
.thumbnail-item figure figcaption{ 
  font-size: 1.2rem;
  }
}

.thumbnail-item:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.7);
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;  
  opacity: 0;
  transition: 0.3s opacity linear;
  z-index: 100;
}

.thumbnail-item.thumbnail-current figure figcaption {
  opacity: 1;
}

.thumbnail-item.thumbnail-current:after{
  opacity: 1;
}

/* zeh
========================================================================================================
*/

#zeh{
  width:100%;
  padding: 15px 0;
  background: #FFF;
}

@media only screen and (min-width:768px) {
#zeh{
  padding: 80px 0;
  }
}

.zeh-box{
  width:95%;
  background: #FFF;
  border: 8px solid #20202F;
  padding: 40px 0 0 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.zeh-box{
  width:95%;
  max-width: 1600px; 
  padding: 80px 0 40px 0;
  margin: 0 auto;
 }
}

.zeh-ttl-box{  
  width:90%;
  margin: 0 auto 40px auto;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box{  
  width:90%;
  margin: 0 auto 80px auto;
  }
}

.zeh-ttl-box h2{  
  font-family: 'Noto Sans JP', sans-serif;
  font-size:3rem;
  letter-spacing: 0.1em;
  color: #20202F;
  text-align: center;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box h2{  
  font-size:5.5rem;
  }
}

.zeh-ttl-box h2 + p{  
  font-size:1.6rem;
  letter-spacing: 0.1em;
  line-height: 1.5em;
  color: #20202F;
  text-align: center;
  margin: 20px 0 0 0;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box h2 + p{   
  font-size:clamp(2.0rem, 1.7vw, 2.2rem); 
  margin: 30px 0 0 0;
  }
}

.zeh-ttl-box h2 + p + img{ 
  display: block;
  max-width:70px;
  margin: 20px auto 0 auto;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box h2 + p + img{ 
  display: block;
  max-width: 120px;
  margin: 30px auto 0 auto;
  }
}

.zeh-wrap{  
  width:100%;
  background: #EEE;
  padding: 15px 3.5% 30px;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.zeh-wrap{  
  width:95%;
  padding: 60px 3%;
  margin: 0 auto;
  }
}

/* equipment
========================================================================================================
*/

#equipment{
  width:100%;
  padding: 40px 0 15px 0;
  background: #EEE;
}

@media only screen and (min-width:768px) {
#equipment{
  padding: 80px 0;
  }
}

.equipment-box{
  position: relative;
  width:95%;
  max-width: 1600px;
  background: #FFF;
  margin: 15px auto 0 auto;
  z-index: 301;
}

@media only screen and (min-width:768px) {
.equipment-box{
  max-width: 1600px;
  margin: 0 auto 40px auto;
  }
}

.equipment-wrap{
  width:95%;
  background: #FFF;
  padding: 10px 0 40px 0;
  margin: 0 auto;  
}

@media only screen and (min-width:768px) {
.equipment-wrap{
  width:95%;
  max-width: 1440px;  
  background: #FFF;
  padding: 80px 0;
  margin: 0 auto;  
  }
}

.equipment-ttl{
  width:100%;
  background: #20202f;  
  color: #FFF;
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  padding: 30px 10px 30px 10px;
  margin: 0 0 10px 0;
}

@media only screen and (min-width:768px) {
.equipment-ttl{
  width:100%;
  height: 220px;
  padding: 0;
  margin: 0 0 60px 0;
  }
}

.equipment-ttl h3{
  font-size: 2.0rem;
}

@media only screen and (min-width:768px) {
.equipment-ttl h3{
  font-size: 3.2rem;
  }
}

.equipment-ttl.ttl01 h3{
  margin: 10px 0 10px;
}

@media only screen and (min-width:768px) {
.equipment-ttl.ttl01 h3{
  margin: 30px 0 20px 0;
  }
}

.equipment-ttl.ttl02 h3{
  margin: 0 0 15px 0;
}

@media only screen and (min-width:768px) {
.equipment-ttl.ttl02 h3{
  margin: 50px 0 40px 0;
  }
}

.equipment-ttl.ttl03 h3{
  margin: 20px;
}

@media only screen and (min-width:768px) {
.equipment-ttl.ttl03 h3{
  margin: 20px 0 20px 0;
  }
}

.equipment-ttl h3 + p{
  font-size:1.2rem;
  line-height: 1.8em;
  text-align: center;
}

@media only screen and (min-width:768px) {
.equipment-ttl h3 + p{
  font-size:1.6rem;
  line-height: 1.8em;
  text-align: center;
  }
}

.equipment-ttl h3 + p + img{
  display: block;
  width:40px;  
  margin: 10px 0 0 0;
}

@media only screen and (min-width:768px) {
.equipment-ttl h3 + p + img{
  display: block;
  width:80px;  
  margin: 20px 0 0 0;
  }
}

.equipment-ttl img.rinnai{
  width:70px;  
}

@media only screen and (min-width:768px) {
.equipment-ttl img.rinnai{
  display: block;
  width:100px;
  margin: 25px 0 0 0;
  }
}

.equipment-box01{
  width:100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 1fr;  
  grid-template-rows: auto auto auto;
  margin: 0 auto 15px auto;
}

@media only screen and (min-width:768px) {
.equipment-box01{
  width:100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 50% auto;
  grid-template-rows: auto;
  column-gap: 60px;
  margin: 0 auto 60px auto;
  }
}

.equipment-box01 div{
  margin:10px 0 10px 0;
}

@media only screen and (min-width:768px) {
.equipment-box01 div{
  margin:0;
  }
}

.equipment-box01 div .eq-01-01 img{  
  display: block;
  width: 100%; 
  margin:0 auto;
}

.equipment-box01 div .eq-01-02{  
  width: 100%;
  margin:20px auto 0 auto;
}

@media only screen and (min-width:768px) {
.equipment-box01 div .eq-01-01 img{  
  display: block;
  width:100%;
  }
.equipment-box01 div .eq-01-02{  
  width:100%;
 }
}

.equipment-box01 img{
  display: block;
  width:100%;
}

.equipment-box01 div p{
  line-height: 1.75em; 
  margin: 20px 0 0 0;
}

@media only screen and (min-width:768px) {
.equipment-box01 div p{
  line-height: 1.75em; 
  margin: 60px 0 0 0;
  }
}

.equipment-box01 div span,
.equipment-box01 div strong{  
  display: block;  
  font-size: 1.2rem;  
  line-height:1.5em;
  margin: 10px 0 0 0;
}

.equipment-box01 div span + span,
.equipment-box01 div strong + strong{  
  margin: 0;
}

.equipment-box02{
  width:100%; 
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-row-gap: 30px;
  margin: 0 auto;
}

@media only screen and (min-width:900px) {
.equipment-box02{
  width:100%;
  max-width: 1440px;  
  display: grid;
  grid-template-columns: 66% auto;
  grid-template-rows: auto;
  grid-gap: 40px 30px;
  margin: 0 auto;
}
.equipment-box02 .equip01{
  grid-column:1/2;
 }
.equipment-box02 .equip02{
  grid-column:2/3; 
 }
.equipment-box02 .equip03{
  grid-column:1/3;  
 }
}

.equipment-box02 h4{
  position: relative;
  width:90%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF; 
  margin: 0 0 20px auto; 
}

@media only screen and (min-width:768px) {
.equipment-box02 h4{
  width:100%;
  height: 40px;
  margin: 0;
  }
}
.equipment-box02 h4 span{
  display: block;
  padding: 0;
}

@media only screen and (min-width:768px) {
.equipment-box02 h4 span{
  display: inline-block;
  text-align: center;
  padding: 0 0 0 60px;
  }
}

.equipment-box02 .equip01 h4{
  background: linear-gradient(90deg, #EEE 0%, #EEE 3%, #EA9301 5%, #EA9301 100%);  
  padding: 0 0 0 3%;
}
.equipment-box02 .equip02 h4{
  background: linear-gradient(90deg, #EEE 0%, #EEE 3%, #D95250 5%, #D95250 100%); 
  padding: 0 0 0 3%;
}
.equipment-box02 .equip03 h4{ 
  background: linear-gradient(90deg, #EEE 0%, #EEE 3%, #35A19E 5%, #35A19E 100%);  
  padding: 0 0 0 3%;
}

@media only screen and (min-width:768px) {
.equipment-box02 .equip01 h4{   
  background: linear-gradient(90deg, #EEE 0%, #EEE 5%, #EA9301 5%, #EA9301 100%);
  margin: 0 0 40px 0;
}
.equipment-box02 .equip02 h4{ 
  background: linear-gradient(90deg, #EEE 0%, #EEE 5%, #D95250 5%, #D95250 100%);
  margin: 0 0 40px 0;
}
.equipment-box02 .equip03 h4{   
  background: linear-gradient(90deg, #EEE 0%, #EEE 5%, #35A19E 5%, #35A19E 100%);
  margin: 0 0 20px 0;  
  }
}

.equipment-box02 h4::before{
  content: "";
  width:70px;
  height:70px;
  position: absolute;
  top:50%;
  left:-45px;
  transform: translateY(-50%);
}

@media only screen and (min-width:768px) {
.equipment-box02 h4::before{
  content: "";
  width:82px;
  height:82px;
  position: absolute;
  top:50%;
  left:0;
  transform: translateY(-50%);
 }
}

.equipment-box02 .equip01 h4::before{
  background: url("../../images/equipment/equipment-icon01.png") no-repeat 0 0;
  background-size: 100%;
}
.equipment-box02 .equip02 h4::before{
  background: url("../../images/equipment/equipment-icon02.png") no-repeat 0 0;
  background-size: 100%;
}
.equipment-box02 .equip03 h4::before{
  background: url("../../images/equipment/equipment-icon03.png") no-repeat 0 0;
  background-size: 100%;
}

.equipment-box02 .equip01 ul{
  width:95%;
  display: grid;
  grid-template-columns:1fr;
  grid-gap:20px 20px;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (min-width:768px) {
.equipment-box02 .equip01 ul{
  width:95%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  column-gap: 20px;
  justify-content: center;  
  margin: 0 auto;
  }
}

.equipment-box02 .equip02 ul{
  width:95%;
  display: grid;
  grid-template-columns:1fr;
  grid-gap:0px 20px;
  justify-content: center;
  margin: 0 auto;
}
@media only screen and (min-width:768px) {
  .equipment-box02 .equip02 ul{
  width:95%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  justify-content: center;
  margin: 0 auto;
  }
}
@media only screen and (min-width:900px) {
  .equipment-box02 .equip02 ul{
  width:95%;
  display: grid;
  grid-template-columns: 66%;
  justify-content: center;
  margin: 0 auto;
  }
}

.equipment-box02 .equip01 ul li figure img,
.equipment-box02 .equip02 ul li figure img{
  display: block;
  width:100%;
  border: 1px solid #CCC;
}

.equipment-box02 ul li dt{	
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 600;
  margin: 8px 0 3px 0;
}
@media only screen and (min-width:900px) {
.equipment-box02 ul li dt{	
  font-size: 1.5rem;
  margin: 20px 0 10px 0;
  }
}

.equipment-box02 ul li dd{  
  font-size: 1.4rem;
  line-height: 1.75em; 
}

.equipment-box02 ul li dd span,
.equipment-box02 ul li dd strong{  
  display: block;  
  font-size: 1.2rem;  
  line-height:1.5em;
  margin: 10px 0 0 0;
}

.equipment-box02 ul li dd span + span{  
  margin: 0;
}

.equipment-box02 .equip03 ul li{
  width:95%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-row:auto auto;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.equipment-box02 .equip03 ul li{
  width:95%;
  display: grid;
  grid-template-columns: 35% auto;  
  grid-template-row:auto;
  column-gap: 60px;
  margin: 0 auto;
  }
}

.equipment-box02 .equip03 ul li dl{
  grid-column: 1/2;
  grid-row:2/3;
}

.equipment-box02 .equip03 ul li figure{
  grid-column: 1/2;
  grid-row:1/2;
}

@media only screen and (min-width:768px) {
.equipment-box02 .equip03 ul li dl{
  grid-column: 1/2;
  grid-row:1/2;
}

.equipment-box02 .equip03 ul li figure{
  grid-column: 2/3;
  grid-row:1/2;
  }
}

.equipment-box02 .equip03 ul li figure img{
  display: block;
  width:100%;
}

.equipment-box03{
  width:100%;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  grid-gap: 30px 0;
  align-items: baseline;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.equipment-box03{
  width:100%;
  max-width: 1440px;
  display: grid;
  grid-template-columns: 60% 1fr;
  grid-template-rows: auto auto;
  grid-gap: 30px 60px;
  align-items: baseline;
  margin: 0 auto;
  }
}

.equipment-box03 figure.eq-03-01{
  grid-column: 1/3;
  grid-row: 1/2;
}
.equipment-box03 figure.eq-03-02{
  grid-column: 1/3;
  grid-row: 2/3;
}
.equipment-box03 figure.eq-03-03{
  grid-column: 1/3;
  grid-row: 3/4;
}

@media only screen and (min-width:768px) {
.equipment-box03 figure.eq-03-01{
  grid-column: 1/3;
  grid-row: 1/2;
}
.equipment-box03 figure.eq-03-02{
  grid-column: 1/2;
  grid-row: 2/3;
}
.equipment-box03 figure.eq-03-03{
  grid-column: 2/3;
  grid-row: 2/3;
  }
}

.equipment-box03 img{
  display: block;
  width:100%;
}

.equipment-box03 .eq-03-03 img{
  display: block;
  width:60%;
  margin: 0 auto;
}
@media only screen and (min-width:768px) {
.equipment-box03 .eq-03-03 img{
  display: block;
  width:100%;
 }
}

.equipment-box04 ul{
  width:100%;
  display: grid;    
  grid-template-columns:1fr;

  /*grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));*/
  grid-gap: 20px 20px;
  justify-content: center;
  margin: 0 auto;
}  

@media only screen and (min-width:768px) {
.equipment-box04 ul{
  width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 320px));
  grid-gap: 50px 40px;
  justify-content: center;
  margin: 0 auto;
  }
}

.equipment-box04 ul li img{
  display: block;
  width:100%;
  border: 1px solid #CCC;
}

.equipment-box04 ul li figure {
  position: relative;
}

.equipment-box04 ul li figure figcaption {
  display: block;
  background:rgba(0,0 ,0, 0.6);
  font-size: 1.2rem;
  color:#FFF;
  padding: 5px 10px;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 500;
}

.equipment-box04 ul li dt{	
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 600;
  margin: 8px 0 3px 0;
}

@media only screen and (min-width:768px) {
.equipment-box04 ul li dt{	
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5em;
  font-weight: 600;
  margin: 20px 0 10px 0;
  }
}

.equipment-box04 ul li dd{  
  font-size: 1.4rem;
  line-height: 1.75em; 
}

.equipment-box04 ul li dd span{  
  display: block;  
  font-size: 1.2rem;  
  line-height:1.5em;
  margin: 3px 0 0 0;
}
@media only screen and (min-width:768px) {
.equipment-box04 ul li dd span{  
  display: block;  
  font-size: 1.2rem;  
  line-height:1.5em;
  margin: 10px 0 0 0;
  }
}

.equipment-box04 ul li dd span + span{  
  margin: 0;
}

/* map
========================================================================================================
*/

#map{
  width:100%;
  padding: 40px 0;
  background: #FFF;
}

@media only screen and (min-width:768px) {
#map{
  width:100%;
  padding: 80px 0 100px 0;
  }
}

#map .map-box{
  position: relative;
  width:95%;
  background: #EEE;
  padding: 0 0 0 0;
  margin: 0 auto 10px auto;  
  z-index: 301;
}

@media only screen and (min-width:768px) {
#map .map-box{
  position: relative;
  width:100%;
  background: #EEE;
  padding: 0 0 40px 0;
  margin: 0 auto;  
  }
}

#map .map-wrap{
  position: relative;
  width:95%;
  background: #EEE;
  padding: 10px 0;  
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#map .map-wrap{
  position: relative;
  width:95%;
  max-width: 1600px;
  background: #EEE;
  padding: 80px 0 0 0;  
  margin: 0 auto;
  }
}

#map .map-wrap img{
  display: block;
  width:100%; 
}

#map .gmap-box{
  position: relative;
  width:100%;
  background: #EEE;
  padding: 0;
  margin: 0 auto;  
  z-index: 301;
}

@media only screen and (min-width:768px) {
#map .gmap-box{
  position: relative;
  width:100%;
  background: #EEE;
  }
}

div.gmap-wrap{
	width:100%;    
  height:400px;
  padding: 0;
	margin:0;
}

@media only screen and (min-width: 768px){
div.gmap-wrap{
  width:100%;
  height:800px;
  margin:0;
  }
}

div.gmap-wrap div.gmap{
  position: relative;
  width: 100%; 
  height: 400px;
	padding-bottom: 37.5%; 
  overflow: hidden;
	margin: 0;
}

@media only screen and (min-width:768px){
  div.gmap-wrap div.gmap{  
    height:800px;
	  padding-bottom: 37.5%; 
	  margin: 0;
	}
}

div.gmap-wrap div.gmap iframe{    
	width: 100%;   
	height: 100%; 
	position: absolute;
	top: 0;
	left: 0;
}

/* outline
========================================================================================================
*/

#outline{
  width:100%;
  padding:40px 0 120px 0;
  margin: 0 auto;
  background: #EEE;
}

@media only screen and (min-width:900px){
#outline{
  width:100%;
  padding:90px 0;
  margin:0 auto 90px auto;
  background: #EEE;
  }
}

.outline-box{
  position: relative;
  width:95%;
  background: #FFF;
  padding: 60px 0;
  margin: 0 auto;  
}

@media only screen and (min-width:768px){
.outline-box{
  position: relative;
  width:95%;
  max-width: 1600px;
  background: #FFF;
  padding: 80px 0;
  margin: 0 auto;  
  }
}

.outline-box h2{
  font-size:2rem;
  text-align: center;
  color: #000;
  font-weight: 600;
}

@media only screen and (min-width:768px){
  .outline-box h2{
  font-size: 2.4rem;
  text-align: center;
  color: #000;
  font-weight: 600;
  }
}

.outline-box dl{
  width:95%;
  display: grid;
  grid-template-columns: 25% 1fr;
  grid-template-rows: auto; 
  border-top: 1px solid #DDD;
  margin: 60px auto 0 auto;  
}

@media only screen and (min-width:768px){
.outline-box dl{
  width:90%;
  max-width: 1360px;
  display: grid;
  grid-template-columns: 330px 1fr;
  grid-template-rows: auto; 
  border-top: 1px solid #DDD;
  margin: 80px auto 0 auto;  
  }
}

.outline-box dl dt,
.outline-box dl dd{
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  min-height: 60px;
  border-bottom: 1px solid #DDD;
  font-size: 1.2rem;
  line-height: 1.3em;
}

@media only screen and (min-width:768px){
.outline-box dl dt,
.outline-box dl dd{
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  min-height: 80px;
  border-bottom: 1px solid #DDD;
  font-size: 1.5rem;
  line-height: 1.5em;
  }
}

.outline-box dl dt{  
  align-items: center;
  text-align: center;
  padding: 20px 0;
}

.outline-box dl dd{  
  align-items: flex-start;
  padding:20px 0 20px 20px;
}

@media only screen and (min-width:768px){
.outline-box dl dd{  
  align-items: flex-start;
  padding: 20px 30px;
  }
}

.outline-box dl dd span{  
  display: block;
}

.outline-box dl dd span + span{  
  margin: 10px 0 0 0;
}

@media only screen and (min-width:768px){
.outline-box dl dd span{  
  display: block; 
  margin: 5px 0 0 0;
 }
}

.outline-box dl dd span.cap{  
  display: block;
  font-size: 1.1rem;
  margin: 5px 0 0 0;
}

@media only screen and (min-width:768px){
.outline-box dl dd span.cap{  
  display: inline-block;
  font-size: 1.2rem;
  margin: 0;
  }
}

/* footer
========================================================================================================
*/

footer{
  display: none;
}

@media only screen and (min-width:900px){
footer{
  display: block;
  width: 100%;
}

.footer-wrap{
  width:95%;
  max-width:1600px;
  display: grid;
  grid-template-columns: 33% auto;
  column-gap: 40px;
  margin: 0 auto;
}

.footer-box{
  position: relative;
}

.footer-box h2{
  width: 100%;
  height: 50px;
  background: #20202F;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFF;
  margin: 0 auto;
}

.footer-box h2 span{
  font-size: 2.0rem;
}

.footer-box01 h2 + a{
  display: block;
  width:100%;
  max-width: 245px;
  margin: 50px auto;
}

.footer-box01 h2 + a img{
  display: block;
  width:100%;
  margin: 0 auto;
}

.footer-box01 ul{
  width:100%;
  margin: 0 auto;
}

.footer-box01 ul li{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}

.footer-box01 ul li + li{
  margin: 10px 0 0 0;
}

.footer-box02 dl{
  width: 95%;
  margin: 0 0 60px 0;
}
  
@media only screen and (min-width:1100px){
.footer-box02 dl{
  width: 95%;
  display: grid;
  grid-template-columns: 50% 50%;
  margin: 0 0 60px 0;
  }
}
  
.footer-box02 dl dt{
  font-size: clamp(2.2rem, 1.7vw, 2.4rem);
  text-align: center;
  font-weight: 600;  
  margin: 55px auto 0 auto;
}

.footer-box02 dl dt a{
  width:70px;
  height: 25px;
  background: #FFF;
  border: 1px solid #000;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px auto 0 auto;
  transition: 1s;
}

.footer-box02 dl dt a:hover{
  background: #535362;
  border: 1px solid #535362;
}

.footer-box02 dl dt a span{
  font-size: 1.2rem;
}

.footer-box02 dl dt a:hover span{
  color: #FFF;
}

.footer-box02 dl dd{
  text-align: center;
  margin: 55px auto 0 auto;
}

.footer-box02 dl dd span.footer-info01 {
  display: block;
  width:300px;
  margin:0 auto 10px auto;
}

.footer-box02 dl dd span.footer-info01 img{
  display: block;
  width: 100%;
}

.footer-box02 dl dd span.footer-info02{    
  font-size: 1.5rem;
  text-align: center;
  margin: 15px 0 0 0;
}
  
  
.ft-bn{  
  width:80%;
  margin: 0 auto 60px auto;
}
  
.ft-bn img{  
  display: block;
  width:100%;
  margin: 0 auto;
}

footer .copyright{
  width:100%;
  height: 120px;
  background:url("../../images/top/top02.jpg") no-repeat 0 0;
  background-size: cover;
  text-align:center;
  padding: 50px 0 0 0;
  margin: 0 0 0 0;
}

footer .copyright small{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: #FFF;
  }
}

/* sp
========================================================================================================
*/

/*
=================================================================
                          sp-nav     
=================================================================
*/

.fixed {
 position: fixed;
 width: 100%;
 height: 100%;
}

aside.sp-nav{
  position: relative;
  padding: 0;
  margin: 0;
}

@media print, screen and (min-width:900px) {
 aside.sp-nav{
  display: none;
 }
}

aside.sp-nav input.sp-checkbox{
  display: none;
}

/* 繝上Φ繝舌�繧ｬ繝ｼ繧｢繧､繧ｳ繝ｳ */
label.sp-icon{
  cursor: pointer;
  display: block;
  width: 65px;
  height: 60px;
  position:fixed;  
  bottom:0;
  left:0;
}

/* 繝上Φ繝舌�繧ｬ繝ｼ繧｢繧､繧ｳ繝ｳ縺ｮ荳ｭ縺ｮ邱� */
label span.sp-icon-parts,
label span.sp-icon-parts:before,
label span.sp-icon-parts:after{
  background-color: #FFF;   
  display: block;
  width: 35%;
  height: 2px;
  margin: auto;
}

label span.sp-icon-parts{
  position: absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
}

label span.sp-icon-parts:before,
label span.sp-icon-parts:after{
  content: " ";
  width:100%;
}
  
label span.sp-icon-parts:before{   
  position: absolute;
  top:-8px;
  left: 0;
}

label span.sp-icon-parts:after{  
  position: absolute;
  top:8px;
  left:0;
}

/* 繝峨Ο繝ｯ繝ｼ繝｡繝九Η繝ｼ髢九＞縺滓凾縺ｮ繝｡繧､繝ｳ繧ｨ繝ｪ繧｢繧呈囓縺�*/
label.sp-overlay{
  background: #000;  
  opacity: 0;
  pointer-events: none; /*繝昴う繝ｳ繧ｿ縺ｮ蜍穂ｽ懷�驛ｨ辟｡蜉ｹ蛹�*/
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
}

/* 繝峨Ο繝ｯ繝ｼ繝｡繝九Η繝ｼ*/  

aside.sp-nav div.sp-menu{
  background: #EEE;
  width: 85%;
  height: 100vh;
  overflow-y: auto; /*繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ*/
  -webkit-overflow-scrolling: touch; /*繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ��SP��*/
  position: fixed;
  top:0;
  left: -85%;
  padding: 0 0 100px 0;
}

@media print, screen and (min-width:768px) and (max-width:900px){
aside.sp-nav div.sp-menu{
  width: 50%;
  height: 100vh;
  overflow-y: auto; /*繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ*/
  -webkit-overflow-scrolling: touch; /*繧ｹ繧ｯ繝ｭ繝ｼ繝ｫ��SP��*/
  position: fixed;
  top: 0;
  left: -50%;
  }
}

/* z-index縺ｮ謖�ｮ� */  
.sp-icon{
    z-index: 704;
  }

.sp-menu{
    z-index: 703;
  }

.sp-overlay{
    z-index: 702;
  }
  
 /*  繝√ぉ繝�け縺悟�縺｣縺溘ｉ�医い繧､繧ｳ繝ｳ繧ｯ繝ｪ繝�け縺励◆繧会ｼ�*/ 
.sp-checkbox:checked ~ .sp-icon{
  left:85%;
  background: rgba(0,0,0,0.6);
}

@media print, screen and (min-width:768px) and (max-width:900px){
.sp-checkbox:checked ~ .sp-icon{
  left:50%;
  }
}

.sp-checkbox:checked ~ .sp-icon span.sp-icon-parts{
  background: transparent;
}

.sp-checkbox:checked ~ .sp-icon span.sp-icon-parts:before{
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  top: 0px;
}

.sp-checkbox:checked ~ .sp-icon span.sp-icon-parts:after{
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 0px;
}
  
.sp-checkbox:checked ~ .sp-overlay{
  opacity: 0.9;
  pointer-events: auto;
  overflow: hidden;
}

.sp-checkbox:checked ~ .sp-menu {
  left: 0;
}

.nav-checkbox:checked ~ .sp-menu {
  left: 0;
}

/*蜍輔″繧偵せ繝�繝ｼ繧ｺ縺ｫ*/ 
  .sp-icon,
  .sp-icon-parts,
  .sp-icon-parts:after,
  .sp-icon-parts:before,
  .sp-overlay,
  .sp-menu{
  -webkit-transition: all .8s ;
  transition: all .8s ;
}

/*================== sp繝｡繝九Η繝ｼ 繧ｳ繝ｳ繝�Φ繝� ==================*/

/*----------  sp-nav-head  ------------*/

div.sp-menu div.sp-nav-head{
	position: relative;
  width:100%;
  z-index: 100;
}

/*--- 繝ｭ繧ｴ ---*/
div.sp-nav-head p.sp-logo{
  width:40%;
	position:absolute;
  top:10px;
  left:50%;
  transform: translate(-50%);
}  

div.sp-nav-head p.sp-logo img{
  display: block;
  width:100;
}

div.sp-nav-head figure{
  width:100%;
}

div.sp-nav-head figure img{
  object-fit: cover;
  width:100%;
  height: 100%;
}

/*----------  sp-contact  ------------*/

.sp-contact{
  padding: 20px;
}

.sp-contact-wrap{
  width:100%;
  background:#c71236;
  padding: 15px 0;
  margin: 0 auto;
}

.sp-contact-wrap p{
  font-size: 1.6rem;
  color: #FFF;
  text-align: center;
  margin: 5px 0;
}

.sp-contact-wrap p span{
  display: block;
  font-size: 1.2rem;
  margin: 10px 0 15px 0;
}

.sp-contact-wrap ul{
  width: 90%;
  display: grid;
  grid-template-columns:repeat(1, 120px);
  gap:1px;
  justify-content: center;  
  margin: 0 auto;
}

.sp-contact-wrap ul li{
  height: 25px;
  background: #FFF;
}

.sp-contact-wrap ul li a{
  width:100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1em;
  color: #c71236;
}

.sp-contact a span{
  font-size: 1.6rem;
  color: #FFF;
}

/*---------- sp-navigation  ------------*/

.sp-navigation{
  width: 100%;
}

.sp-navigation nav ul{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap:1px;
  grid-row-gap:1px;
}

.sp-navigation nav ul li{
  height: 60px;
  background: #20202F;
}

.sp-navigation nav ul li a{
  width:100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sp-navigation nav ul li span{
  color: #FFF;
}

.sp-navigation nav ul li.nav01{
  grid-column: 1/3;
}

/*---------- sp-info  ------------*/

.sp-info-box01{
  padding: 50px 20px 20px 20px;
  margin: 0 0 30px 0;
}

.sp-info-box01 dt span{
  display:flex;
  align-items:center;
  justify-content: center;
  width:160px;
  height: 25px;  
  border: 1px solid #444;
  font-size: 1.2rem;  
  color: #444;
  margin: 0 auto 20px auto;
}

.sp-info-box01 dt{
  font-size: 1.8rem;
  text-align: center;
  font-weight: 600;
  color: #000;
  margin: 0 0 20px 0;
}

.sp-info-box01 dd span{
  display: block;
}

.sp-info-box01 dd span.sp-info01{
  display:flex;
  flex-flow: row nowrap;  
  align-items: center;
  justify-content: center;
  font-size:3.8rem;
  letter-spacing: -0.01em;
  color: #C51233;
  line-height: 1em;
}

.sp-info-box01 dd span.sp-info01 img{
  display: block;
  height: 30px;
  margin: 5px 10px 0 0;
}

.sp-info-box01 dd span.sp-info02{
  font-size: 1.1rem;
  font-weight: 600;
  text-align: center;
  margin: 7px 0 0 0;
}

.sp-info-box02 dt{
  text-align: center;
}

.sp-info-box02 dt span{
  font-size: 1.3rem;
}

.sp-info-box02 dt a{
  display: block;
  width:50%;
  max-width:200px;
  margin: 15px auto;
}

.sp-info-box02 dt a img{
  display: block;
  width:100%;
}

.sp-info-box02 dd{	
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;  
  line-height: 1.75em;
  font-weight: 400;
  text-align: center;
}

.sp-info-box01 dd span.sp-info03{
  display: flex;
  align-items: center;
  justify-content: center;
  width:90px;
  height: 25px;
  background: #999;
  font-size: 1.1rem;
  color: #FFF;
  line-height: 1em;
  margin: 0 auto 20px auto;
}

/*---------- sp-nav-bn  ------------*/

.sp-nav-bn{
	display: block;
	width:90%;
  margin:40px auto 0 auto;
}

.sp-nav-bn img{
	display: block;
	width:100%;
}

/*---------- sp-copyright  ------------*/

div.sp-menu small{
	display: block;
	width:90%;
	font-size:1.0rem;
  line-height: 1.5em;
  color: #444;
	text-align: center;
  margin:40px auto 20px auto;
}

/*-----------  sp-bt-box  ----------*/

aside.sp-bt-box{
  display: none;
}

@media print, screen and (max-width:900px) { 
  aside.sp-bt-box{
    display: block;
    width:100%; 
    background:#FFF;  
    position: fixed;
    bottom:0;
    left:0;  
    padding: 0;
    margin: 0;  
    z-index: 305;
  }
}

aside.sp-bt-box p{
  width:100%;
  height: 50px;
  background: #FFF;
  font-size: 1.4rem;
  font-weight: 700;
  color:#C51233;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 0 0 130px;
}

aside.sp-bt-box ul{  
  position: relative;
  width:100%;
  height: 60px;
  background:#FFF;    
  box-shadow: 2px -2px 4px 4px rgba(0,0,0,0.2);
  display: grid;
  grid-template-columns: 65px 65px 1fr;
  gap:1px;
  padding: 0;
  margin: 0;
  z-index: 301;
}
  
ul.sp-bt-nav li.bt-nav01{
  background-color: #20202F;
}

ul.sp-bt-nav li.bt-nav02{
  background-color: #20202F;
}

ul.sp-bt-nav li.bt-nav03{

}

ul.sp-bt-nav li.bt-nav01 a{
	display: flex;
	flex-flow: column;
	justify-content: center;
	align-items: center;
  color: #FFF;
  width:100%;
  height: 100%;  
	text-align: center;
}

ul.sp-bt-nav li.bt-nav02 a{
	display: flex;
	flex-flow: column;
	justify-content: center;
  width:100%;
  height: 100%;
  color: #FFF;
  font-size:1.2rem;
	font-weight: 500;
	color: #FFF;
  text-align: center;
}

ul.sp-bt-nav li.bt-nav02 a span{
  margin: 0 0 3px 0;
}

ul.sp-bt-nav li.bt-nav02 a span img{
  display: block;
  width:22px;
  margin: 0 auto;
}

ul.sp-bt-nav li.bt-nav03 ul{
  width:100%;
	display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap:1px;  
  box-shadow: 2px -2px 4px 4px rgba(0,0,0,0);
}

ul.sp-bt-nav li.bt-nav03 ul li{
  background:#C51233; 
}

ul.sp-bt-nav li.bt-nav03 ul li a{
  width:100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: #FFF;
}

/* soldout
========================================================================================================
*/
#soldout main{
  padding: 0;
}

#soldout #top{
  padding: 0;
}

#soldout #top .mv figure{
  position: absolute;
  top:0;
  left:0;
  z-index: 100;
}

#soldout #top .mv{
  padding: 90px 0;
}
  
@media only screen and (min-width:768px) {
#soldout #top .mv{
  padding: 150px 0;
  }
}

#soldout #top div.sold-out-box{
  position: relative;
  width:90%;
  max-width: 1040px;
  background: rgba(255,255,255,0.9);
  border-radius: 20px;
	font-family: 'Noto Serif JP', serif;
  color: #000;
  text-align: center; 
  padding: 60px 2.5% 40px 2.5%;
  margin: 0 auto;
  z-index: 101;
}

@media only screen and (min-width:768px) {
#soldout #top div.sold-out-box{
  padding: 100px 5% 60px 5%;
  margin: 0 auto;
  z-index: 101;
  }
}

div.sold-out-box h2{
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 600;
  border-bottom: 1px solid #000;  
  letter-spacing: 0.1em;
  padding: 0 15px 25px 15px;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
 div.sold-out-box h2{
  font-size: 3.2rem;
  padding: 0 15px 25px 15px;
  }
}

div.sold-out-box h2 + p{
  width:95%;
  font-size: 1.4rem;  
  font-weight: 600;
  line-height: 2.5em;  
  letter-spacing: 0.1em;
  margin: 30px auto 20px auto;
}

@media only screen and (min-width:768px) {
div.sold-out-box h2 + p{
  font-size: 1.8rem;
  line-height: 2.5em;
  margin: 40px auto 30px auto;
  }
}

div.sold-out-box h2 + p + a{
  display: inline-block;
  margin: 40px auto;
}

@media only screen and (min-width:768px) {
div.sold-out-box h2 + p + a{
  margin: 70px auto;
  }
}

div.sold-out-box h2 + p + a img{
  display: block; 
  width:140px;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
div.sold-out-box h2 + p + a img{
  width:100%;
  max-width: 240px;
  }
}

div.sold-out-box .bn{
  width:90%;
  max-width: 720px;
  margin: 0 auto;
}

div.sold-out-box .bn img{
  display: block;
  width:100%;
}

#soldout footer{
  display: block;
}

#soldout footer .copyright{
  width:100%;
  height: 80px;
  background:url("../../images/top/top02.jpg") no-repeat 0 0;
  background-size: cover;
  text-align:center;
  padding: 25px 10px 0 10px;
  margin: 0 0 0 0;
}

@media only screen and (min-width:768px) {
#soldout footer .copyright{
  width:100%;
  height: 120px;
  background:url("../../images/top/top02.jpg") no-repeat 0 0;
  background-size: cover;
  text-align:center;
  padding: 50px 10px 0 10px;
  margin: 0 0 0 0;
  }
}

#soldout footer .copyright small{
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.0rem;
  font-weight: 400;
  color: #FFF;
}

@media only screen and (min-width:768px) {
#soldout footer .copyright small{
  font-size: 1.2rem;
  }
}
</pre></body></html>