@charset "UTF-8";
/* //////////////////////////////////////
- reset
////////////////////////////////////// */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-weight: normal;
  text-decoration: none;
  vertical-align: baseline;
  background: transparent;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section {
  display: block;
}

ul,
ol,
li {
  list-style: none;
  list-style-position: inside;
}

blockquote,
q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

input,
select {
  vertical-align: middle;
}

/* //////////////////////////////////////
- common
////////////////////////////////////// */
body {
  background-color: #FFF7FE;
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #4B4B4B;
  font-size: 16px;
  font-size: 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  cursor: pointer;
}

.pc_none {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc_none {
    display: inline-block;
  }
}

.sp_none {
  display: inline-block;
}

@media screen and (max-width: 767px) {
  .sp_none {
    display: none;
  }
}

/* //////////////////////////////////////
- header
////////////////////////////////////// */
header {
  background-color: rgba(255, 255, 255, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  margin: 0 auto;
  width: calc(100%);
  height: 90px;
  padding: 12px 0 0 20px;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  header {
    padding: 8px 0 0 10px;
    height: 50px;
  }
}

header h1 {
  width: calc(100%);
}

@media screen and (max-width: 767px) {
  header h1 {
    margin-bottom: 40px;
  }
}

header img {
  width: 73px;
  height: auto;
}

@media screen and (max-width: 767px) {
  header img {
    width: auto;
    height: 33px;
  }
}

/* //////////////////////////////////////
- nav
////////////////////////////////////// */
nav {
  width: calc(100%);
}

.nav_btn,
.nav_btn span {
  display: inline-block;
  -webkit-transition: all .4s;
  transition: all .4s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

.nav_btn {
  position: fixed;
  top: 30px;
  right: 20px;
  width: 50px;
  height: 36px;
  z-index: 3;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .nav_btn {
    top: 10px;
    right: 10px;
    width: 36px;
    height: 28px;
  }
}

.nav_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #707070;
  border-radius: 4px;
}

.nav_btn span:nth-of-type(1) {
  top: 0;
}

.nav_btn span:nth-of-type(2) {
  top: 17px;
}

@media screen and (max-width: 767px) {
  .nav_btn span:nth-of-type(2) {
    top: 13px;
  }
}

.nav_btn span:nth-of-type(3) {
  bottom: 0;
}

.nav_btn.active span:nth-of-type(1) {
  -webkit-transform: translateY(17px) rotate(-45deg);
          transform: translateY(17px) rotate(-45deg);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .nav_btn.active span:nth-of-type(1) {
    -webkit-transform: translateY(13px) rotate(-45deg);
            transform: translateY(13px) rotate(-45deg);
  }
}

.nav_btn.active span:nth-of-type(2) {
  opacity: 0;
}

.nav_btn.active span:nth-of-type(3) {
  -webkit-transform: translateY(-17px) rotate(45deg);
          transform: translateY(-17px) rotate(45deg);
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .nav_btn.active span:nth-of-type(3) {
    -webkit-transform: translateY(-13px) rotate(45deg);
            transform: translateY(-13px) rotate(45deg);
  }
}

.nav_wrap {
  display: none;
  width: calc(100%);
  height: 100vh;
}

.nav_wrap.active {
  display: block;
}

.nav_menu {
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  top: 0;
  margin: 0 auto;
  width: calc(100%);
  height: 100vh;
  display: none;
  z-index: 2;
}

.nav_menu div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  width: calc(100%);
  height: 100vh;
}

.nav_menu h1 {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
}

.nav_menu h1 img {
  width: 250px;
  height: auto;
}

@media screen and (max-width: 767px) {
  .nav_menu h1 img {
    width: 125px;
  }
}

.nav_menu li {
  letter-spacing: 0.2em;
  margin-bottom: 20px;
}

.nav_menu li a {
  font-size: 30px;
  font-size: 1.875rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  .nav_menu li a {
    font-size: 20px;
    font-size: 1.25rem;
  }
}

.nav_menu li a::before {
  content: "";
  background-color: #FFBAC7;
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
  width: 12px;
  height: 12px;
}

.nav_menu li a span {
  font-size: 18px;
  font-size: 1.125rem;
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
}

@media screen and (max-width: 767px) {
  .nav_menu li a span {
    font-size: 14px;
    font-size: 0.875rem;
  }
}

.nav_menu li:nth-child(1) {
  font-size: 20px;
  font-size: 1.25rem;
  color: #FFBAC7;
  margin-bottom: 30px;
}

/* //////////////////////////////////////
- main
////////////////////////////////////// */
main {
  text-align: center;
  margin: 0 auto 0;
  width: calc(100%);
}

article {
  margin: 0 auto;
  width: calc(100%);
}

article h2 {
  position: relative;
  margin-bottom: -20px;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  article h2 {
    margin-bottom: -10px;
  }
}

@media screen and (max-width: 767px) {
  article h2 img {
    width: calc(100%);
    height: auto;
  }
}

article p {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 2;
  text-align: left;
}

@media screen and (max-width: 767px) {
  article p {
    font-size: 16px;
    font-size: 1rem;
    margin: 0 auto;
    width: calc(80%);
  }
}

@media screen and (max-width: 320px) {
  article p {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 auto;
    width: calc(78%);
  }
}

/* //////////////////////////////////////
- Key
////////////////////////////////////// */
.key {
  width: calc(100%);
}

.key h1 img {
  width: 100%;
}

.keyA {
  background: url(../img/bg_key_a.jpg) 50% 50% no-repeat;
  background-size: cover;
  width: calc(100%);
  height: 100vh;
  position: relative;
}

@media screen and (max-width: 767px) {
  .keyA {
    background: none;
    height: auto;
    width: calc(100%);
  }
}

.keyA h1 {
  text-align: left;
  padding: 100px 0 0 50px;
}

@media screen and (max-width: 767px) {
  .keyA h1 {
    padding: 0;
  }
}

@media screen and (max-height: 680px) {
  .keyA h1 img {
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .keyA h1 img {
    width: 100%;
    height: auto;
  }
}

.keyA::after {
  content: "";
  display: block;
  background: url(../img/bg_kusa.png) 50% 50% repeat-x;
  width: calc(100%);
  height: 169px;
  position: absolute;
  bottom: 0;
}

@media screen and (max-width: 767px) {
  .keyA::after {
    display: none;
  }
}

/* //////////////////////////////////////
- lead
////////////////////////////////////// */
.lead {
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .lead {
    margin-top: 20px;
  }
}

.lead h1 {
  color: #4B4B4B;
  font-size: 38px;
  font-size: 2.375rem;
  font-weight: bold;
  letter-spacing: 0.4em;
  margin: 0 0 78px 0.4em;
}

@media screen and (max-width: 767px) {
  .lead h1 {
    font-size: 30px;
    font-size: 1.875rem;
    letter-spacing: 0.3em;
    line-height: 1.5;
    width: calc(74%);
    padding-left: 0.3em;
    margin: 0 auto 32px;
  }
}

.lead p {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 2.4;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .lead p {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 1.8;
    text-align: left;
    width: calc(80%);
    margin: 0 auto;
  }
}

.lead picture {
  display: block;
  width: calc(100%);
  text-align: center;
  margin-top: 75px;
  overflow: hidden;
}

.lead img {
  max-width: 1115px;
  width: calc(100%);
  height: auto;
  margin-left: 5%;
}

@media screen and (max-width: 980px) {
  .lead img {
    margin-left: 3%;
  }
}

@media screen and (max-width: 767px) {
  .lead img {
    margin-left: 0;
  }
}

/* //////////////////////////////////////
- view
////////////////////////////////////// */
.view h2 {
  padding: 10% 0 0;
}

.view h3 {
  background-color: #F9EAFF;
  text-align: left;
  margin-left: 34%;
  padding: 27px 0 22px 25px;
}

@media screen and (max-width: 980px) {
  .view h3 {
    margin-left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  .view h3 {
    margin-left: 0;
    padding: 20px 0 12px;
  }
}

@media screen and (max-width: 767px) {
  .view h3 img {
    width: 100%;
    height: auto;
  }
}

.view ul {
  margin-bottom: 120px;
}

@media screen and (max-width: 767px) {
  .view ul {
    margin-bottom: 100px;
  }
}

.view li {
  height: 400px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .view li {
    height: auto;
    margin-bottom: 30px;
  }
}

.view li:nth-child(odd) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
}

@media screen and (max-width: 767px) {
  .view li:nth-child(odd) {
    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;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.view li:nth-child(even) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: center;
      align-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

@media screen and (max-width: 767px) {
  .view li:nth-child(even) {
    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;
    -ms-flex-line-pack: center;
        align-content: center;
  }
}

.view li span {
  display: block;
  width: calc(66%);
}

@media screen and (max-width: 767px) {
  .view li span {
    width: calc(100%);
  }
}

.view li span img {
  display: none;
}

@media screen and (max-width: 767px) {
  .view li span img {
    display: block;
    width: 100%;
    height: auto;
  }
}

.view li div {
  background-color: #ffffff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  min-width: 400px;
  width: calc(34%);
  height: 400px;
}

@media screen and (max-width: 767px) {
  .view li div {
    min-width: inherit;
    width: calc(100%);
    height: auto;
    padding: 8px 0 32px;
  }
}

.view li div p {
  width: calc(100%);
  text-align: center;
}

.view li div .view_title {
  color: #AF9CB4;
  font-size: 32px;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .view li div .view_title {
    font-size: 24px;
    font-size: 1.5rem;
  }
}

.view li div .view_title::after {
  content: "";
  display: block;
  background-color: #AF9CB4;
  width: 54px;
  height: 1px;
  margin: 0 auto 10px;
}

@media screen and (max-width: 767px) {
  .view li div .view_title::after {
    width: 27px;
    margin: 0 auto 5px;
  }
}

.view li div .view_season {
  color: #AF9CB4;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .view li div .view_season {
    margin-bottom: 0;
  }
}

.view li div .view_name {
  font-size: 24px;
  font-size: 1.5rem;
  font-family: "游明朝","YuMincho";
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .view li div .view_name {
    font-size: 24px;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
}

.view li div .view_description {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .view li div .view_description {
    font-size: 16px;
    font-size: 1rem;
  }
}

.view .view_img1 {
  background: url(../img/img_view_1.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.view .view_img2 {
  background: url(../img/img_view_2.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.view .view_img3 {
  background: url(../img/img_view_3.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.view .view_img4 {
  background: url(../img/img_view_4.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.view .view_img5 {
  background: url(../img/img_view_5.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.view .view_img6 {
  background: url(../img/img_view_6.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.view .view_img7 {
  background: url(../img/img_view_7.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.view .view_img8 {
  background: url(../img/img_view_8.jpg) 50% 50% no-repeat;
  background-size: cover;
}

/* //////////////////////////////////////
- TOURIST GUIDE
////////////////////////////////////// */
.touristguide {
  margin-top: 200px;
}

.touristguide div.guide_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  background: url(../img/bg_guide.jpg) 50% 50% no-repeat;
  background-size: cover;
  width: 100%;
  height: 330px;
  padding: 0;
  position: relative;
}

@media screen and (max-width: 767px) {
  .touristguide div.guide_head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -ms-flex-line-pack: end;
        align-content: flex-end;
    background: url(../img/bg_guide_sp.jpg) 50% 50% no-repeat;
    background-size: cover;
    height: 220px;
    padding-bottom: 30px;
  }
}

.touristguide div.guide_head::before {
  content: "";
  background: url(../img/logo_guide.png) 50% 50% no-repeat;
  width: 181px;
  height: 157px;
  position: absolute;
  top: 0;
  left: 0;
  right: 780px;
  margin: auto;
}

@media screen and (max-width: 820px) {
  .touristguide div.guide_head::before {
    left: 0;
    right: 0;
  }
}

@media screen and (max-width: 767px) {
  .touristguide div.guide_head::before {
    background: url(../img/logo_guide_sp.png) 50% 50% no-repeat;
    background-size: cover;
    width: 110px;
    height: 95px;
    left: 0;
    right: 0;
  }
}

.touristguide div {
  background-color: #036EB6;
  padding: 5px 0 100px;
}

@media screen and (max-width: 767px) {
  .touristguide div {
    padding: 4px 0 60px;
  }
}

.touristguide h3 {
  color: #fff;
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: bold;
  line-height: 1.5;
  text-align: center;
}

@media screen and (max-width: 820px) {
  .touristguide h3 {
    margin-top: 150px;
  }
}

@media screen and (max-width: 767px) {
  .touristguide h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin-top: auto;
  }
}

@media screen and (max-width: 320px) {
  .touristguide h3 {
    font-size: 16px;
    font-size: 1rem;
  }
}

.touristguide ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 100%;
  margin: 0 auto;
}

.touristguide li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: calc(33%);
  height: 398px;
  margin: 0 0 5px;
  overflow: hidden;
  position: relative;
}

@media screen and (max-width: 820px) {
  .touristguide li {
    width: 49.6%;
  }
}

.touristguide .guide_list1 {
  background-image: url(../img/img_guide_1.jpg);
}

.touristguide .guide_list2 {
  background-image: url(../img/img_guide_2.jpg);
}

.touristguide .guide_list3 {
  background-image: url(../img/img_guide_3.jpg);
}

.touristguide .guide_list4 {
  background-image: url(../img/img_guide_4.jpg);
}

.touristguide .guide_list5 {
  background-image: url(../img/img_guide_5.jpg);
}

.touristguide .guide_list6 {
  background-image: url(../img/img_guide_6.jpg);
}

.touristguide .guide_list7 {
  background-image: url(../img/img_guide_7.jpg);
}

.touristguide .guide_list8 {
  background-image: url(../img/img_guide_8.jpg);
}

.touristguide .guide_list9 {
  background-image: url(../img/img_guide_9.jpg);
}

@media screen and (max-width: 820px) {
  .touristguide .guide_list9 {
    display: none;
  }
}

.touristguide li a {
  background-color: rgba(0, 0, 0, 0.7);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  color: #fff;
  font-size: 25px;
  font-size: 1.5625rem;
  font-weight: bold;
  line-height: 1.5;
  width: 100%;
  height: 150px;
  text-align: center;
  position: absolute;
  top: auto;
  bottom: 0;
  left: 0;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 980px) {
  .touristguide li a {
    font-size: 22px;
    font-size: 1.375rem;
  }
}

@media screen and (max-width: 767px) {
  .touristguide li a {
    background-color: rgba(0, 0, 0, 0.5);
    height: 100%;
    top: 0;
    font-size: 14px;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 320px) {
  .touristguide li a {
    font-size: 13px;
    font-size: 0.8125rem;
  }
}

.touristguide li:hover a {
  height: 100%;
}

@media screen and (max-width: 767px) {
  .touristguide li a span {
    margin-bottom: 60px;
  }
}

.touristguide li:hover a span {
  margin-bottom: 60px;
}

.touristguide li span:nth-child(2) {
  display: none;
  opacity: 0;
}

@media screen and (max-width: 767px) {
  .touristguide li span:nth-child(2) {
    border: 1px solid #fff;
    font-size: 12px;
    font-size: 0.75rem;
    display: block;
    opacity: 1;
    padding: 10px 0;
    width: 80%;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 10%;
    margin: auto;
  }
}

.touristguide li:hover a span:nth-child(2) {
  border: 1px solid #fff;
  display: block;
  padding: 2px 0;
  width: 80%;
  height: 45px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 20%;
  margin: auto;
  opacity: 1;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
}

@media screen and (max-width: 980px) {
  .touristguide li:hover a span:nth-child(2) {
    padding: 5px 0;
  }
}

@media screen and (max-width: 767px) {
  .touristguide li:hover a span:nth-child(2) {
    padding: 10px 0;
    bottom: 10%;
    height: auto;
  }
}

.touristguide .guide_btn a {
  border: 5px solid #fff;
  border-radius: 100px;
  -webkit-box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 5px 6px rgba(0, 0, 0, 0.3);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: bold;
  text-align: center;
  max-width: 800px;
  width: 100%;
  padding: 40px 0;
  margin: 100px auto 0;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 820px) {
  .touristguide .guide_btn a {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .touristguide .guide_btn a {
    font-size: 20px;
    font-size: 1.25rem;
    border: 2px solid #fff;
    line-height: 1.5;
    padding: 10px 0;
    width: calc(240px);
    margin: 50px auto 0;
  }
}

.touristguide .guide_btn a:hover {
  background-color: #fff;
  border: 5px solid #036EB6;
  color: #036EB6;
}

@media screen and (max-width: 767px) {
  .touristguide .guide_btn a:hover {
    border: 2px solid #036EB6;
  }
}

.touristguide .guide_btn a::before {
  content: "";
  background: url(../img/ico_fukidashi.png) 0 0 no-repeat;
  display: block;
  width: 108px;
  height: 110px;
  position: absolute;
  top: -60px;
  left: 100px;
}

@media screen and (max-width: 820px) {
  .touristguide .guide_btn a::before {
    left: 50px;
  }
}

@media screen and (max-width: 767px) {
  .touristguide .guide_btn a::before {
    background: url(../img/ico_fukidashi.png) 0 0 no-repeat;
    background-size: 100%;
    width: 54px;
    height: 55px;
    top: -45px;
    left: 20px;
  }
}

/* //////////////////////////////////////
- HOTEL
////////////////////////////////////// */
.hotel {
  text-align: center;
  margin: 100px auto 80px;
}

@media screen and (max-width: 767px) {
  .hotel {
    margin: 60px auto 40px;
  }
}

.hotel div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  background: url(../img/bg_hotel.jpg) 50% 50% no-repeat;
  background-size: cover;
  width: 100%;
  height: 600px;
}

@media screen and (max-width: 820px) {
  .hotel div {
    background: none;
    height: auto;
  }
}

@media screen and (max-width: 820px) {
  .hotel div picture {
    width: 100%;
  }
}

@media screen and (max-width: 820px) {
  .hotel div img {
    width: 100%;
  }
}

.hotel h3 {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: bold;
  margin: 80px auto 24px;
}

@media screen and (max-width: 767px) {
  .hotel h3 {
    font-size: 20px;
    font-size: 1.25rem;
    margin: 40px auto 24px;
  }
}

.hotel ul {
  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: nowrap;
      flex-wrap: nowrap;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  margin: auto;
  max-width: 972px;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .hotel ul {
    width: 90%;
  }
}

@media screen and (max-width: 767px) {
  .hotel ul {
    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;
    -ms-flex-line-pack: start;
        align-content: flex-start;
    width: 90%;
  }
}

.hotel li {
  max-width: 296px;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .hotel li {
    margin-right: 8px;
  }
}

@media screen and (max-width: 767px) {
  .hotel li {
    margin-right: 0;
    max-width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .hotel li:last-child {
    margin: 20px auto 0;
  }
}

.hotel li img {
  width: 100%;
}

/* //////////////////////////////////////
- aside（サイドバー）
////////////////////////////////////// */
aside {
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  height: 410px;
}

@media screen and (max-width: 767px) {
  aside {
    height: 250px;
    top: 100px;
    bottom: auto;
  }
}

@media screen and (max-width: 320px) {
  aside {
    height: 210px;
  }
}

aside li {
  border-radius: 10px 0 0 10px;
}

aside li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -ms-flex-line-pack: center;
      align-content: center;
  width: 58px;
  height: 200px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}

@media screen and (max-width: 767px) {
  aside li a {
    width: 44px;
    height: 120px;
  }
}

@media screen and (max-width: 320px) {
  aside li a {
    width: 40px;
    height: 100px;
  }
}

aside li:nth-child(1) {
  background-color: #4FD3FA;
  margin-bottom: 10px;
}

aside li:nth-child(2) {
  background-color: #B971CC;
}

aside a {
  font-size: 20px;
  font-size: 1.25rem;
  color: #fff;
}

@media screen and (max-width: 767px) {
  aside a {
    font-size: 14px;
    font-size: 0.875rem;
    font-weight: bold;
  }
}

@media screen and (max-width: 320px) {
  aside a {
    font-size: 12px;
    font-size: 0.75rem;
  }
}

/* //////////////////////////////////////
- footer
////////////////////////////////////// */
footer {
  text-align: center;
  padding: 80px 0 0;
  margin: 0 auto 54px;
  width: calc(100%);
}

@media screen and (max-width: 767px) {
  footer {
    padding: 30px 0 0;
    margin: 0 auto 40px;
  }
}

footer .foot_bn_btn {
  margin: auto;
}

@media screen and (max-width: 820px) {
  footer .foot_bn_btn {
    width: 90%;
  }
}

footer .foot_bn_btn img {
  max-width: 972px;
  width: 100%;
}

footer h1 {
  font-size: 22px;
  font-size: 1.375rem;
  margin: 75px auto 40px;
}

@media screen and (max-width: 767px) {
  footer h1 {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 40px auto 30px;
  }
}

footer dl {
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  footer dl {
    font-size: 14px;
    font-size: 0.875rem;
    width: 90%;
    line-height: 1.5;
    margin: 30px auto 0;
  }
}

footer a {
  color: #4B4B4B;
  text-decoration: underline;
}

footer a:hover {
  text-decoration: none;
}

/* //////////////////////////////////////
- トップへ戻る
////////////////////////////////////// */
a.totop {
  z-index: 1;
  display: none;
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 36px;
  height: 118px;
}

@media screen and (max-width: 767px) {
  a.totop {
    width: auto;
    height: 59px;
  }
}

@media screen and (max-width: 320px) {
  a.totop {
    right: 10px;
  }
}

@media screen and (max-width: 767px) {
  a.totop img {
    width: auto;
    height: 100%;
  }
}

/* //////////////////////////////////////
- IE対策
////////////////////////////////////// */

/*# sourceMappingURL=maps/style.css.map */
