@charset "UTF-8";
/*
Theme Name: kanko-kiso
Version: 1.0.0
*/
/* CSS 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,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  line-height: 1;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

nav 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;
  cursor: pointer;
  color: inherit;
  text-decoration: none;
  word-break: break-all;
}

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;
}

ul {
  list-style: none;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* / CSS Reset */
/* common */
html {
  font-size: 62.5%;
  height: auto;
  min-height: 100vh;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
}

body {
  font-family: "游ゴシック Medium", "Noto Sans JP", "Yu Gothic Medium", "游ゴシック体", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease 0s;
  letter-spacing: 0.05em;
  overflow-x: hidden;
}

body.onload {
  opacity: 1;
}

img[src$=".svg"] {
  width: 100%;
  height: auto;
}

svg {
  width: 100%;
  height: auto;
  overflow: hidden;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  -ms-interpolation-mode: bicubic;
}

/* 画像配置 左 */
img.alignleft {
  text-align: left;
}

/* 画像配置 中央 */
img.aligncenter {
  display: block;
  margin: 1px auto;
}

/* 画像配置 右 */
img.alignright {
  display: block;
  margin: 1px 1px 1px auto;
}

*:focus {
  outline: none;
}

section {
  position: relative;
  z-index: 2;
}

a {
  transition: opacity 0.3s ease 0s;
}

a:hover {
  opacity: 0.5;
}

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

.btn-container {
  margin-top: 32px;
}
.btn-container a p {
  margin-right: 24px;
  font-weight: bold;
}
.btn-container a span {
  width: 48px;
  height: 48px;
  display: block;
  background-color: #000;
  border-radius: 50%;
  padding: 17px 16px 15px 16px;
}
.btn-container .flex-unit {
  justify-content: unset;
  align-items: center;
}

.btn-container-back {
  display: flex;
  justify-content: end;
}
.btn-container-back a span img {
  transform: scale(-1, 1);
}
.btn-container-back a p {
  margin-right: 0;
  margin-left: 24px;
}

.news-arrow {
  width: 32px;
  height: 32px;
  display: inline-block;
  background: #fff;
  border-radius: 50%;
  padding: 8px;
}

.txt-limit {
  width: 30%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.txt-limit2 {
  overflow: hidden;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* 任意の行数を指定 */
  line-height: 1.6;
  margin-bottom: 0;
}

.p-fixed {
  overflow: hidden;
}

.w-limit {
  max-width: 870px;
}

#google_language_translator{
  display: none;
}

/* ========================================================================================================
アニメーション
======================================================================================================== */
.js-fade {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: opacity 1s, visibility 1s, transform 1s;
}

.scroll {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

/* その場で */
.fadeIn {
  animation-name: fadeInAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* 下から */
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 上から */
.fadeDown {
  animation-name: fadeDownAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeDownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* ========================================================================================================
FONT SIZE
======================================================================================================== */
p {
  font-size: 1.6rem;
  line-height: 2;
}

p.small, h4 {
  font-size: 1.2rem;
}

p.s-small {
  font-size: 1rem;
}

p.mediam, h5 {
  font-size: 2rem;
}

h3 {
  font-size: 1.4rem;
}

h2 {
  font-size: 3.2rem;
}

h2.main-tit {
  margin: 16px 0 32px;
}

h2.sub-tit {
  font-size: 1.2rem;
  margin: 0;
  text-transform: uppercase;
  color: #fff;
}
h2.sub-tit span {
  background: #333533;
  padding: 5px 10px;
  display: inline-block;
}

h1 {
  font-size: 8rem;
}

h1.subtit {
  font-size: 2.4rem;
}

.kv-tit h1 {
  font-size: 8rem;
  text-transform: uppercase;
}
.kv-tit h1:first-child {
  font-size: 2.4rem;
  margin-bottom: 24px;
}

/* ========================================================================================================
SWIPER
======================================================================================================== */
.swiper-container {
  margin: 40px auto;
  padding: 0 60px;
}
.swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
}
.swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box {
  width: 100%;
  position: relative;
}
.swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box .thumb-info {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
  padding: 24px 20px;
  display: flex;
  align-items: flex-end;
}
.swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box .thumb-info .thumb-info-txt {
  width: 100%;
}
.swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box .thumb-info .thumb-info-txt p {
  line-height: 1;
}
.swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box .thumb-info .thumb-info-txt .day {
  margin-bottom: 12px;
}
.swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box .thumb-info .thumb-info-txt .txt-limit {
  width: 100%;
}
.swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box::before {
  content: "";
  display: block;
  padding-top: 150%; /* 比率を指定 */
}
.swiper-container .swiper-wrapper .swiper-slide .swiper-thumb {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 2.5%;
  /* top: 55%; */
  top: 45%;
  background: #000;
  border-radius: 50%;
  /* width: 64px;
  height: 64px; */

  width: 44px;
  height: 44px;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  /* top: 55%; */
  top: 45%;
  left: 2.5%;
  background: #000;
  border-radius: 50%;
  /* width: 64px;
  height: 64px; */

  width: 44px;
  height: 44px;
}

/* 前への矢印カスタマイズ */
.swiper-button-prev::after {
  background-image: url(../img/arrow-up-solid.png);
  background-size: cover;
  width: 20px;
  font-size: 17px;
  content: "none";
  transform: scale(-1, 1);
}

/* 次への矢印カスタマイズ */
.swiper-button-next::after {
  background-image: url(../img/arrow-up-solid.png);
  background-size: cover;
  width: 20px;
  font-size: 17px;
  content: "none";
}

/* ========================================================================================================
TAB
======================================================================================================== */
.tab-group {
  display: flex;
  justify-content: end;
  gap: 16px;
}

.tab {
  border: solid 1px #fff;
  cursor: pointer;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 2rem;
  font-weight: bold;
  opacity: 0.5;
  color: #fff;
}

.panel {
  display: none;
}

.tab.is-active {
  background: #fff;
  color: #333533;
  transition: all 0.2s ease-out;
  opacity: 1;
}

.panel.is-show {
  display: block;
}

/* ========================================================================================================
WETHER
======================================================================================================== */
.weather-area {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  max-width: 360px;
  position: absolute;
  right: 20px;
  bottom: 100px;
  z-index: 2;
}
.weather-area .tit-area {
  text-align: center;
}
.weather-area .sub-tit {
  font-size: 1rem;
}
.weather-area .main-tit {
  font-size: 1.6rem;
  text-align: center;
  margin: 12px auto 16px;
}
.weather-area .main-tit span {
  font-size: 1rem;
  background: #ff0000;
}

#weather-container {
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
#weather-container .sep-line {
  width: 1px;
  height: 16px;
  background: #000;
  margin: 0 16px;
}
#weather-container .whether-item .whether-info {
  display: flex;
  align-items: center;
  margin-left: -5%;
}
#weather-container .whether-item h3 {
  font-size: 12px;
  text-align: center;
}

#temperature, #temperature2, #temperature3 {
  font-size: 20px;
  font-weight: bold;
  display: flex;
  align-items: end;
  line-height: 1;
}
#temperature span, #temperature2 span, #temperature3 span {
  font-size: 12px;
  display: block;
  width: 16px;
}

#description {
  color: #555;
}

/* ========================================================================================================
FORM
======================================================================================================== */
.contact-lead {
  max-width: 640px;
  margin: 0 auto 80px;
}

.wpcf7-form {
  max-width: 640px;
  margin: 0 auto 80px;
}

.wpcf7-form-control-wrap input {
  min-height: 32px;
  width: calc(50% - 8px);
}
.wpcf7-form-control-wrap .form-name-last, .wpcf7-form-control-wrap .form-name-last-ja {
  margin-right: 16px;
}
.wpcf7-form-control-wrap .wpcf-3-validates-as-email, .wpcf7-form-control-wrap .wpcf-3-validates-as-tel, .wpcf7-form-control-wrap #zip, .wpcf7-form-control-wrap #pref, .wpcf7-form-control-wrap #city, .wpcf7-form-control-wrap .wpcf7-textarea {
  width: 100%;
}

.wpcf7-submit {
  background-color: #000;
  border: none;
  width: 100%;
  height: 40px;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
}

.wpcf7-previous {
  text-align: center;
  background: none;
  border: navajowhite;
  text-decoration: underline;
}

/* ========================================================================================================
HEADER
======================================================================================================== */
.home #header.fadeDown {
  animation-delay: 0.3s;
  animation-duration: 1s;
}

.home .sec-fv .sec-fv-info-container.fadeUp {
  animation-delay: 0.3s;
  animation-duration: 1s;
}

#header {
  padding: 20px;
  position: fixed;
  z-index: 3;
  width: 100%;
  background-color: #fff;
  /* Submenu */
}
#header .logo {
  width: 160px;
  font-size: unset;
}
#header .header-list-menu {
  background-color: #e7e7e7;
  border-radius: 10px;
  padding: 24px 16px;
  margin-right: 16px;
  max-height: 60px;
  z-index: 1;
}
#header .header-list-menu .flex-unit {
  gap: 16px;
}
#header .header-list-menu .flex-unit li {
  position: relative;
}
#header .hb-menu {
  display: flex;
  align-items: center;
  background-color: #e7e7e7;
  border-radius: 10px;
  padding: 24px 16px;
  max-height: 60px;
  cursor: pointer;
}
#header .menu-mask {
  width: 100%;
  height: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.5);
  top: 0;
  left: 0;
  opacity: 0;
  transition: 0.3s;
  z-index: 0;
}
#header .menu-mask-open {
  opacity: 1;
  z-index: 2;
}
#header .dropdown__lists {
  display: none; /*デフォルトでは非表示の状態にしておく*/
  width: 200%;
  position: absolute;
  top: 50%;
  left: -55%;
  padding-top: 30px;
}
#header .header-list-menu .flex-unit li:hover .dropdown__lists {
  display: block; /*Gナビメニューにホバーしたら表示*/
}
#header .dropdown__list {
  background-color: #fff;
  transition: all 0.3s;
  position: relative;
}
#header .dropdown__list:hover {
  opacity: 0.5;
}
#header .dropdown__list a {
  display: flex;
  justify-content: center;
  color: #333533;
  position: relative;
  font-size: 1.4rem;
  padding: 10px;
  font-weight: bold;
}

/*　上に上がる動き　*/
#header.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
/*　下に下がる動き　*/
#header.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*========= ナビゲーションのためのCSS ===============*/
.menu-open {
  z-index: 5;
  position: relative;
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 0.5);
  padding: 100px 20px 40px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 4;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.active {
  opacity: 1;
  visibility: visible;
  width: 100%;
  height: 100vh;
}

/*モーダル枠の指定*/
.modal-body {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  width: 100%;
}

/*モーダル内のコンテンツの指定*/
.modal-content {
  background: #fff;
  text-align: left;
  padding: 20px;
  max-width: 800px;
  margin-left: auto;
  border-radius: 10px;
}

.catch {
  display: flex;
  align-items: center; /* 垂直中心 */
  justify-content: center; /* 水平中心 */
  margin-bottom: 16px;
}

.catch:before, .catch:after {
  border-top: 1px solid #e7e7e7;
  content: "";
  width: 42%; /* 線の長さ */
}

.catch:before {
  margin-right: 1em; /* 文字の右隣 */
}

.catch:after {
  margin-left: 1em; /* 文字の左隣 */
}

.drawer-menu-event {
  margin-top: 20px;
}
.drawer-menu-event .btn-unit-area a span {
  width: 24px;
  height: 24px;
  padding: 7px 8px 9px 8px;
}

.btn-unit-area {
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}
.btn-unit-area .btn-container a h3 {
  margin-right: 10px;
}

.flex-unit-indrawer {
  gap: 10px;
  flex-wrap: wrap;
}
.flex-unit-indrawer li {
  width: calc(25% - 10px);
  position: relative;
  background-size: cover;
  border-radius: 16px;
}
.flex-unit-indrawer li a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.2);
  border-radius: 16px;
}
.flex-unit-indrawer li a .purpose-txt {
  text-align: center;
  color: #fff;
}
.flex-unit-indrawer li a .purpose-txt p {
  line-height: 1;
}
.flex-unit-indrawer li:before {
  content: "";
  display: block;
  padding-top: 66.66%;
}

.drawer-menu-purpose {
  margin-top: 32px;
}
.drawer-menu-purpose .flex-unit-indrawer {
  justify-content: flex-start;
}
.drawer-menu-purpose .flex-unit-indrawer li {
  width: 96px;
  height: 96px;
  background-color: #333533;
}
.drawer-menu-purpose .flex-unit-indrawer li a .purpose-txt svg,
.drawer-menu-purpose .flex-unit-indrawer li a .purpose-txt img {
  width: 24px;
  margin-bottom: 10px;
  fill: #fff;
}
.drawer-menu-purpose .flex-unit-indrawer li:before {
  content: unset;
}

.drawer-menu-info {
  margin-top: 32px;
}
.drawer-menu-info .flex-unit.btn-unit-area .btn-container {
  margin-top: 0;
}
.drawer-menu-info .flex-unit.btn-unit-area .btn-container a p {
  margin-right: 10px;
}
.drawer-menu-info .flex-unit.btn-unit-area .btn-container a span {
  width: 24px;
  height: 24px;
  padding: 7px 8px 9px 8px;
}

.drawer-menu-nav {
  margin-top: 40px;
}
.drawer-menu-nav .nav-btn div {
  width: 120px;
  height: 32px;
  background-color: #e7e7e7;
  border-radius: 8px;
}
.drawer-menu-nav .nav-btn div a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
}
.drawer-menu-nav .nav-btn .link-btn {
  margin-right: 16px;
}
.drawer-menu-nav .nav-sns ul li {
  width: 24px;
}
.drawer-menu-nav .nav-sns ul li:first-child {
  margin-right: 16px;
}
.drawer-menu-nav .nav-sub ul li:first-child {
  margin-right: 16px;
}

/* 背景が出現後にナビゲーション li を表示※レイアウトによって調整してください。不必要なら削除*/
#g-nav.panelactive ul li {
  animation-name: gnaviAnime;
  animation-duration: 1s;
  animation-delay: 0.2s; /*0.2 秒遅らせて出現*/
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes gnaviAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#g-nav li a {
  color: #333;
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: bold;
}

/*========= ボタンのためのCSS ===============*/
.openbtn {
  position: relative;
  z-index: 9999; /*ボタンを最前面に*/
  cursor: pointer;
  width: 50px;
  height: 50px;
}

/*×に変化*/
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 1px;
  background-color: #666;
  width: 16px;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 23px;
}

.openbtn span:nth-of-type(3) {
  top: 31px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

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

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

/* ========================================================================================================
fv
======================================================================================================== */
.sec-fv {
  width: 100%;
  height: 100vh;
}
.sec-fv .fadeIn {
  animation-delay: 0.5s;
  animation-duration: 1.5s;
}
.sec-fv .kv-tit-area {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
  color: #fff;
  padding-left: 40px;
  background-color: rgba(0, 0, 0, 0.2);
}
.sec-fv .sec-fv-info-container {
  position: absolute;
  bottom: 0;
  z-index: 2;
  padding: 12px 40px;
  background-color: rgba(0, 0, 0, 0.4);
  color: #fff;
  width: 100%;
}
.sec-fv .sec-fv-info-container div a {
  font-size: 1.6rem;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.sec-fv .sec-fv-info-container div a .category-tit {
  padding: 10px;
  background-color: #084d51;
  display: inline-block;
  border-radius: 8px;
}
.sec-fv .sec-fv-info-container div a .fv-news-day {
  margin: 0 10px 0px 16px;
}
.sec-fv .sec-fv-info-container div a p {
  margin-left: 16px;
  margin-right: 24px;
}
.sec-fv .volcano-info-area {
  position: absolute;
  right: 40px;
  bottom: 15px;
  z-index: 2;
  color: #fff;
}
.sec-fv .volcano-info-area .volcano-arrow {
  width: 32px;
}
.sec-fv .volcano-info-area p {
  margin: 0 24px 0 10px;
  font-weight: bold;
}
.sec-fv .swiper-wrap {
  margin: 0 calc(50% - 50vw);
  max-width: 100vw;
  position: relative;
  overflow: hidden;
}
@keyframes zoom-in {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
.sec-fv .swiper-slide-active .slide-img,
.sec-fv .swiper-slide-duplicate-active .slide-img,
.sec-fv .swiper-slide-prev .slide-img {
  animation: zoom-in 10s linear 0s 1 normal both;
}
.sec-fv .slide-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 3vw;
  font-family: serif;
  font-weight: bold;
  text-shadow: 2px 2px 8px #000;
  color: #fff;
  transform: translate(-50%, -50%);
}
.sec-fv .slide-img img {
  object-fit: cover;
  height: 100vh;
  width: 100vw;
}

/* ========================================================================================================
sec-event
======================================================================================================== */
.sec-event {
  margin: 64px auto;
  max-width: 1366px;
}
.sec-event h2.sub-tit {
  color: #333533;
}
.sec-event h2.sub-tit span {
  background: #fff;
}
.sec-event .sec-event-inner {
  padding: 64px 0px;
  background-color: #04787e;
  max-width: 1246px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 16px;
}
.sec-event .sec-event-inner .tab-panel .flex-unit {
  padding: 0px 60px;
}
.sec-event .sec-event-inner .tit-area h2.main-tit {
  color: #fff;
}
.sec-event .sec-event-inner .btn-container {
  padding-right: 60px;
}
.sec-event .sec-event-inner .btn-container .flex-unit {
  justify-content: flex-end;
  color: #fff;
}
.sec-event .sec-event-inner .btn-container a {
  color: #333533;
}
.sec-event .sec-event-inner .btn-container a span {
  background-color: #fff;
}

/* ========================================================================================================
sec-about
======================================================================================================== */
.sec-about {
  margin-bottom: 80px;
}
.sec-about .sec-inner {
  padding-right: 120px;
}
.sec-about .sec-inner.flex-unit {
  gap: 64px;
  align-items: flex-start;
}
.sec-about .img-area {
  width: 50%;
  position: relative;
  padding-bottom: 55%;
}
.sec-about .img-area .about-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/bg-about.jpg);
  background-size: cover;
  border-radius: 0 16px 16px 0;
}
.sec-about .text-area {
  width: 50%;
}
.sec-about .area-map {
  width: 480px;
  margin: 40px auto 0px;
}

/* ========================================================================================================
sec-purpose
======================================================================================================== */
.sec-purpose {
  padding: 0px 120px;
  margin-bottom: 80px;
  background-image: url(../img/bg-top-purpose.png);
  background-size: cover;
  background-position: bottom;
}
.sec-purpose .sec-inner {
  max-width: 1366px;
  margin: 0 auto;
}
.sec-purpose .purpose-contants-area ul {
  flex-wrap: wrap;
  gap: 24px;
}
.sec-purpose .purpose-contants-area ul li {
  position: relative;
  width: calc(33.3333333333% - 16px); /* 任意の横幅を指定 */
  background-size: cover;
  border-radius: 16px;
}
.sec-purpose .purpose-contants-area ul li a {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 16px;
}
.sec-purpose .purpose-contants-area ul li a:hover {
  opacity: 0.8;
}
.sec-purpose .purpose-contants-area ul li a .purpose-txt {
  text-align: center;
  color: #fff;
}
.sec-purpose .purpose-contants-area ul li a .purpose-txt p {
  line-height: 1;
  font-weight: 700;
}
.sec-purpose .purpose-contants-area ul li a .purpose-txt svg,
.sec-purpose .purpose-contants-area ul li a .purpose-txt img {
  width: 32px;
  margin: 16px auto;
  fill: #fff;
}
.sec-purpose .purpose-contants-area ul li:before {
  content: "";
  display: block;
  padding-top: 66.66%; /* 比率を指定 */
}
.sec-purpose .purpose-contants-area ul:after {
  content: "";
  display: block;
  width: calc(33.3333333333% - 16px); /* 任意の横幅を指定 */
  height: 0;
}

/*　========================================================================================================
sec-news
======================================================================================================== */
.sec-news {
  padding-right: 40px;
  margin-bottom: 80px;
}
.sec-news .sec-news-wrapper.flex-unit {
  flex-direction: row-reverse;
}
.sec-news .img-area {
  width: 40%;
  padding-bottom: 40%;
  margin-left: -30%;
  position: relative;
}
.sec-news .img-area .news-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-image: url(../img/1.jpg);
  border-radius: 16px;
}
.sec-news .text-area {
  border-radius: 0px 16px 16px 0px;
  background: #084d51;
  padding: 80px 160px 80px 80px;
  width: 95%;
  color: #fff;
}
.sec-news .text-area .tit-area h2.sub-tit span {
  background-color: #fff;
  color: #333533;
}
.sec-news .text-area .news-contants-container ul li a {
  font-size: 1.6rem;
  padding-bottom: 24px;
  margin-bottom: 24px;
  border-bottom: solid 1px #fff;
  display: block;
}
.sec-news .text-area .news-contants-container ul li a span {
  display: block;
  margin-bottom: 16px;
}
.sec-news .text-area .news-contants-container .btn-container .flex-unit {
  justify-content: flex-end;
}
.sec-news .text-area .news-contants-container .btn-container a span {
  background-color: #fff;
}

/* ========================================================================================================
sec-link
======================================================================================================== */
.sec-link {
  background-color: #e7e7e7;
}
.sec-link .sec-inner {
  padding: 80px;
}
.sec-link .sec-inner ul.flex-unit {
  gap: 24px;
  flex-wrap: wrap;
}
.sec-link .sec-inner ul.flex-unit li {
  width: calc(25% - 18px);
}
.sec-link .sec-inner ul.flex-unit li a img {
  margin-bottom: 12px;
}
.sec-link .sec-inner ul:after {
  content: "";
  display: block;
  width: calc(50% - 18px);
  height: 0;
}

/* ========================================================================================================
footer
======================================================================================================== */
.footer {
  background-color: #333533;
  color: #fff;
  /* Submenu */
}
.footer .footer-inner {
  padding: 80px 40px 20px;
}
.footer .footer-inner .header-list-menu {
  border-bottom: solid 1px #fff;
  margin-bottom: 64px;
}
.footer .footer-inner .header-list-menu ul.flex-unit {
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 16px;
  padding-bottom: 40px;
}
.footer .footer-inner .header-list-menu ul.flex-unit li {
  position: relative;
}
.footer .footer-inner .footer-info p {
  margin-top: 64px;
  line-height: 1.6;
}
.footer .footer-inner .footer-info-sns {
  margin: 40px auto;
}
.footer .footer-inner .footer-info-sns ul.flex-unit {
  justify-content: flex-start;
  gap: 16px;
}
.footer .footer-inner .footer-info-sns li {
  width: 32px;
}
.footer .footer-inner .footer-nav-sub ul li:first-child {
  margin-right: 20px;
}
.footer .dropdown__lists {
  display: none; /*デフォルトでは非表示の状態にしておく*/
  width: 200%;
  position: absolute;
  top: 50%;
  left: -55%;
  padding-top: 30px;
}
.footer .header-list-menu .flex-unit li:hover .dropdown__lists {
  display: block; /*Gナビメニューにホバーしたら表示*/
}
.footer .dropdown__list {
  background-color: #fff;
  transition: all 0.3s;
  position: relative;
}
.footer .dropdown__list:hover {
  opacity: 0.5;
}
.footer .dropdown__list a {
  display: flex;
  justify-content: center;
  color: #333533;
  position: relative;
  font-size: 1.4rem;
  padding: 10px;
  font-weight: bold;
}

/* ========================================================================================================
UNDER COMMON
======================================================================================================== */
.page-fv {
  width: 100%;
  height: 100%;
  max-height: 500px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}
.page-fv .page-fv-inner {
  padding: 200px 80px 100px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
}
.page-fv .page-fv-inner .tit-area .sub-tit span {
  background-color: #fff;
  color: #333533;
}
.page-fv .page-fv-inner p {
  margin-bottom: 48px;
}

h2.season-tit {
  margin-bottom: 32px;
  color: #fff;
}
h2.season-tit span.spring {
  background-color: #da9e9f;
  padding: 5px 10px;
}
h2.season-tit span.summer {
  background-color: #eb7f6f;
  padding: 5px 10px;
}
h2.season-tit span.autom {
  background-color: #d6a208;
  padding: 5px 10px;
}
h2.season-tit span.winter {
  background-color: #143651;
  padding: 5px 10px;
}
h2.season-tit span.other {
  background-color: #333533;
  padding: 5px 10px;
}

.anker-container {
  margin-bottom: 80px;
}
.anker-container .anker-inner {
  background: #fff;
  padding: 16px 32px;
  border-radius: 8px;
}
.anker-container .anker-inner ul {
  gap: 20px;
}
.anker-container .anker-inner ul li a {
  gap: 10px;
}
.anker-container .anker-inner ul li a p {
  font-size: 1.2rem;
}
.anker-container .anker-inner ul li a span {
  width: 12px;
  height: 12px;
  display: block;
  border-radius: 50%;
}
.anker-container .anker-inner ul li a img {
  width: 20px;
  padding: 5px;
  transform: rotate(90deg);
}
.anker-container .anker-inner ul li a .point-spring {
  background-color: #da9e9f;
}
.anker-container .anker-inner ul li a .point-summer {
  background-color: #eb7f6f;
}
.anker-container .anker-inner ul li a .point-autom {
  background-color: #d6a208;
}
.anker-container .anker-inner ul li a .point-winter {
  background-color: #143651;
}
.anker-container .anker-inner ul li a .point-other {
  background-color: #333533;
}
.anker-container .anker-inner ul li:not(:last-child) {
  border-right: 1px solid #e7e7e7;
  padding-right: 3%;
}

.single-post .page-fv .page-fv-inner p.single-term {
  margin-bottom: 10px;
}

.single-lead {
  max-width: 1126px;
  margin: 64px auto 48px;
}
.single-lead h3 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.single-lead h4 {
  font-size: 2rem;
  margin-bottom: 16px;
}
.single-lead p {
  margin-bottom: 16px;
}
.single-lead img {
  /* width: 100%; */
  margin-bottom: 16px;
}
.single-lead a {
  text-decoration: underline;
}

.single-container .single-container-wrapper {
  max-width: 1126px;
  margin: 0 auto 80px;
}
.single-container .single-container-wrapper h2 {
  margin: 64px auto 32px;
  text-align: center;
}

.event-info-box {
  width: 100%;
  border: solid 1px #333533;
  border-radius: 16px;
  padding: 48px 40px;
}
.event-info-box .event-info-txt {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #333533;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 32px;
}
.event-info-box .event-info-txt p span {
  background-color: #333533;
  color: #fff;
  padding: 5px 8px;
}
.event-info-box .event-info-txt:last-child {
  border-bottom: unset;
}

.post-type-archive-news .sec-news {
  padding-right: 0;
}
.post-type-archive-news .sec-news .text-area {
  width: 100%;
  border-radius: unset;
  padding: 80px 160px;
  background-color: #e7e7e7;
  color: #333533;
}
.post-type-archive-news .sec-news .text-area .news-contants-container ul li a {
  border-bottom: solid 1px #333533;
}

.stay-area-container .stay-box-container ul {
  gap: 32px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.stay-area-container .stay-box-container ul li {
  width: calc(33.3333333333% - 22px);
}
.stay-area-container .stay-box-container ul li .stay-thumb-container {
  position: relative;
  width: 100%; /* 任意の横幅を指定 */
  border-radius: 16px 16px 0px 0px;
}
.stay-area-container .stay-box-container ul li .stay-thumb-container .stay-thumb {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0px 0px;
}
.stay-area-container .stay-box-container ul li .stay-thumb-container p {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  background-color: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-weight: bold;
  border-radius: 16px 16px 0px 0px;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
}
.stay-area-container .stay-box-container ul li .stay-thumb-container span {
  font-size: 14px;
}
.stay-area-container .stay-box-container ul li .stay-thumb-container .slider-store .swiper-wrapper {
  position: relative;
  width: 100%; /* 任意の横幅を指定 */
  border-radius: 16px 16px 0px 0px;
}
.stay-area-container .stay-box-container ul li .stay-thumb-container .slider-store .swiper-wrapper .stay-thumb {
  position: static;
  background-size: cover;
  background-position: center;
  border-radius: 16px 16px 0px 0px;
  width: 100%;
  height: 100%;
  padding-bottom: 56.25%;
}
.stay-area-container .stay-box-container ul li .stay-thumb-container .swiper-pagination-bullet-active {
  background-color: #fff;
}
.stay-area-container .stay-box-container ul li .stay-info-txt {
  background-color: #fff;
  border-radius: 0px 0px 16px 16px;
}
.stay-area-container .stay-box-container ul li .stay-info-txt .stay-info-inner {
  padding: 16px;
}
.stay-area-container .stay-box-container ul li .stay-info-txt .stay-info-inner ul li {
  width: 100%;
  border-bottom: 1px solid #e7e7e7;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.stay-area-container .stay-box-container ul li .stay-info-txt .stay-info-inner ul li .txt-limit {
  width: 100%;
}
.stay-area-container .stay-box-container ul li .stay-info-txt .stay-info-inner ul li span, .stay-area-container .stay-box-container ul li .stay-info-txt .stay-info-inner ul li p {
  font-size: 1.2rem;
}
.stay-area-container .stay-box-container ul li .stay-info-txt .stay-info-inner ul li span {
  color: #333533;
  opacity: 0.5;
}
.stay-area-container .stay-box-container ul li .stay-info-txt .stay-info-inner ul li:last-child {
  border-bottom: unset;
  padding-bottom: 0;
  margin-bottom: 0;
}
.stay-area-container .stay-box-container ul li .stay-info-txt .stay-info-inner .flex-unit {
  gap: 16px;
  justify-content: flex-start;
}
.stay-area-container .stay-box-container .wp-pagenavi {
  display: flex;
  gap: 16px;
  max-width: 480px;
  width: 100%;
  align-items: center;
  justify-content: center;
  margin: 40px auto 0px;
}
.stay-area-container .stay-box-container .wp-pagenavi span, .stay-area-container .stay-box-container .wp-pagenavi a {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  font-size: 1.6rem;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #333533;
}
.stay-area-container .stay-box-container .wp-pagenavi .current {
  background-color: #333533;
  color: #fff;
}
.stay-area-container .stay-box-container .wp-pagenavi .pagenation-arrow {
  width: 16px;
}

.page-id-158 .about-contents-container_history {
  background-image: url(../img/bg-about01.jpg);
  background-size: contain;
  background-position: bottom;
  background-repeat: repeat-x;
}
.page-id-158 .about-contents-container_history .about-contents02 .about-contents-inner {
  margin: 80px auto 40px;
}
.page-id-158 .about-contents_kiso-natural {
  background-image: url(../img/bg-about02.jpg);
  background-size: cover;
  position: relative;
  z-index: 0;
  overflow: hidden;
}
.page-id-158 .about-contents_kiso-natural .about-contents-wrapper {
  background-color: rgba(0, 0, 0, 0.5);
}
.page-id-158 .about-contents_kiso-natural .about-txt-area {
  color: #fff;
}
.page-id-158 .about-contents_kiso-natural .about-txt-area h2 {
  color: #333533;
}
.page-id-158 .about-contents_kiso-natural .about-txt-area h2 span {
  background-color: #fff;
}
.page-id-158 .about-contents_kiso-natural:before {
  content: "";
  background: inherit;
  -webkit-filter: blur(2px);
  -moz-filter: blur(52x);
  -o-filter: blur(2px);
  -ms-filter: blur(2px);
  filter: blur(2px);
  position: absolute;
  top: -5px;
  left: -5px;
  right: -5px;
  bottom: -5px;
  z-index: -1;
}
.page-id-158 .about-contents-container_ontake .about-contents-wrapper .about-contents02 .about-contents-inner {
  margin-bottom: 48px;
}
.page-id-158 .about-contents-container .about-contents-wrapper {
  padding: 80px 120px;
}
.page-id-158 .about-contents-container .flex-unit {
  gap: 40px;
}
.page-id-158 .about-contents-container .about-txt-area, .page-id-158 .about-contents-container .about-img, .page-id-158 .about-contents-container .flex-unit-item {
  width: 50%;
}
.page-id-158 .about-contents-container .about-txt-area img, .page-id-158 .about-contents-container .about-img img, .page-id-158 .about-contents-container .flex-unit-item img {
  border-radius: 16px;
}
.page-id-158 .about-contents-container .toc-anker {
  text-align: center;
}
.page-id-158 .about-contents-container .toc-anker h5 {
  font-size: 2rem;
  margin: 40px auto 20px;
}
.page-id-158 .about-contents-container .toc-anker .flex-unit {
  width: 100%;
  background-color: #333533;
  color: #fff;
  padding: 32px;
  font-size: 1.6rem;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  border-radius: 16px;
}
.page-id-158 .about-contents-container .toc-anker .flex-unit li {
  border: solid 1px #fff;
  border-radius: 16px;
}
.page-id-158 .about-contents-container .toc-anker .flex-unit li a {
  padding: 10px 32px;
  display: inline-block;
}
.page-id-158 .about-txt-area h2 {
  color: #fff;
}
.page-id-158 .about-txt-area h2 span {
  background-color: #333533;
}
.page-id-158 .about-lead {
  font-weight: bold;
  margin: 32px 0px;
  line-height: 1.6;
}
.page-id-158 .about-contents-inner02.flex-unit {
  flex-direction: row-reverse;
}
.page-id-158 .about-contents_food .about-txt-area {
  text-align: center;
  width: 100%;
  margin-bottom: 40px;
}
.page-id-158 .about-contents_food .flex-unit-item img {
  margin-bottom: 16px;
}
.page-id-158 .about-contents_food .about-contents01 .flex-unit {
  align-items: flex-start;
}
.page-id-158 .sec-kiso-isan {
  background-color: #d3d3d3;
}
.page-id-158 .sec-kiso-isan .about-txt-area {
  width: 100%;
}
.page-id-158 .sec-kiso-isan .about-txt-area h2 {
  margin-bottom: 32px;
}
.page-id-158 .sec-kiso-isan .btn-container .flex-unit {
  display: flex;
  gap: 0;
}

/* ========================================================================================================
SERCH FORM
======================================================================================================== */


.stay-box-container-serch{
  background-color: #fff;
  border-radius: 16px;
  padding: 24px;
}

.stay-box-container-serch label{
  font-size: 16px;
}

.stay-box-container-serch .f-area , .stay-box-container-serch .f-type{
  margin-bottom: 32px;
}

.event-area-container.sec-serch-area{
  background-color: #fff;
}

.sec-serch-area .sec-inner{
  display: flex;
  justify-content: space-between;
  gap: 32px;
  align-items: flex-start;
}

.sec-serch-area .sec-inner .stay-box-container-serch{
  width: calc(50% - 16px);
  background-color: #e7e7e7;
}

.sec-serch-area .sec-inner .type-map{
  width: calc(50% - 16px);
}

.sec-serch-area .sec-inner .type-map iframe{
  width: 100%;
  border-radius: 16px;
}
@media screen and (max-width: 480px) {
  .sec-serch-area .sec-inner .type-map iframe {
    height: 300px;
  }
}

.sec-serch-area .sec-inner .serch-btn{
  width: 100%;
  padding: 8px;
  background-color: #000;
  color: #fff;
  font-size: 14px;
  margin: 0 auto 16px;
}

#clear-search{
  text-align: center;
  display: block;
  text-decoration: underline;
}


/* ========================================================================================================
PAGE EVENT
======================================================================================================== */
.event-area-container {
  background-color: #f4ece1;
}
.event-area-container .sec-inner {
  padding: 64px 80px;
}

.page-stay .event-area-container {
  background-color: #e7e7e7;
}
.page-stay .sec-purpose {
  margin-top: 80px;
  background-image: unset;
}

.season-container .season-container-wrapper {
  margin-bottom: 64px;
}

.season-item-wrapper .flex-unit {
  justify-content: flex-start;
  gap: 40px 24px;
  flex-wrap: wrap;
  align-items: flex-start;
}
.season-item-wrapper .flex-unit .season-item-box-container {
  width: 100%;
  position: relative;
  max-width: calc(25% - 18px);
}
.season-item-wrapper .flex-unit .season-item-box {
  width: 100%;
  position: relative;
}
.season-item-wrapper .flex-unit .season-item-box a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
}
.season-item-wrapper .flex-unit .season-item-box a p {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 24px 16px;
  color: #fff;
  font-weight: bold;
  line-height: 1.4;
  background-color: rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}
.season-item-wrapper .flex-unit .season-item-box:before {
  content: "";
  display: block;
  padding-top: 150%;
}

/* ========================================================================================================
SITEMAP
======================================================================================================== */
.sitemap-single {
  display: flex;
  justify-content: flex-start;
  gap: 32px;
  flex-wrap: wrap;
}
.sitemap-single .maplist {
  width: calc(33% - 18px);
}
.sitemap-single .maplist h3 {
  font-size: 1.6rem;
}
.sitemap-single .maplist h4 {
  font-size: 1.2rem;
}
.sitemap-single .maplist a {
  text-decoration: none;
}
.sitemap-single .maplist a span {
  width: 16px;
  display: block;
}

/* ========================================================================================================
===========================================================================================================

safari

===========================================================================================================
======================================================================================================== */
_::-webkit-full-page-media, _:future, :root #temperature span, #temperature2 span, #temperature3 span {
  letter-spacing: 0em;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome, .text {
    color: red;
  }
}
/* ========================================================================================================
===========================================================================================================

responsive

===========================================================================================================
======================================================================================================== */
@media screen and (max-width: 480px) {
  /* ========================================================================================================
  FONT SIZE
  ======================================================================================================== */
  p {
    font-size: 1.4rem;
  }
  p.small, h4 {
    font-size: 1.2rem;
  }
  p.mediam {
    font-size: 2rem;
  }
  h3 {
    font-size: 1.2rem;
  }
  h2 {
    font-size: 2.4rem;
    margin: 12px 0 24px;
  }
  h2.sub-tit {
    font-size: 1rem;
  }
  h2.sub-tit span {
    padding: 5px;
  }
  h1 {
    font-size: 4rem;
  }
  h1.subtit {
    font-size: 1.4rem;
  }
  .kv-tit h1 {
    font-size: 4rem;
    text-transform: uppercase;
  }
  .kv-tit h1:first-child {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  .news-arrow {
    width: 20px;
    height: 20px;
    padding: 2px 5px 5px 5px;
  }
  .btn-container a p {
    margin-right: 16px;
  }
  .btn-container a span {
    width: 40px;
    height: 40px;
    padding: 12px;
  }
  .swiper-button-next, .swiper-rtl .swiper-button-prev {
    /* width: 32px;
    height: 32px; */

    width: 22px;
    height: 22px;
  }
  .swiper-button-prev, .swiper-rtl .swiper-button-next {
    /* width: 32px;
    height: 32px; */

    width: 22px;
    height: 22px;
  }
  .swiper-button-next::after, .swiper-button-prev::after {
    width: 14px;
    font-size: 13px;
  }
  .swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box .thumb-info {
    padding: 16px 10px;
  }
  .swiper-container .swiper-wrapper .swiper-slide .swiper-thumb-box .thumb-info .thumb-info-txt .day {
    font-size: 1rem;
  }
  /* ========================================================================================================
  tab
  ======================================================================================================== */
  .tab {
    font-size: 1.6rem;
    width: 40px;
    height: 40px;
  }
  .tab-group {
    gap: 10px;
  }
  /* ========================================================================================================
  WETHER
  ======================================================================================================== */
  .weather-area {
    position: static;
    max-width: calc(100% - 40px);
    width: 100%;
    margin: 48px auto 0px;
    background-color: #e7e7e7;
  }
  /* ========================================================================================================
  HEADER
  ======================================================================================================== */
  #header {
    padding: 10px;
  }
  #header .logo {
    width: 120px;
  }
  #header .header-list-menu {
    display: none;
  }
  #header .hb-menu {
    padding: 16px;
    max-height: 48px;
  }
  .catch:after, .catch:before {
    width: 32%;
  }
  .flex-unit-indrawer li {
    width: calc(50% - 5px);
  }
  .drawer-menu-nav {
    display: block;
  }
  .drawer-menu-nav .flex-unit {
    justify-content: flex-start;
  }
  .drawer-menu-nav .nav-sns {
    margin: 32px 0px;
  }
  /* ========================================================================================================
  sec-fv
  ======================================================================================================== */
  .sec-fv .kv-tit-area {
    padding-left: 20px;
  }
  .sec-fv .sec-fv-info-container {
    padding: 10px;
  }
  .sec-fv .sec-fv-info-container div a .category-tit {
    padding: 8px;
  }
  .sec-fv .sec-fv-info-container div a .category-tit, .sec-fv .sec-fv-info-container div a .fv-news-day {
    font-size: 1rem;
  }
  .sec-fv .sec-fv-info-container div a p {
    margin-right: 12px;
    font-size: 1.2rem;
    width: 45%;
  }
  .sec-fv .volcano-info-area {
    top: 100px;
    right: 20px;
    height: 10%;
  }
  .sec-fv .volcano-info-area .volcano-info-wrapper {
    background-color: rgba(0, 0, 0, 0.8);
    padding: 8px 16px;
    border-radius: 8px;
  }
  .sec-fv .volcano-info-area p {
    font-size: 1.2rem;
    margin: 0 16px 0 10px;
  }
  .sec-fv .volcano-info-area .volcano-arrow {
    width: 24px;
  }
  /* ========================================================================================================
  sec-event
  ======================================================================================================== */
  .sec-event {
    margin: 263px auto 48px;
    padding: 0 20px;
  }
  .sec-event .sec-event-inner {
    padding: 48px 16px;
  }
  .sec-event .sec-event-inner .tab-panel .flex-unit {
    display: block;
    padding: 0;
  }
  .sec-event .sec-event-inner .btn-container {
    padding-right: 0;
  }
  /* ========================================================================================================
  sec-about
  ======================================================================================================== */
  .sec-about .sec-inner {
    padding-right: 0;
  }
  .sec-about .sec-inner.flex-unit {
    display: block;
  }
  .sec-about .img-area {
    width: calc(100% - 20px);
  }
  .sec-about .text-area {
    width: 100%;
    padding: 24px 20px;
  }
  .sec-about .area-map {
    width: calc(100% - 20px);
    margin: 0 auto;
  }
  /* ========================================================================================================
  sec-purpose
  ======================================================================================================== */
  .sec-purpose {
    padding: 0 20px;
    margin-bottom: 64px;
  }
  .sec-purpose .purpose-contants-area ul {
    gap: 16px;
  }
  .sec-purpose .purpose-contants-area ul li {
    width: calc(50% - 8px);
  }
  /* ========================================================================================================
  sec-news
  ======================================================================================================== */
  .post-type-archive-news .sec-news .text-area {
    width: 100%;
    padding: 40px 20px;
    margin-top: -15%;
  }
  .post-type-archive-news .sec-news .text-area .news-contants-container ul li a {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .post-type-archive-news .sec-news .text-area .news-contants-container ul li a span {
    margin-bottom: 10px;
    font-size: 1.4rem;
  }
  .sec-news {
    padding-right: 0;
    margin-bottom: 64px;
  }
  .sec-news .sec-news-wrapper.flex-unit {
    display: block;
  }
  .sec-news .text-area {
    padding: 64px 20px;
  }
  .sec-news .img-area {
    width: 65%;
    padding-bottom: 65%;
    margin-left: auto;
  }
  .sec-news .img-area .news-bg {
    border-radius: 10px 0px 0px 10px;
  }
  /* ========================================================================================================
  sec-purpose
  ======================================================================================================== */
  .sec-purpose .purpose-contants-area ul li a .purpose-txt svg,
  .sec-purpose .purpose-contants-area ul li a .purpose-txt img {
    width: 24px;
    margin: 8px auto 5px;
  }
  /* ========================================================================================================
  sec-link
  ======================================================================================================== */
  .sec-link .sec-inner {
    padding: 48px 20px;
  }
  .sec-link .sec-inner ul.flex-unit {
    gap: 16px;
  }
  .sec-link .sec-inner ul.flex-unit li {
    width: calc(50% - 8px);
  }
  .sec-link .sec-inner ul.flex-unit li a img {
    margin-bottom: 8px;
  }
  /* ========================================================================================================
  footer
  ======================================================================================================== */
  .footer .footer-inner {
    padding: 64px 20px 20px;
  }
  .footer .footer-inner .footer-nav-sub.flex-unit {
    display: block;
  }
  .footer .footer-inner .footer-nav-sub.flex-unit .flex-unit {
    margin-bottom: 24px;
  }
  .footer .footer-dropdown__lists {
    left: 0%;
  }
  .footer .dropdown__lists {
    padding-top: 16px;
  }
  .footer .dropdown__list a {
    font-size: 1.2rem;
    padding: 8px;
  }
  /* ========================================================================================================
  UNDER COMMON
  ======================================================================================================== */
  .page-fv {
    max-height: 480px;
  }
  .page-fv .page-fv-inner {
    padding: 116px 20px 80px;
  }
  .event-area-container .sec-inner {
    padding: 48px 20px;
  }
  .event-area-container .sec-inner .anker-container {
    display: none;
  }
  .season-item-wrapper .flex-unit {
    gap: 32px 16px;
  }
  .season-item-wrapper .flex-unit .season-item-box-container {
    max-width: calc(50% - 8px);
  }
  .season-item-wrapper .flex-unit .season-item-box a p {
    font-size: 1.4rem;
    padding: 20px 10px;
  }
  .single-lead {
    margin: 48px auto 40px;
    padding: 0px 20px;
  }
  .single-container .single-container-wrapper {
    padding: 0 20px;
  }
  .event-info-box {
    padding: 24px 10px;
  }
  .event-info-box .event-info-txt {
    display: block;
  }
  .stay-area-container .stay-box-container ul li {
    width: 100%;
  }
  .stay-area-container .stay-box-container .wp-pagenavi {
    gap: 10px;
  }
  .stay-area-container .stay-box-container .wp-pagenavi span, .stay-area-container .stay-box-container .wp-pagenavi a {
    width: 40px;
    height: 40px;
  }
  .page-stay .sec-purpose {
    margin-top: 64px;
  }
  .page-id-158 .about-lead {
    margin: 24px auto 20px;
  }
  .page-id-158 .about-contents-container .about-contents-wrapper {
    padding: 48px 20px;
  }
  .page-id-158 .about-contents-container .about-txt-area, .page-id-158 .about-contents-container .flex-unit-item {
    margin-bottom: 32px;
  }
  .page-id-158 .about-contents-container .about-img, .page-id-158 .about-contents-container .about-txt-area, .page-id-158 .about-contents-container .flex-unit-item {
    width: 100%;
  }
  .page-id-158 .about-contents-container .flex-unit {
    display: block;
  }
  .page-id-158 .about-contents-container .toc-anker h5 {
    font-size: 1.6rem;
    margin: 32px auto 12px;
  }
  .page-id-158 .about-contents-container .toc-anker .flex-unit {
    padding: 24px;
    font-size: 1.4rem;
    display: flex;
    gap: 10px;
    margin-bottom: 32px;
  }
  .page-id-158 .about-contents-container .toc-anker .flex-unit li a {
    padding: 8px 20px;
  }
  .page-id-158 .about-contents-container_history .about-contents02 .about-contents-inner {
    margin: 48px auto 32px;
  }
  .page-id-158 .sec-kiso-isan .about-txt-area h2 {
    margin-bottom: 16px;
  }


  /* ========================================================================================================
  SERCH FORM
  ======================================================================================================== */
  .sec-serch-area .sec-inner{
    display: block;
  }

  .sec-serch-area .sec-inner .stay-box-container-serch{
    width: 100%;
    margin-bottom: 24px;
  }

  .sec-serch-area .sec-inner .type-map{
    width: 100%;
  }

  .stay-box-container-serch label{
    font-size: 14px;
  }

  .stay-box-container-serch{
    padding: 24px 16px;
  }

  /* ========================================================================================================
  sitemap
  ======================================================================================================== */
  .sitemap-single {
    gap: 16px;
    justify-content: space-between;
  }
  .sitemap-single .maplist {
    width: calc(50% - 8px);
  }
}




  /* ========================================================================================================
  2024.10.16モデルコース追加
  ======================================================================================================== */
a.course-button {
	background: #333533;
    color: white;
    padding: 1% 5%;
    border-radius: 5px;
    display: block;
    margin: auto;
    width: fit-content;
}
h2.model-course-black-ttl {
    background: #333533;
    color: white;
    width: fit-content;
    font-size: 2.5rem;
    padding: 5px;
    margin-bottom: 3%;
}
h3.model-course-ttl {
	font-size: 2rem;
	margin: 5% 0 2% 0;
}
.model-course {
	justify-content: flex-start;
}
.model-course .flex-unit {
    justify-content: flex-start;
}
.model-course-img {
	border-radius: 16px 16px 0px 0px;
}

@media screen and (max-width: 768px) {
	h2.model-course-black-ttl{
		font-size: 2rem;
    line-height: 1.3;
	}
	h3.model-course-ttl {
    font-size: 1.7rem;
    line-height: 1.4;
    margin: 10% 0 3% 0;
}
}


/* ========================================================================================================
2024.12 追加
======================================================================================================== */
/* メニュー内言語切り替え */
li#Chinese\ \(Simplified\),
li#Chinese\ \(Traditional\),
#Korean {
  display: none;
}

#flags.size16 a.united-states[title="English"],
#language .switcher .selected a[title="English"] span.united-states,
#language .switcher .option a[title="English"] span.united-states,
a.single-language.united-states[title="English"] span.size16 {
  background: none !important;
}

#flags.size16 a[title="English"],
#language .switcher .selected a[title="English"] span,
#language .switcher .option a[title="English"] span,
.tool-container .tool-items a[title="English"],
a.single-language[title="English"] span.size16 {
  background: none !important;
}

#flags.size16 a[title="Japanese"],
#language .switcher .selected a[title="Japanese"] span,
#language .switcher .option a[title="Japanese"] span,
.tool-container .tool-items a[title="Japanese"],
a.single-language[title="Japanese"] span.size16 {
  background: none !important;
}

#sortable a {
  border: solid 1px #333;
  padding: 10px 16px;
}

/*アコーディオン全体*/
#flags {
  /* width: 100%; */
  /* padding: 10px 10px 20px; */
  text-align-last: left;
}

#flags input {
  display: none;
  /*チェックボックスを隠す*/
}

/*バー部分*/
#flags label {
  cursor: pointer;
  display: block;
  text-decoration: none;
  color: #fff;
  line-height: 1;
  position: relative;
  margin: 0 0 10px;
  padding: 10px;
  background-color: #333;
}

/*開いたときに表示される部分*/
#flags ul {
  float: none !important;
}

#sortable li {
  height: 0;
  overflow-y: hidden;
  transition: padding-bottom 0.5s, padding-top 0.5s;
  /*閉じるときのアニメーション*/
  -webkit-transition: padding-bottom 0.5s, padding-top 0.5s;-moz-transition: padding-bottom 0.5s, padding-top 0.5s;
  -ms-transition: padding-bottom 0.5s, padding-top 0.5s;
  -o-transition: padding-bottom 0.5s, padding-top 0.5s;
}

#menu_bar01:checked~#sortable li {
  height: auto;
  /*開いたときに表示されるliの高さ*/
  opacity: 1;
  background: #f1f1f1;
  width: 100%;
}

/*開いたときの下の余白*/
#menu_bar01:checked~#sortable li:last-child {
  margin-top: 10px;
}

/*閉じた状態の矢印描画*/
#flags label:after,
.toggle-filters-btn:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  right: 6%;
  top: 0;
  bottom: 15%;
  margin: auto;
}

/*開いた状態の矢印描画*/
#flags input[type=checkbox]:checked+label:after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  right: 6%;
  top: 7%;
  bottom: 0;
  margin: auto;
}

/* 検索フィルター */
/* デフォルトでフィルターを表示 */
.filters-container {
  display: block;
}

/* スマホサイズ（480px以下）でのスタイル */
@media (max-width: 480px) {
  .filters-container {
    display: none;
    /* スマホではフィルターを非表示 */
  }

  .toggle-filters-btn {
    display: inline-block;
    /* ボタンを表示 */
    width: 100%;
    padding: 10px 20px;
    font-size: 16px;
    background-color: #333;
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    position: relative;
  }
}

/* PCサイズ（481px以上）でボタンを完全に非表示 */
@media (min-width: 481px) {
  .toggle-filters-btn {
    display: none;
  }
}

/* カードアイコン追加 */
.equipment-list-container {
  max-width: 80%;
  margin: 0 auto 40px;
  background: #fff;
  padding: 22px;
  border-radius: 16px;
}

.equipment-list-container .flex-unit {
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 20px;
}

.equipment-list-container .flex-unit::after {
  content: "";
  display: block;
  width: 64%;
}

.equipment-list-container .flex-unit li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: calc(33.3333333333% - 22px);
}

.equipment-list-container .flex-unit li svg {
  width: 3.5rem;
  fill: rgb(30, 48, 80);
}

@media screen and (max-width: 480px) {
  .equipment-list-container {
    max-width: 100%;
    padding: 4vw;
  }

  .equipment-list-container .flex-unit::after {
    width: 60%;
  }

  .equipment-list-container .flex-unit li svg {
    width: 2.5rem;
  }

  .equipment-list-container .flex-unit li svg#_レイヤー_2 {
    margin-right: 20px;
  }
}

.equipment-list-container .flex-unit li span {
  font-size: 12px;
}

.icon-list {
  display: flex;
  align-items: center;
  gap: 15px;
}

.icon-item svg {
  width: 2.2rem;
  height: auto;
  fill: rgb(30, 48, 80);
}


/* app-bnr */
.sec-app-bnr {
  margin: 64px auto;
}

.app-bnr-img {
  position: relative;
  max-width: 1000px;
  margin: auto;
}

.app-bnr-img img {
  border-radius: 16px;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.09);
}

.badge-area {
  position: absolute;
  /* max-height: 80px; */
  display: flex;
  gap: 40px;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
}

.apple-badge img {
  width: 184px;
  height: 82px;
}

.gd-badge img {
  width: 224px;
  height: 82px;
}

@media screen and (max-width: 1100px) {
  .app-bnr-img {
    max-width: 700px;
  }

  .badge-area {
    bottom: -2px;
  }

  .apple-badge img {
    width: 124px;
  }

  .gd-badge img {
    width: 154px;
  }
}

@media screen and (max-width: 768px) {
  .sec-app-bnr {
    padding: 0 20px;
  }

  .app-bnr-img {
    max-width: 620px;
  }

  .badge-area {
    bottom: 0;
  }

  .apple-badge img {
    width: 140px;
  }

  .gd-badge img {
    width: 174px;
  }
}

@media screen and (max-width: 590px) {
  .badge-area {
    bottom: -4px;
  }
}

@media screen and (max-width: 480px) {
  .sec-app-bnr {
    margin: 263px auto 48px;
  }

  .badge-area {
    width: 260px;
    bottom: -12px;
  }

  .apple-badge img {
    width: 160px;
  }

  .gd-badge img {
    width: 197px;
  }

  .sec-event {
    margin: 50px auto 48px;
  }
}

@media screen and (max-width: 430px) {
  .badge-area {
    width: 230px;
    bottom: -16px;
    gap: 20px;
  }
}

@media screen and (max-width: 390px) {
  .badge-area {
    width: 200px;
    bottom: -18px;
  }
}


/* ========================================================================================================
2025.03 追加
======================================================================================================== */
/* 団体旅行ページ */
.sec-serch-area .sec-inner.page-group-trip {
  justify-content: center;
}

.type-map.page-group-trip {
  width: 70% !important;
}

@media screen and (max-width:768px) {
  .type-map.page-group-trip {
    width: 100% !important;
  }
}

.anchor-list-wrap {
  max-width: 740px;
  margin: 0 auto 40px;
}

.anchor-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.anchor-item {
  width: 30%;
  text-align: center;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  margin: 20px 0;
}

@media screen and (max-width:430px) {
  .anchor-item {
    width: 50%;
    margin: 12px 0;
  }
}

.anchor-item:last-child {
  padding-top: 10px;
}

@media screen and (max-width:430px) {
  .anchor-item:nth-of-type(3) {
    padding-top: 10px;
  }

  .anchor-item:last-child {
    padding-top: 0;
  }
}

.anchor-item:nth-child(odd) {
  border-width: 0 1px 0 1px;
  border-style: solid;
  border-color: #D3D3D3;
}

.anchor-item a {
  display: block;
  font-size: 14px;
  font-weight: bold;
  color: #333533;
}

.anchor-item a::after {
    content: "";
    width: 8px;
    height: 8px;
    border: 0px;
    border-top: solid 2px #04787E;
    border-right: solid 2px #04787E;
    -webkit-transform: rotate(135deg);
    transform: rotate(135deg);
    position: absolute;
    top: 50%;
    right: 20px;
    margin-top: -4px;
}

.table-tit-area {
  margin-bottom: 20px;
}

.table-tit-area .sub-tit {
  margin: 0;
  color: #fff;
  text-align: center;
}

.table-tit-area .sub-tit span {
  background: #333533;
  padding: 5px 10px;
  display: inline-block;
  font-size: 20px;
}

.noto {
  font-size: 14px;
  text-align: center;
  margin-top: 5px;
}

.table-wrap {
  overflow-x: scroll;
  border:1px solid #333533;
  border-radius: 4px;
  margin-bottom: 64px;
  width: 100vw;
  width: 85%;
  margin: 0 auto 64px;
}

.table-wrap .tblEditLink {
  display: none !important;
}

@media (max-width: 768px) {
  .table-wrap {
    width: 100%;
  }
}

.table-wrap td,
.trip-guide-table th,
.trip-guide-table td {
  border:1px solid #E7E7E7;
  padding:12px;
  font-size:12px;
  min-width:230px;
  vertical-align:middle;
  line-height: 1.3;
}

.table-wrap tr td:first-child,
.trip-guide-table th,
.trip-guide-table td:first-child {
  min-width: unset;
  max-width: 30px;
}

@media (max-width: 430px) {
  .trip-guide-table th, .trip-guide-table td {
    /* min-width:100px; */
  }
}

.table-wrap tbody,
.trip-guide-table th,
.trip-guide-table td {
  text-align:center;
}

.table-wrap tbody tr:first-child {
  background-color: #F4ECE1 !important;
  font-weight: bold;
}

.table-wrap tbody tr:nth-child(even) td,
.trip-guide-table tbody tr:nth-child(even) td {
  /* background-color: #FDFBF9; */
  background-color: #fff;
}

table.dataTable tbody .odd,
.table-wrap tbody tr:nth-child(odd),
.trip-guide-table tbody tr:nth-child(odd) {
  /* background-color: #fff; */
  background-color: #FDFBF9;
}


/* ツアーページ */
.page-fv.page-tour {
  max-height: inherit;
  overflow: visible;
  padding-top: 100px;
}

.tour-swiper,
.tour-swiper .swiper-slide {
  width: 100%;
  height: 100vh !important;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  /* height: calc(100vh - 100px); */
}

.tour-swiper .swiper-slide img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets {
  left: 20px;
}

.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-container-tour {
  position: relative;

  position: sticky;
  top: 0;
  height: 100vh;
  z-index: 10;
}

.page-fv-inner.page-tour {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  padding: 40px 80px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 100%);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;

  /* position: relative; */
  z-index: 20;
}

/* 2つ目のコンテナがスクロール時に出てくる */
.swiper-container-tour:nth-of-type(2) {
    margin-top: 100vh; /* 最初は見えないように */
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 10px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 10px));
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical>.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 12px) 0;
}

.anchor-item.page-tour {
  width: auto;
  margin: 0;
  padding: 0;
}

.anchor-item.page-tour a {
  color: #fff;
}

.anchor-item.page-tour a::after {
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  right: -20px;
  margin-top: -5px;
}

.event-area-container.page-tour {
  background-color: #D3D3D3;
}

.table-tit-area.page-tour {
  margin-bottom: 30px;
}

.table-txt-area.page-tour {
  text-align: center;
  margin-bottom: 50px;
}

.table-txt-area.page-tour p:not(.table-txt-area.page-tour p:last-child) {
  padding-bottom: 10px;
}

.flex-unit.page-tour {
  justify-content: center;
  gap: 60px !important;
}

.course-button.page-tour,
/* .bokunButton, */
.page-tour-table-list li:last-child p button,
.page-tour-table-list li:last-child p a {
  color: #fff;
  background: #04787e !important;
  width: 100%;
  border-radius: 5px;
  text-align: center;
  padding: 16px 0 !important;
  font-size: 16px;
  font-weight: bold;
  display: inline-block;
  line-height: 1.5;
}

.bokunButton:hover {
  opacity: 0.5;
}

.fv-video {
  max-height: 100vh;
  overflow: hidden;
}

.fv-btn {
  color: #fff;
  /* background-color: #04787E; */
  background: linear-gradient(90deg, #04787E 0%, #FFF 172.73%);
  font-size: 15px;
  font-weight: bold;
  text-align: center;
  border-radius: 10px;
  padding: 10px;
  max-width: 360px;
  width: 100%;
  position: absolute;
  right: 20px;
  bottom: 290px;
  z-index: 2;
}

.fv-btn a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.fv-btn p {
  position: relative;
  left: 50%;
  transform: translate(-50%);
  line-height: 1.7;
}

.fv-btn p span {
  font-size: 12px;
}

.purpose-contants-area.contants-area .flex-unit {
  justify-content: flex-start;
}

.sec-purpose .purpose-contants-area ul li {
  width: calc(24.333333% - 16px);
}


@media screen and (max-width: 768px) {
  .page-fv-inner.page-tour {
    padding: 40px 20px;
    display: block;
  }

  .anchor-item.page-tour {
    float: right;
    margin-top: 10px;
    padding-right: 20px;
  }

  .anchor-item.page-tour a::after {
    right: 0;
  }

  .page-fv-inner.page-tour .main-tit {
    line-height: 1.3;
  }

  /* メディアクエリサイズ変更 */
  .stay-area-container .stay-box-container ul li {
    width: 100%;
  }

  .kv-tit-area .kv-tit {
    margin-top: -200px;
  }
}

@media screen and (max-width: 480px) {
  .page-fv.page-tour {
    padding-top: 68px;
  }

  .swiper-container-tour {
    /* height: 500px; */
    height: 440px;
  }

  .tour-swiper,
  .tour-swiper .swiper-slide {
    /* height: calc(100vh - 68px); */
    height: 100% !important;
  }

  .swiper-container-tour:nth-of-type(2) {
    margin-top: 0;
  }

  .swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical>.swiper-pagination-bullets {
    top: 24%;
  }

  .fv-btn {
    max-width: calc(100% - 40px);
    bottom: 60px;
  }

  .sec-purpose .purpose-contants-area ul li {
    width: calc(50% - 8px);
  }
}


html.translated-ltr #content-ja {
  display: none !important;
}

html.translated-ltr #content-en {
  display: block !important;
}

html:not(.translated-ltr) #content-ja {
  display: block !important;
}

html:not(.translated-ltr) #content-en {
  display: none !important;
}
