@charset "UTF-8";
/*――――――――――――――――――――――――――――――――――――――――――――
/* font
――――――――――――――――――――――――――――――――――――――――――――――*/
/*――――――――――――――――――――――――――――――――――――――――――――
/* vw
――――――――――――――――――――――――――――――――――――――――――――――*/
/*――――――――――――――――――――――――――――――――――――――――――――
/* line-height
――――――――――――――――――――――――――――――――――――――――――――――*/
/**********************************************************

ブレイクポイント

***********************************************************/
@font-face {
  font-family: "Sawarabi Mincho";
  font-style: normal;
  font-weight: 400;
  src: url("../font/sawarabi.woff2") format("woff2");
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* pc sp mini 出し分けのためのcss
――――――――――――――――――――――――――――――――――――――――――――――*/
@media (min-width: 769px) {
  .sp-only {
    display: none !important;
  }
  .mini-only {
    display: none !important;
  }
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
@media (max-width: 768px) {
  .pc-only {
    display: none !important;
  }
  .mini-only {
    display: none !important;
  }
}
@media (max-width: 425px) {
  .pc-only {
    display: none !important;
  }
  .mini-only {
    display: block !important;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* html,body
――――――――――――――――――――――――――――――――――――――――――――――*/
* {
  min-height: 0;
  min-width: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 72px;
}
html.js-noscroll {
  overflow: hidden;
  scroll-behavior: auto;
}
body {
  min-height: 100svh;
  color: #1E3343;
  font-size: 14px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  line-height: 1.6;
  background-color: #ffffff;
  font-weight: 300;
  position: relative;
  overflow-x: clip;
}
body.is-active {
  overflow: hidden;
}

.l-bodyWrap {
  padding-top: 72px;
  overflow-x: hidden;
}
@media (max-width: 768px) {
  .l-bodyWrap {
    padding-top: 60px;
  }
}

main {
  display: block;
  overflow-x: clip;
}

.height-adjust {
  padding-top: 100px;
}
@media (max-width: 768px) {
  .height-adjust {
    padding-top: 60px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* デフォルトの設定
――――――――――――――――――――――――――――――――――――――――――――――*/
img {
  display: block;
  max-width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  image-orientation: from-image;
  pointer-events: none;
}

svg {
  display: block;
}

a {
  transition: 0.3s;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}
a.c-imgScale .c-img {
  transition: 0.5s;
}
a.c-imgScale:hover {
  opacity: 1;
}
a.c-imgScale:hover .c-img {
  transform: scale(1.1);
}
a circle,
a path,
a line,
a rect {
  transition: 0.3s;
}
a::before, a::after {
  transition: 0.3s;
}

input,
textarea {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}

.font-accent {
  font-family: "Sawarabi Mincho", serif;
}

.relative {
  position: relative;
}

.inlineArrow {
  display: inline-block;
  position: relative;
}
.inlineArrow::after {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-color: #3CA4BC;
  mask-image: url(../img/common/ico_arrow-circle-red.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/common/ico_arrow-circle-red.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  transform: translate(27%, 19%);
}

.hide {
  display: none;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* 共通のレイアウト
――――――――――――――――――――――――――――――――――――――――――――――*/
/*** section ***/
.l-section {
  padding: 75px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 75px;
  position: relative;
}

.l-inner {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
}
.l-inner.--s {
  max-width: 1040px;
}
.l-inner.--ss {
  max-width: 920px;
}

@media (max-width: 768px) {
  .l-section {
    padding-right: 15px;
    padding-left: 15px;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* 余白調整
――――――――――――――――――――――――――――――――――――――――――――――*/
.l-pd {
  padding-right: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  padding-left: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}

.l-pd-left {
  padding-left: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}

.l-pd-right {
  padding-right: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}

.l-pd0-left {
  margin-left: clamp(-60px, -30px + -30 * (100vw - 768px) / (1280 - 768), -30px);
}

.l-pd0-right {
  margin-right: clamp(-60px, -30px + -30 * (100vw - 768px) / (1280 - 768), -30px);
}

@media (max-width: 768px) {
  .l-pd {
    padding-right: 15px;
    padding-left: 15px;
  }
  .l-pd-left {
    padding-left: 15px;
  }
  .l-pd-right {
    padding-right: 15px;
  }
  .l-pd0-left {
    margin-left: -15px;
  }
  .l-pd0-right {
    margin-right: -15px;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* 文字位置調整
――――――――――――――――――――――――――――――――――――――――――――――*/
.text-center {
  text-align: center !important;
}

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

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

/*――――――――――――――――――――――――――――――――――――――――――――
/* font
――――――――――――――――――――――――――――――――――――――――――――――*/
.f-bold {
  font-weight: 600 !important;
}

.f-normal {
  font-weight: 300 !important;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* margin
――――――――――――――――――――――――――――――――――――――――――――――*/
.mt-0 {
  margin-top: 0 !important;
}

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

.mt-60 {
  margin-top: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) !important;
}

.mg-auto {
  margin: auto;
}

/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

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

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

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: 600;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  -moz-appearance: none;
       appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

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

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

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

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

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

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

/**
 * Fix appearance for Firefox
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

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

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

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 600;
}

/**********************************************************

l-c-bread__list-area

***********************************************************/
.l-c-bread__list-area {
  padding: 27px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}

.page-lower .l-c-bread__list-area {
  padding-top: 17px;
  padding-bottom: 18px;
}

.c-bread__list {
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  align-items: center;
  list-style: none;
  white-space: nowrap;
  color: #1E3343;
  font-size: 12px;
}
@media (max-width: 768px) {
  .c-bread__list {
    overflow-x: scroll;
  }
}

.c-bread__item {
  position: relative;
  margin-right: 10px;
  padding-right: 10px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
.c-bread__item::after {
  content: "";
  display: block;
  background: #BFBFBF;
  width: 1px;
  height: 12px;
  position: absolute;
  top: 50%;
  transform: translateY(-7px) rotate(35deg);
  transform-origin: center;
  right: 0;
}
.c-bread__item:last-of-type::after {
  display: none;
}
.c-bread__item:last-of-type {
  color: #979EA3;
  margin-right: 0;
  padding-right: 0;
}

.c-bread__link a {
  color: #1E3343;
}
.c-bread__link a:hover {
  opacity: 1;
  color: rgb(60, 165, 252);
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  padding: 10px;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 168px;
  min-height: 52px;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 0;
  isolation: isolate;
  background: linear-gradient(135deg, #FFEEE5, #FFEBF0);
}
.c-btn::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #EA9060, #FD85A3);
  transition: opacity 0.3s ease;
  z-index: 1;
  opacity: 0;
}
.c-btn:hover {
  opacity: 1;
}
.c-btn:hover::after {
  opacity: 1;
}
.c-btn:hover .c-btn-text {
  color: #FFFFFF;
}
.c-btn:hover .c-btn-text::before {
  background-color: #FFFFFF;
}
.c-btn.c-btn--l {
  min-width: 262px;
  min-height: 62px;
}
.c-btn.c-btn--l .c-btn-text {
  font-size: 16px;
  padding-right: 28px;
}
@media (max-width: 768px) {
  .c-btn.c-btn--l .c-btn-text {
    padding-right: 12px;
  }
}
.c-btn.c-btn--l .c-btn-text::before {
  width: 14px;
  height: 6px;
  right: -1%;
  bottom: 2px;
}
@media (max-width: 768px) {
  .c-btn.c-btn--l .c-btn-text::before {
    right: -13%;
  }
}
.c-btn.c-btn--m {
  min-width: 178px;
  min-height: 50px;
}
.c-btn.c-btn--m .c-btn-text {
  font-size: 14px;
  padding-right: 24px;
}
@media (max-width: 768px) {
  .c-btn.c-btn--m .c-btn-text {
    padding-right: 10px;
  }
}
.c-btn.c-btn--m .c-btn-text::before {
  width: 14px;
  height: 6px;
  right: -1%;
  bottom: 2px;
}
@media (max-width: 768px) {
  .c-btn.c-btn--m .c-btn-text::before {
    right: -13%;
  }
}
.c-btn.--wave {
  background: #FFFFFF;
}
.c-btn.--wave::after {
  content: "";
  mask-image: url(../img/common/btn_hover_wave_pink.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: 345px 76px;
  -webkit-mask-image: url(../img/common/btn_hover_wave_pink.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: 345px 76px;
  width: 345px;
  height: 76px;
  opacity: 0;
  position: absolute;
  left: -9.6px;
  bottom: 0;
  transform: translateY(60px);
  transition: transform 0.5s, opacity 0.3s;
  pointer-events: none;
  z-index: 1;
}
.c-btn.--wave:hover::after {
  opacity: 1;
  transform: translateY(-7px);
}
.c-btn.--wave .c-btn-text {
  font-size: 16px;
  padding-right: 0;
}
.c-btn.--pink {
  background: #FFFFFF;
}
.c-btn.--pink::after {
  background: linear-gradient(to right, #FF6565 0%, #FF6CB0 100%);
}
.c-btn.--pink:hover .c-btn-text {
  color: #ffffff;
}
.c-btn.--pink:hover .c-btn-text::before {
  background-color: #ffffff;
}
.c-btn.--pink .c-btn-text {
  color: #FF6565;
  padding-left: 24px;
}
.c-btn.--pink .c-btn-text::before {
  content: "";
  mask-image: url(../img/common/ico_reserve-header.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/ico_reserve-header.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #FF6565;
  width: 18px;
  height: 19px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  margin: auto 0;
}
.c-btn.--black {
  background: #FFFFFF;
}
.c-btn.--black::after {
  background: #4A4A4A;
}
.c-btn.--black:hover .c-btn-text {
  color: #ffffff;
}
.c-btn.--black:hover .c-btn-text::before {
  background-color: #ffffff;
}
.c-btn.--black .c-btn-text {
  color: #4A4A4A;
  padding-left: 27px;
}
.c-btn.--black .c-btn-text::before {
  content: "";
  mask-image: url(../img/common/ico_mail.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/ico_mail.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #4A4A4A;
  width: 21px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  margin: auto 0;
}

.c-btn-text {
  font-size: 14px;
  font-weight: 600;
  color: #212121;
  position: relative;
  padding-right: 15px;
  z-index: 2;
  transition: color 0.3s ease;
}
.c-btn-text::before {
  content: "";
  display: block;
  mask-image: url(../img/common/ico_btn_arrow.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  /* Safari 対応 */
  -webkit-mask-image: url(../img/common/ico_btn_arrow.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #212121;
  width: 15px;
  height: 6px;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -13%;
  margin: auto;
  transition: background-color 0.3s ease;
}

.c-btn--dark {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  background-color: #1E3343;
  padding: 12px 20px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  max-width: 315px;
  height: 60px;
  transition: 0.3s;
  position: relative;
  border: 2px solid #1E3343;
  border-radius: 10px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-btn--dark {
    font-size: 14px;
  }
}
.c-btn--dark .c-btn-text {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  position: relative;
  padding-left: 20px;
  z-index: 2;
  transition: color 0.3s ease;
}
.c-btn--dark .c-btn-text::before {
  content: "";
  display: block;
  mask-image: url(../img/common/ico_arrow-white.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  /* Safari 対応 */
  -webkit-mask-image: url(../img/common/ico_arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #ffffff;
  width: clamp(17px, 17px + 2 * (100vw - 768px) / 512, 19px);
  height: clamp(5px, 5px + 1 * (100vw - 768px) / 512, 6px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -13%;
  margin: auto;
  transition: background-color 0.3s ease;
}
.c-btn--dark .c-btn-text.--mail::before {
  content: "";
  position: absolute;
  top: 12px;
  bottom: auto;
  right: auto;
  left: -7px;
  transform: translateY(-50%);
  width: 19px;
  height: 16px;
  mask-image: url(../img/common/ico-mail-white.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/ico-mail-white.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #FFFFFF;
}
.c-btn--dark:hover {
  opacity: 1;
  background-color: #FFFFFF;
}
.c-btn--dark:hover .c-btn-text {
  color: #1E3343;
}
.c-btn--dark:hover .c-btn-text::before {
  background-color: #1E3343;
}

.c-btn--copy {
  display: flex;
  justify-content: center;
  align-items: center;
  background: none;
  background-color: #EBEBEB;
  color: #1E3343;
  padding: 12px 50px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  width: 100%;
  max-width: 385px;
  height: 70px;
  transition: 0.3s;
  position: relative;
  border: 2px solid #EBEBEB;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-btn--copy {
    font-size: 16px;
    padding: 12px 54px 12px 34px;
  }
}
.c-btn--copy::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 46%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  mask-image: url(../img/common/ico-copy.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/ico-copy.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #1E3343;
}
@media (max-width: 768px) {
  .c-btn--copy::after {
    right: 23px;
    top: 50%;
    width: 20px;
    height: 17px;
  }
}
.c-btn--copy:hover {
  background-color: #FFFFFF;
}
.c-btn--copy:hover::after {
  background-color: #1E3343;
}

.c-btn--googleReview {
  display: flex;
  justify-content: center;
  align-items: center;
  background: linear-gradient(135deg, #FFEEE5, #FFEBF0);
  color: #1E3343;
  padding: 12px 50px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 18px;
  font-weight: 600;
  width: 100%;
  max-width: 385px;
  height: 70px;
  text-align: center;
  transition: 0.3s;
  position: relative;
}
@media (max-width: 768px) {
  .c-btn--googleReview {
    font-size: 16px;
    padding: 12px 68px 12px 51px;
  }
}
.c-btn--googleReview::after {
  content: "";
  position: absolute;
  right: 23px;
  top: 49%;
  transform: translateY(-50%);
  width: 19px;
  height: 18px;
  mask-image: url(../img/common/ico-link-blank.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/ico-link-blank.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #1E3343;
}
@media (max-width: 768px) {
  .c-btn--googleReview::after {
    width: 14px;
    height: 14px;
    right: 28px;
  }
}
.c-btn--googleReview:hover {
  opacity: 1;
  color: #FFFFFF;
  background: linear-gradient(to right, #FF6565 0%, #FF6CB0 100%);
}
.c-btn--googleReview:hover::after {
  background-color: #FFFFFF;
}

.c-btn--reservation {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  width: 260px;
  height: 60px;
  border-radius: 12px;
  margin: auto;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 0;
  isolation: isolate;
  background: linear-gradient(to right, #FF6565, #FF6CB0);
}
.c-btn--reservation::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FF6565, #FF6CB0);
  border-radius: inherit;
  z-index: 0;
}
.c-btn--reservation::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.3s;
  z-index: 1;
}
.c-btn--reservation .c-btn-text {
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  position: relative;
  z-index: 2;
}
.c-btn--reservation .c-btn-text::before {
  content: "";
  mask-image: url(../img/common/ico_arrow-white.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  /* Safari 対応 */
  -webkit-mask-image: url(../img/common/ico_arrow-white.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #ffffff;
  width: clamp(17px, 17px + 2 * (100vw - 768px) / 512, 19px);
  height: clamp(18px, 18px + 1 * (100vw - 768px) / 512, 19px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: -39px;
  margin: auto;
}
.c-btn--reservation:hover {
  opacity: 1;
}
.c-btn--reservation:hover::after {
  background: #FFFFFF;
}
.c-btn--reservation:hover .c-btn-text {
  background: linear-gradient(to right, #FF6565, #FF6CB0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 2;
  position: relative;
}
.c-btn--reservation:hover .c-btn-text::before {
  background: linear-gradient(to right, #FF6565, #FF6CB0);
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* fade
――――――――――――――――――――――――――――――――――――――――――――――*/
.js-fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 600ms ease, transform 600ms ease;
}

.js-fade.js-fadeIn {
  opacity: 1;
  transform: translateY(0);
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* Category
――――――――――――――――――――――――――――――――――――――――――――――*/
.c-category--blue {
  display: inline-block;
  min-height: 22px;
  color: #FFFFFF;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 9px;
  padding: 5px 6px;
  border: 1px solid #3CA5FC;
  border-radius: 6px;
  background: #3CA5FC;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-category--blue {
    line-height: 1;
    padding: 6px 7px;
    height: -moz-fit-content;
    height: fit-content;
    min-height: auto;
    margin: 0 7px;
    transform: translateX(8px) translateY(0px);
  }
}

.c-category--white {
  display: inline-block;
  min-height: 22px;
  color: #3CA5FC;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 10px;
  padding: 4px 8px;
  transform: translateX(1px) translateY(-1px);
  border: 1px solid #FFFFFF;
  border-radius: 6px;
  background: #FFFFFF;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .c-category--white {
    font-size: 12px;
    margin: 0 6px;
    letter-spacing: -0.01px;
  }
}

.c-category--gray {
  display: inline-block;
  min-height: 38px;
  color: #FFFFFF;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  padding: 7px 13px;
  border: 1px solid #1E3343;
  border-radius: 5px;
  background: #1E3343;
  box-sizing: border-box;
}

.c-category--gray.--satisfaction {
  font-size: 12px;
  font-weight: 600;
  min-height: auto;
  padding: 4px 7px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .c-category--gray.--satisfaction {
    font-size: 10px;
  }
}

.c-category--info {
  display: inline-block;
  min-height: 25px;
  color: #1E3343;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 12px;
  font-weight: 300;
  line-height: 1.25;
  margin-right: 8px;
  padding: 4px 7px;
  border: 1px solid #1E3343;
  border-radius: 5px;
  background: #FFFFFF;
  box-sizing: border-box;
}

.c-category--required {
  display: inline-block;
  min-height: 20px;
  color: #FF6565;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  position: relative;
  bottom: 3px;
  margin-left: 10px;
  padding: 4px 6px;
  border: 1px solid #FF6565;
  border-radius: 5px;
  background: transparent;
  box-sizing: border-box;
}

.c-category--free {
  display: inline-block;
  min-height: 20px;
  color: #9FA4B4;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.25;
  position: relative;
  bottom: 3px;
  margin-left: 10px;
  padding: 4px 7px;
  border: 1px solid #9FA4B4;
  border-radius: 5px;
  background: #FFFFFF;
  box-sizing: border-box;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　リスト
――――――――――――――――――――――――――――――――――――――――――――――*/
.p-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  padding: 25px 0;
  border-bottom: 1px solid #C7D0D9;
}
@media (max-width: 768px) {
  .p-item {
    flex-direction: column;
    gap: 15px;
  }
}

.p-item__label {
  flex: 0 0 120px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #3CA5FC;
}
@media (max-width: 768px) {
  .p-item__label {
    flex: 0 0 auto;
    text-align: left;
    font-size: 16px;
  }
}

.p-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-detail-item {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.p-detail-title {
  align-items: center;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.5;
}
.p-detail-title::before {
  content: "";
  display: inline-block;
  width: 11px;
  height: 11px;
  margin-right: 0.5em;
  background-image: url(../img/common/ico_star-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 auto;
}

.p-list--lower {
  padding-left: 1.5em;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-list--lower li {
  line-height: 1.86;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.p-list--lower li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 8px;
  background-image: url(../img/common/ico_triangle-gray.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  flex: 0 0 auto;
  margin-right: 8px;
  margin-top: 0.5em;
}
.p-list--lower li span {
  display: block;
  flex: 1;
}

.p-list--number {
  position: relative;
  padding-left: 30px;
  list-style: none;
  counter-reset: item;
}
.p-list--number > li {
  position: relative;
  margin-bottom: 15px;
  counter-increment: item;
}
.p-list--number > li:first-child {
  margin-top: 0;
}
.p-list--number > li:last-child {
  margin-bottom: 0;
}
.p-list--number > li:last-child::after {
  display: none;
}
.p-list--number > li::before {
  content: counter(item);
  position: absolute;
  top: 0;
  left: -30px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #3CA5FC;
  color: #FFFFFF;
  font-size: 12px;
  line-height: 1;
  font-family: "Sawarabi Mincho", serif;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  flex-shrink: 0;
}
.p-list--number > li::after {
  content: "";
  position: absolute;
  left: -21px;
  top: 20px;
  height: calc(100% - 7px);
  width: 1px;
  background-color: #3CA5FC;
  z-index: 1;
}

.p-list--block {
  width: 100%;
  max-width: 1040px;
  padding: 50px 60px;
  border-radius: 30px;
  background-color: #F5F9FA;
}
.p-list--block .p-item {
  padding: 0;
  border: none;
}
.p-list--block .p-item__label--jp {
  font-size: 20px;
  color: #1E3343;
  margin-bottom: 15px;
}
.p-list--block .p-item__label--en {
  font-size: 14px;
}
.p-list--block .p-item__details {
  width: 71%;
  max-width: 730px;
  padding-left: 50px;
  border-left: 1px solid #D8D8D8;
  gap: 0;
}
@media (max-width: 768px) {
  .p-list--block .p-item__details {
    width: 100%;
    padding-left: 0;
    padding-top: 25px;
    border-left: none;
    border-top: 1px solid #D8D8D8;
  }
}
.p-list--block .p-detail-item {
  padding: 20px 0;
  border-bottom: 1px dashed #D8D8D8;
  background-position: 0 1px;
  background-size: 2px 1px;
}
.p-list--block .p-detail-item:first-child {
  padding-top: 0;
}
.p-list--block .p-detail-item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.p-list--block .p-detail-title {
  font-weight: 600;
  display: flex;
}
.p-list--block .p-detail-title::before {
  width: 15px;
  height: 15px;
  background-image: url(../img/common/ico_dia.svg);
}
.p-list--block .p-list--lower li::before {
  content: none;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　Link
――――――――――――――――――――――――――――――――――――――――――――――*/
.c-link--insite span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border: 1px solid #1E3343;
  border-radius: 50%;
  position: relative;
  margin-left: 4px;
  top: 1px;
}

.c-link--insite span::before {
  content: "";
  background: url(../img/common/ico_btn_arrow.svg) no-repeat center center/contain;
  width: 12px;
  height: 4px;
  position: absolute;
  top: 6.5px;
  left: 50%;
  transform: translateX(-50%);
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　FAQ
――――――――――――――――――――――――――――――――――――――――――――――*/
.faqArea .faq-item {
  border-bottom: 1px solid #B9CED5;
}
.faqArea .faq-item__question {
  position: relative;
  width: 100%;
  padding: 28px 24px 35px 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Sawarabi Mincho";
  font-size: 18px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .faqArea .faq-item__question {
    padding: 25px 28px 20px 0;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 2em;
    text-indent: -2em;
  }
}
.faqArea .faq-item__question span {
  color: #3CA5FC;
  font-family: "Sawarabi Mincho";
  font-size: 24px;
  margin-right: 13px;
}
@media (max-width: 768px) {
  .faqArea .faq-item__question span {
    font-size: 20px;
    margin-right: 8px;
  }
}
.faqArea .faq-item__question::after {
  content: "";
  position: absolute;
  top: 56%;
  right: 41px;
  width: 21px;
  height: 1px;
  background-color: #1E3343;
  opacity: 1;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .faqArea .faq-item__question::after {
    top: 52%;
    right: 0;
  }
}
.faqArea .faq-item__question::before {
  content: "";
  position: absolute;
  top: 56%;
  right: 41px;
  transform: rotate(90deg);
  width: 21px;
  height: 1px;
  background-color: #1E3343;
  transition: transform 0.3s ease;
}
@media (max-width: 768px) {
  .faqArea .faq-item__question::before {
    top: 52%;
    right: 0;
  }
}
.faqArea .faq-item__question.is-open::before {
  transform: rotate(0deg);
}
.faqArea .faq-item__answer {
  position: relative;
  overflow: hidden;
  padding: 19px 40px 32px 86px;
  margin-bottom: 33px;
  background-color: #F5F9FA;
  border-radius: 25px;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.55;
  text-indent: -20px;
}
@media (max-width: 768px) {
  .faqArea .faq-item__answer {
    margin-bottom: 26px;
    padding: 25px 20px 25px 58px;
    font-size: 14px;
    line-height: 1.6;
  }
}
.faqArea .faq-item__answer .faq-item__mark {
  color: #3CA5FC;
  font-family: "Sawarabi Mincho";
  font-size: 24px;
  margin-right: 13px;
  font-size: 24px;
  position: relative;
  left: -7px;
  top: 13px;
  display: inline-block;
}
@media (max-width: 768px) {
  .faqArea .faq-item__answer .faq-item__mark {
    left: 0px;
    top: 21px;
    margin-right: 17px;
    font-size: 20px;
  }
}
.faqArea .faq-item__answer.is-open {
  display: block;
  padding: 29px 65px 30px 88px;
  margin-bottom: 35px;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　voiceDetails
――――――――――――――――――――――――――――――――――――――――――――――*/
.voiceDetail__container .voiceDetail__item {
  border-bottom: none;
}
.voiceDetail__container .voiceDetail__itemTtl::after {
  display: none;
}
.voiceDetail__container .voiceDetail__itemTtl {
  position: relative;
  width: 100%;
  padding: 39px 24px 17px 39px;
  font-family: "Sawarabi Mincho";
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
}
.voiceDetail__container .voiceDetail__itemTtl::before {
  content: "Q.";
  color: #3CA5FC;
  font-family: "Sawarabi Mincho";
  font-size: clamp(20px, 20px + 4 * (100vw - 768px) / 512, 24px);
  margin-right: 13px;
  position: absolute;
  left: 0px;
  top: 52px;
  transform: translateY(-50%);
  background: none;
  right: auto;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .voiceDetail__container .voiceDetail__itemTtl {
    font-size: 16px;
    padding: 37px 10px 17px 32px;
  }
  .voiceDetail__container .voiceDetail__itemTtl::before {
    font-size: 20px;
    top: 45px;
  }
}
.voiceDetail__container .voiceDetail__itemText {
  position: relative;
  padding: 26px 30px 25px 30px;
  margin-bottom: 15px;
  margin-left: 39px;
  border-radius: 15px;
  font-size: 16px;
  font-weight: 300;
  text-indent: 0;
  line-height: 1.6;
  overflow: visible;
  background-color: #F5F9FA;
}
.voiceDetail__container .voiceDetail__itemText::before {
  content: "A.";
  color: #3CA5FC;
  font-family: "Sawarabi Mincho";
  font-size: clamp(20px, 20px + 4 * (100vw - 768px) / 512, 24px);
  right: auto;
  position: absolute;
  top: -1px;
  left: -39px;
}
@media (max-width: 768px) {
  .voiceDetail__container .voiceDetail__itemText {
    padding: 19px 20px 25px 19px;
    margin-bottom: 10px;
    margin-left: 33px;
    font-size: 14px;
  }
  .voiceDetail__container .voiceDetail__itemText::before {
    font-size: 20px;
    top: -3px;
    left: -33px;
  }
}
@media (max-width: 768px) {
  .voiceDetail__container .voiceDetail__itemText .userPoint {
    width: 100%;
    justify-content: flex-start;
    transform: translateX(0px) translateY(5px);
    gap: 11px;
  }
  .voiceDetail__container .voiceDetail__itemText .userPoint .p-voice__star-box {
    gap: 9px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　c-text-wrap
――――――――――――――――――――――――――――――――――――――――――――――*/
.c-text-wrap {
  background-color: #FFFFFF;
  border-radius: 25px;
  padding: 44px 50px;
  margin-top: 50px;
  margin-bottom: 20px;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .c-text-wrap {
    padding: 35px 20px 240px;
    margin-top: 60px;
    margin-bottom: 0px;
  }
}
.c-text-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 36%;
  min-width: 375px;
  height: 100%;
  background-image: url(../img/page-UniBeach/bg-activity.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right center;
  pointer-events: none;
  z-index: 0;
}
@media (max-width: 768px) {
  .c-text-wrap::after {
    display: none;
  }
}
.c-text-wrap::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 240px;
  background-image: url(../img/page-UniBeach/bg-activity-sp.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top center;
  pointer-events: none;
  z-index: 0;
  display: none;
}
@media (max-width: 768px) {
  .c-text-wrap::before {
    display: block;
  }
}

.c-text-wrap__ttl {
  font-family: "Sawarabi Mincho", serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.5;
  color: #3CA5FC;
  position: relative;
  margin-bottom: 18px;
  z-index: 2;
}
@media (max-width: 768px) {
  .c-text-wrap__ttl {
    font-size: 18px;
    margin-bottom: 15px;
  }
}

.c-text-wrap__txt {
  position: relative;
  z-index: 2;
  font-size: 16px;
  line-height: 1.7;
  max-width: 625px;
}
@media (max-width: 768px) {
  .c-text-wrap__txt {
    font-size: 14px;
    max-width: none;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　menuCards
――――――――――――――――――――――――――――――――――――――――――――――*/
.menuCards {
  display: flex;
  flex-wrap: wrap;
  gap: 70px;
  padding-top: 50px;
  padding-bottom: 64px;
}
@media (max-width: 768px) {
  .menuCards {
    padding: 0 30px 30px;
  }
}
.menuCards .p-text-with-image-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.menuCards .p-text-with-image-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  padding-bottom: 50px;
  border-bottom: 2px dotted #D6D6D6;
}
@media (max-width: 768px) {
  .menuCards .p-text-with-image-item {
    flex-direction: column;
    gap: 35px;
    max-height: none;
  }
}
.menuCards .p-text-with-image-item:last-of-type {
  border-bottom: none;
}
.menuCards .p-text-with-image-item__img-box {
  flex: 0 0 auto;
  width: 50%;
  max-width: 510px;
  max-height: 309px;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .menuCards .p-text-with-image-item__img-box {
    width: 100%;
    max-width: none;
    max-height: none;
    border-radius: 20px;
  }
}
.menuCards .p-text-with-image-item__img-box img {
  width: 100%;
  height: auto;
  display: block;
}
.menuCards .p-text-with-image-item__text-box {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .menuCards .p-text-with-image-item__text-box {
    width: 100%;
  }
}
.menuCards .p-text-with-image-item__title {
  font-family: "Sawarabi Mincho", serif;
  font-size: 26px;
  margin-top: -2px;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .menuCards .p-text-with-image-item__title {
    font-size: 23px;
  }
}
.menuCards .p-text-with-image-item__text {
  margin: 18px 0 25px;
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .menuCards .p-text-with-image-item__text {
    font-size: 14px;
  }
}
.menuCards .p-price-table {
  background-color: #F5F9FA;
  padding: 8px 25px;
  border-radius: 10px;
  margin: 25px 0 30px;
}
@media (max-width: 768px) {
  .menuCards .p-price-table {
    padding: 6px 15px;
    margin: 25px 0 25px;
  }
}
.menuCards .p-price-table table {
  width: 100%;
  border-collapse: collapse;
}
.menuCards .p-price-table table tr:not(:last-child) {
  border-bottom: 2px dotted #D6D6D6;
}
.menuCards .p-price-table table td {
  padding: 8px 0;
}
.menuCards .p-price-table table td:first-child {
  width: 50%;
  font-size: 16px;
  font-weight: 600;
}
.menuCards .p-price-table table td:last-child {
  width: 50%;
  font-size: 16px;
  text-align: right;
  align-content: center;
}
.menuCards .p-price-table__age {
  font-size: 12px;
  font-size: 600;
}
.menuCards .p-price-table__attention {
  display: block;
  margin-top: 5px;
  font-size: 14px;
  font-size: 300;
}
.menuCards .p-price-table__note {
  text-align: right;
}
.menuCards .p-text-with-image-item__link-box {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
}
.menuCards .c-btn {
  display: inline-block;
  padding: 14px 27px;
  text-decoration: none;
  border-radius: 6px;
  cursor: pointer;
}

@media (min-width: 769px) and (max-width: 1040px) {
  .sec-tourAbout .menuCards .p-price-table table td {
    width: 100%;
    text-align: left;
  }
  .p-price-table table,
  .p-price-table tbody,
  .p-price-table tr {
    display: block;
    width: 100%;
  }
  .p-price-table td {
    display: block;
    width: 100%;
  }
  .p-price-table tr {
    margin-bottom: 20px;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/*　p-detail-list
――――――――――――――――――――――――――――――――――――――――――――――*/
.p-detail-list {
  width: 100%;
}
.p-detail-list .p-detail-list__ttl {
  position: relative;
}
.p-detail-list .p-detail-list__ttl:first-of-type {
  margin-top: 0;
}
.p-detail-list .p-detail-list__ttl .c-ttl__line {
  font-size: 16px;
  font-weight: 600;
  width: 100%;
  position: relative;
  display: inline-block;
  margin: 0;
  padding-bottom: 5px;
}
.p-detail-list .p-detail-list__ttl .c-ttl__line::after {
  content: "";
  position: absolute;
  top: 40px;
  left: 0;
  width: 100%;
  height: 2px;
  background: url("../img/common/ttl-underline.svg") no-repeat left center;
  background-size: cover;
}
.p-detail-list .p-detail-list__desc {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
  padding: 33px 0 27px;
  font-size: 14px;
  line-height: 1.6;
}
.p-detail-list .p-detail-list__desc:last-of-type {
  border-bottom: none;
  padding-bottom: 0;
}
.p-detail-list .p-detail-list__sub-items {
  padding: 0;
  list-style: none;
}
.p-detail-list .p-detail-list__sub-items .p-detail-list__sub-item {
  position: relative;
  padding: 0 0 5px 17px;
}
.p-detail-list .p-detail-list__sub-items .p-detail-list__sub-item::before {
  content: "";
  display: block;
  background: url(../img/common/ico_star-gray.svg) no-repeat center center/contain;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 11px;
  height: 11px;
}
.p-detail-list .p-detail-list__sub-items .p-detail-list__sub-item:last-child {
  padding-bottom: 0;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　flexBox
――――――――――――――――――――――――――――――――――――――――――――――*/
.p-flexBox {
  display: flex;
  flex-direction: row;
  gap: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
@media (max-width: 768px) {
  .p-flexBox {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　voices card
――――――――――――――――――――――――――――――――――――――――――――――*/
.p-voice__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) clamp(25px, 25px + 30 * (100vw - 768px) / 512, 55px);
}
@media (max-width: 768px) {
  .p-voice__list {
    grid-template-columns: repeat(2, 1fr);
    padding-left: 15px;
    padding-right: 15px;
    gap: 30px 20px;
  }
}
.p-voice__item {
  max-width: 310px;
  height: auto;
}
@media (max-width: 768px) {
  .p-voice__item {
    max-width: none;
    width: 100%;
  }
}
.p-voice__link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.p-voice__link .p-voice__img {
  transition: 0.5s;
}
.p-voice__link:hover {
  text-decoration: none;
  opacity: 1;
}
.p-voice__link:hover .p-voice__img {
  transform: scale(1.1);
}
.p-voice__img-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 310/396;
}
@media (max-width: 768px) {
  .p-voice__img-box {
    aspect-ratio: unset;
    border-radius: 15px;
  }
}
.p-voice__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.p-voice__img-text-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 7px;
  padding: 11px 9px;
  position: absolute;
  top: 20px;
  left: 20px;
  min-width: 34px;
  min-height: 89px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .p-voice__img-text-box {
    top: 15px;
    left: 15px;
    min-width: auto;
    min-height: auto;
    padding: 8px 6px;
  }
  .p-voice__img-text-box img {
    width: 14px;
    height: auto;
  }
}
.p-voice__text-box {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
@media (max-width: 768px) {
  .p-voice__text-box {
    margin-top: 15px;
  }
}
.p-voice__info {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  .p-voice__info {
    gap: 8px 0;
  }
}
.p-voice__info p {
  font-size: 22px;
  line-height: 1.1818;
  font-family: "Sawarabi Mincho", serif;
}
@media (max-width: 768px) {
  .p-voice__info p {
    font-size: 18px;
  }
}
.p-voice__star-box {
  display: flex;
  gap: 0.3px;
}
.p-voice__star {
  position: relative;
  width: 19px;
  height: 18px;
}
.p-voice__star::before {
  content: "";
  background: #C3D4E2;
  width: 19px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  margin: auto;
  mask-image: url(../img/common/ico_review-star.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/ico_review-star.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
@media (max-width: 768px) {
  .p-voice__star::before {
    width: 16px;
    height: 15px;
  }
}
.p-voice__star.--on::before {
  background: linear-gradient(to bottom, #EDCA38 0%, #F5AA00 100%);
}
@media (max-width: 768px) {
  .p-voice__star.--on::before {
    width: 16px;
    height: 15px;
  }
}
.p-voice__text {
  position: relative;
  margin-top: 20px;
}
.p-voice__text p {
  width: 100%;
  background-color: #ECF3F5;
  border-radius: 10px;
  padding: 16px 20px 18px;
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
}
.p-voice__text p span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  /* 垂直方向に配置 */
  overflow: hidden;
  /* 溢れた部分を隠す */
  text-overflow: ellipsis;
  /* 溢れた部分に「...」を表示 */
  -webkit-line-clamp: 2;
}
@media (max-width: 768px) {
  .p-voice__text p {
    font-size: 14px;
    -webkit-line-clamp: 4;
    padding: 16px 15px 18px;
  }
}
.p-voice__text::before {
  content: "";
  position: absolute;
  top: -9px;
  left: 13px;
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #ECF3F5;
  z-index: 1;
}

.c-text {
  font-size: 16px;
  line-height: 1.75;
}

.c-text--gradation-blue {
  background: linear-gradient(to bottom right, #3190D6, #36C3E5);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

.c-text--gradation-blue.--light {
  background: linear-gradient(to bottom right, #3CA5FC, #44D5FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

.c-text-link {
  color: #3CA5FC;
  text-decoration: underline;
  transition: all 0.3s ease;
  position: relative;
}
.c-text-link:hover {
  opacity: 1;
  text-decoration: none;
}
.c-text-link:hover::before {
  width: 0;
}

.c-text-blue {
  color: #3CA5FC;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* c-section-title
――――――――――――――――――――――――――――――――――――――――――――――*/
.c-section-title {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.c-section-title.--center {
  margin: 0 auto;
  align-items: center;
}
.c-section-title.--text-color-white .c-section-title--en {
  color: #ffffff;
}
.c-section-title.--text-color-white .c-section-title--jp {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #FFFFFF;
  background-clip: initial;
  color: #FFFFFF;
}

.c-section-title--en {
  color: #345772;
  font-size: clamp(58px, 58px + 2 * (100vw - 768px) / 512, 60px);
  font-family: "Sawarabi Mincho", serif;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .c-section-title--en {
    font-size: 42px;
  }
}

.c-section-title--jp {
  font-size: clamp(17px, 17px + 3 * (100vw - 768px) / 512, 20px);
  font-weight: 600;
  background: linear-gradient(to right, #3CA5FC, #44D5FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: -7px;
}
@media (max-width: 768px) {
  .c-section-title--jp {
    font-size: 16px;
    margin-top: -3px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* c-kv__title
――――――――――――――――――――――――――――――――――――――――――――――*/
.c-kv {
  position: relative;
  width: 100%;
  height: 100%;
}
.c-kv__title {
  position: absolute;
  top: 50%;
  left: 50px;
  transform: translateY(-50%);
  text-align: left;
  z-index: 10;
}
.c-kv__title-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.c-kv__title-en {
  font-size: 46px;
  font-weight: 500;
  font-family: "Sawarabi Mincho", serif;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
.c-kv__title-jp {
  font-size: 20px;
  font-weight: 600;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}

.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}

.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: #FFFFFF;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir=rtl] .slick-prev {
  right: -25px;
  left: auto;
}

.slick-prev:before {
  content: "←";
}

[dir=rtl] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir=rtl] .slick-next {
  right: auto;
  left: -25px;
}

.slick-next:before {
  content: "→";
}

[dir=rtl] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  /* width: 20px;
  height: 20px;
  padding: 5px; */
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}

.tour-starrysky-swiper {
  position: relative;
}
.tour-starrysky-swiper .swiper--wrapper {
  width: 100%;
  height: auto;
  transition-timing-function: linear !important;
}
.tour-starrysky-swiper .swiper-slide {
  width: 350px;
  height: 470px;
  border-radius: 25px;
  overflow: hidden;
}
.tour-starrysky-swiper .swiper-slide img {
  width: 100%;
  height: auto;
}
.tour-starrysky-swiper .swiper-pagination {
  position: relative;
  margin-top: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.tour-starrysky-swiper .swiper-pagination-bullet {
  width: 26px;
  height: 26px;
  background-image: url("../../assets/img/common/ico_dia_gray.svg");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  border: none;
}
.tour-starrysky-swiper .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url("../../assets/img/common/ico_dia.svg");
}
.tour-starrysky-swiper .swiper-button-prev,
.tour-starrysky-swiper .swiper-button-next {
  position: relative;
  width: 26px;
  height: 26px;
  background-color: #E2E6EB;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 11;
}
.tour-starrysky-swiper .swiper-button-prev::after,
.tour-starrysky-swiper .swiper-button-next::after {
  content: "";
  width: 12px;
  height: 4px;
  background-image: url("../../assets/img/common/ico_btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.tour-starrysky-swiper .swiper-button-prev:hover,
.tour-starrysky-swiper .swiper-button-next:hover {
  opacity: 0.8;
}
.tour-starrysky-swiper .swiper-button-prev {
  position: absolute;
  top: auto;
  left: calc(50% - 130px);
  bottom: 9px;
}
.tour-starrysky-swiper .swiper-button-prev::after {
  transform: scaleX(-1);
}
.tour-starrysky-swiper .swiper-button-next {
  position: absolute;
  top: auto;
  right: calc(50% - 130px);
  bottom: 9px;
}

.tour-unibeach-swiper {
  position: relative;
  margin-bottom: 120px;
}
@media (max-width: 768px) {
  .tour-unibeach-swiper {
    margin-bottom: 80px;
  }
}
.tour-unibeach-swiper .swiper--wrapper {
  width: 100%;
  height: auto;
  transition-timing-function: ease-out !important;
}
.tour-unibeach-swiper .swiper-slide {
  width: 650px;
  height: 470px;
  border-radius: 25px;
  overflow: hidden;
  position: relative;
}
.tour-unibeach-swiper .swiper-slide::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 127px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.3) 30%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
  z-index: 2;
}
.tour-unibeach-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
.tour-unibeach-swiper .swiper-slide .UniBeach__album-txt {
  width: 100%;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 25px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.7;
  text-align: center;
  z-index: 3;
}
.tour-unibeach-swiper .swiper-pagination {
  position: relative;
  margin-top: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
@media (max-width: 768px) {
  .tour-unibeach-swiper .swiper-pagination {
    margin-top: 38px;
  }
}
.tour-unibeach-swiper .swiper-pagination-bullets .swiper-pagination-bullet, .tour-unibeach-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 26px;
  height: 26px;
  background-image: url("../../assets/img/common/ico_dia_gray.svg");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  border: none;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px);
}
.tour-unibeach-swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .tour-unibeach-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url("../../assets/img/common/ico_dia.svg");
}
.tour-unibeach-swiper .swiper-button-prev,
.tour-unibeach-swiper .swiper-button-next {
  position: relative;
  width: 26px;
  height: 26px;
  background-color: #E2E6EB;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 11;
}
.tour-unibeach-swiper .swiper-button-prev::after,
.tour-unibeach-swiper .swiper-button-next::after {
  content: "";
  width: 12px;
  height: 4px;
  background-image: url("../../assets/img/common/ico_btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.tour-unibeach-swiper .swiper-button-prev:hover,
.tour-unibeach-swiper .swiper-button-next:hover {
  opacity: 0.8;
}
.tour-unibeach-swiper .swiper-button-prev {
  position: absolute;
  top: auto;
  left: calc(50% - 102px);
  bottom: 9px;
}
.tour-unibeach-swiper .swiper-button-prev::after {
  transform: scaleX(-1);
}
.tour-unibeach-swiper .swiper-button-next {
  position: absolute;
  top: auto;
  right: calc(50% - 102px);
  bottom: 9px;
}

@media (max-width: 768px) {
  .tour-unibeach-swiper {
    margin-top: 34px;
    margin-bottom: 71px;
  }
  .tour-unibeach-swiper .swiper-slide {
    width: 315px;
    height: 227px;
    border-radius: 20px;
  }
  .tour-unibeach-swiper .swiper-slide .UniBeach__album-txt {
    font-size: 10px;
    line-height: 17px;
    bottom: 15px;
  }
}
.voiceDetail-swiper {
  position: relative;
  margin-bottom: 40px;
}
.voiceDetail-swiper .swiper--wrapper {
  width: 100%;
  height: auto;
}
.voiceDetail-swiper .swiper-slide {
  width: 360px;
  height: 459px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.voiceDetail-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  .voiceDetail-swiper .swiper-slide {
    width: 315px;
    height: 402px;
  }
}
.voiceDetail-swiper .swiper-pagination {
  position: relative;
  margin-top: 37px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0px;
}
.voiceDetail-swiper .swiper-pagination-bullets .swiper-pagination-bullet, .voiceDetail-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  width: 26px;
  height: 26px;
  background-image: url("../../assets/img/common/ico_dia_gray.svg");
  background-color: transparent;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 1;
  border: none;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 3px);
}
.voiceDetail-swiper .swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active, .voiceDetail-swiper .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-image: url("../../assets/img/common/ico_dia.svg");
}
.voiceDetail-swiper .swiper-button-prev,
.voiceDetail-swiper .swiper-button-next {
  position: relative;
  width: 26px;
  height: 26px;
  background-color: #E2E6EB;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 11;
}
.voiceDetail-swiper .swiper-button-prev::after,
.voiceDetail-swiper .swiper-button-next::after {
  content: "";
  width: 12px;
  height: 4px;
  background-image: url("../../assets/img/common/ico_btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.voiceDetail-swiper .swiper-button-prev:hover,
.voiceDetail-swiper .swiper-button-next:hover {
  opacity: 0.8;
}
.voiceDetail-swiper .swiper-button-prev {
  position: absolute;
  top: auto;
  left: calc(50% - 86px);
  bottom: 8px;
}
.voiceDetail-swiper .swiper-button-prev::after {
  transform: scaleX(-1);
}
.voiceDetail-swiper .swiper-button-next {
  position: absolute;
  top: auto;
  right: calc(50% - 86px);
  bottom: 8px;
}

.voiceForm__formBox {
  width: 100%;
  margin: 14px auto 0;
  padding: 80px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 100px;
  background-color: #F5F9FA;
  border-radius: 40px;
}
@media (max-width: 768px) {
  .voiceForm__formBox {
    padding: 60px 15px 60px;
    border-radius: 25px;
  }
}

.voicec-form__ttl {
  font-size: clamp(28px, 28px + 4 * (100vw - 768px) / 512, 32px);
  font-weight: 400;
  line-height: 1.84375;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
  color: #345772;
  margin-top: 0;
  margin-bottom: 40px;
}
@media (max-width: 768px) {
  .voicec-form__ttl {
    margin-bottom: 25px;
  }
}

.c-form-voice {
  margin-top: 40px;
}
@media (max-width: 768px) {
  .c-form-voice {
    margin-top: 25px;
  }
}

.c-form__item {
  padding-bottom: 38px;
  margin-bottom: 35px;
  border-bottom: 1px solid #B9CED5;
}
.c-form__item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 768px) {
  .c-form__item {
    padding-bottom: 28px;
    margin-bottom: 28px;
  }
}
.c-form__item .c-ratingBox {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
}
.c-form__item .c-ratingBox .p-voice__star::before {
  width: 22px;
  height: 21px;
  margin-right: 2px;
}

.c-form__ttl {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
  color: #1E3343;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.c-form__txt {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  color: #1E3343;
  margin-top: -8px;
  margin-bottom: 20px;
}

.c-form__textarea::-moz-placeholder {
  color: #BCBCBC;
}

.c-form__textarea::placeholder {
  color: #BCBCBC;
}
.c-form__textarea::-webkit-input-placeholder {
  color: #BCBCBC;
}
.c-form__textarea::-moz-placeholder {
  color: #BCBCBC;
  opacity: 1;
}
.c-form__textarea:-ms-input-placeholder {
  color: #BCBCBC;
}
.c-form__textarea::-ms-input-placeholder {
  color: #BCBCBC;
}

.c-form__input,
.c-form__select,
.c-form__textarea {
  display: block;
  width: 100%;
  min-height: 55px;
  padding: 13px 23px;
  margin-top: 20px;
  border: 1px solid #D0D7DE;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.86666;
}
@media (max-width: 768px) {
  .c-form__input,
  .c-form__select,
  .c-form__textarea {
    padding: 10px 12px;
    font-size: 14px;
  }
}
.c-form__input:focus,
.c-form__select:focus,
.c-form__textarea:focus {
  outline: none;
  border-color: #3CA5FC;
}

.c-form__select {
  border: 1px solid #D0D7DE;
  border-radius: 10px;
  min-width: 169px;
  height: 35px;
  min-height: auto;
  padding: 0 23px 0 15px;
  font-size: 15px;
  font-weight: 300;
  background-image: url("/assets/img/common/ico_select.svg");
  background-repeat: no-repeat;
  background-position: right 13px center;
  background-size: 12px 6px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.c-form__select.--subSelect {
  margin-top: 5px;
}

.c-form__select {
  color: #BCBCBC;
}
.c-form__select option[data-placeholder] {
  display: none;
}

.c-form__select.--yearsOld {
  min-width: auto;
  width: 225px;
  height: 55px;
}

.c-form__select.--number {
  min-width: auto;
  width: 60px;
  margin-top: 0;
  margin-right: 3px;
}

.form__radio__box__choices {
  color: #BCBCBC;
  pointer-events: none;
}
@media (max-width: 425px) {
  .form__radio__box__choices {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
}

.form__radio__box__choices span:not(:first-child) {
  padding-left: 8px;
  margin-left: 8px;
  position: relative;
}
.form__radio__box__choices span:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -2px;
  top: -6px;
  transform: rotate(30deg);
  width: 1px;
  height: 28px;
  background-color: #B9CED5;
}
@media (max-width: 425px) {
  .form__radio__box__choices span:not(:first-child):not(:first-child) {
    padding-left: 0;
    margin-left: 0;
  }
  .form__radio__box__choices span:not(:first-child):not(:first-child)::before {
    display: none;
  }
}

.form__radio__box__choices.is-disabled {
  color: #BCBCBC;
  pointer-events: none;
}

.form__radio__box__choices.is-active {
  color: #1E3343;
  pointer-events: auto;
}

.c-form__input {
  height: 45px;
}

.c-form__textarea {
  min-height: 167px;
  border-radius: 15px;
  resize: vertical;
}

.c-radio-group,
.c-checkbox-group {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  gap: 10px;
}
.c-radio-group .form__radio,
.c-radio-group .form__checkbox,
.c-checkbox-group .form__radio,
.c-checkbox-group .form__checkbox {
  display: flex;
  align-items: center;
}
.c-radio-group .form__radio input[type=radio],
.c-radio-group .form__radio input[type=checkbox],
.c-radio-group .form__checkbox input[type=radio],
.c-radio-group .form__checkbox input[type=checkbox],
.c-checkbox-group .form__radio input[type=radio],
.c-checkbox-group .form__radio input[type=checkbox],
.c-checkbox-group .form__checkbox input[type=radio],
.c-checkbox-group .form__checkbox input[type=checkbox] {
  margin-right: 8px;
  opacity: 0;
  position: absolute;
}
.c-radio-group .form__radio input[type=radio] + span,
.c-radio-group .form__radio input[type=checkbox] + span,
.c-radio-group .form__checkbox input[type=radio] + span,
.c-radio-group .form__checkbox input[type=checkbox] + span,
.c-checkbox-group .form__radio input[type=radio] + span,
.c-checkbox-group .form__radio input[type=checkbox] + span,
.c-checkbox-group .form__checkbox input[type=radio] + span,
.c-checkbox-group .form__checkbox input[type=checkbox] + span {
  cursor: pointer;
  padding: 8px 15px;
  border: 1px solid #ddd;
  border-radius: 20px;
  transition: all 0.3s ease;
  display: inline-block;
}
.c-radio-group .form__radio input[type=radio]:checked + span,
.c-radio-group .form__radio input[type=checkbox]:checked + span,
.c-radio-group .form__checkbox input[type=radio]:checked + span,
.c-radio-group .form__checkbox input[type=checkbox]:checked + span,
.c-checkbox-group .form__radio input[type=radio]:checked + span,
.c-checkbox-group .form__radio input[type=checkbox]:checked + span,
.c-checkbox-group .form__checkbox input[type=radio]:checked + span,
.c-checkbox-group .form__checkbox input[type=checkbox]:checked + span {
  background-color: #3CA5FC;
  color: #FFFFFF;
  border-color: #3CA5FC;
}

.form__radio,
.form__checkbox {
  display: flex;
  align-items: center;
}
.form__radio input[type=radio],
.form__radio input[type=checkbox],
.form__checkbox input[type=radio],
.form__checkbox input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.form__radio__box,
.form__checkbox__box {
  width: 100%;
  min-height: 49px;
  padding: 10px 23px 10px 44px;
  border: 1px solid #D0D7DE;
  border-radius: 10px;
  box-sizing: border-box;
  background-color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.86666;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  cursor: pointer;
  position: relative;
  transition: border-color 0.3s ease;
}
.form__radio__box:hover,
.form__checkbox__box:hover {
  outline: none;
  border-color: #3CA5FC;
}
input:focus + .form__radio__box,
input:focus + .form__checkbox__box {
  outline: none;
  border-color: #3CA5FC;
}
input:checked + .form__radio__box,
input:checked + .form__checkbox__box {
  outline: none;
  border-color: #3CA5FC;
}
.form__radio__box::before,
.form__checkbox__box::before {
  content: "";
  display: block;
  position: absolute;
  left: 10px;
}
input[type=radio] + .form__radio__box::before,
input[type=radio] + .form__checkbox__box::before {
  width: 23px;
  height: 23px;
  left: 13px;
  top: 13px;
  border-radius: 50%;
  border: 1px solid #D0D7DE;
  background-color: #FFFFFF;
}
input[type=checkbox] + .form__radio__box::before,
input[type=checkbox] + .form__checkbox__box::before {
  width: 23px;
  height: 23px;
  left: 13px;
  top: 13px;
  border-radius: 5px;
  border: 1px solid #D0D7DE;
  background-color: #FFFFFF;
}
input[type=radio]:checked + .form__radio__box::after,
input[type=radio]:checked + .form__checkbox__box::after {
  content: "";
  display: block;
  position: absolute;
  top: 18px;
  left: 18px;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background-image: url("/assets/img/common/icon-form-radio.svg");
  background-size: contain;
  background-repeat: no-repeat;
}
input[type=checkbox]:checked + .form__radio__box::after,
input[type=checkbox]:checked + .form__checkbox__box::after {
  content: "";
  display: block;
  position: absolute;
  left: 17px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 14px;
  background-image: url("/assets/img/common/icon-form-check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.rating-stars {
  display: flex;
  align-items: center;
  gap: 2px;
}
.rating-stars .star-rating {
  font-size: 28px;
  background: #C3D4E2;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  cursor: pointer;
  transition: all 0.2s;
  margin-right: 5px;
}
.rating-stars .star-rating.active, .rating-stars .star-rating:hover {
  background: linear-gradient(to bottom, #EDCA38, #F5AA00);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.rating-stars .rating-value {
  margin-left: 15px;
  font-size: 18px;
  color: #1E3343;
}

.upload-btn {
  display: inline-block;
  width: 198px;
  height: 37px;
  padding: 5px 10px 5px 43px;
  background-color: #1E3343;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 600;
  border: 1px solid #1E3343;
  border-radius: 10px;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  margin-top: 10px;
}
.upload-btn::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 14px;
  background-image: url("/assets/img/common/icon-upload.svg");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
}
.upload-btn:hover {
  background-color: #FFFFFF;
  color: #1E3343;
}
.upload-btn:hover::before {
  background-image: url("/assets/img/common/icon-upload-hover.svg");
}

.form-notice {
  width: 100%;
  font-size: 16px;
  line-height: 1.75;
  text-align: center;
  color: #1E3343;
  margin: 53px auto 46px;
}
@media (max-width: 768px) {
  .form-notice {
    font-size: 14px;
    line-height: 1.6;
    text-align: left;
    margin: 30px auto 25px;
  }
}

.form-policy {
  margin: 30px 0;
}
.form-policy .form__checkbox {
  justify-content: center;
}
.form-policy .form__checkbox__box {
  padding-top: 0;
  padding-bottom: 0;
  min-height: -moz-fit-content;
  min-height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  background-color: transparent;
  border: none;
}
@media (max-width: 768px) {
  .form-policy .form__checkbox__box {
    padding-right: 0;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
  }
}
.form-policy input[type=checkbox] + .form__checkbox__box::before {
  width: 30px;
  height: 30px;
  left: 5px;
  top: 0px;
}
.form-policy input[type=checkbox]:checked + .form__checkbox__box::after {
  width: 19px;
  height: 17px;
  left: 11px;
}

.form-submit {
  display: flex;
  justify-content: center;
  max-width: 416px;
  width: 100%;
  margin: 30px auto 0;
  position: relative;
  transition: 0.3s;
}
.form-submit::before {
  content: "";
  display: block;
  mask-image: url("../img/common/ico_arrow-white.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  /* Safari 対応 */
  -webkit-mask-image: url("../img/common/ico_arrow-white.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #ffffff;
  width: clamp(17px, 17px + 2 * (100vw - 768px) / 512, 19px);
  height: clamp(18px, 18px + 1 * (100vw - 768px) / 512, 19px);
  position: absolute;
  top: 0;
  bottom: 0;
  right: 30%;
  margin: auto;
  z-index: 1;
}
.form-submit:hover {
  opacity: 0.7;
  transition: 0.3s;
}
@media (max-width: 768px) {
  .form-submit {
    margin-top: auto;
    min-width: calc(100% - 30px);
    min-height: 49px;
  }
}
@media (max-width: 768px) {
  .form-submit {
    font-size: 20px;
  }
}

.c-btn--submit {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 10px;
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  min-width: clamp(260px, 260px + 156 * (100vw - 768px) / 512, 416px);
  min-height: clamp(58px, 58px + 18 * (100vw - 768px) / 512, 76px);
  border-radius: 12px;
  margin-top: -2px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 0;
  isolation: isolate;
  background: linear-gradient(to right, #FF6565, #FF6CB0);
}
@media (max-width: 768px) {
  .c-btn--submit {
    width: 100%;
    font-size: clamp(19px, 19px + 4 * (100vw - 768px) / 512, 23px);
  }
}

@media (max-width: 768px) {
  .c-form-voice {
    padding: 0;
    margin-top: 25px;
  }
  .c-form-voice .c-radio-group,
  .c-form-voice .c-checkbox-group {
    flex-direction: column;
  }
  .c-form-voice .form-agreement .form__checkbox input[type=checkbox] + span::before {
    transform: scale(1.2);
  }
  .c-form-voice .form-policy .form__checkbox__box span {
    font-size: 14px;
    margin-left: 30px;
  }
  .c-form-voice .form-policy input[type=checkbox] + .form__checkbox__box::before {
    width: 23px;
    height: 23px;
    left: 0px;
    top: 2.5px;
  }
  .c-form-voice .form-policy input[type=checkbox]:checked + .form__checkbox__box::after {
    left: 2px;
    top: 10px;
  }
}
.wpcf7-form-control {
  outline: none;
  box-shadow: none;
}
.wpcf7-form-control:focus {
  outline: none;
  box-shadow: none;
  border-color: #3CA5FC;
}

.privacyPolicyBtn {
  margin-right: 6px;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* header
――――――――――――――――――――――――――――――――――――――――――――――*/
.header {
  padding-top: 0;
  padding-bottom: 0;
  width: 100svw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #FFFFFF;
  z-index: 101;
  transition: transform 0.3s 0.3s;
}
.header.hidden {
  transform: translateY(-100%);
}
@media (max-width: 768px) {
  .header .cross-circle {
    top: 1px;
  }
}

.header-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(30px, 30px + 60 * (100vw - 768px) / 512, 90px);
  padding-top: 25px;
  padding-bottom: 23px;
  height: 100px;
}
@media (max-width: 768px) {
  .header-nav {
    height: 60px;
  }
}

.header-logo__img-box {
  align-self: center;
  width: 100%;
  max-width: clamp(180px, 180px + 27 * (100vw - 768px) / 512, 207px);
}

.header-logo__img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .header-nav-box {
    position: fixed;
    top: 60px;
    left: 0;
    padding: 0 15px;
    width: 100vw;
    height: 100dvh;
    background-color: #FFFFFF;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
    z-index: 101;
    padding-bottom: 75px;
  }
}

.test-wrap {
  display: flex;
  align-items: center;
  gap: clamp(15px, 15px + 15 * (100vw - 768px) / 512, 30px);
  margin-top: 0;
}
@media (max-width: 768px) {
  .test-wrap {
    flex-direction: column;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    min-height: 0;
  }
}

.header-nav-list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(15px, 15px + 15 * (100vw - 768px) / 512, 30px);
}
@media (max-width: 768px) {
  .header-nav-list {
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    flex-shrink: 0;
    gap: 18px;
    width: 100%;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 22px;
    height: auto;
    padding-bottom: 50px;
  }
}

.sp-open {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.sp-open.-hide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.header-nav-listItem {
  position: relative;
}
@media (max-width: 768px) {
  .header-nav-listItem {
    padding-bottom: 19px;
    border-bottom: 1px solid #E6E6E6;
    width: 100%;
  }
  .header-nav-listItem:last-of-type {
    padding-bottom: 0;
    border-bottom: none;
  }
}

.header-nav-listItem__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 7px;
  line-height: 1;
  transition: color 0.3s ease;
}
.header-nav-listItem__link.-sub-menu {
  position: relative;
}
.header-nav-listItem__link.-sub-menu::after {
  content: "";
  background-color: #1E3343;
  mask-image: url(../img/common/ico_header_chevron.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../img/common/ico_header_chevron.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  width: 9px;
  height: 4px;
  position: absolute;
  bottom: -14px;
  left: 0;
  right: 0;
  margin: auto;
  transition: background-color 0.3s ease;
}
@media (max-width: 768px) {
  .header-nav-listItem__link.-sub-menu::after {
    display: none;
  }
}
.header-nav-listItem__link.-sub-menu.is-on {
  color: #3CA5FC;
}
.header-nav-listItem__link.-sub-menu.is-on::after {
  background-color: #3CA5FC;
}
.header-nav-listItem__link:hover {
  opacity: 1;
  color: #3CA5FC;
}
.header-nav-listItem__link:hover.-sub-menu::after {
  opacity: 1;
  background-color: #3CA5FC;
}
@media (max-width: 768px) {
  .header-nav-listItem__link {
    flex-direction: row;
    align-items: flex-end;
    justify-content: flex-start;
    gap: 5px;
    width: -moz-fit-content;
    width: fit-content;
  }
  .header-nav-listItem__link .header-nav-list-item__text--btn {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    overflow: hidden;
    background-color: #E1E9EF;
    position: relative;
  }
  .header-nav-listItem__link .header-nav-list-item__text--btn::before, .header-nav-listItem__link .header-nav-list-item__text--btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1px;
    height: 8px;
    background-color: #1E3343;
    transform: translate(-50%, -50%);
  }
  .header-nav-listItem__link .header-nav-list-item__text--btn {
    /* 横線 */
  }
  .header-nav-listItem__link .header-nav-list-item__text--btn::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
}

.header-nav-list-tem__text--en {
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
  font-family: "Sawarabi Mincho", serif;
}
@media (max-width: 768px) {
  .header-nav-list-tem__text--en {
    font-size: 16px;
  }
}

.header-nav-list-item__text--jp {
  font-size: 10px;
}
@media (max-width: 768px) {
  .header-nav-list-item__text--jp {
    transform: translateY(-1px);
  }
}

.nav-list-sub-wrap {
  padding-top: 55px;
  position: absolute;
  left: -11px;
  bottom: -378px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s, visibility 0.3s;
}
.nav-list-sub-wrap.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
@media (max-width: 1190px) {
  .nav-list-sub-wrap {
    left: -113px;
    bottom: -370px;
  }
}
.nav-list-sub-wrap.--s {
  bottom: -310px;
}
.nav-list-sub-wrap.--s .nav-list-sub-box {
  min-width: 310px;
  min-height: 257px;
}
@media (max-width: 768px) {
  .nav-list-sub-wrap.--s .nav-list-sub-box {
    min-width: 0;
    min-height: 0;
  }
}
@media (max-width: 1190px) {
  .nav-list-sub-wrap.--s {
    left: -40px;
  }
}
@media (max-width: 768px) {
  .nav-list-sub-wrap {
    display: none;
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    padding-top: 0;
  }
}

.nav-list-sub-box {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  background: #ffffff;
  min-width: 575px;
  min-height: 325px;
  padding: 35px;
  border-radius: 25px;
}
@media (max-width: 768px) {
  .nav-list-sub-box {
    flex-direction: column;
    gap: 15px;
    min-width: 0;
    padding: 18px 0 0 16px;
    margin-bottom: -6px;
  }
}

.nav-list-sub.--with-picture .nav-list-sub__item {
  padding-bottom: 17px;
  border-bottom: 1px solid #E6E6E6;
}
.nav-list-sub.--with-picture .nav-list-sub__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
@media (max-width: 768px) {
  .nav-list-sub.--with-picture .nav-list-sub__item:last-of-type {
    padding-bottom: 17px;
    border-bottom: 1px solid #E6E6E6;
  }
}
.nav-list-sub.--with-picture .nav-list-sub__item + .nav-list-sub__item {
  margin-top: 15px;
}
.nav-list-sub.--with-picture .nav-list-sub__link {
  display: flex;
  align-items: center;
  gap: 13px;
  width: -moz-fit-content;
  width: fit-content;
}
.nav-list-sub.--with-picture .nav-list-sub__menu {
  line-height: 1.4;
}
.nav-list-sub.mt-adjustment {
  margin-top: -2px;
}
@media (max-width: 768px) {
  .nav-list-sub {
    width: 100%;
  }
}

.nav-list-sub__item {
  min-width: 240px;
  padding-bottom: 14px;
  border-bottom: 1px solid #E6E6E6;
}
.nav-list-sub__item:last-of-type {
  padding-bottom: 0;
  border-bottom: none;
}
.nav-list-sub__item + .nav-list-sub__item {
  margin-top: 17px;
}
@media (max-width: 768px) {
  .nav-list-sub__item + .nav-list-sub__item {
    margin-top: 14px;
  }
}

.nav-list-sub__link {
  width: -moz-fit-content;
  width: fit-content;
  transition: color 0.3s ease;
}
.nav-list-sub__link.icon_diamond-gray {
  padding-left: 21px;
}
.nav-list-sub__link.icon_diamond-gray::before, .nav-list-sub__link.icon_diamond-gray::after {
  width: 14px;
  height: 14px;
  top: 1px;
}
@media (max-width: 768px) {
  .nav-list-sub__link.icon_diamond-gray {
    padding-left: 20px;
  }
}
.nav-list-sub__link:hover {
  opacity: 1;
  color: #3CA5FC;
}

.nav-list-sub__img-box {
  width: 100%;
  max-width: 75px;
  border-radius: 10px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .nav-list-sub__img-box {
    max-width: 60px;
    border-radius: 8px;
  }
}

.nav-list-sub__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.nav-list-sub__menu {
  line-height: 1.5714285714;
  font-family: "Sawarabi Mincho", serif;
}

@media (max-width: 768px) {
  @keyframes marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(-100%);
    }
  }
  .header-nav {
    justify-content: space-between;
    gap: 14px;
    padding-top: 10px;
    padding-bottom: 10px;
    position: relative;
  }
  .header-logo__img-box {
    position: static;
    transform: none;
    max-width: 124px;
    margin-bottom: 0;
    z-index: 102;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* sp時 メニュー
――――――――――――――――――――――――――――――――――――――――――――――*/
.spMenu {
  position: fixed;
  top: 60px;
  left: 0;
  padding: 0 15px;
  width: 100vw;
  height: 100dvh;
  background-color: #FFFFFF;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  z-index: 101;
}

.spMenu.js-active {
  display: block;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.header-navSp {
  height: calc(100svh - 118px);
  margin-top: 120px;
  margin-left: -15px;
  padding-left: 30px;
  padding-right: 30px;
  padding-bottom: 50px;
  overflow-y: auto;
}

.header-navSpList:nth-of-type(1) .header-navSpListItem:first-of-type {
  padding-top: 0;
}
.header-navSpList:nth-of-type(1) .header-navSpListItem__link {
  position: relative;
  padding-left: 37px;
}
.header-navSpList:nth-of-type(1) .header-navSpListItem__link::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
}
.header-navSpList:nth-of-type(1) .header-navSpListItem__link.--gourmet::before {
  background: url(../img/common/ico_gourmet.svg) no-repeat center/contain;
  width: 30px;
  height: 26px;
  bottom: -1px;
}
.header-navSpList:nth-of-type(1) .header-navSpListItem__link.--activity {
  padding-left: 40px;
}
.header-navSpList:nth-of-type(1) .header-navSpListItem__link.--activity::before {
  background: url(../img/common/ico_activity.svg) no-repeat center/contain;
  width: 33px;
  height: 26px;
  bottom: -2px;
}
.header-navSpList:nth-of-type(1) .header-navSpListItem__link.--shopping {
  padding-left: 38px;
}
.header-navSpList:nth-of-type(1) .header-navSpListItem__link.--shopping::before {
  background: url(../img/common/ico_shopping.svg) no-repeat center/contain;
  width: 26px;
  height: 28px;
  bottom: -2px;
}
.header-navSpList:nth-of-type(2) .header-navSpListItem__link {
  padding-left: 15px;
  position: relative;
}
.header-navSpList:nth-of-type(2) .header-navSpListItem__link::before {
  content: "";
  display: block;
  background: url(../img/common/ico_triangle.svg) no-repeat center/contain;
  width: 7px;
  height: 4px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.header-navSpList:nth-of-type(2) .header-navSpListItem__link .header-navSpListItemt__text--jp {
  font-size: 15px;
}

.header-navSpListItem {
  padding: 19.5px 0 20.3px;
  border-bottom: 1px solid #D5D5D5;
  position: relative;
}
.header-navSpListItem.--left:first-of-type {
  padding-top: 0;
}

.header-navSpListItem__link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 5px;
  font-weight: 600;
  line-height: 1;
}

.header-navSpListItem__text--en {
  font-size: 10px;
  color: linear-gradient(to right, #3CA5FC, #44D5FC);
}

.header-navSpListItem__text--jp {
  font-size: 16px;
  color: #1E3343;
}
.header-navSpListItem__text--jp .headerText-l {
  font-size: 22px;
}

/*** sp時 メニューボタン ***/
.sp-menu-btn {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background-color: #1E3343;
  cursor: pointer;
  transition: 0.5s;
  z-index: 102;
}

.sp-menu-btn span {
  position: relative;
  left: 0;
  right: 0;
  display: block;
  width: 16px;
  height: 1.5px;
  margin: auto;
  background-color: #FFFFFF;
  transition: 0.5s;
}

.sp-menu-btn span:nth-of-type(1) {
  top: 32%;
}

.sp-menu-btn span:nth-of-type(2) {
  top: 44%;
}

.sp-menu-btn span:nth-of-type(3) {
  top: 56%;
}

.sp-menu-btn.js-open {
  transition: 0.5s;
}

.sp-menu-btn.js-open span {
  transition: 0.5s;
}

.sp-menu-btn.js-open span:nth-of-type(1) {
  top: 48%;
  transform: rotate(45deg);
}

.sp-menu-btn.js-open span:nth-of-type(2) {
  top: 44%;
  transform: rotate(-45deg);
}

.sp-menu-btn.js-open span:nth-of-type(3) {
  opacity: 0;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* Simple header
――――――――――――――――――――――――――――――――――――――――――――――*/
.simple-header .header-nav-box,
.simple-header .sp-menu-btn {
  display: none;
}
.simple-header .header-nav {
  justify-content: center;
}

.footer {
  overflow: hidden;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* footer-reserve-area
――――――――――――――――――――――――――――――――――――――――――――――*/
.footer-reserve-area {
  padding-top: 35px;
  padding-bottom: 35px;
}
.footer-reserve-area .c-section-title--en {
  font-family: "Sawarabi Mincho", serif;
  font-size: 60px;
  font-weight: 400;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .footer-reserve-area .c-section-title--en {
    font-size: 42px;
  }
}
.footer-reserve-area .c-section-title--jp {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .footer-reserve-area .c-section-title--jp {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer-reserve-area {
    padding: 60px 30px 57px;
    background: url(../img/top/bg_reserve-sp.jpg) no-repeat center/cover;
    min-height: 515px;
  }
  .footer-reserve-area::before {
    content: "";
    background: linear-gradient(135deg, #42D6BE 0%, #6DCCDD 100%);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    mix-blend-mode: multiply;
  }
}

.footer-reserve-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  background: url(../img/top/bg_reserve.jpg) no-repeat center/cover;
  width: 100%;
  min-height: 399px;
  border-radius: 25px;
  overflow: hidden;
  padding: 60px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  position: relative;
}
.footer-reserve-box::before {
  content: "";
  background: linear-gradient(135deg, #42D6BE 0%, #6DCCDD 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.8;
  mix-blend-mode: multiply;
}
.footer-reserve-box > * {
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .footer-reserve-box {
    background: none;
    padding: 0;
    gap: 36px;
  }
  .footer-reserve-box::before {
    display: none;
  }
}

.footer-reserve-list {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 740px;
}
@media (max-width: 768px) {
  .footer-reserve-list {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }
}

.footer-reserve-list-item {
  display: flex;
  align-items: center;
  flex-direction: column;
  width: 100%;
  max-width: clamp(278px, 278px + 42 * (100vw - 768px) / 512, 320px);
  position: relative;
}
.footer-reserve-list-item:first-of-type::before {
  content: "";
  background-color: #ffffff;
  width: 1px;
  height: calc(100% + 8px);
  transform: rotate(21.7deg);
  position: absolute;
  top: -6px;
  right: -15.9%;
}
@media (max-width: 768px) {
  .footer-reserve-list-item:first-of-type::before {
    width: 100%;
    height: 1px;
    transform: rotate(0);
    top: auto;
    right: 0;
    bottom: 0;
  }
}
@media (max-width: 768px) {
  .footer-reserve-list-item {
    max-width: 100%;
  }
  .footer-reserve-list-item:first-of-type {
    padding-bottom: 29px;
  }
}

.footer-reserve-list-item__text {
  color: #ffffff;
  text-align: center;
  line-height: 1.4285714286;
  font-weight: 600;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .footer-reserve-list-item__text {
    font-size: clamp(12px, 3.2vw, 14px);
    margin-top: 15px;
  }
}

.footer-reserve-list-item__btn {
  width: 100%;
  max-width: 100% !important;
  border-radius: 10px;
  min-height: 60px;
}
.footer-reserve-list-item__btn .c-btn-text {
  font-size: 16px;
}
@media (max-width: 768px) {
  .footer-reserve-list-item__btn {
    border-radius: 40px;
    max-width: 274px !important;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* footer-nav-area
――――――――――――――――――――――――――――――――――――――――――――――*/
.footer-nav-area {
  padding-top: 35px;
  padding-bottom: 76px;
  background-color: #FFFFFF;
}

.footer-nav-area .l-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 29px;
}

.footer-info {
  width: clamp(220px, 220px + 60 * (100vw - 768px) / 512, 280px);
}

.footer-info__logo {
  display: block;
  width: 100%;
  max-width: 280px;
  padding-top: 10px;
  margin-bottom: 26px;
}

.footer-logo__img {
  width: 100%;
  height: auto;
}

.footer-info-list-item {
  position: relative;
  padding-left: 14px;
}

.footer-info-list-item + .footer-info-list-item {
  margin-top: 14px;
}

.footer-info-list-item::before {
  display: block;
  position: absolute;
  top: 4px;
  left: 0;
  width: 11px;
  height: 15px;
  margin: auto;
  content: "";
}

.footer-info-list-item.address::before {
  background: url(../img/common/ico_address.svg) no-repeat center center/100%;
}

.footer-info-list-item.instagram {
  padding-left: 0;
}

.footer-info-list-item.instagram::before {
  display: none;
}

.footer-info-list-item__link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 100px;
  min-height: 28px;
  padding: 2px;
  border: 1px solid #1E3343;
  border-radius: 14px;
}

.footer-info-list-item__link-text {
  font-size: 12px;
  line-height: 1;
  padding-left: 14px;
  position: relative;
}
.footer-info-list-item__link-text::before {
  content: "";
  mask-image: url(../img/common/ico_insta.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  /* Safari 対応 */
  -webkit-mask-image: url(../img/common/ico_insta.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #1E3343;
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.footer-nav-box {
  display: flex;
  width: clamp(435px, 435px + 93 * (100vw - 768px) / 512, 528px);
}

.footer-nav-box__row {
  margin-top: 4px;
}

.footer-nav-list {
  margin-bottom: 17px;
}
.footer-nav-list.main {
  display: flex;
  flex-wrap: wrap;
  gap: 14px clamp(40px, 40px + 31 * (100vw - 768px) / 512, 71px);
  margin-bottom: 0;
}

.footer-nav-list-item {
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
  line-height: 1.6875;
  font-weight: 600;
  min-width: 7em;
}
@media (max-width: 768px) {
  .footer-nav-list-item {
    min-width: 7.4em;
  }
}

.footer-nav-list__ttl {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
}

.footer-nav-list__item a {
  font-size: 13px;
  position: relative;
  padding-left: 10px;
}

.footer-nav-list__item a::before {
  display: block;
  position: absolute;
  top: 8px;
  left: 0;
  width: 4px;
  height: 4px;
  margin: 0 0 0 0;
  background-color: #1CB6F0;
  border-radius: 50%;
  content: "";
}

.footer-nav-list__title {
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
  line-height: 1.6875;
  font-weight: 600;
}
@media (max-width: 768px) {
  .footer-nav-list__title {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.icon_diamond-blue {
  padding-left: 17px;
  position: relative;
}
.icon_diamond-blue::before {
  content: "";
  display: block;
  background: url(../img/common/ico_dia.svg) no-repeat center center/contain;
  position: absolute;
  top: 1px;
  left: 0;
  width: 14.36px;
  height: 14.36px;
}
@media (max-width: 768px) {
  .icon_diamond-blue::before {
    top: 0;
  }
}

.cross-circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  background-color: #E1E9EF;
  border-radius: 50%;
  position: relative;
  top: 2px;
}
.cross-circle::before, .cross-circle::after {
  content: "";
  position: absolute;
  background-color: #1E3343;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.cross-circle::before {
  width: 8px;
  height: 1px;
}
.cross-circle::after {
  width: 1px;
  height: 8px;
}
.cross-circle.js-active::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.footer-nav-list__title-link {
  transition: color 0.3s ease;
}
.footer-nav-list__title-link:hover {
  color: #3CA5FC;
  opacity: 1;
}

.footer-nav-list__detail-list-item__link {
  transition: color 0.3s ease;
}
.footer-nav-list__detail-list-item__link:hover {
  color: #3CA5FC;
  opacity: 1;
}
.footer-nav-list__detail-list-item__link:hover.icon_diamond-gray::before {
  opacity: 0;
}

.footer-nav-list-item__link {
  transition: color 0.3s ease;
}
.footer-nav-list-item__link:hover {
  color: #3CA5FC;
  opacity: 1;
}

.footer-nav-list__title-link__cross-btn {
  margin-left: 5px;
}

.footer-nav-list__detail {
  display: flex;
  gap: clamp(9px, 9px + 15 * (100vw - 768px) / 512, 24px);
}
@media (max-width: 768px) {
  .footer-nav-list__detail {
    display: none;
  }
}

@media (max-width: 768px) {
  .footer-nav-list__detail-inner {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: 17px;
    padding-top: 12px;
  }
}
.footer-nav-list__detail-list {
  display: flex;
  flex-direction: column;
  gap: 7px 0;
  margin-top: 9px;
}
@media (max-width: 768px) {
  .footer-nav-list__detail-list {
    margin-top: 0;
    gap: 12px;
  }
}

.footer-nav-list__detail-list-item {
  font-size: clamp(12px, 12px + 2 * (100vw - 768px) / 512, 14px);
  color: #7F8A93;
  font-weight: 600;
}

.icon_diamond-gray {
  position: relative;
  padding-left: 15px;
}
.icon_diamond-gray::before, .icon_diamond-gray::after {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(1px, 1px + 2 * (100vw - 768px) / 512, 3px);
  width: 11px;
  height: 11px;
  -webkit-mask-image: url(../img/common/ico_dia_gray.svg);
  mask-image: url(../img/common/ico_dia_gray.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-position: center;
  mask-position: center;
}
.icon_diamond-gray {
  /* 通常時：単色レイヤー */
}
.icon_diamond-gray::before {
  background: #C7D0D9;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.icon_diamond-gray {
  /* hover時：グラデーションレイヤー（最初は透明） */
}
.icon_diamond-gray::after {
  background-image: linear-gradient(135deg, #3CA5FC 0%, #44D5FC 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.icon_diamond-gray:hover::after {
  opacity: 1;
}
@media (max-width: 768px) {
  .icon_diamond-gray::before, .icon_diamond-gray::after {
    top: 1px;
  }
}

@media screen and (max-width: 768px) {
  .footer-nav-area {
    padding: 50px 30px 75px;
  }
  .footer-nav-area .l-inner {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
  }
  .footer-info {
    width: 100%;
    max-width: 230px;
    margin: 0 auto;
  }
  .footer-info__logo {
    display: block;
    width: 230px;
    padding-top: 0;
    margin-top: 10px;
    margin-bottom: 20px;
  }
  .footer-info-list {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-info-list-item {
    font-size: 14px;
    line-height: 1.428;
    position: relative;
    padding-left: 14px;
  }
  .footer-info-list-item + .footer-info-list-item {
    margin-top: 15px;
  }
  .footer-info-list-item::before {
    top: 2px;
  }
  .footer-nav-box {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 0;
    width: 100%;
  }
  .footer-nav-list {
    margin-bottom: 17px;
  }
  .footer-nav-list.main {
    gap: 16px 47px;
  }
  .footer-nav-list__ttl {
    margin-bottom: 10px;
    font-size: 14px;
    font-weight: 600;
  }
  .footer-nav-list__item a {
    font-size: 13px;
    position: relative;
    padding-left: 10px;
  }
  .footer-nav-list__item a::before {
    display: block;
    position: absolute;
    top: 8px;
    left: 0;
    width: 4px;
    height: 4px;
    margin: 0 0 0 0;
    background-color: #1CB6F0;
    border-radius: 50%;
    content: "";
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* footer-btm
――――――――――――――――――――――――――――――――――――――――――――――*/
.footer-btm {
  background-color: #F5F9FA;
  color: #696969;
  padding-top: 14.5px;
  padding-bottom: 12.5px;
}

.footer-btm .l-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-btm-nav {
  display: flex;
  align-items: center;
  gap: 0 25px;
}

.footer-btm-nav__item {
  position: relative;
  font-size: 12px;
}

.footer-btm-nav__item + .footer-btm-nav__item::before {
  display: block;
  position: absolute;
  top: 0;
  left: -13px;
  bottom: 0;
  width: 1px;
  height: 18px;
  margin: auto;
  background-color: #DDDDDD;
  border-radius: 10px;
  transform: rotate(30deg);
  content: "";
}

.footer-btm-nav__item-link {
  transition: all 0.3 ease;
}
.footer-btm-nav__item-link:hover {
  opacity: 1;
  color: #3CA5FC;
}

.footer-btm__copy {
  font-size: 12px;
}

.footer-bitknot {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 46px;
}

@media screen and (max-width: 768px) {
  .footer-btm {
    padding: 0 30px;
    background-color: #FFFFFF;
  }
  .footer-btm .l-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: column;
    gap: 9px 15px;
  }
  .footer-btm-nav {
    display: flex;
    align-items: center;
    gap: 0 25px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .footer-btm-nav {
    gap: 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .footer-btm-nav__item {
    position: relative;
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .footer-btm-nav__item {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .footer-btm-nav__item + .footer-btm-nav__item::before {
    display: block;
    position: absolute;
    top: 0;
    left: -13px;
    bottom: 0;
    width: 1px;
    height: 17px;
    margin: auto;
    background-color: #DDDDDD;
    transform: rotate(30deg);
    content: "";
  }
  .footer-btm__copy {
    font-size: 12px;
    background-color: #F5F9FA;
    min-height: 41px;
    width: 100vw;
    text-align: center;
    align-items: center;
    display: grid;
  }
}
@media screen and (max-width: 768px) and (max-width: 374px) {
  .footer-btm__copy {
    font-size: 11px;
  }
}
@media screen and (max-width: 768px) {
  .footer-bitknot {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 46px;
  }
}
/**********************************************************

topKvArea

***********************************************************/
.top-kv-area {
  padding-top: 0;
  position: relative;
  padding-bottom: 0;
  margin-bottom: 75px;
}

.top-kv-box {
  margin-left: clamp(-60px, -30px + -30 * (100vw - 768px) / (1280 - 768), -30px);
  width: calc(100% + clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px));
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  max-height: 680px;
}
@media (min-width: 1281px) {
  .top-kv-box {
    max-height: 800px;
  }
}
@media (max-width: 768px) {
  .top-kv-box {
    margin-left: 0;
    width: 100%;
    height: 560px;
    border-radius: 25px;
  }
}

.top-kv__video {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.reserve-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
  min-width: clamp(110px, 110px + 30 * (100vw - 768px) / 512, 140px);
  min-height: clamp(46px, 46px + 8 * (100vw - 768px) / 512, 54px);
  border-radius: 12px;
  margin-top: -2px;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
  z-index: 0;
  isolation: isolate;
  background: linear-gradient(to right, #FF6565, #FF6CB0);
}
.reserve-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #FF6565, #FF6CB0);
  border-radius: inherit;
  z-index: 0;
}
.reserve-btn::after {
  content: "";
  position: absolute;
  inset: 2px;
  border-radius: 10px;
  background: transparent;
  transition: background 0.3s;
  z-index: 1;
}
.reserve-btn:hover {
  opacity: 1;
}
.reserve-btn:hover::after {
  background: #FFFFFF;
}
.reserve-btn:hover .reserve-btn-text {
  background: linear-gradient(to right, #FF6565, #FF6CB0);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  z-index: 2;
  position: relative;
}
.reserve-btn:hover .reserve-btn-text::before {
  background: linear-gradient(to right, #FF6565, #FF6CB0);
}
@media (max-width: 768px) {
  .reserve-btn {
    margin-top: auto;
    min-width: calc(100% - 30px);
    min-height: 49px;
  }
}

.reserve-btn-text {
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
  font-weight: 600;
  color: #ffffff;
  position: relative;
  padding-left: 23px;
  z-index: 2;
}
.reserve-btn-text::before {
  content: "";
  mask-image: url(../img/common/ico_reserve-header.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  /* Safari 対応 */
  -webkit-mask-image: url(../img/common/ico_reserve-header.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #ffffff;
  width: clamp(17px, 17px + 1 * (100vw - 768px) / 512, 18px);
  height: clamp(18px, 18px + 1 * (100vw - 768px) / 512, 19px);
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  margin: auto;
}

.top-kv-text-wrap {
  width: 100%;
  height: 100%;
}

.top-kv-title-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  top: clamp(40px, 40px + 50 * (100vw - 768px) / 512, 90px);
  left: clamp(-60px, -30px + -30 * (100vw - 768px) / (1280 - 768), -30px);
  right: 0;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .top-kv-title-box {
    top: 87px;
    left: 0;
  }
}
@media screen and (min-width: 1281px) {
  .top-kv-title-box {
    top: 7.03125vw;
  }
}

.top-kv-text-box {
  position: absolute;
  bottom: clamp(40px, 40px + 34 * (100vw - 768px) / 512, 74px);
  left: clamp(-60px, -30px + -30 * (100vw - 768px) / (1280 - 768), -30px);
  right: 0;
  margin: 0 auto;
  width: clamp(270px, 270px + 58 * (100vw - 768px) / 512, 328px);
  font-size: clamp(14px, 14px + 4 * (100vw - 768px) / 512, 18px);
  font-weight: 600;
  color: #FFFFFF;
  text-align: center;
}
@media (max-width: 768px) {
  .top-kv-text-box {
    width: 251px;
    margin-top: clamp(80px, 80px + (768px - 100vw) * 0.12977, 131px);
    left: -15px;
    right: -15px;
    bottom: 76px;
  }
}
@media screen and (max-width: 374px) {
  .top-kv-text-box {
    width: 66.9333333333vw;
  }
}
@media screen and (min-width: 1281px) {
  .top-kv-text-box {
    bottom: 5.78125vw;
  }
}

.top-kv-text__feature {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-kv-text__feature--circle {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #ffffff;
  border-radius: 50%;
  width: clamp(60px, 60px + 20 * (100vw - 768px) / 512, 80px);
  height: clamp(60px, 60px + 20 * (100vw - 768px) / 512, 80px);
}
@media (max-width: 768px) {
  .top-kv-text__feature--circle {
    width: 61px;
    height: 61px;
  }
}
@media (max-width: 374px) {
  .top-kv-text__feature--circle {
    width: 16.2666666667vw;
    height: 16.2666666667vw;
  }
}

.top-kv-text__feature--main {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(1px, 1px + 2 * (100vw - 768px) / 512, 3px);
  line-height: 1;
}
.top-kv-text__feature--main .position-adjustment {
  transform: translateY(-2px);
}

.--kv-font-size1 {
  font-size: clamp(15px, 15px + 5 * (100vw - 768px) / 512, 20px);
}
@media (max-width: 768px) {
  .--kv-font-size1 {
    font-size: 16px;
  }
}
@media (max-width: 374px) {
  .--kv-font-size1 {
    font-size: 4.2666666667vw;
  }
}

.--kv-font-size2 {
  font-size: clamp(18px, 18px + 4 * (100vw - 768px) / 512, 22px);
}
@media (max-width: 768px) {
  .--kv-font-size2 {
    font-size: 16px;
  }
}
@media (max-width: 374px) {
  .--kv-font-size2 {
    font-size: 4.2666666667vw;
  }
}

.--kv-font-size3 {
  font-size: clamp(11px, 11px + 3 * (100vw - 768px) / 512, 14px);
}
@media (max-width: 768px) {
  .--kv-font-size3 {
    font-size: 12px;
  }
}
@media (max-width: 374px) {
  .--kv-font-size3 {
    font-size: 3.2vw;
  }
}

.cross {
  position: relative;
  width: clamp(16px, 16px + 6 * (100vw - 768px) / 512, 22px);
  height: clamp(16px, 16px + 6 * (100vw - 768px) / 512, 22px);
}
.cross::before, .cross::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: clamp(22px, 22px + 7 * (100vw - 768px) / 512, 29px);
  height: 2px;
  background: #FFFFFF;
  transform-origin: center;
}
.cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 768px) {
  .cross {
    width: 17px;
    height: 17px;
  }
}
@media (max-width: 374px) {
  .cross {
    width: 4.5333333333vw;
    height: 4.5333333333vw;
  }
}

.top-kv-text {
  margin-top: clamp(12px, 12px + 3 * (100vw - 768px) / 512, 15px);
}
@media (max-width: 768px) {
  .top-kv-text {
    font-size: 14px;
    white-space: nowrap;
    margin-top: 10px;
  }
}
@media (max-width: 374px) {
  .top-kv-text {
    font-size: 3.7333333333vw;
    margin-top: 2.6666666667vw;
  }
}

.top-kv-title {
  width: 100%;
  max-width: clamp(180px, 180px + 41 * (100vw - 768px) / 512, 221px);
}
@media (max-width: 768px) {
  .top-kv-title {
    max-width: clamp(157px, 27.34375vw, 210px);
  }
}

.top-kv-title__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**********************************************************

top-menu-area

***********************************************************/
.top-menu-area {
  padding-top: 56px;
}
@media (max-width: 768px) {
  .top-menu-area {
    padding-top: 181px;
    padding-left: 30px;
    padding-right: 30px;
  }
}

.text-gradation-1 {
  background: linear-gradient(to right, #3CA5FC, #44D5FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

.top-menu__top-tour-box {
  display: flex;
  gap: clamp(30px, 30px + 20 * (100vw - 768px) / 512, 50px);
  margin-top: 92px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .top-menu__top-tour-box {
    flex-direction: column-reverse;
    gap: 28px;
    margin-top: 44px;
  }
}

.top-menu__top-tour__text-box {
  display: flex;
  flex-direction: column;
  flex: 1 0 300px;
  width: 100%;
  max-width: 300px;
  position: relative;
  z-index: 2;
  margin-top: 58px;
}
@media (max-width: 768px) {
  .top-menu__top-tour__text-box {
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 0;
  }
}

.top-tour__text-title {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (max-width: 768px) {
  .top-tour__text-title {
    gap: 4px;
  }
}

.top-tour__text-title--sub {
  font-size: clamp(17px, 17px + 1 * (100vw - 768px) / 512, 18px);
  line-height: 1.6666666667;
  font-weight: 600;
}
@media (max-width: 768px) {
  .top-tour__text-title--sub {
    font-size: clamp(16px, 2.34375vw, 18px);
  }
}

.top-tour__text-title--main-wrap {
  width: 457px;
  background-color: #ffffff;
  padding: 9px 0;
  border-radius: 6px;
}
@media (max-width: 768px) {
  .top-tour__text-title--main-wrap {
    width: auto;
  }
}

.top-tour__text-title--main {
  font-size: clamp(30px, 30px + 4 * (100vw - 768px) / 512, 34px);
  line-height: 1;
  font-family: "Sawarabi Mincho", serif;
}
@media (max-width: 768px) {
  .top-tour__text-title--main {
    font-size: clamp(23px, 3.6458333333vw, 28px);
  }
}

.top-tour__text {
  margin-top: 22px;
}
@media (max-width: 768px) {
  .top-tour__text {
    margin-top: 12px;
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}

.price-list {
  background-color: #F5F9FA;
  border-radius: 8px;
  padding: 20px 25px;
}
@media (max-width: 768px) {
  .price-list {
    padding: 20px;
  }
}

.top-menu__top-tour__text-price-box {
  margin-top: 27px;
}
@media (max-width: 768px) {
  .top-menu__top-tour__text-price-box {
    margin-top: 22px;
  }
}

.price-list-wrap {
  display: flex;
  justify-content: space-between;
  padding-bottom: 15px;
  position: relative;
}
.price-list-wrap::after {
  content: "";
  background-image: url(../img/common/ico_dot-line.svg);
  background-repeat: repeat-x;
  background-position: left center;
  background-size: 10px 2px;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
}
.price-list-wrap + .price-list-wrap {
  margin-top: 13px;
}
.price-list-wrap:last-of-type {
  padding-bottom: 0;
}
.price-list-wrap:last-of-type::after {
  display: none;
}

.price-list--title {
  line-height: 1;
}
.price-list--title--notice {
  display: inline-block;
  font-size: 12px;
  font-weight: 300;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .price-list--title--notice {
    margin-top: 13px;
  }
}

.price-list--detail {
  line-height: 1;
}

.text-small {
  font-size: 10px;
}

.top-menu__top-tour__text-btn {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top-menu__top-tour__text-btn {
    margin-top: 25px;
    margin-left: auto;
  }
}

.bleed-adjustment {
  margin-right: calc(50% - 50vw);
}

/* Swiperの外枠（必要なら余白調整） */
.top-tour-swiper {
  width: 100%;
}

/* ulをSwiperのwrapperとして使うので、余計なスタイルを消す */
.top-menu__top-tour__img-voice-slide-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* li（=スライド）を 580×560、角丸40 */
.top-menu__top-tour__img-voice-slide-list-item.swiper-slide {
  width: 580px;
  height: 560px;
  border-radius: 40px;
  overflow: hidden;
  /* 画像も角丸に */
  flex-shrink: 0;
  /* 念のため */
}

/* 画像は枠にフィットさせる */
.top-menu__top-tour__img-voice-slide-list-item-img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  .top-tour-swiper .swiper-slide.top-menu__top-tour__img-voice-slide-list-item {
    width: 300px;
    height: 288px;
    border-radius: 30px;
  }
  .bleed-adjustment {
    margin-left: calc(50% - 50vw);
  }
}
/**************.  top-menu__middle-tour  ******************/
.top-menu__middle-tour-box {
  margin-top: 110px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .top-menu__middle-tour-box {
    margin-top: 70px;
  }
}
.top-menu__middle-tour-box .top-tour__text-title {
  gap: 14px;
}
@media (max-width: 768px) {
  .top-menu__middle-tour-box .top-tour__text-title {
    gap: 13px;
  }
}
.top-menu__middle-tour-box .top-tour__text {
  margin-top: 27px;
}
@media (max-width: 768px) {
  .top-menu__middle-tour-box .top-tour__text {
    margin-top: 24px;
  }
}

.top-menu__middle-tour__list {
  display: flex;
  gap: clamp(30px, 30px + 20 * (100vw - 768px) / 512, 50px);
}

.top-menu__middle-tour__list-item {
  display: flex;
  flex-direction: column;
  gap: 28px;
  width: calc((100% - clamp(30px, 30px + 20 * (100vw - 768px) / 512, 50px)) / 2);
}

.middle-tour__list-item__img-box {
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .middle-tour__list-item__img-box {
    border-radius: 20px;
  }
}

.middle-tour__list-item__img,
.bottom-tour__list-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.middle-tour__list-item__text-box {
  display: flex;
  flex-direction: column;
}

.top-menu__middle-tour__text-btn {
  margin-top: 30px;
  margin-left: auto;
  min-height: 50px;
}
@media (max-width: 768px) {
  .top-menu__middle-tour__text-btn {
    margin-top: 25px;
    min-height: 50px;
  }
}

.top-menu__middle-tour__text-price-box {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .top-menu__middle-tour__text-price-box {
    margin-top: 20px;
  }
}

/**************.  top-menu__bottom-tour  ******************/
.top-menu__bottom-tour-box {
  margin-top: 110px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .top-menu__bottom-tour-box {
    margin-top: 70px;
  }
  .top-menu__bottom-tour-box .top-tour__text {
    margin-top: 24px;
  }
}
.top-menu__bottom-tour-box .top-tour__text-title--sub {
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
  line-height: 1.875;
}
.top-menu__bottom-tour-box .top-tour__text-title--main {
  font-size: clamp(21px, 21px + 5 * (100vw - 768px) / 512, 26px);
}
@media (max-width: 768px) {
  .top-menu__bottom-tour-box .top-tour__text-title--main {
    font-size: clamp(23px, 3.6458333333vw, 28px);
  }
}
.top-menu__bottom-tour-box .top-tour__text-title {
  gap: 11px;
}
.top-menu__bottom-tour-box .price-list {
  padding-left: clamp(15px, 15px + 10 * (100vw - 768px) / 512, 25px);
  padding-right: clamp(15px, 15px + 10 * (100vw - 768px) / 512, 25px);
}
@media (max-width: 768px) {
  .top-menu__bottom-tour-box .price-list {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.top-menu__bottom-tour__list {
  display: flex;
  gap: clamp(30px, 30px + 20 * (100vw - 768px) / 512, 50px);
  position: relative;
  z-index: 1;
}

.top-menu__bottom-tour__list-item {
  display: flex;
  flex-direction: column;
  gap: 21px;
  width: calc((100% - clamp(30px, 30px + 20 * (100vw - 768px) / 512, 50px) * 2) / 3);
}
@media (max-width: 768px) {
  .top-menu__bottom-tour__list-item {
    gap: 27px;
  }
}

.bottom-tour__list-item__img-box {
  border-radius: 20px;
  overflow: hidden;
}

.top-menu__bottom-tour__text-btn {
  margin-top: 31px;
  margin-left: auto;
}

.top-menu__bottom-tour__text-price-box {
  margin-top: 28px;
}
@media (max-width: 768px) {
  .top-menu__bottom-tour__text-price-box {
    margin-top: 21px;
  }
}

@media (max-width: 768px) {
  .top-menu__middle-tour__list,
  .top-menu__bottom-tour__list {
    flex-direction: column;
    gap: 70px;
  }
  .top-menu__middle-tour__list-item,
  .top-menu__bottom-tour__list-item {
    width: 100%;
  }
  .top-menu__bottom-tour__text-btn {
    margin-top: 25px;
    min-height: 50px;
  }
}
/**********************************************************

top-point-area

***********************************************************/
.top-point-area {
  padding-top: 110px;
  padding-bottom: 131px;
}
@media (max-width: 768px) {
  .top-point-area {
    padding-top: 65px;
    padding-bottom: 119px;
  }
}

.top-point-box {
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .top-point-box {
    flex-direction: column;
  }
}

.top-point__side-text-box {
  flex: 1 0 clamp(82px, 82px + 18 * (100vw - 768px) / 512, 100px);
  width: 100%;
  max-width: 100px;
  position: sticky;
  top: 100px;
}
@media (max-width: 768px) {
  .top-point__side-text-box {
    flex: 1 1 100%;
    max-width: 100%;
    position: relative;
    top: auto;
    z-index: 2;
  }
}

.top-point__side-text {
  margin: 0;
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-size: clamp(20px, 20px + 4 * (100vw - 768px) / 512, 24px);
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
}
@media (max-width: 768px) {
  .top-point__side-text {
    font-size: clamp(18px, 2.8645833333vw, 22px);
    margin: 0 auto;
    letter-spacing: 0.06em;
  }
}

.top-point__line {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  padding: 12px 5px 7px;
  border-radius: 5px;
  overflow: hidden;
  min-width: clamp(36px, 36px + 6 * (100vw - 768px) / 512, 42px);
}
@media (max-width: 768px) {
  .top-point__line {
    padding-bottom: 11px;
    min-width: 34px;
  }
}

.top-point__line + .top-point__line {
  height: -moz-fit-content;
  height: fit-content;
  margin-right: clamp(10px, 10px + 6 * (100vw - 768px) / 512, 16px);
}
@media (max-width: 768px) {
  .top-point__line + .top-point__line {
    margin-right: 16px;
  }
}

.top-point__line::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(to bottom, #3CA5FC, #44D5FC);
  transform-origin: 50% 0%;
  transform: scaleY(0);
  opacity: 0;
  transition: transform 0.55s ease, opacity 0.25s ease;
}

.top-point__line.is-in::before {
  transform: scaleY(1);
  opacity: 1;
}

.top-point__word {
  display: inline;
  white-space: nowrap;
}

@media (min-width: 768px) {
  .top-point__line + .top-point__line {
    height: -moz-fit-content;
    height: fit-content;
  }
  .top-point__line:nth-of-type(1)::before {
    transition-delay: 0ms;
  }
  .top-point__line:nth-of-type(2)::before {
    transition-delay: 220ms;
  }
}
@media (max-width: 768px) {
  .top-point__word {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 5px 11px;
    border-radius: 5px;
    overflow: hidden;
    min-width: 34px;
    position: relative;
  }
  .top-point__word::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(to bottom, #3CA5FC, #44D5FC);
    transform-origin: 50% 0%;
    transform: scaleY(0);
    opacity: 0;
    transition: transform 0.55s ease, opacity 0.25s ease;
  }
  .top-point__word.is-in::before {
    transform: scaleY(1);
    opacity: 1;
  }
  .top-point__word + .top-point__word {
    margin-right: 16px;
  }
  .top-point__line.is-group {
    flex-direction: column;
    align-items: flex-start;
    padding: 0;
  }
  .top-point__line:nth-of-type(1)::before {
    transition-delay: 0ms;
  }
  .top-point__line:nth-of-type(2)::before {
    transition-delay: 480ms;
  }
  .top-point__word:nth-of-type(1)::before {
    transition-delay: 0ms;
  }
  .top-point__word:nth-of-type(2)::before {
    transition-delay: 240ms;
  }
}
@media (prefers-reduced-motion: reduce) {
  .top-point__line::before {
    transition: none;
    transform: scaleY(1);
    opacity: 1;
  }
}
.top-point__main-box {
  flex: 1 1 1000px;
  width: 100%;
  max-width: 1000px;
  background: linear-gradient(to bottom, #F2FAFD 0%, #EFFCF8 60%, #F0FCF2 100%);
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  z-index: 1;
  padding-top: 100px;
  padding-bottom: 120px;
}
.top-point__main-box::before {
  content: "";
  background: url(../img/common/ico_point-corner.svg) no-repeat left top/contain;
  width: 718px;
  height: 331px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 768px) {
  .top-point__main-box {
    flex: 1 1 100%;
    max-width: 100%;
    border-radius: 30px;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: -181px;
    padding-top: 180px;
    padding-bottom: 77px;
  }
  .top-point__main-box::before {
    width: 236px;
    height: 108px;
  }
}

.top-point__main-title-box {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .top-point__main-title-box {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 19px;
  }
}

.top-point__main-title {
  flex: 1 0.4 276px;
  width: 100%;
  max-width: 276px;
  display: flex;
  flex-direction: column;
  font-family: "Sawarabi Mincho", serif;
  color: #345772;
}
@media (max-width: 768px) {
  .top-point__main-title {
    flex: 1 1 100%;
    max-width: 100%;
  }
}

.top-point__main-title--s {
  font-size: clamp(20px, 20px + 2 * (100vw - 768px) / 512, 22px);
  line-height: 1.3636363636;
}
@media (max-width: 768px) {
  .top-point__main-title--s {
    font-size: clamp(18px, 2.8645833333vw, 22px);
    line-height: 1.3888888889;
  }
}

.top-point__main-title--l {
  font-size: clamp(33px, 33px + 9 * (100vw - 768px) / 512, 42px);
  line-height: 1.6428571429;
}
@media (max-width: 768px) {
  .top-point__main-title--l {
    font-size: clamp(32px, 5.2083333333vw, 40px);
    line-height: 1.8125;
    margin-top: 1px;
  }
}

.top-point__main-title__text {
  flex: 1 1 512px;
  width: 100%;
  max-width: 512px;
  margin-top: 3px;
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
}
@media (max-width: 768px) {
  .top-point__main-title__text {
    flex: 1 1 100%;
    max-width: 100%;
    margin-top: 0;
    line-height: 1.75;
    text-align: left;
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}

.top-point__main-list {
  margin-top: 93px;
}
@media (max-width: 768px) {
  .top-point__main-list {
    margin-top: 43px;
  }
}

.top-point__main-list-item {
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
.top-point__main-list-item + .top-point__main-list-item {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .top-point__main-list-item + .top-point__main-list-item {
    margin-top: 58px;
  }
}
.top-point__main-list-item:nth-child(even) {
  flex-direction: row-reverse;
}
@media (max-width: 768px) {
  .top-point__main-list-item {
    flex-direction: column;
    gap: 0;
  }
  .top-point__main-list-item:nth-child(even) {
    flex-direction: column;
  }
}

.top-point__main-list-item__img-box {
  flex: 1 1 410px;
  width: 100%;
  max-width: 410px;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-point__main-list-item__img-box {
    flex: 1 1 100%;
    max-width: 100%;
    border-radius: 20px;
  }
}

.top-point__main-list-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-point__main-list-item__text-box {
  flex: 1 1 410px;
  width: 100%;
  max-width: 410px;
  position: relative;
  padding-top: 48px;
}
@media (max-width: 768px) {
  .top-point__main-list-item__text-box {
    flex: 1 1 100%;
    max-width: 100%;
    padding-top: 51px;
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}

.top-point__main-list-item__text-title {
  font-size: clamp(20px, 20px + 2 * (100vw - 768px) / 512, 22px);
  line-height: 1.5;
  font-family: "Sawarabi Mincho", serif;
  padding-left: clamp(44px, 44px + 21 * (100vw - 768px) / 512, 65px);
  position: relative;
}
@media (max-width: 768px) {
  .top-point__main-list-item__text-title {
    text-align: center;
    padding-left: 0;
    margin: 0 auto;
    font-size: clamp(20px, 2.8645833333vw, 22px);
  }
}

.top-point__main-list-item__text {
  margin-top: 24px;
}
@media (max-width: 768px) {
  .top-point__main-list-item__text {
    margin-top: 18px;
    line-height: 1.65;
  }
}

.point-mark-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  width: clamp(70px, 70px + 10 * (100vw - 768px) / 512, 80px);
  height: clamp(70px, 70px + 10 * (100vw - 768px) / 512, 80px);
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 768px) {
  .point-mark-box {
    width: 80px;
    height: 80px;
    top: -46px;
    left: 50%;
    transform: translateX(-50%);
  }
}

.point-mark-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  margin-top: 1px;
  font-weight: 600;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  background: linear-gradient(135deg, #3CA5FC, #44D5FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
}

.point-mark--s {
  font-size: clamp(9px, 9px + 1 * (100vw - 768px) / 512, 10px);
  line-height: 1;
}
@media (max-width: 768px) {
  .point-mark--s {
    font-size: 10px;
  }
}

.point-mark--l {
  font-size: clamp(19px, 19px + 2 * (100vw - 768px) / 512, 21px);
  line-height: 1;
}
@media (max-width: 768px) {
  .point-mark--l {
    font-size: 21px;
  }
}

.notice-list {
  margin-top: 13px;
}

.notice-list-item {
  font-size: 12px;
  line-height: 1.6666666667;
}

/**********************************************************

top-service-area

***********************************************************/
.top-service-area {
  padding-top: 100px;
  padding-bottom: 120px;
  width: 100%;
  height: 100%;
  background: url(../img/top/bg_service.jpg) no-repeat top center/cover;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
.top-service-area::before, .top-service-area::after {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  width: 350px;
  height: 123px;
  z-index: 2;
}
@media (max-width: 768px) {
  .top-service-area::before, .top-service-area::after {
    width: 156px;
    height: 54px;
  }
}
.top-service-area::before {
  background: url(../img/common/ico_corner_left.png) no-repeat left center/cover;
  left: 0;
}
.top-service-area::after {
  background: url(../img/common/ico_corner_right.png) no-repeat right center/cover;
  right: 0;
}
@media (max-width: 768px) {
  .top-service-area {
    padding-top: 101px;
    padding-bottom: 100px;
    background-attachment: scroll;
  }
}

.top-service-bg {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.85) 100%);
  width: 100%;
  height: calc(100% + 2px);
  position: absolute;
  top: -1px;
  left: 0;
  z-index: 1;
}

.top-service-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.top-service-title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media (max-width: 768px) {
  .top-service-title {
    gap: 3px;
  }
}

.top-service-title--sub {
  display: flex;
  justify-content: center;
  align-items: center;
  background: url(../img/common/bg_fukidasi.svg) no-repeat left center/contain;
  width: 265px;
  height: 46px;
}
@media (max-width: 768px) {
  .top-service-title--sub {
    background: url(../img/common/bg_fukidasi-sp.svg) no-repeat left center/contain;
    width: 245px;
    height: 46px;
  }
}

.top-service-title--sub-text {
  display: inline-block;
  font-size: 17px;
  font-weight: 600;
  color: #FFFFFF;
  line-height: 1;
  margin-top: -9px;
}
@media (max-width: 768px) {
  .top-service-title--sub-text {
    font-size: 16px;
  }
}

.top-service-title--main {
  color: #345772;
  font-size: clamp(58px, 58px + 2 * (100vw - 768px) / 512, 60px);
  font-family: "Sawarabi Mincho", serif;
  line-height: 1.4;
}
@media (max-width: 768px) {
  .top-service-title--main {
    font-size: 40px;
  }
}

.table-wrap {
  width: 100%;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 50px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 60px;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .table-wrap {
    padding: 30px 15px 40px;
    width: calc(100% + 30px);
    border-radius: 30px;
    margin-top: 45px;
  }
}

.c-table {
  width: 100%;
}
.c-table col:nth-of-type(2), .c-table col:nth-of-type(3) {
  width: 39.6739130435%;
}
@media (max-width: 768px) {
  .c-table col:nth-of-type(2), .c-table col:nth-of-type(3) {
    width: 37.6811594203%;
  }
}
.c-table .table__img-box {
  display: inline-block;
  width: 100%;
  max-width: 204px;
}
@media (max-width: 768px) {
  .c-table .table__img-box {
    max-width: clamp(110px, 29.3333333333vw, 135px);
  }
}
.c-table .table__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-table tr {
  border-bottom: 1px solid #D3DFE5;
}
.c-table tr:first-of-type th {
  text-align: center;
  padding: 11px 0;
}
@media (max-width: 768px) {
  .c-table tr:first-of-type th {
    padding: 11px 0 6px;
  }
}
.c-table tr:first-of-type .two-column-text {
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .c-table tr:first-of-type .two-column-text {
    width: 100%;
  }
}
.c-table tr + tr .two-column-text {
  gap: 3px;
}
@media (max-width: 768px) {
  .c-table tr + tr .two-column-text {
    gap: 2px;
  }
}
.c-table tr + tr td,
.c-table tr + tr th {
  padding-top: 0;
  padding-bottom: 0;
  vertical-align: middle;
}
.c-table tr + tr th {
  padding-left: clamp(20px, 20px + 24 * (100vw - 768px) / 512, 44px);
}
@media (max-width: 768px) {
  .c-table tr + tr th {
    padding-left: 0;
    text-align: center;
  }
}
.c-table tr td,
.c-table tr th {
  padding-top: 21px;
  padding-bottom: 20px;
  vertical-align: middle;
}
.c-table tr th {
  font-size: 16px;
  font-weight: 600;
  padding-left: 44px;
}
@media (max-width: 768px) {
  .c-table tr th {
    font-size: 14px;
    width: 24.6376811594%;
  }
}
.c-table tr td {
  font-size: 15px;
  font-weight: 600;
  text-align: center;
}
.c-table tr td:first-of-type {
  background-color: #FBFDF5;
}
@media (max-width: 768px) {
  .c-table tr td {
    font-size: clamp(12px, 3.2vw, 14px);
    width: 37.6811594203%;
  }
}
.c-table tr .table-text--ss {
  font-size: 12px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .c-table tr .table-text--ss {
    font-size: clamp(10px, 2.6666666667vw, 12px);
  }
}
.c-table tr .table-text--s {
  font-size: 15px;
}
@media (max-width: 768px) {
  .c-table tr .table-text--s {
    font-size: clamp(12px, 3.2vw, 14px);
  }
}
.c-table tr .table-text--l {
  font-size: 22px;
}
@media (max-width: 768px) {
  .c-table tr .table-text--l {
    font-size: clamp(14px, 3.7333333333vw, 16px);
  }
}
.c-table tr .mt-adjustment {
  margin-top: -2px;
}
.c-table tr .table-cell {
  min-height: 87px;
  padding-top: 21px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .c-table tr .table-cell {
    min-height: 67px;
    padding-top: 14px;
    padding-bottom: 13px;
  }
}
.c-table tr .two-column-text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.c-table tr .text-side-icon {
  padding-left: 21px;
  position: relative;
}
.c-table tr .text-side-icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
}
.c-table tr .text-side-icon.icon-flag::before {
  background: url(../img/common/ico_service_flag.svg) no-repeat left center/contain;
  width: 17px;
  height: 16px;
}
.c-table tr .text-side-icon.icon-people {
  padding-left: 19px;
}
.c-table tr .text-side-icon.icon-people::before {
  background: url(../img/common/ico_service_people.svg) no-repeat left center/contain;
  top: -3.5px;
  width: 13px;
  height: 22px;
}
.c-table tr .text-side-icon.icon-camera {
  padding-left: 24px;
}
.c-table tr .text-side-icon.icon-camera::before {
  background: url(../img/common/ico_service_camera.svg) no-repeat left center/contain;
  width: 18px;
  height: 15px;
}
.c-table tr .text-side-icon.icon-canoe {
  padding-left: 27px;
}
.c-table tr .text-side-icon.icon-canoe::before {
  background: url(../img/common/ico_service_canoe.svg) no-repeat left center/contain;
  top: -6px;
  width: 21px;
  height: 28px;
}
.c-table tr .text-side-icon.icon-heart {
  padding-left: 24px;
}
.c-table tr .text-side-icon.icon-heart::before {
  background: url(../img/common/ico_service_heart.svg) no-repeat left center/contain;
  width: 18px;
  height: 16px;
}
.c-table tr .text-side-icon.icon-cross {
  padding-left: 23px;
}
.c-table tr .text-side-icon.icon-cross::before {
  background: url(../img/common/ico_service_cross.svg) no-repeat left center/contain;
  top: -1px;
  width: 18px;
  height: 18px;
}
.c-table tr .text-side-icon.icon-money {
  padding-left: 29px;
}
.c-table tr .text-side-icon.icon-money::before {
  background: url(../img/common/ico_service_money.svg) no-repeat left center/contain;
  top: -4px;
  width: 24px;
  height: 24px;
}
.c-table tr .text-side-icon.icon-star {
  padding-left: 27px;
}
.c-table tr .text-side-icon.icon-star::before {
  background: url(../img/common/ico_service_star.svg) no-repeat left center/contain;
  top: -4px;
  width: 23px;
  height: 21px;
}
@media (max-width: 768px) {
  .c-table tr .text-side-icon {
    display: inline-block;
    padding-left: 0;
    padding-top: 20px;
    margin-right: 5px;
    font-size: clamp(12px, 3.2vw, 14px);
  }
  .c-table tr .text-side-icon::before {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .c-table tr .text-side-icon.icon-people {
    padding-left: 0;
    padding-top: 31px;
  }
  .c-table tr .text-side-icon.icon-people::before {
    top: 6px;
  }
  .c-table tr .text-side-icon.icon-camera {
    padding-left: 0;
    padding-top: 26px;
  }
  .c-table tr .text-side-icon.icon-camera::before {
    top: 5px;
  }
  .c-table tr .text-side-icon.icon-canoe {
    padding-left: 0;
    padding-top: 34px;
  }
  .c-table tr .text-side-icon.icon-canoe::before {
    top: 5px;
  }
  .c-table tr .text-side-icon.icon-heart {
    padding-left: 0;
    padding-top: 30px;
  }
  .c-table tr .text-side-icon.icon-heart::before {
    top: 9px;
  }
  .c-table tr .text-side-icon.icon-cross {
    padding-left: 0;
    padding-top: 27px;
  }
  .c-table tr .text-side-icon.icon-cross::before {
    top: 5px;
  }
  .c-table tr .text-side-icon.icon-money {
    padding-left: 0;
    padding-top: 33px;
  }
  .c-table tr .text-side-icon.icon-money::before {
    top: 6px;
  }
  .c-table tr .text-side-icon.icon-star {
    padding-left: 0;
    padding-top: 31px;
  }
  .c-table tr .text-side-icon.icon-star::before {
    top: 8px;
  }
}

/**********************************************************

voice-area

***********************************************************/
.voice-area {
  padding-top: 130px;
  overflow-x: clip;
}
@media (max-width: 768px) {
  .voice-area {
    padding-top: 100px;
    padding-bottom: 45px;
  }
}

.voice-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #F5F9FA;
  border-radius: 30px;
  padding-top: 100px;
  padding-bottom: 94px;
}
@media (max-width: 768px) {
  .voice-box {
    padding-top: 70px;
    padding-bottom: 70px;
  }
}

/* フルブリード */
.full-bleed {
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.js-voice-slider {
  margin-top: 54px;
}
@media (max-width: 768px) {
  .js-voice-slider {
    margin-top: 44px;
  }
}
.js-voice-slider .slick-list {
  overflow: visible;
  margin: 0 -17.5px;
}
@media (max-width: 768px) {
  .js-voice-slider .slick-list {
    margin: 0 -10px;
  }
}
.js-voice-slider .slick-slide {
  margin: 0 17.5px;
}
@media (max-width: 768px) {
  .js-voice-slider .slick-slide {
    margin: 0 10px;
  }
}
.js-voice-slider .voice-slide-list-item {
  max-width: 242px;
  height: auto;
}
.js-voice-slider .star-review-box {
  margin-top: 10px;
  display: flex;
  gap: 0.3px;
}
@media (max-width: 768px) {
  .js-voice-slider .star-review-box {
    margin-top: 11px;
  }
}
.js-voice-slider .voice-slide-list-item__img-box {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 242/310;
}
.js-voice-slider .voice-slide-list-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.js-voice-slider .voice-slide-list-item__img-text-box {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 7px;
  padding: 11px 9px;
  position: absolute;
  top: 20px;
  left: 20px;
  min-width: 34px;
  min-height: 89px;
}
.js-voice-slider .voice-slide-list-item__text-box {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.js-voice-slider .voice-slide-list-item__text__name-box {
  font-size: 20px;
  line-height: 1.3;
  font-family: "Sawarabi Mincho", serif;
}
.js-voice-slider .star-review {
  position: relative;
  width: 19px;
  height: 18px;
}
.js-voice-slider .star-review::before {
  content: "";
  background: #C3D4E2;
  width: 19px;
  height: 18px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -1px;
  margin: auto;
  mask-image: url(../img/common/ico_review-star.svg);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/ico_review-star.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}
.js-voice-slider .star-review.--on::before {
  background: linear-gradient(to bottom, #EDCA38 0%, #F5AA00 100%);
}
.js-voice-slider .voice-slide-list-item__text {
  margin-top: 13px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* ← 3行で省略 */
  overflow: hidden;
}

.top-voice-btn {
  margin-top: 54px;
}
@media (max-width: 768px) {
  .top-voice-btn {
    margin-top: 39px;
  }
}

/**********************************************************

top-blog-area

***********************************************************/
.top-blog-area {
  padding-top: 55px;
  padding-bottom: 130px;
}
@media (max-width: 768px) {
  .top-blog-area {
    padding: 53px 30px 120px;
  }
  .top-blog-area .c-section-title {
    align-items: center;
    margin: 0 auto;
  }
}
.top-blog-area .l-inner {
  position: relative;
  z-index: 1;
}

.title-with-btn {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.blog-btn {
  position: absolute;
  top: -122px;
  right: 0;
}
.blog-btn .c-btn-text {
  padding-right: 11px !important;
}
.blog-btn .c-btn-text::before {
  right: -24% !important;
}
@media (max-width: 768px) {
  .blog-btn {
    position: relative;
    margin: 5px auto 0;
    top: auto;
    right: auto;
  }
}

.blog-box {
  display: flex;
  gap: clamp(30px, 30px + 20 * (100vw - 768px) / 512, 50px);
  margin-top: 43px;
  position: relative;
}
@media (max-width: 768px) {
  .blog-box {
    flex-direction: column;
    margin-top: 44px;
    gap: 35px;
  }
}

.blog-box-item {
  width: 50%;
}

.blog-latest {
  width: 43.2692307692%;
}
@media (max-width: 768px) {
  .blog-latest {
    width: 100%;
  }
}

.blog-list {
  width: 51.9230769231%;
}
@media (max-width: 768px) {
  .blog-list {
    width: 100%;
  }
}

.blog-list-item__img-box,
.blog-latest__img-box {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.blog-list-item__img,
.blog-latest__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blog-latest__text-box,
.blog-list-item__text-box {
  display: flex;
  flex-direction: column;
}

.blog-latest__text-box {
  margin-top: 30px;
}
@media (max-width: 768px) {
  .blog-latest__text-box {
    margin-top: 22px;
  }
}

.blog-list-item__text-box {
  margin-top: 25px;
}
@media (max-width: 768px) {
  .blog-list-item__text-box {
    margin-top: 20px;
  }
}

.blog-latest__text__sub,
.blog-list-item__text__sub {
  display: flex;
  align-items: center;
  gap: 10px;
}

@media (max-width: 768px) {
  .blog-list-item__text__sub {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }
}
.blog-latest__text__sub--tag,
.blog-list-item__text__sub--tag {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E7F4F8;
  border-radius: 3px;
  overflow: hidden;
  padding: 3px 5px;
  min-width: 68px;
  min-height: 24px;
}

.blog-latest__text__sub--tag-text,
.blog-list-item__text__sub--tag-text {
  font-size: 12px;
  font-weight: 600;
  line-height: 1;
}

.blog-latest__text__sub--date,
.blog-list-item__text__sub--date {
  font-size: 16px;
  font-family: "Hiragino Mincho ProN", "ヒラギノ明朝 ProN", serif;
  font-weight: 300;
  color: #89959F;
}
@media (max-width: 768px) {
  .blog-latest__text__sub--date,
  .blog-list-item__text__sub--date {
    font-size: clamp(14px, 3.7333333333vw, 15px);
  }
}

@media (max-width: 768px) {
  .blog-list-item__text__sub--date {
    font-size: clamp(12px, 3.2vw, 14px);
  }
}
.blog-latest__text__main {
  font-size: 18px;
  line-height: 1.6;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .blog-latest__text__main {
    font-size: clamp(16px, 4.2666666667vw, 18px);
    margin-top: 16px;
  }
}

.blog-list-item__text__main {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  /* ← 3行で省略 */
  overflow: hidden;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .blog-list-item__text__main {
    font-size: clamp(12px, 3.2vw, 14px);
    -webkit-line-clamp: 5;
    margin-top: 7px;
  }
}

.blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px 30px;
}
@media (max-width: 768px) {
  .blog-list {
    gap: 34px 15px;
  }
}

.blog-list-item {
  width: calc((100% - 30px) / 2);
}
@media (max-width: 768px) {
  .blog-list-item {
    width: calc((100% - 15px) / 2);
  }
}

/**********************************************************

top-about-area

***********************************************************/
.top-about-area {
  padding-top: 0;
  padding-bottom: 140px;
  background-color: #F4F9FA;
  position: relative;
}
.top-about-area::before, .top-about-area::after {
  content: "";
  display: block;
  position: absolute;
  width: 100vw;
  height: 3.984375vw;
  left: 0;
  bottom: 0;
  z-index: 2;
}
@media (max-width: 768px) {
  .top-about-area::before, .top-about-area::after {
    height: 4vw;
  }
}
.top-about-area::before {
  background: url(../img/common/bg_wave-blue.png) no-repeat left center/cover;
  bottom: 6px;
}
@media (max-width: 768px) {
  .top-about-area::before {
    background: url(../img/common/bg_wave-blue-sp.png) no-repeat left center/cover;
    bottom: 2px;
  }
}
.top-about-area::after {
  background: url(../img/common/bg_wave-white.png) no-repeat left center/cover;
}
@media (max-width: 768px) {
  .top-about-area::after {
    background: url(../img/common/bg_wave-white-sp.png) no-repeat left center/cover;
  }
}
.top-about-area .c-section-title--jp {
  margin-top: 2px;
}
@media (max-width: 768px) {
  .top-about-area .c-section-title--jp {
    margin-top: -2px;
  }
}
@media (max-width: 768px) {
  .top-about-area {
    padding: 0 30px 76px;
  }
}

.top-about-bg {
  width: 100vw;
  min-height: 552px;
  background: url(../img/top/img_about.jpg) no-repeat top center/cover;
  background-attachment: fixed;
  position: relative;
  z-index: 0;
}
@supports (-webkit-touch-callout: none) {
  .top-about-bg {
    background-attachment: scroll;
  }
}
.top-about-bg::before, .top-about-bg::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  z-index: 2;
}
.top-about-bg::before {
  width: 100vw;
  height: 4.375vw;
  background: url(../img/common/bg_curve-reverse.png) no-repeat left center/cover;
  top: 0;
}
.top-about-bg::after {
  width: 100vw;
  height: 4.00625vw;
  mask-image: url(../img/common/bg_curve.png);
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-image: url(../img/common/bg_curve.png);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  background-color: #F4F9FA;
  bottom: -1px;
}
@media (max-width: 768px) {
  .top-about-bg {
    min-height: 366px;
  }
}

.top-about-box {
  margin-top: -78px;
  position: relative;
  z-index: 1;
}
@media (min-width: 1281px) {
  .top-about-box {
    margin-top: -6.09375vw;
  }
}
@media (max-width: 768px) {
  .top-about-box {
    margin-top: -8.8vw;
  }
}

.top-about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0 clamp(30px, 30px + 20 * (100vw - 768px) / 512, 50px);
  margin-top: 62px;
}
@media (max-width: 768px) {
  .top-about-list {
    flex-direction: column;
    margin: 42px auto 0;
    max-width: 450px;
  }
}

.top-about-list-item {
  width: calc((100% - clamp(30px, 30px + 20 * (100vw - 768px) / 512, 50px)) / 2);
  border-bottom: 1px solid #C6D3D9;
  padding-top: 18px;
  padding-bottom: 18px;
}
.top-about-list-item:nth-of-type(1), .top-about-list-item:nth-of-type(2) {
  border-top: 1px solid #C6D3D9;
}
@media (max-width: 768px) {
  .top-about-list-item {
    width: 100%;
    padding-top: 15px;
    padding-bottom: 14px;
  }
  .top-about-list-item:nth-of-type(2) {
    border-top: none;
  }
}

.top-about-list-item__link {
  display: flex;
  align-items: center;
  gap: 30px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .top-about-list-item__link {
    gap: 14px;
    align-items: flex-start;
  }
}

.top-about-list-item__img-box {
  width: 100px;
  height: 100px;
  overflow: hidden;
  border-radius: 100px;
}
@media (max-width: 768px) {
  .top-about-list-item__img-box {
    width: 70px;
    height: 70px;
  }
}
.top-about-list-item__img-box.no-radius {
  border-radius: 0;
}

.top-about-list-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.top-about-list-item__text-box {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 8px;
}
@media (max-width: 768px) {
  .top-about-list-item__text-box {
    margin-top: 10px;
  }
}

.top-about-list-item__text--sub {
  background: linear-gradient(to right, #3CA5FC, #44D5FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1;
  font-size: 12px;
  font-weight: 600;
}

.top-about-list-item__text--main {
  font-size: 28px;
  font-family: "Sawarabi Mincho", serif;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .top-about-list-item__text--main {
    font-size: 20px;
    margin-top: 7px;
  }
}

.top-about-list-item__text--main-btn {
  display: inline-block;
  width: 21px;
  height: 21px;
  border: 1px solid #1E3343;
  border-radius: 50%;
  position: relative;
  margin-left: -4px;
}
.top-about-list-item__text--main-btn::before {
  content: "";
  background: url(../img/common/ico_btn_arrow.svg) no-repeat center center/contain;
  width: 12px;
  height: 4px;
  position: absolute;
  top: 6.5px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 768px) {
  .top-about-list-item__text--main-btn::before {
    width: 9px;
    height: 4px;
    top: 5px;
  }
}
@media (max-width: 768px) {
  .top-about-list-item__text--main-btn {
    width: 18px;
    height: 18px;
    margin-left: 0;
    margin-top: 0;
    transform: translateY(1px);
  }
}

/**********************************************************

instagram-area

***********************************************************/
.instagram-area {
  padding-top: 131px;
  padding-bottom: 40px;
  margin-bottom: 61px;
  position: relative;
}
.instagram-area::after {
  content: "";
  display: block;
  background: url(../img/common/bg_wave-block.png) no-repeat left center/cover;
  position: absolute;
  width: 100vw;
  height: 25.9375vw;
  left: 0;
  bottom: 0;
  z-index: 0;
}
@media (max-width: 768px) {
  .instagram-area {
    padding: 79px 30px 52px;
    margin-bottom: 28px;
  }
  .instagram-area::after {
    background: url(../img/common/bg_wave-block-sp.png) no-repeat left center/cover;
    height: 76.5333333333vw;
  }
}

.instagram-box {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .instagram-box {
    align-items: center;
    flex-direction: column;
  }
}

.side-title {
  margin-top: 28.7%;
  position: relative;
  z-index: 5;
}
@media (max-width: 768px) {
  .side-title {
    margin-top: 0;
  }
}

.side-title--sub {
  display: inline-block;
  background: linear-gradient(80deg, #3CA5FC, #44D5FC);
  width: 105px;
  height: 105px;
  border-radius: 50%;
  position: absolute;
  top: -73px;
  left: 0;
}
@media (max-width: 768px) {
  .side-title--sub {
    width: 83px;
    height: 83px;
    top: -52px;
    left: -45px;
  }
}

.side-title--sub-text {
  text-align: center;
  font-size: 18px;
  line-height: 1.2777777778;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.06em;
  position: absolute;
  top: calc(50% + 2px);
  left: 50%;
  transform: translate(-50%, -50%);
}
@media (max-width: 768px) {
  .side-title--sub-text {
    font-size: 14px;
    line-height: 1.1428571429;
  }
}

.side-title--main {
  color: #345772;
  font-size: 60px;
  font-family: "Sawarabi Mincho", serif;
  line-height: 1.4;
  text-shadow: 2px 2px 0 #FFFFFF;
  padding-left: 60px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .side-title--main {
    font-size: 42px;
    padding-left: 0;
  }
}

.instagram-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-left: -57px;
  width: 100%;
  max-width: 515px;
  border-radius: 30px;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .instagram-list {
    gap: 5px;
    margin-left: 0;
    border-radius: 20px;
    max-width: 450px;
    margin-top: 49px;
  }
}

.instagram-list-item {
  width: calc((100% - 16px) / 3);
  max-width: 166px;
  aspect-ratio: 166/223;
  overflow: hidden;
}
@media (max-width: 768px) {
  .instagram-list-item {
    width: calc((100% - 10px) / 3);
  }
}

.instagram-list-item__link {
  display: block;
  width: 100%;
  height: 100%;
}

.instagram-list-item__link__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**********************************************************

point-reserve-btn

***********************************************************/
.point-reserve-btn {
  width: clamp(250px, 250px + 53.5 * (100vw - 768px) / 512, 303.5px);
  height: clamp(250px, 250px + 53.5 * (100vw - 768px) / 512, 303.5px);
  display: grid;
  place-items: center;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  position: absolute;
  right: 20px;
  bottom: -166px;
  z-index: 100;
}
@media (max-width: 768px) {
  .point-reserve-btn {
    width: 245px;
    height: 245px;
    right: 0;
    left: 0;
    margin: 0 auto;
    bottom: -120px;
  }
}

.reserve-text__img-box {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 8px;
}

/* =========================
  追従ボタン
========================= */
.point-reserve-btn--float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 9999;
  width: 143px;
  height: 143px;
  margin: 0;
  opacity: 0;
  transform: scale(0);
  transform-origin: 50% 50%;
  pointer-events: none;
  transition: opacity 400ms ease, transform 2000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
@media (max-width: 768px) {
  .point-reserve-btn--float {
    right: 10px;
    bottom: 10px;
    left: auto;
    width: 110px;
    height: 110px;
  }
  .point-reserve-btn--float .reserve-text__img-box {
    gap: 5px;
  }
}
.point-reserve-btn--float.is-show {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}
.point-reserve-btn--float.is-hide {
  opacity: 0;
  transform: scale(0);
  pointer-events: none;
  transition: opacity 400ms ease, transform 2000ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.point-reserve-btn--float {
  /* 追従は“簡易版”表示（現状踏襲） */
}
.point-reserve-btn--float .point-reserve-btn__scale {
  transform: translateZ(0) scale(1);
}
.point-reserve-btn--float .point-reserve-btn__bg::before {
  opacity: 0;
}
.point-reserve-btn--float .point-reserve-btn__bg::after {
  opacity: 1;
}
.point-reserve-btn--float .point-reserve-btn__text-main {
  opacity: 0;
  transform: scale(0);
}
.point-reserve-btn--float .reserve-text-box {
  position: static;
  opacity: 1;
  transform: translateY(0);
  margin-top: 8px;
  padding-top: 31px;
}
@media (max-width: 768px) {
  .point-reserve-btn--float .reserve-text-box {
    margin-top: 13px;
    padding-top: 16px;
  }
}
.point-reserve-btn--float {
  /* 追従のhover（必要なら残す）
   “is-show のときだけ”効かせる */
}
.point-reserve-btn--float.is-show:hover {
  opacity: 1;
  transform: scale(1);
}
.point-reserve-btn--float.is-show:hover .point-reserve-btn__scale {
  transform: scale(1.2);
}
.point-reserve-btn--float.is-show:hover .reserve-text-box {
  transform: translateY(0px);
}

/* =========================
  KVボタン
========================= */
.point-reserve-btn--kv {
  transform: scale(1);
  opacity: 1;
  transform-origin: 50% 50%;
  transition: opacity 180ms ease, transform 2000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  pointer-events: none;
}
@media (max-width: 768px) {
  .point-reserve-btn--kv {
    bottom: -195px;
  }
}

/* =========================
  共通パーツ
========================= */
.point-reserve-btn__scale {
  position: absolute;
  inset: 0;
  transition: transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  transform: translateZ(0) scale(1);
  pointer-events: none;
}

.point-reserve-btn__rot {
  position: absolute;
  inset: 0;
  transform-origin: 50% 50%;
  animation: point-reserve-btn-spin 40s linear infinite;
  will-change: transform;
  pointer-events: none;
}

.point-reserve-btn__bg {
  pointer-events: none;
  position: absolute;
  inset: 0;
  mask-image: url(../img/common/polygon.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-image: url(../img/common/polygon.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  isolation: isolate;
}
.point-reserve-btn__bg::before, .point-reserve-btn__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  transition: opacity 1400ms cubic-bezier(0.2, 0.8, 0.2, 1);
}
.point-reserve-btn__bg::before {
  background: linear-gradient(135deg, #2C9BEF, #18CFDE);
  opacity: 1;
}
.point-reserve-btn__bg::after {
  background: linear-gradient(90deg, #FF6565, #FF6CB0);
  opacity: 0;
}

.point-reserve-btn__text-box {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  font-size: clamp(12px, 12px + 3 * (100vw - 768px) / 512, 15px);
  z-index: 2;
  color: #FFFFFF;
  text-align: center;
  font-weight: 600;
  line-height: 1.7333333333;
  opacity: 1;
}
@media (max-width: 768px) {
  .point-reserve-btn__text-box {
    gap: 16px;
    font-size: 12px;
  }
}

.point-reserve-btn__text-list {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: -moz-fit-content;
  width: fit-content;
  gap: 12px;
  font-size: clamp(10px, 10px + 2 * (100vw - 768px) / 512, 12px);
  line-height: 1;
  margin: 0 auto;
  transform: translateY(-3px);
}
@media (max-width: 768px) {
  .point-reserve-btn__text-list {
    gap: 10px;
    font-size: 10px;
  }
}

.point-reserve-btn__text-list-item.icon_diamond-white {
  padding-left: 15px;
  position: relative;
}
@media (max-width: 768px) {
  .point-reserve-btn__text-list-item.icon_diamond-white {
    padding-left: 13px;
  }
}
.point-reserve-btn__text-list-item.icon_diamond-white::before {
  content: "";
  display: block;
  background: url(../img/common/ico_dia_white.svg) no-repeat center center/contain;
  position: absolute;
  top: -1px;
  left: 0;
  width: 12px;
  height: 12px;
}
@media (max-width: 768px) {
  .point-reserve-btn__text-list-item.icon_diamond-white::before {
    width: 11px;
    height: 11px;
    top: -1px;
  }
}

@keyframes point-reserve-btn-spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.reserve-text-box {
  display: flex;
  flex-direction: column;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  padding-top: 30px;
  margin-top: 14px;
  transform: translateY(20px);
  transition: opacity 1000ms ease, transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  z-index: 3;
}
.reserve-text-box::before {
  content: "";
  background: url(../img/common/ico_reserve.svg) no-repeat center/contain;
  width: 34px;
  height: 35px;
  position: absolute;
  top: -14px;
  left: 0;
  right: 0;
  margin: auto;
}
@media (max-width: 768px) {
  .reserve-text-box::before {
    width: 21px;
    height: 22px;
    background: url(../img/common/ico_reserve-sp.svg) no-repeat center/contain;
  }
}
@media (max-width: 768px) {
  .reserve-text-box {
    padding-top: 12px;
  }
}

.reserve-text--en {
  font-size: 11px;
  font-family: "Sawarabi Mincho", serif;
}
@media (max-width: 768px) {
  .reserve-text--en {
    font-size: 9px;
  }
}

.reserve-text--jp {
  font-size: 17px;
  margin-top: -4px;
}
@media (max-width: 768px) {
  .reserve-text--jp {
    font-size: 13px;
    margin-top: -5px;
  }
}

.point-reserve-btn__text-main {
  display: flex;
  flex-direction: column;
  gap: 24px;
  transition: opacity 400ms ease, transform 1000ms cubic-bezier(0.2, 0.8, 0.2, 1);
  opacity: 1;
  transform: scale(1);
  transform-origin: center center;
}
@media (max-width: 768px) {
  .point-reserve-btn__text-main {
    gap: 19px;
  }
}

.footprint {
  width: 100%;
  position: absolute;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .footprint {
    width: 750px;
  }
}

.footprint.--1 {
  margin-right: -94vw;
  top: -247px;
  right: 50%;
  z-index: -1;
}
@media (max-width: 768px) {
  .footprint.--1 {
    margin-right: 0;
    top: -131px;
    left: 38%;
    right: auto;
  }
}

.footprint.--2 {
  margin-left: -709px;
  top: 325px;
  left: 50%;
}
@media (max-width: 768px) {
  .footprint.--2 {
    display: none;
  }
}

.footprint.--3 {
  margin-right: -1348px;
  top: 320px;
  right: 50%;
}
@media (max-width: 768px) {
  .footprint.--3 {
    display: none;
  }
}

.footprint.--4 {
  margin-left: -47.5vw;
  left: 50%;
  bottom: -1067px;
}
@media (max-width: 768px) {
  .footprint.--4 {
    width: 206px;
    margin-left: 0;
    left: -55px;
    bottom: -609px;
  }
}

.footprint.--5 {
  margin-left: -55vw;
  left: 50%;
  bottom: 71px;
}
@media (max-width: 768px) {
  .footprint.--5 {
    width: 200px;
    margin-left: 0;
    left: 32%;
    bottom: -79px;
    transform: rotate(-20deg);
  }
}

.footprint.--6 {
  margin-left: -61vw;
  top: -1352px;
  left: 49.5%;
}
@media (max-width: 768px) {
  .footprint.--6 {
    width: 202px;
    margin-left: 0;
    top: 107px;
    left: -18%;
    z-index: -1;
  }
}

/**********************************************************

第二階層共通

***********************************************************/
.page-lower .c-kv {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
}
.page-lower .c-kv .c-kv__img {
  width: 100vw;
}
.page-lower .c-kv.c-lowerKv {
  height: 300px;
}
@media (max-width: 768px) {
  .page-lower .c-kv.c-lowerKv {
    height: 260px;
  }
}
.page-lower .c-kv.c-lowerKv img {
  height: 100%;
}
.page-lower .c-kv__title {
  left: auto;
  display: block;
  width: 100%;
  max-width: 1160px;
  padding: 75px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
.page-lower .c-kv__title-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.page-lower .c-kv__title-en {
  font-size: clamp(38px, 38px + 8 * (100vw - 768px) / 512, 46px);
  font-weight: 500;
  font-family: "Sawarabi Mincho", serif;
  color: #ffffff;
  line-height: 1.2;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .page-lower .c-kv__title-en {
    font-size: 38px;
    line-height: 45.6px;
  }
}
.page-lower .c-kv__title-jp {
  font-size: clamp(16px, 16px + 4 * (100vw - 768px) / 512, 20px);
  font-weight: 600;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #ffffff;
  line-height: 1.4;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .page-lower .c-kv__title-jp {
    font-size: 16px;
    line-height: 36px;
    transform: translateX(0px) translateY(3px);
  }
}
.page-lower .c-section-title--lower {
  text-align: center;
  margin-top: 46px;
  margin-bottom: 0;
}
.page-lower .c-section-title {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.page-lower .c-section-title.--center {
  margin: 0 auto;
  align-items: center;
}
.page-lower .c-section-title.--text-color-white .c-section-title--en {
  color: #ffffff;
}
.page-lower .c-section-title.--text-color-white .c-section-title--jp {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #FFFFFF;
  background-clip: initial;
  color: #FFFFFF;
}
.page-lower .c-section-title--en {
  color: #345772;
  font-size: clamp(50px, 50px + 4 * (100vw - 768px) / 512, 54px);
  display: block;
}
@media (max-width: 768px) {
  .page-lower .c-section-title--en {
    font-size: 34px;
    line-height: 1.17;
    margin-bottom: 3px;
  }
}
.page-lower .c-section-title--jp {
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
  font-weight: 600;
  background: linear-gradient(to right, #3CA5FC, #44D5FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-lower .c-section-title--jp {
    font-size: 14px;
  }
}
.page-lower .voice-area {
  padding-top: 130px;
  overflow-x: clip;
}
@media (max-width: 768px) {
  .page-lower .voice-area {
    padding-top: 100px;
    padding-bottom: 45px;
  }
}

/**********************************************************

各メニューページ共通

***********************************************************/
.l-tourPage .l-section {
  padding: 120px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 120px;
}
@media (max-width: 768px) {
  .l-tourPage .l-section {
    padding: 80px 15px 80px;
  }
}
.l-tourPage .l-section.sec-lead {
  padding: 70px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 120px;
}
@media (max-width: 768px) {
  .l-tourPage .l-section.sec-lead {
    padding: 46px 15px 80px;
  }
}
.l-tourPage .l-section.--withWaveBefore {
  padding: 180px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 120px;
}
@media (max-width: 768px) {
  .l-tourPage .l-section.--withWaveBefore {
    padding: 95px 15px 80px;
  }
}
.l-tourPage .l-section.u-bg-wave-before {
  padding: 100px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 120px;
}
@media (max-width: 768px) {
  .l-tourPage .l-section.u-bg-wave-before {
    padding: 80px 15px 80px;
  }
}
.l-tourPage .c-kv__title .u-innerBox,
.l-tourPage .l-c-bread__list-area .u-innerBox {
  padding: 0 clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
@media (max-width: 768px) {
  .l-tourPage .c-kv__title .u-innerBox,
  .l-tourPage .l-c-bread__list-area .u-innerBox {
    padding-right: 0;
    padding-left: 0;
  }
}
.l-tourPage .c-kv {
  position: relative;
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
}
.l-tourPage .c-kv img {
  height: 100%;
}
@media (max-width: 768px) {
  .l-tourPage .c-kv {
    height: 460px;
  }
}
.l-tourPage .c-kv.c-lowerKv {
  height: 300px;
}
.l-tourPage .c-kv.c-lowerKv img {
  height: 100%;
}
.l-tourPage .c-kv .c-kv__img {
  width: 100vw;
}
.l-tourPage .c-kv .c-kv__title {
  position: absolute;
  top: 50%;
  left: auto;
  transform: translateY(-50%);
  text-align: left;
  z-index: 10;
  display: block;
  width: 100%;
  max-width: 1280px;
  padding: 75px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
.l-tourPage .c-kv .c-kv__title-text {
  display: flex;
  flex-direction: column;
  transform: translateX(0px) translateY(2px);
  gap: 15px;
}
.l-tourPage .c-kv .c-kv__title-en {
  font-size: clamp(38px, 38px + 8 * (100vw - 768px) / 512, 46px);
  font-weight: 500;
  font-family: "Sawarabi Mincho", serif;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .l-tourPage .c-kv .c-kv__title-en {
    font-size: 38px;
    line-height: 45.6px;
  }
}
.l-tourPage .c-kv .c-kv__title-jp {
  font-size: clamp(16px, 16px + 4 * (100vw - 768px) / 512, 20px);
  font-weight: 600;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #ffffff;
  line-height: 1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  .l-tourPage .c-kv .c-kv__title-jp {
    font-size: 16px;
    line-height: 36px;
  }
}
.l-tourPage .l-c-bread__list-area {
  max-width: 1280px;
  margin: auto;
  padding-top: 18px;
  padding-bottom: 18px;
}
.l-tourPage .c-section-title {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  z-index: 1;
}
.l-tourPage .c-section-title.--center {
  margin: 0 auto;
  align-items: center;
}
.l-tourPage .c-section-title.--text-color-white .c-section-title--en {
  color: #ffffff;
}
.l-tourPage .c-section-title.--text-color-white .c-section-title--jp {
  background: none;
  -webkit-background-clip: initial;
  -webkit-text-fill-color: #ffffff;
  background-clip: initial;
  color: #ffffff;
}
.l-tourPage .c-section-title--en {
  color: #345772;
  font-size: clamp(50px, 50px + 4 * (100vw - 768px) / 512, 54px);
  display: block;
}
@media (max-width: 768px) {
  .l-tourPage .c-section-title--en {
    font-size: 34px;
    line-height: 1.17;
    margin-bottom: 3px;
  }
}
.l-tourPage .c-section-title--jp {
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
  font-weight: 600;
  background: linear-gradient(to right, #3ca5fc, #44d5fc);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 2px auto 0;
}
@media (max-width: 768px) {
  .l-tourPage .c-section-title--jp {
    font-size: 14px;
  }
}
.l-tourPage .c-section-title--lower {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
.l-tourPage .c-section-title--lower.--insideBox {
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .l-tourPage .point-mark-wrap {
    gap: 1px;
  }
}
.l-tourPage .point-mark-box {
  background-color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  top: auto;
  right: 100%;
  bottom: calc(100% - 35px);
  left: auto;
  margin-right: 20px;
}
@media (max-width: 768px) {
  .l-tourPage .point-mark-box {
    left: 18px;
    top: -18px;
  }
}
.l-tourPage .point-mark--s {
  font-family: "Sawarabi Mincho", serif;
  font-size: 12px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .l-tourPage .point-mark--s {
    font-size: 10px;
  }
}
.l-tourPage .point-mark--l {
  font-family: "Sawarabi Mincho", serif;
  font-size: 40px;
  font-weight: 300;
}
@media (max-width: 768px) {
  .l-tourPage .point-mark--l {
    font-size: 35px;
  }
}
.l-tourPage .sec-btn {
  margin: auto;
  margin-top: 54px;
}
@media (max-width: 768px) {
  .l-tourPage .sec-btn {
    margin-bottom: 40px;
  }
}
.l-tourPage .sec-voices .top-voice-btn {
  display: none;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　lead
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-lead {
  position: relative;
  padding-top: 70px;
  padding-bottom: calc(293px + 3.90625vw);
  background-image: url("../img/page-UniBeach/bg-lead.jpg");
  background-size: cover;
  background-position: center;
}
.sec-lead::before {
  content: "";
  position: absolute;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.85) 70%, rgba(255, 255, 255, 0.7) 100%);
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-lead {
    padding-top: 46px;
    padding-bottom: calc(188px + 3.90625vw);
    background-image: url("../img/page-UniBeach/bg-lead-sp.jpg");
    background-position: center bottom -70px;
    background-repeat: no-repeat;
  }
  .sec-lead::before {
    content: "";
    position: absolute;
    top: auto;
    background: linear-gradient(to bottom, rgb(255, 255, 255) 30%, rgba(255, 255, 255, 0.85) 80%, rgba(255, 255, 255, 0.4) 100%);
  }
}
.sec-lead .leadArea {
  display: flex;
  flex-direction: row;
  gap: 30px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .sec-lead .leadArea {
    flex-direction: column;
    gap: 32px;
  }
}
.sec-lead .leadArea .c-ttl--lead {
  flex: 1;
  min-width: 300px;
  font-family: "Sawarabi Mincho", serif;
  font-size: clamp(30px, 30px + 8 * (100vw - 768px) / 512, 38px);
  line-height: 1.8421;
  text-align: left;
  margin: 0;
}
@media (max-width: 768px) {
  .sec-lead .leadArea .c-ttl--lead {
    font-size: clamp(26px, 26px + 2 * (100vw - 768px) / 512, 28px);
    line-height: 49px;
    min-width: auto;
  }
}
.sec-lead .leadArea .c-text--lead {
  flex: 2;
  max-width: 450px;
  margin-left: auto;
  margin-bottom: calc(173px + 3.90625vw);
}
@media (max-width: 768px) {
  .sec-lead .leadArea .c-text--lead {
    max-width: 100%;
    margin-left: 0;
    margin-bottom: calc(112px + 3.90625vw);
  }
}
.sec-lead .leadArea .c-text--lead p {
  font-size: 16px;
  font-weight: 300;
  line-height: 1.8;
  margin: 0;
}

.page-page-UniBeach .sec-lead {
  background-image: url("../img/page-UniBeach/bg-lead.jpg");
}
@media (max-width: 768px) {
  .page-page-UniBeach .sec-lead {
    background-image: url("../img/page-UniBeach/bg-lead-sp.jpg");
  }
}

.page-ClearKayak .sec-lead {
  background-image: url("../img/page-ClearKayak/bg-lead.jpg");
}
@media (max-width: 768px) {
  .page-ClearKayak .sec-lead {
    background-image: url("../img/page-ClearKayak/bg-lead-sp.jpg");
  }
}

.page-ClearSUP .sec-lead {
  background-image: url("../img/page-ClearSUP/bg-lead.jpg");
}
@media (max-width: 768px) {
  .page-ClearSUP .sec-lead {
    background-image: url("../img/page-ClearSUP/bg-lead-sp.jpg");
  }
}

.page-Sunset .sec-lead {
  background-image: url("../img/page-Sunset/bg-lead.jpg");
}
@media (max-width: 768px) {
  .page-Sunset .sec-lead {
    background-image: url("../img/page-Sunset/bg-lead-sp.jpg");
  }
}

.page-Starrysky .sec-lead {
  background-image: url("../img/page-Starrysky/bg-lead.jpg");
}
@media (max-width: 768px) {
  .page-Starrysky .sec-lead {
    background-image: url("../img/page-Starrysky/bg-lead-sp.jpg");
  }
}

.page-Miyakojima .sec-lead {
  background-image: url("../img/page-Miyakojima/bg-lead.jpg");
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-lead {
    background-image: url("../img/page-Miyakojima/bg-lead-sp.jpg");
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　activity
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-activity .l-inner {
  background-color: #f2f7fa;
  border-radius: 60px;
}
@media (max-width: 768px) {
  .sec-activity .l-inner {
    border-radius: 25px;
  }
}
.sec-activity .p-text-with-image-list {
  margin-top: 54px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 768px) {
  .sec-activity .p-text-with-image-list {
    margin-top: 55px;
  }
}
.sec-activity .p-text-with-image-item {
  display: flex;
  gap: 50px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .sec-activity .p-text-with-image-item {
    flex-direction: column;
    gap: 26px;
  }
}
.sec-activity .p-text-with-image-item__img-box {
  width: 50%;
  max-width: 480px;
  height: auto;
  max-height: 260px;
  border-radius: 25px;
  overflow: hidden;
  flex: 0 0 auto;
}
@media (max-width: 768px) {
  .sec-activity .p-text-with-image-item__img-box {
    width: 100%;
    max-width: none;
    border-radius: 20px;
    max-height: none;
  }
}
.sec-activity .p-text-with-image-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-activity .p-text-with-image-item__text-box {
  width: 100%;
  position: relative;
  padding-top: 0;
  flex: 1;
}
@media (max-width: 768px) {
  .sec-activity .p-text-with-image-item__text-box {
    padding-top: 0;
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}
.sec-activity .p-text-with-image-item__title {
  display: flex;
  align-items: center;
  font-size: clamp(20px, 20px + 6 * (100vw - 768px) / 512, 26px);
  line-height: 1.5;
  font-family: "Sawarabi Mincho", serif;
  color: #3ca5fc;
  position: relative;
  margin-top: 12px;
}
@media (max-width: 768px) {
  .sec-activity .p-text-with-image-item__title {
    text-align: left;
    padding-left: 0;
    margin: 0;
    font-size: 20px;
    letter-spacing: 2px;
  }
}
.sec-activity .ttl-with-attention {
  padding-top: 40px;
}
@media (max-width: 768px) {
  .sec-activity .ttl-with-attention {
    padding: 0;
  }
}
.sec-activity .ttl-attention {
  position: absolute;
  left: -28px;
  top: -17px;
}
@media (max-width: 768px) {
  .sec-activity .ttl-attention {
    display: none;
  }
}
.sec-activity .p-text-with-image-item__text {
  margin-top: 18px;
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .sec-activity .p-text-with-image-item__text {
    margin-top: 16px;
  }
}
.sec-activity .p-text-with-image-item__note {
  position: relative;
  margin-top: 32px;
  background-color: transparent;
  padding: 22px 22px 16px 27px;
  border-radius: 15px;
  border: 1.5px solid #d1d8dd;
}
@media (max-width: 768px) {
  .sec-activity .p-text-with-image-item__note {
    margin-top: 27px;
    padding: 18px 18px 15px 18px;
    border-radius: 10px;
  }
}
.sec-activity .p-list--lower {
  padding-left: 0;
  gap: 0;
}
.sec-activity .p-list--lower li::before {
  background-image: url(../img/common/ico_triangle-blue.svg);
  transform: rotate(-90deg);
  transform-origin: center;
  width: 8px;
  height: 10px;
  margin-right: 4px;
}
.sec-activity .p-list--lower__ttl {
  position: absolute;
  left: 21px;
  top: -11px;
  padding: 0 7px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.6;
  color: #3ca5fc;
  background-color: #f2f7fa;
}
@media (max-width: 768px) {
  .sec-activity .p-list--lower__ttl {
    left: 14px;
    top: -12px;
    letter-spacing: -2px;
  }
}
.sec-activity .p-list--lower__ttl::before {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  margin-right: 0.2em;
  background-image: url(../img/common/ico_dia.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transform: translateX(1px) translateY(1px);
}

.page-UniBeach .sec-activity {
  padding-top: 100px;
  padding-bottom: 119px;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-activity {
    padding-top: 82px;
    padding-bottom: 45px;
  }
}

.page-Starrysky .sec-activity .p-text-with-image-item__img-box {
  width: 100%;
  max-width: none;
  max-height: none;
}
.page-Starrysky .sec-activity .p-text-with-image-item {
  gap: 30px;
}
.page-Starrysky .sec-activity .p-text-with-image-item__title {
  justify-content: center;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　schedule
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-schedule {
  padding-bottom: 70px;
}
@media (max-width: 768px) {
  .sec-schedule {
    padding-top: 42px;
    padding-bottom: 70px;
  }
}
.sec-schedule .schedule__leadCont {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 51px;
}
@media (max-width: 768px) {
  .sec-schedule .schedule__leadCont {
    flex-direction: column;
    gap: 19px;
    margin-top: 46px;
  }
}
.sec-schedule .schedule__left-box {
  position: relative;
  margin-right: 53px;
  min-width: -moz-fit-content;
  min-width: fit-content;
}
@media (max-width: 768px) {
  .sec-schedule .schedule__left-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-right: 0;
  }
}
.sec-schedule .schedule__left-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -24.5px;
  transform: translateY(-50%);
  width: 12px;
  height: 17px;
  background-image: url("../img/common/ico_triangle-dark.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-schedule .schedule__left-box::after {
    display: none;
  }
}
.sec-schedule .schedule__title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  margin-bottom: 6px;
}
.sec-schedule .schedule__right-box {
  display: flex;
  gap: clamp(10px, 10px + 10 * (100vw - 768px) / 512, 20px);
  flex-wrap: wrap;
  transform: translateX(-8px);
}
@media (max-width: 768px) {
  .sec-schedule .schedule__right-box {
    justify-content: center;
    transform: none;
  }
}
.sec-schedule .schedule__time-item {
  background: #ffffff;
  border-radius: 10px;
  min-width: 150px;
  min-height: 60px;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 768px) {
  .sec-schedule .schedule__time-item {
    border-radius: 6px;
    min-height: 51px;
    width: calc((100% - 10px) / 2);
    min-width: auto;
  }
}
.sec-schedule .schedule__time-item span {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.sec-schedule .p-text-with-image-list {
  margin-top: 60px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(35px, 35px + 39 * (100vw - 768px) / 512, 74px) clamp(35px, 35px + 35 * (100vw - 768px) / 512, 70px);
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-list {
    justify-content: center;
    margin-top: 49px;
    gap: 77px;
  }
}
.sec-schedule .p-text-with-image-item {
  flex: 0 1 calc((100% - 2 * clamp(35px, 35px + 35 * (100vw - 768px) / 512, 70px)) / 3);
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item {
    flex: 0 1 auto;
    position: relative;
  }
}
@media (max-width: 425px) {
  .sec-schedule .p-text-with-image-item {
    flex: auto;
  }
}
.sec-schedule .p-text-with-image-item + .sec-schedule .p-text-with-image-item {
  margin-top: 0;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item:not(:first-child)::after {
    content: "";
    position: absolute;
    transform: translateY(-50%) rotate(90deg);
    left: 46%;
    top: -37px;
    width: 26.77px;
    height: 19px;
    background-image: url(../img/common/ico_arrow-black.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }
}
.sec-schedule .p-text-with-image-item__img-box {
  width: 100%;
  max-width: 300px;
  height: auto;
  max-height: 220px;
  position: relative;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item__img-box {
    width: 100%;
    max-width: none;
    max-height: none;
  }
}
.sec-schedule .p-text-with-image-item__img-box::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(-48.9984px, -3.828vw, -30.9984px);
  transform: translateY(-50%);
  width: 26.77px;
  height: 19px;
  background-image: url(../img/common/ico_arrow-black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item__img-box::after {
    display: none;
  }
}
.sec-schedule .p-text-with-image-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item__img {
    border-radius: 15px;
  }
}
.sec-schedule .p-text-with-image-item__text-box {
  width: 100%;
  position: relative;
  margin-top: 23px;
}
.sec-schedule .p-text-with-image-item__title {
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
  line-height: 1.5;
  font-family: "Sawarabi Mincho", serif;
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item__title {
    text-align: center;
    padding-left: 0;
    margin: 0 auto;
    font-size: 18px;
  }
}
.sec-schedule .p-text-with-image-item__title .schedule-time {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 37px;
  font-weight: 500;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item__title .schedule-time {
    font-size: 14px;
    line-height: 16px;
    text-align: left;
  }
}
.sec-schedule .p-text-with-image-item__title .schedule-step {
  display: block;
  font-size: 18px;
  line-height: 21px;
  font-weight: 500;
}
.sec-schedule .p-text-with-image-item__title .c-category--blue {
  font-size: 12px;
  padding: 2px 5px;
  transform: translateX(1px) translateY(0px);
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item__title .c-category--blue {
    padding: 4px 5px;
    transform: translateX(3px) translateY(0px);
  }
}
.sec-schedule .p-text-with-image-item__text {
  margin-top: 15px;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item__text {
    margin-top: 15px;
    line-height: 1.65;
  }
}
.sec-schedule .p-text-with-image-item__note {
  margin-top: 30px;
  background-color: #ffffff;
  padding: 22px 24px 21px;
  border-radius: 20px;
  position: relative;
}
@media (max-width: 768px) {
  .sec-schedule .p-text-with-image-item__note {
    padding: 22px 25px 22px;
    border-radius: 15px;
    margin-top: 25px;
    line-height: 23px;
  }
}
.sec-schedule .p-text-with-image-item__note::before {
  content: "";
  position: absolute;
  top: -14px;
  left: 20px;
  width: 17px;
  height: 15px;
  background-image: url(../img/common/ico-word-bubble.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}

@media (max-width: 768px) {
  .page-Sunset .sec-schedule .schedule__right-box {
    width: 100%;
    max-width: 375px;
  }
}
.page-Sunset .sec-schedule .schedule__time-item {
  min-height: 84px;
  font-size: 16px;
  font-weight: 300;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.page-Sunset .sec-schedule .schedule__time-item span {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 8px;
}

.page-Miyakojima .sec-schedule {
  padding-bottom: 70px;
}
.page-Miyakojima .sec-schedule .schedule__title {
  width: 100%;
  text-align: center;
  display: inline-block;
  position: relative;
  margin-top: 30px;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-schedule .schedule__title {
    margin-top: 70px;
  }
}
.page-Miyakojima .sec-schedule .schedule__title img {
  position: absolute;
  left: 50%;
  transform: translateX(120px) translateY(-70px);
  width: 104px;
  height: auto;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-schedule .schedule__title img {
    width: 189px;
    height: 19px;
    transform: translateX(-50%);
    top: -25px;
  }
}
.page-Miyakojima .sec-schedule .schedule__title .c-category--blue {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  width: 323px;
  height: 28px;
  text-align: left;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-schedule .schedule__title .c-category--blue {
    background-color: transparent;
    border: 1px solid #3ca5fc;
    border-radius: 5px;
    color: #3ca5fc;
    font-size: 14px;
    font-weight: 600;
    width: 100%;
    max-width: 289px;
    height: auto;
    text-align: center;
    transform: none;
  }
}
.page-Miyakojima .sec-schedule .schedule__leadCont {
  width: 100%;
  justify-content: center;
  margin-top: 24px;
  margin-bottom: 24px;
  overflow: visible;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-schedule .schedule__leadCont {
    flex-direction: row;
  }
}
.page-Miyakojima .sec-schedule .schedule__bottom-box {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  width: -moz-fit-content;
  width: fit-content;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  margin-left: -120px;
  padding-left: 120px;
  margin-right: -120px;
  padding-right: 120px;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-schedule .schedule__bottom-box {
    width: calc(100% + 60px);
    margin-left: -30px;
    padding-left: 30px;
    margin-right: -30px;
    padding-right: 30px;
  }
}
.page-Miyakojima .sec-schedule .schedule__bottom-box::-webkit-scrollbar {
  display: none;
}
.page-Miyakojima .sec-schedule .schedule__bottom-box {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.page-Miyakojima .sec-schedule .schedule__bottom-box .schedule__plan {
  flex: 0 0 auto;
}
.page-Miyakojima .sec-schedule .schedule__bottom-box .schedule__plan:first-child {
  margin-left: 0;
}
.page-Miyakojima .sec-schedule .schedule__bottom-box .schedule__plan:last-child {
  margin-right: 0;
}
.page-Miyakojima .sec-schedule .schedule__time-item {
  background: #ffffff;
  border-radius: 10px;
  padding: 10px 15px;
  min-width: 150px;
  min-height: 60px;
  font-size: 16px;
  font-weight: 300;
  display: flex;
  align-items: center;
  justify-content: center;
}
.page-Miyakojima .sec-schedule .schedule__time-item span {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 10px;
}
.page-Miyakojima .sec-schedule .schedule__plan {
  position: relative;
  width: 292px;
  height: 52px;
  border: 1px solid #3ca5fc;
  background-color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 22px 20px 0;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-schedule .schedule__plan {
    width: 238px;
    min-width: auto;
    height: 42px;
    border-radius: 8px;
    margin-right: 10px;
  }
}
.page-Miyakojima .sec-schedule .schedule__plan span {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #3ca5fc;
  margin-right: 23px;
}
.page-Miyakojima .sec-schedule .schedule__plan span::after {
  content: "";
  position: absolute;
  top: 4px;
  right: -23px;
  width: 16px;
  height: 16px;
  background-color: #3ca5fc;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("../img/common/ico_arrow-white-down.svg");
  background-size: 8px 4px;
  background-repeat: no-repeat;
  background-position: center;
}
.page-Miyakojima .sec-schedule .schedule__plan::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 10px solid #3ca5fc;
  display: none;
}
.page-Miyakojima .sec-schedule .schedule__plan:hover, .page-Miyakojima .sec-schedule .schedule__plan.active {
  background-color: #3ca5fc;
}
.page-Miyakojima .sec-schedule .schedule__plan:hover span, .page-Miyakojima .sec-schedule .schedule__plan.active span {
  color: #ffffff;
}
.page-Miyakojima .sec-schedule .schedule__plan:hover span::after, .page-Miyakojima .sec-schedule .schedule__plan.active span::after {
  background-color: #ffffff;
  background-image: url("../img/common/ico_arrow-blue-down.svg");
}
.page-Miyakojima .sec-schedule .schedule__plan:hover::before, .page-Miyakojima .sec-schedule .schedule__plan.active::before {
  display: block;
}
.page-Miyakojima .sec-schedule .schedule__planCont:not(.active) {
  display: none;
}
.page-Miyakojima .sec-schedule .schedule__planCont-info {
  background-color: #ffffff;
  border-radius: 15px;
  border: none;
  color: #1e3343;
  font-size: 18px;
  font-weight: 600;
  text-align: center;
  padding: 15px 15px;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-schedule .schedule__planCont-info {
    border-radius: 10px;
    font-size: 16px;
    padding: 15px 15px;
  }
}
.page-Miyakojima .sec-schedule .p-text-with-image-list {
  margin-top: 41px;
  margin-bottom: 48px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(35px, 35px + 39 * (100vw - 768px) / 512, 74px) clamp(35px, 35px + 35 * (100vw - 768px) / 512, 70px);
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-schedule .p-text-with-image-list {
    margin-top: 30px;
    gap: 70px;
  }
}
.page-Miyakojima .sec-schedule .p-text-with-image-item__text-box {
  margin-top: 12px;
}
.page-Miyakojima .sec-schedule .p-text-with-image-item:last-child .p-text-with-image-item__img-box::after {
  display: none;
}

.page-Miyakojima .c-text-wrap {
  background-image: url(../img/page-Miyakojima/bg_promise.png);
  background-position: right;
  background-size: cover;
  min-height: 295px;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 95px;
  padding-bottom: 60px;
  padding-left: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  position: relative;
}
@media (max-width: 768px) {
  .page-Miyakojima .c-text-wrap {
    height: 478px;
    background: #f2f7fa;
    padding-top: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-Miyakojima .c-text-wrap .c-text-wrap__ttl {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
  }
}

.page-Miyakojima .c-text-wrap::before {
  display: block;
  content: "";
  position: absolute;
  bottom: 15px;
  left: 0;
  width: 30px;
  height: 295px;
  background-image: url(../img/page-Miyakojima/bg_promise-before.png);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.page-Miyakojima .c-text-wrap::after {
  display: none;
}

@media (max-width: 768px) {
  .page-Miyakojima .c-text-wrap::before {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 240px;
    background-image: url(../img/page-Miyakojima/bg_promise-sp.png);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: top center;
    pointer-events: none;
    z-index: 0;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/*　seasonal style
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-seasonalStyle {
  padding-bottom: 0;
}
.sec-seasonalStyle .l-inner {
  background-color: #f0f5f8;
  border-radius: 36px;
}
@media (max-width: 768px) {
  .sec-seasonalStyle .l-inner {
    border-radius: 25px;
  }
}
.sec-seasonalStyle .p-list--lower li::before {
  width: 6px;
  height: 10px;
}
.sec-seasonalStyle .c-flex-container {
  width: 100%;
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px) clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px) clamp(60px, 60px + 20 * (100vw - 768px) / 512, 80px);
  margin-top: 58px;
  margin-bottom: 62px;
  background-color: #ffffff;
  border-radius: 30px;
  position: relative;
}
.sec-seasonalStyle .c-flex-container::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 18px;
  height: 18px;
  background-color: #f0f5f8;
  border-radius: 50%;
  box-shadow: 0 36px 0 0 #f0f5f8, 0 72px 0 0 #f0f5f8, 0 108px 0 0 #f0f5f8, 0 144px 0 0 #f0f5f8, 0 180px 0 0 #f0f5f8, 0 216px 0 0 #f0f5f8, 0 252px 0 0 #f0f5f8, 0 288px 0 0 #f0f5f8;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-flex-container::before {
    transform: rotate(90deg);
    right: 25px;
    left: auto;
  }
}
.sec-seasonalStyle .c-flex-container:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-flex-container {
    flex-direction: column;
    gap: 20px;
    padding: 60px 15px 20px;
  }
}
.sec-seasonalStyle .c-flex-container:nth-child(odd) {
  flex-direction: row-reverse;
  padding: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px) clamp(60px, 60px + 20 * (100vw - 768px) / 512, 80px) clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px) clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-flex-container:nth-child(odd) {
    flex-direction: column;
    padding: 60px 15px 20px;
  }
}
.sec-seasonalStyle .c-flex-container:nth-child(odd)::before {
  left: auto;
  right: 25px;
}
.sec-seasonalStyle .c-image-box {
  position: relative;
  min-width: 356px;
  width: 39%;
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-image-box {
    width: 100%;
    min-width: auto;
  }
}
.sec-seasonalStyle .c-image-box::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
  bottom: -77px;
  right: -26px;
  width: 154.22px;
  height: 193.38px;
  background-image: url(../img/page-UniBeach/bg-season01.svg);
  display: none;
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-image-box::after {
    display: block;
  }
}
.sec-seasonalStyle .c-flex-container:nth-of-type(1) .c-image-box::after {
  background-image: url(../img/page-UniBeach/bg-season01.svg);
  height: 50%;
}
.sec-seasonalStyle .c-flex-container:nth-of-type(2) .c-image-box::after {
  background-image: url(../img/page-UniBeach/bg-season02.svg);
  height: 50%;
}
.sec-seasonalStyle .c-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
}
.sec-seasonalStyle .c-image-item {
  width: 100%;
  height: auto;
  max-width: 175px;
  max-height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-image-item {
    max-width: none;
    max-height: none;
  }
}
.sec-seasonalStyle .c-text-box {
  width: 56%;
  max-width: 500px;
  position: relative;
}
.sec-seasonalStyle .c-text-box::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-text-box {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 425px) {
  .sec-seasonalStyle .c-text-box::after {
    opacity: 0.2;
  }
}
.sec-seasonalStyle .c-flex-container:nth-of-type(1) .c-text-box::after {
  bottom: -77px;
  right: -26px;
  width: 154.22px;
  height: 193.38px;
  background-image: url(../img/page-UniBeach/bg-season01.svg);
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-flex-container:nth-of-type(1) .c-text-box::after {
    display: none;
  }
}
.sec-seasonalStyle .c-flex-container:nth-of-type(2) .c-text-box::after {
  bottom: -77px;
  right: -28px;
  width: 113.17px;
  height: 178.72px;
  background-image: url(../img/page-UniBeach/bg-season02.svg);
}
@media (max-width: 768px) {
  .sec-seasonalStyle .c-flex-container:nth-of-type(2) .c-text-box::after {
    display: none;
  }
}
.sec-seasonalStyle .c-title-box {
  margin-top: 5px;
  margin-bottom: 27px;
}
.sec-seasonalStyle .c-content-box {
  line-height: 1.65;
  font-size: 16px;
  margin-bottom: 18px;
}
.sec-seasonalStyle .c-recommend-list {
  width: 100%;
  overflow: hidden;
}
.sec-seasonalStyle .c-list-title {
  position: relative;
  z-index: 1;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: -0.9px;
  margin-bottom: 10px;
  padding-left: 18px;
  padding-right: 20px;
  display: inline-block;
  background-color: #ffffff;
}
.sec-seasonalStyle .c-list-title::before {
  content: "";
  display: block;
  background: url(../img/common/ico_dia.svg) no-repeat center center/contain;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 14px;
  height: 14px;
}
.sec-seasonalStyle .c-list-title::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 768px;
  height: 1px;
  background-color: #dbdbdb;
}
.sec-seasonalStyle .c-list-items {
  gap: 0;
  list-style-type: none;
  padding-left: 0;
  position: relative;
  z-index: 2;
}
.sec-seasonalStyle .c-list-item {
  margin-bottom: 0;
  position: relative;
  padding-left: 0;
}
.sec-seasonalStyle .c-list-item::before {
  margin-right: 5px;
}

.page-Starrysky .sec-seasonalStyle .c-flex-container:nth-of-type(1) .c-text-box::after {
  display: none;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　style guide
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-styleGuide .l-inner {
  background-color: #f0f5f8;
  border-radius: 36px;
}
@media (max-width: 768px) {
  .sec-styleGuide .l-inner {
    border-radius: 25px;
  }
}
.sec-styleGuide .p-list--lower li::before {
  width: 6px;
  height: 10px;
}
.sec-styleGuide .c-flex-container {
  width: 100%;
  max-width: 1040px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px) clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px) clamp(60px, 60px + 20 * (100vw - 768px) / 512, 80px);
  margin-top: 58px;
  margin-bottom: 62px;
  background-color: #ffffff;
  border-radius: 30px;
  position: relative;
}
.sec-styleGuide .c-flex-container::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 25px;
  width: 18px;
  height: 18px;
  background-color: #f0f5f8;
  border-radius: 50%;
  box-shadow: 0 36px 0 0 #f0f5f8, 0 72px 0 0 #f0f5f8, 0 108px 0 0 #f0f5f8, 0 144px 0 0 #f0f5f8, 0 180px 0 0 #f0f5f8, 0 216px 0 0 #f0f5f8, 0 252px 0 0 #f0f5f8, 0 288px 0 0 #f0f5f8;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-styleGuide .c-flex-container::before {
    transform: rotate(90deg);
    right: 25px;
    left: auto;
  }
}
.sec-styleGuide .c-flex-container:last-child {
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .sec-styleGuide .c-flex-container {
    flex-direction: column;
    gap: 20px;
    padding: 60px 15px 20px;
  }
}
.sec-styleGuide .c-flex-container:nth-child(odd) {
  flex-direction: row-reverse;
  padding: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px) clamp(60px, 60px + 20 * (100vw - 768px) / 512, 80px) clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px) clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
@media (max-width: 768px) {
  .sec-styleGuide .c-flex-container:nth-child(odd) {
    flex-direction: column;
    padding: 60px 15px 20px;
  }
}
.sec-styleGuide .c-flex-container:nth-child(odd)::before {
  left: auto;
  right: 25px;
}
.sec-styleGuide .c-image-box {
  position: relative;
  min-width: 356px;
  width: 39%;
}
@media (max-width: 768px) {
  .sec-styleGuide .c-image-box {
    width: 100%;
    min-width: auto;
  }
}
.sec-styleGuide .c-image-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 6px;
}
.sec-styleGuide .c-image-item {
  width: 100%;
  height: auto;
  max-width: 175px;
  max-height: 135px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
}
@media (max-width: 768px) {
  .sec-styleGuide .c-image-item {
    max-width: none;
    max-height: none;
  }
}
.sec-styleGuide .c-text-box {
  width: 56%;
  max-width: 500px;
  position: relative;
}
.sec-styleGuide .c-text-box::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-styleGuide .c-text-box {
    width: 100%;
    max-width: none;
  }
}
@media (max-width: 425px) {
  .sec-styleGuide .c-text-box::after {
    opacity: 0.2;
  }
}
.sec-styleGuide .c-title-box {
  margin-top: 5px;
  margin-bottom: 27px;
}
.sec-styleGuide .c-content-box {
  line-height: 1.65;
  font-size: 16px;
  margin-bottom: 18px;
}
.sec-styleGuide .c-recommend-list {
  width: 100%;
  overflow: hidden;
}
.sec-styleGuide .c-list-title {
  position: relative;
  z-index: 1;
  font-size: 1.2em;
  font-weight: 600;
  letter-spacing: -0.9px;
  margin-bottom: 10px;
  padding-left: 18px;
  padding-right: 20px;
  display: inline-block;
  background-color: #ffffff;
}
.sec-styleGuide .c-list-title::before {
  content: "";
  display: block;
  background: url(../img/common/ico_dia.svg) no-repeat center center/contain;
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 14px;
  height: 14px;
}
.sec-styleGuide .c-list-title::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 100%;
  top: 50%;
  transform: translateY(-50%);
  width: 768px;
  height: 1px;
  background-color: #dbdbdb;
}
.sec-styleGuide .c-list-items {
  gap: 0;
  list-style-type: none;
  padding-left: 0;
  position: relative;
  z-index: 2;
}
.sec-styleGuide .c-list-item {
  margin-bottom: 0;
  position: relative;
  padding-left: 0;
}
.sec-styleGuide .c-list-item::before {
  margin-right: 5px;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　voices
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-voices {
  margin-bottom: -120px;
}
@media (max-width: 768px) {
  .sec-voices {
    margin-bottom: -80px;
  }
}
.sec-voices .l-inner {
  background-color: #f5f9fa;
  border-radius: 30px;
}
.sec-voices .voice-box {
  padding-bottom: 111px;
}
@media (max-width: 768px) {
  .sec-voices .voice-box {
    margin-bottom: 70px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　tourAbout
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-tourAbout {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media (max-width: 768px) {
  .sec-tourAbout {
    margin-top: 0;
    margin-bottom: 0;
  }
}
.sec-tourAbout .sec-tourAbout__detailCont {
  width: 60%;
  max-width: 605px;
  margin-top: 13px;
}
@media (max-width: 768px) {
  .sec-tourAbout .sec-tourAbout__detailCont {
    width: 100%;
    max-width: none;
    margin-top: 60px;
  }
}
.sec-tourAbout .menuCards {
  padding-bottom: 0;
}
@media (max-width: 768px) {
  .sec-tourAbout .menuCards {
    padding: 0 15px;
    justify-content: center;
  }
}
.sec-tourAbout .menuCards .p-text-with-image-item {
  gap: clamp(15px, 15px + 20 * (100vw - 768px) / 512, 35px);
  margin-bottom: 2px;
}
.sec-tourAbout .menuCards .p-text-with-image-item__title {
  font-size: 21px;
  text-align: left;
}
.sec-tourAbout .menuCards .p-text-with-image-item__title span {
  font-size: 16px;
}
.sec-tourAbout .menuCards .p-text-with-image-item__img-box {
  border-radius: 20px;
  max-width: 240px;
  max-height: 184px;
}
@media (max-width: 768px) {
  .sec-tourAbout .menuCards .p-text-with-image-item__img-box {
    width: 100%;
    max-width: none;
    max-height: none;
  }
}
.sec-tourAbout .menuCards .p-price-table {
  margin: 18px 0 14px;
}
.sec-tourAbout .menuCards .p-price-table table td {
  padding: 8.5px 0;
}
.sec-tourAbout .menuCards .p-price-table table td:first-child {
  font-size: 14px;
}
.sec-tourAbout .menuCards .p-price-table table td:first-child span {
  font-size: 10px;
}
.sec-tourAbout .menuCards .p-price-table table td:last-child {
  font-size: 14px;
}
.sec-tourAbout .menuCards .p-price-table__note {
  font-size: 12px;
  margin-top: 22px;
}
@media (max-width: 768px) {
  .sec-tourAbout .detaiList {
    padding: 0 15px;
  }
}
.sec-tourAbout .sec-tourAbout__calendarArea {
  width: 375px;
  height: -moz-fit-content;
  height: fit-content;
  min-height: 750px;
  margin-top: 64px;
  padding: 30px 15px 45px;
  background-color: #f0f7fc;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .sec-tourAbout .sec-tourAbout__calendarArea {
    width: 100%;
    padding: 40px 0 43px;
  }
}
.sec-tourAbout .sec-tourAbout__calendarTtl p {
  font-family: "Sawarabi Mincho", serif;
  font-size: 22px;
  text-align: center;
  margin-top: 0;
  margin-bottom: 12px;
}
.sec-tourAbout .sec-tourAbout__calendarBox .okabanCalendarSelectTit {
  font-size: 12px;
  font-weight: 600;
}
.sec-tourAbout .sec-tourAbout__calendarBox .okabanCalendar .selectArea {
  margin-bottom: 40px;
}
.sec-tourAbout .sec-tourAbout__calendarBox .okabanCalendar .btnGoForm {
  display: none;
}
.sec-tourAbout .sec-tourAbout__calendarBox .calendarCoursePrice {
  display: none;
}

.page-Miyakojima .sec-tourAbout .sec-tourAbout__calendarArea {
  min-height: auto;
  padding: 30px 30px 45px;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-tourAbout .sec-tourAbout__calendarArea {
    padding: 40px 15px 43px;
  }
}
.page-Miyakojima .sec-tourAbout .sec-tourAbout__calendarArea .c-text-ttl {
  font-family: "Sawarabi Mincho";
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  text-align: center;
}
.page-Miyakojima .sec-tourAbout .sec-tourAbout__calendarArea .c-text-txt {
  font-size: 14px;
  font-weight: 300;
  line-height: 22.4px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.page-Miyakojima .sec-tourAbout .sec-tourAbout__calendarArea .c-btn--dark {
  max-width: none;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　point
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-point {
  padding-bottom: 139px;
}
@media (max-width: 768px) {
  .sec-point {
    padding-top: 43px;
    padding-bottom: 74px;
  }
}
.sec-point .p-text-with-image-list {
  position: relative;
  margin-top: 70px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 60px;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-list {
    margin-top: 57px;
    gap: 50px;
  }
}
.sec-point .p-text-with-image-list::before {
  content: "";
  position: absolute;
  top: 125px;
  left: -243px;
  width: 606px;
  height: 463px;
  background-image: url("../img/common/img-point-before.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-list::before {
    width: 385px;
    height: 295px;
    top: 423px;
  }
}
.sec-point .p-text-with-image-list::after {
  content: "";
  position: absolute;
  bottom: -43px;
  right: -209px;
  width: 543px;
  height: 580px;
  background-image: url("../img/common/img-point-after.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -1;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-list::after {
    width: 380px;
    height: 406px;
    bottom: 230px;
    right: -263px;
  }
}
.sec-point .p-text-with-image-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
.sec-point .p-text-with-image-item + .sec-point .p-text-with-image-item {
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-item + .sec-point .p-text-with-image-item {
    margin-top: 58px;
  }
}
.sec-point .p-text-with-image-item:nth-child(even) {
  flex-direction: row-reverse;
}
.sec-point .p-text-with-image-item:nth-child(even) .p-text-with-image-item__text-box {
  margin-left: -2px;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-item:nth-child(even) .p-text-with-image-item__text-box {
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-item {
    flex-direction: column;
    gap: 0;
  }
  .sec-point .p-text-with-image-item:nth-child(even) {
    flex-direction: column;
  }
}
.sec-point .p-text-with-image-item__img-box {
  width: 45.2%;
  max-width: 470px;
  aspect-ratio: 470/335;
  border-radius: 25px;
  overflow: hidden;
}
.sec-point .p-text-with-image-item__img-box img {
  height: 100%;
  width: auto;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-item__img-box {
    width: 100%;
    border-radius: 20px;
  }
  .sec-point .p-text-with-image-item__img-box img {
    width: 100%;
    height: auto;
  }
}
.sec-point .p-text-with-image-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-point .p-text-with-image-item__text-box {
  display: block;
  width: 50%;
  max-width: 510px;
  position: relative;
  padding-top: 40px;
  padding-left: 63px;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-item__text-box {
    width: 100%;
    padding-top: 0;
    padding-left: 0;
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}
.sec-point .p-text-with-image-item__title {
  font-size: clamp(23px, 23px + 2 * (100vw - 768px) / 512, 25px);
  line-height: 1.5;
  font-family: "Sawarabi Mincho", serif;
  position: relative;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-item__title {
    text-align: left;
    padding-left: 45px;
    margin: 46px auto 0;
    font-size: 22px;
    line-height: 33px;
  }
}
.sec-point .p-text-with-image-item__text {
  margin-top: 24px;
  margin-bottom: 19px;
  line-height: 1.7;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-item__text {
    margin-top: 24px;
    line-height: 23.7px;
    margin-bottom: 0;
  }
}
.sec-point .p-text-with-image-item__note {
  font-size: 12px;
  font-weight: 300;
  padding-top: 22px;
  border-top: 1px solid #d0d9db;
}
@media (max-width: 768px) {
  .sec-point .p-text-with-image-item__note {
    padding-left: 10px;
  }
}
@media (max-width: 768px) {
  .sec-point .c-btn {
    width: -moz-fit-content;
    width: fit-content;
    margin: 24px auto 0;
  }
}

.page-Miyakojima .sec-point .p-text-with-image-list::before {
  width: 606px;
  height: 1426px;
  background-image: url(../img/common/img-point-add.svg);
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-point .p-text-with-image-list::before {
    width: 385px;
    height: 295px;
    background-image: url("../img/common/img-point-before.svg");
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　other
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-other {
  background-image: url("../img/common/bg_wave-other.png");
  background-repeat: repeat-x;
  background-position: left top;
  background-size: 2278px 407px;
}
@media (max-width: 768px) {
  .sec-other {
    background-image: url("../img/common/bg_wave-other-sp.png");
    background-size: 375px 303px;
  }
}
.sec-other .p-text-with-image-list {
  margin-top: 37px;
  margin-bottom: -5px;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px);
}
@media (max-width: 768px) {
  .sec-other .p-text-with-image-list {
    margin-top: 30px;
    margin-bottom: -10px;
    justify-content: space-between;
    gap: 15px;
  }
}
.sec-other .p-text-with-image-item {
  flex: 0 1 calc((100% - 2 * clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px)) / 3);
}
@media (max-width: 768px) {
  .sec-other .p-text-with-image-item {
    flex: 0 1 calc((100% - 15px) / 2);
  }
}
.sec-other .p-text-with-image-item + .sec-other .p-text-with-image-item {
  margin-top: 0;
}
.sec-other .p-text-with-image-item__img-box {
  width: 100%;
  max-width: 320px;
  height: auto;
  max-height: 210px;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec-other .p-text-with-image-item__img-box {
    width: 100%;
    max-width: none;
    border-radius: 15px;
  }
}
.sec-other .p-text-with-image-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-other .p-text-with-image-item__text-box {
  width: 100%;
  position: relative;
  padding-top: 18px;
}
@media (max-width: 768px) {
  .sec-other .p-text-with-image-item__text-box {
    padding-top: 12px;
  }
}
.sec-other .p-text-with-image-item__title {
  font-size: 20px;
  line-height: 1.5;
  font-family: "Sawarabi Mincho", serif;
  position: relative;
  align-items: center;
}
@media (max-width: 768px) {
  .sec-other .p-text-with-image-item__title {
    text-align: left;
    padding-left: 0;
    margin: 0 auto;
    font-size: 15px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　timeZone
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-timeZone {
  padding-top: 98px;
  padding-bottom: 133px;
}
.sec-timeZone .p-text-with-image-list {
  margin-top: 54px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: clamp(25px, 25px + 20 * (100vw - 768px) / 512, 45px) clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px);
}
@media (max-width: 768px) {
  .sec-timeZone .p-text-with-image-list {
    margin-top: 30px;
    gap: 20px;
  }
}
.sec-timeZone .p-text-with-image-item {
  flex: 0 1 calc((100% - 40px) / 2);
}
@media (max-width: 425px) {
  .sec-timeZone .p-text-with-image-item {
    flex: auto;
  }
}
.sec-timeZone .p-text-with-image-item + .sec-timeZone .p-text-with-image-item {
  margin-top: 0;
}
.sec-timeZone .p-text-with-image-item__img-box {
  width: 100%;
  max-width: 500px;
  height: auto;
  max-height: 260px;
  border-radius: 25px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .sec-timeZone .p-text-with-image-item__img-box {
    width: 100%;
    max-width: none;
    border-radius: 20px;
  }
}
.sec-timeZone .p-text-with-image-item__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-timeZone .p-text-with-image-item__text-box {
  width: 100%;
  position: relative;
  padding-top: 24px;
}
@media (max-width: 768px) {
  .sec-timeZone .p-text-with-image-item__text-box {
    padding-top: 12px;
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}
.sec-timeZone .p-text-with-image-item__title {
  font-size: clamp(24px, 24px + 2 * (100vw - 768px) / 512, 26px);
  line-height: 1.46;
  font-family: "Sawarabi Mincho", serif;
  color: #3ca5fc;
  text-align: center;
  position: relative;
  margin-top: 6px;
  margin-bottom: 18px;
}
@media (max-width: 768px) {
  .sec-timeZone .p-text-with-image-item__title {
    text-align: center;
    padding-left: 0;
    margin: 0 auto;
    font-size: clamp(20px, 2.8645833333vw, 22px);
  }
}
.sec-timeZone .p-text-with-image-item__text {
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
  line-height: 1.7;
  margin-top: 18px;
}
@media (max-width: 768px) {
  .sec-timeZone .p-text-with-image-item__text {
    margin-top: 10px;
    line-height: 1.65;
  }
}
.sec-timeZone .p-text-with-image-item__note {
  margin-top: 25px;
  background-color: #ffffff;
  padding: 25px;
  border-radius: 20px;
}
@media (max-width: 768px) {
  .sec-timeZone .p-text-with-image-item__note {
    padding: 25px;
    border-radius: 20px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　faq
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-faq {
  position: relative;
  padding-top: 0;
  padding-bottom: 111px;
}
.sec-faq::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 111px;
  background: linear-gradient(to top, #f0f8f8 0%, #ffffff 100%);
  z-index: 0;
}
.sec-faq .faqArea {
  margin-top: 31px;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　about
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-about {
  min-height: 1555px;
  position: relative;
  padding-top: 164px;
  background-image: url(../img/page-ClearKayak/bg-about.jpg);
  background-size: cover;
  background-position: center;
}
@media (max-width: 768px) {
  .sec-about {
    padding-top: 95px;
  }
}
.sec-about::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 1;
}
.sec-about .sec-about__topContent .p-text-with-image-item {
  position: relative;
  z-index: 2;
  align-items: flex-start;
  margin-bottom: 110px;
}
.sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__text-box {
  width: 43.3%;
  max-width: 450px;
}
@media (max-width: 768px) {
  .sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__text-box {
    width: 100%;
    max-width: none;
  }
}
.sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__title {
  font-family: "Sawarabi Mincho", serif;
  font-size: clamp(28px, 28px + 2 * (100vw - 768px) / 512, 30px);
  line-height: 1;
  padding: 12px 20px;
  background-color: #ffffff;
  border-radius: 10px;
  margin-top: 52px;
  margin-bottom: 44px;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 768px) {
  .sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__title {
    font-size: 24px;
    line-height: 1;
    padding: 9px 12px 10px 11px;
    margin: auto;
  }
}
.sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__text {
  font-size: 16px;
  font-weight: 300;
  line-height: 29.6px;
}
@media (max-width: 768px) {
  .sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__text {
    margin-top: 35px;
  }
}
.sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__img-box {
  width: 100%;
  max-width: 530px;
  height: auto;
  border-radius: 30px;
  overflow: hidden;
  margin: auto;
}
.sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__img-box img {
  width: 100%;
  height: auto;
  display: block;
}
.sec-about .sec-about__bottomContent {
  background-color: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 50px;
  padding-top: 73px;
  padding-bottom: 90px;
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .sec-about .sec-about__bottomContent {
    border-radius: 25px;
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.sec-about .sec-about__bottomContent .bottomContent__ttl {
  margin-top: 0;
  margin-bottom: 40px;
  text-align: center;
  font-family: "Sawarabi Mincho", serif;
}
.sec-about .sec-about__bottomContent .bottomContent__ttl .bottomContent__ttl--main {
  font-size: clamp(30px, 30px + 2 * (100vw - 768px) / 512, 32px);
  line-height: 1.84;
  margin-top: 0;
  margin-bottom: 13px;
  color: #3ca5fc;
  position: relative;
}
@media (max-width: 768px) {
  .sec-about .sec-about__bottomContent .bottomContent__ttl .bottomContent__ttl--main {
    font-size: 22px;
    line-height: 41px;
  }
}
.sec-about .sec-about__bottomContent .bottomContent__ttl .bottomContent__ttl--main-balloon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) translateX(-211px) translateY(-13px);
}
@media (max-width: 768px) {
  .sec-about .sec-about__bottomContent .bottomContent__ttl .bottomContent__ttl--main-balloon {
    top: -20px;
    left: 0;
    transform: none;
    width: 77px;
    height: 71px;
    display: inline;
  }
  .sec-about .sec-about__bottomContent .bottomContent__ttl .bottomContent__ttl--main-balloon img {
    width: 100%;
    height: auto;
  }
}
.sec-about .sec-about__bottomContent .bottomContent__ttl .bottomContent__ttl--sub {
  font-size: 22px;
  line-height: 1.32;
  margin: 0 auto;
}
.sec-about .sec-about__bottomContent .p-text-with-image-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(25px, 25px + 25 * (100vw - 768px) / 512, 50px);
}
@media (max-width: 768px) {
  .sec-about .sec-about__bottomContent .p-text-with-image-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 35px 13px;
  }
}
.sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item {
  text-align: center;
}
.sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__img-box {
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  margin-bottom: 17px;
}
@media (max-width: 768px) {
  .sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__img-box {
    border-radius: 15px;
    height: auto;
    margin-bottom: 15px;
  }
}
.sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__title {
  font-family: "Sawarabi Mincho", serif;
  font-size: 21px;
  line-height: 2.14;
  margin: 17px 0 6px;
  color: #1e3343;
}
@media (max-width: 768px) {
  .sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__title {
    font-size: 15px;
    line-height: 1;
    margin-top: 24px;
    margin-bottom: 13px;
  }
}
.sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__text {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.6;
  text-align: left;
  color: #1e3343;
}
@media (max-width: 768px) {
  .sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__text {
    font-size: 14px;
    line-height: 23.8px;
  }
}

.page-UniBeach .sec-about {
  background-image: url(../img/page-UniBeach/bg-about.jpg);
  background-position: right 0px bottom 1px;
  background-size: cover;
  padding-bottom: 391px;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about {
    padding-bottom: 199px;
  }
}
.page-UniBeach .sec-about::before {
  content: "";
  position: absolute;
  top: auto;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1574px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.8) 100%);
  z-index: 1;
}
.page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item {
  margin-bottom: 170px;
  position: relative;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item {
    margin-bottom: 54px;
  }
}
.page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item::after {
  content: "";
  position: absolute;
  bottom: -121px;
  left: 41.12vw;
  width: 64.54vw;
  max-width: 826.1px;
  height: 619.32px;
  background-image: url("../img/page-UniBeach/img_about-map.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom right;
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item::after {
    display: none;
  }
}
.page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__title {
  margin-top: 17px;
  margin-bottom: 43px;
  padding: 12px 15px 12px 20px;
  color: #0045c6;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__title {
    margin-top: 0;
    margin-bottom: 0;
    padding: 9px 12px 10px 11px;
  }
}
.page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__text {
  color: #ffffff;
  position: relative;
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__text {
    padding-top: 335px;
    margin-top: 0;
    font-size: 16px;
  }
  .page-UniBeach .sec-about .sec-about__topContent .p-text-with-image-item .p-text-with-image-item__text::before {
    content: "";
    display: block;
    position: absolute;
    top: -35px;
    bottom: auto;
    left: 50%;
    right: auto;
    width: 442px;
    max-width: none;
    height: 333.37px;
    background-image: url(../img/page-UniBeach/img_about-map.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    z-index: -1;
    pointer-events: none;
    transform: translateX(-50%) translateX(33px);
  }
}
.page-UniBeach .sec-about .sec-about__bottomContent {
  padding-top: 83px;
  padding-bottom: 75px;
  margin-bottom: 273px;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .sec-about__bottomContent {
    padding-top: 35px;
    padding-bottom: 50px;
    margin-bottom: 120px;
  }
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .sec-about__bottomContent .bottomContent__ttl .bottomContent__ttl--main {
    margin-top: 8px;
    padding-left: 56px;
  }
}
.page-UniBeach .sec-about .sec-about__bottomContent .p-text-with-image-list {
  margin-top: 51px;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .sec-about__bottomContent .p-text-with-image-list {
    margin-top: -6px;
    margin-bottom: 33px;
  }
}
.page-UniBeach .sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__text {
  font-size: 16px;
  line-height: 1.65;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .sec-about__bottomContent .p-text-with-image-list .p-text-with-image-item .p-text-with-image-item__text {
    font-size: 14px;
    line-height: 23.8px;
  }
}
.page-UniBeach .sec-about .c-text-wrap--column {
  padding: 31px 35px 33px 35px;
  border: 1px solid #bdc7d1;
  border-radius: 20px;
  height: -moz-fit-content;
  height: fit-content;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .c-text-wrap--column {
    padding: 16px 12px 24px 14px;
    border-radius: 15px;
  }
}
.page-UniBeach .sec-about .c-text-wrap--column .c-text-wrap__ttl {
  font-family: "Sawarabi Mincho", serif;
  color: #3ca5fc;
  font-size: 21px;
  line-height: 45px;
  text-align: center;
  border-bottom: 1px solid #e4edef;
  margin-bottom: 20px;
  padding-bottom: 19px;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .c-text-wrap--column .c-text-wrap__ttl {
    margin-bottom: 14px;
    padding-bottom: 9px;
  }
}
.page-UniBeach .sec-about .c-text-wrap--column .c-text-wrap__list {
  margin-bottom: 15px;
  font-size: 16px;
  text-align: left;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
@media (max-width: 768px) {
  .page-UniBeach .sec-about .c-text-wrap--column .c-text-wrap__list {
    margin-bottom: 8px;
  }
}
.page-UniBeach .sec-about .c-text-wrap--column .icon_diamond-blue::before {
  width: 11px;
  height: 11px;
  top: 9px;
}
.page-UniBeach .sec-about .c-text-wrap--column .c-text-wrap__txt {
  font-size: 16px;
  line-height: 1.6;
  text-align: left;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　about  宮古島ページ仕様
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-about--miyakojima {
  padding-top: 0;
  padding-bottom: 120px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima {
    padding-bottom: 60px;
  }
}
.sec-about--miyakojima .u-innerBox {
  border-radius: 60px;
  background: #f2f7fa;
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .u-innerBox {
    border-radius: 30px;
    padding-top: 60px;
    padding-bottom: 50px;
  }
}
.sec-about--miyakojima .c-section-title--lower {
  text-align: left;
  margin-top: 0;
}
.sec-about--miyakojima .sec-about__lead {
  margin-bottom: 74px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__lead {
    margin-bottom: 62px;
  }
}
.sec-about--miyakojima .sec-about__lead .p-flexBox {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(50px, 50px + 59 * (100vw - 768px) / 512, 109px);
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__lead .p-flexBox {
    gap: 30px;
  }
}
.sec-about--miyakojima .sec-about__lead .sec-about__lead-text {
  flex: 1;
  font-size: 15px;
  line-height: 24px;
  margin-top: 15px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__lead .sec-about__lead-text {
    font-size: 14px;
    line-height: 23.8px;
  }
}
.sec-about--miyakojima .sec-about__lead .sec-about__lead-list {
  background-color: #ffffff;
  border-radius: 20px;
  padding: 26px 30px;
  margin-top: 30px;
  margin-bottom: 32px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__lead .sec-about__lead-list {
    border-radius: 15px;
    padding: 20px 15px;
    margin-top: 26px;
    margin-bottom: 24px;
  }
}
.sec-about--miyakojima .sec-about__lead .sec-about__lead-list li {
  position: relative;
  font-size: 15px;
  line-height: 23px;
  margin-bottom: 6px;
  padding-left: 18px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__lead .sec-about__lead-list li {
    font-size: 14px;
    line-height: 23.8px;
    margin-bottom: 5px;
    padding-left: 17px;
  }
}
.sec-about--miyakojima .sec-about__lead .sec-about__lead-list li:last-child {
  margin-bottom: 0;
}
.sec-about--miyakojima .sec-about__lead .sec-about__lead-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-image: url("../img/common/ico_dia.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.sec-about--miyakojima .sec-about__activities {
  margin-bottom: 150px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__activities {
    margin-bottom: 67px;
  }
}
.sec-about--miyakojima .sec-about__activity-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 77px 35px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__activity-list {
    justify-content: space-around;
    gap: 0 20px;
  }
}
.sec-about--miyakojima .sec-about__activity-item {
  text-align: center;
}
.sec-about--miyakojima .sec-about__activity-figure {
  position: relative;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  overflow: visible;
  margin: 0 auto 16px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__activity-figure {
    width: 130px;
    height: 130px;
    margin-bottom: 74px;
  }
}
.sec-about--miyakojima .sec-about__activity-figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}
.sec-about--miyakojima .sec-about__activity-figure::before {
  content: "";
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 27px;
  height: 42px;
  background: url("../img/common/ico_pin.svg") no-repeat center/contain;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__activity-figure::before {
    width: 23px;
    height: 36px;
    top: -16px;
  }
}
.sec-about--miyakojima .sec-about__activity-figure figcaption {
  margin-top: 14px;
  font-size: 16px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__activity-figure figcaption {
    margin-top: 10px;
    font-size: 14px;
    letter-spacing: -0.9px;
    transform: translateX(-2px) translateY(0px);
  }
}
.sec-about--miyakojima .sec-about__swiperCont {
  padding: 53px 0 73px;
  background: #ffffff;
  border-radius: 40px;
  position: relative;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__swiperCont {
    border-radius: 25px;
    padding-top: 45px;
    padding-bottom: 50px;
  }
}
.sec-about--miyakojima .sec-about__swiperCont::before {
  content: "";
  position: absolute;
  top: -93px;
  left: 50%;
  transform: translateX(-50%);
  width: 47px;
  height: 52px;
  background-image: url("../img/common/ico_arrow-gray-down.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__swiperCont::before {
    width: 35px;
    height: 39px;
    top: -74px;
  }
}
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-slide {
  aspect-ratio: 920/450;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .tour-miyakojima-swiper .swiper-slide {
    aspect-ratio: 285/340;
  }
}
.sec-about--miyakojima .tour-miyakojima-swiper .miyakojima__album-img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.sec-about--miyakojima .sec-about__swiper-title {
  text-align: center;
  font-size: clamp(20px, 20px + 2 * (100vw - 768px) / 512, 22px);
  font-weight: 600;
  margin-bottom: 35px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__swiper-title {
    font-size: 18px;
    margin-bottom: 30px;
  }
}
.sec-about--miyakojima .sec-about__swiper-title span {
  color: #3ca5fc;
}
.sec-about--miyakojima .tour-miyakojima-swiper {
  padding-right: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  padding-left: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
@media (max-width: 768px) {
  .sec-about--miyakojima .tour-miyakojima-swiper {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.sec-about--miyakojima .swiper {
  overflow: visible;
}
.sec-about--miyakojima .sec-about__slide-content {
  position: relative;
}
.sec-about--miyakojima .miyakojima__album-img {
  width: 100%;
  border-radius: 30px;
  display: block;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .miyakojima__album-img {
    border-radius: 15px;
  }
}
.sec-about--miyakojima .card-tag {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffffff;
  border-radius: 5px;
  padding: 7px 10px;
  position: absolute;
  top: 41px;
  left: 71px;
  min-width: 48px;
  min-height: 134px;
  white-space: nowrap;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .card-tag {
    padding: 5px 6px;
    min-width: 30px;
    min-height: 83px;
    top: 19px;
    left: 20px;
  }
}
.sec-about--miyakojima .card-tag img {
  width: 27px;
  -o-object-fit: contain;
  object-fit: contain;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .card-tag img {
    width: 17px;
  }
}
.sec-about--miyakojima .sec-about__slide-info {
  position: absolute;
  left: 69px;
  bottom: 50px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__slide-info {
    left: 70px;
    top: 25px;
  }
}
.sec-about--miyakojima .sec-about__slide-info .miyakojima__album-txt {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  line-height: 28.8px;
  text-shadow: 0 0 3px rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__slide-info .miyakojima__album-txt {
    font-size: 14px;
    line-height: 22.4px;
  }
}
.sec-about--miyakojima .sec-about__thumbnail-list {
  position: absolute;
  right: 57px;
  bottom: -82px;
  display: flex;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__thumbnail-list {
    width: -moz-fit-content;
    width: fit-content;
    gap: 13px;
    transform: translateX(-50%);
    left: 50%;
    bottom: -65px;
  }
}
.sec-about--miyakojima .sec-about__thumbnail-item {
  text-align: center;
  position: relative;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__thumbnail-item {
    width: 80px;
  }
}
.sec-about--miyakojima .sec-about__thumbnail-item::before {
  content: "";
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  width: 23px;
  height: 36px;
  background: url(../img/common/ico_pin.svg) no-repeat center/contain;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__thumbnail-item::before {
    width: 18px;
    height: 28px;
    top: -16px;
  }
}
.sec-about--miyakojima .sec-about__thumbnail-item:not(:first-child) {
  margin-left: -24px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__thumbnail-item:not(:first-child) {
    margin-left: 0;
  }
}
.sec-about--miyakojima .sec-about__thumbnail-item img {
  width: 140px;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
  border: 5px solid #ffffff;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__thumbnail-item img {
    width: 80px;
    height: 80px;
    border: 3px solid #ffffff;
  }
}
.sec-about--miyakojima .sec-about__thumbnail-item figcaption {
  margin-top: 5px;
  font-size: 14px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .sec-about__thumbnail-item figcaption {
    font-size: 10px;
  }
}
.sec-about--miyakojima .sec-about__thumbnail-item {
  z-index: 1;
}
.sec-about--miyakojima .sec-about__thumbnail-item:nth-child(2) {
  z-index: 2;
}
.sec-about--miyakojima .sec-about__thumbnail-item:nth-child(3) {
  z-index: 3;
}
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-buttonBox {
  position: relative;
  display: block;
  width: 87px;
  height: 36px;
  margin-top: 29px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .tour-miyakojima-swiper .swiper-buttonBox {
    margin: 86px auto 0;
  }
}
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-prev,
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-next {
  position: relative;
  width: 36px;
  height: 36px;
  bottom: 0;
  left: 0;
  background-color: #ffffff;
  border: 1.5px solid #1e3343;
  border-radius: 50%;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 11;
}
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-prev::after,
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-next::after {
  content: "";
  width: 12px;
  height: 4px;
  background-image: url("../img/common/ico_btn_arrow.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: block;
}
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-prev:hover,
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-next:hover {
  opacity: 0.8;
}
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-prev {
  position: absolute;
  top: auto;
}
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-prev::after {
  transform: scaleX(-1);
}
.sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-next {
  position: absolute;
  top: auto;
  left: 50px;
}
@media (max-width: 768px) {
  .sec-about--miyakojima .tour-miyakojima-swiper .swiper-button-next {
    margin-top: 38px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/*　promise
――――――――――――――――――――――――――――――――――――――――――――――*/
.sec-promise {
  padding-top: 100px;
  padding-bottom: 110px;
}
@media (max-width: 768px) {
  .sec-promise {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.sec-promise .c-section-title--en {
  text-align: center;
}
.sec-promise .c-lead-ttl {
  font-family: "Sawarabi Mincho";
  font-size: 25px;
  font-weight: 400;
  line-height: 37.5px;
  text-align: center;
  margin-top: 60px;
}
@media (max-width: 768px) {
  .sec-promise .c-lead-ttl {
    font-size: 20px;
    line-height: 32px;
    margin-top: 48px;
  }
}
.sec-promise .c-lead-txt {
  font-size: 16px;
  font-weight: 300;
  line-height: 27.2px;
  margin-top: 40px;
}
@media (max-width: 768px) {
  .sec-promise .c-lead-txt {
    font-size: 14px;
    line-height: 23.8px;
    margin-top: 32px;
  }
}
.sec-promise .c-cardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4vw, 55px);
  margin-top: 58px;
  width: 100%;
  justify-content: center;
}
@media (max-width: 768px) {
  .sec-promise .c-cardList {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}
.sec-promise .c-cardList--flex-pc {
  display: flex;
  flex-wrap: wrap;
  gap: 73px clamp(40px, 4vw, 55px);
}
@media (max-width: 768px) {
  .sec-promise .c-cardList--flex-pc {
    display: grid;
    margin-bottom: 50px;
    gap: clamp(40px, 4vw, 55px);
  }
}
.sec-promise .c-cardList--flex-pc .c-cardList__item {
  width: calc(34.333333% - 3.5vw);
}
@media (max-width: 768px) {
  .sec-promise .c-cardList--flex-pc .c-cardList__item {
    width: 100%;
  }
}
.sec-promise .c-cardList__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.sec-promise .c-cardList__imgBoxWrapper {
  position: relative;
  padding-inline: 25px;
}
.sec-promise .c-cardList__imgBoxWrapper::before {
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 1;
  width: 72px;
  aspect-ratio: 72/117;
  background: url("../img/page-Miyakojima/ico_number01.png") no-repeat center/contain;
  content: "";
}
.sec-promise .c-cardList__item:nth-child(2) .c-cardList__imgBoxWrapper::before {
  background: url("../img/page-Miyakojima/ico_number02.png") no-repeat center/contain;
}
.sec-promise .c-cardList__item:nth-child(3) .c-cardList__imgBoxWrapper::before {
  background: url("../img/page-Miyakojima/ico_number03.png") no-repeat center/contain;
}
.sec-promise .c-cardList__item:nth-child(4) .c-cardList__imgBoxWrapper::before {
  background: url("../img/page-Miyakojima/ico_number04.png") no-repeat center/contain;
}
.sec-promise .c-cardList__item:nth-child(5) .c-cardList__imgBoxWrapper::before {
  background: url("../img/page-Miyakojima/ico_number05.png") no-repeat center/contain;
}
.sec-promise .c-cardList__imgBox {
  position: relative;
  display: block;
  max-width: 260px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
}
@media (max-width: 768px) {
  .sec-promise .c-cardList__imgBox {
    max-width: 230px;
    margin: 0 auto;
  }
}
.sec-promise .c-cardList__imgBox__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-promise .c-cardList__textBox {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.sec-promise .c-cardList__textBox__title {
  font-size: 22px;
  font-weight: 500;
  font-family: "Sawarabi Mincho";
  text-align: center;
  line-height: 1.43;
}
@media (max-width: 768px) {
  .sec-promise .c-cardList__textBox__title {
    font-size: 24px;
  }
}
.sec-promise .c-cardList__textBox__text {
  font-size: 14px;
  text-align: left;
  line-height: 1.6;
}
@media (max-width: 768px) {
  .sec-promise .c-cardList__textBox__text {
    font-size: 16px;
  }
}

.page-Miyakojima .sec-promise .sec-promise__contactBox {
  width: 100%;
  max-width: 375px;
  height: -moz-fit-content;
  height: fit-content;
  margin: 64px auto 0;
  padding: 30px 15px 45px;
  background-color: #f0f7fc;
  border-radius: 30px;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-promise .sec-promise__contactBox {
    border-radius: 25px;
  }
}
.page-Miyakojima .sec-promise .sec-promise__contactBox .c-text-ttl {
  font-family: "Sawarabi Mincho";
  font-size: 22px;
  font-weight: 400;
  line-height: 33px;
  text-align: center;
}
.page-Miyakojima .sec-promise .sec-promise__contactBox .c-text-txt {
  font-size: 14px;
  font-weight: 300;
  line-height: 22.4px;
  margin-top: 25px;
  margin-bottom: 25px;
}
.page-Miyakojima .sec-promise .sec-promise__contactBox .c-btn--dark {
  max-width: none;
}
.page-Miyakojima .sec-promise .c-cardList__textBox {
  text-align: center;
}
.page-Miyakojima .sec-promise .c-cardList__textBox__text {
  text-align: center;
}
.page-Miyakojima .sec-promise .c-cardList__imgBox {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-promise .c-cardList__imgBox {
    max-width: 230px;
  }
}
.page-Miyakojima .sec-promise .c-text-wrap__txt {
  font-size: 18px;
  font-weight: 300;
  line-height: 28.8px;
}
@media (max-width: 768px) {
  .page-Miyakojima .sec-promise .c-text-wrap__txt {
    font-size: 14px;
    line-height: 22.4px;
  }
}
.page-Miyakojima .sec-promise .c-text-wrap__txt span {
  font-size: 18px;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* お客様の声　共通
――――――――――――――――――――――――――――――――――――――――――――――*/
.page-voices--lower .sec-other .voicesSwiper {
  margin-top: 55px;
}
@media (max-width: 768px) {
  .page-voices--lower .sec-other .voicesSwiper {
    margin-top: 47px;
  }
}
@media (max-width: 768px) {
  .page-voices--lower .sec-other .swiper-slide {
    width: 242px;
    height: -moz-fit-content;
    height: fit-content;
  }
}
.page-voices--lower .sec-other .p-voice__img-box {
  border-radius: 20px;
}
@media (max-width: 768px) {
  .page-voices--lower .sec-other .p-voice__img-text-box {
    width: 34px;
    height: auto;
    min-height: 89px;
    top: 19px;
    left: 20px;
  }
}
.page-voices--lower .sec-other .p-voice__img-text-box img {
  width: 18px;
  -o-object-fit: contain;
     object-fit: contain;
}
.page-voices--lower .sec-other .p-voice__info p {
  font-size: 22px;
}
@media (max-width: 768px) {
  .page-voices--lower .sec-other .p-voice__info p {
    font-size: 20px;
  }
}
@media (max-width: 768px) {
  .page-voices--lower .sec-other .p-voice__text-box {
    margin-top: 21px;
  }
}
.page-voices--lower .sec-other .p-voice__star::before {
  width: 19px;
  height: 18px;
}
.page-voices--lower .sec-other .p-voice__btn {
  display: flex;
  justify-content: center;
}
@media (max-width: 768px) {
  .page-voices--lower .sec-other .top-voice-btn {
    margin-top: 80px;
  }
}
@media (max-width: 768px) {
  .page-voices--lower .sec-other .c-btn.c-btn--l .c-btn-text::before {
    right: -54%;
  }
}
.page-voices--lower .sec-lead {
  padding-bottom: calc(131px + 3.90625vw);
}
.page-voices--lower .sec-lead .leadArea {
  flex-direction: column;
  align-items: center;
}
.page-voices--lower .sec-lead .leadArea .c-ttl--lead,
.page-voices--lower .sec-lead .leadArea .c-text--lead {
  width: 100%;
  margin: auto;
  max-width: none;
  text-align: center;
}
@media (max-width: 768px) {
  .page-voices--lower .sec-lead .leadArea .c-ttl--lead,
  .page-voices--lower .sec-lead .leadArea .c-text--lead {
    text-align: left;
  }
}
.page-voices--lower .sec-lead .leadArea .c-ttl--lead {
  display: flex;
  justify-content: center;
}
.page-voices--lower .sec-lead .leadArea .c-text--highlight {
  font-size: 18px;
  font-weight: 600;
  margin-top: 50px;
  margin-bottom: 60px;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* お客様の声　一覧ページ
――――――――――――――――――――――――――――――――――――――――――――――*/
.voiceCards {
  padding-top: 38px;
}
@media (max-width: 768px) {
  .voiceCards {
    padding-top: 27px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* ページナビ
――――――――――――――――――――――――――――――――――――――――――――――*/
.voiceCard__nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 80px;
  margin-bottom: 30px;
}

.voiceCard__navBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #CDD2D6;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.voiceCard__navBtn.is-active {
  background-color: #3CA5FC;
}

.voiceCard__navEllipsis {
  color: #1E3343;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 2px;
  width: 17px;
}

.voiceCard__navBtn--prev,
.voiceCard__navBtn--next {
  position: relative;
  background-color: #CDD2D6;
  border: none;
  color: #FFFFFF;
  font-size: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.voiceCard__navBtn--prev::before,
.voiceCard__navBtn--next::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: solid #FFFFFF;
  border-width: 0 0 1px 1px;
  transform: rotate(45deg);
}

.voiceCard__navBtn--prev::before {
  left: 17px;
}

.voiceCard__navBtn--next::before {
  right: 17px;
  transform: rotate(-135deg);
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* お客様の声　詳細ページ
――――――――――――――――――――――――――――――――――――――――――――――*/
@media (max-width: 768px) {
  .page-voiceDetail .u-innerBox {
    padding-left: 0;
    padding-right: 0;
  }
  .page-voiceDetail .l-section.sec-other {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 100px;
  }
}

.voiceDetail {
  padding: 34px 0 137px;
}
@media (max-width: 768px) {
  .voiceDetail {
    padding: 23px 0 63px;
  }
}
.voiceDetail .voiceDetail__container {
  display: flex;
  gap: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  align-items: flex-start;
}
@media (max-width: 768px) {
  .voiceDetail .voiceDetail__container {
    flex-direction: column;
    gap: 0;
  }
}
.voiceDetail .voiceDetail__album {
  flex: 1;
  max-width: 360px;
  min-width: 0;
}
@media (max-width: 768px) {
  .voiceDetail .voiceDetail__album {
    margin: auto;
    max-width: 100vw;
  }
}
.voiceDetail .voiceDetail__album .voiceDetail-swiper {
  width: 100%;
  position: relative;
}
.voiceDetail .voiceDetail__album .voiceDetail-swiper .swiper-slide {
  text-align: center;
}
.voiceDetail .voiceDetail__album .voiceDetail-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
.voiceDetail .voiceDetail__album .voiceDetail-swiper .swiper-button-next,
.voiceDetail .voiceDetail__album .voiceDetail-swiper .swiper-button-prev {
  width: 26px;
  height: 26px;
  background: #E2E6EB;
  border-radius: 50%;
  margin-top: -22px;
}
.voiceDetail .voiceDetail__album .voiceDetail-swiper .swiper-button-next::after,
.voiceDetail .voiceDetail__album .voiceDetail-swiper .swiper-button-prev::after {
  font-size: 14px;
  color: #333;
}
.voiceDetail .voiceDetail__album .voiceDetail-swiper .swiper-pagination .swiper-pagination-bullet {
  width: 26px;
  height: 26px;
  background: url("../../assets/img/common/ico_dia_gray.svg") center center no-repeat;
  background-size: 26px 26px;
  opacity: 1;
  border: none;
}
.voiceDetail .voiceDetail__album .voiceDetail-swiper .swiper-pagination .swiper-pagination-bullet-active {
  background: url("../../assets/img/common/ico_dia.svg") center center no-repeat;
  background-size: 26px 26px;
}
.voiceDetail .voiceDetail__content {
  flex: 1;
  min-width: 0;
}
@media (max-width: 768px) {
  .voiceDetail .voiceDetail__content {
    padding-left: 30px;
    padding-right: 30px;
  }
}
.voiceDetail .voiceDetail__userInfo {
  padding-bottom: 35px;
  border-bottom: 1px solid #D8D8D8;
}
@media (max-width: 768px) {
  .voiceDetail .voiceDetail__userInfo {
    padding-bottom: 29px;
  }
}
.voiceDetail .userName {
  font-family: "Sawarabi Mincho";
  font-size: 26px;
  color: #1E3343;
  margin-top: -3px;
  margin-bottom: 16px;
  font-weight: 400;
}
@media (max-width: 768px) {
  .voiceDetail .userName {
    text-align: center;
    margin-top: 1px;
    margin-bottom: 22px;
  }
}
.voiceDetail .p-voice__tag-box {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: clamp(9px, 9px + 9 * (100vw - 768px) / 512, 18px);
}
@media (max-width: 768px) {
  .voiceDetail .p-voice__tag-box {
    gap: 14px 18px;
  }
}
.voiceDetail .userPoint {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 11px;
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  .voiceDetail .userPoint {
    justify-content: center;
    margin-bottom: 21px;
    gap: 10px;
    width: 100%;
    transform: translateX(-2px) translateY(0px);
  }
}
.voiceDetail .p-voice__star-box {
  gap: 6px;
}
@media (max-width: 768px) {
  .voiceDetail .p-voice__star-box {
    margin-top: 0px;
  }
}
.voiceDetail .p-voice__star-box .p-voice__star::before {
  width: 25px;
  height: 23px;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* お客様の声　サンクス
――――――――――――――――――――――――――――――――――――――――――――――*/
.voiceShare {
  padding: 188px 0 140px;
}
@media (max-width: 768px) {
  .voiceShare {
    padding: 55px 15px 99px;
  }
}
.voiceShare .voiceShare__container {
  background-color: #FFFFFF;
  border-radius: 35px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 74px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 80px;
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .voiceShare .voiceShare__container {
    border-radius: 20px;
    padding: 55px 15px 60px;
  }
}
.voiceShare__scrollArea {
  height: 100%;
  overflow: hidden;
}
.voiceShare__mainTitle {
  font-size: 20px;
  color: #1E3343;
  text-align: center;
  margin-bottom: 36px;
  font-weight: 600;
}
@media (max-width: 768px) {
  .voiceShare__mainTitle {
    font-size: 18px;
    line-height: 30.6px;
    margin-bottom: 30px;
  }
}
.voiceShare__subtitle {
  font-size: 12px;
  line-height: 21px;
  letter-spacing: 0.2px;
  font-weight: 600;
  color: #1E3343;
  text-align: center;
  margin-top: 36px;
}
@media (max-width: 768px) {
  .voiceShare__subtitle {
    margin-top: 30px;
  }
}
.voiceShare__contentBox {
  width: 100%;
  max-width: 800px;
  height: 325px;
  background-color: #FAFAFA;
  border: 1px solid #D0D7DE;
  border-radius: 20px;
  padding: 20px 24px;
  margin: 17px auto 49px;
  overflow-y: auto;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .voiceShare__contentBox {
    border-radius: 15px;
    padding: 19px 14px;
    margin: 16px auto 39px;
  }
}
.voiceShare__contentBox p {
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 1.51em;
}
.voiceShare__item {
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 1px solid #eaeaea;
}
.voiceShare__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.voiceShare__itemTitle {
  font-size: 18px;
  color: #1E3343;
  font-weight: 600;
  margin-bottom: 12px;
}
.voiceShare__itemText {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}
.voiceShare__buttonArea {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  min-height: 70px;
}
@media (max-width: 768px) {
  .voiceShare__buttonArea {
    flex-direction: column;
    align-items: center;
  }
}

.page-voice-form .sec-lead {
  background-image: url("../../assets/img/voices-form/bg-lead.jpg");
}

.page-voice-thanks .sec-lead {
  background-image: url("../../assets/img/voices-thanks/bg-lead.jpg");
  padding-bottom: calc(194px + 3.90625vw);
}
@media (max-width: 768px) {
  .page-voice-thanks .sec-lead {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.page-voice-thanks .staffImg {
  position: absolute;
  top: 100%;
  display: block;
  width: 46.875vw;
  max-width: 600px;
  min-width: 315px;
  aspect-ratio: 315/184;
  border-radius: 20px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .page-voice-thanks .staffImg {
    border-radius: 15px;
  }
}
.page-voice-thanks .staffImg img {
  -o-object-fit: contain;
     object-fit: contain;
  height: auto;
  width: 100%;
}
.page-voice-thanks .u-bg-wave-before::before {
  z-index: 0;
}
.page-voice-thanks .sec-lead .leadArea .c-ttl--lead {
  font-size: 30px;
  letter-spacing: 2px;
  margin-bottom: 7px;
  transform: translateX(3px) translateY(-3px);
}
@media (max-width: 768px) {
  .page-voice-thanks .sec-lead .leadArea .c-ttl--lead {
    font-size: 28px;
    letter-spacing: normal;
    transform: none;
    margin-top: 23px;
    margin-bottom: 0px;
    justify-content: flex-start;
  }
}
.page-voice-thanks .sec-lead .leadArea .c-text--highlight {
  font-size: 18px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 52px;
}
@media (max-width: 768px) {
  .page-voice-thanks .sec-lead .leadArea .c-text--highlight {
    line-height: 30px;
    margin-top: 27px;
    margin-bottom: 54px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* お客様の声　投稿フォーム
――――――――――――――――――――――――――――――――――――――――――――――*/
@media (max-width: 768px) {
  .page-voice-form .sec-lead .leadArea .c-ttl--lead {
    font-size: 26px;
  }
}

.aboutUs .page-lower .l-c-bread__list-area {
  padding-bottom: 15px;
}
.aboutUs .sec-lead.l-section {
  min-height: 100%;
  padding-bottom: 120px;
  padding-top: 105px;
  background-image: url(../../assets/img/aboutUs/bg-lead.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}
.aboutUs .sec-lead::before {
  background: none;
}
.aboutUs .leadArea {
  flex-direction: column;
  gap: 35px;
}
.aboutUs .sec-lead .leadArea .c-text--lead {
  margin-left: 0;
  margin-right: auto;
  margin-bottom: 0;
}
.aboutUs .c-text--lead-accent {
  display: block;
  font-size: 18px;
  font-weight: 600;
  margin: 24px 0;
}
.aboutUs .sec-value {
  padding-top: 120px;
  background-color: #F5F9FA;
}
@media screen and (max-width: 768px) {
  .aboutUs .sec-value {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.aboutUs .p-list--block {
  margin: 0 auto;
  padding: 0;
  background-color: #fff;
}
.aboutUs .p-list--block + .p-list--block {
  margin-top: 50px;
}
.aboutUs .p-list--block {
  padding: 54px 60px 45px;
}
@media screen and (max-width: 1100px) {
  .aboutUs .p-list--block {
    padding: 40px 28px 25px;
  }
}
.aboutUs .p-item__label {
  margin-top: -4px;
}
.aboutUs .p-list--block .p-item__label--en {
  display: block;
  margin-top: 5px;
  letter-spacing: 0.8px;
  white-space: nowrap;
}
@media screen and (max-width: 1100px) {
  .aboutUs .p-list--block .p-item__label--en {
    white-space: wrap;
  }
}
.aboutUs .p-list--lower li {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.6;
}
.aboutUs .p-list--block .p-item__details {
  padding-left: 49px;
}
@media screen and (max-width: 768px) {
  .aboutUs .p-list--block .p-item__details {
    padding-top: 8px;
    padding-left: 0;
    border-top: none;
  }
}
.aboutUs .p-list--block .p-detail-item {
  gap: 14px;
  padding: 13px 0;
}
@media screen and (max-width: 768px) {
  .aboutUs .p-list--block .p-detail-item {
    padding: 16px 0;
  }
}
.aboutUs .p-list--block .p-detail-item:first-child {
  padding-top: 0 !important;
}
.aboutUs .p-detail-text {
  font-size: 14px;
  font-weight: 600;
}
.aboutUs .sec-other.bg-none {
  background: none;
}
@media screen and (max-width: 768px) {
  .aboutUs .sec-other {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
@media screen and (max-width: 768px) {
  .aboutUs .sec-other .l-inner {
    padding: 0 15px;
  }
}
.aboutUs .sec-other .p-text-with-image-list {
  margin: 0 auto;
  max-width: 1040px;
}
.aboutUs .sec-other .p-text-with-image-item__title {
  font-size: 28px;
}
.aboutUs .sec-promise {
  padding-top: 100px;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .aboutUs .sec-promise {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}
.aboutUs .c-section-title--en {
  font-size: clamp(40px, 40px + 8 * (100vw - 768px) / 512, 48px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .aboutUs .c-section-title--en {
    font-size: 34px;
    line-height: 1.17;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 768px) {
  .aboutUs .c-section-title--jp {
    margin-top: 2px;
  }
}
.aboutUs .c-cardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(40px, 4vw, 55px);
  margin-top: 58px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .aboutUs .c-cardList {
    grid-template-columns: 1fr;
    padding: 0 15px;
  }
}
.aboutUs .c-cardList__item {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.aboutUs .c-cardList__imgBoxWrapper {
  position: relative;
  padding-inline: 25px;
}
.aboutUs .c-cardList__imgBoxWrapper::before {
  position: absolute;
  top: -30px;
  left: 0;
  z-index: 1;
  width: 72px;
  aspect-ratio: 72/117;
  background: url("/assets/img/aboutUs/ico_number01.png") no-repeat center/contain;
  content: "";
}
.aboutUs .c-cardList__item:nth-child(2) .c-cardList__imgBoxWrapper::before {
  background: url("/assets/img/aboutUs/ico_number02.png") no-repeat center/contain;
}
.aboutUs .c-cardList__item:nth-child(3) .c-cardList__imgBoxWrapper::before {
  background: url("/assets/img/aboutUs/ico_number03.png") no-repeat center/contain;
}
.aboutUs .c-cardList__imgBox {
  position: relative;
  display: block;
  max-width: 260px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .aboutUs .c-cardList__imgBox {
    max-width: 230px;
    margin: 0 auto;
  }
}
.aboutUs .c-cardList__imgBox__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.aboutUs .c-cardList__textBox {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
}
.aboutUs .c-cardList__textBox__title {
  font-size: 22px;
  font-weight: 500;
  font-family: "Sawarabi Mincho";
  text-align: center;
  line-height: 1.43;
}
@media screen and (max-width: 768px) {
  .aboutUs .c-cardList__textBox__title {
    font-size: 24px;
  }
}
.aboutUs .c-cardList__textBox__text {
  font-size: 14px;
  text-align: left;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .aboutUs .c-cardList__textBox__text {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .aboutUs .sec-other .p-text-with-image-list {
    flex-direction: column;
    flex-wrap: nowrap;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .aboutUs .p-text-with-image-item__title.c-link--insite {
    text-align: left;
  }
}
@media screen and (max-width: 768px) {
  .aboutUs .p-text-with-image-item__img-box {
    max-height: none;
  }
}
@media screen and (max-width: 768px) {
  .aboutUs .sec-other .p-text-with-image-item__text-box {
    padding-top: 25px;
  }
}

.staff .sec-staff.l-section {
  padding-top: 48px;
  padding-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .staff .sec-staff.l-section {
    padding: 30px 30px 15px;
  }
}
.staff .p-text-with-image-list {
  display: flex;
  flex-direction: column;
}
.staff .p-text-with-image-item {
  position: relative;
  z-index: 0;
  display: flex;
  align-items: flex-start;
  gap: 63px;
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .staff .p-text-with-image-item {
    flex-direction: column;
    gap: 30px;
    padding: 60px 0;
  }
}
.staff .p-text-with-image-item.bg-gray::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  width: 100vw;
  background-color: #FAFAFA;
  content: "";
}
.staff .p-text-with-image-item:first-child {
  padding-top: 5px;
}
.staff .p-text-with-image-item__img-box {
  width: 38.5%;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .staff .p-text-with-image-item__img-box {
    width: 100%;
  }
}
.staff .p-text-with-image-item__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.staff .p-text-with-image-item__text-box {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  width: 55.5%;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .staff .p-text-with-image-item__text-box {
    width: 100%;
    padding-left: 0;
  }
}
.staff .p-text-with-image-item__text-box__nameBox {
  margin-top: -3px;
  width: 100%;
  font-family: "Sawarabi Mincho";
}
.staff .p-text-with-image-item__text-box__position {
  width: -moz-fit-content;
  width: fit-content;
  font-size: 16px;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 600;
  background: linear-gradient(to right, #3CA5FC, #44D5FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}
.staff .p-text-with-image-item__text-box__name {
  display: flex;
  gap: 13px;
  align-items: flex-end;
  margin-top: 11px;
  font-size: 28px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .staff .p-text-with-image-item__text-box__name {
    font-size: clamp(23px, 3.125vw, 28px);
  }
}
.staff .p-text-with-image-item__text-box__name.--kana {
  font-size: 14px;
}
.staff .p-text-with-image-item__text-box__name-underLine {
  display: block;
  position: relative;
  margin-top: 31px;
  width: 100%;
  height: 4px;
  border-radius: 3px;
  background-color: #E4EDEF;
}
@media screen and (max-width: 768px) {
  .staff .p-text-with-image-item__text-box__name-underLine {
    margin-top: 20px;
  }
}
.staff .p-text-with-image-item__text-box__name-underLine::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 60px;
  height: 100%;
  border-radius: 5px;
  background: linear-gradient(to right, #3CA5FC, #44D5FC);
  content: "";
}
.staff .p-text-with-image-item__text {
  margin-top: 34px;
  font-size: 16px;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .staff .p-text-with-image-item__text {
    margin-top: 23px;
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}
.staff .p-text-with-image-item__text.--comment {
  position: relative;
  margin-top: 32px;
  padding: 25px 30px 26px;
  width: 100%;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #fff;
  border-radius: 15px;
  background: linear-gradient(to right, #3CA5FC, #44D5FC);
}
@media screen and (max-width: 768px) {
  .staff .p-text-with-image-item__text.--comment {
    margin-top: 28px;
    padding: 20px 25px 21px;
    line-height: 1.5;
  }
}
.staff .p-text-with-image-item__text.--comment::before {
  position: absolute;
  bottom: 11px;
  left: -17px;
  width: 19px;
  height: 21px;
  background: url(../img/staff/bg_comment.png) no-repeat center/contain;
  content: "";
}
@media screen and (max-width: 768px) {
  .staff .p-text-with-image-item__text.--comment::before {
    bottom: auto;
    top: -15px;
    left: 24px;
    transform: rotate(90deg);
  }
}

.company .sec-lead.l-section {
  min-height: 100%;
  padding-bottom: 98px;
  padding-top: 55px;
  background-image: url(../../assets/img/company/bg-lead.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .company .sec-lead.l-section {
    padding-top: 22px;
    padding-bottom: 60px;
  }
}
.company .sec-lead.l-section::after {
  position: absolute;
  bottom: 0;
  right: clamp(-15px, -15px + 195 * (100vw - 768px) / 512, 180px);
  z-index: 1;
  width: 340px;
  aspect-ratio: 340/470;
  background: url(../../assets/img/company/bg-lead-ceo.png) no-repeat center/contain;
  content: "";
}
@media screen and (max-width: 768px) {
  .company .sec-lead.l-section::after {
    right: 15px;
    width: 172px;
    aspect-ratio: 172/238;
    background: url(../../assets/img/company/bg-lead-ceo-sp.png) no-repeat center/contain;
  }
}
.company .sec-lead .leadArea {
  flex-direction: column;
  gap: 3px;
  padding: 0 clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 0;
}
@media screen and (max-width: 768px) {
  .company .sec-lead .leadArea {
    padding: 0 15px 0;
    gap: 0;
  }
}
.company .sec-lead .leadArea .c-ttl--lead {
  font-size: clamp(40px, 40px + 8 * (100vw - 768px) / 512, 48px);
  line-height: 1.5;
  color: #345772;
}
@media screen and (max-width: 768px) {
  .company .sec-lead .leadArea .c-ttl--lead {
    font-size: 34px;
    line-height: 1.45;
  }
}
.company .sec-lead .leadArea .c-text--lead {
  margin-top: 45px;
  margin-left: 0;
  margin-right: auto;
  max-width: none;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .company .sec-lead .leadArea .c-text--lead {
    margin-top: 28px;
  }
}
.company .sec-lead .leadArea .c-text--lead p {
  line-height: 1.87;
}
@media screen and (max-width: 768px) {
  .company .sec-lead .leadArea .c-text--lead p {
    font-size: 14px;
  }
}
.company .c-text--gradation-blue {
  font-size: 18px;
  font-weight: 600;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}
@media screen and (max-width: 768px) {
  .company .c-text--gradation-blue {
    font-size: 14px;
  }
}
.company .c-text--lead-accent {
  display: block;
  font-size: 22px;
  margin-top: 11px;
}
@media screen and (max-width: 768px) {
  .company .c-text--lead-accent {
    font-size: 18px;
    line-height: 1.6;
    margin-top: 16px;
  }
}
.company .c-text--lead__nameBox {
  display: flex;
  flex-direction: column;
  gap: 9px;
  align-items: flex-start;
  margin-top: 32px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .company .c-text--lead__nameBox {
    gap: 3px;
    margin-top: 47px;
  }
}
.company .sec-lead .leadArea .c-text--lead .c-text--lead__nameBox-position {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .company .sec-lead .leadArea .c-text--lead .c-text--lead__nameBox-position {
    font-size: 12px;
  }
}
.company .sec-lead .leadArea .c-text--lead .c-text--lead__nameBox-name {
  display: flex;
  gap: 16px;
  font-size: 20px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .company .sec-lead .leadArea .c-text--lead .c-text--lead__nameBox-name {
    flex-direction: column;
    gap: 14px;
    font-size: 16px;
  }
}
.company .sec-lead .leadArea .c-text--lead .c-text--lead__nameBox-name.--en {
  font-size: 12px;
  color: #969FA5;
  align-self: flex-end;
}
@media screen and (max-width: 768px) {
  .company .sec-lead .leadArea .c-text--lead .c-text--lead__nameBox-name.--en {
    font-size: 10px;
  }
}
.company .l-section.sec-value.u-bg-gray {
  padding-top: 60px;
  padding-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .company .l-section.sec-value.u-bg-gray {
    padding: 45px 15px 80px;
  }
}
@media screen and (max-width: 768px) {
  .company .p-listWrapper {
    padding-inline: 15px;
  }
}
.company .p-list {
  padding-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .company .p-list {
    margin-top: 11px;
  }
}
@media screen and (max-width: 768px) {
  .company .p-item {
    gap: 0;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .p-item {
    gap: 18px;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .p-item__label {
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .p-item__details {
    gap: 1px;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .p-detail-item {
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .p-list .p-detail-title {
    text-indent: -1.25em;
    padding-left: 1.25em;
    line-height: 1.75;
  }
}
.company .p-detail-title.insta {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 19px;
  text-decoration: underline;
}
.company .p-detail-title.insta::after {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background: url(../../assets/img/company/ico-blank.svg) no-repeat center/contain;
  content: "";
}
.company .p-list--block {
  margin: 60px auto 0;
}
@media screen and (max-width: 768px) {
  .company .p-list--block {
    margin: 35px auto 0;
    padding: 38px 28px 25px 29px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .p-list {
    padding-bottom: 45px;
  }
}
@media screen and (max-width: 768px) {
  .company .p-list--block .p-item__details {
    padding-top: 8px;
    border-top: none;
  }
}
@media screen and (max-width: 768px) {
  .company .p-list--block .p-detail-item {
    gap: 7px;
    padding: 16px 0;
  }
}
@media screen and (max-width: 768px) {
  .company .p-list--block .p-detail-title {
    display: inline-flex;
    align-items: flex-start;
    line-height: 1.65;
  }
}
@media screen and (max-width: 768px) {
  .company .p-list--block .p-detail-title::before {
    margin-top: 3px;
  }
}
@media screen and (max-width: 768px) {
  .company .p-list--block.history .p-detail-title {
    display: inline-flex;
    align-items: flex-start;
    line-height: 1.6;
    white-space: nowrap;
  }
}
.company .p-detail-note {
  padding-left: 1.5em;
}
.company .p-list--block.history .p-detail-title__history {
  margin-left: 32px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .company .p-list--block.history .p-detail-title__history {
    margin-left: 28px;
    white-space: normal;
  }
}
.company .sec-job-description .l-inner {
  padding: 0 clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 0;
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .l-inner {
    padding: 0;
  }
}
@media screen and (min-width: 769px) {
  .company .p-item__label {
    flex: 0 0 214px;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .p-list--block .p-item__label--en {
    display: block;
    margin-top: 15px;
  }
}
.company .c-ttl-text {
  text-align: center;
  margin-top: 46px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .company .c-ttl-text {
    margin-top: 5px;
    text-align: center;
  }
}
.company .c-section-title--en {
  font-size: clamp(40px, 40px + 8 * (100vw - 768px) / 512, 48px);
}
@media screen and (max-width: 768px) {
  .company .c-section-title--en {
    font-size: 34px !important;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-job-description .c-section-title--en {
    font-size: 28px;
  }
}
.company .c-section-title--jp {
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
  font-weight: 600;
  background: linear-gradient(to right, #3CA5FC, #44D5FC);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 1.5px auto 0;
}
@media screen and (max-width: 768px) {
  .company .c-section-title--jp {
    margin-top: 2px;
    font-size: 14px;
  }
}
.company .sec-recruit.l-section {
  padding-top: 120px;
  padding-bottom: 150px;
  background: linear-gradient(to bottom, #fff 0%, #F4F9FA 100%);
}
@media screen and (max-width: 768px) {
  .company .sec-recruit.l-section {
    padding: 60px 30px 95px;
  }
}
.company .recruitBox {
  display: flex;
  gap: clamp(20px, 5vw, 60px);
}
@media screen and (max-width: 768px) {
  .company .recruitBox {
    flex-direction: column;
    gap: 37px;
    margin-top: 20px;
  }
}
.company .recruitTextBox {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex: 1 1 48%;
  min-width: 280px;
}
@media screen and (max-width: 768px) {
  .company .recruitTextBox {
    order: 2;
  }
}
.company .page-lower .c-section-title--en {
  margin-top: 43px;
  color: #345772;
}
@media screen and (max-width: 768px) {
  .company .page-lower .c-section-title--en {
    margin-top: 0;
    margin-bottom: 3px;
    line-height: 1.17;
  }
}
.company .recruitTextBox__accent {
  font-size: 22px;
  font-weight: 600;
  color: #3CA5FC;
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .company .recruitTextBox__accent {
    margin-top: 21px;
    font-size: 18px;
  }
}
.company .recruitTextBox__text {
  margin-top: 29px;
  font-size: 16px;
  line-height: 1.65;
}
@media screen and (max-width: 768px) {
  .company .recruitTextBox__text {
    margin-top: 20px;
    font-size: 14px;
    line-height: 1.87;
  }
}
@media screen and (max-width: 768px) {
  .company .c-btnBox {
    margin: 0 auto;
  }
}
.company .recruitTextBox .c-btn {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .company .recruitTextBox .c-btn {
    margin-top: 47px;
  }
}
.company .recruitImgBox {
  flex: 0 0 650px;
  max-width: 650px;
  margin-top: 27px;
  margin-right: -120px;
  border-radius: 40px 0 0 40px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .company .recruitImgBox {
    flex: 1 1 100%;
    max-width: none;
    margin-top: 0;
    margin-right: 0;
    border-radius: 20px;
    order: 1;
  }
}
.company .recruitImgBox__img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.company .sec-job-description {
  padding-inline: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
@media screen and (max-width: 768px) {
  .company .sec-job-description {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.company .sec-lastMessage.l-section {
  position: relative;
  background-color: #fff;
  margin-bottom: 115px;
  padding-bottom: 90px;
}
@media screen and (max-width: 768px) {
  .company .l-section.sec-lastMessage {
    margin-bottom: 60px;
    padding-top: 62px;
    padding-bottom: 60px;
  }
}
.company .sec-lastMessage.l-section::before {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  width: 100%;
  max-width: 1280px;
  height: 100%;
  background: url(../../assets/img/company/bg-end.jpg) no-repeat center/cover;
  content: "";
}
@media screen and (max-width: 768px) {
  .company .sec-lastMessage.l-section::before {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .company .sec-lastMessage.l-section::after {
    display: block;
    width: 100vw;
    margin-top: -21px;
    margin-left: calc(50% - 50vw);
    aspect-ratio: 375/298;
    background: url(../../assets/img/company/bg-end-sp.jpg) no-repeat center/cover;
    content: "";
  }
}
.company .sec-lastMessage .leadArea {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .company .sec-lastMessage .leadArea {
    padding: 0 15px;
  }
}
.company .sec-lastMessage .leadArea .c-ttl--lead {
  margin-top: 32px;
  font-size: 36px;
  font-family: "Sawarabi Mincho", serif;
  text-align: left;
  line-height: 1;
  color: #1E3343;
}
@media screen and (max-width: 768px) {
  .company .sec-lastMessage .leadArea .c-ttl--lead {
    margin-top: 0;
    margin-left: 3px;
    font-size: 34px;
  }
}
.company .sec-lastMessage .leadArea .c-text--gradation-blue {
  margin-top: 12px;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .company .sec-lastMessage .leadArea .c-text--gradation-blue {
    margin-top: 8px;
    margin-left: 3px;
  }
}
.company .sec-lastMessage .leadArea .c-text--lead {
  margin-top: 28px;
  font-size: 18px;
  line-height: 1.9;
}
@media screen and (max-width: 768px) {
  .company .sec-lastMessage .leadArea .c-text--lead {
    font-size: 16px;
    line-height: 1.875;
    margin-top: 24px;
  }
}

.sub.contact .footer-reserve-area {
  display: none;
}

.contactFrom {
  padding-top: 53px;
  padding-bottom: 183px;
}
@media (max-width: 768px) {
  .contactFrom {
    padding-top: 40px;
    padding-bottom: 80px;
  }
}

.contactFrom__leadTxt {
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
  line-height: 1.6;
}

.contactFrom__container {
  background-color: #F5F9FA;
  border-radius: 40px;
  width: 100%;
  padding: 73px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 80px;
  margin-top: 54px;
  box-sizing: border-box;
}
@media (max-width: 768px) {
  .contactFrom__container {
    padding: 60px 15px;
    border-radius: 25px;
  }
}

.contactFrom__ttl {
  font-size: clamp(28px, 28px + 4 * (100vw - 768px) / 512, 32px);
  font-weight: 400;
  line-height: 1.84375;
  font-family: "Sawarabi Mincho", serif;
  margin-top: 0;
  margin-bottom: 43px;
}

.c-form--contact .c-form__group {
  display: flex;
  flex-direction: row;
  gap: 50px;
  align-content: center;
  align-items: center;
  margin-bottom: 34px;
  padding-bottom: 33px;
  border-bottom: 1px solid #B9CED5;
}
@media (max-width: 768px) {
  .c-form--contact .c-form__group {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 28px;
  }
}
.c-form--contact .c-form__group:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: none;
}
.c-form--contact .c-form__group input, .c-form--contact .c-form__group textarea {
  width: 100%;
}
.c-form--contact .c-form__ttl {
  display: block;
  text-align: right;
  min-width: 177px;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
@media (max-width: 768px) {
  .c-form--contact .c-form__ttl {
    text-align: left;
  }
}
.c-form--contact .c-form__ttl .c-category--required {
  margin-left: 15px;
}
.c-form--contact .c-form__input, .c-form--contact .c-form__textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #BDC7D1;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
  background-color: #FFFFFF;
}
.c-form--contact .c-form__input:focus, .c-form--contact .c-form__textarea:focus {
  outline: none;
  border-color: #3CA5FC;
  box-shadow: 0 0 0 2px rgba(60, 165, 252, 0.2);
}
.c-form--contact .c-form__input {
  width: 100%;
  max-width: 462px;
}
@media (max-width: 768px) {
  .c-form--contact .c-form__input {
    max-width: none;
  }
}
.c-form--contact .c-form__textarea {
  width: calc(100% - 167px);
  min-height: 246px;
  max-width: 693px;
}
@media (max-width: 768px) {
  .c-form--contact .c-form__textarea {
    min-height: 150px;
    width: 100%;
    max-width: none;
  }
}
.c-form--contact .c-form__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 25px 0;
}
.c-form--contact .c-form__privacy input[type=checkbox] {
  margin-right: 10px;
}
.c-form--contact .c-form__submit {
  display: block;
  margin: 0 auto;
  padding: 15px 40px;
}
.c-form--contact .form-policy {
  margin: 40px auto 33px;
}
.c-form--contact .form__checkbox__box span {
  font-size: 16px;
  margin-left: 23px;
}
@media (max-width: 768px) {
  .c-form--contact .form__checkbox__box span {
    font-size: 14px;
    margin-left: 30px;
  }
}
.c-form--contact input[type=checkbox] + .form__checkbox__box::before {
  width: 30px;
  height: 30px;
  left: 24px;
}
@media (max-width: 768px) {
  .c-form--contact input[type=checkbox] + .form__checkbox__box::before {
    width: 23px;
    height: 23px;
    left: 0px;
    top: 2.5px;
  }
}
.c-form--contact input[type=checkbox]:checked + .form__checkbox__box::after {
  left: 30px;
  width: 19px;
  height: 17px;
  top: 15px;
}
@media (max-width: 768px) {
  .c-form--contact input[type=checkbox]:checked + .form__checkbox__box::after {
    left: 3px;
    top: 13px;
  }
}
.c-form--contact .c-btn--submit__text {
  font-size: clamp(19px, 19px + 4 * (100vw - 768px) / 512, 23px);
  transform: translateX(-2px) translateY(0px);
}

.page-contact .sec-lead .leadArea {
  flex-direction: column;
  align-items: center;
}
.page-contact .sec-lead .leadArea .c-text--lead {
  width: 100%;
  margin: auto;
  max-width: none;
  text-align: center;
}
@media (max-width: 768px) {
  .page-contact .sec-lead .leadArea .c-text--lead {
    text-align: left;
  }
}
.page-contact .c-text--gradation-blue {
  font-size: clamp(22px, 22px + 6 * (100vw - 768px) / 512, 28px);
}
.page-contact .c-btn--backToTop {
  width: 315px;
  height: 58px;
}
@media (max-width: 768px) {
  .page-contact .c-btn--backToTop {
    width: 260px;
  }
}
.page-contact {
  /* プライバシーポリシー同意のスタイル */
}
.page-contact .wpcf7 .form-policy input {
  display: none;
}
.page-contact .wpcf7 .form-policy .privacyPolicyCheckIcon::before,
.page-contact .wpcf7 .form-policy .privacyPolicyCheckIcon::after {
  content: "";
  display: block;
  position: absolute;
}
.page-contact .wpcf7 .form-policy .wpcf7-form-control-wrap {
  position: static;
}
.page-contact .wpcf7 .form-policy label {
  position: relative;
  display: flex;
  cursor: pointer;
}
.page-contact .wpcf7 .form-policy .privacyPolicyCheckIcon {
  width: 30px;
  height: 30px;
  margin-right: 5px;
  position: relative;
}
.page-contact .wpcf7 .form-policy .privacyPolicyCheckIcon::before {
  width: 30px;
  height: 30px;
  border: 1px solid #d0d7de;
  border-radius: 5px;
  background-color: #ffffff;
  display: block;
  top: 0;
  left: 0;
}
.page-contact .wpcf7 .form-policy input[type=checkbox]:checked + .privacyPolicyCheckIcon::after {
  width: 19px;
  height: 17px;
  background-image: url(../img/common/icon-form-check.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  top: 6px;
  left: 6px;
}
.page-contact .c-btn--submit:disabled {
  display: none !important;
}

.recruit .sec-top {
  padding-top: 57px;
}
@media screen and (max-width: 768px) {
  .recruit .l-inner {
    padding-right: 15px;
    padding-left: 15px;
  }
}
.recruit .leadArea .c-ttl--lead {
  flex: 1;
  min-width: 300px;
  font-family: "Sawarabi Mincho", serif;
  font-size: clamp(30px, 30px + 8 * (100vw - 768px) / 512, 38px);
  line-height: 1;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .recruit .leadArea .c-ttl--lead {
    font-size: 28px;
    line-height: 1.75;
  }
}
.recruit .leadArea .c-text--lead {
  margin-top: 52px;
}
@media screen and (max-width: 768px) {
  .recruit .leadArea .c-text--lead {
    margin-top: 35px;
  }
}
.recruit .leadArea .c-text--lead p {
  font-size: 16px;
  line-height: 1.85;
}
.recruit .recruitSlider {
  width: 100vw;
  margin-top: 55px;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .recruit .recruitSlider {
    margin-top: 35px;
  }
}
.recruit .recruitSlider__track {
  display: flex;
  gap: 30px;
  width: -moz-max-content;
  width: max-content;
  animation: slideLoop 20s linear infinite;
}
@media screen and (max-width: 768px) {
  .recruit .recruitSlider__track {
    gap: 15px;
  }
}
.recruit .recruitSlider__track__img {
  width: 300px;
  height: 210px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .recruit .recruitSlider__track__img {
    width: 225px;
    height: 158px;
  }
}
@keyframes slideLoop {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.recruit .sec-concept {
  position: relative;
  margin-top: 45px;
  padding: 100px clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px) 92px;
  background: linear-gradient(to right, #EAF8FA, #E4FCE8);
}
@media screen and (max-width: 768px) {
  .recruit .sec-concept {
    padding: 60px 15px;
  }
}
.recruit .conceptBox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 56px;
}
@media screen and (max-width: 768px) {
  .recruit .conceptBox {
    flex-direction: column;
  }
}
.recruit .conceptTextBox {
  padding-left: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
@media screen and (max-width: 768px) {
  .recruit .conceptTextBox {
    padding-left: 0;
  }
}
.recruit .conceptTextBox__title {
  font-size: clamp(30px, 4vw, 36px);
  font-family: "Sawarabi Mincho";
  line-height: 1.3;
}
.recruit .conceptTextBox__title-accent {
  font-size: clamp(42px, 4vw, 48px);
  color: #3CA5FC;
}
.recruit .conceptBox .c-text--lead {
  font-size: 16px;
  line-height: 1.85;
  margin-top: 36px;
}
.recruit .conceptImgBox {
  flex: 0 1 51%;
  max-width: 526px;
  margin-top: -10vw;
  margin-bottom: -10vw;
}
@media screen and (max-width: 768px) {
  .recruit .conceptImgBox {
    margin-top: -3vw;
    margin-bottom: -3vw;
  }
}
.recruit .conceptImgBox__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.recruit .sec-voice {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .recruit .sec-voice {
    padding: 60px 15px;
  }
}
.recruit .sec-voice .l-inner {
  padding: clamp(40px, 7vw, 80px) clamp(20px, 20px + 40 * (100vw - 768px) / 512, 60px);
  border-radius: 25px;
}
@media screen and (max-width: 768px) {
  .recruit .sec-voice .l-inner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.recruit .sec-job-description .c-section-title--lower {
  margin-top: 2px;
}
.recruit .c-section-title--en {
  margin-top: 0;
  font-size: clamp(40px, 40px + 8 * (100vw - 768px) / 512, 48px);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit .c-section-title--en {
    font-size: 34px;
    line-height: 1.17;
    margin-bottom: 3px;
  }
}
.recruit .c-section-title--jp {
  margin: 5px auto 0;
}
@media screen and (max-width: 768px) {
  .recruit .c-section-title--jp {
    margin: 2px auto 0;
  }
}
.recruit .staffList {
  display: flex;
  gap: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px);
  margin-top: 75px;
}
@media screen and (max-width: 768px) {
  .recruit .staffList {
    flex-direction: column;
    gap: 40px;
    margin-top: 40px;
  }
}
.recruit .staffList__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  max-width: 280px;
}
@media screen and (max-width: 768px) {
  .recruit .staffList__item {
    max-width: none;
    margin: 0 auto;
  }
}
.recruit .staffList__imgBox {
  margin: 0 auto;
  max-width: 230px;
}
.recruit .staffList__imgBox__img {
  width: 100%;
  height: 100%;
}
.recruit .staffList__commentBox {
  position: relative;
  padding: 22px 25px 14px;
  margin-top: 28px;
  border-radius: 15px;
  text-align: center;
  background-color: #3CA5FC;
}
@media screen and (max-width: 768px) {
  .recruit .staffList__commentBox {
    margin: 28px auto 0;
    padding: 22px 15px 14px;
    max-width: 600px;
  }
}
.recruit .staffList__commentBox::before {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 28px;
  height: 15px;
  background: url(../img/recruit/ico_comment.svg) no-repeat center/contain;
  content: "";
}
.recruit .staffList__commentBox__text {
  padding-bottom: 15px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  border-bottom: 1px solid #fff;
}
.recruit .staffList__commentBox__text-accent {
  color: #FFE98E;
}
.recruit .staffVoice {
  display: block;
  position: relative;
  margin: 12px auto 0;
  padding-left: 15px;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
}
.recruit .staffVoice::before {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 15px;
  background: url(../img/recruit/ico_mic.svg) no-repeat center/contain;
  content: "";
}
.recruit .sec-job-description {
  padding-top: 65px;
}
@media screen and (max-width: 768px) {
  .recruit .sec-job-description {
    padding-top: 60px;
  }
}
@media screen and (min-width: 769px) {
  .recruit .sec-job-description .p-item__label {
    flex: 0 0 214px;
  }
}
.recruit .p-list {
  margin-top: 25px;
}
.recruit .p-detail-item {
  gap: 8px;
}
.recruit .p-detail-title {
  text-indent: -1.5em;
  padding-left: 1.5em;
}
.recruit .p-list--lower li span {
  display: unset;
}
.recruit .p-list__note {
  margin-top: 26px;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .recruit .p-list__note {
    font-size: 14px;
    text-align: left;
  }
}
.recruit .c-btn--dark {
  margin: 60px auto 0;
}
.recruit .c-btn--dark .c-btn-text {
  padding-left: 43px;
}
.recruit .c-btn--dark .c-btn-text.--mail::before {
  left: 15px;
}

.blog__tourTag {
  background-color: #E7F4F8;
  padding: 3px 10px;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 600;
  color: #1E3343;
}

.blog__tourDate {
  font-size: 14px;
  font-weight: 300;
  color: #89959F;
}

.blog__articleTagList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 15px;
  margin-top: 15px;
  margin-bottom: 15px;
}

.blog__articleTagItem {
  display: inline-block;
  font-size: 12px;
  text-decoration: none;
  color: #1E3343;
  transition: all 0.3s;
  background-color: transparent;
  border-radius: 6px;
  position: relative;
  padding-left: 14px;
}
.blog__articleTagItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-image: url("../img/common/ico_tag.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.blog__articleTagItem:hover {
  opacity: 1;
  text-decoration: underline;
}

.blogArea {
  padding-top: 58px;
}
@media (max-width: 768px) {
  .blogArea {
    padding-top: 27px;
  }
}

.blogContainer {
  display: flex;
  flex-direction: row;
  gap: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  max-width: 1100px;
}
@media (max-width: 768px) {
  .blogContainer {
    flex-direction: column;
    gap: 60px;
    padding-left: 15px;
    padding-right: 15px;
  }
}

.blogCards {
  flex: 1 1 730px;
}

@media (max-width: 768px) {
  .blogCards {
    flex: 1 1 100%;
  }
}
.blogCard__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 45px clamp(15px, 15px + 15 * (100vw - 768px) / 512, 30px);
}
@media (max-width: 425px) {
  .blogCard__list {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.blogCard__item {
  margin-bottom: 0;
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
.blogCard__item .blogCard__img {
  max-width: 350px;
  width: 100%;
  height: auto;
  aspect-ratio: 350/241;
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 21px;
}
.blogCard__item .blogCard__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  transition: 0.5s;
}
.blogCard__item:hover {
  text-decoration: none;
  opacity: 1;
}
.blogCard__item:hover .blogCard__img img {
  transform: scale(1.1);
}
.blogCard__item .blogCard__meta {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}
.blogCard__item .blogCard__title {
  font-size: 16px;
  font-weight: 300;
  text-align: left;
  line-height: 1.6;
  margin-top: 16px;
}

.blogCard__nav {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 75px;
  margin-bottom: 30px;
}

.blogCard__navBtn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #CDD2D6;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}

.blogCard__navBtn.is-active {
  background-color: #3CA5FC;
}

.blogCard__navEllipsis {
  color: #1E3343;
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 2px;
  width: 17px;
}

.blogCard__navBtn--prev,
.blogCard__navBtn--next {
  position: relative;
  background-color: #CDD2D6;
  border: none;
  color: #FFFFFF;
  font-size: 0;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.blogCard__navBtn--prev::before,
.blogCard__navBtn--next::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: solid #FFFFFF;
  border-width: 0 0 1px 1px;
  transform: rotate(45deg);
}

.blogCard__navBtn--prev::before {
  left: 17px;
}

.blogCard__navBtn--next::before {
  right: 17px;
  transform: rotate(-135deg);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 75px;
  margin-bottom: 30px;
}
.pagination ul {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.pagination li {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #CDD2D6;
  box-sizing: border-box;
  color: #FFFFFF;
  font-size: 15px;
  font-weight: 300;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
.pagination li:has(.dots) {
  width: 17px;
  height: 17px;
  background-color: transparent;
  cursor: default;
}
.pagination a,
.pagination span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: inherit;
  border-radius: 50%;
}
.pagination .current {
  color: #fff;
  background-color: #3CA5FC;
}
.pagination span.current {
  color: #fff;
  background-color: #3CA5FC;
}
.pagination span.dots {
  color: #1E3343;
}
.pagination a:hover {
  color: #fff;
  background-color: #3CA5FC;
}
.pagination .arrow.prev,
.pagination .arrow.next {
  position: relative;
}
.pagination .arrow.prev::before,
.pagination .arrow.next::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  border: solid #FFFFFF;
  border-width: 0 0 1px 1px;
  transform: rotate(45deg);
}
.pagination .arrow.prev::before {
  left: 17px;
}
.pagination .arrow.next::before {
  right: 17px;
  transform: rotate(-135deg);
}

.blogSidebar {
  width: 250px;
  min-width: 250px;
  flex: 1 1 250px;
}
@media (max-width: 768px) {
  .blogSidebar {
    width: 100%;
    min-width: auto;
    flex: 1 1 100%;
  }
}
.blogSidebar > div {
  margin-bottom: 30px;
}
.blogSidebar > div:last-child {
  margin-bottom: 0;
}

.blogSidebar__ttl {
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  color: #3CA5FC;
  padding-bottom: 11px;
  padding-left: 21px;
  border-bottom: 1px dashed #D8D8D8;
  position: relative;
}
.blogSidebar__ttl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  background-image: url("../img/common/ico_dia.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.blogSidebar__categoryList {
  list-style: none;
  padding: 0;
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.blogSidebar__categoryItem {
  position: relative;
  padding-left: 16px;
}
.blogSidebar__categoryItem::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 11px;
  height: 11px;
  background-image: url("../img/common/ico_star-gray.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.blogSidebar__categoryItem a {
  font-size: 16px;
  font-weight: 300;
  text-decoration: none;
  color: #1E3343;
}
.blogSidebar__categoryItem a:hover {
  text-decoration: underline;
}

.blogSidebar__allTagsBtn {
  display: block;
  background-color: #FFFFFF;
  color: #1E3343;
  border: 1px solid #D1D1D1;
  border-radius: 4px;
  box-sizing: border-box;
  padding: 5px 20px;
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 300;
  text-align: center;
  cursor: pointer;
  width: 100%;
}
.blogSidebar__allTagsBtn span {
  position: relative;
  padding-right: 12px;
}
.blogSidebar__allTagsBtn span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 8px;
  background-image: url("../img/common/ico_arrow-small.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.blogSidebar__allTagsBtn:hover {
  background-color: #D1D1D1;
}

.blogSidebar__recentList {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 18px;
}

.blogSidebar__recentLink {
  display: flex;
  gap: 15px;
}

.blogSidebar__recentImg {
  flex: 0 0 75px;
  height: 52px;
  border-radius: 6px;
  overflow: hidden;
}
.blogSidebar__recentImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.blogSidebar__recentText {
  flex: 1;
  display: flex;
  align-items: center;
}

.blogSidebar__recentTitle {
  font-size: 12px;
  line-height: 1.5;
  margin: 0;
  color: #1E3343;
}

.blogArticle h1 {
  font-family: "Sawarabi Mincho";
  font-size: clamp(24px, 24px + 2 * (100vw - 768px) / 512, 26px);
  line-height: 1.6;
  font-weight: 400;
  text-align: left;
  margin-top: 25px;
  margin-bottom: 18px;
}
.blogArticle h2 {
  font-size: clamp(18px, 18px + 2 * (100vw - 768px) / 512, 20px);
  line-height: 1.4;
  font-weight: 600;
  text-align: left;
  margin-top: 50px;
  margin-bottom: 35px;
  border: 2px solid #3CA5FC;
  border-radius: 9px;
  padding: 15px 23px;
  position: relative;
}
@media (max-width: 768px) {
  .blogArticle h2 {
    padding: 15px 15px;
  }
}
.blogArticle h2::after {
  content: "";
  position: absolute;
  bottom: -13.5px;
  left: 23px;
  width: 19px;
  height: 13px;
  background-color: #3CA5FC;
  clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.blogArticle h3 {
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
  line-height: 1.556;
  font-weight: 600;
  text-align: left;
  padding: 11px 25px;
  margin-top: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px);
  margin-bottom: clamp(20px, 20px + 10 * (100vw - 768px) / 512, 30px);
  border-radius: 10px;
  background-color: #ECF3F5;
}
@media (max-width: 768px) {
  .blogArticle h3 {
    padding: 11px 15px;
  }
}
.blogArticle h4 {
  font-size: clamp(16px, 16px + 2 * (100vw - 768px) / 512, 18px);
  line-height: 1.556;
  font-weight: 600;
  text-align: left;
  position: relative;
  padding-left: 23px;
  margin-bottom: 25px;
}
.blogArticle h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  background-image: url("../img/common/ico_star-gray.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
.blogArticle p {
  font-size: clamp(14px, 14px + 2 * (100vw - 768px) / 512, 16px);
  line-height: 1.7;
  font-weight: 300;
  margin-top: 25px;
  margin-bottom: 40px;
}
.blogArticle img {
  width: auto;
  height: auto;
  max-height: 500px;
  border-radius: 20px;
  margin-top: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  margin-bottom: clamp(20px, 20px + 20 * (100vw - 768px) / 512, 40px);
}
.blogArticle .blogArticle__leadImg {
  width: auto;
  max-height: 500px;
  margin: 0px auto;
}
.blogArticle .blogArticle__meta {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  margin-top: 5px;
}
.blogArticle .blog__articleTagList {
  gap: 8px 18px;
}
.blogArticle .blog__articleTagItem {
  font-size: 14px;
  padding-left: 16px;
}
.blogArticle .blog__articleTagItem::before {
  width: 13px;
  height: 13px;
}
.blogArticle .blogArticle__content {
  margin-top: 50px;
}
.blogArticle .wp-block-image {
  width: -moz-fit-content;
  width: fit-content;
  max-height: 500px;
  margin: auto;
}
.blogArticle .wp-block-image img {
  width: auto;
  max-height: 500px;
}

/* 前後記事ナビゲーションボックス全体のスタイル */
.blogArticle__navigation {
  display: flex;
  gap: 30px; /* カード間の余白 */
  margin-top: 54px;
}
@media (max-width: 768px) {
  .blogArticle__navigation {
    flex-direction: column;
  }
}

/* 各カードの共通スタイル */
.blogArticle__prevArticle,
.blogArticle__nextArticle {
  flex: 1;
  max-width: 350px;
  background-color: #ECF3F5;
  border-radius: 10px;
  padding: 25px;
  color: inherit;
  transition: background-color 0.3s ease;
}

.blogArticle__prevArticle {
  margin-right: auto;
}

.blogArticle__nextArticle {
  margin-left: auto;
}

/* ホバー時の背景色変化 */
.blogArticle__prevArticle:hover,
.blogArticle__nextArticle:hover {
  background-color: #dfe9ed;
}

.blogArticle__navLink {
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  gap: 25px;
}

/* 【前の記事】：画像左、テキスト右 */
.blogArticle__prevArticle .blogArticle__navLink {
  flex-direction: row;
}

/* 【次の記事】：テキスト左、画像右 */
.blogArticle__nextArticle .blogArticle__navLink {
  flex-direction: row-reverse;
}
.blogArticle__nextArticle .blogArticle__navLabel {
  text-align: right;
}

/* 画像コンテナのサイズ指定 */
.prevArticle__img {
  width: 100px;
  height: 68px;
  border-radius: 6px;
  overflow: hidden;
}

/* 画像のスタイル */
.prevArticle__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 6px;
  margin: auto;
}

/* テキストコンテナのスタイル */
.prevArticle__txt {
  flex: 1;
}

/* ラベルのスタイル */
.blogArticle__navLabel {
  font-size: 12px;
  font-weight: 600;
  color: #98A3AC;
  display: block;
  margin-top: -3px;
  margin-bottom: 13px;
}

/* 記事タイトルのスタイル */
.prevArticle__txt p {
  font-size: 14px;
  font-weight: 300;
  color: #1E3343;
  margin: 0;
  line-height: 22.4px;
}

.blogArticle__buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 28px;
}
.blogArticle__buttons .blogArticle__backToList {
  width: 262px;
  height: 62px;
}
.blogArticle__buttons .c-btn-text {
  font-size: 16px;
}
.blogArticle__buttons .c-btn-text::before {
  top: -4px;
  right: -49%;
}

.tag-list .--main {
  gap: 12px 25px;
}
.tag-list .--main .blog__articleTagItem {
  font-size: 16px;
}

.archiveTitle {
  font-size: 28px;
  font-weight: 600;
  font-family: "Sawarabi Mincho", serif;
  color: #3CA5FC;
  margin-bottom: 30px;
}

@media (max-width: 768px) {
  .archiveTitle {
    font-size: 22px;
  }
}
.faq .faq__aside {
  position: sticky;
  top: 100px;
  left: 0;
  align-self: flex-start;
  flex: 0 0 230px;
}
@media (max-width: 768px) {
  .faq .faq__aside {
    position: relative;
    top: 0;
    width: 100%;
    padding-inline: 15px;
    flex: 0 0 auto;
  }
}
.faq .c-text-link {
  display: inline;
}
.faq .sec-faq {
  padding-top: 57px;
}
.faq .sec-faq::after {
  background: none;
}
@media (max-width: 768px) {
  .faq .sec-faq {
    padding-top: 22px;
  }
}
.faq .faqBox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: clamp(30px, 4.7vw, 60px);
}
@media (max-width: 768px) {
  .faq .faqBox {
    flex-direction: column;
    gap: 71px;
  }
}
.faq .asideList {
  display: grid;
  grid-template-columns: 1fr;
}
.faq .asideList__item {
  width: 100%;
}
.faq .asideList__link {
  display: block;
  padding: 15px 0 20px 10px;
  border-bottom: 1px dotted #B9CED5;
}
@media (max-width: 768px) {
  .faq .asideList__link {
    text-align: left;
    padding: 20px 0 19px 10px;
  }
}
.faq .asideList__item:first-child .asideList__link {
  border-top: 1px solid #B9CED5;
}
.faq .asideList__item:last-child .asideList__link {
  border-bottom: 1px solid #B9CED5;
}
.faq .asideList__text {
  position: relative;
  display: block;
  width: 100%;
  font-size: 15px;
  font-weight: 300;
  line-height: 2;
}
@media (max-width: 768px) {
  .faq .asideList__text {
    padding-right: 20px;
    font-size: 15px;
  }
}
.faq .asideList__text::after {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 13px;
  height: 4px;
  background: url(../img/faq/ico-arrow.svg) no-repeat center/contain;
  content: "";
}
.faq [id^=faq] {
  scroll-margin-top: 50px;
}
.faq .faqArea {
  width: 100%;
  scroll-margin-top: 100px;
}
.faq .faqBox .faqArea {
  margin-top: 0;
}
@media (max-width: 768px) {
  .faq .faqBox .faqArea {
    padding-inline: 15px;
  }
}
.faq .faq-title {
  position: relative;
  margin-top: -2px;
  margin-bottom: 32px;
  padding-left: 36px;
  font-size: 28px;
  font-weight: 500;
  font-family: "Sawarabi Mincho";
  text-align: left;
  color: #345772;
}
@media (max-width: 768px) {
  .faq .faq-title {
    margin-bottom: 16px;
    padding-left: 28px;
    font-size: 22px;
    line-height: 2.5;
  }
}
.faq .faq-title::before {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: url(../img/faq/ico-title.svg) no-repeat center/contain;
  content: "";
}
@media (max-width: 768px) {
  .faq .faq-title::before {
    width: 23px;
    height: 23px;
  }
}
.faq .faq-title:not(:first-of-type) {
  margin-top: 107px;
}
@media (max-width: 768px) {
  .faq .faq-title:not(:first-of-type) {
    margin-top: 80px;
  }
}
.faq .faq-list .faq-item:first-child {
  border-top: 1px solid #B9CED5;
}
@media (max-width: 768px) {
  .faq .faqArea .faq-item__question {
    padding: 25px 28px 20px 0;
    font-size: 16px;
    line-height: 1.6;
    padding-left: 2em;
    text-indent: -2em;
  }
}
.faq .faq-item__question::before {
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
.faq .faq-item__question::after {
  top: 50%;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  .faq .faqArea .faq-item__question::before,
  .faq .faqArea .faq-item__question::after {
    top: 52%;
    right: 0;
  }
}
@media (max-width: 768px) {
  .faq .faqArea .faq-item__question span {
    font-size: 20px;
    margin-right: 8px;
  }
}
.faq .faqArea .faq-item__answer {
  padding: 30px 40px 30px 88px;
  font-size: 15px;
  line-height: 1.6;
  text-indent: 0;
}
@media (max-width: 768px) {
  .faq .faqArea .faq-item__answer {
    margin-bottom: 26px;
    padding: 25px 20px 25px 58px;
    font-size: 14px;
    line-height: 1.6;
  }
}
.faq .faqArea .faq-item__answer .faq-item__mark {
  position: absolute;
  left: 40px;
  top: 33px;
}
@media (max-width: 768px) {
  .faq .faqArea .faq-item__answer .faq-item__mark {
    left: 20px;
    top: 21px;
    margin-right: 17px;
    font-size: 20px;
  }
}
.faq .faq-item__answerList {
  display: flex;
  flex-direction: column;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 25px;
  text-indent: 0;
}
@media (max-width: 768px) {
  .faq .faq-item__answerList {
    width: 100%;
  }
}
.faq .faq-item__answerList__item {
  padding: 15px 0 15px 10px;
  width: 100%;
  border-bottom: 1px solid #B9CED5;
}
.faq .faq-item__answerList__item:first-child {
  border-top: 1px solid #B9CED5;
}
.faq .faq-item__answerList__textBox {
  display: flex;
  gap: clamp(30px, 3vw, 40px);
  align-items: center;
}
.faq .faq-item__answerList__textBox .f-bold {
  min-width: 13em;
}
@media (max-width: 768px) {
  .faq .faq-item__answerList__textBox .f-bold {
    min-width: auto;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* 余白調整
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-pd {
  padding: 0 60px;
}

.u-pd-left {
  padding-left: 60px;
}

.u-pd-right {
  padding-right: 60px;
}

.u-pd0-left {
  margin-left: -60px;
}

.u-pd0-right {
  margin-right: -60px;
}

.u-pd0-top {
  margin-top: -120px;
}

@media (min-width: 1081px) {
  .u-pd {
    padding: 0 30px;
  }
  .u-pd-left {
    padding-left: 30px;
  }
  .u-pd-right {
    padding-right: 30px;
  }
  .u-pd0-left {
    margin-left: -30px;
  }
  .u-pd0-right {
    margin-right: -30px;
  }
}
@media (max-width: 768px) {
  .u-pd {
    padding: 0 15px;
  }
  .u-pd-left {
    padding-left: 15px;
  }
  .u-pd-right {
    padding-right: 15px;
  }
  .u-pd0-left {
    margin-left: -15px;
  }
  .u-pd0-right {
    margin-right: -15px;
  }
  .u-pd0-top {
    margin-top: -60px;
  }
}
/*――――――――――――――――――――――――――――――――――――――――――――
/* 背景色
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-bg-white {
  background-color: #FFFFFF;
}

.u-bg-gray {
  background-color: #F5F9FA;
}

.u-bg-gray {
  background-color: #F5F9FA;
}

.u-bg-gradation {
  background: linear-gradient(to bottom right, #E0F3FA, #E8FCF6, #E4FCE8);
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* 波飾り
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-bg-wave-before {
  position: relative;
}
.u-bg-wave-before::before {
  content: "";
  position: absolute;
  top: -3.90625vw;
  left: 0;
  width: 100vw;
  height: 3.90625vw;
  background-image: url("../img/common/bg-wave-before.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

.sec-tourAbout.u-bg-wave-before:before {
  top: calc(-3.90625vw - 20px);
}
@media (max-width: 768px) {
  .sec-tourAbout.u-bg-wave-before:before {
    top: -3.90625vw;
  }
}

.u-bg-wave-after {
  position: relative;
}
.u-bg-wave-after::after {
  content: "";
  position: absolute;
  bottom: -3.90625vw;
  left: 0;
  width: 100vw;
  height: 3.90625vw;
  background-image: url("../img/common/bg-wave-after.svg");
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* flexBoxの調整
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-flex-row {
  flex-direction: row !important;
}
@media (max-width: 768px) {
  .u-flex-row {
    flex-direction: column !important;
  }
}

.u-flex-column {
  flex-direction: column !important;
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* section内部のpadding
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-innerBox {
  padding-right: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
  padding-left: clamp(30px, 30px + 30 * (100vw - 768px) / 512, 60px);
}
@media (max-width: 768px) {
  .u-innerBox {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.u-innerBox--s {
  padding-right: 0;
  padding-left: 0;
}
@media (max-width: 768px) {
  .u-innerBox--s {
    padding-right: 15px;
    padding-left: 15px;
  }
}

.u-grayBox {
  padding-top: 100px;
  padding-bottom: 100px;
}
@media (max-width: 768px) {
  .u-grayBox {
    padding-top: 80px;
    padding-bottom: 80px;
  }
}

/*――――――――――――――――――――――――――――――――――――――――――――
/* フォーム調整用
――――――――――――――――――――――――――――――――――――――――――――――*/
.u-formSize-small {
  width: 100%;
  max-width: 334px;
}
@media (max-width: 768px) {
  .u-formSize-small {
    max-width: none;
  }
}