@charset "utf-8";

html {
    color: #333;
    font-size: 1em;
    line-height: 1.4;
    scroll-behavior: smooth;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}



*{
    margin:0;
    padding:0;  
}

a{
    cursor: pointer;
    text-decoration: none;
    color: #252525;
}

img{
    width: 100%;
}

.text-C{
    text-align: center!Important;
}



html{
    font-size: 62.5%;
}
body {
    font-size: 1.6rem;
    background: #fff;
    font-family: "Noto Serif JP", serif;
    line-height: 1.6;
    letter-spacing: 2px;
    overflow-x: hidden;
    color:#525252;
}

ul,li{list-style-type: none;}



@media screen and (min-width:768px){
  .sp{
    display:none!Important;
  }
}
@media screen and (max-width:767px){
  .pc{
    display:none!Important;
  }
}


a{
    transition: all .3s;
}
a:hover {
    opacity: .8;
    transition-duration: 1s;
}

h1,h2,h3,h4,h5{
    font-weight: normal;
    line-height: 1.4;
}



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

   ========================================================================== */
@media (min-width: 1201px) {
  .sp_only_header {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .pc_only_header {
    display: none !important;
  }
}


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

.body_inner {
  overflow-x: hidden;
}
.header {
  padding: 15px 25px;
  background-color: #fff;
  box-shadow: 0 -3px 10px 0 #ccc;
  position: relative;
}
@media (max-width: 1200px) {
  .header {
    padding: 10px 15px;
  }
}
.header a {
  color: inherit;
  text-decoration: none;
}
.header a:hover {
  text-decoration: underline;
}
.header .header_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
  .header .logo img {
    width: 130px;
  }

@media (max-width: 1200px) {
  .header .logo img {
    width: 80px;
  }
}
.header.js_header_fixed {
  position: fixed !important;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
@media (max-width: 1200px) {
  .header .header_navi {
    width: 100%;
    max-height: 0;
    max-width: 500px;
    position: absolute;
    top: 100%;
    left:0;
    right: 0;
    border-top: none;
    overflow: hidden;
  }
  .header .header_navi.active {
    max-height: 500px;
    transition: 0.6s;
  }
}
.header .header_navi .navi_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media (max-width: 1200px) {
  .header .header_navi .navi_list {
    display: block;
    background-color: #fff;
  }
}
.header .header_navi .navi_list li {
  display: flex;
  align-items: center;
}
@media (max-width: 1200px) {
  .header .header_navi .navi_list li {
    flex-direction: column;
    margin: 0;
  }
}
.header .header_navi .navi_list li::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: 100%;
  background-color: #333;
}
@media (max-width: 1200px) {
  .header .header_navi .navi_list li::before {
    width: 100%;
    height: 1px;
    margin: 0;
  }
}
.header .header_navi .navi_list li a {
  display: inline-block;
  margin: 3px 20px;
}
@media (max-width: 1200px) {
  .header .header_navi .navi_list li a {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px;
    text-align: center;
  }
}
.header .header_navi .navi_list li .conversion_btn {
  margin: 0 20px;
  padding: 6px 30px;
  text-align: center;
  color: #fff;
  background-color: #e25b59;
}
@media (max-width: 1200px) {
  .header .header_navi .navi_list li .conversion_btn {
    padding: 10px;
  }
}
.header .header_navi .navi_list li .conversion_btn:hover {
  text-decoration: none;
  opacity: 0.7;
}
.header .navi_toggle_btn_wrap {
  display: flex;
  align-items: center;
  position: absolute;
  top: 0;
  right: 15px;
  bottom: 0;
}
.header .navi_toggle_btn {
  position: relative;
  width: 36px;
  height: 30px;
  cursor: pointer;
  transform: scale(0.7);
}
.header .navi_toggle_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  display: inline-block;
  transition: 0.3s;
  box-sizing: border-box;
}
.header .navi_toggle_btn span:nth-of-type(1) {
  top: 0;
}
.header .navi_toggle_btn span:nth-of-type(2) {
  top: 13.5px;
}
.header .navi_toggle_btn span:nth-of-type(3) {
  bottom: 0;
}
.header .navi_toggle_btn.active span:nth-of-type(1) {
  transform: translateY(14px) rotate(-45deg);
}
.header .navi_toggle_btn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .navi_toggle_btn.active span:nth-of-type(3) {
  transform: translateY(-14px) rotate(45deg);
}











/* ==========================================================================
   
    フッター

   ========================================================================== */



.footer-container{
/*    padding-top: 50px;*/
}

.footer-container .container{
    _background: url(../img/share/bg_footer.png) center bottom no-repeat;
    background-size: contain;
    height: auto;
    min-height: 400px;
    padding-bottom: 0;
    max-width: 1280px;
    margin: 8% auto 3%;
}

.footer-in{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.footer-logo{
    width: 280px;
    text-align: center;
    margin:100px auto 30px;
}
.footer-logo img{
    width: 80%;
}
.footer-logo p{
    margin:20px 0;
    font-size: 2rem;
}

.footer-in-menu{
    display: flex;
    justify-content: space-around;
    text-align: center;
    width: 930px;
}

.footer-sns{
    display: flex;
    justify-content: space-around;
}

.footer-in-menu a{
    color: #fff;
}

.footer-in-menu .item1{
    width: 340px;
    background: #fff;
    border-radius: 40px;
    padding:5px 0;
}

.footer-in-menu .item1 img{
    width: 260px;
}
.footer-in-menu .item2,
.footer-in-menu .item3{
    width: 60px;
    margin: 0 6px;
    background: #fff;
    padding: 8px;
    border-radius: 50%;
}

.footer-in-menu .item2 img,
.footer-in-menu .item3 img{
    width: 100%;
}

.footer-in-menu .item4 a{
    padding: 15px;
    /*height: 46px;*/
    /*line-height: 46px;*/
    vertical-align: middle;
    background: #7bbad2;
    color: #f4f2e6;
    width: 320px;
    display: block;
    position: relative;
}

.footer-in-menu .item4 a:after {
    position: absolute;
    top: 24px;
    right: 25px;
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    transition: all .3s;
}


/* ==========================================================================
   フッターメインメニュー
   ========================================================================== */
.footer-menu{
    background: #6d4e1b;
    width: 100%;
    padding:20px;
    font-size: 1.4rem;
}

.footer-menu .container{
    margin: 15px auto;
}

.footer-menu a{
    color: #fff;
}
.footer-menu ul{
    display: flex;
    justify-content: space-between;
}




.footer-info{
    padding:60px 0;
}
.footer-info .container{
    margin: 15px auto;
}
.footer-info .container01{
    display: flex;
    flex-wrap: wrap;
    font-size: 1.3rem;
    letter-spacing: 0;
    justify-content: space-around;
    align-items: flex-end;
    margin-bottom: 30px;
}
.footer-info img{
    width: 100%;
}
.footer-info .item{
    display: flex;
    width: 50%;
    align-items: flex-end;
}

.footer-info .item:nth-child(2){
    justify-content: flex-end;
}

.footer-info .item .foot1{
    width: 220px;
    margin-right: 15px;
}
.footer-info .item .tel{
    width: 280px
}


.footer-info .container02{
    font-size: 1.3rem;
    letter-spacing: 0;
    text-align: center;
    margin: 2% auto;
}

.copy{
    margin-top: 30px;
    text-align: center;
}









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

    .footer-info .container01{
        display: block;
    }
    .footer-info .item{
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
    .footer-info .item .foot1{
        margin: auto;
    }
    .footer-info .item .tel{
        width: 100%;
        font-size: 3rem;
    }


    .footer-info .container02{
        font-size: 1.2rem;
        padding:15px;
        text-align: left;
    }

    .tel .sp img{
        width: 30px;
        margin-right: 10px;
    }


}


/* ==========================================================================
   
    コンテナ

   ========================================================================== */
.container{
  max-width: 1280px;
  margin: auto;
}
.flex-block{
  display:flex;
  flex-wrap:wrap;
}


/* ==========================================================================
   
    FV

   ========================================================================== */

.fv{
  position:relative;
}



.fv picture{
    filter: brightness(0.5);
}



.copy{
  position:absolute;
  top: 5%;
  left: 0;
  right: 0;
  margin: auto;
  width: 53%;
      filter: drop-shadow(3px 3px 3px #000);

}


.icon-box{
  position:absolute;
  left: 0;
  right: 0;
  bottom:-10%;
  margin: auto;
  width: 50%;
  justify-content:space-between;
}

.icon{
  width: 45%;
}




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

  .copy{
    position:absolute;
    top: 10%;
    left: 0;
    right: 0;
    margin: auto;
    width: 90%;
  }
  .icon-box{
    position:absolute;
    left: 0;
    right: 0;
    bottom:5%;
    margin: auto;
    width: 85%;
    justify-content:space-between;
  }


}








/* ==========================================================================
   
    PLAN

   ========================================================================== */



.plan-box{
  margin: 10% auto 6%;
}

.plan-box h2{
  text-align:center;
  font-size:4rem;
  margin: 0 0 4%;
}

.flex-block.plan-box-in{
  justify-content:space-around;
}

.plan-box-in .item{
  width: 46%;
}

.plan-box-in .item-in{
  border:1px solid #ccc;
  padding:30px;
}


.plan-box .photo{
}
.plan-box .no{
  font-size:3.6rem;
  margin: 0 0 20px;
}
.plan-box .no span{
  font-size:2.4rem;
  margin: 0 0 0 3rem;
}

.plan-box .point{
  font-size:1.8rem;
  margin: 0 0 20px;
}

.plan-box .point span{
  display:table;
  border: 1px solid #ccc;
  padding:3px 6px;
  border-radius: 3px;
  margin:0 0 10px;
}


.plan-box ul.area{
  margin: 0 0 20px;
}

.plan-box .price{
  font-size:1.8rem;
}
.plan-box .price-month{
  font-size:3.6rem;
  color:#E25B59;
  font-weight:bold;
}

.plan-box .price-month span{
  font-size:1.8rem;

}

.plan-box .price-month span:nth-child(1){
  border: 1px solid #ccc;
  font-size:1.8rem;
  margin: 0 2rem 0 0;
  padding:3px 6px;
  border-radius: 3px;
  color:#525252;
  font-weight:normal;
}


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

  .plan-box{
    padding: 4% 1%;
  }


  .plan-box-in .item{
    width: 100%;
    margin: 0 15px 30px;
  }
  .plan-box h2{
    font-size:2.4rem;
    margin: 0 0 8%;
    letter-spacing:0;
  }
  .plan-box .no{
    font-size:3.6rem;
    margin: 0 0 10px;
  }
  .plan-box .price-month span:nth-child(1){
    font-size: 1.4rem;
  }
  .plan-box .price-month{
    letter-spacing:0;
  }

}



/* ==========================================================================
   
    見どころPOINT

   ========================================================================== */
.point-box{
  background:#61635B;
  padding:3% 0;
  color:#fff;
}

.point-box h2{
  text-align:center;
  font-size:4rem;
  margin: 0 0 4%;
}

.point-box .item{
  justify-content:space-between;
  font-family: "Noto Sans JP", sans-serif;
  margin:0 0 3%;
background: #fff;
    color: #525252;
    padding: 15px;
}
.point-box .item .item-in:nth-child(1){
  width:40%;
}
.point-box .item .item-in:nth-child(2){
  width:56%;
  padding:30px 0 15px;
}

.point-box .item .item-in h3{
  font-size:3.6rem;
  margin: 0 0 15px;
  color:#d4971a;
  font-weight:500;
}



.point-box .heading {
    display: flex;
    justify-content: start;
    align-items: center;
    color: #333333;
    font-weight: 400;
    font-size:2.4rem;
    color:#eed03a;
    font-family: "M PLUS Rounded 1c";
    margin: 0 0 15px;

}

.point-box .heading::before,
.point-box .heading::after {
    width: 3px;
    height: 30px;
    background-color: #eed03a;
    content: '';
}

.point-box .heading::before {
    transform: rotate(-35deg);
    margin-right: 20px;
}

.point-box .heading::after {
    transform: rotate(35deg);
    margin-left: 20px;
}




.slick-prev
{
    left: 15px;
    z-index:10;
        top: 45%;
}
.slick-next
{
    right: 15px;
    z-index:10;
        top: 45%;
}



.slick-prev:before{
    content: "\f053";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 700;
        font-size: 50px;
}
.slick-next:before{
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    font-weight: 700;
        font-size: 50px;
}





@media screen and (max-width:767px){
  .point-box .item{
    margin: 0 0 6%;
  }
  .point-box .item .item-in:nth-child(1),
  .point-box .item .item-in:nth-child(2){
    width:100%;
  }
  .point-box .heading {
    margin: 0 0 5px;
  }

  .point-box .item .item-in h3 {
    font-size: 2.8rem;
  }

  .point-box h2{
    font-size:3.2rem;
    margin: 0 0 4%;
  }






}





















/* ==========================================================================
   
    周辺環境

   ========================================================================== */
.location-box{
  padding:6% 0;
  text-align:center;
}

.location-box h2{
  font-size:4rem;
  margin: 0 0 2%;
}

.location-box h3{
  font-size:2.8rem;
  margin: 0 0 4%;
  color:#d4971a;
  font-weight:500;
}




.location-box .flex-block{
  justify-content:space-between;
}
.location-box .flex-block .item{
  width: calc((100% / 3) - 15px);
  margin-bottom:30px;
}
.location-box .flex-block .item img{
  margin:0 0 10px;
}

/*.location-box .flex-block::after{
  content:"";
  display: block;
  width: calc((100% / 3) - 15px);
}

*/



@media screen and (max-width:767px){
  .location-box{
    padding: 6% 4%;
  }
  
  .location-box h2 {
    font-size: 3.2rem;
    margin: 0 0 4%;
  }
  .location-box h3 {
    font-size: 2.1rem;
  }
  .location-box .flex-block .item{
    width: calc((100% / 2) - 8px);
  }

}






/* ==========================================================================
   
    動画で見るこだわり解説

   ========================================================================== */
.youtube-box{
  background:#61635B;
  padding:4% 0 6%;
  text-align:center;
  color:#fff;
}

.youtube-box h2{
  font-size:4rem;
  margin: 0 0 6%;
  font-weight:bold;
}

.youtube-box .container-in{
  width:70%;
  margin:auto;
}


.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}



@media screen and (max-width:767px){
  .youtube-box {
    padding: 15% 0 15%;
  }
  .youtube-box h2{
    font-size: 3.2rem;
  }
  .youtube-box .container-in {
    width: 90%;
  }
}


/* ==========================================================================
   
    この土地だから生まれた

   ========================================================================== */



.qa-box{
  background:#f2f2f2;
  padding:10% 0;
  text-align:center;

}

.qa-box h2{
  font-size:4rem;
  margin: 0 0 2%;
  font-weight:bold;
}

.qa-box h3{
  font-size:2.8rem;
  margin: 0 0 4%;
  color:#d4971a;
  font-weight:500;
}

.qa-box .flex-block{
  justify-content:space-between;
}
.qa-box .flex-block dl{
  width: 48%;
  background:#fff;
  border-radius:6px;
  padding:3%;
  outline : 2px solid #8ab9cf;
  outline-offset : -10px;
  background : #fff;
  box-shadow: 0 0 6px rgba(0,0,0,0.3);
}

.qa-box .flex-block dl dt{
  font-size:2.4rem;
  margin: 0 0 2rem;
}

.qa-box .flex-block dl dd{
  text-align:left;
}



@media screen and (max-width:767px){
  .qa-box{
    padding: 8% 4%;

  }

  .qa-box h2{
    font-size:3rem;
    margin: 0 0 4%;
    font-weight:bold;
  }
  .qa-box h3 {
    font-size: 2.1rem;
    margin: 0 0 10%;
  }
  .qa-box .flex-block dl {
    width:100%;
    margin: 0 0 10%;
        padding: 10%;
  }




}



/* ==========================================================================
   
    天井高

   ========================================================================== */



.equipment-box{
  position:relative;
    padding:4% 0;
}


.equipment-box .copy{
  top: 20%;
  width: 66%;
}


.equipment-box .equipment-06{
  position:absolute;
  width: 40%;
  bottom: 0%;
  right: -5%;
}



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

  .equipment-box .copy{
      width: 96%;
      top: 0;
  }
  .equipment-box .equipment-06 {
      position: static;
      width: 90%;
      margin:15px auto;
    }


}




/* ==========================================================================
   
    構造

   ========================================================================== */

.structure-box{
  justify-content:space-between;
  margin: 3% auto;

}


.structure-img,
.structure-text{
  width:48%;
}

.structure-text dt{
  font-size:3.6rem;
}
.structure-text dd{
  font-size:2.4rem;
}


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

  .structure-box{
    padding-bottom:10%;
  }
  .structure-img,
  .structure-text{
    width:100%;
    padding: 8% 4% 0;
  }
  .structure-text dt {
    font-size: 2.4rem;
    margin-bottom:20px;
  }
  .structure-text dd {
    font-size: 1.6rem;

  }

}


/* ==========================================================================
   
    お問い合わせ

   ========================================================================== */
.contact-box{
    margin: 3% auto;
    background:#52B164;
    color:#fff;
    padding:6% 0;
    text-align:center;
      font-family: "Noto Sans JP", sans-serif;
  }

.contact-box h2{
  font-size:4rem;
  margin: 0 0 2%;
  font-weight:bold;
}

.contact-box h3{
  font-size:2.8rem;
  margin: 0 0 4%;
  font-weight:500;
}





.button_2 {
  display: inline-block;
  width: 100%;
  max-width: 600px;
  padding: 0.85em 1.5em;
  font-size: 3rem;
  text-align: center;
  text-decoration: none;
  color: #fff;
  background-color: #e25b59;
}
@media (max-width: 767px) {
  .button_2 {
    max-width: 400px;
    font-size: 1.8rem;
  }
}
.button_2.btn_arrow::after {
  content: "▶";
  display: inline-block;
  margin-left: 0.6em;
}
.button_2:hover {
  color: #fff;
}




.bubble {
  position: relative;
  display: inline-block;
  margin-bottom: 30px;
  padding: 24px 25px;
  border: 5px solid #171616;
  border-radius: 9999px;
  background-color: #ffffff;
  text-align: center;
  font-size: 21px;
  font-weight: 600;
  line-height: 1.5;
  color: #494949;
}

.bubble::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 30px 20px 0 20px;
  border-color: #171616 transparent transparent;
  translate: -50% 100%;
}

.bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  border-style: solid;
  border-width: 21px 14px 0 14px;
  border-color: #ffffff transparent transparent;
  translate: -50% 100%;
}


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

  .contact-box{
      padding: 10% 4%;
  }
  .contact-box h2 {
    font-size: 3.2rem;
    margin-bottom:15px;
  }
  .contact-box h3 {
    font-size: 2.1rem;
    margin-bottom:30px;
  }

}

