@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: 600;
  font-size: 1.4rem;
  letter-spacing: 0.05rem;
  color: #231815;
  -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:1000px) {
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:1000px) {
.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:1000px) {
.header-wrap h1{ 
  width:70%;
  margin: 0 40px;
  }
}

.header-wrap h1 img{
  display: block;
  width:100%;
}

@media print, screen and (min-width:1000px) {
.header-wrap h1 img{
  width:100%;
 }
}

.header-wrap nav{
  display: none;
}

@media print, screen and (min-width:1000px) {
.header-wrap nav{
  display: block;
  }
}

.header-wrap ul.global-nav{
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-end;
  column-gap: 1px;
}

.header-wrap ul li.g-nav01{
  position: relative;
  width:120px;
  height: 40px;
  display: flex;
  align-items: center;
}

.header-wrap ul li.g-nav02{
  width:180px;
  height:40px;
}

.header-wrap ul li.g-nav01 a::after{
  content: "";
  border: 1px solid #FFF;
  width:112px;
  height: 32px;
  position: absolute;
  top:4;
  left:4;
}

.header-wrap ul li.g-nav02 a::after{
  content: "";
  border: 1px solid #FFF;
  width:172px;
  height: 32px;
  position: absolute;
  top:4;
  left:4;
}

.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(90px * 4);
  /*数値変更 棟数*/
  position: absolute;
  right: 0;
}

.request-menu ul{
  display:grid;
  grid-template-columns: repeat(auto-fit,90px);
  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: #231815;
  text-align: center;
  margin: 10px 0 0 0;
}

.header-wrap ul li.g-nav01 a{
  background: #6e4e40;
}

.header-wrap ul li.g-nav02 a{
  background: #680000;
}

.header-wrap ul li.g-nav01 a:hover{
  background: #4f291c;
}

.header-wrap ul li.g-nav02 a:hover{
  background: #420202;
  
}
/* ハンバーガーアイコン */
.drawer-icon{ 
  display: none;
}

@media print, screen and (min-width:1000px) {
.drawer-icon{ 
  display: block;
  width: 40px;
  height: 40px;
  cursor: pointer;
  background: rgba(35,24,21,0.3);
  padding: 11px 10px 10px 10px; 
  position: fixed;
  top:25px;
  right: 20px;
  z-index:1001;
}

.drawer-icon.active{ 
  width: 40px;
  height: 40px;  
  position: fixed; padding: 10px 8px 8px 8px;
  top:25px;
  right: 30px;
}

.drawer-icon-parts{
  position: relative;
}

.drawer-icon .drawer-icon-parts span {
  display: block;
  background:#FFF;   
  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: #FFF;
}
.drawer-icon.active .drawer-icon-parts span:nth-of-type(2) {  
  animation: active-menu-bar02 .75s forwards; 
  background: #FFF;
}
.drawer-icon.active .drawer-icon-parts span:nth-of-type(3) {  
  animation: active-menu-bar03 .75s forwards;  
  background: #FFF;
  }  
}

@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:#231815;
  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:1200px;
  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:90%;
  /*max-width:800px;*/
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px,200px));
  column-gap: 40px;
  grid-row-gap: 50px;
  justify-content: center;
  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%;
  max-width: 800px;
  margin: 0 auto;
}

.side-navigation-box p.side-bn img{
  display: block;
  width:100%;
  margin: 0 auto;
}

.side-request-box ul{
  width:700px;
  display: grid;
  grid-template-columns: 340px 340px;
  column-gap:10px;
  margin: 0 auto 80px auto;
}

.side-request-box ul li{
  position: relative;
  height: 80px;
  background:#680000;  
  transition: 1s;
}

.side-request-box ul li::after{  
  content: "";
  width:330px;
  height:70px;
  border: 1px solid #FFF;
  position: absolute;
  top:50%;
  left:50%;
  transform: translate(-50% , -50%);
  z-index: 1;
}

.side-request-box ul li a{
  position: relative;
  width:100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  color: #FFF;
  letter-spacing: 0.1em;
  font-weight: 700;
  z-index: 2;
}

.side-request-box ul li:hover{
  background: #420202;
  color: #FFF;
}

/* common
========================================================================================================
*/

.ct-ttl-box01{
  width:100%;
  background:rgba( 255,255,255,0.7);
  padding: 30px 0;
}

.ct-ttl-box h2{
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-family: "Times New Roman", Times, "serif";
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
  margin: 0;
}

@media print, screen and (min-width:1000px) {
.ct-ttl-box h2{
  font-size: clamp(2.0rem, 1.5vw, 2.4rem);
  }
}

.ct-ttl-box h3{  
  font-size:2rem;
  line-height: 1.5em;
  text-align: center;
  margin: 20px 0;
}

@media print, screen and (min-width:1000px) {
.ct-ttl-box h3{  
  font-size: clamp(2.8rem, 2vw, 3.2rem);
  margin: 40px 0 20px 0;
  }
}

.ct-ttl-box h3 + p{
  width:90%;
  font-size: 1.2rem;
  line-height: 2em;
  text-align: center;
  margin: 0 auto;
}

@media print, screen and (min-width:1000px) {
.ct-ttl-box h3 + p{
  width:90%;
  font-size: clamp(1.4rem, 1vw, 1.6rem);
  }
}

.ct-ttl-box02{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
}

@media print, screen and (min-width:768px) {
.ct-ttl-box02{
  width:100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 100px 0;
  }
}

.ct-ttl-box02 h2{
  color: #FFF;
}

#plan .ct-ttl-box02{
  background: url("../../images/plan/plan-ttl.webp") no-repeat 50% 0;  
  background-size: cover;
}

#model .ct-ttl-box02{
  background: url("../../images/model/model-ttl.jpg") no-repeat 50% 0;
  background-size: cover;
}

/*#model .ct-ttl-box02{
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 0 20px 0;
}

@media print, screen and (min-width:768px) {
#model .ct-ttl-box02{
  padding: 80px 0 20px 0;
  }
}

#model .ct-ttl-box02 h2 + p{
  font-size: 2.0rem;
  font-weight: 400;
  color: #FFF;
}

@media print, screen and (min-width:768px) {
#model .ct-ttl-box02 h2 + p{
  font-size: 2.4rem;
 }
}

#model .ct-ttl-box02 h2 + p span{
  font-size: 4rem;
}

@media print, screen and (min-width:768px) {
#model .ct-ttl-box02 h2 + p span{
  font-size: 6rem;
  }
}*/

#equipment .ct-ttl-box02{
  background: url("../../images/equipment/equipment-ttl.jpg") no-repeat 50% 0;
  background-size: cover;
}

#access .ct-ttl-box02{
  background: url("../../images/access/access-ttl.jpg") no-repeat 50% 0;
  background-size: cover;
}

#location .ct-ttl-box02{
  background: url("../../images/location/location-ttl.jpg") no-repeat 50% 0;
  background-size: cover;
}

#map .ct-ttl-box02{
  background:linear-gradient(-180deg,rgb(212, 203, 198),rgb(244, 242, 240));
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  padding: 30px 0;
}

@media print, screen and (min-width:768px) {
#map .ct-ttl-box02{
  background:linear-gradient(-180deg,rgb(212, 203, 198),rgb(244, 242, 240));
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  }
}

#map .ct-ttl-box02 h2{
  color: #231815;
  margin: 0 0 20px 0;
}

#map .ct-ttl-box02 h2 + p{
  text-align: center;
  font-size: 1.8rem;
}

#map .ct-ttl-box02 h2 + p span{
  display: block;
  font-size: 1.4rem;
  margin: 0 0 10px 0;  
}

/* top
========================================================================================================
*/

#top{
  position: relative;
  width:100%;
  padding: 0;
}

@media only screen and (min-width:768px) { 
#top{
  padding: 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% 55%;
}

#top .mv figure.mv-pc{
  display: none;
}
#top .mv figure.mv-sp{
  display: block;
}

@media only screen and (min-width:960px) { 
#top .mv figure.mv-pc{
  display: block;
  }
#top .mv figure.mv-sp{
  display: none;
 }
}

#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;
  }
}



/* concept
========================================================================================================
*/

#concept{
  position: relative;
  width:100%;
  background: #DAD2CE;
  /*background: #000;*/
  padding:0;
  margin: 0;
}

#concept picture{
  display: none;
}

@media print, screen and (min-width:1100px) {
#concept picture{
  display: block;
  width:100%;
  height: auto;
  max-height: 1400px;
}

#concept picture img{
  display: block;
  width:100%;
  height:auto;  
  max-height: 1400px;
  object-fit: cover;
  object-position: bottom center;
  }
}

.concept-box{
  position: relative;
  background: url("../../images/concept/concept06.jpg") no-repeat bottom center;
  background-size: cover;
  width: 100%;
  padding: 8vh 0 200px 0;
  z-index: 101;
}

@media print, screen and (min-width:480px) {
.concept-box{
  position: relative;
  background: url("../../images/concept/concept06.jpg") no-repeat bottom center;
  background-size: cover;
  width: 100%;
  padding: 10vh 0 300px 0;
 }
}

@media print, screen and (min-width:768px) {
.concept-box{
  position: relative;
  background: url("../../images/concept/concept06.jpg") no-repeat bottom center;
  background-size: cover;
  width: 100%;
  padding: 10vh 0 450px 0;
 }
}

@media print, screen and (min-width:1100px) {
.concept-box{
  position: absolute;
  top:0;
  left:50%;
  transform: translateX(-50%);  
  background: none;
  width: 95%;
  max-width: 1400px;
  padding: 0;
  margin:10vh auto 0 auto;
 }
}

.concept-ttl-box h2{
  font-size: clamp(1.4rem, 1.8vw, 1.8rem);
  font-family: "Times New Roman", Times, "serif";
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
  margin: 0;
}

@media print, screen and (min-width:1000px) {
.concept-ttl-box h2{
  font-size: clamp(2.0rem, 1.5vw, 2.4rem);
  }
}

.concept-ttl-box h3{  
  font-size:2.4rem;
  line-height: 1.5em;
  text-align: center;
  margin: 20px 0;
}

@media print, screen and (min-width:768px) {
.concept-ttl-box h3{  
  font-size: clamp(2.8rem, 2vw, 3.2rem);
  margin: 40px 0 20px 0;
  }
}

@media print, screen and (min-width:1000px) {
.concept-ttl-box h3{  
  font-size: clamp(2.8rem, 2vw, 3.2rem);
  margin: 40px 0 20px 0;
  }
}

.concept-ttl-box h3 + p{
  width:90%;
  font-size: 1.2rem;
  line-height: 2.5em;
  text-align: center;
  margin: 0 auto;
}

@media print, screen and (min-width:768px) {
.concept-ttl-box h3 + p{
  font-size: 1.2rem;
  line-height: 2.5em;
  }
}

@media print, screen and (min-width:1000px) {
.concept-ttl-box h3 + p{
  font-size: clamp(1.4rem, 1vw, 1.6rem); 
  line-height: 2em;
  }
}

.concept-box02{
  display: none;
}

@media print, screen and (min-width:768px) {
.concept-box02{
  display: block;
  width:100%;
  margin: 8vh 0 0 0;
  }
}

.concept-box03{
  width:100%;
  background: #A5A5A5;
  padding: 0 0 20px 0;
}

@media print, screen and (min-width:768px) {
.concept-box03{
  display: none;
  }
}

.concept-box02 p,
.concept-box03 p{
  font-size: 1.5rem;
  line-height: 1.5em;
  text-align: center;
  margin:0 auto;
}

@media print, screen and (min-width:768px) {
.concept-box02 p,
.concept-box03 p{
  font-size: 2.0rem;
  text-align: center;
  margin: 0 auto;
  }
}

.concept-box02 ul,
.concept-box03 ul{
  width:90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px 10px;
  align-items: center;
  justify-content: center;
  margin:20px auto 0 auto;
}

@media print, screen and (min-width:768px) {
.concept-box02 ul,
.concept-box03 ul{
  width:60%;
  max-width: 700px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 20px;
  align-items: center;
  justify-content: center;
  margin:20px auto 0 auto;
  }
}

.concept-box02 ul li img,
.concept-box03 ul li img{
  width:100%;
}

/*#concept .caption{
  position: absolute;
  bottom: 10px;
  left:10px;
  color: #FFF;
}*/

#concept .caption{
  width:100%;
  max-width: inherit;
  color: #000;
  padding:15px 0 15px 20px;
  margin: 0;
}

#concept .caption li{
  margin: 0;
}

/* material
========================================================================================================
*/

#material{
  position: relative;
  width:100%;
  background: url("../../images/material/material01.webp") no-repeat 50% 0;
  background-size: cover;
  padding:40px 0;
}

@media only screen and (min-width:1100px) {
#material{
  padding:100px 0 40px 0;
  }
}

.material-box{
  width:90%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 40px 20px;
  padding: 40px 0 0 0;
  margin: 0 auto;
}

@media only screen and (min-width:1100px) {
.material-box{
  width:95%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px 40px;
  padding: 100px 0 0 0;
  margin: 0 auto;
  }
}

.material-box dl{
  color: #FFF;
}

.material-box dl dt{
  font-size: 1.3rem;
  line-height: 1.5em;
  margin: 0 0 5px 0;
}

@media only screen and (min-width:768px) {
.material-box dl dt{
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0 0 10px 0;
  }
}

.material-box dl dd{
  font-size: 1.1rem;
  line-height: 2em;
}

@media only screen and (min-width:768px) {
.material-box dl dd{
  font-size: 1.3rem;
  line-height: 2em;
  }
}

.material-box dl dd img{
  display: block;
  width: 100%;
}

.material-box dl dd p{
  margin: 5px 0 0 0;
}

@media only screen and (min-width:768px) {
.material-box dl dd p{
  margin: 20px 0 0 0;
  }
}

#material .caption{
  margin: 40px auto 0 auto;
}

#material .caption li{
  color: #FFF;
}


/* landscape
========================================================================================================
*/

#landscape{
  position: relative;
  width:100%;
  background: url("../../images/landscape/landscape01.webp") no-repeat 50% 0;
  background-size: cover;
  padding:40px 0 0 0;
  margin: 0;
}

@media only screen and (min-width:1100px) {
#landscape{
  padding:100px 0 0 0;
  }
}

.landscape-box{
  width:100%;
  background: linear-gradient(-180deg, #FFF 50%, #DFE6CD 100%);
  padding: 40px 0 0 0;
  margin:40px 0 0 0;
}

@media only screen and (min-width:768px) {
.landscape-box{  
  background: linear-gradient(-180deg, #FFF 70%, #DFE6CD 100%);
  padding: 60px 0 60px 0;
  margin:40px 0 0 0;
  }
}

@media only screen and (min-width:1100px) {
.landscape-box{
  padding: 100px 0 60px 0;
  margin:100px 0 0 0;
  }
}

.landscape-box figure{
  width:90%;
  margin: 0 auto;
}

@media only screen and (min-width:1100px) {
.landscape-box figure{
  width:95%;
  max-width: 900px;
  margin: 0 auto;
 }
}

.landscape-box figure img{
  display: block;
  width:100%;
}

.landscape-box01{
  width:100%;
  display: grid;
  grid-template-columns: 1fr; 
  margin: 0 auto;
}

@media only screen and (min-width:1000px) {
.landscape-box01{
  width:95%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; 
  border-right: 1px solid #231815;
  margin: 100px auto 0 auto;
  }
}

.landscape-box01 dl{
  position: relative;
  width:90%;
  padding: 0 0 40px 0;
  margin: 40px auto 0 auto;
}

@media only screen and (min-width:1000px) {
.landscape-box01 dl{
  width: 100%;
  border-left: 1px solid #231815;  
  padding: 0 40px;
  margin: 0 auto;
  }
}

@media only screen and (max-width:1000px) {
.landscape-box01 dl::after{
  content: "";
  width:100%;
  height: 1px;
  background: #231815;
  position: absolute;
  bottom: 0;
  left:50%;
  transform: translate(-50%);
  }
  
.landscape-box01 dl:last-of-type::after{
  display: none;
  }
}

.landscape-box01 dl dt{
  font-size: 1.6rem;
  line-height: 1.5em;
  margin: 0 0 10px 0;
}

@media only screen and (min-width:768px) {
.landscape-box01 dl dt{
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0 0 20px 0;
  }
}

.landscape-box01 dl dd{
  font-size: 1.2rem;
  line-height: 2em;
}

@media only screen and (min-width:768px) {
.landscape-box01 dl dd{
  font-size: 1.3rem;
  line-height: 2em;
  }
}

/* information
========================================================================================================
*/

#information{
  width:100%;
  background: linear-gradient(-180deg, #DAD2CE 50%, #F3F1EF 100%);
  padding: 20px 0 10px 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#information{
  padding: 100px 0 0 0;
  }
}

#information .information{
  width:95%;
  padding: 0;
  margin: 0 auto 10px auto;
}

@media only screen and (min-width:768px) {
#information .information{  
  position: relative;
  width:90%;
  max-width: 1400px;
  padding: 0 20px 80px 20px;
  margin: 0 auto;
  }
}

#information .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) {
#information .information .information-ttl{
  width: 140px;
  height: 30px;
  border: 1px solid #444;
  font-size:1.5rem;
  line-height: 1em;
  margin: 0 auto 60px auto;
  }
}

#information .information h2{ 
  font-size: 2.6rem;
  text-align: center;
  line-height: 1.5em;
  font-weight: 500;
  color: #231815;
  margin: 0 0 20px 0;
}

@media only screen and (min-width:768px) {
#information .information h2{  
  font-size: 4.6rem; 
  line-height: 1.0em;
  margin: 0 0 30px 0;
 }
}

#information .information h2 span{ 
  font-size: 2rem;
}

@media only screen and (min-width:768px) {
#information .information h2 span{ 
  font-size: 3rem;
  }
}

#information .information h2 span.txt-m{ 
  font-size: 1.8rem;
}

@media only screen and (min-width:768px) {
#information .information h2 span.txt-m{ 
  font-size: 2.4rem;
  }
}

#information .information h3{ 
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  width: 180px;
  height: 30px;
  margin:50px auto 0 auto;
}

#information .information h3 span{ 
  font-size: 1.5rem;
  text-align: center;
}

.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;
  }
}

.information p + p{ 
 margin: 10px 0 0 0;
}

.information-detail dl{ 
  width:95%;
  margin:20px auto 0 auto;
}

@media only screen and (min-width:1000px) {
.information-detail dl{ 
  width:80%;
  max-width: 800px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 20px 10px;
  margin: 30px auto 80px auto;
  }
}

.information-detail dl dt{
  display: none;
}

.information-detail dl dt span{   
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #444;
  width: 180px;
  height: 30px;
  font-size: 1.5rem;
  text-align: center;
}

.information-detail dl dd{ 
  font-size: 1.3rem;
  text-align: center; 
  margin: 0 0 20px 0;
}

@media only screen and (min-width:1000px) {
.information-detail dl dd{ 
  font-size: 1.4rem; 
  text-align: left; 
  margin: 0;
  }
}

.information-detail dl dd{ 
  line-height: 2em;
}

@media only screen and (min-width:420px) {
.information-detail dl dd{ 
  line-height: inherit;
  }
}

@media only screen and (min-width:420px) {
.information-detail dl dd br{ 
  display: none;
  }
}

.information-detail dl dd + dd{ 
  /*margin: 25px auto 0 0;*/
}

.information-detail dl dd span{ 
  display: block;
  font-size: 1.2rem;
  margin: 15px 0 0 0;
}

.information-detail ul{ 
  width: 95%;
  font-size: 1.1rem;
  margin: 50px auto 0 auto;
}

@media only screen and (min-width:768px) {
.information-detail ul{ 
  width: 95%;  
  font-size: 1.1rem;
  margin: 30px auto 0 auto;
  }
}

@media only screen and (min-width:960px) {
.information-detail ul{ 
  width: 80%;
  max-width: 800px;
  font-size: 1.1rem;
  margin: 30px auto 0 auto;
  }
}

.information-detail ul li{ 
  padding: 0
}

.information-detail ul li span{ 
  display: inline-block;
  position: relative;
  line-height: 1.3em;
  padding: 0 0 0 12px;
}

.information-detail ul li span::before{ 
  content: "※";
  position: absolute;
  top:0;
  left:0;
}

.information-detail ul li + li{ 
  margin: 10px 0 0 0;
}

.information div.yokoku p + p{
  margin: 20px 0 0 0;
}

.information div.yokoku p + p{
  margin: 20px 0 0 0;
}

.information div.yokoku{
  width:90%;
  display: flex;
  flex-flow: column wrap;
  justify-content: center;
  align-items: center;
  margin: 50px auto;
}

@media only screen and (min-width:960px) {
.information div.yokoku{
  width:80%;
  max-width: 800px;
  margin: 0 auto 80px auto;
  }
}

.information div.yokoku p span{ 
  width:80px;
  height: 28px;
  border: 1px solid #666;
  font-size: 1.4rem;
  line-height: 1em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 10px;
}

@media only screen and (min-width:960px) {
.information div.yokoku p span{ 
  width:120px;
  height: 38px;
  font-size: 1.8rem;
  }
}

.information div.yokoku p{ 
  font-size: 1.2rem;
  /*text-align: left;*/
  text-align: center;
}

@media only screen and (min-width:960px) {
.information div.yokoku p{ 
  font-size: 1.5rem;
 }
}

.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: 25px 0;
 }
.information-box li.info-box02{ 
  padding: 25px 0 20px 0;
 }
}

.information-box li.info-box01{ 
  background:#680000;
  transition: 1s;
}

.information-box li.info-box02{ 
  background:#231815; 
}

.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:#680000;
  padding: 15px 0 0 0;
}

@media only screen and (min-width:768px) {
.information-box .info-request{
  display: none;
  position: absolute;
  top:0;
  left:0;
  padding:15px 0 35px 0;
  }
}

.information-box .info-box01 .info-request p{
  /*font-size: 1.2rem;
  padding: 0 0 15px 0;*/  
  color: #FFF;
  text-align: center;
  display: none;
}

@media only screen and (min-width:768px) {
.information-box .info-box01 .info-request p{
  display: block;
  font-size: 1.4rem;
  padding: 15px 0;
  }
}

.info-box01 .info-request ul.info-request-btn{
  display: grid;
  grid-template-columns: repeat(2,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(2,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;
  line-height: 1em;
  color: #420202;
  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%;
  padding:0;
}

@media only screen and (min-width:768px) {
#access{
  padding:0 0 80px 0;
  }
}

#access figure.access-time{
  width:100%;
}

#access figure.access-time img{
  display: block;
  width:100%;
}

#access h3{
  width:95%;
  font-size: 2.0rem;
  line-height: 1.75em;
  text-align: center;
  margin:40px auto 20px auto;
}

@media only screen and (min-width:768px) {
  #access h3{
  font-size: 2.8rem;
  text-align: center;
  margin:90px auto 20px auto;
  }
}

#access h3 span{
  display: inline-block;
  margin-left:-10px;
}

#access div.map-box{
  width:95%;
  padding: 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#access div.map-box{
  width:95%;
  max-width: 1200px;
  padding: 60px 0 0 0;
  }
}

#access div.map-box img{
  display: block;
  width:90%;
  max-width: 1400px;
  margin: 0 auto;
}

.access-wrap{
  width:95%;
  margin:20px auto 0 auto;
}

@media only screen and (min-width:1000px) {
.access-wrap{
  width:95%;
  max-width: 1200px;
  display: grid;
  grid-template-columns: 30% 1fr;
  column-gap: 60px;
  margin:100px auto 0 auto;
  }
}

.access-box01{
  width:100%;
}

.access-box01 dl dt{
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0 0 20px 0;
}

@media only screen and (min-width:768px) {
.access-box01 dl dt{
  font-size: 1.8rem;
  }
}

.access-box01 dl dd figure img{
  display: block;
  width:100%;
}

.access-box01 dl dd p{
  font-size: 1.2rem;
  line-height: 2em;
  margin: 20px 0 0 0;
}

@media only screen and (min-width:768px) {
.access-box01 dl dd p{
  font-size: 1.3rem;
  line-height: 2em;
  margin: 20px 0 0 0;
  }
}

.access-box02{
  width:100%;
  margin: 40px 0 0 0;
}

@media only screen and (min-width:1000px) {
.access-box02{
  width:100%;
  margin: 0;
  }
}

.access-box02 h4{
  width:100%;
  background: #231815;
  color: #FFF;
  text-align: center;
  padding:20px 10px;
}

@media only screen and (min-width:768px) {
.access-box02 h4{
  border-radius: 25px;
  padding: 10px;
  }
}

.access-box02 h4 span{
  font-size: 2.0rem;
}

@media only screen and (min-width:768px) {
.access-box02 h4 span{
  font-size: 2.8rem;
  }
}

#access div.access-list-wrap{
  width:95%;
  display: grid;
  grid-template-columns: 1fr;
  column-gap: 35px;
  margin: 30px auto;
}

@media only screen and (min-width:1100px) {
#access div.access-list-wrap{
  width:95%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 40px;
  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{
  width:95%;
  display: grid;
  grid-template-columns: 40% 1fr; 
  align-items: flex-end;
  border-bottom: 1px solid #231815;
  padding: 0 0 10px 0;
  margin: 0 auto 10px auto;
}

@media only screen and (min-width:1100px) {
#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.4rem;
  font-weight:400;
  margin: 0 10px 0 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;
  }
}

#access .access-list p{
  width: 95%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.2rem;
  line-height: 1.75em; 
  font-weight: 400;
  margin: 0 auto;
}

@media only screen and (min-width:1100px) {
#access .access-list p{
  width:100%;
  font-size: 1.1rem;
  line-height: 1.75em;
  margin: 0;
  }
}

#access .access-car{
  width:95%;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#access .access-car{
  width:100%;
  max-width: 1200px;
  margin:60px auto 0 auto;
  }
}

#access .access-car h4{
  font-family: "Times New Roman", Times, "serif";
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-align: center;
}

@media only screen and (min-width:768px) {
#access .access-car h4{
  font-size: 2.4rem;
  }
}

#access .access-car h4 + p{
  font-size: 1.2rem;
  line-height: 2em;
  text-align: left;
  margin: 20px 0;
}

@media only screen and (min-width:768px) {
#access .access-car h4 + p{
  font-size: 1.3rem;
  line-height: 2em;
  text-align: center;
  margin: 20px 0;
  }
}

#access .access-car img{
  display: block;
  width:100%;
  max-width: 800px;
  margin:0 auto;
}


/* location
========================================================================================================
*/

#location{
  width:100%;
  padding: 10px 0 0 0;
  background: #FFF;
}

@media only screen and (min-width:768px) {
#location{
  padding: 0 0 80px 0;
  }
}

#location .location-box{
  position: relative;
  width:90%;
  margin:0 auto;
  z-index: 301;
}

@media only screen and (min-width:768px) {
#location .location-box{  
  width:90%;
  max-width: 1200px;
 }
}

#location .location-box h3{
  font-size: 2.0rem;
  line-height: 1.8em;
  text-align: center;
  margin: 40px auto 20px auto;
}

@media only screen and (min-width:768px) {
#location .location-box h3{
  font-size: 2.8rem;
  text-align: center;
  margin: 90px auto 40px auto;
  }
}

#location .location-box h3 + p{
  font-size: 1.2rem;
  text-align: center;
  line-height: 2em;
}

@media only screen and (min-width:768px) {
#location .location-box h3 + p{
  font-size: 1.6rem;
  }
}

#location .location-box h3 + p + figure{
  width:100%;
  max-width: 1000px;
  margin: 20px auto 0 auto;
}

@media only screen and (min-width:768px) {
#location .location-box h3 + p + figure{
  width:100%;
  max-width: 1000px;
  margin: 60px auto 0 auto;
  }
}

#location .location-box figure img{
  display: block;
  width:100%;
}

.location-box01{
  width:100%;
  display: grid;
  grid-template-columns: 1fr;
  margin:20px auto 0 auto;
}

@media only screen and (min-width:768px) {
.location-box01{
  width:100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 80px;
  margin:40px auto 80px auto;
  }
}

.location-box01 dl{
  margin: 0 0 40px 0;
}

@media only screen and (min-width:768px) {
.location-box01 dl{
  margin: 0;
  }
}

.location-box01 dl dt{
  font-size: 1.6rem;
  line-height: 1.8em;
  margin: 0 0 20px 0;
}

@media only screen and (min-width:768px) {
.location-box01 dl dt{
  font-size: 1.8rem;
  margin: 0 0 20px 0;
  }
}

.location-box01 dl dd{
  font-size: 1.2rem;
  line-height: 2em;
}

@media only screen and (min-width:768px) {
.location-box01 dl dd{
  font-size: 1.3rem;
  line-height: 2em;
  }
}

.location-box02 ul{
  width:100%;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
  grid-gap: 20px 40px;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.location-box02 ul{
  grid-gap: 40px 40px;
  }
}

.location-box02 ul li{
  position: relative;
}

.location-box02 ul li span.location-cap{
  display: inline-block;
  margin: 10px 0;
  font-size: 1.1rem;
}

.location-box02 ul li dl{  
  position: absolute;
  top:0;
  left:0;
  width:100px;
  height: 100px;
  border-radius: 50%;
  background: #a48b78;
  display: grid;
  grid-template-rows: 1fr 1fr;
  color: #FFF;
  padding: 7px 0 5px 0;
  margin: -10px 0 0 -10px;
}

.location-box02 ul li dl::after{
  content: "";
  width:80%;
  height: 1px;
  background: #FFF;
  position: absolute;
  top: 50%;
  left:50%;
  transform: translate(-50%,-50%);
}

.location-box02 ul li dl dt{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  text-align: center;
}

.location-box02 ul li dl dt.txt-s{
  font-size: 1.1rem;
  letter-spacing: -0.05em;
  line-height: 1.5em;
}

.location-box02 ul li dl dd{  
  font-size: 1.1rem;
  text-align: center;
  margin: 3px 0 0 0;
}

.location-box02 ul li dl dd strong{
  font-size: 1.6rem;
}

.location-box02 ul li dl dd span{
  display: block;
  font-size: 1.0rem;
}


/* plan
========================================================================================================
*/

#plan{
  width:100%;
  padding: 0;
  margin: 0;
}

@media only screen and (min-width:768px) {
#plan{
  margin: 0 0 40px 0;
  }
}

.plan-box{
  width:100%;
  margin: 0 auto;
}

.floorplan-list{  
  width:100%;
  margin:0 auto;
}

.floorplan-list .plan-item{
  position: relative;
  width:100%;
  background: #FFF;
}

@media only screen and (min-width:768px) {
.floorplan-list .plan-item{
  width:100%; 
  }
}

.floorplan-list .plan-item + .plan-item{
  margin:0 auto;
}

@media only screen and (min-width:768px) {
.floorplan-list .plan-item + .plan-item{
  margin:10px auto 0 auto;
  }
}

.floorplan-list .plan-detail-wrap{
  width:100%;
}

.floorplan-list .plan-detail-wrap.type01{
  background: url("../../images/plan/plan02.jpg") no-repeat 0 0;
  background-size: cover;
}

.floorplan-list .plan-detail-wrap.type02{
  background: url("../../images/plan/plan03.jpg") no-repeat 0 0;
  background-size: cover;
}

.plan-detail01{
  width:100%;
  display: grid;
  grid-template-columns: 1fr; 
  grid-template-rows: auto auto auto;
  align-items: center;
  color: #FFF;
  font-weight: 600;
  padding: 0 0 20px 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.plan-detail01{
  width:95%;
  max-width: 1100px;
  display: grid;
  grid-template-columns: 120px 300px 1fr; 
  grid-template-rows: auto auto;
  column-gap: 50px;
  padding: 0 50px 0 0;
  margin: 0 auto;
  }
}

.type01 .plan-detail01{
  color: #FFF;
}

.type02 .plan-detail01{
  color: #231815;
}

.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{
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

@media only screen and (min-width:768px) {
.plan-detail01 .type{
  min-height: 200px;
  color: #FFF; 
  padding: 5px 0;
  }
}

.plan-detail01 .type p{
  width: 100%;
  background: #231815;
  font-size: 2.8rem;
  font-weight: 400;
  text-align: center;
  padding:10px 20px;
}

@media only screen and (min-width:768px) {
.plan-detail01 .type p{
  width: inherit;
  font-size: 5.0rem;
  }
}

@media only screen and (min-width:768px) {
 .type01 .plan-detail01 .type p{  
  border: 4px solid #999;
 }

.type02 .plan-detail01 .type p{  
  border: 4px solid #FFF;
  }
}

.plan-detail01 .type p span{
  font-size: 1.6rem;
}

.plan-detail01 .ldk{
  position: relative;
  grid-column: 1/3;
  grid-row: 2/3;
  display: flex;
  flex-flow: row nowrap;
  column-gap: 40px;
  align-items: center;
  border-bottom: 1px solid #FFF;
  padding: 20px 10px;
  margin: 0 20px;
}

@media only screen and (min-width:768px) {
.plan-detail01 .ldk{  
  grid-column: 2/3;
  grid-row: 1/3;
  min-height: 90px;
  display: flex;
  flex-flow: column nowrap;
  column-gap:normal;
  align-items: flex-start; 
  border-bottom:none;
  padding: 30px 0 25px 0;
  margin: 0;
 }
  
.plan-detail01 .ldk::after{  
  content: "";
  width:1px;
  height: 75%;
  background: #FFF;
  position: absolute;
  top:50%;
  right: 0;
  transform: translateY(-50%);
 }
}

.plan-detail01 .ldk p{
  font-size:3rem; 
  font-weight: 500;
}

@media only screen and (min-width:768px) {
.plan-detail01 .ldk p{
  font-size:5rem;
  }
}

.plan-detail01 .ldk p span{
  display: inline-block;
  font-size:2.6rem;
  margin: 0 0 0 3px;
}

@media only screen and (min-width:768px) {
.plan-detail01 .ldk p span{
  display: inline-block;
  font-size:3rem;
  margin: 0 0 0 3px;
  }
}

.plan-detail01 .ldk ul{  
  margin: 0;
}

@media only screen and (min-width:768px) {
.plan-detail01 .ldk ul{  
  display: flex;
  flex-flow: row wrap;
  padding: 0 30px 0 0;
  margin: 10px 0 0 0;
  }
}

.plan-detail01 .ldk ul li{  
  position: relative;
  font-size: 1.3rem;  
  line-height: 1em;
  letter-spacing: 0;  
  padding: 5px 3px 5px 18px;
}

@media only screen and (min-width:768px) {
.plan-detail01 .ldk ul li{  
  font-size: 1.5rem;  
  padding: 5px 3px 5px 18px;
  }
}

.plan-detail01 .ldk ul li::before{  
  content: " ＋ ";
  font-size: 1.3rem;  
  position: absolute;
  top:45%;
  left:0;
  transform:translateY(-50%);
}

@media only screen and (min-width:768px) {
.plan-detail01 .ldk ul li::before{  
  content: " ＋ ";
  font-size: 1.5rem;
  }
}

.plan-detail01 .area{
  grid-column: 1/3;
  grid-row: 3/4;  
}

@media only screen and (min-width:768px) {
.plan-detail01 .area{
  grid-column: 3/4;
  grid-row: 1/3;
  }
}

.plan-detail01 .area{  
  padding: 20px 10px 10px 10px;
  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 wrap;
  margin: 0;
  }
}

.plan-detail01 .area .area01 dl{  
  width:100%;
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.plan-detail01 .area .area01 dl + dl{ 
  position: relative;
  width:100%;
  padding: 0;
}

@media only screen and (min-width:1100px) {
.plan-detail01 .area .area01 dl{  
  width:210px;  
  display: block;
}
.plan-detail01 .area .area01 dl + dl{ 
  position: relative;
  width:calc(100% - 210px);
  padding: 0 0 0 40px;
  }
}

@media only screen and (min-width:1100px) {
.plan-detail01 .area .area01 dl + dl::before{  
  content: " ／　";
  font-size: 2.6rem;
  position: absolute;
  bottom:5px;
  left:0;
  }
}

.plan-detail01 .area .area01 dl dt{  
  font-size: 1.2rem;
  margin: 0 0 0 10px 0;
}

@media only screen and (min-width:1100px) {
.plan-detail01 .area .area01 dl dt{ 
  font-size: 1.3rem;
  }
}

.plan-detail01 .area .area01 dl dd{
  font-size: 1.2rem;
  margin: 0px 0 0px 20px;
}

@media only screen and (min-width:768px) {
.plan-detail01 .area .area01 dl dd{ 
  font-size: 1.6rem;  
  margin: 5px 0;
  }
}

.plan-detail01 .area .area01 dl dd span.col01{ 
  color: #c9a063;
}

.plan-detail01 .area .area01 dl dd span.col02{ 
  color: #6a3906;
}

.plan-detail01 .area .area01 p{
  width:100%;
  font-size: 1.0rem;
  margin: 10px 0 0 0;
}
@media only screen and (min-width:1050px) {
.plan-detail01 .area .area01 p{ 
  width:100%;
  }
}

.plan-detail01 .area .area02{  
  font-size: 1.1rem;
  margin: 20px 0 0 0;
}

@media only screen and (min-width:768px) {
.plan-detail01 .area .area02{
  font-size: 1.2rem;
  margin: 15px 0 0 0;
  }
}

.plan-detail01 .area .area02 dl{  
  display: flex;
  flex-flow: row nowrap;
}

.plan-detail01 .area .area02 dl + dl{  
  margin: 10px 0 0 0;
}

.plan-detail02{
  width:100%;
  padding: 30px 0 40px 0;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.plan-detail02{
  width:100%;
  padding: 60px 0 80px 0;
  margin: 0 auto;
  }
}

.plan-lead{ 
  width:90%;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.plan-lead{ 
  width:90%;
  margin: 0 auto 30px auto;
  }
}

.plan-lead h3{   
  font-family: "Times New Roman", Times, "serif";
  font-size: 3rem;
  letter-spacing: 0.05em;
  font-weight: 400;
  text-align: center;
  margin: 0 0 15px 0;
}

@media only screen and (min-width:768px) {
.plan-lead h3{   
  font-size: 4.6rem;
  margin: 0 0 30px 0;
  }
}

.plan-lead p{ 
  font-size: 1.6rem;
  line-height: 1.75em;
  color: #20202F; 
  text-align: center;
  margin: 0 0 30px 0;
}

@media only screen and (min-width:768px) {
.plan-lead p{ 
  font-size: 2.2rem;
  margin: 0 0 30px 0;
 }
}

.plan-lead p + p{ 
  font-size: 1.2rem;  
  line-height: 2em; 
  text-align: left;
  margin: 0 0 15px 0;
}

@media only screen and (min-width:768px) {
.plan-lead p + p{ 
  font-size: 1.4rem;  
  text-align: center;
  margin: 0 0 30px 0;
  }
}

.plan-item .floorplan{ 
  width:100%;  
  margin: 0 auto;
}

.plan-item .floorplan figure{ 
  width:100%;  
  max-width: 1200px;
  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-point{ 
  width:95%;
  background: #EEE;  
  display: grid;
  grid-template-columns: 1fr 1fr;  
  grid-gap: 0 20px;
  padding: 20px;
  margin: 20px auto 0 auto;
}

@media only screen and (min-width:768px) {
.plan-point{ 
  width:95%; 
  max-width: 1200px; 
  background: #EEE;
  display: grid;
  grid-template-columns: 1fr 1fr;  
  grid-gap: 0 40px;
  padding: 40px;
  margin: 60px auto 0 auto;
  }
}

.plan-point ul{ 
  width:100%;  
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}

.plan-point ul li + li{ 
  margin: 20px 0 0 0;
}

@media only screen and (min-width:768px) {
.plan-point ul li{ 
  width:100%;
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: flex-start;
  }
}

.plan-point ul li span{ 
  display: flex;
  justify-content: center;
  align-items: center;
  width:50px;
  height: 16px;
  background: #c9a063;
  border-radius: 8px;
  font-size: 1.0rem;
  color: #FFF;
  margin: 0 0 5px 0;
}

@media only screen and (min-width:768px) {
.plan-point ul li span{ 
  width:60px;
  height: 20px;
  border-radius: 20px;
  font-size: 1.2rem;
  margin: 5px 0 0 0;
  }
}

.plan-point ul li p{ 
  font-size: 1.2rem;
  line-height: 2em;
}

@media only screen and (min-width:768px) {
.plan-point ul li p{ 
  font-size: 1.3rem;
  }
}

.plan-btn-box{
  width:100%;
  margin:40px auto 0 auto;
}

@media only screen and (min-width:768px) {
.plan-btn-box{
  margin:40px auto 0 auto;
  }
}

.plan-btn-box a{
  width: 200px;
  margin: 0 auto;
}

/* model
========================================================================================================
*/

#model{
  width:100%;  
  background: #231815;
}

.model-box{
  position: relative;
  width:100%;
  padding: 0;
  margin: 0 auto;  
  z-index: 301;
}

@media only screen and (min-width:768px) {
.model-box{
  padding: 0 0 40px 0;
  }
}

.model-wrap{
  position: relative;
  width:100%;
  /*min-height: 550px;
  padding: 10px 2.5%;*/
  margin: 0 auto;  
  z-index: 301;
  overflow: hidden;
}

@media only screen and (min-width:768px) {
.model-wrap{
  /*padding:40px;*/
 }
}

.modelSlider{
  margin: 0;
}

.thumbnail-list{
  /*display: none;*/
  width:100%;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  /*grid-template-columns: repeat(auto-fit, minmax(90px,1fr));*/
  gap:2px;
  padding:15px 10px;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.thumbnail-list{
  width:90%; 
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(6,1fr);
  /*grid-template-columns: repeat(auto-fit, minmax(155px,1fr)); */ 
  padding:40px 0 0 0;
  }
}  

.slide-item{
  width:100%;
  height:300px;
}

@media only screen and (min-width:768px) {
.slide-item{
  width:100%;
  /*height: 580px;*/
  }
}

.slide-item figure{
  position: relative;
  /*height:300px;*/
}
@media only screen and (min-width:768px) {
.slide-item figure{
  position: relative;
  /*height: 580px;*/
  }
}

.slide-item figure img{
  display: block;
  width:100%;
  height: 100%;
  object-fit: cover;
}

.slide-item figure figcaption{
  display: inline-block;
  min-width:100px;
  background: #20202F;
  position: absolute;
  top: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;
  background: #20202F;
  position: absolute;
  top:0;
  left:0;
  font-size: 1.4rem;
  color: #FFF;
  text-align: center;
  padding: 10px 20px;
  }
}

.thumbnail-item{
  position: relative;
  height: 70px;
  cursor: pointer;
}
@media only screen and (min-width:768px) {
.thumbnail-item{
  position: relative;
  height: 100px;
  cursor: pointer;
  }
}

.thumbnail-item figure{
  position: relative;
  width:100%;
  height:100%;
}

.thumbnail-item figure img{
  display: block;
  width:100%;
  height: 100%;
  object-fit: cover;
}

.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.2rem;
  line-height: 1.5em;
  color: #231815;
  text-align: center; 
  padding: 5px 5px;
  opacity: 1;
  z-index: 101;
}

@media only screen and (min-width:768px) {
.thumbnail-item figure figcaption{ 
  font-size: 1.4rem;
  padding: 10px 5px;
  }
}

.thumbnail-item:after {
  content: "";
  background-color: rgba(89, 87, 87, 1);
  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 {
  color: #FFF;
  opacity: 1;
}

.thumbnail-item.thumbnail-current:after{
  opacity: 1;
}

/* zeh
========================================================================================================
*/

#zeh{
  width:100%;
  background: #FFF;
}

.zeh-box{
  width:100%;
  background: #FFF;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.zeh-box{
  width:100%;
  margin: 0 auto;
 }
}

.zeh-ttl-box{  
  width:100%;
  background: linear-gradient(-180deg,rgb(212, 203, 198),rgb(244, 242, 240));
  padding: 40px 0;
  margin: 0 auto 20px auto;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box{  
  width:100%;  
  padding: 60px 0;
  margin: 0 auto 40px auto;
  }
}

.zeh-ttl-box h2{
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: flex-end;
  column-gap: 20px;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box h2{  
  }
}

.zeh-ttl-box h2 span{  
  font-size:2.6rem;
  letter-spacing: 0.1em;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box h2 span{  
  font-size:3.8rem;
  }
}

.zeh-ttl-box h2 img{
  display: block;
  width:60px;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box h2 img{
  display: block;
  width:80px;
 }
}

.zeh-ttl-box h2 + p{  
  font-size:1.4rem;
  letter-spacing: 0.1em;
  line-height: 1.4em;
  color: #20202F;
  text-align: center;
  margin: 20px 0 0 0;
}

@media only screen and (min-width:768px) {
.zeh-ttl-box h2 + p{  
  font-size:2rem;
  margin: 20px 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: #FFF;
  padding: 15px 3.5% 30px;
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
.zeh-wrap{  
  width:95%;  
  max-width: 1200px;
  padding: 60px 3%;
  margin: 0 auto;
  }
}

/* equipment
========================================================================================================
*/

#equipment{
  width:100%;
  padding: 0 0 40px 0;
}

@media only screen and (min-width:768px) {
#equipment{
  width:100%;
  padding: 0 0 80px 0;
  }
}

.equipment-box{
  position: relative;
  width:95%;
  background: #FFF;
  margin: 15px auto 0 auto;
  z-index: 301;
}

@media only screen and (min-width:768px) {
.equipment-box{
  max-width: 1200px;
  margin: 0 auto 40px auto;
  }
}

.equipment-wrap{
  width:100%;
  background: #FFF;
  padding: 10px 0 0px 0;
  margin: 0 auto;  
}

@media only screen and (min-width:768px) {
.equipment-wrap{
  padding: 0 0 40px 0;
  margin: 0 auto;  
  }
}

.equipment-ttl{
  width:100%;
  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%;
  padding: 0;
  margin: 0 0 80px 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: 90px 0 40px 0;
  }
}

.equipment-ttl.ttl03{
  background:  linear-gradient(-180deg,rgb(212, 203, 198),rgb(244, 242, 240));
  padding: 40px 0;
  margin: 0 0 10px 0;
}

@media only screen and (min-width:768px) {
.equipment-ttl.ttl03{
  padding: 0 0 60px 0;
  margin: 0 0 40px 0;
  }
}

.equipment-ttl.ttl03 h3{
  font-size: 2.0rem;
  margin: 20px;
}

@media only screen and (min-width:768px) {
.equipment-ttl.ttl03 h3{ 
  font-size: 2.6rem;
  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.4rem;
  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: 50px 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: 2em; 
  margin: 0 0 20px 0;
}

@media only screen and (min-width:768px) {
.equipment-box01 div p{
  line-height: 2em; 
  margin: 0 0 40px 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:1000px) {
.equipment-box02{
  width:100%;
  max-width: 1440px;  
  display: grid;
  grid-template-columns: 60% 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, #FFF 0%, #FFF 3%, #EA9301 5%, #EA9301 100%);  
  padding: 0 0 0 3%;
}
.equipment-box02 .equip02 h4{
  background: linear-gradient(90deg, #FFF 0%, #FFF 3%, #D95250 5%, #D95250 100%); 
  padding: 0 0 0 3%;
}
.equipment-box02 .equip03 h4{ 
  background: linear-gradient(90deg, #FFF 0%, #FFF 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, #FFF 0%, #FFF 5%, #EA9301 5%, #EA9301 100%);
  margin: 0 0 40px 0;
}
.equipment-box02 .equip02 h4{ 
  background: linear-gradient(90deg, #FFF 0%, #FFF 5%, #D95250 5%, #D95250 100%);
  margin: 0 0 40px 0;
}
.equipment-box02 .equip03 h4{
  background: linear-gradient(90deg, #FFF 0%, #FFF 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:30px 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:1000px) {
  .equipment-box02 .equip02 ul{
  width:95%;
  display: grid;
  grid-template-columns: 100%;
  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 dl + dl{	
  margin: 20px 0 0 0;
}

.equipment-box02 ul li dt{	
  /*font-family: 'Noto Sans JP', sans-serif;*/
  font-size: 1.6rem;
  line-height: 1.5em;
  font-weight: 700;
  margin: 8px 0 15px 0;
}

@media only screen and (min-width:1000px) {
.equipment-box02 ul li dt{	
  font-size: 1.6rem;
  margin: 20px 0 15px 0;
  }
}

.equipment-box02 .equip03 ul li dt span{
  display: block;
  color: #136EAB;
  margin:20px 0 5px 0;
}

@media only screen and (min-width:768px) {
.equipment-box02 .equip03 ul li dt span{
  margin: 0 0 5px 0;
  }
}

.equipment-box02 ul li dd{
  font-size: 1.3rem;
  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, 340px));
  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:10px 0 5px 0;
}

@media only screen and (min-width:768px) {
.equipment-box04 ul li dt{	
  font-size: 1.6rem;
  margin: 20px 0 10px 0;
  }
}

.equipment-box04 ul li dd{  
  font-size: 1.3rem;
  line-height: 2em; 
}

.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: 10px 0 40px 0;
  background: #FFF;
}

@media only screen and (min-width:1000px) {
#map{
  width:100%;
  padding: 0 0 100px 0;
  }
}

#map .map-box{
  position: relative;
  width:95%;
  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%;
  padding: 0 0 60px 0;
  margin: 0 auto;  
  }
}

#map .map-wrap{
  position: relative;
  width:100%;
  padding:10px 0;  
  margin: 0 auto;
}

@media only screen and (min-width:768px) {
#map .map-wrap{
  width:90%;
  max-width: 1000px;
  padding: 40px 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:1000px){
#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:90%;
  max-width: 1600px;
  background: #FFF;
  padding: 80px 0;
  margin: 0 auto;  
  }
}

.outline-box h2{
  font-size:2rem;
  text-align: center;
  color: #231815;
  font-weight: 600;
}

@media only screen and (min-width:768px){
  .outline-box h2{
  font-size: 2.4rem;
  text-align: center;
  color: #231815;
  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.txt-cap{
  display: block;
  font-size: 1.1rem;
  margin: 10px 0 0 0;
}

@media only screen and (min-width:768px){
.outline-box dl dd span.txt-cap{  
  display: inline;
  font-size: 1.3rem;
  }
}

.outline-box dl dd span.ttl{  
  border: 1px solid #666;
  padding:3px 7px; 
  margin: 30px 0 0 0;
}

.outline-box dl ul{
  width:100%;
  margin: 20px 0 0 0;
}

.outline-box dl ul + ul{
  width:100%;
  margin: 30px 0 10px 0;
}

.outline-box dl ul li{
  position: relative;
  line-height: 1.8em;
  padding: 0 0 0 20px;
}

.outline-box dl ul li::before{
  content: "・";
  position: absolute;
  top:0;
  left:0;
}

.outline-box dl ul.cap li::before{
  content: "※";
  position: absolute;
  top:0;
  left:0;
}

.outline-box dl ul li + li{
  margin: 15px 0 0 0;
}

.yokoku{  
  width: 95%;
  max-width: 1600px;
	font-family: 'Noto Sans JP', sans-serif;
  margin: 30px auto 0 auto;
}

.yokoku dt{
  margin: 0 0 10px 0;
}

.yokoku dt span{
  display: inline-block;
  border: 1px solid #666; 
  font-size: 1.4rem;  
  font-weight: 400;
  padding: 5px 10px;
}

@media only screen and (min-width:768px){
.yokoku dt span{ 
  font-size: 1.8rem;  
  padding: 5px 10px;
  }
}

.yokoku dd{
  position: relative;
  font-size: 1.1rem;
  font-weight: 400;
  color: #666;
  line-height: 1.75em;
  padding: 0 0 0 15px;
  margin: 0 0 5px 0;
}

@media only screen and (min-width:768px){
.yokoku dd{
  font-size: 1.2rem;
  }
}

.yokoku dd::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}


/* footer
========================================================================================================
*/

footer{
  display: none;
}

@media only screen and (min-width:1000px){
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: #231815;
  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 #231815;
  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:#231815;
  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:1000px) {
 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: #FFF;
  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:1000px){
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:1000px){
.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%;
  padding: 0;
  margin: 0 auto;
}

.sp-contact-wrap ul{
  width: 100%;
  display: grid;
  grid-template-columns:1fr 1fr;
  gap:1px;
  justify-content: center;  
  margin: 0 auto;
}

.sp-contact-wrap ul li{
  height: 60px;
  background:#680000;
}

.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;
}

.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: #231815;
}

.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: #231815;
  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;
  font-weight: 400;
  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:1000px) { 
  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 1fr;
  gap:1px;
  padding: 0;
  margin: 0;
  z-index: 301;
}
  
ul.sp-bt-nav li.bt-nav01{
  background-color:#231815;
}

ul.sp-bt-nav li.bt-nav02{
  background-color:#231815;
}

ul.sp-bt-nav li.bt-nav03{
  background-color:#680000;
}

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 a{
	display: flex;
	flex-flow: column;
	justify-content: center;
  width:100%;
  height: 100%;  
}


ul.sp-bt-nav li.bt-nav03 a span{  
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  color: #FFF;
	text-align: center;
}

