@charset "UTF-8";
/* ==============================
  base
============================== */
@font-face {
  font-family: "notoSerifJP";
  src: url("../res/fonts/NotoSerifJP-Light.woff") format("woff");
  font-style: normal;
  font-display: swap;
}
/* z-index */
/*
  variables
*/
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html,
body {
  height: 100%;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

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

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

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -moz-appearance: button;
       appearance: button;
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -moz-appearance: textfield;
       appearance: textfield;
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  appearance: none;
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  appearance: button;
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*
  Typography
*/
html {
  font-size: 1px; /*for using REM units*/
}

body {
  direction: ltr;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 16rem;
  font-weight: 400;
  line-height: 1.4;
  color: #333;
}

/*
  Common
*/
:root {
  --fullscreen-height: calc(var(--vh, 1vh) * 100);
}

html body {
  position: static;
}
html.on body {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  overflow-y: scroll;
}

img {
  width: 100%;
  height: auto;
  transition: opacity 0.3s;
}

a:hover img {
  opacity: 0.8;
}

a:link, a:visited, a:hover,
a a:active {
  color: #333;
  text-decoration: none;
}

.wrapper {
  position: relative;
  height: 100%;
}

/*
  Animation
*/
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeIn-fromBottom {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*
  Header
*/
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 4;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.header__inner {
  margin: 0 auto;
  padding-top: 10px;
  padding-bottom: 10px;
  max-width: 1200px;
  height: 56px;
  background-color: #fff;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1025px) {
  .header__inner {
    padding-left: 20px;
    padding-right: 20px;
    height: 66px;
    box-shadow: none;
  }
}
.header__logo-link {
  display: inline-block;
  width: 230px;
}
@media screen and (min-width: 1025px) {
  .header__logo-link {
    width: 300px;
  }
}

.nav-btn {
  position: absolute;
  top: 10px;
  right: 4%;
  z-index: 3;
  width: 36px;
  height: 36px;
  cursor: pointer;
}
@media screen and (min-width: 1025px) {
  .nav-btn {
    top: 15px;
    right: 20px;
  }
}
@media screen and (min-width: 1350px) {
  .nav-btn {
    right: calc(50% - 665px);
  }
}

/*ボタン内側*/
.nav-btn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  height: 2px;
  background: #333;
  width: 100%;
}
.nav-btn span:nth-of-type(1) {
  top: 5px;
}
.nav-btn span:nth-of-type(2) {
  top: 17px;
}
.nav-btn span:nth-of-type(3) {
  top: 29px;
}

.nav-btn.close span:nth-of-type(1) {
  top: 10px;
  left: 1px;
  transform: translateY(6px) rotate(-45deg);
  width: 90%;
}
.nav-btn.close span:nth-of-type(2) {
  opacity: 0;
}
.nav-btn.close span:nth-of-type(3) {
  top: 22px;
  left: 1px;
  transform: translateY(-7px) rotate(45deg);
  width: 90%;
}

.nav-btn.invalid {
  pointer-events: none;
}

/*
  Menu
*/
.overlay {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100vh; /* Fallback */
  height: calc(var(--vh, 1vh) * 100);
  background-color: rgba(0, 0, 0, 0.7);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s;
}

html.on .overlay {
  opacity: 1;
  pointer-events: auto;
}

.top-nav {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  overflow-y: scroll;
  width: 280px;
  min-width: 25%;
  max-height: calc(var(--vh, 1vh) * 100);
  z-index: 2;
  padding-top: 40px;
  padding-bottom: 20px;
  background-color: #fff;
}
.top-nav__link {
  display: block;
  padding: 15px 0;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  cursor: pointer;
}
.top-nav__list {
  list-style: none;
  padding: 0;
}
.top-nav__item-header {
  display: inline-block;
  position: relative;
  margin: 6px 0;
  padding: 14px 20px;
  width: 30%;
  min-width: 140px;
  background-color: #c7ece6;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.top-nav__item-header::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -16px;
  width: 16px;
  height: 100%;
  background: linear-gradient(249deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, #c7ece6 50%, #c7ece6 100%);
}
.top-nav__item + .top-nav__item {
  padding-top: 10px;
}
.top-nav__sublist {
  list-style: none;
  padding: 0 20px 0 40px;
}
.top-nav__otherlist {
  list-style: none;
  padding: 0 20px;
}
.top-nav__concierge {
  list-style: none;
  padding: 0 20px;
  display: inline-block;
  position: relative;
  margin: 0px 0;
  width: 30%;
  min-width: 194px;
  background-color: rgba(218, 247, 158, 0.8392156863);
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
.top-nav__concierge::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: -16px;
  width: 16px;
  height: 100%;
  background: linear-gradient(249deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 50%, rgba(218, 247, 158, 0.8392156863) 50%, rgba(218, 247, 158, 0.8392156863) 100%);
}

/*
  Section
*/
.main {
  padding-top: 56px;
}
@media screen and (min-width: 1025px) {
  .main {
    padding-top: 66px;
  }
}

.sec {
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .sec {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.sec__header {
  margin: 0;
  padding-left: 4%;
  padding-right: 4%;
  font-size: 22px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .sec__header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.sec__content {
  margin-top: 40px;
  background-color: #fff;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1025px) {
  .sec__content {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*
  Content
*/
.content {
  margin: 0 auto 0;
  max-width: 1200px;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1025px) {
  .content {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.content__txt-ib {
  display: inline-block;
}
.content__header {
  position: relative;
  text-align: center;
  padding-bottom: 50px;
  background: no-repeat center bottom 25px/auto 15px;
  font-family: "notoSerifJP", YuMincho, "Yu Mincho", serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.content__header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 24px;
  background: url("../img/common/hd_border.svg") no-repeat center bottom/280px auto;
}
.content__header--honeymoon-menu {
  background-image: url("../img/common/hd_honeymoon-menu.svg");
  background-size: auto 18px;
}
.content__header--search {
  background-image: url("../img/common/hd_search.svg");
  background-size: auto 18px;
}
.content__header--feature-articles {
  background-image: url("../img/common/hd_feature-articles.svg");
}
.content__header--related-articles {
  background-image: url("../img/common/hd_related-articles.svg");
}
.content__header--application-form {
  background-image: url("../img/common/hd_application-form.svg");
  background-size: auto 18px;
}
.content__header--404 {
  padding-bottom: 20px;
}
@media screen and (min-width: 600px) {
  .content__header {
    font-size: 24px;
    line-height: 1;
    padding-bottom: 60px;
    background-size: auto 20px;
  }
  .content__header--404 {
    padding-bottom: 30px;
  }
  .content__header::after {
    height: 28px;
    background-size: 350px auto;
  }
  .content__header--search, .content__header--honeymoon-menu, .content__header--application-form {
    background-size: auto 22px;
  }
}
@media screen and (min-width: 1200px) {
  .content__header {
    font-size: 28px;
    line-height: 1;
    padding-bottom: 70px;
    background-position: center bottom 30px;
    background-size: auto 24px;
  }
  .content__header--404 {
    padding-bottom: 30px;
  }
  .content__header::after {
    height: 30px;
    background-size: 400px auto;
  }
  .content__header--search, .content__header--honeymoon-menu {
    background-size: auto 28px;
  }
}

/* archive, ４０４ */
.archive,
.page404,
.contact {
  margin-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .archive,
  .page404,
  .contact {
    margin-top: 60px;
    padding-bottom: 60px;
  }
}

.shadowbox-wrap {
  padding: 10px;
}

.shadowbox {
  box-shadow: 0px 3px 8px rgba(0, 0, 0, 0.4);
  transition: box-shadow 0.3s;
}
.shadowbox:hover {
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.4);
}

.no-post {
  margin: 0 auto 0;
  max-width: 1200px;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: center;
}
@media screen and (min-width: 600px) {
  .no-post {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.header404 {
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (min-width: 600px) {
  .header404 {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.3333333333;
  }
}

.paginate {
  margin: 60px auto 0;
  max-width: 1200px;
}

.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style: none;
  padding-left: 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .page-numbers {
    gap: 30px;
    font-size: 22px;
    line-height: 1;
  }
}
.page-numbers a, .page-numbers span {
  display: block;
  padding: 10px;
}
.page-numbers .prev, .page-numbers .next {
  width: 2em;
  height: 2em;
  background: no-repeat center/cover;
}
.page-numbers .prev {
  background-image: url("../img/common/btn_arrow-left.svg");
}
.page-numbers .next {
  background-image: url("../img/common/btn_arrow-right.svg");
}
.page-numbers .current {
  background: linear-gradient(transparent 80%, #c7ece6 0%);
}

/*
  Button
*/
.btn {
  margin: 40px auto 0;
  max-width: 1200px;
  min-width: 280px;
  max-width: 500px;
  width: 80%;
  background-image: linear-gradient(150deg, rgb(32, 237, 237), rgb(176, 229, 179) 20%, rgb(229, 229, 126) 25%, rgb(175, 229, 132) 30%, rgb(46, 229, 68) 50%, rgb(175, 229, 132) 70%, rgb(229, 229, 126) 75%, rgb(176, 229, 179) 80%, rgb(32, 237, 237));
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: background-position 0.3s ease-out;
}
.btn--sticky {
  position: sticky;
  bottom: 20px;
  z-index: 1;
  width: 500px;
  min-width: 217px;
  max-width: 68%;
  opacity: 0;
  animation: fadeIn-fromBottom 0.5s ease 2s 1 normal forwards;
}
.btn:hover {
  background-position: 99% 50%;
}
.btn__link {
  display: block;
  padding: 6px;
}
.btn__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 14px;
}
.btn__txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.625;
}

.btn_mt_none {
  margin: 0 auto 0;
  max-width: 1200px;
  min-width: 280px;
  max-width: 500px;
  width: 80%;
  background-image: linear-gradient(150deg, rgb(32, 237, 237), rgb(176, 229, 179) 20%, rgb(229, 229, 126) 25%, rgb(175, 229, 132) 30%, rgb(46, 229, 68) 50%, rgb(175, 229, 132) 70%, rgb(229, 229, 126) 75%, rgb(176, 229, 179) 80%, rgb(32, 237, 237));
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: background-position 0.3s ease-out;
}
.btn_mt_none--sticky {
  position: sticky;
  bottom: 20px;
  z-index: 1;
  width: 500px;
  min-width: 217px;
  max-width: 68%;
  opacity: 0;
  animation: fadeIn-fromBottom 0.5s ease 2s 1 normal forwards;
}
.btn_mt_none:hover {
  background-position: 99% 50%;
}
.btn_mt_none__link {
  display: block;
  padding: 6px;
}
.btn_mt_none__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 14px;
}
.btn_mt_none__txt {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.625;
}

.btn-wrap {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin: 40px auto 0;
  max-width: 1200px;
  padding-left: 4%;
  padding-right: calc(8% + 45px);
  max-width: 800px;
}
.btn-wrap--sticky {
  position: sticky;
  bottom: 20px;
  z-index: 1;
  opacity: 0;
  animation: fadeIn-fromBottom 0.5s ease 2s 1 normal forwards;
}
@media screen and (min-width: 600px) {
  .btn-wrap {
    gap: 30px;
  }
}
@media screen and (min-width: 1025px) {
  .btn-wrap {
    padding-left: 0;
    padding-right: 0;
  }
}
.btn-wrap__btn {
  flex-grow: 1;
  background-image: linear-gradient(150deg, rgb(32, 237, 237), rgb(176, 229, 179) 20%, rgb(229, 229, 126) 25%, rgb(175, 229, 132) 30%, rgb(46, 229, 68) 50%, rgb(175, 229, 132) 70%, rgb(229, 229, 126) 75%, rgb(176, 229, 179) 80%, rgb(32, 237, 237));
  background-position: 1% 50%;
  background-size: 200% auto;
  transition: background-position 0.3s ease-out;
}
.btn-wrap__btn:hover {
  background-position: 99% 50%;
}
.btn-wrap__link {
  display: block;
  padding: 6px;
  height: 100%;
}
.btn-wrap__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  padding: 10px;
  height: inherit;
}
.btn-wrap__txt {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3571428571;
}
@media screen and (min-width: 600px) {
  .btn-wrap__txt {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.375;
  }
}
.btn-wrap__line-btn {
  flex-grow: 1;
  background-color: #06c755;
  border-radius: 4px;
  opacity: 1;
  transition: opacity 0.3s ease-out;
}
.btn-wrap__line-btn:hover {
  opacity: 0.9;
}
.btn-wrap__line-link {
  display: block;
  height: 100%;
}
.btn-wrap__line-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  height: inherit;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3571428571;
  color: #fff;
}
.btn-wrap__line-txt::before {
  content: "";
  margin-right: 10%;
  height: 100%;
  aspect-ratio: 1;
  background: url("../img/common/btn_line.png") no-repeat center/contain;
}
@media screen and (min-width: 600px) {
  .btn-wrap__line-txt {
    font-size: 16px;
    font-weight: bold;
    line-height: 1.375;
  }
}

/*
  Post attributes
*/
.post-attrs {
  margin-top: 20px;
}
.post-attrs--archive {
  text-align: center;
}
.post-attrs__attr {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 6px 8px;
  border-radius: 4px;
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .post-attrs__attr {
    font-size: 14px;
    line-height: 1;
    padding: 8px 10px;
  }
}
.post-attrs__attr--theme {
  border: 2px solid #d0f2b2;
}
.post-attrs__attr--area {
  padding-left: 24px;
  border: 2px solid #badaeb;
  background: url("../img/common/icon_area.svg") no-repeat left 4px center/16px auto;
}
@media screen and (min-width: 600px) {
  .post-attrs__attr--area {
    padding-left: 28px;
    background: url("../img/common/icon_area.svg") no-repeat left 6px center/18px auto;
  }
}
.post-attrs__attr--cat {
  border: 2px solid #ffcab6;
}

/*
  Related articles
*/
.related {
  margin: 0 auto 0;
  max-width: 1200px;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1025px) {
  .related {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (min-width: 1025px) {
  .related__wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0 60px;
    margin-top: -40px;
  }
}
@media screen and (min-width: 1025px) {
  .related__item {
    flex-basis: calc((100% - 60px) / 2);
  }
}
@media screen and (min-width: 1200px) {
  .related__item {
    flex-basis: calc((100% - 120px) / 3);
  }
}
.related__post {
  margin-top: 30px;
}
.related__link {
  display: block;
}
.related__post-inner {
  display: flex;
}
@media screen and (min-width: 1025px) {
  .related__post-inner {
    flex-direction: column;
  }
}
.related__tmb {
  flex-basis: 48%;
  margin-right: 5%;
}
@media screen and (min-width: 1025px) {
  .related__tmb {
    flex-basis: 100%;
    margin-right: 0;
  }
}
.related__txt {
  flex-basis: 48%;
  max-height: 36.8vw;
  overflow: hidden;
  position: relative;
}
.related__txt::after {
  content: "詳細を見る ▶";
  position: absolute;
  bottom: 0;
  right: 0;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  width: 100%;
  height: 4.5em;
  background: linear-gradient(to top, #fff 20%, rgba(255, 255, 255, 0));
  color: #72b5ab;
  font-size: 13px;
  line-height: 1;
}
@media screen and (min-width: 1025px) {
  .related__txt {
    flex-basis: 100%;
    margin-top: 30px;
    max-height: 200px;
  }
}
.related__ttl {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.375;
}
@media screen and (min-width: 600px) {
  .related__ttl {
    font-size: 18px;
    line-height: 1.3888888889;
  }
}
.related__desc {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6428571429;
}
@media screen and (min-width: 600px) {
  .related__desc {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.625;
  }
}

/*
Feature articles
*/
.feature-wrap {
  margin-top: 30px;
}

.feature {
  position: relative;
  padding-top: 40px;
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .feature {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.feature::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.feature--legend::before {
  background-color: #f9eaf1;
}
.feature--photo::before {
  background-color: #edfae1;
}
.feature--case::before {
  background-color: #f0e6f5;
}
.feature__header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  padding-left: 4%;
  padding-right: 4%;
}
.feature__header::before, .feature__header::after {
  content: "";
  width: 40px;
  height: 50px;
  background: no-repeat center/contain;
}
.feature__header--legend::before {
  background-image: url("../img/common/img_legend-l.svg");
}
.feature__header--legend::after {
  background-image: url("../img/common/img_legend-r.svg");
}
.feature__header--photo::after {
  background-image: url("../img/common/img_photo.svg");
}
.feature__header--case::before {
  background-image: url("../img/common/img_case.svg");
}
.feature__header--bachelor::after {
  background-image: url("../img/common/img_bachelor.svg");
}
@media screen and (min-width: 600px) {
  .feature__header::before, .feature__header::after {
    width: 45px;
    height: 55px;
  }
}
@media screen and (min-width: 1025px) {
  .feature__header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.feature__header-inner {
  position: relative;
  text-align: center;
}
.feature__header-inner::before {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  width: 0;
  height: 10px;
  margin: auto;
  transition: width 0.3s ease-in;
}
.feature__header-inner--legend::before {
  background-color: #f2a7ca;
}
.feature__header-inner--photo::before {
  background-color: #c0e4a0;
}
.feature__header-inner--case::before {
  background-color: #dba7f2;
}
.feature__header-inner--bachelor::before {
  background-color: #f2a7a7;
}
@media screen and (min-width: 600px) {
  .feature__header-inner {
    font-size: 20px;
  }
}
.feature__header-inner.active::before {
  width: 100%;
}
.feature__banner {
  margin: 30px auto 0;
  max-width: 500px;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1025px) {
  .feature__banner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/*
  Pankuzu
*/
.pankuzu {
  position: relative;
  margin: 0 0 10px;
  border-top: 1px solid #333;
  border-bottom: 1px solid #333;
}
.pankuzu::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
}
.pankuzu__list {
  list-style: none;
  margin: 0 auto 0;
  max-width: 1200px;
  padding: 10px 0 10px 4%;
  overflow-x: auto;
  white-space: nowrap;
}
@media screen and (min-width: 1025px) {
  .pankuzu__list {
    padding-left: 20px;
  }
}
.pankuzu__item {
  display: inline-block;
  padding: 6px 0;
  font-size: 12px;
  line-height: 1;
}
.pankuzu__item + .pankuzu__item {
  margin-left: 0.2em;
}
.pankuzu__item + .pankuzu__item::before {
  content: "▶";
  color: #72b5ab;
  font-size: 10px;
  line-height: 1;
}
.pankuzu__link {
  padding-left: 0.2em;
}

/*
  Footer
*/
.footer-wrap {
  position: sticky;
  top: 100vh;
}

.footer {
  background-color: #c7ece6;
  padding: 40px 0 20px;
}

.sns-btn {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 4%;
  padding-right: 4%;
  background-color: #fff;
}
.sns-btn__line-catch {
  text-align: center;
  color: #06c755;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .sns-btn__line-catch {
    font-size: 16px;
    line-height: 1;
  }
}
.sns-btn__line-catch::before {
  content: "＼";
}
.sns-btn__line-catch::after {
  content: "／";
}
.sns-btn__btnwrap {
  display: flex;
  justify-content: center;
  margin-top: 10px;
  gap: 40px;
}
@media screen and (min-width: 600px) {
  .sns-btn__btnwrap {
    margin-top: 20px;
  }
}
.sns-btn__item {
  width: 40px;
}
.sns-btn__link {
  display: block;
}

.index ~ .footer-wrap > .sns-btn {
  position: relative;
  border-top: 1px solid #333;
}
.index ~ .footer-wrap > .sns-btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ccc;
}

.footer-nav {
  margin: 0 auto 0;
  max-width: 1200px;
  padding-left: 4%;
  padding-right: 4%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  -moz-column-gap: 10%;
       column-gap: 10%;
}
@media screen and (min-width: 1025px) {
  .footer-nav {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer-nav__list {
  list-style: none;
  padding: 0;
}
.footer-nav__link {
  font-size: 14px;
  font-weight: bold;
  line-height: 3;
}
.footer-nav__link--icon {
  font-weight: normal;
}
.footer-nav__link--icon::after {
  content: "";
  display: inline-block;
  margin-left: 0.2em;
  width: 1em;
  height: 1em;
  background: url("../img/common/icon_external_link.svg") no-repeat center/contain;
}

.copyright {
  display: block;
  margin: 30px auto 0;
  max-width: 1200px;
  padding-left: 4%;
  padding-right: calc(8% + 45px);
}
@media screen and (min-width: 600px) {
  .copyright {
    padding-right: 4%;
    text-align: center;
  }
}
@media screen and (min-width: 1025px) {
  .copyright {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.page-top {
  position: fixed;
  bottom: 20px;
  right: 4%;
  z-index: 3;
  width: 45px;
  height: 45px;
  background: #fff url("../img/common/btn_gotop.svg") no-repeat center/25px auto;
  border-radius: 6px;
  cursor: pointer;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s;
}
.page-top.on {
  pointer-events: auto;
  opacity: 1;
}
.page-top:hover {
  opacity: 0.8;
}
@media screen and (min-width: 1025px) {
  .page-top {
    right: 20px;
  }
}
@media screen and (min-width: 1350px) {
  .page-top {
    right: calc(50% - 665px);
  }
}

/*
  Search modal
*/
.search-modal {
  display: none;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  z-index: 5;
  transform: translateY(-50%);
  margin: auto;
  padding: 40px 20px;
  width: 90%;
  max-width: 800px;
  max-height: calc(var(--vh, 1vh) * 100 - 60px);
  min-height: 50vh;
  background-color: #fff;
  border-radius: 10px;
  display: none;
  opacity: 0;
}
.search-modal.on {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease-in 0s forwards;
}
.search-modal__close-btn {
  content: "";
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: url("../img/common/btn_close.svg") no-repeat center/cover;
  cursor: pointer;
}
@media screen and (min-width: 600px) {
  .search-modal__close-btn {
    width: 60px;
    height: 60px;
  }
}
.search-modal__inner {
  display: none;
  opacity: 0;
  height: calc(var(--vh, 1vh) * 100 - 200px);
}
@media screen and (min-aspect-ratio: 3/4) {
  .search-modal__inner {
    height: calc(var(--vh, 1vh) * 100 - 400px);
  }
}
.search-modal__inner--area {
  height: calc(var(--vh, 1vh) * 100 - 180px);
}
@media screen and (min-aspect-ratio: 3/4) {
  .search-modal__inner--area {
    height: calc(var(--vh, 1vh) * 100 - 140px);
  }
}
.search-modal__inner.on {
  display: block;
  opacity: 1;
  animation: fadeIn 0.3s ease-in 0s forwards;
}
.search-modal__header {
  padding-bottom: 30px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .search-modal__header {
    font-size: 18px;
    line-height: 1;
  }
}
.search-modal__list {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 20px;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 630px;
  height: calc(100% - 36px);
  overflow-y: auto;
}
@media screen and (min-width: 600px) {
  .search-modal__list {
    gap: 30px;
    height: calc(100% - 38px);
  }
}
.search-modal__item {
  flex-basis: calc((100% - 30px) / 2);
  flex-grow: 0;
  max-width: 300px;
}
.search-modal__link {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #c7ece6;
  border-radius: 6px;
  padding: 12px 10px;
  height: auto;
  min-height: 4em;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.2857142857;
  color: #333;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (min-width: 600px) {
  .search-modal__link {
    padding: 16px 10px;
  }
}
.search-modal__link:hover {
  background-color: #72b5ab;
  color: #fff;
}
.search-modal__map-wrap {
  position: relative;
  height: calc(100% - 36px);
  overflow-y: auto;
}
@media screen and (min-width: 600px) {
  .search-modal__map-wrap {
    height: calc(100% - 38px);
  }
}
.search-modal__map {
  display: block;
  margin: 0 auto;
  height: inherit;
}

.region-btn {
  position: absolute;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  background-color: #6ec1ee;
  border-radius: 6px;
  border: 3px solid #fff;
  padding: 10px;
  transition: background-color 0.3s;
  font-size: 14px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .region-btn {
    padding: 20px;
    font-size: 16px;
    font-weight: bold;
    line-height: 1;
  }
}
.region-btn::after {
  content: "";
  display: inline-block;
  margin-left: 0.5em;
  width: 1.2em;
  height: 1.2em;
  background-color: #fff;
  -webkit-mask: url("../img/common/icon_circle_arrow.svg") no-repeat center/contain;
          mask: url("../img/common/icon_circle_arrow.svg") no-repeat center/contain;
}
.region-btn:hover {
  background-color: #89caed;
}
.region-btn--disabled {
  background-color: #bbb;
  pointer-events: none;
}
.region-btn--disabled::after {
  content: none;
}
.region-btn--north {
  right: 30%;
  top: 30%;
}
@media screen and (min-aspect-ratio: 3/4) {
  .region-btn--north {
    right: 15%;
    top: 30%;
  }
}
.region-btn--middle {
  left: 30%;
  bottom: 30%;
}
@media screen and (min-aspect-ratio: 3/4) {
  .region-btn--middle {
    left: 15%;
    bottom: 30%;
  }
}
.region-btn--south {
  left: 12%;
  bottom: 0;
}
@media screen and (min-aspect-ratio: 3/4) {
  .region-btn--south {
    left: 10%;
    bottom: 10%;
  }
}

a.region-btn {
  color: #fff;
}

/*
  Swiper slide
*/
.content .swiper {
  opacity: 0;
}

.swiper.active.swiper-initialized {
  animation: fadeIn-fromBottom 0.5s ease 0.3s 1 normal forwards;
}

/*
  Detail
*/
.single .post-attrs {
  text-align: left;
}
.single__header {
  margin: 0 auto 0;
  max-width: 800px;
}
.single__content {
  position: relative;
  margin-top: 30px;
  padding-bottom: 60px;
}
.single__cachcopy {
  font-family: "notoSerifJP", YuMincho, "Yu Mincho", serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.3888888889;
}
@media screen and (min-width: 600px) {
  .single__cachcopy {
    font-size: 20px;
    line-height: 1.4;
  }
}
.single__desc {
  margin-top: 20px;
  font-size: 14px;
  line-height: 1.6428571429;
}
@media screen and (min-width: 600px) {
  .single__desc {
    font-size: 16px;
    line-height: 1.625;
  }
}
.single__desc > p + p {
  margin-top: 0.8em;
}
.single__image {
  flex-basis: 42%;
  flex-shrink: 0;
}
.single__txt {
  margin-top: 20px;
}

.single-info {
  margin-top: 40px;
  padding: 20px;
  background-color: #fffbf4;
}
.single-info__item {
  font-size: 16px;
  font-weight: bold;
  line-height: 1;
}
.single-info__desc {
  margin-top: 6px;
  padding-left: 1em;
}
.single-info__desc + .single-info__item {
  margin-top: 20px;
}
.single-info--menu {
  background-color: transparent;
  border-top: 1px solid #999;
  border-bottom: 1px solid #999;
}
.single-info--menu .single-info__desc {
  margin-top: 6px;
  padding-left: 1em;
  font-size: 14px;
  line-height: 1.6428571429;
}

/*
  TOPページとプラン一覧ページで使用
*/
.menus__list {
  list-style: none;
  padding-left: 0;
  padding-bottom: 40px;
}
@media screen and (min-width: 600px) {
  .menus__list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1020px;
    margin: 60px auto 0;
    padding-bottom: 60px;
  }
}
@media screen and (min-width: 1200px) {
  .menus__list {
    max-width: none;
  }
}
.menus__item {
  margin-top: 30px;
}
@media screen and (min-width: 600px) {
  .menus__item {
    flex-basis: calc((100% - 20px) / 2);
    max-width: 500px;
    margin-top: 0;
  }
}
@media screen and (min-width: 1200px) {
  .menus__item {
    flex-basis: calc((100% - 40px) / 3);
  }
}
.menus__box {
  height: 100%;
}
.menus__link {
  display: block;
  position: relative;
  padding: 10px 10px 20px;
  background-color: #fff;
  height: 100%;
}
.menus__link::after {
  content: "";
  position: absolute;
  bottom: 20px;
  right: 0;
  padding: 0 10px;
  width: 100%;
  height: 5em;
  background: linear-gradient(to top, #fff 20%, rgba(255, 255, 255, 0));
}
.menus__link::before {
  content: "詳細を見る ▶";
  position: absolute;
  bottom: 15px;
  right: 20px;
  display: grid;
  place-content: center;
  padding: 5px 10px;
  background: #00cd68;
  color: #fff;
  border-radius: 30px;
  font-size: 13px;
  line-height: 1;
  z-index: 3;
}
@media screen and (min-width: 1025px) {
  .menus__link {
    padding: 16px 16px 24px;
  }
  .menus__link::after {
    bottom: 24px;
    padding: 0 16px;
  }
}
.menus__tmb {
  aspect-ratio: 3/2;
}
.menus__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.menus__ttl {
  display: flex;
  align-items: center;
  margin-top: 10px;
  min-height: 3.25em;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.625;
}
@media screen and (min-width: 600px) {
  .menus__ttl {
    font-size: 18px;
    line-height: 1.3333333333;
    min-height: 2.6666666667em;
  }
}
.menus__desc {
  margin-top: 20px;
  min-height: 4.5em;
  max-height: 6em;
  overflow: hidden;
  font-size: 14px;
  line-height: 1.4285714286;
}
@media screen and (min-width: 1025px) {
  .menus__desc {
    margin-top: 30px;
  }
}
.menus__hotel {
  padding-left: 30px;
  margin-top: 10px;
  background: url("../img/common/icon_hotel.png") no-repeat left 4px center/16px auto;
}
.menus__period {
  margin-top: 10px;
}
.menus__period span {
  font-weight: bold;
  font-size: 18px;
}
.menus__area {
  margin-top: 10px;
}

/*
  Detail
*/
.menu__ttl {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  margin: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0));
  color: #fff;
  padding-top: 30px;
  padding-bottom: 20px;
  padding-left: 4%;
  padding-right: 4%;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.25;
}
@media screen and (min-width: 600px) {
  .menu__ttl {
    font-size: 22px;
    line-height: 1.3636363636;
  }
}
@media screen and (min-width: 1025px) {
  .menu__ttl {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.menu__mainimage {
  position: relative;
  aspect-ratio: 3/2;
  background-color: #333;
}
.menu__img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  margin: 0 auto;
}
.menu__schedule {
  margin: 80px auto 0;
  max-width: 1200px;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1025px) {
  .menu__schedule {
    margin-top: 100px;
    padding-left: 20px;
    padding-right: 20px;
  }
}
.menu__timezone + .menu__timezone {
  margin-top: 60px;
}
@media screen and (min-width: 600px) {
  .menu__timezone + .menu__timezone {
    margin-top: 80px;
  }
}
.menu__timezone-header {
  display: inline-block;
  position: relative;
  height: 30px;
}
@media screen and (min-width: 600px) {
  .menu__timezone-header {
    height: 40px;
  }
}
@media screen and (min-width: 1025px) {
  .menu__timezone-header {
    height: 50px;
  }
}
.menu__timezone-header::before, .menu__timezone-header::after {
  content: "";
  position: absolute;
  display: block;
  width: 70px;
}
@media screen and (min-width: 600px) {
  .menu__timezone-header::before, .menu__timezone-header::after {
    width: 80px;
  }
}
@media screen and (min-width: 1025px) {
  .menu__timezone-header::before, .menu__timezone-header::after {
    width: 90px;
  }
}
.menu__timezone-header::before {
  aspect-ratio: 1;
  background: no-repeat center/contain;
  top: 50%;
  left: 70%;
  z-index: -2;
  transform: translateY(-50%);
}
.menu__timezone-header::after {
  aspect-ratio: 2;
  background: #fff;
  top: 50%;
  left: 70%;
  z-index: -1;
}
.menu__timezone-header--morning::before {
  background-image: url("../img/menu/hd_sun_pink.svg");
}
.menu__timezone-header--noon::before {
  background-image: url("../img/menu/hd_sun_red.svg");
  width: 60px;
}
@media screen and (min-width: 600px) {
  .menu__timezone-header--noon::before {
    width: 70px;
  }
}
@media screen and (min-width: 1025px) {
  .menu__timezone-header--noon::before {
    width: 80px;
  }
}
.menu__timezone-header--afternoon::before {
  background-image: url("../img/menu/hd_sun_orange.svg");
}
.menu__timezone-header--noon::after {
  content: none;
}
.menu__timezone-img {
  position: relative;
  width: auto;
  height: 100%;
}

.menu-desc {
  margin: 0 auto 0;
  max-width: 800px;
  padding-left: 4%;
  padding-right: 4%;
}
@media screen and (min-width: 1025px) {
  .menu-desc {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.menu-point {
  position: relative;
  margin-top: 40px;
  padding: 30px 20px 20px;
  border: 4px solid #c7ece6;
  border-radius: 4px;
}
@media screen and (min-width: 600px) {
  .menu-point {
    margin-top: 60px;
  }
}
.menu-point__header {
  display: inline-block;
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 0.5em;
  font-size: 22px;
  font-weight: bold;
  line-height: 1;
}
@media screen and (min-width: 600px) {
  .menu-point__header {
    font-size: 26px;
    font-weight: bold;
    line-height: 1;
  }
}
.menu-point__header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.menu-point__list {
  list-style: none;
  padding-left: 0;
}
.menu-point__item {
  padding: 6px 0 6px 30px;
  background: no-repeat left top/auto 30px;
  font-size: 14px;
  line-height: 1.6428571429;
}
@media screen and (min-width: 600px) {
  .menu-point__item {
    padding: 10px 0 10px 40px;
    background-size: auto 35px;
    font-size: 16px;
    line-height: 1.625;
  }
}
.menu-point__item:first-of-type {
  background-image: url("../img/menu/icon_point_1.svg");
}
.menu-point__item:nth-of-type(2) {
  background-image: url("../img/menu/icon_point_2.svg");
}
.menu-point__item:nth-of-type(3) {
  background-image: url("../img/menu/icon_point_3.svg");
}
.menu-point__item:nth-of-type(4) {
  background-image: url("../img/menu/icon_point_4.svg");
}
.menu-point__item:nth-of-type(5) {
  background-image: url("../img/menu/icon_point_5.svg");
}

@media screen and (min-width: 600px) {
  .single-info--menu {
    margin-top: 60px;
  }
}
@media screen and (min-width: 600px) {
  .single-info--menu .single-info__desc {
    font-size: 16px;
    line-height: 1.625;
  }
}
.single-info--menu .single-info__desc-link {
  text-decoration: underline;
}

.menu-itinerary {
  position: relative;
  margin-top: 30px;
  padding: 20px;
  background-color: #fffbf4;
}
@media screen and (min-width: 600px) {
  .menu-itinerary {
    margin-top: 60px;
  }
}
.menu-itinerary::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 20px solid rgba(255, 255, 255, 0);
  border-bottom: 20px solid rgba(255, 255, 255, 0);
  transform-origin: center right;
  transform: rotate(-45deg);
}
.menu-itinerary__shadow {
  position: absolute;
  top: 6px;
  left: 6px;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-color: #d5c9b1;
}
.menu-itinerary__shadow::after {
  content: "";
  position: absolute;
  top: -20px;
  right: 0;
  width: 0;
  height: 0;
  border-left: 20px solid #fff;
  border-top: 20px solid rgba(255, 255, 255, 0);
  border-bottom: 20px solid rgba(255, 255, 255, 0);
  transform-origin: center right;
  transform: rotate(-45deg);
}
.menu-itinerary__header {
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
}
.menu-itinerary__list {
  position: relative;
  margin-top: 30px;
  list-style: none;
  padding-left: 0;
}
.menu-itinerary__list::before {
  content: "";
  position: absolute;
  top: 9px;
  left: 9px;
  width: 2px;
  height: calc(100% - 9px);
  background-color: #72b5ab;
}
.menu-itinerary__item {
  display: flex;
  position: relative;
  opacity: 0;
}
.menu-itinerary__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  background-color: #72b5ab;
  border: 2px solid #fff;
  border-radius: 50%;
}
.menu-itinerary__item:last-of-type::before {
  content: none;
}
.menu-itinerary__time {
  padding: 0 0 20px 30px;
  flex-basis: 5em;
  flex-grow: 0;
  flex-shrink: 0;
}
.menu-itinerary__link {
  display: inline-block;
  padding: 0 0 20px 20px;
}

a.menu-itinerary__link {
  text-decoration: underline;
}

.menu-itinerary.active .menu-itinerary__item {
  animation: fadeIn-fromBottom 0.5s ease normal forwards;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(1) {
  animation-delay: 0.3s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(2) {
  animation-delay: 0.6s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(3) {
  animation-delay: 0.9s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(4) {
  animation-delay: 1.2s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(5) {
  animation-delay: 1.5s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(6) {
  animation-delay: 1.8s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(7) {
  animation-delay: 2.1s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(8) {
  animation-delay: 2.4s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(9) {
  animation-delay: 2.7s;
}
.menu-itinerary.active .menu-itinerary__item:nth-of-type(10) {
  animation-delay: 3s;
}

.menuitem {
  margin-top: 20px;
}
.menuitem + .menuitem {
  margin-top: 60px;
}
@media screen and (min-width: 1025px) {
  .menuitem + .menuitem {
    margin-top: 80px;
  }
}
.menuitem__header {
  border: 1px solid #333;
  border-radius: 8px;
  background-color: #fff;
  margin: 0 auto 0;
  max-width: 800px;
  padding: 10px;
}
@media screen and (min-width: 600px) {
  .menuitem__header {
    padding: 16px;
  }
}
.menuitem__ttl {
  margin-top: 10px;
  font-size: 18px;
  font-weight: bold;
  line-height: 1.3888888889;
}
@media screen and (min-width: 600px) {
  .menuitem__ttl {
    font-size: 20px;
    line-height: 1.4;
  }
}
.menuitem__desc {
  margin: 20px auto 0;
  max-width: 800px;
  font-size: 14px;
  line-height: 1.6428571429;
}
@media screen and (min-width: 600px) {
  .menuitem__desc {
    margin-top: 30px;
    font-size: 16px;
    line-height: 1.625;
  }
}
.menuitem__desc > p + p {
  margin-top: 0.8em;
}

/*
  Slide area
*/
.menuitem__slide {
  padding: 30px 0;
}
@media screen and (min-width: 600px) {
  .menuitem__slide {
    padding: 100px 0 120px;
  }
}

.menuitem__slide-item {
  aspect-ratio: 3/2;
  background-color: #fff;
  transition: transform 0.7s;
}

@media screen and (min-width: 600px) {
  .swiper-slide-active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.5) !important;
  }
}

.menuitem__img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 600px) {
  .menuitem__img {
    opacity: 0.5;
    overflow: hidden;
    transition: opacity 0.7s;
  }
}

@media screen and (min-width: 600px) {
  .swiper-slide-active .menuitem__img {
    opacity: 1;
    z-index: 1;
  }
}

.swiper-horizontal > .swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 0;
}

.swiper-pagination-bullet-active {
  background-color: #72b5ab;
}

.swiper-button-prev,
.swiper-button-next {
  height: 40px !important;
  width: 40px !important;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  content: "" !important;
  background: no-repeat center/contain;
  margin: auto;
  height: 100%;
  width: 100%;
}

.swiper-button-prev:after {
  background-image: url("../img/common/btn_arrow-left.svg");
}

.swiper-button-next:after {
  background-image: url("../img/common/btn_arrow-right.svg");
}/*# sourceMappingURL=menu.css.map */