@charset "UTF-8";
/*!
global > color
------------------------------
*/
:root {
  --color-black: #333;
  --color-white: #fff;
  --color-green: #1d895b;
  --color-green-light: #eaf3d5;
  --color-yellow: #fabe00;
  --color-yellow-light: #ffee7d;
  --color-brown: #ae7d20;
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-ss: 630px;
  --width-content-s: 800px;
  --width-content: 1000px;
  --width-content-l: 1200px;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif !important;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-default: 1;
  --z-index-loading: 99;
  --z-index-page-top: 98;
}

/*!
foundation > reset
------------------------------
*/
/* CSS Document */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  vertical-align: baseline;
  box-sizing: border-box;
}

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

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

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

a {
  margin: 0;
  padding: 0;
  vertical-align: baseline;
  text-decoration: none;
  color: inherit;
}

b {
  font-weight: bold;
}

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

input, select {
  vertical-align: middle;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

button {
  line-height: 1;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

*:focus {
  outline: none;
}

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

img {
  width: auto;
  max-width: 100%;
  height: auto;
  border-style: none;
  vertical-align: bottom;
}

p {
  word-break: break-all;
}

/*!
foundation > base
------------------------------
*/
html {
  scroll-behavior: smooth;
}

body {
  width: 100%;
  min-height: 100vh;
  min-height: 100dvh;
  line-height: 1.4;
  font-size: 16px;
  font-weight: 500;
  color: var(--color-black);
  background-color: var(--color-white);
  font-family: var(--font-family-base);
  position: relative;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  body {
    font-size: 14px;
  }
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.3;
}

main {
  width: 100%;
  overflow-x: hidden;
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  main {
    padding-bottom: 80px;
  }
}

a:hover {
  opacity: 0.8;
  transition: all 0.2s;
}

.l-wrapper {
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.l-wrapper .main {
  flex: 1;
}

/* TEL無効 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
/* loading */
.loading {
  transition: all 0.5s;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  background-color: var(--color-white);
  z-index: var(--z-index-loading);
}

.loading.loaded {
  opacity: 0;
  visibility: hidden;
}

.zen-maru {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

/*!
utility > utility
------------------------------
*/
.bold {
  font-weight: bold !important;
}

.al-l {
  text-align: left !important;
}

.al-r {
  text-align: right !important;
}

.al-c {
  text-align: center !important;
}

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

.ib {
  display: inline-block;
}

.ls-reset {
  letter-spacing: normal !important;
}

.c-green {
  color: var(--color-green);
}

.fs12 {
  font-size: 12px !important;
}

.fs13 {
  font-size: 13px !important;
}

.fs14 {
  font-size: 14px !important;
}

.sp {
  display: none !important;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block !important;
  }
}

.pc {
  display: block !important;
}
@media screen and (max-width: 767px) {
  .pc {
    display: none !important;
  }
}

br.pc,
br.sp {
  font-size: 0;
}

.u-visually-hidden {
  position: absolute !important;
  white-space: nowrap !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  border: 0 !important;
  padding: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
}

.pt0 {
  padding-top: 0 !important;
}

.pb0 {
  padding-bottom: 0 !important;
}

.u-ptb {
  padding: 40px 0;
}

.u-mtb-30 {
  margin: 30px 0;
}

.u-mtb-20 {
  margin: 20px 0;
}

.u-mtb-5 {
  margin: 5px 0;
}

.u-mtb-10 {
  margin: 10px 0;
}

.u-mt-1em {
  margin-top: 1em !important;
}

.u-mt-0 {
  margin-top: 0 !important;
}

.u-mt-5 {
  margin-top: 5px !important;
}

.u-mt-10 {
  margin-top: 10px !important;
}

.u-mt-15 {
  margin-top: 15px !important;
}

.u-mt-20 {
  margin-top: 20px !important;
}

.u-mt-30 {
  margin-top: 20px !important;
}

.u-mb-1em {
  margin-bottom: 1em !important;
}

.u-mb-0 {
  margin-bottom: 0px !important;
}

.u-mb-10 {
  margin-bottom: 10px !important;
}

.u-mb-15 {
  margin-bottom: 15px !important;
}

.u-mb-20 {
  margin-bottom: 20px !important;
}

/*!
component > title
------------------------------
*/
/* c-box-title */
.c-box-title {
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  background-color: var(--color-brown);
  padding: 0.43em 0.5em;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px 10px;
  position: relative;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .c-box-title {
    font-size: 22px;
    flex-direction: column;
    margin-bottom: 30px;
    padding: 10px 20px;
  }
}

.c-box-title::before, .c-box-title::after {
  content: "";
  width: 5px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .c-box-title::before, .c-box-title::after {
    width: 3px;
  }
}

.c-box-title::before {
  left: 10px;
}
@media screen and (max-width: 767px) {
  .c-box-title::before {
    left: 5px;
  }
}

.c-box-title::after {
  right: 10px;
}
@media screen and (max-width: 767px) {
  .c-box-title::after {
    right: 5px;
  }
}

.c-box-title--pl {
  padding-left: 3.2em;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .c-box-title--pl {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-box-title--pl {
    padding-left: 0.5em;
  }
}

.c-box-title--pl2 {
  padding-left: 7.5em;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .c-box-title--pl2 {
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .c-box-title--pl2 {
    padding-left: 0.5em;
  }
}

.c-box-title--blk {
  background-color: #231815;
  border-radius: 4px;
  margin-bottom: 30px;
}

.c-box-title--blk::before,
.c-box-title--blk::after {
  content: none;
}

.c-box-title-main {
  display: inline-block;
  letter-spacing: 0.1em;
  padding-left: 0.1em;
}

.c-box-title-main .fs-s {
  font-size: 0.85em;
}

.c-box-title-sub {
  font-size: 14px;
}

.c-box-title-icon {
  color: var(--color-brown);
  font-size: 0.53em;
  letter-spacing: 0.06em;
  padding-left: 0.06em;
  display: inline-block;
  background-color: var(--color-yellow-light);
  border-radius: 100vh;
  padding: 0.4em 1.2em 0.3em;
}

/* coming soon */
.c-box-title .coming-soon {
  position: absolute;
  top: -18px;
  left: -10px;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .c-box-title .coming-soon {
    width: 30vw;
    top: -60px;
    left: 18px;
  }
}
@media screen and (max-width: 767px) {
  .c-box-title .coming-soon {
    width: 40vw;
    max-width: 200px;
    top: -33px;
    left: -18px;
  }
}

/* c-line-title */
.c-line-title {
  color: var(--color-green);
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  border-bottom: 2px solid var(--color-green);
  padding-bottom: 0.5em;
  margin-bottom: 25px;
}
@media screen and (max-width: 767px) {
  .c-line-title {
    margin-bottom: 20px;
  }
}

.c-line-title > span {
  display: inline-block;
  letter-spacing: 0.18em;
  padding-left: 0.18em;
}

/*!
component > button
------------------------------
*/
.c-button-area {
  margin-top: 50px;
}

.c-button {
  width: 330px;
  max-width: 100%;
  color: var(--color-green);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  background-color: var(--color-yellow);
  padding: 15px 1em;
  display: block;
  border-radius: 100vh;
  margin: 0 auto;
}

.c-button > span {
  position: relative;
  display: inline-block;
  letter-spacing: 0.05em;
  padding-left: 2em;
}

.c-button > span::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 22px;
  height: 22px;
  left: 0;
  margin: auto;
  border-radius: 50%;
  background-color: var(--color-green);
}

.c-button > span::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 0;
  height: 0;
  margin: auto;
  border-top: 5px solid transparent;
  border-right: 0 solid transparent;
  border-left: 8px solid #fff;
  border-bottom: 5px solid transparent;
  box-sizing: border-box;
}

.c-button2 {
  font-size: 17px;
  font-weight: bold;
  color: var(--color-white);
  letter-spacing: 0.08em;
  text-align: center;
  display: inline-block;
  background-color: #956134;
  padding: 0.25em 1.6em 0.3em;
  border-radius: 100vh;
  border: 2px solid var(--color-white);
  box-shadow: 2px 2px 0 rgba(0, 0, 0, 0.23);
  position: relative;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .c-button2 {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 767px) {
  .c-button2 {
    font-size: 17px;
  }
}

.c-button2::before {
  content: "";
  width: 0.47em;
  height: 0.82em;
  background-image: url("../img/icon-arrow-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
}

/*!
component > other
------------------------------
*/
.c-icon-scroll {
  display: none;
}
@media screen and (max-width: 767px) {
  .c-icon-scroll {
    display: flex;
    font-size: 11px;
    font-weight: bold;
    letter-spacing: 0.05em;
    flex-direction: column;
    align-items: flex-end;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 767px) {
  .c-icon-scroll > span {
    display: inline-block;
    opacity: 0;
    transform: translateX(-20px);
    -webkit-animation: fadeInLeft 1.5s ease-in-out infinite forwards;
            animation: fadeInLeft 1.5s ease-in-out infinite forwards;
  }
}

@-webkit-keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
/*!
layout > container
------------------------------
*/
.l-container-l, .l-container, .l-container-s, .l-container-ss {
  width: 90%;
  margin: 0 auto;
}

.l-container-ss {
  max-width: var(--width-content-ss);
}

.l-container-s {
  max-width: var(--width-content-s);
}

.l-container {
  max-width: var(--width-content);
}

.l-container-l {
  max-width: var(--width-content-l);
}

/*!
layout > header > header
------------------------------
*/
.header {
  width: 100%;
  height: 95px;
  background-color: var(--color-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .header {
    height: 70px;
    justify-content: space-between;
    align-items: center;
  }
}

.header-title {
  font-weight: bold;
  font-size: 17px;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .header-title {
    padding-left: 7%;
  }
}

.header-link {
  width: 320px;
  max-width: 100%;
  height: 100%;
  background-color: var(--color-green);
}

.header-link a {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .header-link.sp {
    width: 270px;
    max-width: 70%;
    display: inline-block;
    border: none;
    position: absolute;
    top: 5%;
    right: 3%;
    border-radius: 5px;
    height: auto;
    padding: 5px 10px;
  }
}
/*!
layout > footer > footer
------------------------------
*/
.footer {
  color: var(--color-white);
  height: 150px;
  background-color: var(--color-green);
  position: relative;
  padding: 25px 0 22px;
}
@media screen and (max-width: 767px) {
  .footer {
    height: 75px;
  }
}

.footer > .l-container {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .footer > .l-container {
    justify-content: center;
  }
}

.footer::before {
  content: "";
  width: 100%;
  height: 6px;
  background-color: var(--color-brown);
  position: absolute;
  top: -25px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .footer::before {
    height: 3px;
    top: -10px;
  }
}

.footer-text {
  font-size: 11px;
  line-height: 1.4;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .footer-text {
    font-size: 10px;
  }
}

/*!
layout > footer > page-top
------------------------------
*/
.page-top {
  display: none;
  position: fixed;
  bottom: 6vh;
  right: 3vw;
  z-index: 99;
  color: var(--color-white);
  background-color: #1d895b;
  border: 1px solid var(--color-white);
  opacity: 0.9;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .page-top {
    width: 40px;
    height: 40px;
    bottom: 10px;
    right: 2%;
    z-index: 99;
  }
}

.page-top:hover {
  background-color: #5a9e35;
}

.page-top::before {
  content: "";
  width: 20px;
  height: 20px;
  border: 10px solid transparent;
  border-bottom: 20px solid var(--color-white);
  position: absolute;
  top: 7px;
  left: 0;
  right: 0;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .page-top::before {
    width: 10px;
    height: 10px;
    border: 7px solid transparent;
    border-bottom: 15px solid var(--color-white);
    top: 3px;
  }
}

.page-top:hover {
  opacity: 0.7;
}

.page-top.is-show {
  opacity: 1;
  visibility: visible;
}

/*!
contents
------------------------------
*/
/* テキスト */
.cont-text-14 {
  font-size: 14px;
  line-height: 1.7;
}

.cont-text-15 {
  font-size: 15px;
  line-height: 1.7;
}

/* リスト */
.list > li {
  font-size: 15px;
  line-height: 1.8;
  padding-left: 1.2em;
  position: relative;
  display: inline-block;
  font-feature-settings: "palt";
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

.list.block > li {
  display: block;
  margin-right: 0;
}

.list > li::before {
  color: var(--color-green);
  content: "●";
  position: absolute;
  left: 0;
}

.list2 > li {
  font-size: 15px;
  line-height: 1.6;
  padding-left: 1.2em;
  position: relative;
  display: inline-block;
  font-feature-settings: "palt";
  margin-right: 0.5em;
  margin-bottom: 0.2em;
}

.list2.block > li {
  display: block;
  margin-right: 0;
}

.list2 > li::before {
  content: "・";
  position: absolute;
  left: 0;
}

.list-note > li {
  font-size: 12px;
  line-height: 1.4;
  padding-left: 1.2em;
  position: relative;
  display: inline-block;
  font-feature-settings: "palt";
  margin-right: 0.5em;
  margin-bottom: 0.5em;
}

.list-note > li::before {
  content: "※";
  position: absolute;
  left: 0;
}

.list-note.block > li {
  display: block;
  margin-right: 0;
}

.list-note > li.em {
  font-size: 14px;
  font-weight: bold;
}

.note-r {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: right;
}

.outline-wrap {
  width: 580px;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.outline-def {
  font-size: 15px;
  line-height: 1.6;
}

.fda-def {
  margin-top: 20px;
}

.outline-def,
.fda-def {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .outline-def,
.fda-def {
    flex-direction: column;
  }
}

.outline-dd > *:first-child {
  margin-top: 0;
}

.outline-dd:last-child {
  padding-bottom: 0;
}

.outline-def-item {
  margin-top: 15px;
}

.outline-def .green-box-text,
.fda-def .white-box-text {
  width: 120px;
  max-width: 100%;
  padding-left: 0.8em;
  padding-right: 0.8em;
}
@media screen and (max-width: 767px) {
  .outline-def .green-box-text,
.fda-def .white-box-text {
    width: 100%;
  }
}

.outline-text,
.fda-text {
  margin-top: 0.2em;
}

.outline-def .list-note > li {
  font-size: 13px;
}

/* 画像 2カラム */
.img-col2 {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2.4%;
}

.img-col2-item {
  width: 48.8%;
}

/* 画像+テキスト 2カラム */
.imgtext-col2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 4.76%;
}
@media screen and (max-width: 767px) {
  .imgtext-col2 {
    flex-direction: column;
    align-items: flex-start;
  }
}

.imgtext-img {
  width: 48.8%;
}
@media screen and (max-width: 767px) {
  .imgtext-img {
    width: 100%;
  }
}

.imgtext-text {
  flex: 1;
}

/* mv */
.mv {
  width: 100%;
  height: 54.16vw;
  max-height: 900px;
  background: url("../img/photo-mv-autumn.jpg") no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .mv {
    height: 100vw;
  }
}

.mv .l-container-l {
  height: 100%;
  position: relative;
}

.mv-catch {
  width: 62px;
  max-width: 5%;
  position: absolute;
  bottom: 180px;
  right: 135px;
}
@media screen and (max-width: 1200px) {
  .mv-catch {
    bottom: 15vw;
    right: 11.25vw;
  }
}
@media screen and (max-width: 767px) {
  .mv-catch {
    width: 11%;
    max-width: 100%;
    bottom: 12%;
    right: 0.5%;
  }
}

.mv::after {
  content: "";
  width: 100%;
  height: 95px;
  background: url("../img/bg-intro-top.png") repeat-x top center/1277px auto;
  position: absolute;
  bottom: -1px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .mv::after {
    height: 8.8vw;
    background: url("../img/bg-intro-top-sp.png") no-repeat top center/100% auto;
  }
}

/* intro */
.intro {
  padding: 50px 0 145px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .intro {
    padding-top: 35px;
    padding-bottom: 70px;
  }
}

.intro::before {
  content: "";
  width: 850px;
  height: 78px;
  background: url("../img/img-train-autumn.svg") no-repeat center center/contain;
  position: absolute;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .intro::before {
    width: 100%;
    height: 15vw;
    max-height: 70px;
    background-size: auto 100%;
  }
}

.intro .l-container-l {
  position: relative;
}

.intro .l-container-l::before {
  content: "";
  width: 44px;
  height: auto;
  aspect-ratio: 44/42;
  display: block;
  background: url("../img/bg-intro-bird.svg") no-repeat center center/contain;
  position: absolute;
  top: 20px;
  right: 210px;
}
@media screen and (max-width: 1100px) {
  .intro .l-container-l::before {
    width: 3.66vw;
    top: -60px;
  }
}
@media screen and (max-width: 767px) {
  .intro .l-container-l::before {
    width: 8vw;
    left: 76vw;
    top: 18vw;
  }
}

.intro .l-container-l::after {
  content: "";
  width: 100vw;
  height: 260px;
  background: linear-gradient(180deg, var(--color-white) 0%, #63b3e3 100%);
  position: absolute;
  bottom: -220px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1200px) {
  .intro .l-container-l::after {
    height: 21.66vw;
    bottom: -18.33vw;
  }
}
@media screen and (max-width: 767px) {
  .intro .l-container-l::after {
    height: 30vw;
    bottom: -27vw;
  }
}

.intro-inner {
  position: relative;
  z-index: 1;
}

.intro .intro-inner::before {
  content: "";
  width: 286px;
  height: auto;
  aspect-ratio: 286/230;
  display: block;
  background: url("../img/bg-intro-l.svg") no-repeat center center/contain;
  position: absolute;
  top: -30px;
  left: -100px;
}
@media screen and (max-width: 767px) {
  .intro .intro-inner::before {
    width: 30vw;
    left: -17vw;
    top: -3vw;
  }
}

.intro .intro-inner::after {
  content: "";
  width: 204px;
  height: 218px;
  display: block;
  background: url("../img/bg-intro-r.svg") no-repeat center center/contain;
  position: absolute;
  top: -30px;
  right: -35px;
}
@media screen and (max-width: 767px) {
  .intro .intro-inner::after {
    width: 30vw;
    right: -12vw;
    top: max(-17vw, -46px);
  }
}

.intro-title {
  color: var(--color-green);
  font-size: 31px;
  font-weight: bold;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .intro-title {
    font-size: 25px;
    line-height: 1.6;
  }
}

.intro-title > span {
  display: inline-block;
  letter-spacing: 0.18em;
  padding-left: 0.18em;
}

.intro-cont {
  margin-top: 40px;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro-cont {
    font-size: 15px;
    margin-top: 30px;
  }
}

.intro-desc {
  color: var(--color-green);
  font-weight: bold;
  line-height: 2;
  letter-spacing: 0.07em;
  position: relative;
  z-index: 2;
  text-shadow: 2px 2px 3px var(--color-white);
}

.intro-cont p + p {
  margin-top: 1em;
}

/* menu */
.menu {
  width: 790px;
  max-width: 100%;
  display: flex;
  gap: 10px 3.8%;
  margin: 0 auto 45px;
}
@media screen and (max-width: 767px) {
  .menu {
    margin: 0 auto 50px;
    flex-direction: column;
  }
}

.menu > li {
  width: 30.8%;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.2);
  border: 3px solid #fff;
  border-radius: 10px;
  aspect-ratio: 236 / 120;
}
@media screen and (max-width: 767px) {
  .menu > li {
    width: 100%;
    aspect-ratio: 236 / 70;
    border-width: 2px;
    box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.2);
  }
}

.menu > li .link {
  width: 100%;
  height: 100%;
  font-size: 21px;
  font-weight: bold;
  color: #fff;
  text-align: center;
  line-height: 1.28;
  display: block;
  letter-spacing: 0.1em;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .menu > li .link {
    font-size: 2.1vw;
  }
}
@media screen and (max-width: 767px) {
  .menu > li .link {
    font-size: 18px;
  }
}

.menu > li:nth-child(1) .link {
  background: #c30d23 url("../img/bg_menu1.png") no-repeat center center / cover;
}

.menu > li:nth-child(1) .link > span {
  font-size: 1.1em;
}

.menu > li:nth-child(1) .link font {
  color: #d5b345;
}

.menu > li:nth-child(2) .link {
  background: #00833e url("../img/bg_menu2.png") no-repeat center center / cover;
}

.menu > li:nth-child(2) .link font,
.menu > li:nth-child(3) .link font {
  font-size: 0.76em;
  display: block;
  margin-bottom: 0.2em;
}

.menu > li:nth-child(3) .link {
  background-color: #79420f;
}


/* tour */
.box-yellow {
  background-color: var(--color-white);
  border: 8px solid var(--color-yellow);
  border-radius: 26px;
  padding: 80px 0;
}
@media screen and (max-width: 767px) {
  .box-yellow {
    border-width: 4px;
    border-radius: 2.6vw;
    padding: 40px 0;
  }
}

.box-yellow.curve {
  padding: 90px 0 75px;
  border-top-left-radius: 500px 100px;
  border-top-right-radius: 500px 100px;
}
@media screen and (max-width: 767px) {
  .box-yellow.curve {
    padding: 50px 0;
    border-top-left-radius: 50vw 10vw;
    border-top-right-radius: 50vw 10vw;
  }
}

.tour .l-container-l {
  width: 100%;
  position: relative;
  padding-bottom: 85px;
}
@media screen and (max-width: 767px) {
  .tour .l-container-l {
    padding-bottom: 50px;
  }
}

.tour .l-container-l::before {
  content: "";
  width: 1600px;
  height: 100%;
  background-color: var(--color-green);
  border-top-left-radius: 800px 200px;
  border-top-right-radius: 800px 200px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 1500px) {
  .tour .l-container-l::before {
    width: 106.6vw;
    border-top-left-radius: 53.33vw 13.33vw;
    border-top-right-radius: 53.33vw 13.33vw;
  }
}
@media screen and (max-width: 767px) {
  .tour .l-container-l::before {
    width: calc(100% + 20px);
  }
}

.tour .l-container-l .box-yellow {
  margin-bottom: 40px;
}

.box-yellow .l-container-s {
  width: 90%;
}
@media screen and (max-width: 767px) {
  .box-yellow .l-container-s {
    width: 90%;
  }
}

.tour .l-container {
  max-width: 1016px;
  position: relative;
  padding-top: 40px;
}

.tour-title-en {
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .tour-title-en {
    margin-bottom: 35px;
  }
}

@media screen and (max-width: 767px) {
  .tour-title-en > img {
    height: 26px;
  }
}
.tour-cont {
  max-width: 770px;
  padding-top: 50px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .tour-cont {
    padding-top: 20px;
  }
}

.tour-text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.09em;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tour-text {
    font-size: 14px;
    text-align: left;
  }
}

.tour-text.al-l {
  text-align: justify !important;
  text-justify: inter-character;
}

.tour-photo {
  margin: 30px 0;
}
@media screen and (max-width: 767px) {
  .tour-photo {
    margin: 15px 0;
  }
}

.photo-note {
  font-size: 13px;
  margin-top: 0.5em;
}

.tour-outline {
  margin-top: 30px;
  margin-bottom: 50px;
}

.tour-outline-def {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .tour-outline-def {
    flex-direction: column;
  }
}

.tour-outline-dd {
  width: calc(100% - 120px);
  padding-top: 3px;
}
@media screen and (max-width: 767px) {
  .tour-outline-dd {
    width: 100%;
    margin-bottom: 10px;
  }
}

@media screen and (max-width: 1000px) {
  .tour-outline-photo {
    text-align: center;
  }
}

.tour-outline-photo .note-r {
  margin-top: 0.4em;
}

.special-cont {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.icon-special {
  width: 170px;
  height: 72px;
  font-size: 19px;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  background-color: #1d895b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .icon-special {
    margin: 0 auto;
  }
}

.special-item {
  display: flex;
  align-items: center;
  gap: 10px 20px;
  padding-left: 70px;
}
@media screen and (max-width: 975px) {
  .special-item {
    padding-left: 40px;
  }
}
@media screen and (max-width: 930px) {
  .special-item {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media screen and (max-width: 767px) {
  .special-item .special-item {
    padding-left: 0;
  }
}

.special-item-img {
  position: absolute;
  top: -15px;
  right: -60px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .special-item-img {
    width: 90%;
    position: relative;
    top: auto;
    right: auto;
    margin: 20px auto 0;
  }
}

.tour-outline-dd > *:first-child {
  margin-top: 0;
}

.tour-outline-dd:last-child {
  padding-bottom: 0;
}

.tour-outline-def-item {
  margin-top: 15px;
}

.tour2 .tour-outline-def-item {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-top: 0.3em;
}

.tour2 .tour-outline-def-item .tour-outline-text {
  flex-shrink: 0;
}

.tour2 .tour-outline-def-item .list-note {
  margin: 0;
  line-height: 1;
}

.tour2 .tour-outline-def-item .list-note > li {
  margin: 0;
}

.tour-corse-icon {
  flex-shrink: 0;
  width: 54px;
  height: 54px;
  background-color: #1d895b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .tour-corse-icon {
    align-self: center;
  }
}

.tour-corse-icon > span {
  color: var(--color-white);
  font-weight: bold;
  text-align: center;
  display: block;
  line-height: 1;
}

.tour-corse-icon .num-text {
  font-size: 12px;
  display: block;
  margin-top: 0.1em;
}

.tour-corse-icon .num {
  font-size: 22px;
  display: block;
  margin-top: 0.1em;
}

.tour-corse {
  margin-top: 40px;
}

.tour-corse.line {
  padding-top: 40px;
  border-top: 2px dotted #1d895b;
}
@media screen and (max-width: 767px) {
  .tour-corse.line {
    padding-top: 30px;
  }
}

.tour-corse-cont {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .tour-corse-cont {
    flex-direction: column;
    gap: 10px;
  }
}

.tour-corse-head {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 8px;
  margin-bottom: 15px;
}

.tour-corse-head .plus {
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .tour-corse-head .plus {
    width: 100%;
    text-align: center;
  }
}

.tour-corse-icon2 {
  flex-shrink: 0;
  font-size: 16px;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1;
  padding: 0.32em 0.56em 0.2em;
  border-radius: 5px;
  text-align: center;
  background-color: #000;
  border: 2px solid #000;
  display: inline-block;
}

.tour-corse-icon2 > span {
  letter-spacing: 0.1em;
  margin-left: 0.1em;
}

.tour-corse-icon2.white {
  color: #000;
  background-color: var(--color-white);
  border: 2px solid #000;
}

.tour-corse-icon2.gray {
  background-color: #898989;
  border: 2px solid #898989;
}

.tour-corse-text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.3;
}

.tour-corse-text2 {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #1d895b;
}

.tour-corse-text2 .box-text {
  display: inline-block;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.06em;
  line-height: 1.5;
  background-color: #d2e7de;
  padding: 0.25em 1.2em 0.2em 0.5em;
  border-radius: 0 100vh 100vh 0;
  margin-top: 5px;
}

.tour-corse-process {
  display: flex;
  gap: 5px;
}
@media screen and (max-width: 767px) {
  .tour-corse-process {
    flex-direction: column;
  }
}

.tour-corse-access {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  line-height: 1;
  margin-top: 8px;
}

.tour-corse-title {
  font-size: 15px;
  font-weight: bold;
  color: var(--color-white);
  writing-mode: vertical-rl;
  text-orientation: upright;
  background-color: #1d895b;
  border-radius: 5px 0 0 5px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .tour-corse-title {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    border-radius: 5px 5px 0 0;
    padding: 0.25em;
  }
}

.tour-corse-title > span {
  letter-spacing: 1em;
  margin-bottom: -1em;
}
@media screen and (max-width: 767px) {
  .tour-corse-title > span {
    margin-bottom: 0;
  }
}

.tour-corse-img {
  flex: 1;
  padding: 20px;
  border: 2px solid #1d895b;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tour-corse-img {
    padding: 20px 5px;
  }
}

.green-box-text {
  width: 105px;
  max-width: 100%;
  color: var(--color-white);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  background-color: var(--color-green);
  border-radius: 100vh;
  padding: 0.33em 1.33em 0.3em;
}
@media screen and (max-width: 767px) {
  .green-box-text {
    width: 100%;
  }
}

.green-box-text2 {
  color: #1d895b;
  font-size: 14px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  background-color: #d2e7de;
  padding: 0.3em 0.8em 0.2em;
  margin: 1em 0;
}

.green-box-text2 .fs-s {
  font-size: 0.85em;
}

.white-box-text {
  width: 105px;
  max-width: 100%;
  color: var(--color-green);
  font-size: 15px;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
  background-color: var(--color-white);
  border: 1px solid currentColor;
  border-radius: 100vh;
  padding: 0.33em 1.33em 0.3em;
}
@media screen and (max-width: 767px) {
  .white-box-text {
    width: 100%;
  }
}

.green-icon {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px 5px;
}

.green-icon > li {
  color: var(--color-green);
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1;
  padding: 0.35em 1em 0.3em;
  min-width: 95px;
  border: 1px solid var(--color-green);
  border-radius: 4px;
}

.tour-outline-inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 1000px) {
  .tour-outline-inner {
    flex-direction: column;
    row-gap: 20px;
  }
}

.tour-outline-text {
  font-size: 17px;
  font-weight: bold;
  line-height: 1.3;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}
@media screen and (max-width: 767px) {
  .tour-outline-text {
    font-size: 16px;
  }
}

.tour-outline-text .em {
  font-size: 1.4em;
  display: inline-block;
  line-height: 1;
}

.tour-outline-text.sm {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.02em;
}

.tour-outline-text.sm em {
  font-size: 1.8em;
}

.text-flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 10px;
}
@media screen and (max-width: 767px) {
  .text-flex {
    gap: 10px;
  }
}

.box-text {
  font-size: 15px;
  font-weight: bold;
  color: #00833e;
  line-height: 1.3;
  letter-spacing: 0.05em;
  display: inline-block;
  text-align: center;
  background-color: #d2e7de;
  padding: 0.3em 1.33em;
  border-radius: 100vh;
}

.price-box {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 1.58%;
}
@media screen and (max-width: 767px) {
  .price-box {
    flex-direction: column;
  }
}

.price-box > li {
  width: 260px;
  max-width: 49%;
}
@media screen and (max-width: 767px) {
  .price-box > li {
    width: 95%;
    max-width: 100%;
    margin: 0 auto;
  }
}

.price-box .text1 {
  width: 100%;
  margin-bottom: 0.6em;
}

.price-box .text2 {
  text-align: center;
  margin-bottom: 0.2em;
}

.price-box .photo {
  text-align: center;
}

.box-cont {
  background-color: #f1eee6;
  padding: 25px 25px 30px;
  border-radius: 12px;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .box-cont {
    margin-top: 10px;
    padding: 20px;
  }
}

.box-cont .text1 {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.56;
  letter-spacing: 0.08em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .box-cont .text1 {
    text-align: left;
    font-size: 15px;
  }
}

.box-cont .text2 {
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .box-cont .text2 {
    font-size: 14px;
  }
}

.box-cont .icon {
  font-weight: bold;
  background-color: #fff;
  color: var(--color-green);
  border: 1px solid var(--color-green);
  padding: 0.1em 0.8em;
  border-radius: 100vh;
  flex-shrink: 0;
}

.point-title-wrap {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .point-title-wrap {
    flex-direction: column;
    align-items: center;
  }
}

.point-num {
  flex-shrink: 0;
  width: 88px;
  max-width: 100%;
  margin-left: -6px;
}

.point-num > img {
  transform: translateY(-3px);
}

.point-title {
  color: var(--color-green);
  font-size: 18px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.03em;
  margin-top: 0.15em;
}
@media screen and (max-width: 767px) {
  .point-title {
    font-size: 18px;
    text-align: center;
  }
}

.point-title .fs-s {
  font-size: 0.8em;
}

.tour-point {
  margin-top: 70px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tour-point {
    margin-top: 50px;
  }
}

.tour-point-item {
  padding: 20px 0;
}

.tour-point-item:not(:last-child) {
  border-bottom: 3px dotted var(--color-yellow);
}

.tour-point-note-r {
  font-size: 12px;
  line-height: 1.6;
  text-align: right;
  margin-top: 1em;
}

.tour-point-note-r > span {
  display: inline-block;
}

.tour-point-img {
  text-align: center;
  margin: 30px auto 0;
  max-width: 90%;
}
@media screen and (max-width: 767px) {
  .tour-point-img {
    max-width: 100%;
  }
}

.tour-point-title {
  color: var(--color-green);
  font-size: 23px;
  font-weight: bold;
  letter-spacing: 0.08em;
  line-height: 1;
  background-color: var(--color-yellow);
  padding: 8px 20px 10px 80px;
  margin-bottom: 30px;
  position: relative;
  border-radius: 0 100vh 100vh 0;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .tour-point-title {
    font-size: 18px;
    margin-bottom: 20px;
  }
}

.tour-point-title::after {
  content: "";
  width: 66px;
  height: 74px;
  background: url("../img/img-point-hand.svg") no-repeat center center/contain;
  position: absolute;
  top: -25px;
  left: -8px;
}

.title-note-r {
  font-size: 12px;
  letter-spacing: 0.05em;
  text-align: right;
  color: #333;
  margin-left: 1em;
}
@media screen and (max-width: 767px) {
  .title-note-r {
    margin-top: 10px;
  }
}

.tour-point-text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.tour-point-text.mt-add {
  margin-top: 0.5em;
}

.point-col2 {
  display: flex;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .point-col2 {
    flex-direction: column;
  }
}

.point-col2-l {
  flex: 1;
}

.point-col2-r {
  width: 246px;
  max-width: 100%;
  row-gap: 10px;
}
@media screen and (max-width: 767px) {
  .point-col2-r {
    width: 100%;
    margin: 0 auto;
  }
}

.photo-list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
}

.photo-list > li {
  width: 246px;
  aspect-ratio: 246/170;
}
@media screen and (max-width: 767px) {
  .photo-list > li {
    width: 100%;
  }
}

.photo-list > li img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.line-dotted {
  position: relative;
}

.line-dotted::before {
  content: "";
  width: 100%;
  height: 0;
  border-top: 3px dotted var(--color-yellow);
  position: absolute;
  top: -2px;
  left: 0;
}

/* process */
.process {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .process {
    margin-left: -10px;
    margin-right: -10px;
    margin-top: 30px;
  }
}

.process-note {
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
}

.frame-top {
  width: 100%;
  text-align: center;
  position: relative;
}

.frame-top .frame-line {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  text-align: center;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  .frame-top .frame-line {
    width: calc(100% + 5px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.frame-top-title {
  max-width: 90%;
  margin: 0 auto;
  position: relative;
  text-align: center;
  z-index: 2;
}

.frame-top-title > span {
  color: var(--color-white);
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
  display: inline-block;
  background-color: var(--color-green);
  padding: 0.38em 1.66em 0.3em;
  border-radius: 100vh;
}

span.ls1em {
  display: inline-block;
  letter-spacing: 1em;
  padding-left: 1em;
  margin-left: -1em;
  margin-right: -1em;
}

.frame-bottom {
  width: 100%;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .frame-bottom {
    width: calc(100% + 5px);
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
}

.frame-bottom .frame-line {
  line-height: 0;
  transform: rotate(-180deg);
}

.frame-contents {
  padding: 20px 0;
}
@media screen and (max-width: 767px) {
  .frame-contents {
    width: 750px;
    padding: 20px 0;
  }
}

@media screen and (max-width: 767px) {
  .process-inner {
    overflow-x: scroll;
  }
}

.process-img {
  text-align: center;
}

.process-img2 {
  line-height: 1;
  text-align: right;
  margin-top: 10px;
}

.process-button {
  margin: 10px 0;
}

.process-button:last-child {
  margin-bottom: 0;
}

.frame-contents .list-note {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 15px 0 -20px;
}

.frame-contents .text1 {
  font-size: 14px;
  font-weight: bold;
  color: #00833e;
  text-align: center;
  line-height: 1.4;
}

.tour-info {
  background: #fff89b url("../img/bg-light-yellow.png") repeat top center/621px auto;
  border-radius: 45px 0 45px 0;
  padding-bottom: 65px;
}
@media screen and (max-width: 767px) {
  .tour-info {
    border-radius: 30px 0 30px 0;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .tour-info-inner {
    max-width: 560px;
    margin: 0 auto;
  }
}
.tour-info-photo {
  position: relative;
}

.tour-info-icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: #fff89b url("../img/bg-yellow.svg") repeat center center/cover;
  position: absolute;
  top: 0;
}
@media screen and (max-width: 767px) {
  .tour-info-icon {
    width: 80px;
    height: 80px;
  }
}

.tour-info-flex {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .tour-info-flex {
    flex-direction: column;
  }
}

.tour-info-title {
  padding-top: 25px;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .tour-info-title {
    width: 100%;
    margin-bottom: 20px;
  }
}

.tour-info-text {
  font-size: 14px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
}

.tour-info-flex ul.list-note:not(:first-child) {
  margin-top: 0.5em;
}

@media screen and (max-width: 767px) {
  .tour-info-flex ul.list-note > li {
    margin-right: 0;
  }

  .tour-info-flex ul.list-note > li:last-child {
    margin-bottom: 0;
  }
}
.tour-info-item1 {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .tour-info-item1 {
    margin-bottom: 35px;
  }
}

.tour-info-item1 .tour-info-item-l {
  width: 59%;
}
@media screen and (max-width: 767px) {
  .tour-info-item1 .tour-info-item-l {
    width: 100%;
    margin-bottom: 30px;
  }
}

.tour-info-item1 .tour-info-item-r {
  width: 41%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tour-info-item1 .tour-info-item-r {
    width: 100%;
    order: 1;
  }
}

.tour-info-item1 .left-space {
  padding-left: 21%;
}
@media screen and (max-width: 767px) {
  .tour-info-item1 .left-space {
    width: 90%;
    margin: 0 auto;
    padding-left: 0;
    text-align: justify;
    text-justify: inter-character;
  }
}

.tour-info-item2 {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  .tour-info-item2 {
    margin-bottom: 35px;
  }
}

.tour-info-item2 .tour-info-item-l {
  width: 56%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .tour-info-item2 .tour-info-item-l {
    width: 100%;
  }
}

.tour-info-item2 .tour-info-item-r {
  width: 41.4%;
  padding-right: 12.5%;
}
@media screen and (max-width: 767px) {
  .tour-info-item2 .tour-info-item-r {
    width: 100%;
    padding: 0;
  }
}

.tour-info-item2 .item1 {
  width: 290px;
  max-width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .tour-info-item2 .item1 {
    width: 100%;
  }
}

.tour-info-item2 .tour-info-item-r .tour-info-photo {
  margin-top: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .tour-info-item2 .tour-info-item-r .tour-info-photo {
    width: 90%;
  }
}

.tour-info-item2 .tour-info-text {
  padding-left: 15px;
}
@media screen and (max-width: 767px) {
  .tour-info-item2 .tour-info-text {
    width: 90%;
    margin: 20px auto;
    padding-left: 0;
  }
}

.tour-info-item2 .tour-info-icon {
  top: -20px;
  right: -20px;
}
@media screen and (max-width: 767px) {
  .tour-info-item2 .tour-info-icon {
    top: -20px;
    right: -10px;
  }
}

@media screen and (max-width: 767px) {
  .tour-info-flex .tour-info-icon img {
    height: 26px;
  }
}
@media screen and (max-width: 767px) {
  .tour-info-item3 {
    flex-direction: column-reverse;
  }
}
.tour-info-item3 .tour-info-item-r {
  position: relative;
  width: 41.4%;
}
@media screen and (max-width: 767px) {
  .tour-info-item3 .tour-info-item-r {
    width: 100%;
  }
}

.tour-info-item3 .tour-info-item-l {
  width: 53%;
  padding-left: 12.5%;
}
@media screen and (max-width: 767px) {
  .tour-info-item3 .tour-info-item-l {
    width: 100%;
    margin-top: 20px;
    padding-left: 0;
  }
}

.tour-info-item3 .tour-info-photo2 {
  width: 290px;
  max-width: 100%;
  border: 4px solid #ffffd4;
}
@media screen and (max-width: 767px) {
  .tour-info-item3 .tour-info-photo2 {
    border: none;
    width: 90%;
    margin-top: 10px;
  }
}

/* special */
.special {
  padding-top: 100px;
}
@media screen and (max-width: 767px) {
  .special {
    padding-top: 60px;
  }
}

.special-title {
  text-align: center;
  position: relative;
}

.special-title > span {
  position: relative;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .special-title img {
    height: 22px;
  }
}
.special-title::before {
  content: "";
  width: 100%;
  height: 5px;
  background-color: var(--color-brown);
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .special-title::before {
    height: 3px;
  }
}

.special-sec .list-note {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 40px;
}

.special-sec .list-note > li {
  font-size: 14px;
}
@media screen and (max-width: 767px) {
  .special-sec .list-note > li {
    font-size: 13px;
  }
}

.special-sec-wrap {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .special-sec-wrap {
    margin-top: 50px;
  }
}

.special-catch {
  text-align: center;
  line-height: 1;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  .special-catch {
    margin-bottom: 10px;
  }
}

.special-img.coming-soon {
  position: relative;
}

.special-img.coming-soon::before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(201, 202, 202, 0.9);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.special-img.coming-soon::after {
  content: "";
  width: 208px;
  height: 73px;
  background-image: url("../img/txt-coming-soon.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
}

/* .special-img--w360 {
  width: 360px;
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .special-img--w360 {
    margin: 0 auto;
  }
} */

.plan-inner {
  padding: 50px 0 100px;
}
@media screen and (max-width: 767px) {
  .plan-inner {
    padding: 30px 0 50px;
  }
}

.plan-inner .list-note {
  margin-top: 40px;
}

.plan-text {
  text-align: center;
}

.plan-item-img {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .plan-item-img {
    max-width: 460px;
    margin: 15px auto 0;
  }
}

.plan-item-cont {
  width: 560px;
  max-width: 90%;
  margin: 0 auto;
}

.special-sec:not(:first-child) {
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .special-sec:not(:first-child) {
    margin-top: 50px;
  }
}

/* .special-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px 50px;
}
@media screen and (max-width: 767px) {
  .special-flex {
    width: 90%;
    flex-direction: column;
    margin: 0 auto;
  }
}

.special-flex-r {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .special-flex-r {
    width: 100%;
  }
}

.special-flex-l {
  width: 54%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  .special-flex-l {
    width: 100%;
    align-items: center;
  }
}

.special-flex .special-item2-img {
  width: 300px;
  max-width: 100%;
}

.special-flex-r .list-note:not(:first-child) {
  margin-top: 1em;
} */

/* .special-flex1 .special-item2-img {
  width: 290px;
}

.special-flex2 .special-item2-img {
  width: 270px;
}

.special-flex3 .special-item2-img {
  width: 320px;
} */

.special-info-item ul {
  margin-top: 50px;
  /* display: flex; */
  display: grid;
  gap: 74px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto;
  gap: 0 74px;
}
.special-info-item ul > li {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
}
@media screen and (max-width: 767px) {
  .special-info-item ul {
    margin-top: 0;
    display: block;
  }
  .special-info-item ul li {
    margin-top: 30px;
    display: block;
  }
}

.special-info-item ul li img {
  aspect-ratio: 10 / 7;
  object-fit: cover;
}

.special-info-item ul li p {
  margin-top: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .special-info-item ul li p {
    text-align: left;
  }
}

.special-info-item ul li a {
  display: block;
  width: 234px;
  height: 40px;
  background: url(../img/bot-ex-menu.svg) center / contain no-repeat;
  text-indent: 100%;
  white-space:nowrap;
  overflow:hidden;
  margin: 20px auto 0;
}
@media screen and (max-width: 767px) {
  .special-info-item ul li a {
    margin: 10px auto 0;
  }
}

.special-col2 {
  display: flex;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .special-col2 {
    width: 90%;
    flex-direction: column;
    row-gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    margin: 0 auto;
  }
}

.special-col2-l {
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .special-col2-l {
    max-width: 100%;
  }
}

.special-col2-r {
  max-width: 50%;
}
@media screen and (max-width: 767px) {
  .special-col2-r {
    max-width: 100%;
  }
}

.special-col2-r .list-note:not(:first-child) {
  margin-top: 20px;
}

.box-beige {
  background-color: #f6f4ee;
  padding: 40px 6.8%;
}
@media screen and (max-width: 767px) {
  .box-beige {
    padding: 30px 6.8%;
  }
}

.fda {
  /* max-width: 750px; */
  margin: 50px auto 0;
  font-size: 15px;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .fda {
    margin: 30px auto 0;
  }
}

.fda .box-beige {
  border-radius: 13px;
}

.fda-text2 {
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .fda-text2 {
    text-align: left;
  }
}

.fda-logo-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  margin: 20px auto;
  transform: translateX(-10px);
}
@media screen and (max-width: 767px) {
  .fda-logo-wrap {
    gap: 10px;
    margin: 10px auto;
    transform: translateX(-5px);
  }
}

.fda-logo {
  width: 224px;
  max-width: 100%;
}

.fda-logo-15th {
  width: 120px;
  max-width: 100%;
}

.fda-cap {
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
  margin-top: 1em;
}

.fda-cap > span {
  display: inline-block;
  text-align: left;
}

.box-line {
  border: 3px solid #fabe00;
  border-radius: 100vh;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .box-line {
    flex-direction: column;
    border-radius: 20px;
    gap: 10px;
    border-width: 2px;
  }
}

.box-line-title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.3;
  color: #1d895b;
  background-color: #fabe00;
  padding: 0.4em 2em 0.5em;
  border-radius: 100vh;
}
@media screen and (max-width: 767px) {
  .box-line-title {
    font-size: 16px;
  }
}

.box-line-text {
  font-size: 16px;
  line-height: 1.6;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .box-line-text {
    font-size: 14px;
  }
}

.box-info {
  position: relative;
  background-color: #fabe00;
  padding: 20px 20px 20px 40px;
  border-radius: 13px;
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .box-info {
    padding: 50px 20px 30px;
    margin-top: 40px;
  }
}

.box-info-band {
  font-size: 35px;
  font-weight: bold;
  line-height: 1.25;
  color: var(--color-white);
  text-align: center;
  background-color: #1d895b;
  padding: 0.1em 0.8em 0.2em;
  display: flex;
  align-items: flex-end;
  gap: 6px;
  position: absolute;
  top: -10px;
  left: -6px;
}
@media screen and (max-width: 767px) {
  .box-info-band {
    font-size: 32px;
  }
}

.box-info-band::before {
  position: absolute;
  content: "";
  top: 100%;
  left: 0;
  border: none;
  border-bottom: solid 5px transparent;
  border-right: solid 6px #000;
}

.box-info-band::after {
  content: "";
  width: 10px;
  height: 100%;
  background: url("../img/band-bg.svg") repeat-y center center/auto 44px;
  position: absolute;
  top: 0;
  right: -9px;
}

.box-info-band .day {
  line-height: 1;
}

.box-info-band .week {
  font-size: 0.5em;
  width: 1.7em;
  height: 1.7em;
  line-height: 1;
  color: #1d895b;
  background-color: var(--color-white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-info-band .week > span {
  display: inline-block;
  transform: translate(-0.057em, -0.057em);
}

.box-info-head {
  font-size: 23px;
  font-weight: bold;
  color: #1d895b;
  line-height: 1.4;
  padding-bottom: 0.5em;
  border-bottom: 2px solid var(--color-white);
  padding-left: 26%;
  margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
  .box-info-head {
    padding-left: 0;
    text-align: center;
  }
}

.box-info-head .fs-s {
  font-size: 0.7em;
  display: inline-block;
  vertical-align: middle;
}

.box-info-head .fs-s.mr {
  margin-right: 7px;
}

.box-info-cont {
  display: flex;
  gap: 25px;
}
@media screen and (max-width: 767px) {
  .box-info-cont {
    flex-direction: column-reverse;
    gap: 10px;
  }
}

.box-info-cont-l {
  flex: 1;
  padding-top: 10px;
}
@media screen and (max-width: 767px) {
  .box-info-cont-l {
    padding-top: 0;
  }
}

.box-info-cont-r {
  text-align: center;
  line-height: 1;
}

.box-info-text {
  font-size: 16px;
  line-height: 1.5;
  margin-bottom: 0.75em;
}
@media screen and (max-width: 767px) {
  .box-info-text {
    font-size: 15px;
  }
}

.box-info-flex {
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .box-info-flex {
    align-items: flex-start;
  }
}

.box-info-icon {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  background-color: #1d895b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.box-info-icon > span {
  font-size: 15px;
  font-weight: bold;
  color: var(--color-white);
  line-height: 1;
}

.box-info-text2 {
  font-size: 14px;
  line-height: 1.5;
  text-align: justify;
  text-justify: inter-character;
}
@media screen and (max-width: 767px) {
  .box-info-text2 {
    font-size: 13px;
  }
}

.box-info .img {
  width: 152px;
  max-width: 100%;
  display: inline-block;
  border-radius: 10px;
  overflow: hidden;
}

/*!
print
------------------------------
*/
@page {
  size: A4 portrait;
  margin: 0;
}
@media print {
  * {
    text-shadow: none !important;
    box-shadow: none !important;
  }

  html, body {
    width: 1200px;
    height: auto;
    -webkit-print-color-adjust: exact;
    transform: scale(0.95);
    transform-origin: center top;
  }

  header {
    position: relative !important;
  }

  main {
    padding-top: 0 !important;
  }
}
/*!
tour1
------------------------------
*/
.tour1 .tour-title-lv2 {
  width: 712px;
  max-width: 100%;
  font-size: 27px;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.12em;
  background-image: url(../img/ttl-bg1.jpg);
  background-repeat: repeat, no-repeat;
  background-position: top left, center left;
  background-size: 100% auto, 100% 100%;
  padding: 0.7em 0 0.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tour1 .tour-title-lv2 {
    font-size: 20px;
    padding: 0.8em 0.2em 0.6em;
    margin: 0 -10px;
    max-width: none;
    width: auto;
  }
}

.tour-title-text font {
  color: #C9AD4C;
}

.tour1 .tour-title-text {
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .tour1 .tour-title-text {
    padding-left: 0;
  }
}

.tour1 .tour-title-text::before {
  content: "";
  width: 620px;
  height: 90px;
  background-image: url("../img/ttl-deco1.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -35px;
  left: -118px;
}
.tour1 .tour-title-text::after {
  content: "";
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
}
@media screen and (max-width: 767px) {
  .tour1 .tour-title-text::before {
    background-image: url("../img/ttl-deco1sp.png");
    width: 110px;
    top: -57px;
    right: auto;
    left: -52px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour1 .tour-title-text::after {
    top: -51px;
    left: calc(100% - 28px);
  }
}
@media screen and (max-width: 767px) {
  .tour1 .tour-title-text::after {
    background-image: url("../img/ttl-deco2sp.png");
    width: 78px;
    height: 50px;
    left: auto;
    right: -42px;
    top: 3px;
  }
}

.tour1 .tour-title-deco {
  width: 210px;
  position: absolute;
  top: -32px;
  left: calc(100% - 50px);
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour1 .tour-title-deco {
    top: -60px;
    width: 23.33vw;
    left: calc(100% - 65px);
  }
}
@media screen and (max-width: 767px) {
  .tour1 .tour-title-deco {
    width: 90px;
    top: -40px;
    left: auto;
    right: -24px;
  }
}

.tour1 .tour-text > span {
  position: relative;
  display: inline-block;
}

.tour1 .tour-text > span::before {
  content: "";
  width: 42px;
  height: 16px;
  background-image: url("../img/txt-deco1-l.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -21px;
  right: calc(100% + 65px);
}
@media screen and (max-width: 920px) {
  .tour1 .tour-text > span::before {
    top: -15px;
    right: calc(100% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .tour1 .tour-text > span::before {
    content: none;
  }
}

.tour1 .tour-text > span::after {
  content: "";
  width: 16px;
  height: 12px;
  background-image: url("../img/txt-deco1-r.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: 10px;
  left: calc(100% + 48px);
}
@media screen and (max-width: 920px) {
  .tour1 .tour-text > span::after {
    top: -15px;
    left: calc(100% - 10px);
  }
}
@media screen and (max-width: 767px) {
  .tour1 .tour-text > span::after {
    content: none;
  }
}

.tour1-button {
  padding-left: 155px;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour1-button {
    padding-left: 16.4vw;
  }
}
@media screen and (max-width: 767px) {
  .tour1-button {
    padding-left: 155px;
  }
}

.tour1-button2 {
  padding-left: 390px;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour1-button2 {
    padding-left: 41.3vw;
  }
}
@media screen and (max-width: 767px) {
  .tour1-button2 {
    padding-left: 390px;
  }
}

.tour1 .tour-outline-photo {
  width: 330px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .tour1 .tour-outline-photo {
    width: 100%;
  }
}

.tour1, .tour2, .tour3, .tour5 {
  padding: 0 0 90px;
  margin: 0 0 45px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tour1, .tour2, .tour3, .tour5 {
    padding: 0 0 50px;
    margin: 0 0 25px;
    position: relative;
  }
}

.tour1, .tour2, .tour3, .tour4, .tour6 {
  padding-top: 45px;
}
@media screen and (max-width: 767px) {
  .tour1, .tour2, .tour3, .tour4 {
    padding-top: 25px;
  }
}

.tour1::after, .tour2::after, .tour3::after, .tour5::after {
  max-width: 800px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  right: 0;
  width: 100%;
  content: '';
  height: 8.5px;
  background: #F1C042;
  border-radius: 4.25px;
}
.tour-point-item {
  position: relative;
}
.tour1 .tour-point-item.point1 {
  min-height: 150px;
}
.tour1 .tour-point-item.point1 .img1 {
  width: 127px;
  float: right;
  margin: -120px 40px 0;
  position: relative;
  z-index: 10;
}
.tour1 .tour-point-item.point1 {
  min-height: 150px;
}
.tour1 .tour-point-item.point2 .point-title {
  font-size: 16px;
  line-height: 1em;
}
.tour1 .tour-point-item.point2 .point-title span {
  font-size: 20px;
  line-height: 1.8em;
  display: block;
}
.tour1 .tour-point-item.point2 .img1 {
  width: 300px;
  position: absolute;
  top: 25px;
  right: 0;
}
.tour1 .tour-point-item.point2 .img2 {
  width: 104px;
  position: absolute;
  /* top: 140px; */
  top: 136px;
  /* right: 210px; */
  right: 215px;
  z-index: 10;
}
.tour1 .tour-point-item.point2 ul {
  width: 470px;
  display: flex;
  flex-wrap: wrap;
  padding: 10px 0;
}
.tour1 .tour-point-item.point2 ul li {
  background: url(../img/list-circle.svg) left center / 12.3px no-repeat;
  width: 50%;
  box-sizing: border-box;
  padding: 0 0 0 16px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.8em;
}
.tour1 .tour-point-item.point3 ul {
  padding: 13px 0;
}
.tour1 .tour-point-item.point3 ul li {
  background: url(../img/list-ring.svg) left 0.3em / 14.4px no-repeat;
  box-sizing: border-box;
  padding: 0 0 10px 19px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5em;
}
.tour1 .tour-point-item.point3 ul li span {
  display: block;
  font-weight:lighter;
  font-size: 14px;
  line-height: 1.5em;
}
.tour1 .tour-point-item.point3 .rimgs {
  width: 170px;
  position: absolute;
  top:10px;
  right: 0;
}
.tour1 .tour-point-item.point3 .rimgs img {
  padding-top: 10px;
}
.tour1 .tour-point-item.point4 .fright {
  width: 170px;
  position: absolute;
  top: 25px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .tour1 .tour-point-item.point4 .fright {
    display: block;
    width: 100%;
    position: static;
    top: auto;
    right: auto;
    margin: 0 auto 5px;
  }
}

.tour1 .tour-point-item.point4 .tour-point-text {
  padding: 0 0 0 92px;
}
.tour1 .tour-point-item.point4 .tour-point-text span {
  display: block;
  font-size: 12px;
  padding-bottom: 45px;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour1 .tour-point-item.point1 .point-title-wrap {
    padding-right: 210px;
  }
  .tour1 .tour-point-item.point2 .tour-point-text {
    width: calc(100% - 300px);
  }
  .tour1 .tour-point-item.point2 ul li {
    width: 100%;
  }
  .tour1 .tour-point-item.point3 ul {
    padding-right: 180px;
  }
}
@media screen and (max-width: 767px) {
  .tour1 .tour-point-item.point1 {
    height: auto;
  }
  .tour1 .tour-point-item.point1 .img1 {
    width: 200px;
    float: none;
    display: block;
    margin: 0 auto 10px;
  }
  .tour1 .tour-point-item.point2 .point-title {
    font-size: 16px;
    line-height: 1em;
  }
  .tour1 .tour-point-item.point2 .point-title span {
    font-size: 20px;
    line-height: 1.8em;
    display: block;
  }
  .tour1 .tour-point-item.point2 .img1 {
    width: 100%;
    /* padding-left: 20%; */
    padding-left: 10%;
    position: static;
  }
  .tour1 .tour-point-item.point2 .img2 {
    width: 30%;
    position: static;
    margin: -10vw 0 -20px;
  }
  .tour1 .tour-point-item.point2 ul {
    width: 100%;
    display: block;
    padding: 10px 0;
  }
  .tour1 .tour-point-item.point2 ul li {
    background: url(../img/list-circle.svg) left center / 14.4px no-repeat;
    width: 100%;
    box-sizing: border-box;
    padding: 0 0 0 19px;
    font-weight: bold;
    font-size: 16px;
    line-height: 1.8em;
  }
  .tour1 .tour-point-item.point3 .rimgs {
    width: 100%;
    position: static;
    top: auto;
    right: auto;
    margin-top: -15px;
  }
  .tour1 .tour-point-item.point3 .rimgs img {
    width: 100%;
    padding-top: 10px;
  }
  .tour1 .tour-point-item.point4 .tour-point-text {
    padding: 0;
  }
  .tour1 .tour-point-item.point4 .tour-point-text span {
    padding-bottom: 10px;
  }
}

.process-img2 img {
  height: 13px;
}

.tour-box {
  padding: 35px 30px 15px;
  border: 2px solid var(--color-green);
  border-radius: 15px;
  position: relative;
  margin: 60px -20px 0;
}
@media screen and (max-width: 767px) {
  .tour-box {
    padding: 40px 17px 15px;
    margin: 40px -8px 0;
  }
}

.tour-box-col2 {
  display: flex;
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .tour-box-col2 {
    flex-direction: column;
    row-gap: 20px;
  }
}

.tour1 .tour-box-title {
  width: 100%;
  text-align: center;
  font-size: 17px;
  font-weight: bold;
  color: var(--color-green);
  line-height: 1.8;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .tour1 .tour-box-title {
    font-size: 16px;
  }
}

.tour1 .tour-box-title > span {
  display: inline-block;
  letter-spacing: 0.13em;
  margin-right: -0.13em;
  padding: 0 2.94em;
  position: relative;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .tour1 .tour-box-title > span {
    padding: 0 0.3em;
    letter-spacing: 0.05em;
    margin-right: -0.05em;
  }
}

.tour1 .tour-box-title > span::before, .tour1 .tour-box-title > span::after {
  content: "";
  width: 33px;
  height: auto;
  aspect-ratio: 33/30;
  background-image: url("../img/ttl-deco2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -5px;
}
@media screen and (max-width: 767px) {
  .tour1 .tour-box-title > span::before, .tour1 .tour-box-title > span::after {
    width: 30px;
    top: 0;
  }
}

.tour1 .tour-box-title > span::before {
  left: 7px;
}

.tour1 .tour-box-title > span::after {
  right: 5px;
  transform: scale(-1, 1);
}

.tour1 .tour-box-text {
  flex: 1;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.07em;
}
@media screen and (max-width: 767px) {
  .tour1 .tour-box-text {
    font-size: 13px;
    line-height: 1.8;
  }
}

.tour-box-img {
  width: 225px;
  max-width: 100%;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .tour-box-img {
    width: 100%;
  }
}

.tour-box-caption {
  font-size: 12px;
  letter-spacing: 0.02em;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .tour-box-caption {
    margin-top: 0.3em;
  }
}

/*!
tour2
------------------------------
*/
.tour2 .tour-title-lv2 {
  width: 712px;
  max-width: 100%;
  font-size: 27px;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.12em;
  background-image: url(../img/ttl-bg2.jpg);
  background-repeat: no-repeat;
  background-position: center ;
  background-size: cover;
  padding: 0.7em 0 0.5em;
  position: relative;
}
@media screen and (max-width: 767px) {
  .tour2 .tour-title-lv2 {
    font-size: 20px;
    padding: 0.8em 0.2em 0.6em;
    margin: 0 -10px;
    max-width: none;
    width: auto;
  }
}

.tour2 .tour-title-text {
  position: relative;
  padding-left: 100px;
}

@media screen and (max-width: 767px) {
  .tour2 .tour-title-text {
    padding-left: 0;
  }
}

.tour2 .tour-title-text::before {
  content: "";
  width: 620px;
  height: 96px;
  background-image: url("../img/ttl-deco2.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -33px;
  left: -160px;
}
@media screen and (max-width: 767px) {
  .tour2 .tour-title-text::before {
    background-image: url("../img/ttl-deco2sp2.png");
    width: 340px;
    top: -40px;
    right: auto;
    left: -105px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour2 .tour-title-text::after {
    top: -51px;
    left: calc(100% - 28px);
  }
}
@media screen and (max-width: 767px) {
  .tour2 .tour-title-text::after {
    width: 36px;
    left: auto;
    right: 65px;
    top: -50px;
  }
}

.tour2 .tour-title-deco {
  width: 223px;
  position: absolute;
  top: -32px;
  right: -188px;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour2 .tour-title-deco {
    top: -60px;
    width: 23.33vw;
    left: calc(100% - 65px);
  }
}
@media screen and (max-width: 767px) {
  .tour2 .tour-title-deco {
    width: 100px;
    top: -35px;
    left: auto;
    right: -25px;
  }
}

.tour2 .tour-text > span {
  position: relative;
  display: inline-block;
}

.tour2 .tour-outline-photo {
  width: 305px;
  position: relative;
  margin: auto;
}
.tour2 .note-fl {
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  text-align: right;
  position: absolute;
  bottom: 0;
  left: -160px;
  width: 150px;
}

.tour2 .tour-point-item.point1 .img1 {
  width: 127px;
  float: right;
  margin: -120px 40px 0;
  position: relative;
  z-index: 10;
}
.tour2 .tour-point-item.point1 {
  min-height: 150px;
}
.tour2 .tour-point-item.point2 .point-title {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 10px;
}
.tour2 .tour-point-item.point2 h6 {
  float: left;
  width: 80px;
  background: #F7E08D;
  color: #42875F;
  font-weight: bold;
  font-size: 20px;
  line-height: 33px;
  text-align: center;
  display: block;
  margin-top: 3px;
  border-radius: 3px;
}
.tour2 .tour-point-item.point2 .fright {
  width: 310px;
  float: right;
}
.tour2 .tour-point-item.point2 ul {
  margin: 0 0 10px 95px;
}
.tour2 .tour-point-item.point2 ul li {
  background: url(../img/list-circle.svg) left 0.3em / 12.3px no-repeat;
  width: 50%;
  box-sizing: border-box;
  padding: 0 0 5px 16px;
  font-weight: bold;
  font-size: 14px;
  line-height: 1.5em;
}
.tour2 .tour-point-item.point2 .tds {
  font-size: 12px;
  position: absolute;
  bottom: 35px;
  right: 0;
}
.tour2 .tour-point-item.point3 {
  height: 210px;
}
.tour2 .tour-point-item.point3 ul {
  padding: 13px 0 0;
}
.tour2 .tour-point-item.point3 ul li {
  background: url(../img/list-ring.svg) left 0.3em / 14.4px no-repeat;
  box-sizing: border-box;
  padding: 0 0 10px 19px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.5em;
}
.tour2 .tour-point-item.point3 ul li span {
  display: block;
  font-weight:lighter;
  font-size: 14px;
  line-height: 1.5em;
}
.tour2 .tour-point-item.point4 .fright {
  width: 170px;
  position: absolute;
  top: 25px;
  right: 0;
}
.tour2 .tour-point-item.point4 .tour-point-text {
  padding: 0 0 0 92px;
}
.tour2 .tour-point-item.point4 .tour-point-text span {
  display: block;
  font-size: 12px;
  padding-bottom: 45px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour2 .tour-title-text {
    padding-left: 0;
  }
  .tour2 .tour-title-text::before {
    left: -255px;
  }
  .tour2 .tour-point .tour-point-item.point1 .point-title-wrap {
    width: calc(100% - 210px);
  }
  .tour2 .tour-point-item.point2 .fright {
    display: block;
    float: none;
    margin: 10px auto;
    width: 420px;
  }
  .tour2 .tour-point-item.point2 .tds {
    position: relative;
    bottom: auto;
    left: 95px;
  }
}

@media screen and (max-width: 767px) {
  .tour2 .tour-outline-photo {
    width: 100%;
    margin-top: -10px;
  }
  .tour2 .note-fl {
    position: static;
    margin-top: 5px;
    width: 100%;
  }
  .tour2 .tour-point-item.point1 .img1 {
    display: block;
    width: 200px;
    float: none;
    margin: 10px auto;
  }
  .tour2 .tour-point-item.point1 {
    height: auto;
  }
  .tour2 .tour-point-item.point2 .point-title {
    font-size: 16px;
    line-height: 1.4em;
    margin-bottom: 10px;
  }
  .tour2 .tour-point-item.point2 h6 {
    float: left;
    width: 80px;
    background: #F7E08D;
    color: #42875F;
    font-weight: bold;
    font-size: 20px;
    line-height: 33px;
    text-align: center;
    display: block;
    margin-top: 3px;
    border-radius: 3px;
  }
  .tour2 .tour-point-item.point2 .fright {
    width: 100%;
    float: none;
    margin-bottom: 20px;
  }
  .tour2 .tour-point-item.point2 ul {
    margin: 0 0 10px 95px;
  }
  .tour2 .tour-point-item.point2 ul li {
    background: url(../img/list-circle.svg) left 0.3em / 14.4px no-repeat;
    width: auto;
    padding: 0 0 5px 19px;
    font-size: 16px;
    line-height: 1.5em;
  }
  .tour2 .tour-point-item.point2 .tds {
    font-size: 12px;
    position: relative;
    bottom: auto;
    right: 0;
  }
  .tour2 .tour-point-item.point3 {
    height: auto;
  }
  .tour2 .tour-point-item.point4 .fright {
    width: 100%;
    position: relative;
    top: 0;
    right: 0;
    margin-bottom: 5px;
  }
  .tour2 .tour-point-item.point4 .tour-point-text {
    padding: 0;
  }
  .tour2 .tour-point-item.point4 .tour-point-text span {
    display: block;
    font-size: 12px;
    padding-bottom: 10px;
  }
}

/*!
tour3
------------------------------
*/
.tour3 .tour-title-lv2 {
  width: 712px;
  max-width: 100%;
  font-size: 27px;
  font-weight: bold;
  color: var(--color-white);
  text-align: center;
  letter-spacing: 0.12em;
  background-image: url(../img/ttl-bg3.png);
  background-repeat: no-repeat;
  background-position: center ;
  background-size: cover;
  padding: 0.7em 0 0.5em;
  position: relative;
}
.tour3 .ttl-1l {
  display: block;
  font-size: 18px;
  line-height: 1.3em;
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .tour3 .tour-title-lv2 {
    background-image: url(../img/ttl-bg3sp.png);
    background-position: center top ;
      font-size: 20px;
    padding: 0.8em 0.2em 0.6em;
    margin: 0 -10px;
    max-width: none;
    width: auto;
  }
  .tour3 .ttl-1l {
    padding-left: 0;
  }
}

.tour3 .tour-title-text {
  position: relative;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  .tour3 .tour-title-text {
    padding-left: 0;
  }
}

.tour3 .tour-title-text::before {
  content: "";
  width: 653px;
  height: 107px;
  background-image: url("../img/ttl-deco3.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -50px;
  left: -85px;
}
@media screen and (max-width: 767px) {
  .tour3 .tour-title-text::before {
    width: 36px;
    top: 22px;
    right: auto;
    left: -20px;
  }
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour3 .tour-title-text::after {
    top: -51px;
    left: calc(100% - 28px);
  }
}
@media screen and (max-width: 767px) {
  .tour3 .tour-title-text::after {
    width: 36px;
    left: auto;
    right: 65px;
    top: -50px;
  }
}

.tour3 .tour-title-deco {
  width: 223px;
  position: absolute;
  top: -32px;
  right: -188px;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour3 .tour-title-deco {
    top: -60px;
    width: 23.33vw;
    left: calc(100% - 65px);
  }
}
@media screen and (max-width: 767px) {
  .tour3 .tour-title-deco {
    width: 90px;
    top: -40px;
    left: auto;
    right: -24px;
  }
}

.tour3 .tour-text > span {
  font-size: 14px;
  position: relative;
  display: inline-block;
}

.tour3 .tour-outline-photo {
  width: 275px;
  position: relative;
  margin: 0 auto;
}
.tour3 .tour-outline-def-item .dotted li {
  margin: 0 0 1em;
  padding: 0 0 1em 2em;
  border-bottom: 2.4px dotted #42875F;
}
.tour3 .tour-outline-def-item .dotted li:nth-of-type(1) {
  background: url(../img/tour3-no1.svg) left top / 26px no-repeat;
}
.tour3 .tour-outline-def-item .dotted li:nth-of-type(2) {
  background: url(../img/tour3-no2.svg) left top / 26px no-repeat;
}
.tour3 .tour-outline-def-item .dotted li:nth-of-type(3) {
  margin: 0 0 0;
  padding: 0 0 0.5em 2em;
  border-bottom: none;
  background: url(../img/tour3-no3.svg) left top / 26px no-repeat;
}
.tour3 .tour-outline-def-item .dotted li h4 {
  font-weight: bold;
  font-size: 16px;
  line-height: 1.4em;
  color: #42875F;
  margin-bottom: 0.4em;
}
.tour3 .tour-outline-def-item {
  position: relative;
}
.tour3 .tour-outline-def-item .list-note {
  width: 250px;
  position: absolute;
  left: 100%;
  bottom: -10px;
}
.tour3 .tour-outline-dd .nomved {
  width: 500px;
  padding-top: 10px;
}
.tour3 .tour-outline-dd .nomved li {
  display: inline-block;
  padding: 0 1em 0 1.7em;
  background: url(../img/tour3-no1.svg) left 0.2em / 23px no-repeat;
  font-weight: bold;
}
.tour3 .tour-outline-dd .nomved li:nth-of-type(2) {
  background-image: url(../img/tour3-no2.svg);
}
.tour3 .tour-outline-dd .nomved li:nth-of-type(3) {
  background-image: url(../img/tour3-no3.svg);
}
.tour3 .tour-outline-def-item .nomved li span {
  font-size: 1.4em;
}
@media screen and (min-width: 901px) and (max-width: 1000px) {
  .tour3 .tour-outline-def-item .list-note {
    left: auto;
    right: 0;
    bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour3 .tour-outline-def-item .list-note {
    position: relative;
    left: 0;
    bottom: auto;
    width: 100%;
  }
  .tour3 .tour-outline-def-item .list-note .pc {
    display: none!important;
  }
}

@media screen and (max-width: 767px) {
  .tour3 .tour-outline-def-item .list-note {
    width: 100%;
    position: relative;
    left: 0;
    bottom: 0;
  }
  .tour3 .tour-outline-dd .nomved {
    width: 100%;
    padding-top: 10px;
  }
  .tour3 .tour-outline-photo {
    width: 100%;
  }
}

.tour3 .tour-point-item.point1 .img1 {
  width: 127px;
  float: right;
  margin: -120px 40px 0;
  position: relative;
  z-index: 10;
}

.tour3 .tour-point-item.point1, .tour3 .tour-point-item.point2 {
  width: 500px;
}
.tour3 .tour-point-item.point2 .point-title {
  font-size: 16px;
  line-height: 1.4em;
  margin-bottom: 10px;
}
.tour3 .tour-point-item.point2 .img2 {
  width: 225px;
  position: absolute;
  top: -105px;
  left: 525px;
}
.tour3 .tour-point-item.point3 {
  min-height: 160px;
}
.tour3 .tour-point-item.point3 .img3 {
  width: 225px;
  position: absolute;
  top: -135px;
  left: 525px;
}
.tour3 .tour-point-item.point3 .img3 img {
  padding-bottom: 7px;
}
.tour3 .tour-point-item.point4 .tds {
  font-size: 12px;
  position: absolute;
  bottom: 35px;
  right: 0;
}
.tour3 .tour-point-item.point4 .img4 {
  width: 127px;
  position: absolute;
  top: -15px;
  right: 0;
}
.tour3 .tour-point-item.point4 .point-title {
  width: calc(100% - 240px);
}
.tour3 .tour-point-item.point4  {
  min-height: 190px;
}
.tour3 .tour-point-item.point4 .tour-point-text span {
  display: block;
  font-size: 12px;
}
.tour3 .tour-point-item.point5 .tour-point-text {
  padding: 0 0 0 92px;
}
.tour3 .tour-point-item.point5 .img5 {
  width: 170px;
  position: absolute;
  top: 15px;
  right: 0;
}
.tour3 .tour-point-item.point5 .tour-point-text .note-r {
  padding: 40px 0 0;
}
.tour3 .process-inner .frame-contents {
  padding: 20px 0 0;
}
.tour3 .c-button-area {
  margin: 10px auto 10px;
}
.tour3 .frame-bottom {
  margin-top: 40px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour3 .tour-point-item.point1, .tour3 .tour-point-item.point2 {
    width: 100%;
  }
  .tour3 .tour-point-item.point2 {
    padding-right: 235px;
  }
  .tour3 .tour-point-item.point2 .img2 {
    top: 25px;
    left: auto;
    right: 0;
  }
  .tour3 .tour-point-item.point3 .img3 {
    margin: 10px auto 0;
    position: relative;
    top: 0;
    left: 0;
    width: 460px;
    display: flex;
    gap: 10px;
  }
  .tour3 .tour-point-item.point3 .img3 img {
    width: 225px;
  }
  .tour3 .tour-point-item.point5 .point-title-wrap {
    width: calc(100% - 190px);
  }
  .tour3 .tour-point-item.point5 .tour-point-text .note-r {
    padding-top: 30px;
  }
}

@media screen and (max-width: 767px) {
  .tour3 .tour-point-item.point1, .tour3 .tour-point-item.point2 {
    width: 100%;
  }
  .tour3 .tour-point-item.point2 .point-title {
    margin-bottom: 0px;
  }
  .tour3 .tour-point-item.point2 .img2 {
    width: 300px;
    max-width: 100%;
    position: relative;
    top: auto;
    left: auto;
    margin: 10px auto 0;
  }
  .tour3 .tour-point-item.point3 {
    height: auto;
  }
  .tour3 .tour-point-item.point3 .img3 {
    width: 100%;
    position: relative;
    top: auto;
    left: auto;
    margin: 10px auto 0;
  }
  .tour3 .tour-point-item.point3 .img3 img {
    width: 400px;
    display: block;
    margin: 0 auto 5px;
  }
  .tour3 .tour-point-item.point4 .point-title {
    width: 100%;
  }
  .tour3 .tour-point-item.point4 .tds {
    font-size: 12px;
    position: relative;
    bottom: auto;
    right: 0;
  }
  .tour3 .tour-point-item.point4 .img4 {
    width: 200px;
    position: relative;
    top: auto;
    right: 0;
    margin: 10px auto 0;
  }
  .tour3 .tour-point-item.point4 .tour-point-text span {
    padding-bottom: 0;
  }
  .tour3 .tour-point-item.point5 .tour-point-text {
    padding: 0;
  }
  .tour3 .tour-point-item.point5 .img5 {
    width: 100%;
    position: relative;
    top: auto;
    right: 0;
    margin: 10px 0 0;
  }
  .tour3 .tour-point-item.point5 .img5 img {
    width: 100%;
  }
  .tour3 .tour-point-item.point5 .tour-point-text .note-r {
    padding: 5px 0 0;
  }
  .tour3 .process-inner .frame-contents {
    padding: 20px 0 0;
  }
  .tour3 .c-button-area {
    margin: 10px auto 10px;
  }
  .tour3 .frame-bottom {
    margin-top: 40px;
  }
}

/*!
tour4
------------------------------
*/
.tour4 .tour-title-lv2 {
  width: 775px;
  max-width: 100%;
  font-size: 27px;
  font-weight: bold;
  color: var(--color-white);
  background-color: #79420f;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0.7em 2.2em 0.5em;
  position: relative;
}
.tour4 .tour-title-text::before {
  content: "";
  width: 810px;
  height: 88px;
  max-width: 104%;
  background-image: url("../img/ttl-deco4.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.tour4 .tour-title-text > span {
  font-size: 0.85em;
}

.tour4 .tour-text > span {
  position: relative;
  display: inline-block;
}

.tour4 .tour-outline-photo {
  width: 315px;
  position: relative;
  margin: 0 auto;
}

.tour4 .tour-outline-inner {
  column-gap: 20px;
}

.tour4 .tour-outline-text.text1 {
  text-indent: -5.95em;
  padding-left: 5.95em;
  line-height: 1.76;
}

.tour4 .tour-outline-text.text1 > span {
  text-indent: 0;
}

.tour4 .tour-outline-def .list-note {
  padding-left: 15px;
}

.tour4 .tour-point-item {
  padding: 10px 0;
}

.tour4 .tour-point-item.point1 {
  width: 482px;
}

.tour4 .tour-point-item.point2 .img2 {
  width: 235px;
  position: absolute;
  top: -122px;
  left: 500px;
}

@media screen and (min-width: 768px) and (max-width: 900px) {
  .tour4 .tour-point-item.point1 {
    width: 100%;
  }
  .tour4 .tour-title-text::before {
    width: 120%;
    aspect-ratio: 810 / 88;
  }
  .tour4 .tour-point-item.point2 .img2 {
    position: relative;
    top: 0;
    left: 0;
    margin: 15px auto 20px;
  }
  .tour4 .tour-title-text br.sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .tour4 .tour-title-lv2 {
    font-size: 20px;
    padding: 0.8em 0.2em 0.6em;
    margin: 0 -10px;
    max-width: none;
    width: auto;
  }
  .tour4 .tour-title-text::before {
    background-image: url("../img/ttl-deco4sp.png");
    width: 104%;
    height: auto;
    aspect-ratio: 690 / 190;
  }
  .tour4 .tour-outline-photo {
    width: 100%;
    margin-bottom: 30px;
  }
  .tour4 .tour-point-item.point1 {
    width: 100%;
  }
  .tour4 .tour-point-item.point2 .img2 {
    position: relative;
    top: 0;
    left: 0;
    margin: 15px auto 20px;
  }

}

/*!
tour5
------------------------------
*/
.tour5::after {
  width: 800px;
  max-width: 90%;
}
.tour5 .tour-outline-inner {
  flex-direction: row;
}
.tour5 .tour-title-lv2 {
  position: relative;
}
.tour5 .tour-title-text {
  width: 775px;
  max-width: 100%;
  font-size: 27px;
  font-weight: bold;
  color: var(--color-white);
  background-color: #eb5b90;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0.4em 0.5em;
  display: block;
  margin: 0 auto;
}
.tour5 .tour-title-text::before {
  content: "";
  width: 852px;
  max-width: 110%;
  height: auto;
  aspect-ratio: 852 / 122;
  background-image: url("../img/ttl-deco5.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.tour5 .tour-title-lv2 .tour-title-text > .sm {
  font-size: 0.65em;
  display: inline-block;
  position: relative;
  padding: 0 1.3em;
}
.tour5 .tour-title-lv2 .tour-title-text > .sm::before, .tour5 .tour-title-lv2 .tour-title-text > .sm::after {
  content: "～";
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.tour5 .tour-title-lv2 .tour-title-text > .sm::before {
  left: 0;
}
.tour5 .tour-title-lv2 .tour-title-text > .sm::after {
  right: 0;
}
.tour5 .tour-title-lv2 .tour-title-text > .md {
  font-size: 0.85em;
}
.tour5 .tour-title-deco {
  width: 210px;
  position: absolute;
  top: 54px;
  right: 0;
}
.tour5 .tour-cont {
  padding-top: 20px;
}
.tour5 .tour-text {
  letter-spacing: 0.02em;
}
.tour5 .tour-outline-photo {
  width: 300px;
  max-width: 39%;
  margin: 0 auto;
}
.tour5 .point-title {
  letter-spacing: normal;
}
.tour5 .tour-point-item {
  padding: 20px 0 12px;
}
.tour5 .tour-point-item.point1 .img1 {
  width: 250px;
  max-width: 32.5%;
  position: absolute;
  top: 20px;
  right: 0;
}
.tour5 .tour-point-item.point6 .img1 {
  width: 108px;
}
.tour5 .tour-point-item.point1, .tour5 .tour-point-item.point2, .tour5 .tour-point-item.point3, .tour5 .tour-point-item.point4, .tour5 .tour-point-item.point5 {
  border-bottom: none;
}
.tour5 .tour-point-item.point1::before {
  content: "";
  width: 65%;
  height: 0;
  border-bottom: 3px dotted var(--color-yellow);
  position: absolute;
  bottom: 0;
  left: 0;
}
.tour5 .tour-point-item.point2::before, .tour5 .tour-point-item.point3::before, .tour5 .tour-point-item.point3::before, .tour5 .tour-point-item.point4::before, .tour5 .tour-point-item.point5::before {
  content: "";
  width: 74%;
  height: 0;
  border-bottom: 3px dotted var(--color-yellow);
  position: absolute;
  bottom: 0;
  left: 0;
}
.tour5 .tour-point-item.point2 .img-ly {
  width: 182px;
  max-width: 23.6%;
  position: absolute;
  top: 70px;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 2;
}
.tour5 .tour-point-item.point6 .img-ly {
  position: absolute;
  top: -13px;
  right: 0;
  display: flex;
  flex-direction: row-reverse;
  align-items: flex-end;
  gap: 10px;
}
.tour5 .tour-point-item.point6 .tour-point-text {
  padding-left: 90px;
}
.tour5 .tour-point-item.point6 .tour-point-text p > span {
  display: block;
  font-size: 0.85em;
  margin-top: 0.5em;
}
.tour5 .frame-line img {
  width: 100%;
}
.tour5 .point-title-wrap {
  padding-right: 25%;
}
.tour5 .tour-point-item.point1 .point-title-wrap {
  padding-right: 34%;
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .tour5 .tour-title-deco {
    top: 44px;
    width: 17.5vw;
  }
  .tour5 .tour-title-lv2 .tour-title-text > .sm {
    font-size: clamp(16px, 2.08vw, 18px);
  }
}
@media screen and (max-width: 900px) {
  .nomd {
    display: none;
  }
  .tour5 .tour-point-item {
    padding: 20px 0;
  }
  .tour5 .tour-point-item.point1 {
    width: 100%;
  }
  .tour5 .tour-point-item.point1 .img1 {
    width: 100%;
    max-width: 400px;
    position: relative;
    top: auto;
    display: block;
    margin: 15px auto 0;
  }
  .tour5 .tour-point-item.point1::before {
    width: 100%;
  }
  .tour5 .tour-point-item.point2 .img-ly {
    width: auto;
    max-width: 500px;
    margin: 0 auto;
    position: relative;
    flex-direction: row;
    top: auto;
    justify-content: center;
    margin-top: 15px;
  }
  .tour5 .tour-point-item.point2 .img-ly .img1 {
    width: 182px;
  }
  .tour5 .tour-point-item.point2::before, .tour5 .tour-point-item.point3::before, .tour5 .tour-point-item.point3::before, .tour5 .tour-point-item.point4::before, .tour5 .tour-point-item.point5::before {
    width: 100%;
  }
  .tour5 .tour-point-item.point6 .img-ly {
    position: relative;
    top: auto;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }
  .tour5 .point-title-wrap, .tour5 .tour-point-item.point1 .point-title-wrap {
    padding-right: 0;
  }
  .tour5 .tour-outline-inner {
    flex-direction: column;
  }
  .tour5 .tour-outline-photo {
    width: 100%;
    max-width: 100%;
  }
  .tour5 .tour-point-item.point2 .img-ly .img1 {
    width: 50%;
  }
  .tour5 .tour-point-item.point6 .img1 {
    width: 100%;
    max-width: 200px;
  }
}
@media screen and (max-width: 767px) {
  .tour5 .tour-outline-inner {
    flex-direction: column;
    row-gap: 20px;
  }
  .tour5 .tour-title-lv2 .tour-title-text > .sm {
    line-height: 1.5;
  }
  .tour5 .tour-title-deco {
    width: 100px;
    top: -45px;
    left: auto;
    right: -30px;
  }
  .tour5 .tour-title-text {
    font-size: 20px;
    width: auto;
    max-width: 100%;
    padding: 0.8em 0.2em 0.6em;
  }
  .tour5 .tour-title-text::before {
    width: 80px;
    max-width: 100%;
    background-image: url("../img/ttl-deco5sp-l.svg");
    aspect-ratio: 164 / 274;
    top: -24px;
    left: -20px;
    transform: none;
  }
  .tour5 .tour-title-text::after {
    content: "";
    width: 130px;
    height: auto;
    aspect-ratio: 290 / 274;
    background-image: url("../img/ttl-deco5sp-r.svg");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    position: absolute;
    top: -12px;
    left: auto;
    right: -25px;
  }
  .tour5 .tour-point-item.point2 .img-ly {
    gap: clamp(0px, 3.2vw, 15px);
  }
  .tour5 .tour-point-item.point6 .tour-point-text {
    padding-left: 0;
  }
}

/*!
tour6
------------------------------
*/
.tour6 .tour-outline-inner {
  flex-direction: row;
}
.tour6 .tour-title-lv2 {
  position: relative;
}
.tour6 .tour-title-text {
  width: 775px;
  max-width: 100%;
  font-size: 27px;
  font-weight: bold;
  color: var(--color-white);
  background-color: #0085cb;
  text-align: center;
  letter-spacing: 0.1em;
  padding: 0.65em 1em;
  display: block;
  margin: 0 auto;
  position: relative;
}
.tour6 .tour-title-text::before {
  content: "";
  width: 836px;
  max-width: 110%;
  height: auto;
  aspect-ratio: 836 / 100;
  background-image: url("../img/ttl-deco6.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  top: -42px;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.tour6 .tour-title-text::after {
  content: "";
  width: 56px;
  height: auto;
  aspect-ratio: 56 / 36;
  background-image: url("../img/ttl-deco6-2.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  right: 98px;
}
.tour6 .tour-title-lv2 .tour-title-text > span {
  transform: translateX(-1.3em);
  display: inline-block;
}
.tour6 .tour-title-lv2 .tour-title-text .sm {
  font-size: 0.65em;
}
.tour6 .tour-title-deco {
  width: 210px;
  position: absolute;
  top: -35px;
  right: 0;
}
.tour6 .tour-cont {
  padding-top: 20px;
}
.tour6 .tour-outline-photo {
  width: 362px;
  max-width: 47%;
  margin: 0 auto;
}
.tour6 .point-icon {
  font-size: 16px;
  font-weight: bold;
  color: #38ab37;
  margin-bottom: 0.5em;
}
.tour6 .point-icon.c-green {
  color: #38ab37;
}
.tour6 .point-icon.c-pink {
  color: #eb5b90;
}
.tour6 .point-icon.c-ore {
  color: #f0882c;
}
.tour6 .point-icon.c-blu {
  color: #036eb8;
}
.tour6 .point-icon > span {
  display: inline-block;
  background-color: #e3edca;
  padding: 0.3em 0.9em;
  border-radius: 0 100vh 100vh 0;
  margin-right: 8px;
}
.tour6 .point-icon.c-green > span {
  background-color: #e3edca;
}
.tour6 .point-icon.c-pink > span {
  background-color: #fbdee9;
}
.tour6 .point-icon.c-ore > span {
  background-color: #fdecb2;
}
.tour6 .point-icon.c-blu > span {
  background-color: #cce7f5;
}
.tour6 .tour-point-item {
  padding: 20px 0 12px;
}
.tour6 .tour-point-item.point2 .img1 {
  width: 207px;
  max-width: 26.8%;
  position: absolute;
  top: -120px;
  right: 0;
}
.tour6 .tour-point-item.point3 .img1 {
  width: 207px;
  max-width: 26.8%;
  position: absolute;
  top: -130px;
  right: 0;
}
.tour6 .tour-point-item.point4 .img1 {
  width: 207px;
  max-width: 26.8%;
  position: absolute;
  top: -140px;
  right: 0;
}
.tour6 .tour-point-item.point1, .tour6 .tour-point-item.point2, .tour6 .tour-point-item.point3, .tour6 .tour-point-item.point4 {
  border-bottom: none;
}
.tour6 .tour-point-item.point1::before, .tour6 .tour-point-item.point2::before, .tour6 .tour-point-item.point3::before {
  content: "";
  width: 70%;
  height: 0;
  border-bottom: 3px dotted var(--color-yellow);
  position: absolute;
  bottom: 0;
  left: 0;
}
.tour6 .tour-point-item.point4::before {
  content: "";
  width: 84%;
  height: 0;
  border-bottom: 3px dotted var(--color-yellow);
  position: absolute;
  bottom: 0;
  left: 0;
}
.tour6 .tour-point-item.point6 .tour-point-text p > span {
  display: block;
  font-size: 0.85em;
  margin-top: 0.5em;
}
.tour6 .tour-point-item.point5 .img-ly {
  position: absolute;
  top: -124px;
  right: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.tour6 .tour-point-item.point5 .img1 {
  width: 108px;
}
.tour6 .tour-point-item.point5 .tour-point-text {
  padding-left: 90px;
}
.tour6 .tour-point-item.point5 .tour-point-text p > span {
  display: block;
  font-size: 0.85em;
  margin-top: 0.5em;
}
.tour6 .frame-line img {
  width: 100%;
}
.tour6 .point-title-wrap {
  padding-right: 25%;
}
.tour6 .tour-point-item.point5 .point-title-wrap {
  padding-right: 17%;
}

@media screen and (min-width: 768px) and (max-width: 1200px) {
  .tour6 .tour-title-text::after {
    right: -6px;
  }
  .tour6 .tour-title-deco {
    width: 17.5vw;
    top: -9.2vw;
  }
  .tour6 .tour-title-lv2 .tour-title-text > span {
    transform: none;
  }
}
@media screen and (max-width: 900px) {
  .tour6 .tour-title-lv2 .tour-title-text > span {
    transform: none;
  }
  .tour6 .tour-point-item.point2 .img1, .tour6 .tour-point-item.point3 .img1, .tour6 .tour-point-item.point4 .img1 {
    width: 100%;
    max-width: 414px;
    position: relative;
    top: auto;
    display: block;
    margin: 15px auto 0;
  }
  .tour6 .tour-point-item {
    padding: 20px 0;
  }
  .tour6 .point-title .nomd {
    display: none;
  }
  .tour6 .tour-point-item.point5 .img-ly {
    position: relative;
    top: auto;
    flex-direction: column;
    align-items: center;
    margin-top: 15px;
  }
  .tour6 .tour-point-item.point5 .img1 {
    width: 100%;
    max-width: 200px;
  }
  .tour6 .tour-point-item.point1::before, .tour6 .tour-point-item.point2::before, .tour6 .tour-point-item.point3::before, .tour6 .tour-point-item.point4::before {
    width: 100%;
  }
  .tour6 .point-title-wrap, .tour6 .tour-point-item.point5 .point-title-wrap {
    padding-right: 0;
  }
  .tour6 .tour-outline-inner {
    flex-direction: column;
  }
  .tour6 .tour-outline-photo {
    width: 100%;
    max-width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .tour6 .tour-title-text {
    font-size: 20px;
    width: auto;
    max-width: 100%;
    padding: 0.8em 0.2em 0.6em;
  }
  .tour6 .tour-title-text::before {
    width: 200px;
    max-width: 100%;
    background-image: url("../img/ttl-deco6sp.png");
    aspect-ratio: 400 / 140;
    top: -26px;
    left: -30px;
    transform: none;
  }
  .tour6 .tour-title-deco {
    top: -35px;
  }
  .tour6 .tour-title-text::after {
    right: -8px;
  }
  .tour6 .point-icon-wrap {
    width: 100%;
  }
  .tour6 .tour-point-item.point5 .tour-point-text {
    padding-left: 0;
  }
  .tour6 .tour-title-deco {
    width: 100px;
    top: -45px;
    left: auto;
    right: -30px;
  }
}

/*!
special1
------------------------------
*/
.special1 .special-col2-l {
  width: 370px;
  max-width: 51.4%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .special1 .special-col2-l {
    max-width: 100%;
    margin: 0 auto;
  }
}

.special1 .special-col2-r {
  align-self: flex-end;
}
@media screen and (max-width: 767px) {
  .special1 .special-col2-r {
    align-self: center;
  }
}

.special1-col2 {
  display: flex;
  align-items: flex-end;
  column-gap: 5px;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .special1-col2 {
    justify-content: center;
    margin: 20px auto 0;
  }
}

.special1-col2 .special-img2 {
  width: 120px;
  max-width: 40%;
  flex-shrink: 0;
}

.special1-col2 .list-note {
  margin-top: 0;
}

/*!
special2
------------------------------
*/
.special2 .special-col2-l {
  width: 200px;
  max-width: 27.8%;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .special2 .special-col2-l {
    max-width: 100%;
    margin: 0 auto;
  }
}

/*!
special3
------------------------------
*/
.special3 .special-col2-l {
  width: 320px;
  max-width: 44.5%;
}
@media screen and (max-width: 767px) {
  .special3 .special-col2-l {
    max-width: 100%;
    margin: 0 auto;
  }
}

/*!
coming-soon
------------------------------
*/
.special-sec.coming-soon .special-col2 {
  justify-content: space-between;
}

.special-sec.coming-soon .special-col2-l {
  width: 378px;
  max-width: 52.2%;
}
@media screen and (max-width: 767px) {
  .special-sec.coming-soon .special-col2-l {
    max-width: 100%;
  margin: 0 auto;
  }
}

.special-sec.coming-soon .special-col2-r {
  width: 375px;
  max-width: 52.1%;
}
@media screen and (max-width: 767px) {
  .special-sec.coming-soon .special-col2-r {
    max-width: 100%;
    margin: 0 auto;
  }
}

.special-sec.coming-soon .special-col2-l .special-img,
.special-sec.coming-soon .special-col2-r .special-img {
  position: relative;
}

.special-sec.coming-soon .special-col2-l .special-img::before {
  content: "";
  width: 111.64%;
  height: auto;
  aspect-ratio: 422 / 96;
  background-image: url("../img/img-special-bisyu-ill.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: -6%;
  left: -8%;
}

.special-sec.coming-soon .special-col2-r .special-img::before {
  content: "";
  width: 105.3%;
  height: auto;
  aspect-ratio: 395 / 103;
  background-image: url("../img/img-special-bisyoku-ill.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  position: absolute;
  bottom: -6%;
  left: -3%;
}

.special-sec.coming-soon .special-txt {
  max-width: 87%;
  font-size: 14px;
  line-height: 1.6;
  text-align: center;
  margin: 1em auto 0;
}
@media screen and (max-width: 767px) {
  .special-sec.coming-soon .special-txt {
    max-width: 100%;
  }
}