@charset "utf-8";

/* ----------------------------------------------------------

Common Setting

---------------------------------------------------------- */
/*pc + sp*/
.pc   {display:block}
.sp   {display:none}
@media only screen and (max-width: 960px) {
.pc   {display:none}
.sp   {display:block}
}

div,h1,h2,h3,h4,h5,h6,p,ul,ol,li,dl,dt,dd  {
  /*position: relative;*/
  word-break:break-all;
  padding:0;
  margin:0;
  box-sizing:border-box;
  outline:none;
  font-family: 'Noto Serif JP', serif;
}

h1,h2,h3,h4,h5,h6   {
  font-weight:normal;
  padding:0;
  margin:0
}

/*font
.wf__mincho {
  font-family: 'Zen Old Mincho', serif;
}*/

/*ul dl*/
ul,ul li  {
  list-style:none;
  padding:0;
  margin:0
}

ul.disc li {
  list-style: disc;
  margin-left: 1em;
}

ol  {
  margin-left: 1em;
}

/*position*/
.center {
  text-align:center
}

.left {
  text-align:left
}
.right  {
  text-align:right
}

.block  {
  display: block;
}


/*text*/
.red  {
  color: #ff0000
}

.blud {
  /*
  color: #2648a8
  */
  color: #283e94;
}

.strong {
  font-weight: 900;
}

.large {
  font-size: 120%;
}

.xlarge {
  font-size: 140%;
}

.xxlarge {
  font-size: 160%;
}

.xxxlarge {
  font-size: 180%;
}

/*margin*/
.mt9{
  margin-top: 9px!important;
}

.mt18 {
  margin-top: 18px!important;
}

.mt36 {
  margin-top: 36px!important;
}

/*link*/
@media (min-width: 520px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}

a  {
  cursor:pointer;
  color: #000;
}

a:hover {
  cursor:pointer;
}

a.underline {
  text-decoration: none;
}

a.arrow {
  position: relative;
  text-decoration: underline;
}

a.arrow::after {
  content:'';
  top: 32.50%;
  margin-left: 5px;
  position: absolute;
  width: 16px;
  height:16px;
  background:url(../img/icon_arrow3.png) 100% 50% no-repeat;
  background-size: 16px;
}

@media (min-width: 520px) {
  a[href^="tel:"] {
      pointer-events: none;
      cursor: default;
  }
}

/*img*/
img {
  vertical-align:middle;
  -ms-interpolation-mode:bicubic;
  max-width:100%
}

.alignnone,
.alignleft,
.alignright,
.aligncenter  {
  max-width:100%;
  margin:0;
  width:auto
}

.alignnone  {
  margin-bottom:5px
} 

.alignleft  {
  display:inline;
  float:left;
  margin-top:5px;
  margin-right:50px;
  margin-bottom:50px
}

.alignright {
  display:inline;
  float:right;
  margin-top:5px;
  margin-left:50px;
  margin-bottom:50px
}

.aligncenter  {
  clear:both;
  display:block;
  margin-left:auto;
  margin-right:auto;
  text-align:center
}

@media only screen and (max-width: 960px) {
  .alignnone,
  .alignleft,
  .alignright,
  .aligncenter  {
    display:block;
    float:none;t
    ext-align:center;
    margin:1em auto
  }
}

/* ----------------------------------------------------------

Btn Setting

---------------------------------------------------------- */
/*btn*/
.btn, 
button[type="submit"], 
input[type="submit"]  {
  display:block;
  text-decoration: none;
  text-align:center;
  text-decoration:none;
  box-sizing:border-box;
  position:relative;
  cursor:pointer;
  box-shadow:none;
  outline:none;
  border:none;
  appearance:none;
  font-weight: 600;
  border-radius: 100px;
  transition: 0.3s all;
}

/*btn__primary*/
.btn__primary {
  text-decoration: none;
  color: #fff;
  border: 1px solid #42529B;
  background-color: #42529B;
  background-image: url(../img/icon__arrow2.png);
  background-repeat:no-repeat;
  background-size: 7px;
  background-position: 95% 50%;
}

.btn__primary:hover,
.btn__primary:focus {
  color: #42529B;
  border: 1px solid #42529B;
  background-color: #fff;
  background-image: url(../img/icon__arrow1.png);
  background-repeat:no-repeat;
  background-size: 7px;
  background-position: 95% 50%;
}

/*btn__secondary*/
.btn__secondary {
  text-decoration: none;
  color: #42529B;
  border: 1px solid #42529B;
  background-color: #fff;
  background-image: url(../img/icon__arrow1.png);
  background-repeat:no-repeat;
  background-size: 7px;
  background-position: 95% 50%;
}

.btn__secondary:hover,
.btn__secondary:focus {
  color: #fff;
  border: 1px solid #42529B;
  background-color: #42529B;
  background-image: url(../img/icon__arrow2.png);
  background-repeat:no-repeat;
  background-size: 7px;
  background-position: 95% 50%;
}


/*
.btn__round {
  border-radius: 80px;
}

.btn__rdius {
  border-radius: 40px;
}
*/
@media only screen and  (max-width:960px) {
}


/* ----------------------------------------------------------

Form Setting

---------------------------------------------------------- */
/*form reset
input[type=submit],
button,
button[type=submit],
button[type=button] {
  appearance:none;
  cursor:pointer;
  outline:none;
  box-sizing:border-boxt;
  border:none;
  background: transparent;
  font-size: 18px;
}
*/
input[type=text],
input[type=number],
input[type=email],
input[type=password],
input[type=url],
input[type=tel],
textarea {
  appearance:none;
  outline:none;
  border-radius: 6px;
  border:1px solid #ccc;
  padding: 18px;
  box-sizing:border-box;
  max-width: 100%;
  font-size: 18px;
}


input[type=text]:focus,
input[type=number]:focus,
input[type=email]:focus,
input[type=password]:focus,
input[type=url]:focus,
input[type=tel]:focus,
textarea:focus {
  transition: 0.3s;
  box-shadow: 0 0 0 6px rgba(0,0,0,0.1)
}


/*select*/
.select select {
  box-sizing:border-box;
  width: 100%;
  outline: none;
  border:none;
  background: transparent;
  background-image: none;
  box-shadow: none;
  appearance: none;
  color: #000;
  max-width: 100%;
  padding: 18px 36px 18px 18px;
  font-size: 18px;
}

.select select::-ms-expand {
  display: none;
}

.select {
  display: inline-block;
  position: relative;
  border-radius: 6px;
  border:1px solid #ccc;
  box-sizing:border-box;
  background: #fff;
}

.select::before {
  position: absolute;
  top: 45%;
  right:9px;
  width: 0;
  height: 0;
  padding: 0;
  content: '';
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #222;
  pointer-events: none;
}


::-webkit-input-placeholder {
  color:#aaa;
}
:-ms-input-placeholder {
  color:#aaa;
}
::placeholder{
  color:#aaa
}

/* ----------------------------------------------------------

Layout Setting

---------------------------------------------------------- */
body        {
  position: relative;
  font-feature-settings:"palt" 1;
  line-break:strict!important;
  overflow-wrap:break-word!important;
  word-wrap:break-word!important;
  box-sizing:border-box;
  width:100%;
  min-width: 1px;
  color: #000;
  font-size: 100%;
  background-color: #fff;
  font-weight:400;
  line-height:2;
  padding:0;
  margin:auto;
}

main {
  position: relative;
  background-color: #fff;
}

.container__fluid  {
  width:100%;
  margin:auto;
  max-width: 1980px;
}

.container__wide  {
  width:100%;
  max-width: 1980px;
  margin:auto;
  padding-left: 2.5em;
  padding-right: 2.5em;
}

.container  {
  width:100%;
  max-width:1180px;
  margin:auto;
  padding-left: 1em;
  padding-right:1em;
}

.container__middle {
  max-width:1024px;
  margin:auto;
}

.container__narrow {
  max-width:980px;
  margin:auto;
}

.container__xnarrow  {
  max-width:880px;
  margin:auto;
}

.container__xxnarrow {
  max-width:640px;
  margin:auto;
}

.container__xxxnarrow {
  max-width:580px;
  margin:auto;
}

@media only screen and (max-width: 960px) {
  body  {
    min-width:1px;
    font-size:calc(18px - 3px);
    -webkit-text-size-adjust:100%;
    -webkit-overflow-scrolling:touch;
  }

  .container_wide,
  .container,
  .container__middle,
  .container__narrow,
  .container__xnarrow,
  .container__xxnarrow,
  .container__xxxnarrow {
    width:100%;
    max-width:100%;
    padding-left:1em;
    padding-right:1em;
    box-sizing:border-box
  }
}

/*iPhone横*/
@media (orientation: landscape) and (max-width:900px)　{
  body  {
    min-width:1180px;
  }
}

/*iPad用*/
@media screen and (device- width : 768px ) and (device- height : 1024px ) and (-webkit-device-pixel-ratio: 2 ) {
  body  {
    min-width: 1024px;
  }
}

/* ----------------------------------------------------------

Header Setting

---------------------------------------------------------- */
/*topbar*/
.topbar {
  width: 100%;
  min-width: 100%;
  padding:13.5px 0 ;
  background: #42529B;/*
  position: fixed;
  top: 0;*/
  z-index: 222;
}

.topbar__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.topbar .logo  {
  flex-basis: 330px;
  padding: 0;
 
}

.topbar .topbar__nav  {
  flex-basis: calc(100% - 350px)
}

.topbar .logo a,
.topbar__label {
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
}

  .topbar .logo a img {
    width: 100%;
    height: auto;
  }

.topbar__nav  {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  padding:0;
}

.topbar__nav ul {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
}

.topbar__nav ul li {
  margin: 4.5px 18px;
}

  .topbar__nav ul li:nth-last-child(1) {
    margin-right: 0;
  }

.topbar__nav a  {
  text-decoration: none;
  line-height: 2;
  font-weight: 300;
}

.topbar__nav a span  {
  display: block;
}

  .topbar__nav a span.ja  {
    font-size: 15px;
    color: rgba(255,255,255,1);
  }

  .topbar__nav a span.en  {
    font-size: 11px;
    color: rgba(255,255,255,0.5);
    margin-top: -2.25px;
  }

.gloval__menu {
  display: block;
}

.topbar__tel,
.topbar__reservation {
  display: inline-block;
  vertical-align: middle;
}

.topbar__tel a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.topbar__tel span {
  display: inline-block;
  vertical-align: middle;
  font-size: 22px;
  line-height: normal;
  letter-spacing: -0.015em;
  font-family: 'Zen Old Mincho', serif;
  background: url(../img/icon__tel.png) 0 60% no-repeat;
  padding-left: 27px;
  background-size: 20px;
}

.topbar__tel span small {
  display: inline-block;
  vertical-align: middle;
  font-size: 15px;
  line-height: normal;
  font-weight: 300;
  letter-spacing: 0.015em;
  margin-top: -4.5px;
  margin-left: -9px;
}

.topbar__reservation a  {
  display: block;
  position: relative;
  border-radius: 100px;
  text-decoration: none;
  line-height: 2;
  font-weight: 400;
  box-shadow: 0 0 8px 4px rgba(0,0,0,0.1);
  background-image: url(../img/icon__calendar.png);
  background-repeat: no-repeat;
  background-position:27px 55%;
  background-color: #fff;
  background-size: 17px;
  padding:4.5px 54px 4.5px 54px;
  margin: 0 0 0 -18px;
}

.topbar__reservation a:after  {
  content: '';
  top: 13.5px;
  right: 0;
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/icon__arrow1.png);
  background-repeat: no-repeat;
  background-position:0;
  background-size: 6px;
}

.topbar__reservation a span  {
  display: inline-block;
  vertical-align: middle;
}
  .topbar__reservation a span.en  {
    color: rgba(66,82,155,0.65);
    font-size: 12px;
  }

  .topbar__reservation a span.ja  {
    color: rgba(66,82,155,1);
    font-size: 16.5px;
    margin: 0 9px 0 18px ;
    font-weight: 600;
  }


@media only screen and (max-width:960px) {
  .topbar {
    width:100%;
    min-width:100%;
    padding:calc(13.5px / 2) 1em;
  }

  .topbar .logo  {
    flex-basis: 50%;
    z-index: 123;
  }

  .topbar .topbar__nav  {
    flex-basis: 20%;
  }

  .gloval__menu  {
    display: none;
  }

}


/*gnav__sp*/
.gnav__sp {
  display: none;
}

@media only screen and (max-width:960px) {
  .gnav__sp {
    display: block;
  }

  #nav__toggle {
    position: fixed;
    top:27px;
    right: 1em;
    height: 40px;
    width: 40px;
    cursor: pointer;
  }

  #nav__toggle span {
    width: 100%;
    height: 1px;
    left: 0;
    display: block;
    position: absolute;
    background: #fff;
    transition: .3s all
  }

    .header.is-show #nav__toggle span {
      background: #42529B;
    }

  #nav__toggle span:nth-child(1) {
    top: 0;
  }

  #nav__toggle span:nth-child(2) {
    top: 10px;
  }

  #nav__toggle span:nth-child(3) {
    top: 20px;
  }

  .open #nav__toggle span {
    background: #fff;
  }

    .open .header.is-show #nav__toggle span {
      background: #fff;
    }

  .open #nav__toggle span:nth-child(1) {
    top:10px;
    transform: rotate(45deg);
  }

  .open #nav__toggle span:nth-child(2) {
    top: 20px;
    width: 0;
    left: 50%;
  }

  .open #nav__toggle span:nth-child(3) {
    top:10px;
    transform: rotate(-45deg);
  }

  #gloval__nav {
    position: fixed;
    background: #42529B;
    padding: 0;
    margin: 0 ;
    top: 0;
    right: -50%;
    width: calc(100% + 10%);
    height: 100vh;
    transform: translateX(100%);
    transition: .1s all
  }

  #gloval__nav ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    padding:54px 9px;
    width: calc(50%);
  }

  #gloval__nav ul li {
    flex-basis: 100%;
    text-align: left;
  }

  #gloval__nav ul li a {
    display: block;
    text-decoration: none;
    color: #fff;
    padding: 10px 0;
  }

  #gloval__nav ul li span.en  {
    font-size: 12px;
  }

  #gloval__nav ul li span.ja  {
    font-size: 16.5px;
    font-weight: 500;
  }


  /*
  #gloval__nav  ul li {
        opacity: 0;
        transform: translateY(-100px);
      }

  #gloval__nav  ul li :nth-child(2) {
          transition-delay: .15s;
        }
  #gloval__nav  ul li :nth-child(3) {
          transition-delay: .3s;
        }
  #gloval__nav  ul li :nth-child(4) {
          transition-delay: .45s;
        }
  */
  /* open */
  .open {

  }

  .open #gloval__nav {
    visibility: visible;
    transform: translateY(0);
    transition: transform .6s;
  }

  .open #gloval__nav li {
    opacity: 1;
    transform: translateY(0);
    transition: .1s all
  }

  #nav__toggle {
    z-index: 123456789;
  }

  #gloval__nav {
    z-index: 123456;
  }
/*
  .gnav__sp .login   {
    border-top: 1px solid rgba(255, 255, 255, 0.50);
    background: transparent;
    color: #fff;
    margin: 18px auto;
    padding-top: 9px;
    font-weight: 600;
  }
*/

}


@media (min-width: 768px) {
  .nav__menu{
    display: flex !important;
  }
}
  
@media (max-width: 960px) {
  .nav__menu{
    display: none;
  }

  .toggle__btn {
    display: block;
  }
}

/*home__mv*/
.home__mv {
  width: 100%;
  min-width: 100%;
  height: 650px;
  margin: auto;/*
  background: url(../img/home__mv1.jpg) top center no-repeat;
  background-size: cover;*/
}

.home__mv .slick-slider{
  margin: 0;
  padding: 0;
}

.home__mv .slick-slider img {
  width: 100%;
  height: 100%;
}

/*page__mv*/
.page__mv {
  width: 100%;
  height: 350px;
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
  margin: auto;
  position: relative;
}

.page__mv__container  {
  width: 100%;
  height: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  background:rgba(0,0,0,0.675);
}

.page__mv__title  {
  margin: auto;
  text-align: center;
  flex-basis: 100%
}

.page__mv__title span  {
  display:block;
  text-align: center;
  margin: auto;
  box-sizing: border-box;
}

  .page__mv__title span.ja  {
    color: rgba(255, 255, 255, 1.0);
    font-size:50px;
    line-height: 1;
    font-weight:600;
    letter-spacing: 0.35em;
  }

  .page__mv__title span.en  {
    color: rgba(255, 255, 255, 0.75);
    font-size:16px;
    line-height: 1;
    font-weight:400;
    letter-spacing: 0.15em;
    margin-top: 27px;
  }


@media only screen and (max-width: 960px) {
  .home__mv {/*
    height:62.5vh;
    background: url(../img/home__mv1.jpg) top center no-repeat;
    background-size: cover;
  */
    height: calc(350px / 1);
  }

  .page__mv {
    height: calc(350px / 1);
  }

  .page__mv__container  {
    width: 100%;
    height: 100%;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    background:rgba(0,0,0,0.675);
  }

  .page__mv__title  {
    margin: auto;
    text-align: center;
    flex-basis: 100%
  }

  .page__mv__title span  {
    display:block;
    text-align: center;
    margin: auto;
    box-sizing: border-box;
  }

  .page__mv__title span.ja  {
    font-size:calc(50px / 1.5);
    letter-spacing: 0.175em;
  }

  .page__mv__title span.en  {
    font-size:calc(16px / 1.15);
    line-height: 1;
    letter-spacing: 0.75em;
    margin-top:calc(27px / 1.5);
  }


}


/* ----------------------------------------------------------

Section Setting

---------------------------------------------------------- */
/*bg*/
.bg1 {
  background: #fff;
}

.bg2 {
  background: #f4f4f4;
}

/*
.bg3 {
  background: #283e94;
}

*/



/*section*/
.section.border__bottom {
  border-bottom: 1px solid #999;
}

.page__section {
  padding: 90px 0 0;
}

  .page__section:last-of-type {
    padding: 90px 0 ;
  }

.section.error404 {
  padding: 128px 0;

}

.section p.leed {
  text-align: center;
  margin: 45px auto;
  font-size: 20px;
  line-height: normal;
  font-weight: 500;
}

.section__title {
  text-align: center;
  margin: auto;
}

.section__title span.ja {
  display: block;
  font-size: 34px;
  line-height: normal;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.05em;
  margin: auto;
}

  .home .section__title span.ja {
    font-size: 40px;
    font-weight: 500;
    letter-spacing: 0.25em;
  }

.section__title span.en {
  color: #BFBFBF;
  display: block;
  font-size: 16px;
  line-height: normal;
  font-weight: 400;
  text-align: center;
  letter-spacing: 0.2em;
  margin: 9px auto auto;
}


@media only screen and (max-width: 960px) {
  .page__section {
    padding: calc(90px / 2) 0 0;
  }

  .section.erro404 {
    padding: calc(128px / 2);
  }

  .page__section:last-of-type {
    padding: calc(90px / 2) 0 ;
  }

  .section p.leed {
    text-align: center;
    margin: calc(45px / 2) auto;
    font-size: calc(20px / 1.35);
  }

  .section__title span.ja {
    font-size: calc(34px / 1.5);
    letter-spacing: 0.025em;
    margin: auto;
  }

  .home .section__title span.ja {
    font-size: calc(40px / 1.65);
    letter-spacing: 0.05em;
  }

  .section__title span.en {
    font-size: calc(16px / 1.25);
    letter-spacing: 0.05em;
    margin: calc(9px / 2) auto auto;
  }

}

/*error404*/

.section.error404 .btn__link {
  margin: 18px auto auto;
  text-align: center;
}

.section.error404 .btn__link a  {
  width: 320px;
  padding: 9px;
  margin:  auto;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  .section.error404 .btn__link a  {
    width: 100%;
    padding: 9px;
  }
}


/*breadcrumbs*/
.breadcrumbs {
  border-top: 1px solid #999;
  margin-top: -1px;
  position: relative;
  z-index: 1;
}

.breadcrumbs__container {
  padding:27px 0 
}

.breadcrumbs p {
  font-size: 16px;
  line-height: 2;
}

.breadcrumbs p a {
  text-decoration: underline;
}


@media only screen and (max-width: 960px) {
  .breadcrumbs__container {
    padding:calc(27px / 1.5) 1em
  }

  .breadcrumbs p {
    font-size: calc(16px / 1.25);
  }

}

/*section__cta*/
.section__cta {
  margin: 36px auto ;
}

.section__cta a  {
  width: 320px;
  text-align: center;
  margin: auto;
  padding: 22.5px 36px;
  font-size: 20px;
  line-height: 1;
}

@media only screen and (max-width: 960px) {
  .section__cta {
    margin: calc(36px / 2) auto ;
  }

  .section__cta a  {
    width: 100%;
    padding: calc(22.5px / 1) calc(36px / 2);
    font-size: calc(20px / 1.15);
    line-height: 1;
  }
}


/* ----------------------------------------------------------

HOME Setting

---------------------------------------------------------- */
/*home__news*/
.home__news {
  padding: 30px 0;
  border-bottom: 1px solid #999;
}

.home__news__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.home__news__list {
  flex-basis: 80%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

.home__news__link {
  flex-basis: 20%;
  text-align: right;
}

.home__news__list dl {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
}

  .home__news__list dl dt {
    flex-basis: 16%;
    font-size: 18px;
    line-height: 2;
    font-weight: 500;
  }

  .home__news__list dl dd {
    flex-basis: 84%;
    font-size: 18px;
    line-height: 2;
    font-weight: 400;
  }

.home__news__link a {
  font-size: 16px;
  line-height: 2;
  text-align: right;
  text-decoration: underline;
  background: url(../img/icon__arrow3.png) 100% 58% no-repeat;
  background-size: 7.5px;
  padding-right: 16px;
  font-weight: 400;
}


@media only screen and (max-width: 960px) {
  .home__news {
    padding: calc(30px / 2) 0;
  }

  .home__news__list {
    flex-basis: 100%;
  }

  .home__news__link {
    flex-basis: 100%;
    text-align: right;
  }

  .home__news__list dl {
    width: 100%;
  }

  .home__news__list dl dt ,
  .home__news__list dl dd {
    flex-basis: 100%;
    font-size: calc(18px / 1.25);
    line-height: 2;
  }

  .home__news__link a {
    font-size: calc(16px / 1.15);
    line-height: 2;
    background: url(../img/icon__arrow3.png) 100% 58% no-repeat;
    background-size: calc(7.5px / 1.5);
    padding-right: 1em;
  }


}



/*home__about*/
.home__about {
  padding: 90px 0 0;
  margin: auto;
  z-index: 12;
  text-align: center;
}

.home__about__content {
  padding: 18px 0 ;
}

.home__about__content p,
.home__about__text {
  text-align: center;
  margin: 45px auto;
  font-size: 20px;
  line-height: 2.235678;
  font-weight: 500;
}

@media only screen and (max-width: 960px) {
  .home__about {
    padding: calc(90px / 2) 0 0;
  }

  .home__about__content {
    padding: calc(18px / 2) 0 0;
  }

  .home__about .section__title span {
    font-size: calc(28px / 1.25);
    line-height: normal;
    font-weight: 500;
  }

  .home__about__content p,
  .home__about__text {
    margin: calc(45px / 2) auto;
  }

  .home__about p.home__about__text  {
    font-size: calc(17px / 1.15);
  }
  /*
  .home__about__text {
    text-align: left;
    margin: calc(45px / 2) auto;
    font-size:calc(20px / 1.25);
    line-height: 2;
  }
  */

}

@media only screen and (max-width: 375px) {
  .home__about .section__title span.ja {
    font-size: calc(28px / 1.5);
  }

  .home__about p.home__about__text  {
    font-size: calc(17px / 1.5);
  }

}


@media only screen and (min-width: 376px) and (max-width: 390px) {
  .home__about .section__title span.ja {
    font-size: calc(28px / 1.45);
  }

  .home__about p.home__about__text  {
    font-size: calc(17px / 1.45);
  }

}


@media only screen and (min-width: 391px) and (max-width: 428px) {
  .home__about .section__title span.ja {
    font-size: calc(28px / 1.35);
  }

  .home__about p.home__about__text  {
    font-size: calc(17px / 1.35);
  }

}



/*home__charms*/
.home__charms {
  padding: 45px 0 ;
}

.home__charms__container {
  padding: 54px 0 27px;
  margin: auto;
  /*overflow-x: hidden;*/
}

.home__charms__list {
  position: relative;
  margin: 36px 0;
  min-height: 500px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

  .home__charms__list:nth-child(odd) {/*
    max-width: calc(1980px - (100% - 1180px) / 2);
    margin-right:calc((100% - 1180px) / 2);*/
  }

  .home__charms__list:nth-child(even) {/*
    max-width: calc(1980px - (100% - 1180px) / 2);
    margin-left:calc((100% - 1180px) / 2);*/
  }

.home__charms__text {
  flex-basis: 50%;
  position: relative;
  z-index: 99;
  padding: 0 2.5em;
}

.home__charms__img {
  flex-basis: calc(100% - 50%);
  max-width:calc(1490px / 2);
  z-index: 9;
}

  .home__charms__list:nth-child(odd) .home__charms__text {
    order: 2;
    padding-left: 45px;
  }

  .home__charms__list:nth-child(odd) .home__charms__img {
    order: 1;
  }

  .home__charms__list:nth-child(even) .home__charms__text {
    order: 1;
    padding-right: 45px;
  }

  .home__charms__list:nth-child(even) .home__charms__img {
    order: 2;
  }

.home__charms__img img {
  width: 100%;
  height: auto;
}

.home__charms__title  {
  margin-bottom:36px;
}

.home__charms__title span {
  display: block;
  font-size: 28px;
  line-height: normal;
  font-weight: 500;
  margin-bottom:18px;
}

.home__charms__comment {
  font-size: 17px;
  line-height: 2;
  text-align: justify;
  font-weight: 400;
}

.home__charms__comment p  {
  margin-bottom: 18px;
}

.home__charms__list .section__cta {
  margin-bottom: -36px;
}

.home__charms__list .home__charms__num {
    position: absolute;
    right:27px;
    top: 0;
  }

  .home__charms__list:nth-child(1) .home__charms__num {
    top: -25px;
  }

  .home__charms__list:nth-child(2) .home__charms__num {
    top: -50px;
  }

  .home__charms__list:nth-child(3) .home__charms__num {
    top: -75px;
  }

  .home__charms__list:nth-child(4) .home__charms__num {
    top: -50px;
  }

  .home__charms__list:nth-child(5) .home__charms__num {
    top: -50px;
  }

  .home__charms__list:nth-child(6) .home__charms__num {
    top: -75px;
  }

  .home__charms__list:nth-child(7) .home__charms__num {
    top: -75px;
  }

  .home__charms__list:nth-child(8) .home__charms__num {
    top: -75px;
  }

  .home__charms__list:nth-child(9) .home__charms__num {
    top: -75px;
  }

  .home__charms__list:nth-child(10) .home__charms__num {
    top: -75px;
  }

.home__charms__num img {
  width: calc(295px / 1.89);
  height: auto;
}


@media only screen and (max-width: 960px) {
  .home__charms {
    padding: calc(45px / 2) 0 0;
  }

  .home__charms__container {
    padding: calc(54px / 2) 0 0;
  }

  .home__charms__list {
    margin: calc(36px / 2) 0;
    min-height: 1px;
  }

  .home__charms__list:nth-child(odd) ,
  .home__charms__list:nth-child(even) {
    max-width:100%;
    margin-right:0;
    margin-left:0;
  }

  .home__charms__text {
    flex-basis: 100%;
    z-index: 99;
    padding: 0;
    box-sizing: border-box;
  }

  .home__charms__img {
    flex-basis: 100%;
    max-width:100%;
    z-index: 9;
  }

  .home__charms__list:nth-child(odd) .home__charms__text,
  .home__charms__list:nth-child(even) .home__charms__text {
    order: 2;
    padding: 1em;
  }

  .home__charms__list:nth-child(odd) .home__charms__img,
  .home__charms__list:nth-child(even) .home__charms__img {
    order: 1;
    padding-left: 0;
    padding-right: 0;
  }

  .home__charms__title  {
    padding: 1em 0;
    margin-bottom:calc(18px / 1.5);
  }

  .home__charms__title span {
    font-size: calc(28px / 1.25);
    line-height: normal;
    font-weight: 500;
  }

  .home__charms__text p  {
    font-size: calc(17px / 1.15);
    text-align: justify;
  }

  .home__charms__list .section__cta {
    margin-bottom: 0;
  }

  .home__charms__list .home__charms__num {
    right:calc(27px / 2);
  }

  .home__charms__list:nth-child(1) .home__charms__num ,
  .home__charms__list:nth-child(2) .home__charms__num,
  .home__charms__list:nth-child(3) .home__charms__num ,
  .home__charms__list:nth-child(4) .home__charms__num ,
  .home__charms__list:nth-child(5) .home__charms__num ,
  .home__charms__list:nth-child(6) .home__charms__num ,
  .home__charms__list:nth-child(7) .home__charms__num,
  .home__charms__list:nth-child(8) .home__charms__num,
  .home__charms__list:nth-child(9) .home__charms__num,
  .home__charms__list:nth-child(10) .home__charms__num {
    top: 12.25px;
  }

  .home__charms__num img {
    width: calc(295px / 3);
  }

}


/*home__sightseeing*/
.home__sightseeing {
  padding: 54px 0 ;
}

.home__sightseeing__container {
  width: 100%;
  display: grid;
  grid-template-rows:0.25fr 1fr ;
  /*
  grid-template-columns: 1fr 0.68fr;
  */
  grid-template-columns: 1fr 0.498fr;
}

.home__sightseeing__list:nth-child(1) {
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}

.home__sightseeing__list:nth-child(2) {
  grid-row: 1 / 2;
  grid-column:2 / 3;
}

.home__sightseeing__list:nth-child(3) {
  grid-row: 2 / 3;
  grid-column:2 / 3;
}

.home__sightseeing__list img {
  border: 4px solid #fff;
  border-collapse: collapse;
  box-sizing: border-box;
}

@media only screen and (max-width: 960px) {
  .home__sightseeing {
    padding: calc(54px / 2) 0 ;
  }

  .home__sightseeing__container {
    width: 100%;
    display: grid;
    grid-template-rows:0.25fr 1fr ;
    grid-template-columns: 1fr 0.492fr;
  }

  .home__sightseeing__list:nth-child(1) {
    grid-row: 1 / 3;
    grid-column: 1 / 2;
  }

  .home__sightseeing__list:nth-child(2) {
    grid-row: 1 / 2;
    grid-column:2 / 3;
  }

  .home__sightseeing__list:nth-child(3) {
    grid-row: 2 / 3;
    grid-column:2 / 3;
  }

  .home__sightseeing__list img {
    border: 4px solid #fff;
    border-collapse: collapse;
    box-sizing: border-box;
  }


}


/* ----------------------------------------------------------

FAQ Setting

---------------------------------------------------------- */
/*faq*/
.faq__menu {
  padding-top: 72px;
}

.faq__menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  align-items: top;
}

.faq__menu__list li {
  margin: 0 2.25px;
}

.faq__menu__list li a {
  display: block;
  text-decoration: none;
  padding: 13.5px 36px;
  text-align: center;
  margin: auto;
  color: #42529B;
  font-size: 18px;
  line-height: 2;
  font-weight: 600;
  background-image: none;
}

.faq__menu__list li a:hover,
.faq__menu__list li a:focus {
  background-image: none;
  color: #fff;
}

/*faq__list*/
.faq__list {
  padding-top: 36px;
  padding-bottom: 36px;
}

.faq__list dl {
  margin: 9px 0 18px;
}

.faq__list dl dt {
  background: #D9DCEB;
  padding:  18px 36px;
}

.faq__list dl dd {
  padding: 18px 42.5px;
}

.faq__list dl dt span {
  display: block;
  font-size: 24px;
  line-height: 2;
  font-weight: 500;
}

.faq__list dl dd span {
  display: block;
  font-size: 17.5px;
  line-height: 2;
  font-weight: 400;
  padding-left: 1.25em;
}

  .faq__list dl dt span:before {
    content: 'Q.';
  }

  .faq__list dl dd span:before  {
    content: 'A.';
    font-size: 20px;
    margin-left: -1.25em;
  }


@media only screen and (max-width: 960px) {
  .faq__menu {
    padding-top: calc(72px / 3);
  }

  .faq__menu__list  {
    justify-content: flex-start;
  }

  .faq__menu__list li {
    margin: calc(4.5px / 1);
    flex-basis: 47.5%;
  }

  .faq__menu__list li a {
    padding: calc(13.5px / 2) calc(54px / 2);
    font-size: calc(18px / 1.25);
    line-height: 2;
  }

  .faq__list {
    padding-top: calc(36px / 2);
    padding-bottom: calc(36px / 2);
  }

  .faq__list dl {
    margin:calc(9px / 2) 0 calc(18px / 2);;
  }

  .faq__list dl dt {
    padding:calc(18px / 2) calc(36px / 2);
  }

  .faq__list dl dd {
    padding:calc(18px / 2) calc(42.5px / 2)
  }

  .faq__list dl dt span {
    font-size: calc(24px / 1.5);
    line-height: 2;
  }

  .faq__list dl dd span {
    display: block;
    font-size: calc(17.5px / 1.15);
    line-height: 2;
    padding-left:calc(1.25em / 1.5);
  }

  .faq__list dl dd span:before  {
    font-size: calc(20px / 1.25);
    margin-left:calc(-1.25em / 1.5);
  }

}



/* ----------------------------------------------------------

Gallery Setting


---------------------------------------------------------- */
/*home__gallery*/
.home__gallery {
  padding: 54px 0 ;
}

.gallery__container {
  padding: 0;
}

  .home.gallery__container {
    padding: 36px 0 0;
  }

.gallery__movie {
  background: #ECEDF5;
  padding: 18px 0 9px;
  margin: auto;
  text-align: center;
}

.gallery__movie iframe {
  width: 100%;/*
  width: 880px;*/
  height: 440px;
}

.gallery__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  padding-top: 18px;
  padding-bottom: 18px;
}

.gallery__list li {
  flex-basis: 32%;
  margin: 0.5% 0;
  padding-top: 18px;
}

  .gallery__list li:nth-child(3n-1) {
    margin:0.5% 0%
  }

.gallery__list li span {
  display: block;
  font-size: 16px;
  line-height: 2;
  margin-top: 9px;
}


@media only screen and (max-width: 960px) {
  .home__gallery {
    padding: calc(54px / 2) 0 ;
  }

  .home.gallery__container {
    padding: calc(36px / 2) 0 0;
  }

  .gallery__movie {
    padding: calc(18px / 2) calc(18px / 2) calc(18px / 6) ;
  }

    .home .gallery__movie {
      padding: calc(18px / 2) calc(18px / 18) calc(18px / 18) ;
    }

  .gallery__movie iframe {
    width: 100%;
    height: calc(440px / 1.5);
  }

  .gallery__list {
    padding-top: calc(18px / 2);
    padding-bottom: calc(18px / 2);
  }

  .gallery__list li,
  .gallery__list li:nth-child(3n-1) {
    flex-basis: 48.5%;
    margin:0;
    padding-top: calc(18px / 2);
  }

  .gallery__list li:nth-child(odd) {
    margin:1.5% 1.5% 1.5% 0
  }

  .gallery__list li:nth-child(even) {
    margin:1.5%  0 1.5% 1.5%
  }

  .gallery__list li span {
    font-size: calc(16px / 1.15);
    line-height: 1.789;
    margin-top: calc(9px / 2);;
  }


}

/* ----------------------------------------------------------

Sightseeing Setting

---------------------------------------------------------- */
/*sightseeing__menu*/
.sightseeing__menu {
  padding-top: 72px;
}

.sightseeing__menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content:center;
  align-items: top;
}

.sightseeing__menu__list li {
  margin: 0 18px;
  flex-basis: 256px;
}

.sightseeing__menu a {
  text-decoration: none;
  display: block;
  color: #fff;
}

.sightseeing__menu .btn__event {
  color: #fff;
  border: 1px solid #42529B;
  background-color: #42529B;
  background-image: url(../img/icon__event__w.png);
  background-repeat:no-repeat;
  background-size: 26px;
  background-position: 32.5% 57.5%;
  padding: 13.5px 54px 13.5px 72px;
}

.sightseeing__menu .btn__spot {
  color: #fff;
  border: 1px solid #429952;
  background-color: #429952;
  background-image: url(../img/icon__spot__w.png);
  background-repeat:no-repeat;
  background-size: 25px;
  background-position: 32.5% 53.5%;
  padding: 13.5px 54px 13.5px 72px;
}

@media only screen and (max-width: 960px) {
  .sightseeing__menu {
    padding-top: calc(72px / 3);
  }

  .sightseeing__menu__list li {
    margin: 0 auto -9px;
    flex-basis: 48.5%;
  }

  .sightseeing__menu .btn__event {
    background-image: url(../img/icon__event__w.png);
    background-size: calc(26px / 1.25);
    background-position: 27% 57.5%;
    padding: calc(13.5px / 1.5) 36px;
    text-indent: 27px;
  }

  .sightseeing__menu .btn__spot {
    background-image: url(../img/icon__spot__w.png);
    background-size: calc(25px / 1.25);
    background-position: 27% 53.5%;
    padding: calc(13.5px / 1.5) 36px;
    text-indent: 27px;
  }


}


/*sightseeing__list*/
.sightseeing__container {
  padding: 0 0;
}

.sightseeing__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: too;
  padding-bottom: 72px;
}

.sightseeing__img {
  flex-basis: 400px;
}

.sightseeing__text {
  flex-basis: calc(100% - 436px);
  text-align: left;
}

.sightseeing__img span {
  display: block;
  margin-top: 9px;
  text-align: center;
  font-size: 80%;
}

.sightseeing__title {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 18px;
}

.sightseeing__icon {
  display: inline-block;
  vertical-align: middle;
  margin-left: 9px;
  margin-top: -12.5px;
}

.sightseeing__title span {
  display: block;
  vertical-align: middle;
  font-size: 28px;
  line-height:normal;
  font-weight: 500;
}

.sightseeing__icon span {
  display:block;
  font-size: 14.5px;
  line-height:normal;
  font-weight: 500;
  padding: 4.5px 9px 4.5px 27px;
  text-align: center;
  letter-spacing: -0.02em;
  border-radius: 6px;
}

  .sightseeing__icon span.spot {
    background: url(../img/icon__spot.png) 10px 55% no-repeat #E3F0E5;
    background-size: 14px;
    color:#429952;
  }

  .sightseeing__icon span.event {
    background: url(../img/icon__event.png) 10px 55% no-repeat #E3E5F0;
    background-size: 16px;
    color: #42529B;
  }

.sightseeing__text p {
  font-size: 16px;
  line-height:2;
  font-weight: 400;
  margin-top: 9px;
}

.sightseeing__text a {
  text-decoration: underline;
  color: #000;
  font-weight: 500;
}


@media only screen and (max-width: 960px) {
  .sightseeing__container {
    padding: 0 0;
  }

  .sightseeing__list {
    padding-bottom: calc(72px / 3);
  }

  .sightseeing__img {
    flex-basis: 100%;
  }

  .sightseeing__text {
    flex-basis: 100%;
    text-align: left;
    padding: 18px 0;
  }

  .sightseeing__title {
    margin-bottom:calc(18px / 2);
  }

  .sightseeing__icon {
    margin-left: calc(9px / 2);
    margin-top: calc(-12.5px / 2);
  }

  .sightseeing__title span {
    font-size: calc(28px / 1.25);
    line-height:normal;
  }

  .sightseeing__icon span {
    font-size: calc(14.5px / 1.1);
    line-height:normal;
    padding: 4.5px 9px 4.5px 27px;
    text-align: center;
    letter-spacing: -0.02em;
    border-radius: 6px;
  }

  .sightseeing__icon span.spot {
    background: url(../img/icon__spot.png) 10px 55% no-repeat #E3F0E5;
    background-size: 14px;
    color:#429952;
  }

  .sightseeing__icon span.event {
    background: url(../img/icon__event.png) 10px 55% no-repeat #E3E5F0;
    background-size: 16px;
    color: #42529B;
  }

  .sightseeing__text p {
    font-size: calc(16px / 1.15);
    line-height:2;
    margin-top:calc(9px / 2);
  }


}



/* ----------------------------------------------------------

Facility Setting

---------------------------------------------------------- */
/*facility__meu*/
.facility__menu {
  padding-top: 27px;
  padding-bottom: 27px;
  top: 0;
  background: #fff;
  z-index: 123;/*
  position: sticky;*/
  border-bottom: 1px solid #ccc;
}

.facility__menu__list {
  text-align: center;
  margin: auto;
}

.facility__menu__list li {
  display: inline-block;
  margin: 0 2.25px;
}

.facility__menu__list li a {
  text-decoration: underline;
  padding: 18px 2.25px;
  text-align: center;
  font-size:15px;
  line-height: 2;
  font-weight: 600;
}

.facility__menu__list li:after {
  content: '｜';
  margin-left:4.5px;
}

  .facility__menu__list li:nth-last-child(1):after {
    content: '';
    margin-left:0;
  }

.facility__menu__list li a:hover {
  transition: 0.5s ;
  text-decoration:none;
}



@media only screen and (max-width: 960px) {
  .facility__menu {
    padding-top: calc(27px / 2);
    padding-bottom: calc(27px / 2);
  }

  .facility__menu__list {
    width: 90%;
    text-align: left;
    margin: 0;
  }

  .facility__menu__list li {
    display: inline-block;
    vertical-align: top;
    margin: 0 ;
  }

  .facility__menu__list li a {
    text-decoration: underline;
    padding: calc(18px / 2) calc(2.25px / 2);
    font-size:calc(15px / 1.1);
    line-height: 2;
  }

  .facility__menu__list li:after {
    content: '｜';
    margin-left:calc(4.5px / 4);
  }


}



/*facility__list*/
.facility__list__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.facility__list {
  padding-top: 18px;
}

  .facility__list__container.divided1 .facility__list {
    flex-basis: 100%;
  }

  .facility__list__container.divided2 .facility__list {
    flex-basis: 48%;
  }

.facility__img {
  margin: auto;
  padding:18px 0 ;
}

.facility__list p {
  font-size: 16.5px;
  line-height: 2;
  font-weight: 400;
}

.facility__movie  {
  margin-top: 9px;
}

.facility__movie iframe {
  width:100%;
  height: 500px;
}

.facility__list__title {
  /*
  text-align: center;
  margin: auto;
  */
  text-align: left;
  border-bottom: 1px solid #222;
  margin-top: 18px;
  margin-bottom: 18px;
}

.facility__list__title span {
  display: block;/*
  text-align: center;
  margin: auto;*/
  font-size: 22px;
  line-height: 2;
  font-weight: 600;
  padding-bottom: 9px;
  vertical-align: middle;
}

.facility__text__list ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

  .facility__text__list.divided1 ul li {
    flex-basis: 100%;
  }

  .facility__text__list.divided2 ul li {
    flex-basis: 48%;
  }


.facility__img img {
  border: 1px solid #ccc;
}


@media only screen and (max-width: 960px) {
  .facility__list {
    padding-top: calc(18px / 2);
  }

  .facility__list__container.divided2 .facility__list {
    flex-basis: 100%;
  }

  .facility__img {
    margin: auto;
    padding: calc(18px / 2) 0 ;
  }

  .facility__list p {
    font-size:calc(16.5px / 1.1);
    line-height: 1.789;
  }

  .facility__movie  {
    margin-top: calc(9px / 2);
  }

  .facility__movie iframe {
    width:100%;
    height:calc(500px / 2);
  }

  .facility__list__title {
    margin-top: calc(18px / 2);
    margin-bottom:calc(18px / 2);
  }

  .facility__list__title span {
    font-size: calc(22px /1.5);
    line-height: 2;
    padding-bottom: calc(9px / 2);
  }

  .facility__text__list.divided1 ul li ,
  .facility__text__list.divided2 ul li {
    flex-basis: 100%;
  }

}



/* ----------------------------------------------------------

Acces Setting

---------------------------------------------------------- */
/*home__access*/
.home__access {
  padding: 54px 0 ;
}

.home__access__container {
  padding: 36px 0 0;
}

.access__map {
  margin: auto;
  text-align: center;
}

.access__map iframe {
  width: 100%;
  height: 470px;
}

.home__access__list {
  margin: 18px auto 45px;
}

.access__title {
  text-align: center;
  margin: auto;
  border-bottom: 1px solid #222;
}

.access__title span {
  display: block;
  text-align: center;
  margin: auto;
  font-size: 24px;
  line-height: 2;
  font-weight: 600;
  padding-bottom: 9px;
  vertical-align: middle;
}

  .access__title span img {
    width: 35.5px;
    height: auto;
    margin-right: 9px;
    margin-top: -4.5px;
    vertical-align: middle;
  }

.home__access__list p {
  padding-top: 18px;
  font-size: 16.5px;
  line-height: 2;
  text-align: justify;
}



@media only screen and (max-width: 960px) {
  .home__access {
    padding: calc(54px / 2) 0 ;
  }

  .home__access__container {
    padding: calc(36px / 2) 0 0;
  }

  .access__map iframe {
    width: 100%;
    height: calc(470px / 2);
  }

  .home__access__list {
    margin: calc(18px / 2) auto calc(45px / 2);
  }

  .access__title span {
    font-size: calc(24px / 1.5);
    line-height: 2;
    padding-bottom: calc(9px / 2);
  }

  .access__title span img {
    width: calc(35.5px / 1.5);
    margin-right: calc(9px / 2);
    margin-top:calc(-4.5px / 2);
  }

  .home__access__list p {
    padding-top:calc(18px / 2);
    font-size: calc(16.5px / 1.25);
    line-height: 2;
  }


}



/*access__meu*/
.access__menu {
  padding-top: 27px;
  padding-bottom: 27px;
  top: 0;
  background: #fff;
  z-index: 123;/*
  position: sticky;*/
  border-bottom: 1px solid #ccc;
}

.access__menu__list {
  text-align: center;
  margin: auto;
}

.access__menu__list li {
  display: inline-block;
  margin: 0 2.25px;
}

.access__menu__list li a {
  text-decoration: underline;
  padding: 18px 2.25px;
  text-align: center;
  font-size:15px;
  line-height: 2;
  font-weight: 600;
}

.access__menu__list li:after {
  content: '｜';
  margin-left:4.5px;
}

  .access__menu__list li:nth-last-child(1):after {
    content: '';
    margin-left:0;
  }

.access__menu__list li a:hover {
  transition: 0.5s ;
  text-decoration:none;
}


.access__introduction,
.access__caution {
  font-size: 16px;
  margin-top: 4.5px;
  line-height: 2;
  text-align: center;
}

@media only screen and (max-width: 960px) {
  .access__menu {
    padding-top: calc(27px / 2);
    padding-bottom:calc(27px / 2);
  }

  .access__menu__list {
    width: 90%;
    text-align: left;
    margin: 0;
  }

  .access__menu__list li {
    display: inline-block;
    vertical-align: top;
    margin: 0 ;
  }

  .access__menu__list li a {
    padding: calc(18px / 2) calc(2.25px / 2);
    font-size:calc(15px / 1.1);
    line-height: 2;
  }

  .access__menu__list li:after {
    margin-left:calc(4.5px / 2);
  }
  
  .access__introduction,
  .access__caution {
    font-size: calc(16px / 1.1);
    margin-top: calc(4.5px / 2);
    text-align: left;
    line-height: 2;
  }

}


/*access__list*/
.access__list__container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
}

.access__list {
  padding-top: 18px;
  padding-bottom: 18px;
}

  .access__list__container.divided1 .access__list {
    flex-basis: 100%;
  }

  .access__list__container.divided2 .access__list {
    flex-basis: 48%;
  }

  .access__list__container.divided3 .access__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: top;
  }

  .access__list__container.divided3 .access__list li {
    flex-basis: 32%;
    margin:0.5% 0%;
    padding-top: 18px;
  }

  .access__list__container.divided3 .access__list li:nth-child(3n-1) {
    margin:0.5% 2%;
  }

  .access__list__container.divided3 .access__list li span {
    display: block;
    font-size: 16px;
    line-height: 2;
    margin-top: 9px;
  }

.home__access__list .btn__link,
.access__list .btn__link {
  margin: 18px auto auto;
  text-align: center;
}

.home__access__list .btn__link a ,
.access__list .btn__link a {
  width: 320px;
  padding: 9px;
  margin:  auto;
  text-align: center;
}


.access__list p {
  margin-bottom: 18px;
}

@media only screen and (max-width: 960px) {
  .access__list {
    padding-top: calc(18px / 2);
    padding-bottom:calc(18px / 2);
  }

  .access__list__container.divided1 .access__list {
    flex-basis: 100%;
  }

  .access__list__container.divided2 .access__list {
    flex-basis: 48%;
  }

  .access__list__container.divided3 .access__list li,
  .access__list__container.divided3 .access__list li:nth-child(3n-1) {
    flex-basis: 48.5%;
    margin:0;
    padding-top: calc(18px / 2);
  }

  .access__list__container.divided3 .access__list li:nth-child(odd) {
    margin: 1.5% 1.5% 1.5% 0;
  }

  .access__list__container.divided3 .access__list li:nth-child(even) {
    margin: 1.5% 0 1.5% 1.5%;
  }

  .access__list__container.divided3 .access__list li span {
    font-size: calc(16px / 1.25) ;
    line-height: 2;
    margin-top: calc(9px / 2);
  }

  .home__access__list .btn__link,
  .access__list .btn__link {
    margin: calc(18px / 2) auto auto;
  }

  .home__access__list .btn__link a ,
  .access__list .btn__link a {
    width: 100%;
    padding: calc(9px / 2);
  }

}


/*shuttle__service*/
.shuttle__service {
  margin-top: 27px;
  background: #f4f4f4;
  padding: 36px;
}

.shuttle__service__title {
  font-weight: bold;
  text-align: center;
  margin-top: auto;
  font-size: 130%;
  margin-bottom:13.5px;
}

.shuttle__service p {
  margin-bottom: 18px;
}


/* ----------------------------------------------------------

Reservation Setting

---------------------------------------------------------- */
/*reservation*/
.reservation__list {
  padding-top: 18px;
}

.reservation__img {
  margin: auto;
  padding:18px 0 ;
}

.reservation__list p {
  font-size: 16.5px;
  line-height: 2;
  font-weight: 400;
}

.reservation__menu {
  padding-top: 72px;
  border-bottom: 1px solid #222;
  margin-bottom: -54px;
  z-index: 1234;
  position: relative;
}

.reservation__menu__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: top;
  widows: 100%;
}

.reservation__menu__list li {
  flex-basis: 48.5%;
}

.reservation__menu__list li span {
  display: block;
  border-radius: 18px 18px 0 0;
  background: transparent;
  text-align: center;
  margin: auto;
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  color: #222;
  padding: 22.5px 54px;
  cursor: pointer;
}

  .reservation__menu__list li span:hover,
  .reservation__menu__list li span.select {
    display: block;
    background: #42529B;
    transition: 0.3s;
    color: #fff;
  }

.reservation .section__cta a  {
  width: 468px;
  text-align: center;
  margin: auto;
  padding: 36px ;
  font-size: 26px;
  line-height: 1;
}



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

}



/* ----------------------------------------------------------

Information Setting

---------------------------------------------------------- */
/*news__container*/
.news__list  {
  padding-bottom: 18px;
}

.news__list dl {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: top;
  border-bottom: 1px solid #ccc;
  padding: 0;
}

  .news__list dl:nth-last-child(1) {
    border-bottom: none
  }

.news__list dl dt {
  flex-basis:14%;
  padding: 36px 0;
  font-weight: 600;
}

.news__list dl dd {
  flex-basis: 86%;
  padding: 36px 0;
}

.news__list dl dd a {
  transition: 0.3s;
}

.news__list dl dd a:hover,
.news__list dl dd a:focus {
  text-decoration: none!important;
}

@media only screen and (max-width: 960px) {
  .home .news__container {
    padding: 18px 0 36px;
  }

  .home__information .btn__link  {
    width: 100%;
    margin: 18px auto auto;
  }

  .home__information .btn__link a {
    padding:9px ;
    background-size:8px;
  }

  .news__list  {
    padding-bottom: 9px;
  }

  .news__list dl dt {
    flex-basis:100%;
    padding: 18px 0 0;
  }

  .news__list dl dd {
    flex-basis: 100%;
    padding:4.5px 0 18px 0;
  }

}

/*single-news*/
.single__date {
  display: block;
  font-family: 'Poppins', serif;
  font-size: 16px;
  line-height: 1;
  color: #939292;
  margin-top: 36px;
  margin-bottom: 36px;
}

.entry__content p {
  margin-bottom: 36px;
}

.entry__thumbnail {
  margin-bottom: 36px;
}

.entry__thumbnail img {
  width: 100%;
}

.entry__content figure {
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.entry__content .wp-element-caption {
  margin: 9px 0 0 ;
  color: #666;
  font-size: smaller;
}

.section.single__related {
  padding-top: 72px;
}

.related__news__container {
  padding-top: 18px;
  margin-bottom: -18px;
}

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

}


/*wp-pagenavi*/
.pagination {
  position: relative;
  z-index: 11
}

.wp-pagenavi  {
  clear:both;
  margin:auto;
  text-align:center;
}

.wp-pagenavi a, .wp-pagenavi span {
  text-decoration:none;
  color:#455296;
  background-color:#fff;
  padding:0.75em;
  margin:0 -1px;
  white-space:nowrap;
  border-radius:0;
  -webkit-transition:0.2s ease-in-out;
  -moz-transition:0.2s ease-in-out;
  -o-transition:0.2s ease-in-out;
  transition:0.2s ease-in-out;
  text-align:center;
  border:1px solid #455296;
}

.wp-pagenavi a:hover  {
  background-color:#455296;
  border-color:#455296;
  color:#fff
}

.wp-pagenavi span.current {
  color:#fff;
  font-weight:bold;
  background-color:#455296;
  border-color:#455296
}

@media only screen and (max-width: 960px) {
  .wp-pagenavi a, .wp-pagenavi span {
    padding:8px 10px
  }
} 


/* ----------------------------------------------------------

Footer Setting

---------------------------------------------------------- */
/*footer*/
.footer__container {
  position: relative;
  width: 100%;
  padding: 90px 0 45px;
  background: #42529B;
  position: relative;
}

.footer__logo   {
  margin: auto auto 36px;
  text-align: center;
}

  .footer__logo img  {
    width: 440px;
    height: auto;
  }

.footer__text   {
  text-align: center;
  margin: auto;
  color: #fff;
  font-weight: 300;
  padding-top: 18px;
}

.footer__address   {
  margin: 18px auto;
  text-align: center;
}

.footer__address span   {
  display: block;
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.05em;
}

.footer__tel {
  margin: 18px auto;
  text-align: center;
}

.footer__tel a {
  text-decoration: none;
  color: #fff;
  font-weight: 400;
}

.footer__tel span {
  display: inline-block;
  font-size: 36px;
  line-height: normal;
  letter-spacing: -0.015em;
  vertical-align: middle;
  font-family: 'Zen Old Mincho', serif;
}

.footer__tel img {
  display: inline-block;
  vertical-align: middle;
  width: 36px;
  pointer-events: none;
  margin-top: 6px;
  margin-right: 9px;
}

.footer__tel span small {
  display: inline-block;
  font-size: 16px;
  line-height: normal;
  vertical-align: middle;
  letter-spacing: 0.015em;
  margin-left: -9px;
}

.footer__btn {
  margin: 27px auto ;
}

.footer__btn a  {
  width: 480px;
  text-align: center;
  margin: auto;
  color: #fff;
  padding: 22.5px 36px;
  font-size: 20px;
  line-height: 1;
  box-shadow: 0 0 8px 4px rgba(0,0,0,0.1);
  background: #fff;
  padding-left: 72px;
}

.footer__btn a img  {
  display: inline-block;
  vertical-align: middle;
  width: 23px;
  margin-right: 9px;
}

.footer__btn a span.ja  {
  display: inline-block;
  vertical-align: middle;
  font-size: 24px;
  color: rgba(66,82,155,1);
  font-weight: 500;
}

.footer__btn a span.en  {
  display: block;
  font-size: 12px;
  color: rgba(66,82,155,0.5);
  letter-spacing: 0.1em;
  margin-top: 9px;
  font-weight: 400;
}

.footer__caution   {
  margin: 18px auto;
  text-align: center;
  font-size: 14px;
  line-height: normal;
  font-weight: 300;
  letter-spacing: 0.05em;
}

.footer__bnr__list {
  width: 80%;
  margin: 18px auto;
}

.footer__bnr__list li {
  width: 31%;
  margin: 0 0.5%;
  display: inline-block;
  vertical-align: middle;
}

.footer__copyright   {
  font-style: normal;
  margin: 36px auto ;
  text-align: center;
  font-size: 14px;
  line-height: normal;
  font-weight: 300;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.05em;
}



@media only screen and (max-width: 960px) {
  .footer__container {
    padding: calc(90px / 2) 0 calc(45px / 2);
  }

  .footer__logo   {
    margin: auto auto calc(36px / 2);
  }

  .footer__logo img  {
    width: calc(440px / 1.5);;
    height: auto;
  }

  .footer__text   {
    padding-top: calc(18px / 2);
    padding-bottom:90px;
  }

  .footer__address   {
    margin: calc(18px / 2) auto;
  }

  .footer__address span   {
    font-size: calc(16px / 1.1);
    letter-spacing: 0.025em;
  }

  .footer__tel {
    margin: calc(18px / 2) auto;
  }

  .footer__tel span {
    display: inline-block;
    vertical-align: middle;
    font-size: calc(36px * 1.35);
    letter-spacing: -0.015em;
    padding-left: 0;
    text-align: center;
    background:none;
    position: relative;
  }

  .footer__tel img {
    display: inline-block;
    vertical-align: middle;
    width: 29px;
    pointer-events: none;
    margin-top: -13.5px;
    margin-right: 9px;
  }

  .footer__tel span small {
    display: block;
    font-size: calc(16px / 1.1);
    letter-spacing: 0.015em;
    margin-left:calc(-9px / 2);
  }

  .footer__btn a  {
    width: 100%;
    padding: calc(22.5px / 1.15) calc(36px / 4);/*
    font-size: calc(20px / 1.25);
    background: url(../img/icon__calendar.png) 123px 36.5% no-repeat #fff;
    background-size: calc(23px / 1.5);*/
    padding-left: calc(72px / 2);
  }

  .footer__btn {
    margin: calc(27px / 2) auto;
  }

  .footer__btn a img  {
    width: calc(23px / 1.15);
    margin-right: calc(9px / 1.5);
  }

  .footer__btn a span.ja  {
    font-size: calc(24px * 1);
  }

  .footer__btn a span.en  {
    font-size: calc(12px * 1.1);
    letter-spacing: 0.05em;
    margin-top: calc(9px / 1);
  }
/*


  .footer__btn a span.ja  {
    font-size: calc(22px / 1);
  }

  .footer__btn a span.en  {
    font-size: 12px;
    letter-spacing: 0.05em;
    margin-top: calc(9px / 2);
  }
*/
  .footer__caution   {
    margin: calc(18px / 2) auto;
    font-size: calc(14px / 1.1);
    letter-spacing: 0.025em;
  }

  .footer__bnr__list {
    width:45%;
    margin:calc(18px / 2) auto;
  }

  .footer__bnr__list li {
    width: 100%;
    margin: 0 0.25%;
  }

  .footer__copyright   {
    font-style: normal;
    margin: calc(36px / 2) auto ;
    font-size: calc(14px / 1.1);
    letter-spacing: 0.025em;
  }

}

/*pagetop*/
.pagetop {
  position: fixed;
  bottom:20px;
  left: calc(100% - 160px);
  width: 140px;
  z-index: 1234;
}

.pagetop a {
  display: block;
  text-align: center;
  margin: auto;
  background: #999;
  color: #fff;
  font-size: 90%;
  padding: 4px 0;
  font-weight: bold;
  text-decoration: none;
  filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25));
  border-radius: 10px;
}


/*footer__nav*/
.footer__nav__pc {
  position: fixed;
  bottom:72px;
  left: calc(100% - 170px);
  width: 100%;
  z-index: 1234;
}

.footer__nav__sp {
  display: none;
}

.footer__nav__pc a {
  display: block;
}

  .footer__nav__pc img {
    width: 150px;
    height: auto;
    filter: drop-shadow(0 2px 10px rgba(0,0,0,0.25));
    background: #42529B;
    border-radius: 100%;
  }

@media only screen and (max-width: 960px) {
  .footer__nav__pc {
    display: none
  }

  .footer__nav__sp {
    position: fixed;
    width: 100%;
    z-index: 1234;
    display: block;
    height: 80px;
  }

  .footer__nav__sp ul  {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }

  .footer__nav__sp ul li.footer__tel  {
    flex-basis: 30%;
  }
  
  .footer__nav__sp ul li.footer__reservation  {
    flex-basis: 55%;
  }
  
  .footer__nav__sp ul li.footer__pagetop  {
    flex-basis: 15%;
  }

  .footer__nav__sp ul li a {
    display: block;
    text-decoration: none;
    height: 100px;
    padding-top:18px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
  }

  .footer__nav__sp ul li img {
    max-width:22.5px;
    vertical-align: middle;
    margin-top:-4.5px;
    margin-right: 4.5px;
  }

  .footer__nav__sp ul li.footer__tel a  {
    background-color: #42529B;
    color: #fff;
    line-height:1.78;
    font-size: 16px;
    font-weight: 600;
    border-right: 1px solid #fff;
  }

  .footer__nav__sp ul li.footer__reservation a  {
    background-color: #42529B;
    color: #fff;
    line-height:2;
    font-size: 16px;
    font-weight: 600;
  }
  
  .footer__nav__sp ul li.footer__pagetop a {
    background-color: #999;
    color: #fff;
    text-align: center;
    margin: auto;
  }

  .footer__nav__sp ul li.footer__pagetop a img {
    text-align: center;
    margin: auto;
  }


}

