@charset "UTF-8";
/* =========================================
   modern-css-reset（最適化版）
========================================= */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  -moz-tab-size: 4;
    -o-tab-size: 4;
       tab-size: 4;
}

body {
  margin: 0;
  padding: 0;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

p {
  margin: 0;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
select,
textarea {
  font: inherit;
}

ul,
ol {
  padding: 0;
  margin: 0;
  list-style: none;
}

a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

* {
  position: relative;
}

/* =========================================
   カンプ基準の設定値
========================================= */
/* =========================================
   ブレークポイント管理
========================================= */
/* =========================================
   vw/svw を簡単にする mixin（最適化）
========================================= */
/* PC/SP の font-size を 1 行で指定 */
/* 任意のプロパティを PC/SP まとめて指定（可変引数対応） */
/* =========================================
   Web Font Definition
========================================= */
@font-face {
  font-family: "Futura-Bk-Bt";
  src: url("../font/futura-bk-bt-book.eot"); /* IE9用 */
  src: url("../font/futura-bk-bt-book.eot?#iefix") format("embedded-opentype"), url("../font/futura-bk-bt-book.woff2") format("woff2"), url("../font/futura-bk-bt-book.woff") format("woff"); /* 標準的なブラウザ用 */
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* =========================================
   基本スタイル
========================================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: "Zen Kaku Gothic", sans-serif;
  font-weight: 500;
  background: #fff;
  color: #716a65;
}
@media screen and (min-width: 841px) {
  body {
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  body {
    font-size: calc(28 / 720 * 100vw);
  }
}

body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
}

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

button {
  cursor: pointer;
  border: none;
  background: transparent;
}

.hidden {
  display: none !important;
}

.inner {
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
@media screen and (min-width: 841px) {
  .inner {
    width: calc(1280 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .inner {
    width: calc(600 / 720 * 100vw);
  }
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .flexbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

h1 {
  margin: 0;
}

h2 {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-top: 0;
}
@media screen and (min-width: 841px) {
  h2 {
    font-size: calc(50 / 1920 * 100vw);
    margin-bottom: calc(45 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  h2 {
    font-size: calc(70 / 720 * 100vw);
    margin-bottom: calc(45 / 720 * 100vw);
  }
}
h2 .jp {
  display: block;
  font-family: "Zen Kaku Gothic", sans-serif;
}
@media screen and (min-width: 841px) {
  h2 .jp {
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  h2 .jp {
    font-size: calc(30 / 720 * 100vw);
  }
}

main {
  overflow: hidden;
}

@media screen and (min-width: 841px) {
  section {
    padding-top: calc(0 / 1920 * 100vw);
    padding-bottom: calc(340 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  section {
    padding-top: calc(50 / 720 * 100vw);
    padding-bottom: calc(300 / 720 * 100vw);
  }
}

.spacer-top {
  width: 100%;
  position: absolute;
}
@media screen and (min-width: 841px) {
  .spacer-top {
    height: calc(200 / 1920 * 100vw);
    top: calc(-199 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .spacer-top {
    height: calc(200 / 720 * 100vw);
    top: calc(-198 / 720 * 100vw);
  }
}

@media screen and (min-width: 841px) {
  .nopc {
    display: none !important;
  }
}

@media screen and (max-width: 840px) and (orientation: portrait) {
  .nosp {
    display: none !important;
  }
}

.linkbtn {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #00b2f1;
  margin-left: auto;
  margin-right: 0;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .linkbtn {
    font-size: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .linkbtn {
    width: calc(240 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(25 / 1920 * 100vw);
    padding-left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .linkbtn {
    width: calc(530 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    border-radius: calc(50 / 720 * 100vw);
    padding-left: calc(51 / 720 * 100vw);
  }
}
.linkbtn.brand-light {
  background-color: #58ccf5;
}
.linkbtn.brand-accent {
  background-color: #ff9c9e;
}
.linkbtn::after {
  content: "";
  display: block;
  background-image: url(../img/btn_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 841px) {
  .linkbtn::after {
    width: calc(20 / 1920 * 100vw);
    right: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .linkbtn::after {
    width: calc(46 / 720 * 100vw);
    right: calc(30 / 720 * 100vw);
  }
}

.btn {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (min-width: 841px) {
  .btn {
    font-size: calc(28 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    height: calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .btn {
    font-size: calc(40 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    padding-right: calc(50 / 720 * 100vw);
  }
}
.btn.detail {
  background-color: #22dcd7;
}
@media screen and (min-width: 841px) {
  .btn.detail {
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .btn.detail {
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
.btn.reserve {
  background-color: #ff9c9e;
}
.btn::after {
  content: "";
  background-image: url(../img/btn_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 841px) {
  .btn::after {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
    right: calc(17 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .btn::after {
    width: calc(48 / 720 * 100vw);
    height: calc(48 / 720 * 100vw);
    right: calc(18 / 720 * 100vw);
  }
}

.rsvbtn {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ff9c9e;
  font-weight: 700;
  margin-right: auto;
  margin-left: auto;
  max-width: 100%;
}
@media screen and (min-width: 841px) {
  .rsvbtn {
    width: calc(600 / 1920 * 100vw);
    font-size: calc(30 / 1920 * 100vw);
    height: calc(165 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .rsvbtn {
    width: calc(600 / 720 * 100vw);
    font-size: calc(40 / 720 * 100vw);
    height: calc(165 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    margin-top: calc(40 / 720 * 100vw);
  }
}
.rsvbtn .en {
  font-weight: 500;
}
@media screen and (min-width: 841px) {
  .rsvbtn .en {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .rsvbtn .en {
    font-size: calc(28 / 720 * 100vw);
  }
}

.totop {
  position: fixed;
  z-index: 999;
}
@media screen and (min-width: 841px) {
  .totop {
    width: calc(80 / 1920 * 100vw);
    right: calc(160 / 1920 * 100vw);
    bottom: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .totop {
    width: calc(120 / 720 * 100vw);
    right: calc(60 / 720 * 100vw);
    bottom: calc(140 / 720 * 100vw);
  }
}

@-webkit-keyframes hero_bg {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}

@keyframes hero_bg {
  0% {
    background-size: 120%;
  }
  100% {
    background-size: 100%;
  }
}
@-webkit-keyframes hero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
@keyframes hero {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 100%;
  }
}
header {
  z-index: 9999;
  position: absolute;
  top: 0;
  width: 100%;
}
header.fixed, header.content_header {
  position: fixed;
}
header.fixed .index_header, header.content_header .index_header {
  display: none;
}
@media screen and (min-width: 841px) {
  header.fixed .common_header, header.content_header .common_header {
    top: calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header.fixed .common_header, header.content_header .common_header {
    top: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  header .index_header .header_inner {
    height: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .index_header {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
  }
  header .index_header .header_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
header .index_header > .flexbox .information {
  background-color: #fff;
  -webkit-box-shadow: 0 calc(3 / 1920 * 100vw) calc(6 / 1920 * 100vw) RGBa(0, 0, 0, 0.16);
          box-shadow: 0 calc(3 / 1920 * 100vw) calc(6 / 1920 * 100vw) RGBa(0, 0, 0, 0.16);
  overflow: hidden;
  white-space: nowrap;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .index_header > .flexbox .information {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (min-width: 841px) {
  header .index_header > .flexbox .information {
    font-size: calc(18 / 1920 * 100vw);
    width: calc(600 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    border-bottom-right-radius: calc(20 / 1920 * 100vw);
    border-bottom-left-radius: calc(20 / 1920 * 100vw);
    padding-top: calc(14 / 1920 * 100vw);
    padding-right: calc(20 / 1920 * 100vw);
    padding-bottom: calc(20 / 1920 * 100vw);
    padding-left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .index_header > .flexbox .information {
    font-size: calc(28 / 720 * 100vw);
    width: calc(720 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    border-radius: calc(0 / 720 * 100vw);
    padding-top: calc(20 / 720 * 100vw);
    padding-right: calc(60 / 720 * 100vw);
    padding-bottom: calc(20 / 720 * 100vw);
    padding-left: calc(60 / 720 * 100vw);
  }
}
header .index_header > .flexbox .information .slide {
  display: inline-block;
  padding-left: 100%;
  -webkit-animation: marquee 16s linear infinite;
          animation: marquee 16s linear infinite;
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@media screen and (min-width: 841px) {
  header .index_header > .flexbox .link {
    width: calc(572 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .index_header > .flexbox .link {
    width: calc(600 / 720 * 100vw);
    height: calc(85 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .index_header > .flexbox .link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
header .index_header > .flexbox .link a {
  text-align: center;
  -webkit-box-shadow: 0 calc(3 / 1920 * 100vw) calc(6 / 1920 * 100vw) RGBa(0, 0, 0, 0.16);
          box-shadow: 0 calc(3 / 1920 * 100vw) calc(6 / 1920 * 100vw) RGBa(0, 0, 0, 0.16);
  overflow: hidden;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .index_header > .flexbox .link a {
    -webkit-box-shadow: none;
            box-shadow: none;
  }
}
@media screen and (min-width: 841px) {
  header .index_header > .flexbox .link a {
    width: calc(280 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    border-bottom-right-radius: calc(20 / 1920 * 100vw);
    border-bottom-left-radius: calc(20 / 1920 * 100vw);
    padding-top: calc(9 / 1920 * 100vw);
    padding-right: calc(20 / 1920 * 100vw);
    padding-bottom: calc(20 / 1920 * 100vw);
    padding-left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .index_header > .flexbox .link a {
    width: calc(290 / 720 * 100vw);
    height: calc(85 / 720 * 100vw);
    border-top-right-radius: calc(20 / 720 * 100vw);
    border-top-left-radius: calc(20 / 720 * 100vw);
    border-bottom-right-radius: calc(0 / 720 * 100vw);
    border-bottom-left-radius: calc(0 / 720 * 100vw);
    padding-top: calc(30 / 720 * 100vw);
    padding-right: calc(20 / 720 * 100vw);
    padding-bottom: calc(20 / 720 * 100vw);
    padding-left: calc(20 / 720 * 100vw);
  }
}
header .index_header > .flexbox .link a.tourlist {
  color: #57c2e9;
  background-color: #ffffff;
}
header .index_header > .flexbox .link a.reserve {
  color: #fff;
  background-color: #ff9c9e;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .index_header > .flexbox .link .top {
    width: calc(600 / 720 * 100vw);
  }
}
header .common_header {
  background-color: #effbff;
  width: 100%;
  position: fixed;
  left: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 841px) {
  header .common_header {
    height: calc(120 / 1920 * 100vw);
    top: calc(-120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header {
    height: calc(0 / 720 * 100vw);
    top: calc(0 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header {
    overflow: hidden;
  }
  header .common_header.opened {
    z-index: 1000;
    height: 100vh;
    overflow-y: auto;
    padding-bottom: calc(80 / 720 * 100vw);
  }
  header .common_header.opened .g-nav {
    min-height: 100vh;
  }
  header .common_header.opened .g-nav .textwrap {
    font-size: calc(24 / 720 * 100vw);
    text-align: center;
    position: absolute;
    bottom: calc(50 / 720 * 100vw);
    left: 0;
    right: 0;
    margin: auto;
  }
  header .common_header.opened .g-nav .textwrap a {
    text-decoration: underline;
  }
}
header .common_header h1 {
  width: calc(372 / 1920 * 100vw);
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header h1 {
    display: none;
  }
}
@media screen and (min-width: 841px) {
  header .common_header .g-nav {
    width: calc(860 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header .g-nav {
    width: calc(600 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header .g-nav {
    padding-top: calc(120 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header .g-nav ul {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: calc(35 / 720 * 100vw);
    padding-bottom: calc(100 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header .g-nav ul li:first-child a {
    width: calc(600 / 720 * 100vw);
  }
}
header .common_header .g-nav ul a {
  color: #57c2e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 841px) {
  header .common_header .g-nav ul a {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header .g-nav ul a {
    font-size: calc(35 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header .g-nav ul a {
    width: calc(280 / 720 * 100vw);
    height: calc(260 / 720 * 100vw);
    background-color: #fff;
  }
}
@media screen and (min-width: 841px) {
  header .common_header .g-nav ul a img {
    width: calc(66 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header .g-nav ul a img {
    width: calc(140 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .common_header .g-nav .spnav {
    display: block;
    position: absolute;
    width: 100%;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
  }
  header .common_header .g-nav .spnav > small, header .common_header .g-nav .spnav > a {
    font-size: calc(24 / 720 * 100vw);
    display: block;
    text-align: center;
  }
  header .common_header .g-nav .spnav > a {
    text-decoration: underline;
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .navbtn {
    display: block;
    width: calc(100 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    border-radius: calc(50 / 720 * 100vw);
    background-color: #fff;
    position: fixed;
    top: calc(37 / 720 * 100vw);
    right: calc(60 / 720 * 100vw);
    z-index: 1002;
  }
  header .navbtn span {
    display: block;
    width: calc(49 / 720 * 100vw);
    height: calc(6 / 720 * 100vw);
    background-color: #57c2e9;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .navbtn span:first-child {
    top: calc(35 / 720 * 100vw);
  }
  header .navbtn span:last-child {
    bottom: calc(35 / 720 * 100vw);
  }
  header .navbtn.opened {
    background-color: RGBa(255, 255, 255, 0);
  }
  header .navbtn.opened span:first-child {
    -webkit-transform: rotate(315deg);
            transform: rotate(315deg);
    top: calc(47 / 720 * 100vw);
  }
  header .navbtn.opened span:last-child {
    -webkit-transform: rotate(-315deg);
            transform: rotate(-315deg);
    bottom: calc(47 / 720 * 100vw);
  }
}
header .header_inner {
  margin: auto;
}
@media screen and (min-width: 841px) {
  header .header_inner {
    width: calc(1440 / 1920 * 100vw);
    height: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  header .header_inner {
    width: calc(600 / 720 * 100vw);
  }
}

footer {
  color: #fff;
  background-color: #58ccf5;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer {
    padding-bottom: calc(60 / 720 * 100vw);
  }
  footer .flexbox.reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
  footer .flexbox.start {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer.index {
    padding-bottom: calc(160 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .recommend .head {
    font-size: calc(30 / 1920 * 100vw);
    margin-bottom: calc(45 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .recommend .head {
    font-size: calc(40 / 720 * 100vw);
    margin-bottom: calc(30 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .recommend ul li {
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .recommend ul li {
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .recommend ul li {
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
footer .recommend ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  footer .recommend ul li a img {
    width: calc(40 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .recommend ul li a img {
    width: calc(48 / 720 * 100vw);
    margin-right: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .logo {
    width: calc(640 / 1920 * 100vw);
    margin-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .logo {
    width: calc(600 / 720 * 100vw);
    margin-bottom: calc(60 / 720 * 100vw);
  }
}
footer .logo img {
  margin: auto;
}
@media screen and (min-width: 841px) {
  footer .logo img {
    width: calc(553 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .logo img {
    width: calc(600 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .navlist {
    margin-top: calc(60 / 720 * 100vw);
    margin-bottom: calc(60 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .navlist ul {
    margin-top: calc(-200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .navlist ul {
    margin-top: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .navlist ul li {
    padding-left: calc(30 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .navlist ul li {
    padding-left: calc(30 / 720 * 100vw);
    margin-bottom: calc(16 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .navlist ul li {
    padding-left: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .navlist ul li {
    padding-left: calc(30 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .navlist ul li {
    margin-bottom: calc(16 / 720 * 100vw);
  }
}
footer .navlist ul li::before {
  content: "";
  background-color: #b1eaff;
  display: block;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 841px) {
  footer .navlist ul li::before {
    width: calc(12 / 1920 * 100vw);
    height: calc(12 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .navlist ul li::before {
    width: calc(20 / 720 * 100vw);
    height: calc(20 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer .btnwrap {
    width: calc(600 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .btnwrap {
    width: calc(600 / 720 * 100vw);
  }
}
footer .btnwrap .reserve {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #ff9c9e;
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  footer .btnwrap .reserve {
    font-size: calc(30 / 1920 * 100vw);
    height: calc(165 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .btnwrap .reserve {
    font-size: calc(40 / 720 * 100vw);
    height: calc(165 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
footer .btnwrap .reserve .en {
  font-weight: 500;
}
@media screen and (min-width: 841px) {
  footer .btnwrap .reserve .en {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .btnwrap .reserve .en {
    font-size: calc(28 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .snswrap {
    margin: calc(60 / 720 * 100vw) auto;
  }
}
@media screen and (min-width: 841px) {
  footer .snswrap {
    margin-top: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .snswrap {
    margin-top: calc(30 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
  }
}
footer .snswrap a {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  footer .snswrap a {
    width: calc(290 / 1920 * 100vw);
    height: calc(67 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .snswrap a {
    width: calc(600 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
    padding-left: calc(80 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .snswrap a.google_btn {
    padding-left: 0;
  }
}
footer .snswrap a .icon {
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
@media screen and (min-width: 841px) {
  footer .snswrap a .icon {
    left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .snswrap a .icon {
    left: calc(180 / 720 * 100vw);
  }
}
footer .snswrap a.instagram {
  background-color: #ff589b;
}
@media screen and (min-width: 841px) {
  footer .snswrap a.instagram img {
    width: calc(45 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .snswrap a.instagram img {
    width: calc(68 / 720 * 100vw);
  }
}
footer .snswrap a.line {
  background-color: #06c755;
}
@media screen and (min-width: 841px) {
  footer .snswrap a.line img {
    width: calc(48 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .snswrap a.line img {
    width: calc(76 / 720 * 100vw);
  }
}
footer .snswrap .reservebtnwrap {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
footer .snswrap .reservebtnwrap li {
  list-style: none;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .snswrap .reservebtnwrap li {
    width: calc(130 / 720 * 100vw);
  }
  footer .snswrap .reservebtnwrap li a,
  footer .snswrap .reservebtnwrap li img {
    width: 100%;
    padding-left: 0;
  }
}
footer .snswrap .google_btn {
  margin: calc(20 / 720 * 100vw) auto;
}
footer .snswrap .linkhead {
  font-size: calc(50 / 720 * 100vw);
  text-align: center;
  margin: calc(90 / 720 * 100vw) auto calc(80 / 720 * 100vw);
}
footer .snswrap .linkhead::before, footer .snswrap .linkhead::after {
  content: "";
  display: block;
  width: calc(120 / 720 * 100vw);
  height: calc(5 / 720 * 100vw);
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
footer .snswrap .linkhead::before {
  left: 0;
}
footer .snswrap .linkhead::after {
  right: 0;
}
@media screen and (min-width: 841px) {
  footer .access {
    margin-top: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .access {
    margin-top: calc(20 / 720 * 100vw);
  }
}
footer .access .head {
  font-weight: 500;
  text-align: center;
  line-height: 1.2;
  margin-top: 0;
}
@media screen and (min-width: 841px) {
  footer .access .head {
    font-size: calc(50 / 1920 * 100vw);
    margin-bottom: calc(45 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .access .head {
    font-size: calc(70 / 720 * 100vw);
    margin-bottom: calc(45 / 720 * 100vw);
  }
}
footer .access .head .jp {
  display: block;
}
@media screen and (min-width: 841px) {
  footer .access .head .jp {
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .access .head .jp {
    font-size: calc(30 / 720 * 100vw);
  }
}
footer .access .address {
  text-align: right;
  white-space: nowrap;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .access .address {
    font-size: calc(24 / 720 * 100vw);
  }
}
footer .access .map {
  width: 100%;
  display: block;
}
@media screen and (min-width: 841px) {
  footer .access .map {
    height: calc(600 / 1920 * 100vw);
    margin-top: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer .access .map {
    height: calc(600 / 720 * 100vw);
    margin-top: calc(80 / 720 * 100vw);
  }
}
footer small {
  display: block;
  text-align: right;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer small {
    text-align: center;
  }
}
@media screen and (min-width: 841px) {
  footer small {
    padding-top: calc(70 / 1920 * 100vw);
    padding-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer small {
    padding-top: calc(70 / 720 * 100vw);
    padding-bottom: calc(60 / 720 * 100vw);
  }
}
footer small a {
  text-decoration: underline;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer small a {
    display: block;
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  footer small a {
    margin-right: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  footer small a {
    margin-right: calc(0 / 720 * 100vw);
  }
}

#index {
  z-index: 0;
  background: none;
  padding-top: 0;
}
#index #fv {
  background-image: url(../img/frontpage/fv_bgtop.webp);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  width: 100%;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv {
    background-image: url(../img/frontpage/fv_bg_sp.webp);
  }
}
@media screen and (min-width: 841px) {
  #index #fv {
    height: calc(960 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv {
    height: calc(1520 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #fv .inner {
    width: calc(1440 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv .inner {
    width: calc(600 / 720 * 100vw);
  }
}
#index #fv .bg01,
#index #fv .bg02 {
  position: absolute;
  bottom: 0;
}
@media screen and (min-width: 841px) {
  #index #fv .bg01,
  #index #fv .bg02 {
    width: calc(587 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv .bg01,
  #index #fv .bg02 {
    width: calc(260 / 720 * 100vw);
  }
}
#index #fv .bg01 {
  left: 0;
}
#index #fv .bg02 {
  right: 0;
}
#index #fv .logo {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media screen and (min-width: 841px) {
  #index #fv .logo {
    width: calc(628 / 1920 * 100vw);
    top: calc(145 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv .logo {
    width: calc(603 / 720 * 100vw);
    top: calc(525 / 720 * 100vw);
  }
}
#index #fv .balloon {
  background-color: #fdd53f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (min-width: 841px) {
  #index #fv .balloon {
    font-size: calc(18 / 1920 * 100vw);
    width: calc(622 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(5 / 1920 * 100vw);
    top: calc(614 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv .balloon {
    font-size: calc(30 / 720 * 100vw);
    width: calc(460 / 720 * 100vw);
    height: calc(160 / 720 * 100vw);
    border-radius: calc(0 / 720 * 100vw);
    top: calc(290 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv .balloon {
    text-align: center;
  }
}
#index #fv .balloon::after {
  content: "";
  display: block;
  background: #fdd53f;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
}
@media screen and (min-width: 841px) {
  #index #fv .balloon::after {
    width: calc(15 / 1920 * 100vw);
    height: calc(13 / 1920 * 100vw);
    bottom: calc(-13 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv .balloon::after {
    width: calc(33 / 720 * 100vw);
    height: calc(26 / 720 * 100vw);
    bottom: calc(-26 / 720 * 100vw);
  }
}
#index #fv nav {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: url(../img/frontpage/indexnav_bg.webp);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: contain;
  overflow: visible;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #fv nav {
    display: none;
  }
}
#index #fv nav ul {
  overflow: visible;
}
#index #fv nav ul li a {
  text-align: center;
  font-size: calc(26 / 1920 * 100vw);
  color: #57c2e9;
  background-color: #fff;
  display: block;
  width: calc(220 / 1920 * 100vw);
  height: calc(250 / 1920 * 100vw);
  padding-top: calc(178 / 1920 * 100vw);
  border-top-right-radius: calc(20 / 1920 * 100vw);
  border-top-left-radius: calc(20 / 1920 * 100vw);
}
#index #fv nav ul li a:hover {
  -webkit-box-shadow: 0 0 calc(20 / 1920 * 100vw) RGBa(0, 0, 0, 0.16);
          box-shadow: 0 0 calc(20 / 1920 * 100vw) RGBa(0, 0, 0, 0.16);
  opacity: 1;
}
#index #fv nav ul li a img {
  display: block;
  width: calc(134 / 1920 * 100vw);
  position: absolute;
  top: calc(25 / 1920 * 100vw);
  left: calc(43 / 1920 * 100vw);
}
#index #news {
  color: #fff;
  background-color: #29e8e3;
}
@media screen and (min-width: 841px) {
  #index #news {
    padding-top: calc(104 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #news {
    padding-top: calc(45 / 720 * 100vw);
  }
}
#index #news .newslist li {
  border-bottom: solid calc(2 / 1920 * 100vw) #fff;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #news .newslist li {
    border-bottom: solid calc(2 / 720 * 100vw) #fff;
  }
}
@media screen and (min-width: 841px) {
  #index #news .newslist li {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #news .newslist li {
    margin-bottom: calc(50 / 720 * 100vw);
  }
}
#index #news .newslist li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #news .newslist li a {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 841px) {
  #index #news .newslist li a {
    padding-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #news .newslist li a {
    padding-bottom: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #news .newslist li a .date {
    width: calc(155 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #news .newslist li a .date {
    width: calc(200 / 720 * 100vw);
  }
}
#index #news .newslist li a .category {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  #index #news .newslist li a .category {
    width: calc(120 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #news .newslist li a .category {
    width: calc(180 / 720 * 100vw);
    height: calc(40 / 720 * 100vw);
  }
}
#index #news .newslist li a .category.cat_news {
  background-color: #ff9c9e;
}
#index #news .newslist li a .category.cat_event {
  background-color: #ffd52d;
}
@media screen and (min-width: 841px) {
  #index #news .newslist li a .title {
    width: calc(975 / 1920 * 100vw);
    padding-left: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #news .newslist li a .title {
    width: calc(600 / 720 * 100vw);
    padding-left: calc(0 / 720 * 100vw);
  }
}
#index #tourlist {
  background-color: #f5f4e8;
}
@media screen and (min-width: 841px) {
  #index #tourlist {
    padding-top: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #tourlist {
    padding-top: calc(0 / 720 * 100vw);
  }
}
#index #tourlist .inner {
  overflow: visible;
}
#index #tourlist .tourlistwrap {
  overflow: visible;
}
#index #tourlist .tourlistwrap ul {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  overflow: visible;
}
#index #tourlist .tourlistwrap ul li {
  overflow: visible;
  position: relative;
  isolation: isolate;
}
@media screen and (min-width: 841px) {
  #index #tourlist .tourlistwrap ul li {
    margin-bottom: calc(55 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #tourlist .tourlistwrap ul li {
    margin-bottom: calc(60 / 720 * 100vw);
  }
}
#index #tourlist .tourlistwrap ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  #index #tourlist .tourlistwrap ul li a {
    font-size: calc(30 / 1920 * 100vw);
    width: calc(400 / 1920 * 100vw);
    height: calc(100 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #tourlist .tourlistwrap ul li a {
    font-size: calc(30 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
  }
}
#index #tourlist .tourlistwrap ul li a:hover {
  opacity: 1;
}
#index #tourlist .tourlistwrap ul li::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background-image: radial-gradient(#26807c 28%, transparent 28%), radial-gradient(#26807c 28%, transparent 28%);
}
@media screen and (min-width: 841px) {
  #index #tourlist .tourlistwrap ul li::before {
    border-radius: calc(20 / 1920 * 100vw);
    top: calc(20 / 1920 * 100vw);
    left: calc(20 / 1920 * 100vw);
    background-size: calc(8 / 1920 * 100vw) calc(8 / 1920 * 100vw);
    background-position: 0 0, calc(4 / 1920 * 100vw) calc(4 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #tourlist .tourlistwrap ul li::before {
    border-radius: calc(20 / 720 * 100vw);
    top: calc(14 / 720 * 100vw);
    left: calc(14 / 720 * 100vw);
    background-size: calc(16 / 720 * 100vw) calc(16 / 720 * 100vw);
    background-position: 0 0, calc(8 / 720 * 100vw) calc(8 / 720 * 100vw);
  }
}
#index #tourlist .tourlistwrap ul li:hover::before {
  opacity: 0.3;
}
#index #popular {
  background-color: #58ccf5;
  background-image: url(../img/frontpage/populartours_bg.webp);
  background-position: top center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 841px) {
  #index #popular {
    padding-top: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular {
    padding-top: calc(80 / 720 * 100vw);
  }
}
#index #popular h2 {
  color: #fff;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap {
    margin-top: calc(92 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap {
    margin-top: calc(200 / 720 * 100vw);
  }
}
#index #popular .listwrap li {
  font-family: "Zen Maru Gothic", sans-serif;
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li {
    border-radius: calc(20 / 1920 * 100vw);
    padding: calc(30 / 1920 * 100vw) calc(45 / 1920 * 100vw) calc(45 / 1920 * 100vw);
    margin-bottom: calc(180 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li {
    border-radius: calc(20 / 720 * 100vw);
    padding: calc(35 / 720 * 100vw);
    margin-bottom: calc(80 / 720 * 100vw);
  }
}
#index #popular .listwrap li .course {
  color: #fff;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .course {
    font-size: calc(30 / 1920 * 100vw);
    padding-top: calc(77 / 1920 * 100vw);
    width: calc(243 / 1920 * 100vw);
    height: calc(144 / 1920 * 100vw);
    top: calc(-144 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .course {
    font-size: calc(19 / 720 * 100vw);
    padding-top: calc(53 / 720 * 100vw);
    width: calc(160 / 720 * 100vw);
    height: calc(94 / 720 * 100vw);
    top: calc(-58 / 720 * 100vw);
    left: calc(35 / 720 * 100vw);
  }
}
#index #popular .listwrap li .course.early {
  background-image: url(../img/frontpage/popular_icon_early.webp);
}
#index #popular .listwrap li .course.alltime {
  background-image: url(../img/frontpage/popular_icon_alltime.webp);
}
#index #popular .listwrap li .course.halfday {
  background-image: url(../img/frontpage/popular_icon_alltime.webp);
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap {
    width: calc(640 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap {
    width: calc(530 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .letter {
    font-size: calc(20 / 720 * 100vw);
    width: calc(550 / 720 * 100vw);
    margin-top: calc(20 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .letter::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .letter::before {
    width: calc(85 / 1920 * 100vw);
    height: calc(85 / 1920 * 100vw);
    margin-right: calc(14 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .letter::before {
    width: calc(80 / 720 * 100vw);
    height: calc(80 / 720 * 100vw);
    margin-right: calc(14 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .letter.no1::before {
  background-image: url(../img/frontpage/popular_icon_no1.webp);
}
#index #popular .listwrap li .card .textwrap .letter.no2::before {
  background-image: url(../img/frontpage/popular_icon_no2.webp);
}
#index #popular .listwrap li .card .textwrap .letter.no3::before {
  background-image: url(../img/frontpage/popular_icon_no3.webp);
}
#index #popular .listwrap li .card .textwrap .letter.no4::before {
  background-image: url(../img/frontpage/popular_icon_no4.webp);
}
#index #popular .listwrap li .card .textwrap .date {
  line-height: 1;
  font-family: "Futura-Bk-Bt", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .date {
    font-size: calc(26 / 1920 * 100vw);
    padding-right: calc(80 / 1920 * 100vw);
    margin-top: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .date {
    font-size: calc(24 / 720 * 100vw);
    padding-right: calc(80 / 720 * 100vw);
    margin-top: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .date .year,
  #index #popular .listwrap li .card .textwrap .date .weekday {
    font-size: calc(26 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .date .year,
  #index #popular .listwrap li .card .textwrap .date .weekday {
    font-size: calc(24 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .date .weekday {
    font-size: calc(20 / 1920 * 100vw);
    padding-bottom: calc(2 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .date .weekday {
    font-size: calc(18 / 720 * 100vw);
    padding-bottom: calc(0 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .date .weekday {
    margin-right: calc(-5 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .date .arrow_r {
  -ms-flex-item-align: center;
      align-self: center;
  display: block;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .date .arrow_r {
    width: calc(14 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .date .arrow_r {
    width: calc(12 / 720 * 100vw);
    margin-right: calc(10 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .date .arrow_r img {
  height: auto;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .date .arrow_r img {
    width: calc(14 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .date .arrow_r img {
    width: calc(16 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .title {
  line-height: 1.2;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .title {
    font-size: calc(48 / 1920 * 100vw);
    padding-right: calc(80 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
    margin-top: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .title {
    font-size: calc(50 / 720 * 100vw);
    padding-right: calc(0 / 720 * 100vw);
    margin-top: calc(5 / 720 * 100vw);
    margin-bottom: calc(15 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .title {
    width: calc(550 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .iconwrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .iconwrap {
    padding-right: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .iconwrap {
    padding-right: calc(0 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .iconwrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#index #popular .listwrap li .card .textwrap .iconwrap > span {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ccc2a0;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span {
    font-size: calc(18 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span {
    font-size: calc(18 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    border-radius: calc(25 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.age {
    width: calc(250 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.age {
    width: calc(237 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.pax {
    width: calc(298 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.pax {
    width: calc(282 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .iconwrap > span.information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.information {
    width: calc(560 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.information {
    width: calc(530 / 720 * 100vw);
    gap: calc(20 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .iconwrap > span.information span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.information span {
    gap: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.information span {
    gap: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.information span img {
    width: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .iconwrap > span.information span img {
    width: calc(22 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .pricewrap {
  line-height: 1;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .pricewrap {
    padding-bottom: calc(35 / 1920 * 100vw);
    padding-right: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .pricewrap {
    padding-bottom: calc(30 / 720 * 100vw);
    padding-right: calc(0 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .pricewrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#index #popular .listwrap li .card .textwrap .pricewrap .price {
  color: #ff9c9e;
  font-family: "Futura-Bk-Bt", sans-serif;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .pricewrap .price {
    font-size: calc(41 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .pricewrap .price {
    font-size: calc(41 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .pricewrap .price .num {
    font-size: calc(60 / 1920 * 100vw);
    margin-left: calc(-10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .pricewrap .price .num {
    font-size: calc(50 / 720 * 100vw);
    margin-left: calc(-10 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .pricewrap .price .tax {
  position: absolute;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .pricewrap .price .tax {
    font-size: calc(18 / 1920 * 100vw);
    bottom: calc(-20 / 1920 * 100vw);
    right: calc(-16 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .pricewrap .price .tax {
    font-size: calc(18 / 720 * 100vw);
    bottom: calc(-20 / 720 * 100vw);
    right: calc(-10 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .textwrap .pricewrap .separator {
  background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(#ff9c9e), color-stop(#ff9c9e), to(transparent));
  background-image: linear-gradient(to top left, transparent calc(50% - 1 / 1920 * 100vw), #ff9c9e calc(50% - 1 / 1920 * 100vw), #ff9c9e calc(50% + 1 / 1920 * 100vw), transparent calc(50% + 1 / 1920 * 100vw));
  background-repeat: no-repeat;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .pricewrap .separator {
    background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(#ff9c9e), color-stop(#ff9c9e), to(transparent));
    background-image: linear-gradient(to top left, transparent calc(50% - 1 / 720 * 100vw), #ff9c9e calc(50% - 1 / 720 * 100vw), #ff9c9e calc(50% + 1 / 720 * 100vw), transparent calc(50% + 1 / 720 * 100vw));
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .pricewrap .separator {
    width: calc(50 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .pricewrap .separator {
    width: calc(50 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .textwrap .linkwrap {
    padding-right: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .textwrap .linkwrap {
    padding-right: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .imgwrap {
    width: calc(550 / 1920 * 100vw);
    height: calc(550 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .imgwrap {
    width: calc(530 / 720 * 100vw);
    height: calc(330 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .imgwrap img {
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .imgwrap img {
    border-radius: calc(10 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .imgwrap .pointwrap {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .imgwrap .pointwrap {
    display: none;
  }
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .imgwrap .pointwrap {
    padding-right: calc(20 / 1920 * 100vw);
    gap: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .imgwrap .pointwrap {
    padding-right: calc(20 / 720 * 100vw);
    gap: calc(10 / 720 * 100vw);
  }
}
#index #popular .listwrap li .card .imgwrap .pointwrap p {
  font-family: "Zen Kaku Gothic", sans-serif;
  color: #fff;
  background-color: #ccc2a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  #index #popular .listwrap li .card .imgwrap .pointwrap p {
    width: calc(183 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    border-bottom-left-radius: calc(10 / 1920 * 100vw);
    border-bottom-right-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #popular .listwrap li .card .imgwrap .pointwrap p {
    width: calc(183 / 720 * 100vw);
    height: calc(40 / 720 * 100vw);
    border-bottom-left-radius: calc(10 / 720 * 100vw);
    border-bottom-right-radius: calc(10 / 720 * 100vw);
  }
}
#index #staff {
  background-color: #f5f4e8;
  padding-bottom: 0;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff {
    padding-bottom: calc(300 / 720 * 100vw);
  }
}
#index #staff .staffwrap {
  overflow: hidden;
}
@media screen and (min-width: 841px) {
  #index #staff .staffwrap {
    padding-bottom: calc(240 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .staffwrap {
    padding-bottom: calc(100 / 720 * 100vw);
  }
}
#index #staff .inner {
  overflow: visible;
}
#index #staff .wrap_wh {
  text-align: center;
  background-color: #fff;
  background-image: url(../img/frontpage/staff_bg.webp);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: visible;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh {
    background-image: none;
  }
}
@media screen and (min-width: 841px) {
  #index #staff .wrap_wh {
    border-radius: calc(30 / 1920 * 100vw);
    padding-top: calc(160 / 1920 * 100vw);
    padding-bottom: calc(180 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh {
    border-radius: calc(30 / 720 * 100vw);
    padding: calc(56 / 720 * 100vw) calc(0 / 720 * 100vw) calc(100 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh .bg {
    width: calc(720 / 720 * 100vw);
    max-width: calc(720 / 720 * 100vw);
    position: absolute;
    top: 0;
    left: calc(-60 / 720 * 100vw);
    z-index: 0;
  }
}
#index #staff .wrap_wh .pic {
  margin: auto;
  -webkit-transform: translateX(calc(20 / 1920 * 100vw));
          transform: translateX(calc(20 / 1920 * 100vw));
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh .pic {
    -webkit-transform: translateX(calc(10 / 720 * 100vw));
            transform: translateX(calc(10 / 720 * 100vw));
  }
}
@media screen and (min-width: 841px) {
  #index #staff .wrap_wh .pic {
    width: calc(820 / 1920 * 100vw);
    margin-bottom: calc(143 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh .pic {
    width: calc(526 / 720 * 100vw);
    margin-bottom: calc(50 / 720 * 100vw);
    margin-left: calc(26 / 720 * 100vw);
    margin-right: calc(0 / 720 * 100vw);
  }
}
#index #staff .wrap_wh h3 {
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (min-width: 841px) {
  #index #staff .wrap_wh h3 {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(43 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh h3 {
    font-size: calc(40 / 720 * 100vw);
    margin-bottom: calc(43 / 720 * 100vw);
  }
}
#index #staff .wrap_wh p {
  line-height: 2.2;
}
@media screen and (min-width: 841px) {
  #index #staff .wrap_wh .margin {
    margin-top: calc(40 / 1920 * 100vw);
    margin-bottom: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh .margin {
    margin-top: calc(40 / 720 * 100vw);
    margin-bottom: calc(120 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #staff .wrap_wh .margintop {
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh .margintop {
    margin-top: calc(40 / 720 * 100vw);
  }
}
#index #staff .wrap_wh .staffimg {
  position: absolute;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh .staffimg {
    display: none;
  }
}
#index #staff .wrap_wh .staffimg.img01 {
  top: calc(672 / 1920 * 100vw);
  left: calc(-362 / 1920 * 100vw);
  width: calc(596 / 1920 * 100vw);
}
#index #staff .wrap_wh .staffimg.img02 {
  top: calc(872 / 1920 * 100vw);
  right: calc(-358 / 1920 * 100vw);
  width: calc(598 / 1920 * 100vw);
}
#index #staff .wrap_wh .staffimg.img03 {
  top: calc(1200 / 1920 * 100vw);
  left: calc(-230 / 1920 * 100vw);
  width: calc(434 / 1920 * 100vw);
}
#index #staff .wrap_wh .staffimg.img04 {
  top: calc(1410 / 1920 * 100vw);
  right: calc(-256 / 1920 * 100vw);
  width: calc(389 / 1920 * 100vw);
}
#index #staff .wrap_wh .staffimg.img05 {
  top: calc(1662 / 1920 * 100vw);
  left: calc(-397 / 1920 * 100vw);
  width: calc(496 / 1920 * 100vw);
}
#index #staff .wrap_wh .staffimg.img06 {
  top: calc(1770 / 1920 * 100vw);
  right: calc(-420 / 1920 * 100vw);
  width: calc(602 / 1920 * 100vw);
}
#index #staff .wrap_wh .staffimg.img07 {
  top: calc(2090 / 1920 * 100vw);
  left: calc(-405 / 1920 * 100vw);
  width: calc(533 / 1920 * 100vw);
}
#index #staff .wrap_wh .staffimg.img08 {
  top: calc(2284 / 1920 * 100vw);
  right: calc(-265 / 1920 * 100vw);
  width: calc(394 / 1920 * 100vw);
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #staff .wrap_wh .staffimg_sp {
    width: calc(720 / 720 * 100vw);
    max-width: none;
    margin-left: calc(-70 / 720 * 100vw);
  }
}
#index #about {
  background-color: #29e8e3;
}
#index #about .inner {
  overflow: visible;
}
@media screen and (min-width: 841px) {
  #index #about {
    padding-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #about {
    padding-top: calc(0 / 720 * 100vw);
  }
}
#index #about h2 {
  color: #fff;
}
#index #about .flexbox {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#index #about .flexbox p {
  font-family: "Zen Maru Gothic", sans-serif;
  overflow: visible;
  position: relative;
  isolation: isolate;
}
@media screen and (min-width: 841px) {
  #index #about .flexbox p {
    width: calc(600 / 1920 * 100vw);
    height: calc(200 / 1920 * 100vw);
    margin-bottom: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #about .flexbox p {
    width: calc(600 / 720 * 100vw);
    height: calc(200 / 720 * 100vw);
    margin-bottom: calc(60 / 720 * 100vw);
  }
}
#index #about .flexbox p::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background-image: radial-gradient(#26807c 28%, transparent 28%), radial-gradient(#26807c 28%, transparent 28%);
}
@media screen and (min-width: 841px) {
  #index #about .flexbox p::before {
    border-radius: calc(20 / 1920 * 100vw);
    top: calc(20 / 1920 * 100vw);
    left: calc(20 / 1920 * 100vw);
    background-size: calc(8 / 1920 * 100vw) calc(8 / 1920 * 100vw);
    background-position: 0 0, calc(4 / 1920 * 100vw) calc(4 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #about .flexbox p::before {
    border-radius: calc(20 / 720 * 100vw);
    top: calc(14 / 720 * 100vw);
    left: calc(14 / 720 * 100vw);
    background-size: calc(16 / 720 * 100vw) calc(16 / 720 * 100vw);
    background-position: 0 0, calc(8 / 720 * 100vw) calc(8 / 720 * 100vw);
  }
}
#index #about .flexbox p:hover::before {
  opacity: 0.3;
}
#index #about .flexbox p a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  #index #about .flexbox p a {
    font-size: calc(30 / 1920 * 100vw);
    width: calc(600 / 1920 * 100vw);
    height: calc(200 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
    margin-bottom: calc(60 / 1920 * 100vw);
    padding-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #about .flexbox p a {
    font-size: calc(30 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
    height: calc(200 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
    margin-bottom: calc(60 / 720 * 100vw);
    padding-bottom: calc(15 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #about .flexbox p a img {
    width: calc(214 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #about .flexbox p a img {
    width: calc(214 / 720 * 100vw);
  }
}
#index #about .flexbox p a:hover {
  opacity: 1;
}
#index #faq {
  background-color: #65e2b4;
}
#index #faq .inner {
  overflow: visible;
}
#index #faq h2 {
  color: #fff;
}
#index #faq .question {
  position: relative;
  isolation: isolate;
}
#index #faq .question::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  pointer-events: none;
  background-image: radial-gradient(#26807c 28%, transparent 28%), radial-gradient(#26807c 28%, transparent 28%);
}
@media screen and (min-width: 841px) {
  #index #faq .question::before {
    border-radius: calc(20 / 1920 * 100vw);
    top: calc(20 / 1920 * 100vw);
    left: calc(20 / 1920 * 100vw);
    background-size: calc(8 / 1920 * 100vw) calc(8 / 1920 * 100vw);
    background-position: 0 0, calc(4 / 1920 * 100vw) calc(4 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #faq .question::before {
    border-radius: calc(20 / 720 * 100vw);
    top: calc(14 / 720 * 100vw);
    left: calc(14 / 720 * 100vw);
    background-size: calc(16 / 720 * 100vw) calc(16 / 720 * 100vw);
    background-position: 0 0, calc(8 / 720 * 100vw) calc(8 / 720 * 100vw);
  }
}
#index #faq .question:hover::before {
  opacity: 0.3;
}
#index #faq .question:hover {
  cursor: pointer;
}
#index #faq .question .question_inner,
#index #faq .answer {
  width: 100%;
  display: block;
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  #index #faq .question .question_inner,
  #index #faq .answer {
    border-radius: calc(20 / 1920 * 100vw);
    padding-top: calc(17 / 1920 * 100vw);
    padding-left: calc(112 / 1920 * 100vw);
    padding-bottom: calc(17 / 1920 * 100vw);
    padding-right: calc(126 / 1920 * 100vw);
    margin-bottom: calc(57 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #faq .question .question_inner,
  #index #faq .answer {
    border-radius: calc(20 / 720 * 100vw);
    padding-top: calc(17 / 720 * 100vw);
    padding-left: calc(112 / 720 * 100vw);
    padding-bottom: calc(17 / 720 * 100vw);
    padding-right: calc(55 / 720 * 100vw);
    margin-bottom: calc(57 / 720 * 100vw);
  }
}
#index #faq .question .question_inner .number,
#index #faq .answer .number {
  color: #2dd2ce;
  position: absolute;
  line-height: 1;
}
@media screen and (min-width: 841px) {
  #index #faq .question .question_inner .number,
  #index #faq .answer .number {
    font-size: calc(45 / 1920 * 100vw);
    margin-right: calc(25 / 1920 * 100vw);
    top: calc(15 / 1920 * 100vw);
    left: calc(34 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #faq .question .question_inner .number,
  #index #faq .answer .number {
    font-size: calc(45 / 720 * 100vw);
    margin-right: calc(25 / 720 * 100vw);
    top: calc(15 / 720 * 100vw);
    left: calc(34 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #faq .question .question_inner,
  #index #faq .answer {
    font-size: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #faq .question .question_inner,
  #index #faq .answer {
    font-size: calc(36 / 720 * 100vw);
  }
}
#index #faq .question_inner::after {
  content: "";
  background-image: url(../img/frontpage/faq_arrow.webp);
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 841px) {
  #index #faq .question_inner::after {
    width: calc(32 / 1920 * 100vw);
    height: calc(32 / 1920 * 100vw);
    top: calc(26 / 1920 * 100vw);
    right: calc(26 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #faq .question_inner::after {
    width: calc(32 / 720 * 100vw);
    height: calc(32 / 720 * 100vw);
    bottom: calc(26 / 720 * 100vw);
    right: calc(26 / 720 * 100vw);
  }
}
#index #faq .is-active .question_inner::after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#index #faq .answer {
  display: none;
}
@media screen and (min-width: 841px) {
  #index #faq .answer {
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #faq .answer {
    font-size: calc(28 / 720 * 100vw);
  }
}
#index #instagram {
  background-color: #f5f4e8;
}
#index #instagram .letter {
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}
@media screen and (min-width: 841px) {
  #index #instagram .letter {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(35 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #instagram .letter {
    font-size: calc(40 / 720 * 100vw);
    margin-bottom: calc(35 / 720 * 100vw);
  }
}
#index #instagram .instagramwrap {
  /* 表示領域 */
  /* 横並び＋スクロール */
  /* スクロールバー非表示（任意） */
}
#index #instagram .instagramwrap #sb_instagram {
  position: relative;
  overflow: hidden;
  width: 100%;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
#index #instagram .instagramwrap #sbi_images {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow-x: auto;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}
@media screen and (min-width: 841px) {
  #index #instagram .instagramwrap #sbi_images {
    gap: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #instagram .instagramwrap #sbi_images {
    gap: calc(20 / 720 * 100vw);
  }
}
#index #instagram .instagramwrap #sbi_images .sbi_item {
  overflow: hidden;
}
@media screen and (min-width: 841px) {
  #index #instagram .instagramwrap #sbi_images .sbi_item {
    width: calc(460 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #instagram .instagramwrap #sbi_images .sbi_item {
    width: calc(290 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
  }
}
#index #instagram .instagramwrap #sbi_images .sbi_item img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 841px) {
  #index #instagram .instagramwrap #sbi_images .sbi_item img {
    width: calc(460 / 1920 * 100vw);
    height: calc(460 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #instagram .instagramwrap #sbi_images .sbi_item img {
    width: calc(290 / 720 * 100vw);
    height: calc(290 / 720 * 100vw);
  }
}
#index #instagram .instagramwrap #sbi_images::-webkit-scrollbar {
  display: none;
}
@media screen and (min-width: 841px) {
  #index #instagram .linkbtn {
    width: calc(300 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #instagram .linkbtn {
    width: calc(600 / 720 * 100vw);
  }
}
#index #present {
  color: #fff;
  background-color: #22dcd7;
}
#index #present h2 {
  color: #fff;
}
#index #review {
  color: #fff;
  background-color: #42eee9;
}
#index #review h2 {
  color: #fff;
}
#index #review .reviewwrap {
  width: 100%;
}
@media screen and (min-width: 841px) {
  #index #review .reviewwrap {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #review .reviewwrap {
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #review .reviewwrap > div .ratinghead {
    font-size: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #review .reviewwrap > div .ratinghead {
    font-size: calc(60 / 720 * 100vw);
  }
}
#index #review .reviewwrap > div .star {
  font-family: "Futura-Bk-Bt", sans-serif;
  color: #fdd53f;
  line-height: 0.8;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (min-width: 841px) {
  #index #review .reviewwrap > div .star {
    font-size: calc(30 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #review .reviewwrap > div .star {
    font-size: calc(30 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
#index #review .reviewwrap > div .rating {
  color: #fdd53f;
  letter-spacing: 0.2em;
}
#index #review .reviewwrap > div .rating .time {
  color: #fff;
  letter-spacing: 0;
}
@media screen and (min-width: 841px) {
  #index #review .reviewwrap > div .rating .time {
    padding-left: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #review .reviewwrap > div .rating .time {
    padding-left: calc(10 / 720 * 100vw);
  }
}
#index #review .reviewwrap > div .auther {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  #index #review .reviewwrap > div .auther {
    font-size: calc(30 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #review .reviewwrap > div .auther {
    font-size: calc(30 / 720 * 100vw);
    gap: calc(20 / 720 * 100vw);
  }
}
#index #review .reviewwrap > div .auther .imgwrap {
  display: inline-block;
}
@media screen and (min-width: 841px) {
  #index #review .reviewwrap > div .auther .imgwrap {
    width: calc(68 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #review .reviewwrap > div .auther .imgwrap {
    width: calc(68 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  #index #review .reviewwrap > div .auther .time {
    font-size: calc(24 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #review .reviewwrap > div .auther .time {
    font-size: calc(20 / 720 * 100vw);
  }
}
#index #review .reviewwrap > div .text {
  text-align: justify;
}
#index #review .reviewtext {
  text-align: center;
}
@media screen and (min-width: 841px) {
  #index #review .reviewtext {
    padding-bottom: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #review .reviewtext {
    padding-bottom: calc(100 / 720 * 100vw);
  }
}
#index #review .linkwrap {
  text-align: right;
}
#index #review .linkwrap a {
  text-decoration: underline;
}
#index #contact {
  color: #fff;
  background-color: #65e2b4;
}
#index #contact h2 {
  color: #fff;
}
#index #contact .flexbox div {
  width: 49%;
}
@media screen and (min-width: 841px) {
  #index #contact .flexbox div {
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #contact .flexbox div {
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #contact .flexbox div {
    width: 100%;
  }
}
#index #contact input[type=text] {
  background-color: #fff;
  border: none;
}
@media screen and (min-width: 841px) {
  #index #contact input[type=text] {
    font-size: calc(22 / 1920 * 100vw);
    width: calc(630 / 1920 * 100vw);
    height: calc(90 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    padding-top: calc(15 / 1920 * 100vw);
    padding-left: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #contact input[type=text] {
    font-size: calc(32 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
    height: calc(120 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    padding-top: calc(15 / 720 * 100vw);
    padding-left: calc(30 / 720 * 100vw);
  }
}
#index #contact textarea {
  background-color: #fff;
  border: none;
  width: 100%;
}
@media screen and (min-width: 841px) {
  #index #contact textarea {
    height: calc(160 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    padding-top: calc(40 / 1920 * 100vw);
    padding-left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #contact textarea {
    height: calc(300 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    padding-top: calc(40 / 720 * 100vw);
    padding-left: calc(20 / 720 * 100vw);
  }
}
#index #contact button,
#index #contact input[type=submit] {
  color: #fff;
  display: inline-block;
  background-color: #ff9c9e;
  text-align: center;
  border: none;
}
@media screen and (min-width: 841px) {
  #index #contact button,
  #index #contact input[type=submit] {
    width: calc(240 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    padding-top: calc(5 / 1920 * 100vw);
    margin-top: calc(20 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #contact button,
  #index #contact input[type=submit] {
    width: calc(600 / 720 * 100vw);
    height: calc(90 / 720 * 100vw);
    padding-top: calc(5 / 720 * 100vw);
    margin-top: calc(20 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
#index #contact .mw_wp_form_input .label {
  color: #716a65;
  position: absolute;
  z-index: 10;
}
@media screen and (min-width: 841px) {
  #index #contact .mw_wp_form_input .label {
    font-size: calc(22 / 1920 * 100vw);
    top: calc(5 / 1920 * 100vw);
    left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index #contact .mw_wp_form_input .label {
    font-size: calc(28 / 720 * 100vw);
    top: calc(5 / 720 * 100vw);
    left: calc(20 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  #index .linkbtn {
    width: calc(600 / 720 * 100vw);
  }
}

.sidebarwrap {
  position: relative;
  height: 0;
  overflow: visible;
}

aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: absolute;
  bottom: 0;
  z-index: 1000;
  -webkit-transform: scale(0.65) translate(calc(-100 / 1920 * 100vw), calc(-100 / 1920 * 100vw));
          transform: scale(0.65) translate(calc(-100 / 1920 * 100vw), calc(-100 / 1920 * 100vw));
  white-space: nowrap;
}
@media screen and (min-width: 841px) {
  aside {
    font-size: calc(26 / 1920 * 100vw);
    left: calc(122 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  aside {
    font-size: calc(26 / 720 * 100vw);
    left: calc(122 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  aside {
    display: none;
  }
}
aside.fixed {
  position: fixed;
}
@media screen and (min-width: 841px) {
  aside.fixed {
    top: calc(140 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  aside.fixed {
    top: calc(40 / 720 * 100vw);
  }
}
aside p {
  color: #707070;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (min-width: 841px) {
  aside p {
    padding-bottom: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  aside p {
    padding-bottom: calc(100 / 720 * 100vw);
  }
}
aside p::after {
  content: "";
  display: block;
  background-color: #707070;
  position: absolute;
  margin: auto;
  right: 0;
  left: 0;
  bottom: 0;
}
@media screen and (min-width: 841px) {
  aside p::after {
    width: calc(2 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    margin: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  aside p::after {
    width: calc(2 / 720 * 100vw);
    height: calc(60 / 720 * 100vw);
    margin: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  aside p:nth-child(3) {
    margin-top: calc(68 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  aside p:nth-child(3) {
    margin-top: calc(68 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  aside img {
    width: calc(60 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  aside img {
    width: calc(60 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
aside .voice {
  position: absolute;
  width: calc(56 / 1920 * 100vw);
  height: auto;
  left: calc(80 / 1920 * 100vw);
  top: 0;
  bottom: 0;
  display: block;
  margin: auto;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  aside .voice {
    display: none;
  }
}

main {
  background-image: url(../img/content_bg.webp);
  background-size: contain;
  background-repeat: repeat;
  background-position: top center;
}
@media screen and (min-width: 841px) {
  main {
    padding-top: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  main {
    padding-top: calc(120 / 720 * 100vw);
  }
}
main .breadcrumbs {
  color: #fff;
  margin: auto;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 841px) {
  main .breadcrumbs {
    width: calc(1440 / 1920 * 100vw);
    height: calc(332 / 1920 * 100vw);
    padding-top: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  main .breadcrumbs {
    width: calc(600 / 720 * 100vw);
    height: calc(332 / 720 * 100vw);
    padding-top: calc(20 / 720 * 100vw);
  }
}
main .breadcrumbs li {
  vertical-align: middle;
  display: inline-block;
}
@media screen and (min-width: 841px) {
  main .breadcrumbs li {
    font-size: calc(18 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  main .breadcrumbs li {
    font-size: calc(18 / 720 * 100vw);
    margin-right: calc(10 / 720 * 100vw);
  }
}
main .breadcrumbs li::after {
  content: "";
  display: inline-block;
  background-image: url(../img/breadcrumbs_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 841px) {
  main .breadcrumbs li::after {
    width: calc(10 / 1920 * 100vw);
    height: calc(15 / 1920 * 100vw);
    margin-left: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  main .breadcrumbs li::after {
    width: calc(10 / 720 * 100vw);
    height: calc(15 / 720 * 100vw);
    margin-left: calc(10 / 720 * 100vw);
  }
}
main .breadcrumbs li:last-child::after {
  display: none;
}
main .breadcrumbs img {
  display: inline-block;
}
@media screen and (min-width: 841px) {
  main .breadcrumbs img {
    width: calc(17 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
    top: calc(2 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  main .breadcrumbs img {
    width: calc(17 / 720 * 100vw);
    margin-right: calc(10 / 720 * 100vw);
    top: calc(2 / 720 * 100vw);
  }
}

@media screen and (min-width: 841px) {
  .content_inner {
    top: calc(-180 / 1920 * 100vw);
    padding-bottom: calc(180 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content_inner {
    top: calc(-180 / 720 * 100vw);
    padding-bottom: calc(180 / 720 * 100vw);
  }
}
.content_inner h2 {
  color: #fff;
}
@media screen and (min-width: 841px) {
  .content_inner h2 {
    margin-top: calc(50 / 1920 * 100vw);
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content_inner h2 {
    margin-top: calc(50 / 720 * 100vw);
    margin-bottom: calc(50 / 720 * 100vw);
  }
}

.content.news .newswrap {
  background-color: #38eae5;
}
.content.news .newswrap .news_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_icon {
    width: calc(177 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_icon {
    width: calc(177 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner {
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner {
    border-radius: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner {
    border-radius: calc(30 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newsarchive {
    padding: calc(80 / 1920 * 100vw) calc(140 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive {
    padding: calc(20 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newsarchive .head {
  color: #716a65;
  font-weight: 700;
  background-color: #f3efe1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newsarchive .head {
    font-size: calc(26 / 1920 * 100vw);
    width: calc(1000 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    border-radius: calc(40 / 1920 * 100vw);
    margin-bottom: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .head {
    font-size: calc(26 / 720 * 100vw);
    width: calc(560 / 720 * 100vw);
    height: calc(80 / 720 * 100vw);
    border-radius: calc(40 / 720 * 100vw);
    margin-bottom: calc(60 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newsarchive .newslist li {
  border-bottom: solid calc(2 / 1920 * 100vw) #ebeae9;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .newslist li {
    border-bottom: solid calc(2 / 720 * 100vw) #ebeae9;
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newsarchive .newslist li {
    padding-bottom: calc(20 / 1920 * 100vw);
    padding-left: calc(16 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .newslist li {
    padding-bottom: calc(20 / 720 * 100vw);
    padding-left: calc(16 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newsarchive .newslist li a {
  color: #716a65;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .newslist li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newsarchive .newslist li a .date {
    width: calc(300 / 1920 * 100vw);
    margin-right: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .newslist li a .date {
    width: calc(560 / 720 * 100vw);
    margin-right: calc(0 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newsarchive .newslist li a .title {
  text-decoration: underline;
  display: block;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newsarchive .newslist li a .title {
    width: calc(940 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .newslist li a .title {
    width: calc(560 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newsarchive .pagenation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newsarchive .pagenation {
    gap: calc(17 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .pagenation {
    gap: calc(17 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newsarchive .pagenation li a {
  color: #716a65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f4e8;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newsarchive .pagenation li a {
    width: calc(50 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .pagenation li a {
    width: calc(50 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newsarchive .pagenation li:first-child a, .content.news .newswrap .news_inner.newsarchive .pagenation li:last-child a {
  color: #fff;
  background-color: #ff9c9e;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newsarchive .pagenation li:first-child a, .content.news .newswrap .news_inner.newsarchive .pagenation li:last-child a {
    width: calc(110 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newsarchive .pagenation li:first-child a, .content.news .newswrap .news_inner.newsarchive .pagenation li:last-child a {
    width: calc(110 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    border-radius: calc(25 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newspost {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost {
    padding: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost {
    padding: calc(45 / 720 * 100vw) calc(35 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost .side {
    width: calc(255 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost .side {
    width: calc(530 / 720 * 100vw);
    margin-top: calc(80 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newspost .side .writer {
  text-align: center;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost .side .writer {
    margin-bottom: calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost .side .writer {
    margin-bottom: calc(70 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newspost .side .head {
  color: #fff;
  font-weight: 700;
  background-color: #57c2e9;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost .side .head {
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(25 / 1920 * 100vw);
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost .side .head {
    height: calc(50 / 720 * 100vw);
    border-radius: calc(25 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost .side ul {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost .side ul {
    margin-bottom: calc(50 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost .side ul li {
    padding-left: calc(40 / 1920 * 100vw);
    padding-right: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost .side ul li {
    padding-left: calc(40 / 720 * 100vw);
    padding-right: calc(20 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newspost .side ul li::before {
  content: "";
  display: block;
  background-color: #57c2e9;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost .side ul li::before {
    width: calc(11 / 1920 * 100vw);
    height: calc(11 / 1920 * 100vw);
    left: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost .side ul li::before {
    width: calc(11 / 720 * 100vw);
    height: calc(11 / 720 * 100vw);
    left: calc(15 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost article {
    width: calc(1120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost article {
    width: calc(530 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newspost article .title {
  border-bottom: solid calc(3 / 1920 * 100vw) #d1cbba;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost article .title {
    font-size: calc(40 / 1920 * 100vw);
    padding-bottom: calc(15 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost article .title {
    font-size: calc(40 / 720 * 100vw);
    padding-bottom: calc(15 / 720 * 100vw);
    margin-bottom: calc(15 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost article .postdate,
  .content.news .newswrap .news_inner.newspost article .writer {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost article .postdate,
  .content.news .newswrap .news_inner.newspost article .writer {
    font-size: calc(22 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost article .content_detail {
    margin-top: calc(10 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost article .content_detail {
    margin-top: calc(10 / 720 * 100vw);
    margin-bottom: calc(80 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newspost article .snswrap {
  border-top: solid calc(3 / 1920 * 100vw) #d1cbba;
}
.content.news .newswrap .news_inner.newspost article .snswrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost article .snswrap ul {
    padding-top: calc(15 / 1920 * 100vw);
    padding-bottom: calc(80 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost article .snswrap ul {
    padding-top: calc(20 / 720 * 100vw);
    padding-bottom: calc(80 / 720 * 100vw);
    gap: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost article .snswrap ul li {
    width: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost article .snswrap ul li {
    width: calc(40 / 720 * 100vw);
  }
}
.content.news .newswrap .news_inner.newspost article .pagingwrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost article .pagingwrap ul {
    gap: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.news .newswrap .news_inner.newspost article .pagingwrap ul li {
    font-size: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.news .newswrap .news_inner.newspost article .pagingwrap ul li {
    font-size: calc(24 / 720 * 100vw);
  }
}

.content.tourlist .tourlistwrap {
  background-color: #38eae5;
}
.content.tourlist .tourlistwrap .tourlist_icon {
  margin: auto;
  display: block;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlist_icon {
    width: calc(93 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlist_icon {
    width: calc(93 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive {
    padding-top: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive {
    padding-top: calc(100 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li {
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li {
    width: calc(600 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    padding: calc(35 / 1920 * 100vw) calc(35 / 1920 * 100vw) calc(20 / 1920 * 100vw);
    margin-bottom: calc(180 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li {
    width: calc(600 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    padding: calc(35 / 720 * 100vw) calc(35 / 720 * 100vw) calc(20 / 720 * 100vw);
    margin-bottom: calc(140 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .course {
  color: #fff;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .course {
    font-size: calc(19 / 1920 * 100vw);
    padding-top: calc(50 / 1920 * 100vw);
    width: calc(160 / 1920 * 100vw);
    height: calc(95 / 1920 * 100vw);
    top: calc(-94 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .course {
    font-size: calc(19 / 720 * 100vw);
    padding-top: calc(50 / 720 * 100vw);
    width: calc(160 / 720 * 100vw);
    height: calc(95 / 720 * 100vw);
    top: calc(-94 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .course.early {
  background-image: url(../img/frontpage/popular_icon_early.webp);
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .course.alltime {
  background-image: url(../img/frontpage/popular_icon_alltime.webp);
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .course.halfday {
  background-image: url(../img/frontpage/popular_icon_alltime.webp);
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap {
    width: calc(530 / 1920 * 100vw);
    height: calc(330 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap {
    width: calc(530 / 720 * 100vw);
    height: calc(330 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap .pointwrap {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none; /* 削除 */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap .pointwrap {
    padding-right: calc(20 / 1920 * 100vw);
    gap: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap .pointwrap {
    padding-right: calc(20 / 720 * 100vw);
    gap: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap .pointwrap p {
  color: #fff;
  background-color: #ccc2a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap .pointwrap p {
    width: calc(183 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    border-bottom-left-radius: calc(10 / 1920 * 100vw);
    border-bottom-right-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .imgwrap .pointwrap p {
    width: calc(183 / 720 * 100vw);
    height: calc(40 / 720 * 100vw);
    border-bottom-left-radius: calc(10 / 720 * 100vw);
    border-bottom-right-radius: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap {
    width: calc(530 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap {
    width: calc(530 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter {
    font-size: calc(20 / 1920 * 100vw);
    width: calc(580 / 1920 * 100vw);
    padding-top: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter {
    font-size: calc(20 / 720 * 100vw);
    width: calc(580 / 720 * 100vw);
    padding-top: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter::before {
  content: "";
  display: block;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter::before {
    font-size: calc(20 / 1920 * 100vw);
    width: calc(80 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    margin-right: calc(14 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter::before {
    font-size: calc(24 / 720 * 100vw);
    width: calc(80 / 720 * 100vw);
    height: calc(80 / 720 * 100vw);
    margin-right: calc(14 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter.no1::before {
  background-image: url(../img/frontpage/popular_icon_no1.webp);
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter.no2::before {
  background-image: url(../img/frontpage/popular_icon_no2.webp);
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter.no3::before {
  background-image: url(../img/frontpage/popular_icon_no3.webp);
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .letter.no4::before {
  background-image: url(../img/frontpage/popular_icon_no4.webp);
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date {
  line-height: 1;
  font-family: "Futura-Bk-Bt", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date {
    font-size: calc(26 / 1920 * 100vw);
    padding-right: calc(80 / 1920 * 100vw);
    margin-top: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date {
    font-size: calc(26 / 720 * 100vw);
    padding-right: calc(80 / 720 * 100vw);
    margin-top: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .year,
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .weekday {
    font-size: calc(26 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .year,
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .weekday {
    font-size: calc(26 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .weekday {
    font-size: calc(20 / 1920 * 100vw);
    padding-bottom: calc(2 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .weekday {
    font-size: calc(18 / 720 * 100vw);
    padding-bottom: calc(0 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .weekday {
    margin-right: calc(-5 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .arrow_r {
  -ms-flex-item-align: center;
      align-self: center;
  display: block;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .arrow_r {
    width: calc(14 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .arrow_r {
    width: calc(12 / 720 * 100vw);
    margin-right: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .arrow_r img {
  height: auto;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .arrow_r img {
    width: calc(14 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .date .arrow_r img {
    width: calc(16 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .title {
  line-height: 1.2;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .title {
    font-size: calc(48 / 1920 * 100vw);
    margin-bottom: calc(7 / 1920 * 100vw);
    width: calc(560 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .title {
    font-size: calc(50 / 720 * 100vw);
    margin-bottom: calc(7 / 720 * 100vw);
    width: calc(560 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap {
    padding-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap {
    padding-bottom: calc(10 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ccc2a0;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span {
    font-size: calc(18 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span {
    font-size: calc(18 / 720 * 100vw);
    height: calc(45 / 720 * 100vw);
    border-radius: calc(23 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.age {
    width: calc(237 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.age {
    width: calc(237 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.pax {
    width: calc(282 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.pax {
    width: calc(282 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.information {
    width: calc(530 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.information {
    width: calc(530 / 720 * 100vw);
    gap: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.information span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.information span {
    gap: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.information span {
    gap: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.information span img {
    width: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .iconwrap > span.information span img {
    width: calc(22 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap {
  line-height: 1;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap {
    padding-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap {
    padding-bottom: calc(30 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .price {
  color: #ff9c9e;
  font-family: "Futura-Bk-Bt", sans-serif;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .price {
    font-size: calc(41 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .price {
    font-size: calc(41 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .price .num {
    font-size: calc(60 / 1920 * 100vw);
    margin-left: calc(-10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .price .num {
    font-size: calc(60 / 720 * 100vw);
    margin-left: calc(-10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .price .tax {
  position: absolute;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .price .tax {
    font-size: calc(15 / 1920 * 100vw);
    bottom: calc(-20 / 1920 * 100vw);
    right: calc(-10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .price .tax {
    font-size: calc(15 / 720 * 100vw);
    bottom: calc(-20 / 720 * 100vw);
    right: calc(-10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .separator {
  background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(#ff9c9e), color-stop(#ff9c9e), to(transparent));
  background-image: linear-gradient(to top left, transparent calc(50% - 1 / 1920 * 100vw), #ff9c9e calc(50% - 1 / 1920 * 100vw), #ff9c9e calc(50% + 1 / 1920 * 100vw), transparent calc(50% + 1 / 1920 * 100vw));
  background-repeat: no-repeat;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .separator {
    background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(#ff9c9e), color-stop(#ff9c9e), to(transparent));
    background-image: linear-gradient(to top left, transparent calc(50% - 1 / 720 * 100vw), #ff9c9e calc(50% - 1 / 720 * 100vw), #ff9c9e calc(50% + 1 / 720 * 100vw), transparent calc(50% + 1 / 720 * 100vw));
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .separator {
    width: calc(46 / 1920 * 100vw);
    height: calc(46 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .populartours li .card .textwrap .pricewrap .separator {
    width: calc(50 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li {
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li {
    width: calc(380 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    padding: calc(25 / 1920 * 100vw) calc(25 / 1920 * 100vw) calc(15 / 1920 * 100vw);
    margin-bottom: calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li {
    width: calc(600 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    padding: calc(35 / 720 * 100vw) calc(35 / 720 * 100vw) calc(20 / 720 * 100vw);
    margin-bottom: calc(140 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li.dummy {
  height: 0;
  padding: 0;
  margin-bottom: 0;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap {
    width: calc(330 / 1920 * 100vw);
    height: calc(190 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap {
    width: calc(530 / 720 * 100vw);
    height: calc(330 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap .pointwrap {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none; /* 削除 */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap .pointwrap {
    padding-right: calc(20 / 1920 * 100vw);
    gap: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap .pointwrap {
    padding-right: calc(20 / 720 * 100vw);
    gap: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap .pointwrap p {
  color: #fff;
  background-color: #ccc2a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap .pointwrap p {
    width: calc(183 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    border-bottom-left-radius: calc(10 / 1920 * 100vw);
    border-bottom-right-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .imgwrap .pointwrap p {
    width: calc(183 / 720 * 100vw);
    height: calc(40 / 720 * 100vw);
    border-bottom-left-radius: calc(10 / 720 * 100vw);
    border-bottom-right-radius: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap {
    width: calc(330 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap {
    width: calc(530 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .course {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .course {
    font-size: calc(18 / 1920 * 100vw);
    width: calc(107 / 1920 * 100vw);
    height: calc(27 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .course {
    font-size: calc(18 / 720 * 100vw);
    width: calc(107 / 720 * 100vw);
    height: calc(27 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .course.early {
  background-color: #fe9966;
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .course.alltime {
  background-color: #ffc900;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .letter {
    font-size: calc(18 / 1920 * 100vw);
    width: calc(330 / 1920 * 100vw);
    padding-top: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .letter {
    font-size: calc(24 / 720 * 100vw);
    width: calc(550 / 720 * 100vw);
    padding-top: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date {
  line-height: 1;
  font-family: "Futura-Bk-Bt", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date {
    font-size: calc(22 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date .day {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date .year,
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date .weekday {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date .year,
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date .weekday {
    font-size: calc(22 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date .arrow_r {
  -ms-flex-item-align: center;
      align-self: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date .arrow_r img {
    width: calc(10 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
    margin-left: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .date .arrow_r img {
    width: calc(10 / 720 * 100vw);
    margin-right: calc(10 / 720 * 100vw);
    margin-left: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .title {
  line-height: 1.2;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .title {
    font-size: calc(33 / 1920 * 100vw);
    margin-bottom: calc(6 / 1920 * 100vw);
    width: calc(330 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .title {
    font-size: calc(51 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
    width: calc(540 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap {
    padding-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap {
    padding-bottom: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span {
  color: #716a65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f4e8;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span {
    font-size: calc(12 / 1920 * 100vw);
    height: calc(23 / 1920 * 100vw);
    border-radius: calc(12 / 1920 * 100vw);
    margin-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span {
    font-size: calc(18 / 720 * 100vw);
    height: calc(45 / 720 * 100vw);
    border-radius: calc(23 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.age {
    width: calc(132 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.age {
    width: calc(237 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.pax {
    width: calc(189 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.pax {
    width: calc(282 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.information {
    width: calc(330 / 1920 * 100vw);
    gap: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.information {
    width: calc(530 / 720 * 100vw);
    gap: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.information span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.information span {
    gap: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.information span {
    gap: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.information span img {
    width: calc(14 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .iconwrap > span.information span img {
    width: calc(22 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap {
  line-height: 1;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap {
    padding-bottom: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap {
    padding-bottom: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .price {
  color: #ff9c9e;
  font-family: "Futura-Bk-Bt", sans-serif;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .price {
    font-size: calc(24 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .price {
    font-size: calc(41 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .price .num {
    font-size: calc(36 / 1920 * 100vw);
    margin-left: calc(-10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .price .num {
    font-size: calc(60 / 720 * 100vw);
    margin-left: calc(-10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .price .tax {
  position: absolute;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .price .tax {
    font-size: calc(10 / 1920 * 100vw);
    bottom: calc(-15 / 1920 * 100vw);
    right: calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .price .tax {
    font-size: calc(15 / 720 * 100vw);
    bottom: calc(-15 / 720 * 100vw);
    right: calc(0 / 720 * 100vw);
  }
}
.content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .separator {
  background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(#ff9c9e), color-stop(#ff9c9e), to(transparent));
  background-image: linear-gradient(to top left, transparent calc(50% - 1 / 1920 * 100vw), #ff9c9e calc(50% - 1 / 1920 * 100vw), #ff9c9e calc(50% + 1 / 1920 * 100vw), transparent calc(50% + 1 / 1920 * 100vw));
  background-repeat: no-repeat;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .separator {
    background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(#ff9c9e), color-stop(#ff9c9e), to(transparent));
    background-image: linear-gradient(to top left, transparent calc(50% - 1 / 720 * 100vw), #ff9c9e calc(50% - 1 / 720 * 100vw), #ff9c9e calc(50% + 1 / 720 * 100vw), transparent calc(50% + 1 / 720 * 100vw));
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .separator {
    width: calc(43 / 1920 * 100vw);
    height: calc(43 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .pricewrap .separator {
    width: calc(71 / 720 * 100vw);
    height: calc(71 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistwrap .tourlistarchive .tours li .card .textwrap .btn {
    font-size: calc(22 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
  }
}
.content.tourlist .tourlistbottom {
  color: #fff;
  background-color: #58ccf5;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom {
    background-image: url(../img/tourlist/tourlistbottom_bg.webp);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom {
    padding-bottom: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom {
    padding-bottom: calc(300 / 720 * 100vw);
  }
}
.content.tourlist .tourlistbottom .logo {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom .logo {
    width: calc(486 / 1920 * 100vw);
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom .logo {
    width: calc(600 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
.content.tourlist .tourlistbottom p {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom p {
    width: calc(1000 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom p {
    width: calc(600 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourlistbottom .letter {
  color: #716a65;
  margin: auto;
  background-color: #ffd52d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom .letter {
    font-size: calc(30 / 1920 * 100vw);
    width: calc(1000 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom .letter {
    font-size: calc(30 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
    height: calc(120 / 720 * 100vw);
    border-radius: calc(60 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourlistbottom ul {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom ul {
    width: calc(1000 / 1920 * 100vw);
    margin-top: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom ul {
    width: calc(600 / 720 * 100vw);
    margin-top: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourlistbottom ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid calc(2 / 1920 * 100vw) #9fe1f9;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom ul li {
    padding-bottom: calc(15 / 1920 * 100vw);
    margin-bottom: calc(5 / 1920 * 100vw);
    padding-left: calc(10 / 1920 * 100vw);
    padding-right: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom ul li {
    padding-bottom: calc(15 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
    padding-left: calc(10 / 720 * 100vw);
    padding-right: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourlistbottom ul .head {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom ul .head {
    width: calc(275 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom ul .head {
    width: calc(600 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourlistbottom ul .text {
    width: calc(600 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourlistbottom ul .text {
    width: calc(600 / 720 * 100vw);
  }
}
.content.tourlist .othertour {
  color: #fff;
  background-color: #29e8e3;
}
@media screen and (min-width: 841px) {
  .content.tourlist .othertour {
    padding-bottom: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour {
    padding-bottom: calc(200 / 720 * 100vw);
  }
}
.content.tourlist .othertour .slideshow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: auto;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour .slideshow {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .othertour .slideshow {
    gap: calc(85 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour .slideshow {
    gap: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .othertour .slideshow .swiper-slide {
    -webkit-transform: translate(-80%, 0);
            transform: translate(-80%, 0);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour .slideshow li {
    white-space: wrap;
    margin: auto;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .othertour .slideshow li {
    width: calc(600 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour .slideshow li {
    width: calc(600 / 720 * 100vw);
    margin-bottom: calc(60 / 720 * 100vw);
  }
}
.content.tourlist .othertour .slideshow li a {
  display: block;
}
.content.tourlist .othertour .slideshow li a p {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.tourlist .othertour .slideshow li a p {
    width: calc(600 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour .slideshow li a p {
    width: calc(600 / 720 * 100vw);
  }
}
.content.tourlist .othertour .slideshow li a img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .othertour .slideshow li a img {
    width: calc(600 / 1920 * 100vw);
    height: calc(360 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour .slideshow li a img {
    width: calc(600 / 720 * 100vw);
    height: calc(360 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    margin-bottom: calc(15 / 720 * 100vw);
  }
}
.content.tourlist .othertour .slideshow li a .price {
  font-family: "Zen Kaku Gothic", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  background-color: #ff9c9e;
}
@media screen and (min-width: 841px) {
  .content.tourlist .othertour .slideshow li a .price {
    font-size: calc(40 / 1920 * 100vw);
    width: calc(600 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
    margin-top: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour .slideshow li a .price {
    font-size: calc(32 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
    height: calc(60 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
    margin-top: calc(15 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .othertour .slideshow li a .price .tax {
    font-size: calc(22 / 1920 * 100vw);
    padding-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .othertour .slideshow li a .price .tax {
    font-size: calc(22 / 720 * 100vw);
    padding-bottom: calc(5 / 720 * 100vw);
  }
}
.content.tourlist .tourpost {
  overflow: visible;
}
.content.tourlist .tourpost .headwrap {
  font-family: "Zen Maru Gothic", sans-serif;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap {
    padding-top: calc(60 / 1920 * 100vw);
    padding-bottom: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap {
    padding-top: calc(50 / 720 * 100vw);
    padding-bottom: calc(200 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .bg {
  background-color: #fff;
  position: absolute;
  z-index: 0;
  -webkit-transform: rotate(354deg);
          transform: rotate(354deg);
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .bg {
    width: calc(812 / 1920 * 100vw);
    height: calc(595 / 1920 * 100vw);
    border-radius: calc(40 / 1920 * 100vw);
    left: calc(-50 / 1920 * 100vw);
    top: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .bg {
    width: calc(890 / 720 * 100vw);
    height: calc(1100 / 720 * 100vw);
    border-radius: calc(40 / 720 * 100vw);
    left: calc(-160 / 720 * 100vw);
    top: calc(44 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .course {
  color: #fff;
  text-align: center;
  line-height: 1;
  position: absolute;
  left: 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: bottom center;
  -webkit-transform: rotate(354deg);
          transform: rotate(354deg);
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .course {
    font-size: calc(21 / 1920 * 100vw);
    padding-top: calc(52 / 1920 * 100vw);
    width: calc(174 / 1920 * 100vw);
    height: calc(103 / 1920 * 100vw);
    top: calc(-64 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .course {
    font-size: calc(29 / 720 * 100vw);
    padding-top: calc(72 / 720 * 100vw);
    width: calc(241 / 720 * 100vw);
    height: calc(142 / 720 * 100vw);
    top: calc(-79 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .course.early {
  background-image: url(../img/frontpage/popular_icon_early.webp);
}
.content.tourlist .tourpost .headwrap .course.alltime {
  background-image: url(../img/frontpage/popular_icon_alltime.webp);
}
.content.tourlist .tourpost .headwrap .card {
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card {
    padding-left: calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card {
    padding-left: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap {
    width: calc(504 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap {
    width: calc(600 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap {
    padding-top: calc(500 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .letter {
    font-size: calc(19 / 1920 * 100vw);
    margin-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .letter {
    font-size: calc(24 / 720 * 100vw);
    margin-bottom: calc(5 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .date {
  line-height: 1;
  font-family: "Futura-Bk-Bt", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date {
    font-size: calc(26 / 1920 * 100vw);
    padding-right: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date {
    font-size: calc(26 / 720 * 100vw);
    padding-right: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .year {
    font-size: calc(26 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .year {
    font-size: calc(26 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .weekday {
    font-size: calc(20 / 1920 * 100vw);
    padding-bottom: calc(2 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .weekday {
    font-size: calc(18 / 720 * 100vw);
    padding-bottom: calc(0 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .weekday {
    margin-right: calc(-5 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .date .arrow_r {
  -ms-flex-item-align: center;
      align-self: center;
  display: block;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .arrow_r {
    width: calc(14 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .arrow_r {
    width: calc(12 / 720 * 100vw);
    margin-right: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .arrow_r img {
    width: calc(16 / 1920 * 100vw);
    margin-right: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .date .arrow_r img {
    width: calc(16 / 720 * 100vw);
    margin-right: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .title {
  line-height: 1.2;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .title {
    font-size: calc(48 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
    margin-top: calc(5 / 1920 * 100vw);
    width: calc(504 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .title {
    font-size: calc(50 / 720 * 100vw);
    padding-right: calc(0 / 720 * 100vw);
    margin-top: calc(5 / 720 * 100vw);
    margin-bottom: calc(15 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .iconwrap {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 100%;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap {
    padding-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap {
    padding-bottom: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ccc2a0;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span {
    font-size: calc(18 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span {
    font-size: calc(18 / 720 * 100vw);
    height: calc(45 / 720 * 100vw);
    border-radius: calc(23 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.age {
    width: calc(204 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.age {
    width: calc(267 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.pax {
    width: calc(289 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.pax {
    width: calc(318 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.information {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.information {
    width: calc(504 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.information {
    width: calc(600 / 720 * 100vw);
    gap: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.information span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.information span {
    gap: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.information span {
    gap: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.information span img {
    width: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .iconwrap > span.information span img {
    width: calc(22 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .pricewrap {
  line-height: 1;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap {
    padding-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap {
    padding-bottom: calc(30 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .price {
  color: #ff9c9e;
  font-family: "Futura-Bk-Bt", sans-serif;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .price {
    font-size: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .price {
    font-size: calc(41 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .price .num {
    font-size: calc(60 / 1920 * 100vw);
    margin-left: calc(-5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .price .num {
    font-size: calc(60 / 720 * 100vw);
    margin-left: calc(-5 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .price .tax {
  position: absolute;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .price .tax {
    font-size: calc(18 / 1920 * 100vw);
    bottom: calc(-20 / 1920 * 100vw);
    right: calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .price .tax {
    font-size: calc(15 / 720 * 100vw);
    bottom: calc(-20 / 720 * 100vw);
    right: calc(0 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .separator {
  background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(#ff9c9e), color-stop(#ff9c9e), to(transparent));
  background-image: linear-gradient(to top left, transparent calc(50% - 1 / 1920 * 100vw), #ff9c9e calc(50% - 1 / 1920 * 100vw), #ff9c9e calc(50% + 1 / 1920 * 100vw), transparent calc(50% + 1 / 1920 * 100vw));
  background-repeat: no-repeat;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .separator {
    background-image: -webkit-gradient(linear, right bottom, left top, from(transparent), color-stop(#ff9c9e), color-stop(#ff9c9e), to(transparent));
    background-image: linear-gradient(to top left, transparent calc(50% - 1 / 720 * 100vw), #ff9c9e calc(50% - 1 / 720 * 100vw), #ff9c9e calc(50% + 1 / 720 * 100vw), transparent calc(50% + 1 / 720 * 100vw));
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .separator {
    width: calc(50 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    margin-left: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .textwrap .pricewrap .separator {
    width: calc(50 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    margin-left: calc(5 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .imgwrap {
  overflow: visible;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .imgwrap {
    width: calc(665 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .imgwrap {
    width: calc(600 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .imgwrap > div {
  position: absolute;
  overflow: hidden;
}
.content.tourlist .tourpost .headwrap .card .imgwrap > div img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content.tourlist .tourpost .headwrap .card .imgwrap > div.sub1wrap {
  -webkit-transform: rotate(340deg);
          transform: rotate(340deg);
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .imgwrap > div.sub1wrap {
    width: calc(253 / 1920 * 100vw);
    height: calc(166 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
    top: calc(-105 / 1920 * 100vw);
    left: calc(66 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .imgwrap > div.sub1wrap {
    width: calc(156 / 720 * 100vw);
    height: calc(103 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    top: calc(-50 / 720 * 100vw);
    left: calc(205 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .imgwrap > div.sub2wrap {
  -webkit-transform: rotate(19deg);
          transform: rotate(19deg);
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .imgwrap > div.sub2wrap {
    width: calc(305 / 1920 * 100vw);
    height: calc(200 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
    top: calc(-90 / 1920 * 100vw);
    right: calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .imgwrap > div.sub2wrap {
    width: calc(213 / 720 * 100vw);
    height: calc(140 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    top: calc(-60 / 720 * 100vw);
    right: calc(-5 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .imgwrap > div.mainwrap {
  -webkit-transform: rotate(11deg);
          transform: rotate(11deg);
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .imgwrap > div.mainwrap {
    width: calc(595 / 1920 * 100vw);
    height: calc(390 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
    top: calc(155 / 1920 * 100vw);
    right: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .imgwrap > div.mainwrap {
    width: calc(560 / 720 * 100vw);
    height: calc(340 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    top: calc(100 / 720 * 100vw);
    left: calc(30 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .imgwrap .pointwrap {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none; /* 削除 */
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .imgwrap .pointwrap {
    padding-right: calc(20 / 1920 * 100vw);
    gap: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .imgwrap .pointwrap {
    padding-right: calc(20 / 720 * 100vw);
    gap: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .headwrap .card .imgwrap .pointwrap p {
  color: #fff;
  background-color: #ccc2a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .headwrap .card .imgwrap .pointwrap p {
    width: calc(183 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    border-bottom-left-radius: calc(10 / 1920 * 100vw);
    border-bottom-right-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .headwrap .card .imgwrap .pointwrap p {
    width: calc(183 / 720 * 100vw);
    height: calc(40 / 720 * 100vw);
    border-bottom-left-radius: calc(10 / 720 * 100vw);
    border-bottom-right-radius: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .detail_letter {
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .detail_letter {
    text-align: justify;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .detail_letter {
    font-size: calc(30 / 1920 * 100vw);
    padding-bottom: calc(112 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .detail_letter {
    font-size: calc(30 / 720 * 100vw);
    padding-bottom: calc(112 / 720 * 100vw);
    padding-top: calc(150 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .swiper-subimage {
  overflow: visible;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .swiper-subimage {
    height: calc(480 / 1920 * 100vw);
    margin: calc(120 / 1920 * 100vw) calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .swiper-subimage {
    height: calc(360 / 720 * 100vw);
    margin: calc(60 / 720 * 100vw) calc(0 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .swiper-subimage .swiper-button-next,
.content.tourlist .tourpost .swiper-subimage .swiper-button-prev {
  background-image: url(../img/swiper_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .swiper-subimage .swiper-button-next,
  .content.tourlist .tourpost .swiper-subimage .swiper-button-prev {
    width: calc(55 / 1920 * 100vw);
    height: calc(55 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .swiper-subimage .swiper-button-next,
  .content.tourlist .tourpost .swiper-subimage .swiper-button-prev {
    width: calc(55 / 720 * 100vw);
    height: calc(55 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .swiper-subimage .swiper-button-next::after,
.content.tourlist .tourpost .swiper-subimage .swiper-button-prev::after {
  content: "" !important;
}
.content.tourlist .tourpost .swiper-subimage .swiper-button-next {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .swiper-subimage .swiper-button-next {
    right: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .swiper-subimage .swiper-button-next {
    right: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .swiper-subimage .swiper-button-prev {
    left: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .swiper-subimage .swiper-button-prev {
    left: calc(0 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .swiper-subimage .swiper-slide {
  opacity: 0;
  overflow: hidden;
  -webkit-transition: 0.7s;
  transition: 0.7s;
  z-index: 0;
  overflow: hidden;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .swiper-subimage .swiper-slide {
    width: calc(530 / 1920 * 100vw);
    height: calc(320 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
    margin-top: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .swiper-subimage .swiper-slide {
    width: calc(430 / 720 * 100vw);
    height: calc(240 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
    margin-top: calc(80 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .swiper-subimage .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.content.tourlist .tourpost .swiper-subimage .swiper-slide-active,
.content.tourlist .tourpost .swiper-subimage .swiper-slide-next,
.content.tourlist .tourpost .swiper-subimage .swiper-slide-prev {
  opacity: 1;
  pointer-events: auto;
}
.content.tourlist .tourpost .swiper-subimage .swiper-slide-active {
  opacity: 1;
  z-index: 1;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost .swiper-subimage .swiper-slide-active {
    width: calc(760 / 1920 * 100vw);
    height: calc(480 / 1920 * 100vw);
    margin-top: calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .swiper-subimage .swiper-slide-active {
    width: calc(560 / 720 * 100vw);
    height: calc(340 / 720 * 100vw);
    margin-top: calc(0 / 720 * 100vw);
  }
}
.content.tourlist .tourpost .swiper-subimage .swiper-slide-next {
  -webkit-transform: translateX(calc(-400 / 1920 * 100vw));
          transform: translateX(calc(-400 / 1920 * 100vw));
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .swiper-subimage .swiper-slide-next {
    -webkit-transform: translate(calc(-234 / 720 * 100vw), calc(-20 / 720 * 100vw));
            transform: translate(calc(-234 / 720 * 100vw), calc(-20 / 720 * 100vw));
  }
}
.content.tourlist .tourpost .swiper-subimage .swiper-slide-prev {
  -webkit-transform: translateX(calc(400 / 1920 * 100vw));
          transform: translateX(calc(400 / 1920 * 100vw));
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost .swiper-subimage .swiper-slide-prev {
    -webkit-transform: translate(calc(234 / 720 * 100vw), calc(-20 / 720 * 100vw));
            transform: translate(calc(234 / 720 * 100vw), calc(-20 / 720 * 100vw));
  }
}
.content.tourlist .tourpost #review {
  color: #fff;
}
.content.tourlist .tourpost #review .reviewwrap {
  width: 100%;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost #review .reviewwrap {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost #review .reviewwrap {
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost #review .reviewwrap > div .ratinghead {
    font-size: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost #review .reviewwrap > div .ratinghead {
    font-size: calc(60 / 720 * 100vw);
  }
}
.content.tourlist .tourpost #review .reviewwrap > div .star {
  font-family: "Futura-Bk-Bt", sans-serif;
  color: #fdd53f;
  line-height: 0.8;
  letter-spacing: 0.2em;
  display: block;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost #review .reviewwrap > div .star {
    font-size: calc(30 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost #review .reviewwrap > div .star {
    font-size: calc(30 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourpost #review .reviewwrap > div .rating {
  color: #fdd53f;
  letter-spacing: 0.2em;
}
.content.tourlist .tourpost #review .reviewwrap > div .rating .time {
  color: #fff;
  letter-spacing: 0;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost #review .reviewwrap > div .rating .time {
    padding-left: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost #review .reviewwrap > div .rating .time {
    padding-left: calc(10 / 720 * 100vw);
  }
}
.content.tourlist .tourpost #review .reviewwrap > div .auther {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost #review .reviewwrap > div .auther {
    font-size: calc(30 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost #review .reviewwrap > div .auther {
    font-size: calc(30 / 720 * 100vw);
    gap: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourpost #review .reviewwrap > div .auther .imgwrap {
  display: inline-block;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost #review .reviewwrap > div .auther .imgwrap {
    width: calc(68 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost #review .reviewwrap > div .auther .imgwrap {
    width: calc(68 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost #review .reviewwrap > div .auther .time {
    font-size: calc(24 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost #review .reviewwrap > div .auther .time {
    font-size: calc(20 / 720 * 100vw);
  }
}
.content.tourlist .tourpost #review .reviewwrap > div .text {
  text-align: justify;
}
.content.tourlist .tourpost #review .reviewtext {
  text-align: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist .tourpost #review .reviewtext {
    padding-bottom: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist .tourpost #review .reviewtext {
    padding-bottom: calc(100 / 720 * 100vw);
  }
}
.content.tourlist .tourpost #review .linkwrap {
  text-align: right;
}
.content.tourlist .tourpost #review .linkwrap a {
  text-decoration: underline;
}
.content.tourlist #outline {
  background-color: #f5f4e8;
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline {
    padding-bottom: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline {
    padding-bottom: calc(200 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist {
    margin-top: calc(60 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist {
    margin-top: calc(60 / 720 * 100vw);
  }
}
.content.tourlist #outline .outlinelist li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid calc(2 / 1920 * 100vw) #fff;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li {
    padding-left: calc(10 / 1920 * 100vw);
    padding-right: calc(10 / 1920 * 100vw);
    padding-bottom: calc(15 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li {
    padding-left: calc(10 / 720 * 100vw);
    padding-right: calc(10 / 720 * 100vw);
    padding-bottom: calc(15 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.tourlist #outline .outlinelist li .head {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li .head {
    width: calc(390 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li .head {
    width: calc(600 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li .text {
    width: calc(840 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li .text {
    width: calc(600 / 720 * 100vw);
  }
}
.content.tourlist #outline .outlinelist li .text .mapbtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li .text .mapbtn {
    position: absolute;
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li .text .mapbtn {
    margin-right: 0;
    margin-left: auto;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li .text .mapbtn {
    width: calc(132 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(25 / 1920 * 100vw);
    padding-left: calc(15 / 1920 * 100vw);
    top: calc(-10 / 1920 * 100vw);
    right: calc(140 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li .text .mapbtn {
    width: calc(150 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    border-radius: calc(25 / 720 * 100vw);
    padding-left: calc(15 / 720 * 100vw);
  }
}
.content.tourlist #outline .outlinelist li .text .mapbtn::after {
  content: "";
  display: block;
  background-image: url(../img/arrow_tr_bw.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li .text .mapbtn::after {
    width: calc(15 / 1920 * 100vw);
    right: calc(17 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li .text .mapbtn::after {
    width: calc(15 / 720 * 100vw);
    right: calc(17 / 720 * 100vw);
  }
}
.content.tourlist #outline .outlinelist li .text .attention {
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #ff9c9e;
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li .text .attention {
    width: calc(330 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(25 / 1920 * 100vw);
    padding-left: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li .text .attention {
    width: calc(600 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    border-radius: calc(25 / 720 * 100vw);
    padding-left: calc(25 / 720 * 100vw);
  }
}
.content.tourlist #outline .outlinelist li .text .attention:hover {
  cursor: pointer;
  opacity: 0.7;
}
.content.tourlist #outline .outlinelist li .text .attention::after {
  content: "";
  display: block;
  background-image: url(../img/btn_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li .text .attention::after {
    width: calc(15 / 1920 * 100vw);
    right: calc(17 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li .text .attention::after {
    width: calc(15 / 720 * 100vw);
    right: calc(17 / 720 * 100vw);
  }
}
.content.tourlist #outline .outlinelist li .text .focus {
  display: inline-block;
  border: solid calc(1 / 1920 * 100vw) #ff589b;
}
@media screen and (min-width: 841px) {
  .content.tourlist #outline .outlinelist li .text .focus {
    padding: calc(2 / 1920 * 100vw) calc(5 / 1920 * 100vw);
    margin-top: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #outline .outlinelist li .text .focus {
    padding: calc(5 / 720 * 100vw);
    margin-top: calc(5 / 720 * 100vw);
  }
}
.content.tourlist #schedulewrap {
  color: #fff;
  background-color: #29e8e3;
}
@media screen and (min-width: 841px) {
  .content.tourlist #schedulewrap {
    padding-bottom: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #schedulewrap {
    padding-bottom: calc(200 / 720 * 100vw);
  }
}
.content.tourlist #schedulewrap .schedule {
  margin: auto;
}
.content.tourlist #schedulewrap .schedule > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #schedulewrap .schedule > li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #schedulewrap .schedule > li {
    margin-bottom: calc(145 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #schedulewrap .schedule > li {
    margin-bottom: calc(220 / 720 * 100vw);
  }
}
.content.tourlist #schedulewrap .schedule > li .time {
  border: solid calc(5 / 1920 * 100vw) #fff;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #schedulewrap .schedule > li .time {
    border: solid calc(3 / 720 * 100vw) #fff;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #schedulewrap .schedule > li .time {
    font-size: calc(40 / 1920 * 100vw);
    width: calc(200 / 1920 * 100vw);
    height: calc(200 / 1920 * 100vw);
    margin-right: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #schedulewrap .schedule > li .time {
    font-size: calc(40 / 720 * 100vw);
    width: calc(200 / 720 * 100vw);
    height: calc(200 / 720 * 100vw);
    margin-right: calc(0 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #schedulewrap .schedule > li .time::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/tourlist/schedule_dotline.webp);
    background-repeat: repeat;
    background-position: top left;
    background-size: contain;
    margin: auto;
    left: 0;
    right: 0;
    width: calc(10 / 1920 * 100vw);
    height: calc(138 / 1920 * 100vw);
    bottom: calc(-150 / 1920 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #schedulewrap .schedule > li .agenda {
    width: calc(400 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #schedulewrap .schedule > li .agenda::after {
    content: "";
    display: block;
    position: absolute;
    background-image: url(../img/tourlist/schedule_dotline.webp);
    background-repeat: repeat;
    background-position: top left;
    background-size: contain;
    margin: auto;
    left: 0;
    right: 0;
    width: calc(10 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    bottom: calc(-160 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #schedulewrap .schedule > li .agenda li {
    padding-left: calc(40 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #schedulewrap .schedule > li .agenda li {
    padding-left: calc(40 / 720 * 100vw);
    margin-bottom: calc(5 / 720 * 100vw);
  }
}
.content.tourlist #schedulewrap .schedule > li .agenda li:before {
  content: "";
  display: block;
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.tourlist #schedulewrap .schedule > li .agenda li:before {
    width: calc(28 / 1920 * 100vw);
    height: calc(28 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #schedulewrap .schedule > li .agenda li:before {
    width: calc(28 / 720 * 100vw);
    height: calc(28 / 720 * 100vw);
  }
}
.content.tourlist #schedulewrap .schedule > li:last-child .time::after, .content.tourlist #schedulewrap .schedule > li:last-child .agenda::after {
  display: none;
}
.content.tourlist #strongpointwrap {
  color: #fff;
  background-color: #58ccf5;
}
@media screen and (min-width: 841px) {
  .content.tourlist #strongpointwrap {
    background-image: url(../img/tourlist/strongpoint_bg.webp);
    background-position: top center;
    background-size: contain;
    background-repeat: no-repeat;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #strongpointwrap {
    padding-bottom: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #strongpointwrap {
    padding-bottom: calc(200 / 720 * 100vw);
  }
}
.content.tourlist #strongpointwrap .strongpoint {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #strongpointwrap .strongpoint {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #strongpointwrap .strongpoint {
    padding-top: calc(168 / 1920 * 100vw);
    padding-bottom: calc(168 / 1920 * 100vw);
    gap: calc(13 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #strongpointwrap .strongpoint {
    padding-top: calc(168 / 720 * 100vw);
    padding-bottom: calc(168 / 720 * 100vw);
    gap: calc(40 / 720 * 100vw);
  }
}
.content.tourlist #strongpointwrap .strongpoint li {
  color: #57c2e9;
  text-align: center;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist #strongpointwrap .strongpoint li {
    width: calc(240 / 1920 * 100vw);
    height: calc(240 / 1920 * 100vw);
    border-radius: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #strongpointwrap .strongpoint li {
    width: calc(280 / 720 * 100vw);
    height: calc(280 / 720 * 100vw);
    border-radius: calc(140 / 720 * 100vw);
  }
}
.content.tourlist #featurewrap {
  color: #fff;
  background-color: #65e2b4;
}
@media screen and (min-width: 841px) {
  .content.tourlist #featurewrap {
    padding-bottom: calc(280 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #featurewrap {
    padding-bottom: calc(280 / 720 * 100vw);
  }
}
.content.tourlist #featurewrap .feature li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid calc(2 / 1920 * 100vw) #fff;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #featurewrap .feature li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    border-bottom: solid calc(2 / 720 * 100vw) #fff;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #featurewrap .feature li {
    padding-bottom: calc(20 / 1920 * 100vw);
    padding-left: calc(5 / 1920 * 100vw);
    padding-right: calc(5 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #featurewrap .feature li {
    padding-bottom: calc(20 / 720 * 100vw);
    padding-left: calc(5 / 720 * 100vw);
    padding-right: calc(5 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.tourlist #featurewrap .feature li .head {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.tourlist #featurewrap .feature li .head {
    width: calc(290 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #featurewrap .feature li .head {
    width: calc(600 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #featurewrap .feature li .text {
    width: calc(980 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #featurewrap .feature li .text {
    width: calc(600 / 720 * 100vw);
  }
}
.content.tourlist #availabilitywrap {
  color: #fff;
  background-color: #29e8e3;
}
@media screen and (min-width: 841px) {
  .content.tourlist #availabilitywrap {
    padding-bottom: calc(250 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #availabilitywrap {
    padding-bottom: calc(250 / 720 * 100vw);
  }
}
.content.tourlist #availabilitywrap .calendar {
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.tourlist #availabilitywrap .calendar {
    width: calc(608 / 1920 * 100vw);
    padding: calc(13 / 1920 * 100vw) calc(17 / 1920 * 100vw) calc(28 / 1920 * 100vw);
    border-radius: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #availabilitywrap .calendar {
    width: calc(608 / 720 * 100vw);
    padding: calc(13 / 720 * 100vw) calc(17 / 720 * 100vw) calc(28 / 720 * 100vw);
    border-radius: calc(15 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
.content.tourlist #availabilitywrap .calendar .date {
  color: #595757;
  text-align: center;
}
@media screen and (min-width: 841px) {
  .content.tourlist #availabilitywrap .calendar .date {
    font-size: calc(32 / 1920 * 100vw);
    margin-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #availabilitywrap .calendar .date {
    font-size: calc(32 / 720 * 100vw);
    margin-bottom: calc(5 / 720 * 100vw);
  }
}
.content.tourlist #availabilitywrap .calendar .weekday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.content.tourlist #availabilitywrap .calendar .weekday span {
  color: #716a65;
  line-height: 1;
  background-color: #ffdc50;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (min-width: 841px) {
  .content.tourlist #availabilitywrap .calendar .weekday span {
    font-size: calc(17 / 1920 * 100vw);
    width: calc(75 / 1920 * 100vw);
    height: calc(21 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #availabilitywrap .calendar .weekday span {
    font-size: calc(17 / 720 * 100vw);
    width: calc(75 / 720 * 100vw);
    height: calc(21 / 720 * 100vw);
  }
}
.content.tourlist #availabilitywrap .calendar .weekday span:first-child {
  color: #f5797a;
}
.content.tourlist #availabilitywrap .calendar .weekday span:last-child {
  color: #57c2e9;
}
.content.tourlist #availabilitywrap .calendar .day {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.content.tourlist #availabilitywrap .calendar .day a,
.content.tourlist #availabilitywrap .calendar .day span {
  color: #595757;
  text-align: center;
  background-color: #f5f4e8;
  display: block;
}
@media screen and (min-width: 841px) {
  .content.tourlist #availabilitywrap .calendar .day a,
  .content.tourlist #availabilitywrap .calendar .day span {
    padding-top: calc(5 / 1920 * 100vw);
    width: calc(75 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
    margin-top: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #availabilitywrap .calendar .day a,
  .content.tourlist #availabilitywrap .calendar .day span {
    padding-top: calc(5 / 720 * 100vw);
    width: calc(75 / 720 * 100vw);
    height: calc(80 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    margin-top: calc(10 / 720 * 100vw);
  }
}
.content.tourlist #availabilitywrap .calendar .day a:nth-child(7n+1),
.content.tourlist #availabilitywrap .calendar .day span:nth-child(7n+1) {
  color: #f5797a;
}
.content.tourlist #availabilitywrap .calendar .day a:nth-child(7n),
.content.tourlist #availabilitywrap .calendar .day span:nth-child(7n) {
  color: #57c2e9;
}
.content.tourlist #availabilitywrap .calendar .day span,
.content.tourlist #availabilitywrap .calendar .day .afew {
  background-color: #e1dbcc;
}
.content.tourlist #availabilitywrap .calendar .day span::after,
.content.tourlist #availabilitywrap .calendar .day .afew::after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #595757;
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.tourlist #availabilitywrap .calendar .day span::after,
  .content.tourlist #availabilitywrap .calendar .day .afew::after {
    font-size: calc(24 / 1920 * 100vw);
    padding-top: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #availabilitywrap .calendar .day span::after,
  .content.tourlist #availabilitywrap .calendar .day .afew::after {
    font-size: calc(24 / 720 * 100vw);
    padding-top: calc(30 / 720 * 100vw);
  }
}
.content.tourlist #availabilitywrap .calendar .day span.reserved::after,
.content.tourlist #availabilitywrap .calendar .day .afew.reserved::after {
  content: "×";
}
.content.tourlist #availabilitywrap .calendar .day a.afew {
  color: #595757;
  text-align: center;
  background-color: #f5f4e8;
}
.content.tourlist #availabilitywrap .calendar .day a::after {
  content: "〇";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  color: #595757;
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.tourlist #availabilitywrap .calendar .day a::after {
    font-size: calc(24 / 1920 * 100vw);
    padding-top: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #availabilitywrap .calendar .day a::after {
    font-size: calc(24 / 720 * 100vw);
    padding-top: calc(30 / 720 * 100vw);
  }
}
.content.tourlist #availabilitywrap .calendar .day a.afew::after {
  content: "△";
}
.content.tourlist #availabilitywrap .calendar .day a:hover {
  background-color: #e1dbcc;
}
@media screen and (min-width: 841px) {
  .content.tourlist #availabilitywrap .text {
    margin-top: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #availabilitywrap .text {
    margin-top: calc(20 / 720 * 100vw);
  }
}
.content.tourlist #paymentwrap {
  color: #fff;
  background-color: #65e2b4;
}
@media screen and (min-width: 841px) {
  .content.tourlist #paymentwrap {
    padding-bottom: calc(280 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #paymentwrap {
    padding-bottom: calc(280 / 720 * 100vw);
  }
}
.content.tourlist #paymentwrap .table {
  border: solid calc(3 / 1920 * 100vw) #fff;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #paymentwrap .table {
    border: solid calc(3 / 720 * 100vw) #fff;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #paymentwrap .table {
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #paymentwrap .table {
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.tourlist #paymentwrap .table li {
  border-bottom: solid calc(3 / 1920 * 100vw) #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content.tourlist #paymentwrap .table li:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #paymentwrap .table li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.content.tourlist #paymentwrap .table li span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #paymentwrap .table li span {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    text-align: center;
  }
}
.content.tourlist #paymentwrap .table li .head {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.tourlist #paymentwrap .table li .head {
    border-right: solid calc(3 / 1920 * 100vw) #fff;
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #paymentwrap .table li .head {
    border-bottom: solid calc(3 / 720 * 100vw) #fff;
    background-color: #fff;
    color: #65e2b4;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #paymentwrap .table li .head {
    width: calc(300 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    padding-left: calc(34 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #paymentwrap .table li .head {
    width: calc(600 / 720 * 100vw);
    height: calc(60 / 720 * 100vw);
    padding-left: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #paymentwrap .table li .text {
    width: calc(980 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    padding-left: calc(65 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #paymentwrap .table li .text {
    width: calc(600 / 720 * 100vw);
    height: calc(60 / 720 * 100vw);
    padding-left: calc(0 / 720 * 100vw);
  }
}
.content.tourlist #detailwrap {
  background-color: #f5f4e8;
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap {
    padding-bottom: calc(280 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap {
    padding-bottom: calc(280 / 720 * 100vw);
  }
}
.content.tourlist #detailwrap .inner {
  overflow: visible;
}
.content.tourlist #detailwrap .tabwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: calc(20 / 1920 * 100vw);
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .tabwrap {
    display: none;
  }
}
.content.tourlist #detailwrap .tabwrap li {
  color: #fff;
  background-color: #73e9e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap .tabwrap li {
    width: calc(420 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    border-top-right-radius: calc(10 / 1920 * 100vw);
    border-top-left-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .tabwrap li {
    font-size: calc(40 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
.content.tourlist #detailwrap .tabwrap li:hover {
  cursor: pointer;
  background-color: #22dcd7;
}
.content.tourlist #detailwrap .tabwrap li.active {
  background-color: #22dcd7;
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap .tabwrap li.active {
    height: calc(80 / 1920 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap .detailtable > li {
    display: none;
  }
}
.content.tourlist #detailwrap .detailtable > li.is-show {
  display: block;
}
.content.tourlist #detailwrap .detailtable > li .tab {
  display: none;
  color: #fff;
  background-color: #73e9e6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap .detailtable > li .tab {
    width: calc(420 / 1920 * 100vw);
    height: calc(60 / 1920 * 100vw);
    border-top-right-radius: calc(10 / 1920 * 100vw);
    border-top-left-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .detailtable > li .tab {
    font-size: calc(40 / 720 * 100vw);
    width: calc(600 / 720 * 100vw);
    height: calc(100 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
    padding-left: calc(35 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
.content.tourlist #detailwrap .detailtable > li .tab.active::after {
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.content.tourlist #detailwrap .detailtable > li .tab::after {
  content: "";
  background-image: url(../img/btn_arrow.webp);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap .detailtable > li .tab::after {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
    right: calc(17 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .detailtable > li .tab::after {
    width: calc(48 / 720 * 100vw);
    height: calc(48 / 720 * 100vw);
    right: calc(18 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .detailtable > li ul {
    display: none;
  }
}
.content.tourlist #detailwrap .detailtable > li ul li {
  border-bottom: solid calc(3 / 1920 * 100vw) #d9d8c8;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .detailtable > li ul li {
    text-align: justify;
    border-bottom: solid calc(3 / 720 * 100vw) #d9d8c8;
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap .detailtable > li ul li {
    padding-right: calc(140 / 1920 * 100vw);
    padding-bottom: calc(25 / 1920 * 100vw);
    padding-left: calc(140 / 1920 * 100vw);
    margin-bottom: calc(45 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .detailtable > li ul li {
    padding-right: calc(10 / 720 * 100vw);
    padding-bottom: calc(45 / 720 * 100vw);
    padding-left: calc(10 / 720 * 100vw);
    margin-bottom: calc(45 / 720 * 100vw);
  }
}
.content.tourlist #detailwrap .detailtable > li ul li.head {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap .detailtable > li ul li.head {
    font-size: calc(30 / 1920 * 100vw);
    padding-top: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .detailtable > li ul li.head {
    font-size: calc(40 / 720 * 100vw);
    padding-top: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.tourlist #detailwrap .detailtable > li ul li:first-child {
    padding-top: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.tourlist #detailwrap .detailtable > li ul li:first-child {
    padding-top: calc(20 / 720 * 100vw);
  }
}
.content.tourlist #detailwrap .detailtable > li ul li .head {
  font-weight: 700;
}
.content.tourlist #detailwrap .detailtable > li ul li iframe {
  width: 100%;
  display: block;
}

.content.faq .faqwrap {
  background-color: #38eae5;
}
.content.faq .faqwrap .faq_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.faq .faqwrap .faq_icon {
    width: calc(239 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.faq .faqwrap .faq_icon {
    width: calc(239 / 720 * 100vw);
  }
}
.content.faq .faqwrap .faq_inner {
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.faq .faqwrap .faq_inner {
    padding: calc(80 / 1920 * 100vw) calc(35 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.faq .faqwrap .faq_inner {
    padding: calc(80 / 720 * 100vw) calc(35 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
  }
}
.content.faq .faqwrap .faq_inner .question {
  width: 100%;
  background-color: #f5f4e8;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 841px) {
  .content.faq .faqwrap .faq_inner .question {
    font-size: calc(26 / 1920 * 100vw);
    padding: calc(14 / 1920 * 100vw) calc(105 / 1920 * 100vw);
    margin-bottom: calc(36 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.faq .faqwrap .faq_inner .question {
    font-size: calc(28 / 720 * 100vw);
    padding: calc(14 / 720 * 100vw) calc(105 / 720 * 100vw);
    margin-bottom: calc(36 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
.content.faq .faqwrap .faq_inner .question .number {
  color: #2dd2ce;
  position: absolute;
  line-height: 1;
}
@media screen and (min-width: 841px) {
  .content.faq .faqwrap .faq_inner .question .number {
    font-size: calc(30 / 1920 * 100vw);
    margin-right: calc(25 / 1920 * 100vw);
    top: calc(5 / 1920 * 100vw);
    left: calc(-90 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.faq .faqwrap .faq_inner .question .number {
    font-size: calc(30 / 720 * 100vw);
    margin-right: calc(25 / 720 * 100vw);
    top: calc(5 / 720 * 100vw);
    left: calc(-90 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.faq .faqwrap .faq_inner .answer {
    font-size: calc(26 / 1920 * 100vw);
    padding: calc(0 / 1920 * 100vw) calc(105 / 1920 * 100vw);
    margin-bottom: calc(36 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.faq .faqwrap .faq_inner .answer {
    font-size: calc(28 / 720 * 100vw);
    padding: calc(0 / 720 * 100vw) calc(105 / 720 * 100vw);
    margin-bottom: calc(36 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
.content.faq .faqwrap .faq_inner .answer .number {
  color: #2dd2ce;
  position: absolute;
  line-height: 1;
}
@media screen and (min-width: 841px) {
  .content.faq .faqwrap .faq_inner .answer .number {
    font-size: calc(30 / 1920 * 100vw);
    margin-right: calc(25 / 1920 * 100vw);
    top: calc(5 / 1920 * 100vw);
    left: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.faq .faqwrap .faq_inner .answer .number {
    font-size: calc(30 / 720 * 100vw);
    margin-right: calc(25 / 720 * 100vw);
    top: calc(5 / 720 * 100vw);
    left: calc(20 / 720 * 100vw);
  }
}

.content.staff .staffwrap {
  background-color: #38eae5;
}
.content.staff .staffwrap .staff_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.staff .staffwrap .staff_icon {
    width: calc(216 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .staff_icon {
    width: calc(216 / 720 * 100vw);
  }
}
.content.staff .staffwrap .staff_inner {
  overflow: visible;
}
.content.staff .staffwrap .wrap_wh {
  text-align: center;
  background-color: #fff;
  background-image: url(../img/frontpage/staff_bg.webp);
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
  overflow: visible;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh {
    background-image: none;
  }
}
@media screen and (min-width: 841px) {
  .content.staff .staffwrap .wrap_wh {
    border-radius: calc(30 / 1920 * 100vw);
    padding-top: calc(160 / 1920 * 100vw);
    padding-bottom: calc(180 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh {
    border-radius: calc(30 / 720 * 100vw);
    padding: calc(56 / 720 * 100vw) calc(0 / 720 * 100vw) calc(100 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh .bg {
    width: calc(720 / 720 * 100vw);
    max-width: calc(720 / 720 * 100vw);
    position: absolute;
    top: calc(100 / 720 * 100vw);
    left: calc(-60 / 720 * 100vw);
    z-index: 0;
  }
}
.content.staff .staffwrap .wrap_wh .pic {
  margin: auto;
  -webkit-transform: translateX(calc(20 / 1920 * 100vw));
          transform: translateX(calc(20 / 1920 * 100vw));
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh .pic {
    -webkit-transform: translateX(calc(10 / 720 * 100vw));
            transform: translateX(calc(10 / 720 * 100vw));
  }
}
@media screen and (min-width: 841px) {
  .content.staff .staffwrap .wrap_wh .pic {
    width: calc(820 / 1920 * 100vw);
    margin-bottom: calc(143 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh .pic {
    width: calc(526 / 720 * 100vw);
    margin-bottom: calc(50 / 720 * 100vw);
    margin-left: calc(26 / 720 * 100vw);
    margin-right: calc(0 / 720 * 100vw);
  }
}
.content.staff .staffwrap .wrap_wh h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
  line-height: 1.2;
  margin-top: 0;
}
@media screen and (min-width: 841px) {
  .content.staff .staffwrap .wrap_wh h3 {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(43 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh h3 {
    font-size: calc(40 / 720 * 100vw);
    margin-bottom: calc(43 / 720 * 100vw);
  }
}
.content.staff .staffwrap .wrap_wh h3 .jp {
  display: block;
  font-family: "Zen Kaku Gothic", sans-serif;
  font-weight: 500;
}
@media screen and (min-width: 841px) {
  .content.staff .staffwrap .wrap_wh h3 .jp {
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh h3 .jp {
    font-size: calc(22 / 720 * 100vw);
  }
}
.content.staff .staffwrap .wrap_wh p {
  line-height: 2.2;
}
@media screen and (min-width: 841px) {
  .content.staff .staffwrap .wrap_wh .margin {
    margin-top: calc(40 / 1920 * 100vw);
    margin-bottom: calc(120 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh .margin {
    margin-top: calc(40 / 720 * 100vw);
    margin-bottom: calc(120 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.staff .staffwrap .wrap_wh .margintop {
    margin-top: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh .margintop {
    margin-top: calc(40 / 720 * 100vw);
  }
}
.content.staff .staffwrap .wrap_wh .staffimg {
  position: absolute;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .staffwrap .wrap_wh .staffimg {
    display: none;
  }
}
.content.staff .staffwrap .wrap_wh .staffimg.img01 {
  top: calc(672 / 1920 * 100vw);
  left: calc(-362 / 1920 * 100vw);
  width: calc(596 / 1920 * 100vw);
}
.content.staff .staffwrap .wrap_wh .staffimg.img02 {
  top: calc(872 / 1920 * 100vw);
  right: calc(-358 / 1920 * 100vw);
  width: calc(582 / 1920 * 100vw);
}
.content.staff .staffwrap .wrap_wh .staffimg.img03 {
  top: calc(1210 / 1920 * 100vw);
  left: calc(-313 / 1920 * 100vw);
  width: calc(440 / 1920 * 100vw);
}
.content.staff .staffwrap .wrap_wh .staffimg.img04 {
  top: calc(1430 / 1920 * 100vw);
  right: calc(-306 / 1920 * 100vw);
  width: calc(381 / 1920 * 100vw);
}
.content.staff .staffwrap .wrap_wh .staffimg.img05 {
  top: calc(1692 / 1920 * 100vw);
  left: calc(-397 / 1920 * 100vw);
  width: calc(470 / 1920 * 100vw);
}
.content.staff .staffwrap .wrap_wh .staffimg.img06 {
  top: calc(1800 / 1920 * 100vw);
  right: calc(-420 / 1920 * 100vw);
  width: calc(574 / 1920 * 100vw);
}
.content.staff .staffwrap .wrap_wh .staffimg.img07 {
  top: calc(2124 / 1920 * 100vw);
  left: calc(-405 / 1920 * 100vw);
  width: calc(528 / 1920 * 100vw);
}
.content.staff .staffwrap .wrap_wh .staffimg.img08 {
  top: calc(2324 / 1920 * 100vw);
  right: calc(-265 / 1920 * 100vw);
  width: calc(389 / 1920 * 100vw);
}
.content.staff .shopinformation {
  background-color: #f5f4e8;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation {
    padding-bottom: calc(200 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation {
    padding-bottom: calc(200 / 720 * 100vw);
  }
}
.content.staff .shopinformation .wrap_wh {
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation .wrap_wh {
    padding: calc(55 / 1920 * 100vw) calc(140 / 1920 * 100vw) calc(100 / 1920 * 100vw);
    margin-bottom: calc(100 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation .wrap_wh {
    padding: calc(55 / 720 * 100vw) calc(40 / 720 * 100vw) calc(100 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
    margin-bottom: calc(100 / 720 * 100vw);
  }
}
.content.staff .shopinformation .staff_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation .staff_icon {
    width: calc(157 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation .staff_icon {
    width: calc(157 / 720 * 100vw);
  }
}
.content.staff .shopinformation h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation h3 {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(27 / 1920 * 100vw);
    margin-top: calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation h3 {
    font-size: calc(40 / 720 * 100vw);
    margin-bottom: calc(27 / 720 * 100vw);
    margin-top: calc(0 / 720 * 100vw);
  }
}
.content.staff .shopinformation #shopguide .shop_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #shopguide .shop_icon {
    width: calc(157 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #shopguide .shop_icon {
    width: calc(157 / 720 * 100vw);
  }
}
.content.staff .shopinformation #shopguide .map {
  width: 100%;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #shopguide .map {
    height: calc(400 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #shopguide .map {
    height: calc(400 / 720 * 100vw);
  }
}
.content.staff .shopinformation #shopguide .maplink {
  text-align: right;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #shopguide .maplink {
    margin-top: calc(19 / 1920 * 100vw);
    margin-bottom: calc(58 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #shopguide .maplink {
    margin-top: calc(19 / 720 * 100vw);
    margin-bottom: calc(58 / 720 * 100vw);
  }
}
.content.staff .shopinformation #shopguide .maplink a {
  color: #57c2e9;
  text-decoration: underline;
}
.content.staff .shopinformation #shopguide ul {
  border-top: solid calc(2 / 1920 * 100vw) #d5dde3;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #shopguide ul {
    padding-top: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #shopguide ul {
    padding-top: calc(15 / 720 * 100vw);
  }
}
.content.staff .shopinformation #shopguide ul li {
  border-bottom: solid calc(2 / 1920 * 100vw) #d5dde3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #shopguide ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #shopguide ul li {
    padding-left: calc(15 / 1920 * 100vw);
    padding-right: calc(15 / 1920 * 100vw);
    padding-bottom: calc(15 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #shopguide ul li {
    padding-left: calc(15 / 720 * 100vw);
    padding-right: calc(15 / 720 * 100vw);
    padding-bottom: calc(15 / 720 * 100vw);
    margin-bottom: calc(15 / 720 * 100vw);
  }
}
.content.staff .shopinformation #shopguide ul li .head {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #shopguide ul li .head {
    width: calc(160 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #shopguide ul li .head {
    width: calc(530 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #shopguide ul li .text {
    width: calc(780 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #shopguide ul li .text {
    width: calc(530 / 720 * 100vw);
  }
}
.content.staff .shopinformation #wearguide .wear_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #wearguide .wear_icon {
    width: calc(233 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #wearguide .wear_icon {
    width: calc(233 / 720 * 100vw);
  }
}
.content.staff .shopinformation #wearguide .wrap {
  border: solid calc(3 / 1920 * 100vw) #57c2e9;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #wearguide .wrap {
    border-radius: calc(10 / 1920 * 100vw);
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #wearguide .wrap {
    border-radius: calc(10 / 720 * 100vw);
    margin-bottom: calc(50 / 720 * 100vw);
  }
}
.content.staff .shopinformation #wearguide .wrap .head {
  color: #fff;
  background-color: #57c2e9;
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #wearguide .wrap .head {
    padding-left: calc(47 / 1920 * 100vw);
    padding-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #wearguide .wrap .head {
    padding-left: calc(47 / 720 * 100vw);
    padding-bottom: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #wearguide .wrap .items {
    padding-top: calc(30 / 1920 * 100vw);
    padding-left: calc(36 / 1920 * 100vw);
    padding-bottom: calc(30 / 1920 * 100vw);
    padding-right: calc(36 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #wearguide .wrap .items {
    padding-top: calc(30 / 720 * 100vw);
    padding-left: calc(40 / 720 * 100vw);
    padding-bottom: calc(30 / 720 * 100vw);
    padding-right: calc(40 / 720 * 100vw);
  }
}
.content.staff .shopinformation #areaguide .area_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #areaguide .area_icon {
    width: calc(325 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #areaguide .area_icon {
    width: calc(325 / 720 * 100vw);
  }
}
.content.staff .shopinformation #areaguide ul {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #areaguide ul li {
    width: calc(480 / 1920 * 100vw);
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #areaguide ul li {
    width: calc(520 / 720 * 100vw);
    margin-bottom: calc(50 / 720 * 100vw);
  }
}
.content.staff .shopinformation #areaguide ul li img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #areaguide ul li img {
    width: calc(480 / 1920 * 100vw);
    height: calc(300 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #areaguide ul li img {
    width: calc(520 / 720 * 100vw);
    height: calc(300 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
  }
}
.content.staff .shopinformation #areaguide ul li .head {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #areaguide ul li .head {
    font-size: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #areaguide ul li .head {
    font-size: calc(30 / 720 * 100vw);
  }
}
.content.staff .shopinformation #paymentguide .payment_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .payment_icon {
    width: calc(122 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .payment_icon {
    width: calc(122 / 720 * 100vw);
  }
}
.content.staff .shopinformation #paymentguide .btn {
  color: #fff;
  text-align: center;
  background-color: #ff9c9e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .btn {
    height: calc(165 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    margin-bottom: calc(65 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .btn {
    height: calc(165 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    margin-bottom: calc(65 / 720 * 100vw);
  }
}
.content.staff .shopinformation #paymentguide .btn .jp {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .btn .jp {
    font-size: calc(38 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .btn .jp {
    font-size: calc(38 / 720 * 100vw);
  }
}
.content.staff .shopinformation #paymentguide .wrap {
  border: solid calc(3 / 1920 * 100vw) #57c2e9;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .wrap {
    border-radius: calc(10 / 1920 * 100vw);
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .wrap {
    border-radius: calc(10 / 720 * 100vw);
    margin-bottom: calc(50 / 720 * 100vw);
  }
}
.content.staff .shopinformation #paymentguide .wrap > .head {
  color: #fff;
  background-color: #57c2e9;
  text-align: center;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .wrap > .head {
    font-size: calc(30 / 1920 * 100vw);
    padding-left: calc(47 / 1920 * 100vw);
    padding-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .wrap > .head {
    font-size: calc(36 / 720 * 100vw);
    padding-left: calc(47 / 720 * 100vw);
    padding-bottom: calc(5 / 720 * 100vw);
  }
}
.content.staff .shopinformation #paymentguide .wrap > .text {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .wrap > .text {
    height: calc(140 / 1920 * 100vw);
    font-size: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .wrap > .text {
    height: calc(140 / 720 * 100vw);
    font-size: calc(30 / 720 * 100vw);
  }
}
.content.staff .shopinformation #paymentguide .wrap .table li {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: solid calc(3 / 1920 * 100vw) #57c2e9;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .wrap .table li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.content.staff .shopinformation #paymentguide .wrap .table li:last-child {
  border-bottom: 0;
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .wrap .table li .head {
    border-right: solid calc(3 / 1920 * 100vw) #57c2e9;
  }
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .wrap .table li .head {
    width: calc(300 / 1920 * 100vw);
    padding-left: calc(34 / 1920 * 100vw);
    padding-top: calc(15 / 1920 * 100vw);
    padding-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .wrap .table li .head {
    width: calc(530 / 720 * 100vw);
    padding-left: calc(20 / 720 * 100vw);
    padding-top: calc(15 / 720 * 100vw);
    padding-bottom: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.staff .shopinformation #paymentguide .wrap .table li .text {
    width: calc(700 / 1920 * 100vw);
    padding-left: calc(63 / 1920 * 100vw);
    padding-top: calc(15 / 1920 * 100vw);
    padding-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.staff .shopinformation #paymentguide .wrap .table li .text {
    width: calc(530 / 720 * 100vw);
    padding-left: calc(20 / 720 * 100vw);
    padding-top: calc(15 / 720 * 100vw);
    padding-bottom: calc(15 / 720 * 100vw);
  }
}

.content.blog .blogwrap {
  background-color: #38eae5;
}
.content.blog .blogwrap .blog_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_icon {
    width: calc(260 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_icon {
    width: calc(260 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blogtitlewrap {
  color: #fff;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blogtitlewrap {
    top: calc(-100 / 1920 * 100vw);
    margin-bottom: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blogtitlewrap {
    top: calc(0 / 720 * 100vw);
    margin-bottom: calc(100 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blogtitlewrap h2 {
  text-align: justify;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blogtitlewrap h2 {
    font-size: calc(80 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blogtitlewrap h2 {
    font-size: calc(80 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner {
  background-color: #fff;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner {
    border-radius: calc(30 / 1920 * 100vw);
    padding: calc(65 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner {
    border-radius: calc(30 / 720 * 100vw);
    padding: calc(40 / 720 * 100vw) calc(35 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .side {
  background-color: #f5f4e8;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .side {
    margin-top: calc(80 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .side {
    width: calc(300 / 1920 * 100vw);
    padding: calc(46 / 1920 * 100vw) calc(22 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .side {
    width: calc(530 / 720 * 100vw);
    padding: calc(20 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .side .head {
  color: #fff;
  background-color: #57c2e9;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .side .head {
    width: calc(255 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(25 / 1920 * 100vw);
    margin-bottom: calc(40 / 1920 * 100vw);
    margin-top: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .side .head {
    width: calc(490 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    border-radius: calc(25 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
    margin-top: calc(50 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .side .writer .head {
  font-weight: 700;
  margin-top: 0;
}
.content.blog .blogwrap .blog_inner .side .writer img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .side .writer img {
    height: calc(310 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    margin-bottom: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .side .writer img {
    height: calc(600 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    margin-bottom: calc(30 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .side ul {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .side ul {
    margin-bottom: calc(50 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .side ul li {
    padding-left: calc(40 / 1920 * 100vw);
    padding-right: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .side ul li {
    padding-left: calc(40 / 720 * 100vw);
    padding-right: calc(20 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .side ul li::before {
  content: "";
  display: block;
  background-color: #57c2e9;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .side ul li::before {
    width: calc(11 / 1920 * 100vw);
    height: calc(11 / 1920 * 100vw);
    left: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .side ul li::before {
    width: calc(11 / 720 * 100vw);
    height: calc(11 / 720 * 100vw);
    left: calc(15 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap {
    width: calc(800 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap {
    width: calc(530 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .bloglistwrap h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}
.content.blog .blogwrap .blog_inner .bloglistwrap h3 .jp {
  font-family: "Zen Kaku Gothic", sans-serif;
}
.content.blog .blogwrap .blog_inner .bloglistwrap .bloglist {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li {
    width: calc(380 / 1920 * 100vw);
    margin-bottom: calc(90 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li {
    width: calc(530 / 720 * 100vw);
    margin-bottom: calc(90 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li img {
    height: calc(260 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li img {
    height: calc(260 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .title {
  border-bottom: solid calc(2 / 1920 * 100vw) #716a65;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .title {
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .title {
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .title {
    padding-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .title {
    padding-bottom: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .date,
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .writer {
    font-size: calc(16 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .date,
  .content.blog .blogwrap .blog_inner .bloglistwrap .bloglist li .writer {
    font-size: calc(22 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul {
    gap: calc(17 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul {
    gap: calc(17 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li a {
  color: #716a65;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #f5f4e8;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li a {
    width: calc(50 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li a {
    width: calc(50 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li:first-child a, .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li:last-child a {
  color: #fff;
  background-color: #ff9c9e;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li:first-child a, .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li:last-child a {
    width: calc(110 / 1920 * 100vw);
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li:first-child a, .content.blog .blogwrap .blog_inner .bloglistwrap .pagenation ul li:last-child a {
    width: calc(110 / 720 * 100vw);
    height: calc(50 / 720 * 100vw);
    border-radius: calc(25 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner.blogpost {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost {
    padding: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost {
    padding: calc(45 / 720 * 100vw) calc(35 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner.blogpost .side .writer {
  text-align: justify;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost .side .writer {
    margin-bottom: calc(70 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost .side .writer {
    margin-bottom: calc(70 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner.blogpost .side .head {
  color: #fff;
  background-color: #57c2e9;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost .side .head {
    height: calc(50 / 1920 * 100vw);
    border-radius: calc(25 / 1920 * 100vw);
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost .side .head {
    height: calc(50 / 720 * 100vw);
    border-radius: calc(25 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost .side ul {
    margin-bottom: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost .side ul {
    margin-bottom: calc(50 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost .side ul li {
    padding-left: calc(40 / 1920 * 100vw);
    padding-right: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost .side ul li {
    padding-left: calc(40 / 720 * 100vw);
    padding-right: calc(20 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner.blogpost .side ul li::before {
  content: "";
  display: block;
  background-color: #57c2e9;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost .side ul li::before {
    width: calc(11 / 1920 * 100vw);
    height: calc(11 / 1920 * 100vw);
    left: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost .side ul li::before {
    width: calc(11 / 720 * 100vw);
    height: calc(11 / 720 * 100vw);
    left: calc(15 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost article {
    width: calc(720 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost article {
    width: calc(530 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner.blogpost article .title {
  border-bottom: solid calc(3 / 1920 * 100vw) #d1cbba;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost article .title {
    font-size: calc(40 / 1920 * 100vw);
    padding-bottom: calc(15 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost article .title {
    font-size: calc(40 / 720 * 100vw);
    padding-bottom: calc(15 / 720 * 100vw);
    margin-bottom: calc(15 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost article .postdate,
  .content.blog .blogwrap .blog_inner.blogpost article .writer {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost article .postdate,
  .content.blog .blogwrap .blog_inner.blogpost article .writer {
    font-size: calc(22 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost article .content_detail {
    margin-top: calc(10 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost article .content_detail {
    margin-top: calc(10 / 720 * 100vw);
    margin-bottom: calc(80 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner.blogpost article .snswrap {
  border-top: solid calc(3 / 1920 * 100vw) #d1cbba;
}
.content.blog .blogwrap .blog_inner.blogpost article .snswrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost article .snswrap ul {
    padding-top: calc(15 / 1920 * 100vw);
    padding-bottom: calc(80 / 1920 * 100vw);
    gap: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost article .snswrap ul {
    padding-top: calc(20 / 720 * 100vw);
    padding-bottom: calc(80 / 720 * 100vw);
    gap: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost article .snswrap ul li {
    width: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost article .snswrap ul li {
    width: calc(50 / 720 * 100vw);
  }
}
.content.blog .blogwrap .blog_inner.blogpost article .pagingwrap ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost article .pagingwrap ul {
    gap: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .blog_inner.blogpost article .pagingwrap ul li {
    font-size: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .blog_inner.blogpost article .pagingwrap ul li {
    font-size: calc(24 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .popularpostlist {
    margin-top: calc(167 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .popularpostlist {
    margin-top: calc(100 / 720 * 100vw);
  }
}
.content.blog .blogwrap .popularpostlist h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #fff;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .popularpostlist h3 {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(15 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .popularpostlist h3 {
    font-size: calc(40 / 720 * 100vw);
    margin-bottom: calc(15 / 720 * 100vw);
  }
}
.content.blog .blogwrap .popularpostlist h3 .jp {
  display: block;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .popularpostlist h3 .jp {
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .popularpostlist h3 .jp {
    font-size: calc(22 / 720 * 100vw);
  }
}
.content.blog .blogwrap .popularpostlist .slideshow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .popularpostlist .slideshow .post {
    width: calc(420 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .popularpostlist .slideshow .post {
    width: calc(420 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.blog .blogwrap .popularpostlist .slideshow .post img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .popularpostlist .slideshow .post img {
    width: calc(420 / 1920 * 100vw);
    height: calc(300 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .popularpostlist .slideshow .post img {
    width: calc(420 / 720 * 100vw);
    height: calc(300 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
  }
}
.content.blog .blogwrap .popularpostlist .slideshow .post .title {
  color: #fff;
  border-bottom: solid calc(3 / 1920 * 100vw) #fff;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .popularpostlist .slideshow .post .title {
    padding-bottom: calc(10 / 1920 * 100vw);
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .popularpostlist .slideshow .post .title {
    padding-bottom: calc(10 / 720 * 100vw);
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
.content.blog .blogwrap .popularpostlist .slideshow .post .date,
.content.blog .blogwrap .popularpostlist .slideshow .post .writer {
  color: #fff;
}
@media screen and (min-width: 841px) {
  .content.blog .blogwrap .popularpostlist .slideshow .post .date,
  .content.blog .blogwrap .popularpostlist .slideshow .post .writer {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.blog .blogwrap .popularpostlist .slideshow .post .date,
  .content.blog .blogwrap .popularpostlist .slideshow .post .writer {
    font-size: calc(18 / 720 * 100vw);
  }
}

.content.privacypolicy .privacypolicywrap {
  background-color: #38eae5;
}
.content.privacypolicy .privacypolicywrap .privacyporicytitlewrap {
  color: #fff;
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicytitlewrap {
    top: calc(-100 / 1920 * 100vw);
    margin-bottom: calc(100 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicytitlewrap {
    top: calc(0 / 720 * 100vw);
    margin-bottom: calc(100 / 720 * 100vw);
  }
}
.content.privacypolicy .privacypolicywrap .privacyporicytitlewrap h2 {
  text-align: justify;
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicytitlewrap h2 {
    font-size: calc(80 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicytitlewrap h2 {
    font-size: calc(80 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner {
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner {
    padding: calc(80 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner {
    padding: calc(40 / 720 * 100vw) calc(35 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
  }
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  background-color: #f5f4e8;
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner h3 {
    font-size: calc(24 / 1920 * 100vw);
    padding-left: calc(33 / 1920 * 100vw);
    padding-top: calc(15 / 1920 * 100vw);
    padding-bottom: calc(15 / 1920 * 100vw);
    margin-bottom: calc(16 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner h3 {
    font-size: calc(24 / 720 * 100vw);
    padding-left: calc(33 / 720 * 100vw);
    padding-top: calc(15 / 720 * 100vw);
    padding-bottom: calc(15 / 720 * 100vw);
    margin-bottom: calc(16 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner p {
    font-size: calc(18 / 1920 * 100vw);
    padding-left: calc(33 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner p {
    font-size: calc(22 / 720 * 100vw);
    padding-left: calc(33 / 720 * 100vw);
  }
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner ul {
  background-color: #f1fbfa;
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul {
    padding: calc(32 / 1920 * 100vw) calc(43 / 1920 * 100vw);
    margin: calc(24 / 1920 * 100vw) calc(0 / 1920 * 100vw) calc(30 / 1920 * 100vw);
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul {
    padding: calc(32 / 720 * 100vw) calc(43 / 720 * 100vw);
    margin: calc(24 / 720 * 100vw) calc(0 / 720 * 100vw) calc(30 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul li {
    font-size: calc(18 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul li {
    font-size: calc(28 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.partner-list li {
    padding-left: calc(33 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.partner-list li {
    padding-left: calc(33 / 720 * 100vw);
  }
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.partner-list li::before {
  content: "";
  display: block;
  background-color: #22dcd7;
  position: absolute;
  left: 0;
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.partner-list li::before {
    width: calc(8 / 1920 * 100vw);
    height: calc(8 / 1920 * 100vw);
    border-radius: calc(4 / 1920 * 100vw);
    top: calc(12 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.partner-list li::before {
    width: calc(8 / 720 * 100vw);
    height: calc(8 / 720 * 100vw);
    border-radius: calc(4 / 720 * 100vw);
    top: calc(6 / 720 * 100vw);
  }
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.line {
  background-color: inherit;
  border-top: solid calc(1 / 1920 * 100vw) #d5dde3;
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.contact-info {
  background-color: inherit;
  margin-top: 0;
  padding-top: 0;
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.contact-info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.contact-info li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.contact-info li {
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.contact-info li {
    margin-bottom: calc(20 / 720 * 100vw);
  }
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.contact-info li .head {
  color: #fff;
  background-color: #ccc2a0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.contact-info li .head {
    width: calc(130 / 1920 * 100vw);
    height: calc(25 / 1920 * 100vw);
    border-radius: calc(13 / 1920 * 100vw);
    margin-right: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner ul.contact-info li .head {
    width: calc(130 / 720 * 100vw);
    height: calc(25 / 720 * 100vw);
    border-radius: calc(13 / 720 * 100vw);
    margin-right: calc(20 / 720 * 100vw);
  }
}
.content.privacypolicy .privacypolicywrap .privacyporicy_inner h4 {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner h4 {
    font-size: calc(26 / 1920 * 100vw);
    padding-left: calc(33 / 1920 * 100vw);
    margin-bottom: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.privacypolicy .privacypolicywrap .privacyporicy_inner h4 {
    font-size: calc(26 / 720 * 100vw);
    padding-left: calc(33 / 720 * 100vw);
    margin-bottom: calc(20 / 720 * 100vw);
  }
}

.content.contact .contactwrap.content_wrap {
  background-color: #38eae5;
  /* 確認画面用の設定 */
}
.content.contact .contactwrap.content_wrap .reserve_icon {
  margin: auto;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .reserve_icon {
    width: calc(214 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .reserve_icon {
    width: calc(214 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh {
  width: 100%;
  background-color: #fff;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh {
    padding: calc(100 / 1920 * 100vw) calc(35 / 1920 * 100vw);
    border-radius: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh {
    padding: calc(100 / 720 * 100vw) calc(35 / 720 * 100vw);
    border-radius: calc(30 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh h3 {
  font-family: "Zen Maru Gothic", sans-serif;
  text-align: center;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh h3 {
    font-size: calc(40 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh h3 {
    font-size: calc(50 / 720 * 100vw);
    margin-bottom: calc(60 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh h4 {
    font-size: calc(30 / 1920 * 100vw);
    margin-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh h4 {
    font-size: calc(40 / 720 * 100vw);
    margin-bottom: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh h5 {
    margin-top: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh h5 {
    margin-top: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh h5 {
    margin-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh h5 {
    margin-bottom: calc(5 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .title {
  font-weight: 700;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .title {
    font-size: calc(30 / 1920 * 100vw);
    margin-bottom: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .title {
    font-size: calc(40 / 720 * 100vw);
    margin-bottom: calc(5 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .required {
  display: inline-block;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .required {
    vertical-align: top;
    padding-top: calc(9 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .required span {
  color: #fff;
  background-color: #ff9c9e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .required span {
    font-size: calc(22 / 1920 * 100vw);
    width: calc(130 / 1920 * 100vw);
    height: calc(40 / 1920 * 100vw);
    border-radius: calc(20 / 1920 * 100vw);
    margin-left: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .required span {
    font-size: calc(28 / 720 * 100vw);
    width: calc(130 / 720 * 100vw);
    height: calc(40 / 720 * 100vw);
    border-radius: calc(20 / 720 * 100vw);
    margin-left: calc(5 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .js-person,
.content.contact .contactwrap.content_wrap .wrap_wh .people {
  display: none;
}
.content.contact .contactwrap.content_wrap .wrap_wh .js-person.is-active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.content.contact .contactwrap.content_wrap .wrap_wh .people.is-active {
  display: block;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh input,
  .content.contact .contactwrap.content_wrap .wrap_wh textarea,
  .content.contact .contactwrap.content_wrap .wrap_wh select {
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh input,
  .content.contact .contactwrap.content_wrap .wrap_wh textarea,
  .content.contact .contactwrap.content_wrap .wrap_wh select {
    font-size: calc(32 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh input,
.content.contact .contactwrap.content_wrap .wrap_wh select {
  color: #716a65;
  background-color: #f5f4e8;
  border: 0 none;
  width: 100%;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh input,
  .content.contact .contactwrap.content_wrap .wrap_wh select {
    height: calc(65 / 1920 * 100vw);
    padding: calc(2 / 1920 * 100vw) calc(10 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh input,
  .content.contact .contactwrap.content_wrap .wrap_wh select {
    height: calc(65 / 720 * 100vw);
    padding: calc(5 / 720 * 100vw) calc(10 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh input[type=radio] {
  color: #716a65;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh input[type=radio] {
    width: calc(20 / 1920 * 100vw);
    height: calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh input[type=radio] {
    width: calc(20 / 720 * 100vw);
    height: calc(20 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh input[type=checkbox] {
    width: calc(30 / 1920 * 100vw);
    height: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh input[type=checkbox] {
    width: calc(30 / 720 * 100vw);
    height: calc(30 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh textarea {
  color: #716a65;
  border: 0 none;
  background-color: #f5f4e8;
  width: 100%;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh textarea {
    height: calc(400 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh textarea {
    height: calc(400 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh select option:disabled {
  color: #ccc;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh textarea.allergy {
    width: calc(510 / 1920 * 100vw);
    height: calc(256 / 1920 * 100vw);
    padding: calc(25 / 1920 * 100vw);
    margin-top: calc(32 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh textarea.allergy {
    width: calc(490 / 720 * 100vw);
    height: calc(256 / 720 * 100vw);
    padding: calc(25 / 720 * 100vw);
    margin-top: calc(32 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .shisetsu {
    margin: calc(20 / 1920 * 100vw) calc(0 / 1920 * 100vw) calc(0 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .shisetsu {
    margin: calc(20 / 720 * 100vw) calc(0 / 720 * 100vw) calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .mw_wp_form_confirm .zipcode {
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .mw_wp_form_confirm .zipcode {
    font-size: calc(28 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .mw_wp_form_confirm .selectwrap select::after {
  display: none;
}
.content.contact .contactwrap.content_wrap .wrap_wh .selectwrap select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 2.5em;
}
.content.contact .contactwrap.content_wrap .wrap_wh .selectwrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 1em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  pointer-events: none;
  border-left: calc(10 / 1920 * 100vw) solid transparent;
  border-right: calc(10 / 1920 * 100vw) solid transparent;
  border-top: calc(14 / 1920 * 100vw) solid #716a65;
  width: 0;
  height: 0;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .selectwrap::after {
    border-left: calc(10 / 720 * 100vw) solid transparent;
    border-right: calc(10 / 720 * 100vw) solid transparent;
    border-top: calc(14 / 720 * 100vw) solid #716a65;
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .zipcode {
    font-size: calc(30 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .zipcode {
    font-size: calc(32 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .zipcode input {
  width: calc(270 / 1920 * 100vw);
  display: inline-block;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .zipcode input {
    width: calc(100% - 100 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .flexbox .leftbox {
  width: 50%;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox .leftbox {
    width: 100%;
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox .leftbox {
    margin-right: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox .leftbox {
    margin-right: calc(0 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .flexbox .rightbox {
  width: 50%;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox .rightbox {
    width: 100%;
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox .rightbox {
    margin-left: calc(25 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox .rightbox {
    margin-left: calc(0 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox.date {
    margin-bottom: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox.date {
    margin-bottom: calc(80 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox.date > div {
    width: calc(360 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .flexbox.date > div {
    width: calc(530 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .personalwrap {
  background-color: #effbff;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .personalwrap {
    border-radius: calc(10 / 1920 * 100vw);
    padding: calc(50 / 1920 * 100vw) calc(20 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .personalwrap {
    border-radius: calc(10 / 720 * 100vw);
    padding: calc(50 / 720 * 100vw) calc(20 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .personalwrap input[type=text],
.content.contact .contactwrap.content_wrap .wrap_wh .personalwrap input[type=number] {
  background-color: #ffffff;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .personalwrap input[type=text],
  .content.contact .contactwrap.content_wrap .wrap_wh .personalwrap input[type=number] {
    height: calc(50 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .personalwrap input[type=text],
  .content.contact .contactwrap.content_wrap .wrap_wh .personalwrap input[type=number] {
    height: calc(50 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .personalwrap input[type=radio],
.content.contact .contactwrap.content_wrap .wrap_wh .personalwrap textarea {
  background-color: #fff;
}
.content.contact .contactwrap.content_wrap .wrap_wh .consentwrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .consentwrap {
    margin-top: calc(40 / 1920 * 100vw);
    margin-bottom: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .consentwrap {
    margin-top: calc(40 / 720 * 100vw);
    margin-bottom: calc(40 / 720 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .consentwrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .consentwrap h4 {
  margin-top: 0;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .consentwrap h4 {
    font-size: calc(32 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .consentwrap p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.content.contact .contactwrap.content_wrap .wrap_wh .consentwrap label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .consentwrap label {
    margin-left: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .consentwrap label {
    margin-left: calc(5 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .consentwrap label input {
    margin-right: calc(5 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .consentwrap label input {
    margin-right: calc(5 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh button,
.content.contact .contactwrap.content_wrap .wrap_wh input[type=submit] {
  color: #fff;
  display: block;
  background-color: #ff9c9e;
  border: none;
  margin: calc(40 / 1920 * 100vw) auto 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh button,
  .content.contact .contactwrap.content_wrap .wrap_wh input[type=submit] {
    margin: calc(4 / 720 * 100vw) auto;
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh button,
  .content.contact .contactwrap.content_wrap .wrap_wh input[type=submit] {
    width: calc(480 / 1920 * 100vw);
    height: calc(80 / 1920 * 100vw);
    border-radius: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh button,
  .content.contact .contactwrap.content_wrap .wrap_wh input[type=submit] {
    width: calc(530 / 720 * 100vw);
    height: calc(80 / 720 * 100vw);
    border-radius: calc(10 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh button:hover,
.content.contact .contactwrap.content_wrap .wrap_wh input[type=submit]:hover {
  cursor: pointer;
  opacity: 0.7;
}
.content.contact .contactwrap.content_wrap .wrap_wh input::-webkit-input-placeholder, .content.contact .contactwrap.content_wrap .wrap_wh textarea::-webkit-input-placeholder {
  color: #a09c99;
  opacity: 1;
}
.content.contact .contactwrap.content_wrap .wrap_wh input::-moz-placeholder, .content.contact .contactwrap.content_wrap .wrap_wh textarea::-moz-placeholder {
  color: #a09c99;
  opacity: 1;
}
.content.contact .contactwrap.content_wrap .wrap_wh input:-ms-input-placeholder, .content.contact .contactwrap.content_wrap .wrap_wh textarea:-ms-input-placeholder {
  color: #a09c99;
  opacity: 1;
}
.content.contact .contactwrap.content_wrap .wrap_wh input::-ms-input-placeholder, .content.contact .contactwrap.content_wrap .wrap_wh textarea::-ms-input-placeholder {
  color: #a09c99;
  opacity: 1;
}
.content.contact .contactwrap.content_wrap .wrap_wh input::placeholder,
.content.contact .contactwrap.content_wrap .wrap_wh textarea::placeholder {
  color: #a09c99;
  opacity: 1;
}
.content.contact .contactwrap.content_wrap .wrap_wh .add_cm:after {
  content: "cm";
  display: block;
  position: absolute;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .add_cm:after {
    right: calc(5 / 1920 * 100vw);
    bottom: calc(5 / 1920 * 100vw);
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .add_cm:after {
    right: calc(5 / 720 * 100vw);
    bottom: calc(5 / 720 * 100vw);
    font-size: calc(28 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .add_kg:after {
  content: "kg";
  display: block;
  position: absolute;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .add_kg:after {
    right: calc(5 / 1920 * 100vw);
    bottom: calc(5 / 1920 * 100vw);
    font-size: calc(22 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .add_kg:after {
    right: calc(5 / 720 * 100vw);
    bottom: calc(5 / 720 * 100vw);
    font-size: calc(28 / 720 * 100vw);
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .anno {
    margin-bottom: calc(10 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .anno {
    margin-bottom: calc(10 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .atention {
  color: #fff;
  width: 100%;
  background-color: #ff9c9e;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .atention {
    height: calc(130 / 1920 * 100vw);
    margin-top: calc(110 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .atention {
    height: calc(100 / 720 * 100vw);
    margin-top: calc(110 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .pricewrap {
  color: #ff9c9e;
  width: 100%;
  border: solid calc(3 / 1920 * 100vw) #ff9c9e;
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .pricewrap {
    border: solid calc(3 / 720 * 100vw) #ff9c9e;
  }
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .pricewrap {
    font-size: calc(28 / 1920 * 100vw);
    margin-top: calc(110 / 1920 * 100vw);
    padding: calc(40 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .pricewrap {
    font-size: calc(30 / 720 * 100vw);
    margin-top: calc(110 / 720 * 100vw);
    padding: calc(40 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .pricewrap .price {
  text-align: right;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .pricewrap .price {
    font-size: calc(36 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .pricewrap .price {
    font-size: calc(40 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .legal {
  width: 100%;
  background-color: #f5f4e8;
  overflow: auto;
}
@media screen and (min-width: 841px) {
  .content.contact .contactwrap.content_wrap .wrap_wh .legal {
    height: calc(400 / 1920 * 100vw);
    padding: calc(20 / 1920 * 100vw) calc(40 / 1920 * 100vw);
    margin-top: calc(10 / 1920 * 100vw);
    margin-bottom: calc(80 / 1920 * 100vw);
  }
}
@media screen and (max-width: 840px) and (orientation: portrait) {
  .content.contact .contactwrap.content_wrap .wrap_wh .legal {
    height: calc(800 / 720 * 100vw);
    padding: calc(20 / 720 * 100vw);
    margin-top: calc(10 / 720 * 100vw);
    margin-bottom: calc(80 / 720 * 100vw);
  }
}
.content.contact .contactwrap.content_wrap .wrap_wh .people-error {
  color: #ff9c9e;
  text-align: center;
}
.content.contact .contactwrap.content_wrap .mw_wp_form_confirm .legal,
.content.contact .contactwrap.content_wrap .mw_wp_form_confirm .atention,
.content.contact .contactwrap.content_wrap .mw_wp_form_confirm .eople-error,
.content.contact .contactwrap.content_wrap .mw_wp_form_confirm .atention {
  display: none !important;
}