@charset "UTF-8";
/* Scss Document
*****************************************************************/
/* reset
**********************************************************************/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

html {
  font-size: 62.5%;
}

body {
  line-height: 1;
  font-family: "Shippori Mincho", serif;
  color: #000;
}

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

ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

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

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
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;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

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

/* mixin
*********************************************************************/
/* カラー */
/* media query */
/* SP縦から */
/* SP横から */
/* タブレット縦から */
/* 1280 */
/* フルワイド */
/* 追加 */
/* 全ページ共通 スタイル
*****************************************************************/
/*
たて
-ms-writing-mode: tb-rl;
writing-mode: vertical-rl;
よこ
-ms-writing-mode: lr-tb;
writing-mode: horizontal-tb;
*/
.menu_open {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}

a {
  text-decoration: none;
  outline: none;
  transition: all 0.5s ease-out;
  color: #271510;
}
a:hover {
  color: #d1803a;
}
a:hover img {
  opacity: 0.7;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

@media all and (max-width: 896px) {
  .pconly {
    display: none;
  }
}

.sponly {
  display: none;
}
@media all and (max-width: 896px) {
  .sponly {
    display: block;
  }
}

.portraitonly {
  display: none;
}
@media all and (max-width: 480px) {
  .portraitonly {
    display: block;
  }
}

@media all and (max-width: 896px) {
  .spnone {
    display: none;
  }
}

@media all and (max-width: 480px) {
  .portraitnone {
    display: none;
  }
}

.portraitonly {
  display: none;
}
@media all and (max-width: 480px) {
  .portraitonly {
    display: block;
  }
}

/* pagetop
*****************************************************************/
.pagetop_arrow {
  position: fixed;
  right: 70px;
  bottom: -100px;
  z-index: 1500;
  transition: all 300ms 0s ease;
  opacity: 0;
}
.pagetop_arrow a {
  overflow: hidden;
  outline: none;
  display: block;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 5px;
}
.pagetop_arrow a img {
  width: 60px;
  height: auto;
}
@media all and (max-width: 1025px) {
  .pagetop_arrow {
    right: 10px;
  }
}
@media all and (max-width: 896px) {
  .pagetop_arrow a img {
    width: 30px;
  }
}

.fade_in .pagetop_arrow {
  opacity: 1;
  transition: all 300ms 0s ease;
  bottom: 100px;
}

/* drawer
*****************************************************************/
.area_drawer {
  z-index: 99990;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  /* checked */
}
.area_drawer .drawer_menu {
  box-sizing: border-box;
  position: fixed;
  overflow: scroll;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 20, 27, 0.8);
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform-origin: left center;
  transform-origin: left center;
  -webkit-transform: perspective(500px) rotateY(90deg);
  transform: perspective(500px) rotateY(90deg);
  opacity: 0;
  text-align: center;
}
.area_drawer .drawer_menu .block_menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  overflow-y: scroll;
}
@media all and (max-width: 896px) {
  .area_drawer .drawer_menu .block_menu {
    align-items: flex-start;
  }
}
.area_drawer .drawer_menu .block_menu .box_menu {
  padding: 20px 0;
}
.area_drawer .drawer_menu .block_menu .box_menu .logo_nav {
  padding: 0 40px 20px;
  margin: 0 0 10px;
  text-align: center;
  border-bottom: #CCC dotted 1px;
}
.area_drawer .drawer_menu .block_menu .box_menu .logo_nav img {
  width: 160px;
  height: auto;
}
.area_drawer .drawer_menu .block_menu .box_menu ul {
  display: inline-block;
}
.area_drawer .drawer_menu .block_menu .box_menu ul li {
  text-align: left;
  padding: 8px 0;
}
.area_drawer .drawer_menu .block_menu .box_menu ul li a {
  display: block;
  font-size: 1.6rem;
  letter-spacing: 0.2em;
  line-height: 1em;
  font-weight: 500;
  color: #FFF;
  -webkit-transition: all 0.8s;
  transition: all 0.8s;
  position: relative;
  padding: 8px 0 8px 1.2em;
}
.area_drawer .drawer_menu .block_menu .box_menu ul li a:hover {
  color: #d1803a;
}
.area_drawer .drawer_menu .block_menu .box_menu ul li a::before {
  font-family: "Material Icons";
  font-weight: bold;
  content: "\e5cc";
  color: #FFF;
  position: absolute;
  left: 0px;
  top: 52%;
  transform: translateY(-52%);
}
.area_drawer .drawer_menu .block_menu .box_menu ul li a .en {
  font-size: 1.1rem;
  line-height: 1.4em;
  color: #75A245;
  padding: 5px 0 0;
}
.area_drawer .drawer_menu .block_menu .box_menu ul li ul {
  padding-top: 4px;
}
.area_drawer .drawer_menu .block_menu .box_menu ul li ul li {
  padding: 2px 0 2px 1.5em;
}
.area_drawer .drawer_menu .block_menu .box_menu .btn_booking_nav {
  padding: 20px 0 0;
}
.area_drawer .drawer_menu .block_menu .box_menu .btn_booking_nav a {
  display: block;
  background-color: #FF00F0;
  color: #FFF;
  padding: 8px 16px 4px;
  font-size: 2rem;
  line-height: 1.1em;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-align: center;
}
.area_drawer .drawer_menu .block_menu .box_menu .tel {
  padding: 15px 0 8px;
}
.area_drawer .drawer_menu .block_menu .box_menu .tel a {
  border: #CCC solid 1px;
  display: block;
  text-align: center;
  padding: 10px 16px;
  font-size: 2rem;
  line-height: 1em;
  color: #FFF;
}
.area_drawer .drawer_menu .block_menu .box_menu .tel a::before {
  font-family: "Material Icons";
  font-weight: bold;
  content: "\e325";
  color: #FFF;
  display: inline-block;
  transform: translateY(2px);
}
.area_drawer .drawer_menu .box_sns {
  display: flex;
  justify-content: center;
  padding: 10px;
}
.area_drawer .drawer_menu .box_sns > div {
  padding: 10px;
}
.area_drawer .check {
  display: none;
}
.area_drawer .menu-btn {
  position: fixed;
  top: 9vh;
  right: 2vw;
  width: 60px;
  height: 58px;
  font-size: 10px;
  text-align: center;
  cursor: pointer;
  z-index: 99995;
  display: block;
}
@media all and (max-width: 896px) {
  .area_drawer .menu-btn {
    position: fixed;
    display: block;
    top: 14px;
    right: 14px;
    width: 40px;
    height: 43px;
    font-size: 10px;
  }
}
.area_drawer .bar {
  position: absolute;
  display: block;
  width: 60px;
  height: 4px;
  background: #FFF;
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}
@media all and (max-width: 896px) {
  .area_drawer .bar {
    width: 40px;
    height: 3px;
    background: #000;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0);
  }
}
.area_drawer .bar.top {
  top: 0px;
  -webkit-transform-origin: center top;
  transform-origin: center top;
}
.area_drawer .bar.middle {
  top: 16px;
  opacity: 1;
}
@media all and (max-width: 896px) {
  .area_drawer .bar.middle {
    top: 11px;
  }
}
.area_drawer .bar.bottom {
  top: 32px;
  -webkit-transform-origin: center top;
  transform-origin: center top;
}
@media all and (max-width: 896px) {
  .area_drawer .bar.bottom {
    top: 22px;
  }
}
.area_drawer .check:checked ~ .drawer_menu {
  -webkit-transition-delay: 0.3s;
  transition-delay: 0.3s;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  opacity: 1;
  z-index: 2;
}
@media all and (max-width: 896px) {
  .area_drawer .check:checked ~ .menu-btn .bar {
    background-color: #FFF;
  }
}
.area_drawer .check:checked ~ .menu-btn .bar.top {
  top: 18px;
  left: 2px;
  -webkit-transform: rotate(405deg);
  transform: rotate(405deg);
}
@media all and (max-width: 896px) {
  .area_drawer .check:checked ~ .menu-btn .bar.top {
    top: 11px;
    left: 1px;
  }
}
.area_drawer .check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}
.area_drawer .check:checked ~ .menu-btn .bar.bottom {
  top: 18px;
  left: 0px;
  -webkit-transform: rotate(-405deg);
  transform: rotate(-405deg);
}
@media all and (max-width: 896px) {
  .area_drawer .check:checked ~ .menu-btn .bar.bottom {
    top: 11px;
    left: 0px;
  }
}

.subnav_modal {
  padding: 20px 0 0;
}
.subnav_modal .btn_tel {
  padding: 10px 0 0;
}
.subnav_modal .btn_tel a {
  padding: 8px 20px;
  border-radius: 8px;
  box-sizing: border-box;
  background-color: #E86677;
  color: #FFF;
  display: flex;
  align-items: center;
  justify-content: center;
}
.subnav_modal .btn_tel a .inner {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", sans-serif;
}
.subnav_modal .btn_tel a .inner .inner_inner {
  display: flex;
  align-items: center;
}
.subnav_modal .btn_tel a .inner .inner_inner .icon {
  width: 25px;
}
.subnav_modal .btn_tel a .inner .inner_inner .icon img {
  width: 100%;
  height: auto;
}
.subnav_modal .btn_tel a .inner .inner_inner .number {
  font-size: 1.9rem;
  line-height: 1.1em;
  padding: 0 0 0 10px;
}
@media all and (max-width: 896px) {
  .subnav_modal .btn_tel a .inner .inner_inner .number {
    font-size: 2rem;
  }
}
.subnav_modal .btn_tel a .inner .inner_inner .number .time {
  font-size: 1.3rem;
  line-height: 1.1em;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .subnav_modal .btn_tel a .inner .inner_inner .number .time {
    font-size: 1.3rem;
  }
}

/* header
*****************************************************************/
.area_header {
  padding: 0 2vw;
  box-sizing: border-box;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  align-items: center;
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0px;
  z-index: 99980;
}
@media all and (max-width: 896px) {
  .area_header {
    padding: 0 68px 0 10px;
    height: 50px;
  }
}
.area_header .logo_header {
  max-width: 240px;
  min-width: 130px;
  width: 17vw;
}
.area_header .logo_header img {
  width: 100%;
  height: auto;
}
.area_header nav {
  padding: 0 0 0 20px;
}
@media all and (max-width: 896px) {
  .area_header nav {
    display: none;
  }
}
.area_header nav ul {
  display: flex;
  align-items: center;
  padding: 0 10px;
}
.area_header nav ul li {
  font-size: 1.5rem;
  line-height: 1.3em;
  padding: 3px 8px;
}
.area_header nav ul li::after {
  content: "/";
  padding-left: 10px;
}
.area_header nav ul li:last-child::after {
  content: none;
}
.area_header .btn_contact {
  margin: 0 0 0 auto;
  width: 16vw;
  min-width: 160px;
}
@media all and (max-width: 896px) {
  .area_header .btn_contact {
    min-width: 110px;
    padding-top: 2px;
  }
}
@media all and (max-width: 896px) {
  .area_header .btn_contact a {
    padding: 6px 6px 6px 8px;
    height: auto;
  }
}
@media all and (max-width: 896px) {
  .area_header .btn_contact a .icon {
    width: 16px;
  }
}
@media all and (max-width: 896px) {
  .area_header .btn_contact a p {
    font-size: 1.5rem;
    padding: 0px 0 0 6px;
  }
}

/* footer
*****************************************************************/
.area_sns {
  position: relative;
  margin-top: 100px;
}
@media all and (max-width: 896px) {
  .area_sns {
    margin-top: 40px;
  }
}
.area_sns .block_img {
  position: relative;
  line-height: 0em;
  aspect-ratio: 960/427;
}
@media all and (max-width: 480px) {
  .area_sns .block_img {
    aspect-ratio: 3/2;
  }
}
.area_sns .block_img img {
  object-fit: cover;
  object-position: 100% 50%;
  width: 100%;
  height: 100%;
}
.area_sns .block_type {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 100%;
}
.area_sns .block_type img {
  height: 100%;
  width: auto;
}
.area_sns .block_sns {
  position: absolute;
  top: 15%;
  left: 9vw;
}
@media all and (max-width: 480px) {
  .area_sns .block_sns {
    left: 11vw;
  }
}
.area_sns .block_sns ul li {
  text-align: center;
}
.area_sns .block_sns ul li img {
  width: 100%;
  height: auto;
}
.area_sns .block_sns ul li.moco {
  width: 80px;
}
@media all and (max-width: 896px) {
  .area_sns .block_sns ul li.moco {
    width: 50px;
  }
}
.area_sns .block_sns ul li.maru {
  width: 80px;
  box-sizing: border-box;
  padding: 20px 16px 0;
}
@media all and (max-width: 896px) {
  .area_sns .block_sns ul li.maru {
    padding: 10px 10px 0;
    width: 50px;
  }
}
.area_footer {
  background-color: #BCBBBB;
  padding: 0 20px;
}
.area_footer .block_footer {
  max-width: 1200px;
  margin: auto;
  padding: 60px 0;
  display: flex;
  flex-wrap: wrap;
}
@media all and (max-width: 896px) {
  .area_footer .block_footer {
    padding: 30px 0;
  }
}
.area_footer .block_footer .side_logo {
  width: 280px;
  box-sizing: border-box;
  padding: 0 60px 0 0;
  text-align: center;
}
@media all and (max-width: 896px) {
  .area_footer .block_footer .side_logo {
    width: 200px;
    padding: 0 30px 0 0;
  }
}
@media all and (max-width: 480px) {
  .area_footer .block_footer .side_logo {
    padding: 0 0px 0 0;
    width: 100%;
  }
}
.area_footer .block_footer .side_logo img {
  width: 100%;
  height: auto;
}
@media all and (max-width: 480px) {
  .area_footer .block_footer .side_logo img {
    max-width: 200px;
  }
}
.area_footer .block_footer .side_contact {
  width: calc(100% - 280px);
  box-sizing: border-box;
  border-left: #000 solid 16px;
  padding: 0 0 0 60px;
}
@media all and (max-width: 896px) {
  .area_footer .block_footer .side_contact {
    width: calc(100% - 200px);
    border-left: #000 solid 8px;
    padding: 0 0 0 30px;
  }
}
@media all and (max-width: 480px) {
  .area_footer .block_footer .side_contact {
    width: 100%;
    border-left: none;
    padding: 15px 0 0 0px;
  }
}
@media all and (max-width: 480px) {
  .area_footer .block_footer .side_contact {
    text-align: center;
  }
}
.area_footer .block_footer .side_contact h2 {
  font-size: 1.6rem;
  line-height: 1.2em;
  background-color: #FF9329;
  padding: 8px 10px;
}
.area_footer .block_footer .side_contact .box_contact ul {
  display: flex;
  flex-wrap: wrap;
  padding: 15px 0;
  margin: 0 -15px;
}
@media all and (max-width: 896px) {
  .area_footer .block_footer .side_contact .box_contact ul {
    padding: 8px 0;
    margin: 0 -8px;
  }
}
@media all and (max-width: 480px) {
  .area_footer .block_footer .side_contact .box_contact ul {
    display: inline-block;
  }
}
.area_footer .block_footer .side_contact .box_contact ul li {
  padding: 15px;
  width: 50%;
  box-sizing: border-box;
}
@media all and (max-width: 896px) {
  .area_footer .block_footer .side_contact .box_contact ul li {
    width: 100%;
    padding: 8px;
  }
}
.area_footer .block_footer .side_contact .box_contact ul li a {
  display: flex;
  align-items: center;
}
@media all and (max-width: 896px) {
  .area_footer .block_footer .side_contact .box_contact ul li a .icon {
    width: 50px;
  }
  .area_footer .block_footer .side_contact .box_contact ul li a .icon img {
    width: 100%;
    height: auto;
  }
}
.area_footer .block_footer .side_contact .box_contact ul li a .txt {
  padding: 0 0 0 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  line-height: 1.1em;
}
@media all and (max-width: 1131px) {
  .area_footer .block_footer .side_contact .box_contact ul li a .txt {
    font-size: 2.3rem;
  }
}
.area_footer .block_footer .side_contact .box_contact ul li a .txt .number {
  font-size: 1.3em;
}
.area_footer .block_footer .side_contact .box_contact ul li a .txt .time {
  font-size: 1.4rem;
  line-height: 1.4em;
  text-indent: -0.4em;
  padding: 5px 0 0;
}
.area_footer .block_footer .side_contact .box_address {
  padding: 20px 0 0;
}
@media all and (max-width: 896px) {
  .area_footer .block_footer .side_contact .box_address {
    padding: 10px 0 0;
  }
}
@media all and (max-width: 480px) {
  .area_footer .block_footer .side_contact .box_address {
    text-align: center;
  }
}
.area_footer .block_footer .side_contact .box_address h3 {
  font-size: 1.4rem;
  line-height: 1.6em;
}
.area_footer .block_footer .side_contact .box_address h3 .name {
  font-size: 1.5em;
  padding: 0 4px 0 14px;
}
.area_footer .block_footer .side_contact .box_address p {
  padding: 4px 0 0;
  font-size: 1.6rem;
  line-height: 1.6em;
}
.area_footer .block_footer .copy_rights {
  width: 100%;
  text-align: right;
  font-size: 1.3rem;
  line-height: 1.4em;
  padding: 10px 5px 0;
  box-sizing: border-box;
}
@media all and (max-width: 480px) {
  .area_footer .block_footer .copy_rights {
    text-align: center;
  }
}

/* elements
*****************************************************************/
.btn_contact {
  max-width: 260px;
}
.btn_contact a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background-color: #216976;
  border-radius: 8px;
  color: #FFF;
  height: 40px;
}
.btn_contact a .icon {
  width: 20px;
}
.btn_contact a .icon img {
  width: 100%;
  height: auto;
}
.btn_contact a p {
  font-size: 1.8rem;
  padding: 0px 0 0 10px;
  line-height: 1.1em;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", sans-serif;
}

.btn_more {
  padding: 20px 0 0;
}
@media all and (max-width: 896px) {
  .btn_more {
    padding: 10px 0 0;
  }
}
.btn_more a {
  display: flex;
  align-items: center;
}
.btn_more a .txt {
  font-size: 1.5rem;
  line-height: 1em;
}
.btn_more a .icon {
  width: 6vw;
  padding: 0 0 0 5px;
  min-width: 70px;
}
.btn_more a .icon img {
  width: 100%;
  height: auto;
}

.btn_access_link a {
  display: block;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  position: relative;
  width: 280px;
  margin: auto;
  padding: 1rem 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.1em;
  font-weight: 400;
  border-radius: 40px;
  border: 3px dashed #27acd9;
  color: #27acd9;
  box-shadow: 5px 5px 0 #27acd9;
  transition: 0.3s ease-in-out;
}
@media all and (max-width: 896px) {
  .btn_access_link a {
    font-size: 1.4rem;
  }
}
.btn_access_link a:hover {
  box-shadow: 0 0 0;
  transform: translate(5px, 5px);
  color: #27acd9;
}

.btn_detail {
  padding: 6px 0 0;
  font-size: 1.3rem;
  line-height: 1.8em;
}
.btn_detail a::before {
  content: "...";
}

.area_visual {
  padding: 100px 0 0;
  line-height: 0em;
  position: relative;
}
@media all and (max-width: 896px) {
  .area_visual {
    padding: 50px 0 0;
  }
}
.area_visual img {
  width: 100%;
  height: auto;
}

.bg_wave {
  background-image: url(../images/bg_wave.svg);
  background-size: 100% auto;
  background-repeat: no-repeat;
  background-position: center 300px;
}

.area_title {
  padding: 0 20px;
  position: relative;
}
.area_title .block_title {
  position: relative;
  max-width: 1200px;
  border-left: #749E46 solid 5px;
  margin: -100px auto 0;
  padding: 160px 0 0;
  display: flex;
  justify-content: space-between;
  text-shadow: 0 0 2px #FFF, 0 0 2px #FFF, 0 0 4px #FFF, 0 0 4px #FFF, 0 0 6px #FFF;
}
@media all and (max-width: 896px) {
  .area_title .block_title {
    display: block;
    padding: 120px 0 0;
  }
}
.area_title .block_title .side_headline {
  padding: 0 0 0 30px;
}
@media all and (max-width: 896px) {
  .area_title .block_title .side_headline {
    padding: 0 0 0 20px;
  }
}
.area_title .block_title .side_headline .en {
  font-size: 2rem;
  line-height: 1.2em;
}
@media all and (max-width: 896px) {
  .area_title .block_title .side_headline .en img {
    height: 16px;
    width: auto;
  }
}
.area_title .block_title .side_headline h1 {
  font-size: 4rem;
  line-height: 1.1em;
  padding: 10px 0 0;
  font-weight: 400;
}
@media all and (max-width: 896px) {
  .area_title .block_title .side_headline h1 {
    font-size: 3rem;
  }
}
.area_title .block_title .side_headline p {
  font-size: 2.2rem;
  line-height: 1.6em;
  padding: 30px 0 0;
  font-family: "Noto Sans JP", sans-serif;
}
@media all and (max-width: 896px) {
  .area_title .block_title .side_headline p {
    padding: 20px 0 0 0;
    font-size: 1.8rem;
  }
}
.area_title .block_title .side_copy {
  font-size: 1.8rem;
  line-height: 2em;
  padding: 0 0 0 20px;
}
@media all and (max-width: 896px) {
  .area_title .block_title .side_copy {
    padding: 16px 0 0 20px;
    font-size: 1.5rem;
  }
}

/* utilities
*****************************************************************/
.plan {
  border: #7D5851 solid 1px;
  color: #7D5851;
}

.news {
  border: #E9818A solid 1px;
  color: #E9818A;
}

.kanko {
  border: #568D71 solid 1px;
  color: #568D71;
}

.event {
  border: #597FA6 solid 1px;
  color: #597FA6;
}

.food {
  border: #CA6143 solid 1px;
  color: #CA6143;
}

.newline {
  display: inline-block;
}

.kome {
  text-indent: -1em;
  padding-left: 1em;
}

.txt_glow_01 {
  text-shadow: 0px 0px 1px #FFF, 0px 0px 2px #FFF, 0px 0px 2px #FFF, 0px 0px 3px #FFF, 0px 0px 3px #FFF, 0px 0px 4px #FFF, 0px 0px 4px #FFF;
}

/* 余白 */
.mt00 {
  margin-top: 0px;
}

.mt10 {
  margin-top: 10px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb00 {
  margin-bottom: 0px;
}

.pb00 {
  padding-bottom: 0px;
}

.pb10 {
  padding-bottom: 10px;
}

.pb20 {
  padding-bottom: 20px;
}

.pb30 {
  padding-bottom: 30px;
}

.pb40 {
  padding-bottom: 40px;
}

.pb50 {
  padding-bottom: 50px;
}

.pb65 {
  padding-bottom: 65px;
}

.pt00 {
  padding-top: 0px;
}

.pt10 {
  padding-top: 10px;
}

.pt20 {
  padding-top: 20px;
}

.pt30 {
  padding-top: 30px;
}
@media all and (max-width: 896px) {
  .pt30 {
    padding-top: 20px;
  }
}

.pt40 {
  padding-top: 40px;
}
@media all and (max-width: 896px) {
  .pt40 {
    padding-top: 20px;
  }
}

.pt50 {
  padding-top: 50px;
}
@media all and (max-width: 896px) {
  .pt50 {
    padding-top: 20px;
  }
}

.pt60 {
  padding-top: 60px;
}
@media all and (max-width: 896px) {
  .pt60 {
    padding-top: 30px;
  }
}

.pt80 {
  padding-top: 80px;
}
@media all and (max-width: 896px) {
  .pt80 {
    padding-top: 30px;
  }
}

@media all and (max-width: 896px) {
  .mt_detail {
    margin-top: 60px;
  }
}

.fs_15 {
  font-size: 1.5em;
}

.fs_14 {
  font-size: 1.4em;
}

.fs_13 {
  font-size: 1.3em;
}

.fs_12 {
  font-size: 1.2em;
}

.fs_11 {
  font-size: 1.1em;
}

.fs_09 {
  font-size: 0.9em;
}

.fs_08 {
  font-size: 0.8em;
}

.fs_07 {
  font-size: 0.7em;
}

.fs_06 {
  font-size: 0.6em;
}

.fs_05 {
  font-size: 0.5em;
}

.fw_300 {
  font-weight: 300;
}

.fw_500 {
  font-weight: 500;
}

.fw_700 {
  font-weight: 700;
}

.fw_900 {
  font-weight: 900;
}

.idt01 {
  padding-top: 1em;
}

.idt02 {
  padding-top: 2em;
}

.accent {
  color: #F00;
}