@charset "utf-8";

/**
 *
 * trip
 *
 */

/*--------------------------------------------------------------------------
 all-trip
--------------------------------------------------------------------------*/
#all-trip {
 padding: 150px 0 50px;
 background: #F6F6F6;
 position: relative;
}
#all-trip .en-bg {
 text-align: center;
 overflow: hidden;
 position: absolute;
 top: 0;
 left: 50%;
 -webkit-transform: translateX(-50%);
 -ms-transform: translateX(-50%);
 transform: translateX(-50%);
}
#all-trip .en-bg span {
 letter-spacing: .05em;
 line-height: 1.1;
 color: #FFF;
 font-size: 13vw;
 font-family: 'EB Garamond', serif;
 font-weight: 400;
}
#all-trip .search-wrap {}
#all-trip .search-wrap .search {
 display: flex;
 -webkit-align-items: center;
         align-items: center;
 position: absolute;
 top: -177px;
}
#all-trip .search-wrap .search .search-tit {
 padding: 0 1.5em;
 line-height: 58px;
 color: #FFF;
 font-size: 16px;
 background: #262626;
}
#all-trip .search-wrap .search #select_box {
 width: 300px;
 padding: 0 1.5em;
 line-height: 58px;
 font-size: 16px;
 box-shadow: 0 0 0 1px #111 inset;
 background: #FFF;
 cursor: pointer;
 position: relative;
}
#all-trip .search-wrap .search::after {
 content: "";
 display: block;
 width: 10px;
 height: 10px;
 border-top: 1px solid #111;
 border-right: 1px solid #111;
 position: absolute;
 right: 25px;
 top: 22px;
 -webkit-transform: rotate(135deg);
 transform: rotate(135deg);
 pointer-events: none;
}
#all-trip .trip-list {
 display: flex;
 -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
         flex-wrap: wrap;
 -webkit-justify-content: space-between;
         justify-content: space-between;
}
#all-trip .trip-list::before {
 content: "";
 display: block;
 width: 28.5714%;
 order: 1;
}
#all-trip .trip-list::after {
 content: "";
 display: block;
 width: 28.5714%;
}
#all-trip .trip-list li {
 width: 28.5714%;
 margin-bottom: 100px;
}
#all-trip .trip-list li a { display: block;}
#all-trip .trip-list li a figure { overflow: hidden;}
#all-trip .trip-list li a  .txt-wrap {
 padding-top: 30px;
 position: relative;
}
#all-trip .trip-list li a  .txt-wrap .label-area {
 position: absolute;
 top: -54px;
 left: -18px;
}
#all-trip .trip-list li a  .txt-wrap .fac-name {
 line-height: 1.40625;
 color: #111;
 font-size: 18px;
 font-weight: 600;
}
#all-trip .trip-list li a  .txt-wrap .trip-copy {
 margin-top: 1.25em;
 text-align: justify;
 line-height: 1.9;
 color: #111;
 font-weight: 400;
}
#all-trip .trip-list li a  .txt-wrap .trip-copy span {
 padding-bottom: .25em;
 background: linear-gradient(transparent calc(100% - 1px), #111 0);
}

@media screen and (max-width: 1200px) {
 #all-trip { padding: 100px 0 50px;}
 #all-trip .search-wrap .search { top: -124px;}
 #all-trip .search-wrap .search .search-tit {
  font-size: 14px;
  line-height: 48px;
 }
 #all-trip .search-wrap .search #select_box {
  width: 240px;
  line-height: 48px;
  font-size: 14px;
 }
 #all-trip .search-wrap .search::after {
  width: 8px;
  height: 8px;
  right: 19px;
  top: 18px;
 }
 #all-trip .trip-list li { margin-bottom: 70px;}
 #all-trip .trip-list li a  .txt-wrap { padding-top: 25px;}
 #all-trip .trip-list li a  .txt-wrap .label-area {
  top: -45px;
  left: -15px;
 }
 #all-trip .trip-list li a  .txt-wrap .fac-name { font-size: 16px;}
 #all-trip .trip-list li a  .txt-wrap .trip-copy {
  margin-top: 1.5em;
  text-align: justify;
  color: #111;
  font-weight: 400;
 }
}
@media screen and (max-width: 768px) {
 #all-trip { padding: 70px 0 45px;}
 #all-trip .search-wrap .search {
  width: 100%;
  top: -94px;
 }
 #all-trip .search-wrap .search .search-tit {
  width: 6em;
  padding: 0;
  text-align: center;
 }
 #all-trip .search-wrap .search #select_box {
  width : -webkit-calc(100% - 6em);
  width : calc(100% - 6em);
  padding: 0 1em;
  -webkit-flex-shrink: 2;
           flex-shrink: 2;
 }
 #all-trip .en-bg { top: 32px;}
 #all-trip .en-bg span { font-size: 14vw;}
 #all-trip .trip-list {
  width: 65.333vw;
  margin: 0 auto;
  display: block;
 }
 #all-trip .trip-list::before,
 #all-trip .trip-list::after { content: none;}
 #all-trip .trip-list li {
  width: 100%;
  margin-bottom: 45px;
 }
 #all-trip .trip-list li a  .txt-wrap { padding-top: 20px;}
 #all-trip .trip-list li a  .txt-wrap .label-area {
  top: -36px;
  left: -12px;
 }
 #all-trip .trip-list li a  .txt-wrap .fac-name { font-size: 14px;}
 #all-trip .trip-list li a  .txt-wrap .trip-copy { font-size: 12px;}
}

/*--------------------------------------------------------------------------
 hero
--------------------------------------------------------------------------*/
#hero {
 width: 100%;
 height: 100vh;
 min-height: 768px;
 display: flex;
 position: relative;
 -webkit-align-items: center;
         align-items: center;
}
#hero::before {
content: "";
width: 60%;
height: 100%;
background: #F6F6F6;
position: absolute;
top: 0;
left: 0;
z-index: -1;
}
#hero .swiper {
 width: 45vw;
 height: 70vh;
 line-height: 0;
 position: absolute;
 top: 50%;
 right: 7.8125vw;
 -webkit-transform: translateY(-50%);
 -ms-transform: translateY(-50%);
 transform: translateY(-50%);
}
#hero .swiper img{
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translateY(-50%) translateX(-50%);
 -ms-transform: translateY(-50%) translateX(-50%);
 transform: translateY(-50%) translateX(-50%);
}


#hero .txt-wrap {}
#hero .txt-wrap .fac-name {
 letter-spacing: .16em;
 line-height: 1.40625;
 color: #111;
 font-size: 34px;
 font-weight: 600;
}

#hero .txt-wrap .trip-copy {
 letter-spacing: .1em;
 line-height: 2;
 font-size: 24px;
 font-weight: 600;
 position: relative;
}
#hero .txt-wrap .trip-copy span {
 display: inline;
 position: relative;
 left: .8em;
 padding: .6em 0;
 color: #111;
 background: #FFF;
 filter: drop-shadow(-.8em 0 0 #FFF) drop-shadow(.8em 0 0 #FFF);
}

@media screen and (max-width: 1200px) {
 #hero { min-height: 614px;}
 #hero .swiper {
  width: 50vw;
  height: 77.777vh;
  right: 0;
 }
 #hero .txt-wrap .fac-name { font-size: 26px;}
 #hero .txt-wrap .trip-copy { font-size: 18px;}
}
@media screen and (max-width: 768px) {
 #hero {
  padding: 50px 0 70px;
  height: auto;
  min-height: initial;
  display: block;
 }
 #hero::before { width: 100%;}
 #hero .swiper {
  width: 89.3333%;
  height: auto;
  margin: 0 0 0 auto;
  top: 50px;
  right: 0;
  z-index: -1;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
 }
 #hero .cover-image img {
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
 }
 #hero .txt-wrap {
  width: 100%;
  padding-top: 78.166375vw;
  position: relative;
 }
 #hero .txt-wrap .label-area {
  position: absolute;
  right: 0;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
 }
 #hero .txt-wrap .fac-name {
  width: 78.666%;
  margin-top: 35px;
  margin-left: 10.667%;
  font-size: 20px;
 }
 #hero .txt-wrap .trip-tag {
  width: 78.666%;
  margin: 1em auto 0;
 }
 #hero .txt-wrap .trip-copy {
  margin-top: 0;
  margin-left: -19px;
  font-size: 17px;
  font-feature-settings : normal;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: absolute;
  top: -19px;
  left: 10.667%;
 }
 #hero .txt-wrap .trip-copy span {
  left: auto;
  padding: .6em 2px;
  display: inline-block;
  filter: none;
 }
 #hero .txt-wrap .trip-copy span::before {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-color: #FFF;
  z-index: -1;
 }
 .c-fade-swiper-pagination {
  display: none;
}
}
.c-fade-swiper-pagination {
position: absolute;
bottom: 10%!important;
left: 85%!important;
}
/*--------------------------------------------------------------------------
 overview
---------------------------------------------------------------------------*/
.overview {
 margin-top: 150px;
 display: flex;
 -webkit-align-items: center;
         align-items: center;
}
.overview {
 margin-top: 80px;}
.overview.start {
 -webkit-align-items: flex-start;
         align-items: flex-start;
}
.overview .fac-image {
 width: 34.616%;
 line-height: 0;
 overflow: hidden;
}
.overview.overview2 .fac-image{
 width: 80%;
}
.overview .txt-wrap {
 width: 65%;
 padding: 0 8% 0 6%;
 position: relative;
}
.overview.overview2 .txt-wrap{
   padding-left: 0;     
}
.overview .en-tit {
 letter-spacing: .2em;
 line-height: 1;
 font-size: 20px;
 font-family: 'EB Garamond', serif;
 font-weight: 400;
 font-feature-settings : normal;
 writing-mode: vertical-rl;
 position: absolute;
 top: 0;
 right: 0;
}
.overview .txt-wrap h2 {
display: block;
max-width: 150px;
margin: 0 auto;
}
.overview.overview2 .txt-wrap h2{
max-width: 100px;
}
.overview .txt-wrap h2 + p {
 margin-top: 2em;
 text-align: justify;
 line-height: 2.2;
}

@media screen and (max-width: 1200px) {
 .overview {
  margin-top: 120px;
  -webkit-align-items: flex-start;
          align-items: flex-start;
 }
 .overview .txt-wrap::before {
  content: "";
  width: 50px;
  height: 5px;
  margin-bottom: 30px;
 }
 .overview .en-tit { font-size: 16px;}
 .overview .txt-wrap h2 { font-size: 17px;}
 .overview .txt-wrap h2 + p { line-height: 2;}
}
@media screen and (max-width: 768px) {
 .overview {
  margin-top: 70px;
  display: block;
  position: relative;
 }
.overview .fac-image {
 width: 66.666%;
 margin: 0 auto;
}
 .overview .txt-wrap {
  width: 100%;
  padding: 0;
  margin-top: 40px;
 }
 .overview .txt-wrap::before { content: none;}
 .overview .en-tit { font-size: 14px;}
 .overview .txt-wrap h2 {
  font-size: 16px;
  position: relative;
 }
 .overview .txt-wrap h2::after {
  display: none;
 }
 .overview .txt-wrap h2 + p { margin-top: 10px;}
.overview.overview2 .fac-image{
 width: 100%;
 margin-top: 30px;
}
}
/*--------------------------------------------------------------------------
 movie
---------------------------------------------------------------------------*/
#movie {
 margin-top: 120px;
 padding-top: 120px;
 position: relative;
}
#movie .movie {
 width: 60%;
 margin: 60px auto 0;
}
#movie .movie a {
 display: block;
 position: relative;
 line-height: 0;
 cursor: pointer;
}
#movie .movie a video {
 width: 100%;
 line-height: 0;
}
#movie .movie a figure { position: relative;}
#movie .movie a figure::before {
 content: "";
 width: 100%;
 height: 100%;
 background: rgba(0,0,0,.2);
 position: absolute;
 top: 0;
 right: 0;
 -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
     -ms-transition: all .3s ease-in-out;
      -o-transition: all .3s ease-in-out;
         transition: all .3s ease-in-out;
}
#movie .movie a:hover figure::before { background: rgba(0,0,0,0);}
#movie .movie a .btn {
 margin-top: 35px;
 text-align: center;
 line-height: 1;
 color: #FFF;
 position: absolute;
 top: 50%;
 left: 50%;
 z-index: 1;
 -webkit-transform: translateY(-64%) translateX(-50%);
 -ms-transform: translateY(-64%) translateX(-50%);
 transform: translateY(-64%) translateX(-50%);
}
#movie .movie a .btn span {
 width: 150px;
 display: block;
 line-height: 1;
}
#movie .movie a .btn p {
 padding-top: 1.5em;
 font-size: 14px;
 font-family: 'EB Garamond', serif;
 font-weight: 400;
}

@media screen and (max-width: 1200px){
  #movie {
  margin-top: 90px;
  padding-top: 90px;
 }
  #movie .movie a .btn { margin-top: 30px;}
  #movie .movie a .btn span { width: 120px;}
  #movie .movie a .btn p { font-size: 12px;}
}

@media screen and (max-width: 768px) {
 #movie {
  margin-top: 70px;
  padding-top: 70px;
 }
 #movie .movie {
  width: 100%;
  margin-top: 30px;
  position: relative;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
 }
 #movie .movie a .btn { margin-top: 25px;}
 #movie .movie a .btn span { width: 90px;}
 #movie .movie a .btn p { font-size: 10px;}
 }
/*--------------------------------------------------------------------------
 facility / location
---------------------------------------------------------------------------*/
#facility {
 margin-top: 120px;
 padding-top: 120px;
 position: relative;
}
#location,
#gallery {
 padding: 120px 0;
 position: relative;
}
#facility::before,
#location::before,
#gallery::before {
 content: "";
 width: 85%;
 height: 100%;
 background: #F6F6F6;
 position: absolute;
 top: 0;
 right: 0;
 z-index: -1;
}
.swiper-container {
 padding-bottom: 56px;
 position: relative;
}
.swiper-container .swiper-slide {
 width: 37.55%;
 max-width: 720px;
 margin: 0 3.125%;
}
.swiper-container .swiper-slide p {
 margin-top: 30px;
 line-height: 1.6;
}
.swiper-container .swiper-slide p i {
 letter-spacing: .06em;
 line-height: 1;
 font-family: 'EB Garamond', serif;
 font-size: 20px;
 font-weight: 400;
 font-style: normal;
}
.swiper-container .swiper-slide p span {
 padding-left: .75em;
 line-height: 1.3;
 font-size: 14px;
}
.swiper-container .swiper-slide p span::before {
 content: "- ";
 line-height: 1.3;
 font-size: 14px;
}
.swiper-container .controll {
 width: 445px;
 margin: 60px auto 0;
 display: flex;
 -webkit-align-items: center;
         align-items: center;
 -webkit-justify-content: center;
         justify-content: center;
 position: relative;
}
.swiper-container .controll .swiper-button-prev,
.swiper-container .controll .swiper-button-next {
 width: 56px;
 height: 56px;
 margin-top: 0;
 background-image: none;
 position: relative;
 left: auto;
 top: auto;
 border: 1px solid rgba( 17, 17, 17, .5);
 -webkit-border-radius: 50%;
         border-radius: 50%;
}
.swiper-container .controll .swiper-button-prev {
 position: absolute;
 top: 0;
 left: 0;
}
.swiper-container .controll .swiper-button-prev::before {
 content: "";
 display: block;
 width: 10px;
 height: 10px;
 border-top: 1px solid #111;
 border-right: 1px solid #111;
 position: absolute;
 left: 25px;
 top: 22px;
 -webkit-transform: rotate(-135deg);
 transform: rotate(-135deg);
}
.swiper-container .controll .swiper-button-next {
 position: absolute;
 top: 0;
 right: 0;
}
.swiper-container .controll .swiper-button-next::before {
 content: "";
 display: block;
 width: 10px;
 height: 10px;
 border-top: 1px solid #111;
 border-right: 1px solid #111;
 position: absolute;
 right: 25px;
 top: 22px;
 -webkit-transform: rotate(45deg);
 transform: rotate(45deg);
}
.swiper-container .controll .swiper-button-prev::after,
.swiper-container .controll .swiper-button-next::after { content: none;}
.swiper-container .controll .swiper-pagination-fraction {
 width: auto;
 letter-spacing: .06em;
 line-height: 56px;
 font-family: 'EB Garamond', serif;
 font-size: 20px;
 font-weight: 400;
 font-style: normal;
 position: relative;
 left: auto;
 bottom: auto;
}

@media screen and (max-width: 1200px) {
 #facility {
  margin-top: 90px;
  padding-top: 90px;
 }
 #location,
 #gallery { padding: 90px 0;}
 .swiper-container { padding-bottom: 45px;}
 .swiper-container .swiper-slide { width: 50%;}
 .swiper-container .swiper-slide p { margin-top: 20px;}
 .swiper-container .swiper-slide p i { font-size: 16px;}
 .swiper-container .swiper-slide p span { font-size: 12px;}
 .swiper-container .swiper-slide p span::before { font-size: 12px;}
 .swiper-container .controll {
  width: 356px;
  margin: 45px auto 0;
 }
 .swiper-container .controll .swiper-button-prev,
 .swiper-container .controll .swiper-button-next {
  width: 45px;
  height: 45px;
 }
 .swiper-container .controll .swiper-button-prev::before {
  width: 8px;
  height: 8px;
  left: 19px;
  top: 18px;
 }
 .swiper-container .controll .swiper-button-next::before {
  width: 8px;
  height: 8px;
  right: 19px;
  top: 18px;
 }
 .swiper-container .controll .swiper-pagination-fraction {
  line-height: 45px;
  font-size: 16px;
 }
}
@media screen and (max-width: 768px) {
 #facility {
  margin-top: 70px;
  padding-top: 70px;
 }
 #location,
 #gallery { padding: 70px 0;}
 #facility::before,
 #location::before,
 #gallery::before { width: 75%;}
 .swiper-container { padding-bottom: 36px;}
 .swiper-container .swiper-slide {
  width: 66.666%;
  margin: 0 5.333%;
 }
 .swiper-container .swiper-slide p { margin-top: 15px;}
 .swiper-container .controll {
  width: 75%;
  margin: 35px auto 0;
 }
 .swiper-container .controll .swiper-button-prev,
 .swiper-container .controll .swiper-button-next {
  width: 36px;
  height: 36px;
 }
 .swiper-container .controll .swiper-button-prev::before {
  width: 5px;
  height: 5px;
  left: 15px;
  top: 15px;
 }
 .swiper-container .controll .swiper-button-next::before {
  width: 5px;
  height: 5px;
  right: 15px;
  top: 15px;
 }
 .swiper-container .controll .swiper-pagination-fraction {
  line-height: 36px;
  font-size: 16px;
 }
}

/*--------------------------------------------------------------------------
 gallery
---------------------------------------------------------------------------*/
#gallery {}
#gallery .lg {
 padding: 0;
 display: flex;
 -webkit-justify-content: space-between;
         justify-content: space-between;
 -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
         flex-wrap: wrap;
}
#gallery .lg div { width: 16.666%;}
#gallery .lg div figure {
 overflow: hidden;
 cursor: pointer;
}
#gallery .lg div figure img {
 -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
     -ms-transition: all 0.4s ease;
      -o-transition: all 0.4s ease;
         transition: all 0.4s ease;
}
#gallery .lg div figure:hover img {
 opacity: 0.8;
 -webkit-transform: scale(1.05);
 -moz-transform: scale(1.05);
 -o-transform: scale(1.05);
 -ms-transform: scale(1.05);
 transform: scale(1.05);
}

@media screen and (max-width: 1200px) {
 #gallery .lg { width: 100vw;}
}

@media screen and (max-width: 768px) {
 #gallery .lg { padding: 0;}
 #gallery .lg div { width: 33.333%;}
}


/*--------------------------------------------------------------------------
 blog
---------------------------------------------------------------------------*/
#blog{}
#blog ul {
margin-top: 60px;
display: flex;
justify-content: space-between;
text-align: center;
}
#blog ul li{
flex: 0 1 20%;
}
#blog ul li .txt-wrap{
margin: 0 auto;
margin-top: 20px;
width: 95%;
text-align: left;
}
#blog ul li .txt-wrap .date{
display: none;
}
#blog ul li figure {
text-align: center;
}
#blog ul li img{
width: 400px;
height: 225px;
object-fit: cover;
margin: 0 auto;
}
#blog ul li a figure{
overflow: hidden;
width: 100%;
vertical-align: middle;
display: block;
}

#blog ul li a:hover{
opacity: 1.0;
filter: alpha(opacity=100);
margin: 0;
padding: 0;
font-size: 100%;
vertical-align: middle;
background: transparent;
text-decoration: none;
outline: none;
}
.blog .square img {
width: 400px;
height: 225px;
object-fit: cover;
margin: 0 auto;
}
#blog .blog-list > li a img:hover {
transform: scale(1.07);
transition-duration: 0.6s;
}
@media screen and (max-width: 768px) {
#blog {
margin-bottom: 40px;
}
#blog ul {
display: inline;
}
#blog ul li{
margin-top: 40px;
}
#blog ul li .txt-wrap {
max-width: 400px;
}
}
/*--------------------------------------------------------------------------
 plan
---------------------------------------------------------------------------*/
#plan { margin-top: 120px;}
#plan .note{
text-align: center;
padding-top: 30px;
font-size: 12px;
}
.character {
padding-top: 50px;
}
#plan ul{margin-top: 60px;}
}
#plan .inner .plan-list li {
 width: 48.3333%;
 margin-left: 3.333%;
 display: inline-block; *display: inline; *zoom: 1;
 vertical-align: top;
}
#plan .inner .plan-list li a {
 padding: 35px 0 30px;
 display: block;
 background: #FFF;
 border: 1px solid #231815;
 cursor: pointer;
}
#plan .inner .plan-list li a h3 {
 text-align: center;
 letter-spacing: 0.1em;
 line-height: 1;
 font-family: 'EB Garamond', serif;
 font-weight: 400;
 font-size: 24px;
}
#plan .inner .plan-list li a h3 b {
display: block;
font-family: 'Marcellus', sans-serif;
font-size: 12px;
font-weight: 600;
margin-top: 10px;
width: 90px;
background: #111;
color: #fff;
padding: 6px 0;
border-radius: 29px;
margin: 0 auto;
margin-top: 20px;

}
#plan .inner .plan-list li a h3 span {
 margin-top: 0.5em;
 display: block;
 font-size: 12px;
 font-weight: normal;
 padding-top: 5px;
}
#plan .inner .plan-list li a .num {
 padding: 30px 0;
 position: relative;
}
#plan .inner .plan-list li a .num::before {
 content: "";
 width: 94%;
 height: 1px;
 display: block;
 border-bottom:dashed 1px #231815;
 position: absolute;
 top: 50%;
 left: 3%;
}
#plan .inner .plan-list li a .num span {
 width: 40px;
 display: block;
 line-height: 0;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translateY(-50%) translateX(-50%);
 -ms-transform: translateY(-50%) translateX(-50%);
 transform: translateY(-50%) translateX(-50%);
}
#plan .inner .plan-list li a dl { text-align: center;}
#plan .inner .plan-list li a dl dt {
line-height: 1.66;
letter-spacing: 0.06em;
font-size: 14px;
}
#plan .inner .plan-list li a dl .pht {
 padding-top: 30px;
 line-height: 0;
}
#plan .inner .plan-list li a dl .price .plantext {
font-size: 20px;
padding-bottom: 13px;
}
#plan .inner .plan-list li a dl .price .plantext small{
display: inline!important;
}
#plan .inner .plan-list li a dl .price {
margin: 30px auto 0;
font-family: 'EB Garamond', serif;
font-size: 40px;
line-height: 1;
}
#plan .inner .plan-list li a dl .price b {
font-weight: normal;
font-size: 16px;
}
#plan .inner .plan-list li a dl .price small {
display: block;
font-size: 16px;
padding: 10px 0;
}
#plan .inner .plan-list li a dl .price span{
display: block;
font-size: 12px;
padding-bottom: 30px;
}
#plan .inner .plan-list li a button {
 width: 160px;
 margin: 20px auto 0;
 display: block;
}
#plan .inner .plan-list li a button span {
 display: block;
 letter-spacing: 0.1em;
 line-height: 30px;
 font-family: 'Catamaran', sans-serif;
 font-size: 13px;
 font-weight: 300;
 border: 1px solid #808080;
 -webkit-border-radius: 15px;
         border-radius: 15px;
 position: relative;
 background: #fff;
 -webkit-transition: all 0.4s;
    -moz-transition: all 0.4s;
     -ms-transition: all 0.4s;
      -o-transition: all 0.4s;
         transition: all 0.4s;
}
#plan .inner .plan-list li a button span::before {
 content: "";
 width: 11px;
 height: 11px;
 display: block;
 border-left: 1px solid #808080;
 position: absolute;
 top: 9px;
 left: 15px;
}
#plan .inner .plan-list li a button span::after {
 content: "";
 width: 11px;
 height: 11px;
 display: block;
 border-top: 1px solid #808080;
 position: absolute;
 top: 14px;
 left: 10px;
}
#plan .inner .plan-list li a:hover button span {
 color: #FFF;
 background: #231815;
 border-color: #231815;
}
#plan .inner .plan-list li a:hover button span::before,
#plan .inner .plan-list li a:hover button span::after { border-color: #fff;}

.plan.remodal {
 max-width: 1200px;
 padding: 60px;
 background: #fff;
}
.plan.remodal h3 {
text-align: center;
letter-spacing: 0.1em;
line-height: 1;
font-family: 'EB Garamond', serif;
font-weight: 400;
font-size: 32px;
}
.plan.remodal h3 b {
display: block;
font-family: 'Marcellus', sans-serif;
font-size: 12px;
font-weight: 600;
width: 90px;
background: #111;
color: #fff;
padding: 6px 0;
border-radius: 29px;
margin: 0 auto;
margin-top: 20px;
}
.plan.remodal h3 span {
 margin-top: 0.5em;
 display: block;
 font-size: 12px;
 font-weight: normal;
}
.plan.remodal .num {
 padding: 40px 0 45px;
 position: relative;
}
.plan.remodal .num::before {
 content: "";
 width: 100%;
 height: 1px;
 display: block;
 border-bottom:dashed 1px #231815;
 position: absolute;
 top: 50%;
 left: 0;
}
.plan.remodal p {
 font-size: 14px;
}
.plan.remodal .plantext{
font-size: 24px;
padding-bottom: 13px;
}
.plan.remodal .plantext small{
display: inline!important;
}
.plan.remodal .num span {
 width: 40px;
 display: block;
 position: absolute;
 top: 50%;
 left: 50%;
 -webkit-transform: translateY(-50%) translateX(-50%);
 -ms-transform: translateY(-50%) translateX(-50%);
 transform: translateY(-50%) translateX(-50%);
}
.plan.remodal dl { text-align: center;}
.plan.remodal dl dt {
 line-height: 1.33;
 letter-spacing: 0.06em;
 font-size: 16px;
 font-weight: bold;
}
.plan.remodal dl .pht {
 padding-top: 30px;
 line-height: 0;
}
.plan.remodal dl + p {
 margin-top: 40px;
 line-height: 2;
 font-size: 14px;
}
.plan.remodal .attention {
 margin-top: 40px;
 font-size: 16px;
}
.plan.remodal .attention b {
 padding: 0.5em;
 border-top: 1px solid #231815;
 border-bottom: 1px solid #231815;
}
.plan.remodal .price {
margin: 30px auto 0;
font-family: 'EB Garamond', serif;
font-size: 40px;
line-height: 1;
}
.plan.remodal .price b {
font-weight: normal;
font-size: 16px;
}
.plan.remodal .price small {
display: block;
font-size: 16px;
padding: 10px 0;
}
.plan.remodal .price span {
display: block;
font-size: 12px;
padding-bottom: 20px;
line-height: 1.5;
}
.plan.remodal .detail-list {
 max-width: 1000px;
 padding-top: 20px;
 margin: 0 auto;
 letter-spacing: 0;
 font-size: 0;
}
.plan.remodal .detail-list li {
width: 18.8%;
height: 188px;
margin: 0 0 1.5% 1.5%;
padding: 25px 0 0;
float: left;
text-align: center;
color: #333;
border-radius: 10px;
border: 1px solid #e2e2e2;
}
.plan.remodal .detail-list li:first-child,
.plan.remodal .detail-list li:nth-child(6),.plan.remodal .detail-list li:nth-child(11),.plan.remodal .detail-list li:nth-child(16) {
 margin-left: 0;
}
.plan.remodal .detail-list li figure {
width: 70px;
margin: 0 auto;
background: #222;
}
.plan.remodal .detail-list li figure img {
 width: 100%;
 height: auto;
}
.plan.remodal .detail-list li dl { margin-top: 10px;}
.plan.remodal .detail-list li dl dt {
 letter-spacing: 0.1em;
 font-size: 14px;
 font-weight: bold;
}
.plan.remodal .detail-list li dl dd {
 margin-top: 7px;
 letter-spacing: 0.1em;
 line-height: 1.66;
 font-size: 11px;
}

.plan.remodal .option {
 margin-top: 60px;
 padding: 30px 40px;
 border: 1px solid #dfdfdf;
}
.plan.remodal .option h4 {
 margin-bottom: 10px;
 letter-spacing: 0.1em;
 text-align: center;
 font-family: 'Catamaran', sans-serif;
 font-size: 18px;
 font-weight: 800;
}
.plan.remodal .option ul {}
.plan.remodal .option ul li {
 text-align: left;
 line-height: 2.5;
 font-size: 14px;
}
.plan.remodal .option ul li::before, .plan.remodal .option ul li::after { content: " "; display: table;}
.plan.remodal .option ul li::after { clear: both;}
.plan.remodal .option ul li { *zoom: 1;}
.plan.remodal .option .opBox ul li {
 width: 48%;
 background: url(../img/dotline.png) 50% 50% repeat-x;
 -webkit-background-size: 4px 1px;
      -o-background-size: 4px 1px;
         background-size: 4px 1px;
}
.plan.remodal .option .opBox ul li.left { float: left;}
.plan.remodal .option .opBox ul li.right { float: right;}
.plan.remodal .option ul li .op_left {
 float: left;
 text-align: left;
 padding-right: 5px;
 line-height: 2.5;
 font-size: 14px;
 background: #FFF;
}
.plan.remodal .option ul li .op_right{
 float: right;
 text-align: right;
 padding-left:5px;
 line-height: 2.5;
 font-size: 14px;
 background: #FFF;
}
.plan.remodal .att {
  text-align: left;
  font-size: 1.3rem;
  padding-left: 5%;
  padding-top: 20px;
}
.remodal .close {
    width: 90%!important;
    max-width: 280px!important;
    height: 50px!important;
    margin: 60px auto 0!important;
    display: block!important;
    color: #FFF!important;
    font-size: 14px!important;
    background-color: #231815 !important;
    -webkit-border-radius: 25px!important;
    border-radius: 25px!important;
    position: relative!important;
    -webkit-transition: all 0.4s!important;
    -moz-transition: all 0.4s!important;
    -ms-transition: all 0.4s!important;
    -o-transition: all 0.4s!important;
    transition: all 0.4s!important;
}
.remodal .close .icon {
    color: #FFF;
    position: absolute;
    margin-top: 0;
    margin-left: 0;
    width: 18px;
    height: 18px;
    left: 8px;
}
.remodal .close span {
    display: block;
    color: #FFF;
}

@media screen and (max-width: 768px){
 #plan {
    margin-top: 0;
}
#plan .inner .plan-list li a dl .price{
   font-size: 32px;
   padding: 0 10px;
}
.plan.remodal h3 {
font-size: 26px;
}
.plan.remodal .price{
font-size: 32px;
}
.plan.remodal .price span {
 line-height: 1.66666;
}
#plan .inner .plan-list li a dl .price span{
line-height: 1.666666;
}
#plan .inner .plan-list li a dl dt {
font-size: 10px;
}
}
@media screen and (max-width: 640px) {
 #plan { padding: 50px 0 0;}
 .budge.sp {
  width: 150px;
  display: block;
  line-height: normal;
  position: absolute;
  left: 20px;
  top: -100px;
  z-index: 10;
 }
#plan .note {
  color: #fff;
  font-size: 1.2em;
}
#plan .date {
  padding-top: 30px;
}
#plan::before {
    height: 2400px;
}
#plan .inner {
    margin-top: 0;
}
#plan .inner .plan-list li {
 width: 100%;
 margin-left: 0;
 display: inline-block; *display: inline; *zoom: 1;
 vertical-align: top;
}
#plan .inner .plan-list li:nth-of-type(2n+1) { margin-left: 0;padding-top: 30px;}
#plan .inner .plan-list li:nth-child(even) {
 padding-top: 30px;
 -webkit-transition-delay: 0.2s;
    -moz-transition-delay: 0.2s;
     -ms-transition-delay: 0.2s;
      -o-transition-delay: 0.2s;
}
#plan .inner .plan-list li a dl dt {
    font-size: 12px;
}
#fix-contact {
    z-index: 1000;
}
.remodal-wrapper {
    padding: 20px!important;
}
.plan.remodal {
    padding: 20px 10px 30px 10px;
}
.plan.remodal p{
        font-size: 12px;
}
.plan.remodal .num {
    padding: 35px 0 20px;
}
.plan.remodal dl dt {
    font-size: 14px;
}
.plan.remodal dl .pht {
    padding-top: 15px;
}
.plan.remodal dl + p {
    margin-top: 20px;
    font-size: 11px;
    text-align: left;
}
.plan.remodal .attention {
    margin-top: 20px;
    font-size: 13px;
}
.plan.remodal .price {
    width: 100%;
    margin: 20px auto 0;
}
.plan.remodal .price + p {
    font-size: 13px;
}
.plan.remodal .detail-list {
 width: 100%;
 padding-top: 20px;
}
.plan.remodal .detail-list li {
width: 100%;
display: block!important;
height: 85px;
margin: 5px 0;
padding: 0;
float: none;
clear: both;
}
.plan.remodal .detail-list li figure {
width: 21%;
float: left;
margin: 8px 2%;
}
.plan.remodal .detail-list li figure img {
 width: 100%;
 height: auto;
}
.plan.remodal .detail-list li dl { margin-top: 20px;float: left;width: 70%;}
.plan.remodal .detail-list li dl dt {
 letter-spacing: 0.1em;
 font-size: 14px;
 font-weight: bold;
}
.plan.remodal .detail-list li dl dd {
 margin-top: 7px;
 letter-spacing: 0.1em;
 line-height: 1.66;
 font-size: 11px;
}
.remodal .close {
    margin: 30px auto 0;
}
.plan.remodal .att {
    padding-left: 0;
}
}
/*--------------------------------------------------------------------------
 schedule
---------------------------------------------------------------------------*/
#schedule { margin-top: 120px;}
#schedule .fitting {
        padding-top: 60px;
}
#schedule .schedule-wrap {
 display: flex;
 -webkit-justify-content: space-between;
         justify-content: space-between;
}
#schedule .schedule-wrap.center {
 -webkit-justify-content: center;
         justify-content: center;
}
#schedule .schedule-wrap .schedule-table { width: 100%;margin: 0 5px;}
#schedule .schedule-wrap .schedule-table h3 {
 margin-bottom: 15px;
 text-align: center;
 line-height: 2.5;
 color: #FFF;
 font-family: 'EB Garamond', serif;
 font-size: 22px;
 font-weight: 400;
 background: #262626;
}
#schedule .schedule-wrap .schedule-table table { width: 100%;}
#schedule .schedule-wrap .schedule-table table tr:not(:first-child) {
 background: url(../../common/img/dotline.png) left top repeat-x;
 -webkit-background-size: 4px auto;
 -o-background-size: 4px auto;
 background-size: 4px auto;
}
#schedule .schedule-wrap .schedule-table table tr th {
 width: 4em;
 text-align: right;
 color: #111;
 font-weight: 600;
 vertical-align: middle;
 padding: 0.6em 0 0.6em 0;
}
#schedule .schedule-wrap .schedule-table table tr td{
 vertical-align: middle;      
}
#schedule .schedule-wrap .schedule-table table tr td small{
 display: block;
 font-size: 11px;    
}
#schedule .schedule-wrap .schedule-table table tr.line_g {
 background: #f1f1f1;
}
#schedule .schedule-wrap .schedule-table table tr td { padding: .6em 0 .6em 2em;}
#schedule .schedule-wrap .schedule-table p{font-size: 14px;}
#schedule .note {
text-align: center;
padding-top: 30px;
font-size: 12px;
}

@media screen and (max-width: 1200px) {
 #schedule { margin-top: 90px;}
 #schedule .schedule-wrap .schedule-table h3 {
  margin-bottom: 12px;
  font-size: 18px;
 }
}
@media screen and (max-width: 768px) {
 #schedule { margin-top: 70px;}
 #schedule .schedule-wrap { display: block;}
 #schedule .schedule-wrap .schedule-table { width: 100%;}
 #schedule .schedule-wrap .schedule-table:last-child { margin-top: 35px;}
 #schedule .schedule-wrap .schedule-table h3 {
  margin-bottom: 10px;
  font-size: 16px;
 }
 #schedule .schedule-wrap .schedule-table table tr th,
 #schedule .schedule-wrap .schedule-table table tr td { font-size: 12px;}
 #schedule .schedule-wrap .schedule-table p{font-size: 11px;}
}

/*--------------------------------------------------------------------------
 access
---------------------------------------------------------------------------*/
#access {
 margin-top: 120px;
 position: relative;
}
#access .map {
 width: 100%;
 height: 0;
 padding-bottom: 50%;
 overflow: hidden;
 position: relative;
}
.map iframe,
.map object,
.map embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#access .access-list {
 display: flex;
 -webkit-align-items: flex-start;
         align-items: flex-start;
 -webkit-flex-wrap: wrap;
     -ms-flex-wrap: wrap;
         flex-wrap: wrap;
}
#access .access-list dt {
 width: 7em;
 margin-bottom: 12px;
 text-align: center;
 line-height: 2.2;
 font-size: 13px;
 border: 1px solid rgba( 26, 26, 26, .5);
}
#access .access-list dd {
 width : -webkit-calc(100% - 7em);
 width : calc(100% - 7em);
 margin: 1px 0 12px 1em;
 text-align: justify;
 line-height: 1.8;
 font-size: 16px;
}
#access .access-list dd a { opacity: .5;}
#access .access-list dd a:hover { opacity: 1;}
#access .access-list dd a span {
 margin: 0 0 0 5px;
 display: inline-block;
 vertical-align: bottom;
 font-size: 18px;
 -webkit-transform: translateY(-19%);
 -ms-transform: translateY(-19%);
 transform: translateY(-19%);
}
#access .access-list dt:last-of-type,
#access .access-list dd:last-of-type { margin-bottom: 0;}

@media screen and (max-width: 1200px) {
 #access { margin-top: 90px;}
 #access .access-list dt {
  margin-bottom: 10px;
  font-size: 11px;
 }
 #access .access-list dd {
  margin-bottom: 10px;
  font-size: 14px;
 }
 #access .access-list dd a span {
  margin: 0 0 0 4px;
  font-size: 16px;
 }
}
@media screen and (max-width: 768px) {
 #access { margin-top: 70px;}
 #access .map {
  width: 100vw;
  margin-left: -6.0385vw;
  height: 0;
  padding-bottom: 75%;
 }
 #access .access-list dt {
  margin-bottom: 8px;
  font-size: 10px;
 }
 #access .access-list dd {
  margin-bottom: 8px;
  text-align: justify;
  font-size: 12px;
 }
 #access .access-list dd a span {
  margin: 0 0 0 3px;
  font-size: 14px;
 }
}

/*--------------------------------------------------------------------------
 landscape
---------------------------------------------------------------------------*/
.landscape {
 width: 90vw;
 height : 580px;
 margin-top: 150px;
 background-position: left center;
 background-attachment: fixed;
 background-size: 90vw auto;
 background-repeat: no-repeat;
 overflow: hidden;
}

.landscape.kominka { background-image: url(../kominka/img/landscape.jpg);}
.landscape.puroland { background-image: url(../puroland/img/landscape.jpg);}
@media screen and (max-width: 1200px) {
 .landscape {
  height : 464px;
  margin-top: 120px;
 }
}
@media screen and (max-width: 768px) {
 .landscape {
  margin-top: 90px;
  width: 100vw;
  height : 0;
  padding-top: 56.25%;
  -webkit-background-size: cover;
       -o-background-size: cover;
          background-size: cover;
  background-position: center center;
  background-attachment: initial;
 }


 .landscape.kominka { background-image: url(../kominka/img/landscape_sp.jpg);}
 .landscape.puroland { background-image: url(../puroland/img/landscape_sp.jpg);}
}
/*--------------------------------------------------------------------------
 contact
---------------------------------------------------------------------------*/
#contact .line-title-box{
 margin-bottom: 60px;
}
