@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Roboto+Condensed:300");
/*===================================
	共通レイアウト
=====================================*/
/*　　　global
-------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  height: 100%;
  font: 400 62.5% "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: #000;
}

body {
  padding: 0;
  margin: 0;
}

body,
html {
  overflow-x: hidden;
}

main {
  overflow: hidden;
}

a {
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

a:hover {
  opacity: 0.8;
}

.grecaptcha-badge {
  opacity: 0;
  z-index: -1;
}

/*　最大幅設定　*/
[data-viewport="sm"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 600px) {
  [data-viewport="sm"] {
    padding: 0 15px;
  }
}

[data-viewport="msd"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 600px) {
  [data-viewport="msd"] {
    padding: 0 15px;
  }
}

[data-viewport="md"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 600px) {
  [data-viewport="md"] {
    padding: 0 15px;
  }
}

[data-viewport="lg"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1150px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 600px) {
  [data-viewport="lg"] {
    padding: 0 15px;
  }
}

[data-viewport="ll"] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}

@media screen and (max-width: 600px) {
  [data-viewport="ll"] {
    padding: 0 20px;
  }
}

/*　アスペクト比固定　*/
[data-box] {
  position: relative;
  display: block;
  width: 100%;
  height: auto;
  background: no-repeat center center;
  background-size: cover;
}

[data-box]::before {
  content: "";
  display: block;
}

[data-box] .inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
}

/*　　　header
-------------------------------------*/
header {
  padding-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 999px) {
  header {
    padding-top: 0;
  }
}

header .logo {
  padding: 10px 15px;
}

header .logo a {
  display: block;
}

header .logo a img {
  width: 200px;
}

@media screen and (max-width: 1149px) {
  header .logo a img {
    width: 180px;
  }
}

@media screen and (max-width: 999px) {
  header .logo a img {
    width: 165px;
  }
}

@media screen and (max-width: 600px) {
  header .logo a img {
    width: 120px;
  }
}

header .nav-wrap {
  padding-right: 10px;
}

header .nav-wrap h1 {
  margin: 0 0 15px;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: lighter;
  letter-spacing: 1px;
  color: #a8a8a8;
  text-align: right;
}

@media screen and (max-width: 1149px) {
  header .nav-wrap h1 {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap h1 {
    display: none;
  }
}

header .nav-wrap .global-nav .button_container {
  position: fixed;
  top: 20px;
  right: 15px;
  height: 27px;
  width: 35px;
  cursor: pointer;
  z-index: 100;
  -webkit-transition: opacity .25s ease;
  -o-transition: opacity .25s ease;
  transition: opacity .25s ease;
}

@media screen and (min-width: 1000px) {
  header .nav-wrap .global-nav .button_container {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  header .nav-wrap .global-nav .button_container {
    top: 18px;
  }
}

header .nav-wrap .global-nav .button_container:hover {
  opacity: .7;
}

header .nav-wrap .global-nav .button_container.active .top {
  -webkit-transform: translateY(11px) translateX(0) rotate(45deg);
      -ms-transform: translateY(11px) translateX(0) rotate(45deg);
          transform: translateY(11px) translateX(0) rotate(45deg);
  background: #fff;
}

header .nav-wrap .global-nav .button_container.active .middle {
  opacity: 0;
  background: #fff;
}

header .nav-wrap .global-nav .button_container.active .bottom {
  -webkit-transform: translateY(-11px) translateX(0) rotate(-45deg);
      -ms-transform: translateY(-11px) translateX(0) rotate(-45deg);
          transform: translateY(-11px) translateX(0) rotate(-45deg);
  background: #fff;
}

header .nav-wrap .global-nav .button_container span {
  background: #6f6f6f;
  border: none;
  height: 3px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transition: all .35s ease;
  -o-transition: all .35s ease;
  transition: all .35s ease;
  cursor: pointer;
}

header .nav-wrap .global-nav .button_container span:nth-of-type(2) {
  top: 11px;
}

header .nav-wrap .global-nav .button_container span:nth-of-type(3) {
  top: 22px;
}

@media screen and (max-width: 999px) {
  header .nav-wrap .global-nav .overlay {
    position: fixed;
    background: #000;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: opacity .35s, visibility .35s, height .35s;
    -o-transition: opacity .35s, visibility .35s, height .35s;
    transition: opacity .35s, visibility .35s, height .35s;
    overflow: hidden;
  }
  header .nav-wrap .global-nav .overlay.open {
    opacity: .9;
    visibility: visible;
    height: 100%;
    z-index: 50;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list li {
    -webkit-animation: fadeInRight .5s ease forwards;
            animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .35s;
            animation-delay: .35s;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list li:nth-of-type(2) {
    -webkit-animation-delay: .4s;
            animation-delay: .4s;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list li:nth-of-type(3) {
    -webkit-animation-delay: .45s;
            animation-delay: .45s;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list li:nth-of-type(4) {
    -webkit-animation-delay: .50s;
            animation-delay: .50s;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list li:nth-of-type(5) {
    -webkit-animation-delay: .55s;
            animation-delay: .55s;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list li:nth-of-type(6) {
    -webkit-animation-delay: .60s;
            animation-delay: .60s;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list li:nth-of-type(7) {
    -webkit-animation-delay: .65s;
            animation-delay: .65s;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list li:nth-of-type(8) {
    -webkit-animation-delay: .70s;
            animation-delay: .70s;
  }
  header .nav-wrap .global-nav .overlay.open ul.nav-list_sub {
    -webkit-animation: fadeInRight .5s ease forwards;
            animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .75s;
            animation-delay: .75s;
  }
  header .nav-wrap .global-nav .overlay.open ul.sns-list {
    -webkit-animation: fadeInRight .5s ease forwards;
            animation: fadeInRight .5s ease forwards;
    -webkit-animation-delay: .8s;
            animation-delay: .8s;
  }
}

header .nav-wrap nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav {
    position: relative;
    display: block;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    text-align: center;
  }
}

header .nav-wrap nav ul {
  width: 100%;
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul {
    width: auto;
    margin: 0 auto;
    display: inline-block;
    position: relative;
    text-align: center;
  }
}

header .nav-wrap nav ul.sns-list {
  display: none;
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.sns-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 20px;
    opacity: 0;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.sns-list li {
    width: 9%;
    max-width: 50px;
    margin: 0;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.sns-list li:not(:last-child) {
    margin-right: 30px;
  }
}

@media screen and (max-width: 600px) {
  header .nav-wrap nav ul.sns-list li:not(:last-child) {
    margin-right: 5%;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.sns-list li a {
    display: block;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.sns-list li a img {
    width: 100%;
  }
}

header .nav-wrap nav ul.nav-list {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}

header .nav-wrap nav ul.nav-list li {
  font-size: 17px;
  font-size: 1.7rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 1px;
}

@media screen and (max-width: 1149px) {
  header .nav-wrap nav ul.nav-list li {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.nav-list li {
    display: block;
    margin: 0;
    font-size: 20px;
    font-size: 2rem;
    position: relative;
    opacity: 0;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.nav-list li {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

header .nav-wrap nav ul.nav-list li:not(:first-child) {
  margin-left: 1.7em;
}

@media screen and (max-width: 1149px) {
  header .nav-wrap nav ul.nav-list li:not(:first-child) {
    margin-left: 1.5em;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.nav-list li:not(:first-child) {
    margin: 20px 0 0;
  }
}

@media screen and (min-width: 1000px) {
  header .nav-wrap nav ul.nav-list li.pc-none {
    display: none;
  }
}

header .nav-wrap nav ul.nav-list li a {
  display: block;
  text-decoration: none;
  color: #000000;
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.nav-list li a {
    display: block;
    position: relative;
    color: #ffffff;
  }
  header .nav-wrap nav ul.nav-list li a:hover:after, header .nav-wrap nav ul.nav-list li a:focus:after, header .nav-wrap nav ul.nav-list li a:active:after {
    width: 100%;
  }
  header .nav-wrap nav ul.nav-list li a:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 2px;
    background: #ffffff;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
  }
}

header .nav-wrap nav ul.nav-list_sub {
  -webkit-box-ordinal-group: 1;
      -ms-flex-order: 0;
          order: 0;
  margin-bottom: 10px;
}

header .nav-wrap nav ul.nav-list_sub li {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

header .nav-wrap nav ul.nav-list_sub li.lang {
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

header .nav-wrap nav ul.nav-list_sub li a {
  text-decoration: none;
  color: #000000;
}

@media screen and (min-width: 1000px) {
  header .nav-wrap nav ul.nav-list_sub li {
    font-size: 14px;
    font-size: 1.4rem;
  }
  header .nav-wrap nav ul.nav-list_sub li:not(:last-child) {
    margin-right: 20px;
  }
  header .nav-wrap nav ul.nav-list_sub li.lang {
    font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
    font-size: 15px;
    font-size: 1.5rem;
    margin-top: -1px;
  }
  header .nav-wrap nav ul.nav-list_sub li.lang a {
    display: inline-block;
    padding: 4px 15px;
    color: #fff;
    background-color: #000;
    border-radius: 10px;
  }
}

@media screen and (max-width: 999px) {
  header .nav-wrap nav ul.nav-list_sub {
    display: block;
    margin: 20px 0;
    opacity: 0;
  }
  header .nav-wrap nav ul.nav-list_sub li {
    font-size: 18px;
    font-size: 1.8rem;
    position: relative;
  }
  header .nav-wrap nav ul.nav-list_sub li:not(:last-child) {
    margin-bottom: 20px;
  }
  header .nav-wrap nav ul.nav-list_sub li.lang {
    font-size: 20px;
    font-size: 2rem;
  }
  header .nav-wrap nav ul.nav-list_sub li a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: #fff;
  }
  header .nav-wrap nav ul.nav-list_sub li a:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    width: 0%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    height: 2px;
    background: #ffffff;
    -webkit-transition: .35s;
    -o-transition: .35s;
    transition: .35s;
  }
  header .nav-wrap nav ul.nav-list_sub li a:hover:after, header .nav-wrap nav ul.nav-list_sub li a:focus:after, header .nav-wrap nav ul.nav-list_sub li a:active:after {
    width: 100%;
  }
}

/*　　　main
-------------------------------------*/
#content {
  padding: 80px 0 150px;
}

@media screen and (max-width: 999px) {
  #content {
    padding: 50px 0 100px;
  }
}

@media screen and (max-width: 600px) {
  #content {
    padding: 35px 0 70px;
  }
}

.page-ttl {
  margin: 0 0 20px;
  font-size: 28px;
  font-size: 2.8rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: lighter;
  letter-spacing: 10px;
  text-indent: 10px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .page-ttl {
    font-size: 25px;
    font-size: 2.5rem;
  }
}

@media screen and (max-width: 600px) {
  .page-ttl {
    font-size: 20px;
    font-size: 2rem;
  }
}

.page-ttl span {
  position: relative;
  display: block;
  margin-top: 10px;
  padding-top: 10px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "Crimson Text", serif;
  letter-spacing: 2px;
  text-indent: 2px;
}

@media screen and (max-width: 999px) {
  .page-ttl span {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .page-ttl span {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.page-ttl span:before {
  position: absolute;
  content: "";
  width: 60px;
  height: 1px;
  background-color: #000000;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}

/*　　　news-list
-------------------------------------*/
.news-list {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 999px) {
  .news-list {
    margin-top: 15px;
  }
}

@media screen and (max-width: 600px) {
  .news-list {
    display: block;
  }
}

.news-list li {
  width: 32%;
}

.news-list li:nth-child(3n+2) {
  margin: 0 2%;
}

@media screen and (max-width: 600px) {
  .news-list li:nth-child(3n+2) {
    margin: 0 0 20px;
  }
}

@media screen and (max-width: 600px) {
  .news-list li {
    width: 100%;
    margin-bottom: 20px;
  }
}

.news-list li a {
  display: block;
  text-decoration: none;
}

@media screen and (max-width: 600px) {
  .news-list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.news-list li .image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
}

@media screen and (max-width: 600px) {
  .news-list li .image {
    width: 130px;
  }
}

.news-list li .image:before {
  content: "";
  display: block;
  padding-bottom: 72%;
}

.news-list li span {
  display: block;
}

.news-list li p {
  display: block;
  margin: 0;
}

@media screen and (max-width: 600px) {
  .news-list li p {
    width: calc(100% - 140px);
  }
}

.news-list li .date {
  margin: 8px 0 5px;
  font-size: 20px;
  font-size: 2rem;
  font-family: "Crimson Text", serif;
  letter-spacing: 2px;
  color: #4d4d4d;
}

@media screen and (max-width: 999px) {
  .news-list li .date {
    margin: 5px 0 2px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .news-list li .date {
    margin-top: 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.news-list li .ttl {
  margin: 0;
  font-size: 20px;
  font-size: 2rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 2px;
  font-weight: 400;
  color: #000000;
}

@media screen and (max-width: 999px) {
  .news-list li .ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .news-list li .ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*　　　news-list-style02
-------------------------------------*/
.news-list-style02 {
  list-style: none;
  margin: 20px 0 0;
  padding: 0;
}

.news-list-style02 li {
  padding: 2em 0;
  border-bottom: 1px solid #bdbdbd;
}

.news-list-style02 li:first-child {
  border-top: 1px solid #bdbdbd;
}

.news-list-style02 li a {
  display: block;
  text-decoration: none;
}

.news-list-style02 li a p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
}

.news-list-style02 li a p span {
  display: block;
}

.news-list-style02 li a p span.date {
  width: 120px;
  margin: 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "Crimson Text", serif;
  letter-spacing: 2px;
  line-height: 1.2;
  color: #4d4d4d;
}

@media screen and (max-width: 999px) {
  .news-list-style02 li a p span.date {
    width: 100px;
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .news-list-style02 li a p span.date {
    width: 90px;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.news-list-style02 li a p span.cat {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  max-width: calc(100% - 120px);
  display: inline-block;
  margin: 0;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 2px;
  line-height: 1.2;
  font-weight: 400;
  color: #4d4d4d;
  border: 1px solid #4d4d4d;
  padding: .25em .5em;
}

@media screen and (max-width: 999px) {
  .news-list-style02 li a p span.cat {
    max-width: calc(100% - 100px);
    font-size: 13px;
    font-size: 1.3rem;
  }
}

@media screen and (max-width: 600px) {
  .news-list-style02 li a p span.cat {
    max-width: calc(100% - 90px);
    font-size: 12px;
    font-size: 1.2rem;
  }
}

.news-list-style02 li a p span.ttl {
  width: 100%;
  margin: 10px 0 0;
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 2px;
  line-height: 1.6;
  font-weight: 400;
  color: #000000;
}

@media screen and (max-width: 999px) {
  .news-list-style02 li a p span.ttl {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 600px) {
  .news-list-style02 li a p span.ttl {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.news-list-style02 li a:hover p span.ttl {
  text-decoration: underline;
}

/*     spot-select
-------------------------------------*/
.spot-select {
  padding-top: 30px;
}

@media screen and (max-width: 600px) {
  .spot-select {
    padding-top: 10px;
  }
}

.spot-select ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .spot-select ul {
    padding: 0 10px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}

@media screen and (max-width: 600px) {
  .spot-select ul {
    padding: 0;
  }
}

.spot-select ul li {
  padding: 0 10px;
  font-size: 17px;
  font-size: 1.7rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  border-left: solid 1px #5c5c5c;
}

@media screen and (max-width: 999px) {
  .spot-select ul li {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 25%;
    margin-bottom: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    border-left: none;
  }
  .spot-select ul li:before {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #5c5c5c;
    top: 0;
    left: 0;
  }
  .spot-select ul li:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 100%;
    background-color: #5c5c5c;
    top: 0;
    right: -1px;
  }
}

@media screen and (max-width: 600px) {
  .spot-select ul li {
    width: calc(100% / 3);
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.spot-select ul li:last-child {
  border-right: solid 1px #5c5c5c;
}

@media screen and (max-width: 999px) {
  .spot-select ul li:last-child {
    border: none;
  }
}

.spot-select ul li a {
  display: block;
  width: 100%;
  padding: 25px 20px;
  color: #000000;
  text-decoration: none;
}

@media screen and (max-width: 999px) {
  .spot-select ul li a {
    padding: 15px 0;
  }
}

@media screen and (max-width: 600px) {
  .spot-select ul li a {
    padding: 10px 0;
  }
}

.spot-select ul li a.active {
  background-color: #f1f1f1;
}

.spot-select ul li a:hover {
  opacity: 1;
  background-color: #f1f1f1;
}

/*     select-box
-------------------------------------*/
.select-box .refine {
  margin: 50px 1.15% 0;
  padding: 35px 50px;
  background-color: #f1f1f1;
}

@media screen and (max-width: 999px) {
  .select-box .refine {
    margin: 40px 1.15% 0;
    padding: 25px 35px;
  }
}

@media screen and (max-width: 600px) {
  .select-box .refine {
    margin: 20px 0 0;
    padding: 20px;
  }
}

.select-box .refine .in-inn {
  padding-top: 30px;
}

@media screen and (max-width: 600px) {
  .select-box .refine .in-inn {
    padding-top: 20px;
  }
}

.select-box .refine .caption {
  position: relative;
  margin: 0 0 10px;
  padding-left: 1.5em;
  font-size: 19px;
  font-size: 1.9rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 999px) {
  .select-box .refine .caption {
    font-size: 17px;
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 600px) {
  .select-box .refine .caption {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.select-box .refine .caption:before {
  position: absolute;
  content: "";
  background-image: url(../img/common/icon_refine.svg);
  background-size: cover;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 999px) {
  .select-box .refine .caption:before {
    width: 19px;
    height: 19px;
  }
}

@media screen and (max-width: 600px) {
  .select-box .refine .caption:before {
    width: 17px;
    height: 17px;
  }
}

.select-box .refine .controls div {
  margin: 0;
  padding: 0;
  border: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.select-box .refine .controls div button {
  position: relative;
  margin: 5px 0;
  padding: 0;
  padding-left: 2.2em;
  cursor: pointer;
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 1px;
  background-color: transparent;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 999px) {
  .select-box .refine .controls div button {
    padding-left: 2em;
    font-size: 13px;
    font-size: 1.3rem;
  }
}

.select-box .refine .controls div button:not(:last-child) {
  margin-right: 30px;
}

@media screen and (max-width: 999px) {
  .select-box .refine .controls div button:not(:last-child) {
    margin-right: 25px;
  }
}

.select-box .refine .controls div button:before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 22px;
  height: 22px;
  background-color: #ffffff;
}

@media screen and (max-width: 999px) {
  .select-box .refine .controls div button:before {
    width: 18px;
    height: 18px;
  }
}

.select-box .refine .controls div button.mixitup-control-active:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 4.5px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #000000;
}

@media screen and (max-width: 999px) {
  .select-box .refine .controls div button.mixitup-control-active:after {
    left: 4px;
    width: 10px;
    height: 10px;
  }
}

.select-box .spot-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 60px 0;
}

@media screen and (max-width: 600px) {
  .select-box .spot-list {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 30px 0;
  }
}

.select-box .spot-list .spot {
  width: 31%;
  margin-bottom: 30px;
  margin-left: calc(7% / 6);
  margin-right: calc(7% / 6);
}

@media screen and (max-width: 600px) {
  .select-box .spot-list .spot {
    width: 48%;
    margin: 0 0 20px;
  }
}

.select-box .spot-list .spot a {
  display: block;
  text-decoration: none;
}

.select-box .spot-list .spot a .image {
  position: relative;
  display: block;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.select-box .spot-list .spot a .image:before {
  content: "";
  display: block;
  padding-top: 64.5%;
}

.select-box .spot-list .spot a .text {
  display: block;
  margin: 10px 0;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: #000000;
}

@media screen and (max-width: 600px) {
  .select-box .spot-list .spot a .text {
    margin: 5px 0;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*     livecam
-------------------------------------*/
.livecam .detail {
  padding-top: 50px;
}

@media screen and (max-width: 999px) {
  .livecam .detail {
    padding: 40px 10px 0;
  }
}

@media screen and (max-width: 600px) {
  .livecam .detail {
    padding: 15px 0 0;
  }
}

.livecam .detail .intro {
  margin: 0 0 50px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 2;
  letter-spacing: .5px;
}

@media screen and (max-width: 999px) {
  .livecam .detail .intro {
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .livecam .detail .intro {
    margin-bottom: 25px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.8;
  }
}

.livecam .detail ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.livecam .detail ul li {
  width: 47%;
  margin-bottom: 60px;
}

@media screen and (max-width: 999px) {
  .livecam .detail ul li {
    width: 48%;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .livecam .detail ul li {
    width: 100%;
  }
}

.livecam .detail ul li .lazyload {
  display: block;
  margin-bottom: 10px;
}

.livecam .detail ul li .spot {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 26px;
  font-size: 2.6rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 5px;
  color: #000;
}

@media screen and (max-width: 999px) {
  .livecam .detail ul li .spot {
    font-size: 22px;
    font-size: 2.2rem;
  }
}

@media screen and (max-width: 600px) {
  .livecam .detail ul li .spot {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

.livecam .detail ul li .spot:hover {
  text-decoration: none;
}

.livecam .detail ul li p {
  margin: 0;
  font-size: 15px;
  font-size: 1.5rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 600px) {
  .livecam .detail ul li p {
    font-size: 14px;
    font-size: 1.4rem;
  }
}

/*     banner
-------------------------------------*/
.banner {
  background-color: #000000;
}

.banner ul {
  list-style: none;
  margin: 0;
  padding: 65px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

@media screen and (max-width: 600px) {
  .banner ul {
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}

.banner ul li {
  width: 23.5%;
  margin: 1% .75%;
}

@media screen and (max-width: 600px) {
  .banner ul li {
    width: 48%;
    margin: 1%;
  }
}

.banner ul li a {
  display: block;
}

/*     banner
-------------------------------------*/
.wpcf7-form-control-wrap.recaptcha {
  display: block;
  margin-top: 25px;
}

/*　　　footer
-------------------------------------*/
footer {
  padding: 50px 0 20px;
  text-align: center;
}

footer .logo {
  width: 75px;
  margin: auto;
  padding-bottom: 60px;
}

footer .logo a {
  display: block;
}

footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

footer ul li {
  margin-bottom: 25px;
  padding: 0 10px;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
}

footer ul li:not(:last-child) {
  border-right: solid 1px #000000;
}

footer ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
}

footer ul li a:hover {
  text-decoration: underline;
}

footer .project {
  padding-bottom: 10px;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

footer .corporation {
  font-size: 18px;
  font-size: 1.8rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 2px;
  text-indent: 2px;
}

footer .info {
  padding-top: 10px;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 1px;
  text-indent: 1px;
}

footer .copy {
  padding-top: 50px;
  font-size: 12px;
  font-size: 1.2rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.8;
  letter-spacing: 1px;
  text-indent: 1px;
}

/*===================================
	共通コンポーネント
=====================================*/
/*　　　selection
-------------------------------------*/
::-moz-selection {
  color: white;
  background-color: #231815;
}
::selection {
  color: white;
  background-color: #231815;
}

/*　　　clearfix
-------------------------------------*/
.cf::after {
  content: "";
  display: block;
  clear: both;
}

/*　　　responsive
-------------------------------------*/
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

@media screen and (min-width: 601px) {
  .is-sp {
    display: none !important;
  }
}

@media screen and (max-width: 600px) {
  .is-pc {
    display: none !important;
  }
}

/*　　　タイトル
-------------------------------------*/
/*　　　フォント
-------------------------------------*/
.gothic {
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

.mincho {
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.yugo {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
}

.hannari {
  font-family: "Hannari";
}

.shu {
  font-family: dnp-shuei-gothic-kin-std, sans-serif;
}

.gen {
  font-family: source-han-sans-japanese, sans-serif;
}

.crimson {
  font-family: "Crimson Text", serif;
}

/*　　　アニメーション
-------------------------------------*/
@-webkit-keyframes slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}
@keyframes slideInDown {
  0% {
    visibility: visible;
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
  to {
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
}

@-webkit-keyframes slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@keyframes slideInUp {
  0% {
    visibility: visible;
    -webkit-transform: translateZ(0);
            transform: translateZ(0);
  }
  to {
    -webkit-transform: translate3d(0, -100%, 0);
            transform: translate3d(0, -100%, 0);
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.invisible {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 0;
}

.visible {
  -webkit-transition: all 0.6s ease;
  -o-transition: all 0.6s ease;
  transition: all 0.6s ease;
  opacity: 1;
}

/*　　　cominng soon
-------------------------------------*/
.soon {
  pointer-events: none;
}

.soon:after {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.65) !important;
}

.soon span {
  z-index: 0 !important;
}

.soon .text-soon {
  position: absolute;
  width: 100%;
  margin: 0;
  font-size: 20px;
  font-size: 2rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 2px;
  text-indent: 2px;
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
      -ms-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  z-index: 20;
}

@media screen and (max-width: 999px) {
  .soon .text-soon {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 600px) {
  .soon .text-soon {
    font-size: 15px;
    font-size: 1.5rem;
  }
}

/*　　　ボタン
-------------------------------------*/
.btn-more {
  padding-top: 60px;
  text-align: center;
}

@media screen and (max-width: 999px) {
  .btn-more {
    padding-top: 50px;
  }
}

@media screen and (max-width: 600px) {
  .btn-more {
    padding-top: 20px;
  }
}

.btn-more a {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
  max-width: 225px;
  font-size: 16px;
  font-size: 1.6rem;
  font-family: "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  line-height: 1.4;
  letter-spacing: 2px;
  text-indent: 2px;
  color: #000;
  background-color: #ffffff;
  border: solid 1px #000000;
  text-decoration: none;
  padding: 1em 40px;
}

@media screen and (max-width: 999px) {
  .btn-more a {
    max-width: 200px;
    font-size: 15px;
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 600px) {
  .btn-more a {
    max-width: 180px;
    font-size: 13px;
    font-size: 1.3rem;
    padding: 1em 20px;
  }
}

.btn-more a:after {
  position: absolute;
  content: "";
  background-image: url(../img/common/more_arrow.png);
  background-size: cover;
  width: 17.5px;
  height: 9.5px;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
}

@media screen and (max-width: 600px) {
  .btn-more a:after {
    width: 11px;
    height: 6px;
    right: 10px;
  }
}

/*　　　breadcrumb
-------------------------------------*/
.breadcrumb {
  padding: 30px 0;
}

@media screen and (max-width: 999px) {
  .breadcrumb {
    padding: 30px 10px;
  }
}

@media screen and (max-width: 600px) {
  .breadcrumb {
    padding: 20px 0;
  }
}

.breadcrumb ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.breadcrumb ul li {
  position: relative;
  font-size: 13px;
  font-size: 1.3rem;
  font-family: "a-otf-gothic-bbb-pr6n", -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}

@media screen and (max-width: 600px) {
  .breadcrumb ul li {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.breadcrumb ul li:not(:last-child) {
  padding-right: 1.8em;
}

.breadcrumb ul li:not(:last-child):after {
  position: absolute;
  content: "＞";
  top: 0;
  right: .45em;
}

.breadcrumb ul li a {
  color: #000000;
  text-decoration: none;
}

.breadcrumb ul li a:hover {
  text-decoration: underline;
}

/*　　　backtop
-------------------------------------*/
.backtop {
  position: fixed;
  display: none;
  bottom: 20px;
  right: 20px;
  z-index: 1100;
}

.backtop a {
  display: block;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  width: 60px;
  height: 60px;
  background-image: url(../img/common/backtop.svg);
  background-size: cover;
  border: solid .2px #fff;
}

@media screen and (max-width: 999px) {
  .backtop a {
    width: 53px;
    height: 53px;
  }
}

@media screen and (max-width: 600px) {
  .backtop a {
    width: 45px;
    height: 45px;
  }
}
/*# sourceMappingURL=common.css.map */