@charset "UTF-8";
:root {
  --font-main: "VDL-LogoG","Hiragino Sans","Hiragino Kaku Gothic ProN","Yu Gothic Medium","Yu Gothic", sans-serif;
  --font-sub: "Kozuka Gothic Pr6N", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-meiryo-r: "Meiryo-R", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --font-meiryo-b: "Meiryo-B", "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  --c-main: #333 ;
  --black: #000;
  --gray: #666;
  --gray-ba: #BABABA;
  --gray-99: #999;
  --gray-cc: #CCC;
  --white: #fff;
  --white-tr: rgba(255, 255, 255, .6);
  --green: #0CC5C5;
  --green-d: #01AFA9;
  --green-hover: #009C96;
  --orange: #FF9933;
  --orange-l: #FF9966;
  --yellow: #FFFF33;
  --red: #CC0000;
  --purple: #D88BDF;
  --bg: #FEFBE7;
  --shadow: inset 2.3px 1.93px 5px rgba(5, 0, 0, .1);
}

@font-face {
  font-display: swap;
  font-family: "Meiryo-R";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/meiryo.ttc") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "Meiryo-B";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/meiryob.ttc") format("truetype");
}
html {
  font-size: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media (max-width: 1250px) {
  html {
    font-size: 1.28vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  color: var(--c-main);
  font-family: var(--font-main);
  font-synthesis: none;
  font-weight: 400;
  text-rendering: optimizeLegibility;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  line-height: 1.5;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

/* Make images easier to work with */
img,
picture {
  display: block;
  height: auto;
  max-width: 100%;
  width: 100%;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  background-color: transparent;
  background-color: initial;
  border: none;
  padding: 0;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
            transition-duration: 0.01ms !important;
  }
}
.l-bg {
  background-color: var(--bg);
}

.l-footer {
  -webkit-margin-before: 28px;
          margin-block-start: 28px;
  -webkit-margin-before: 1.75rem;
          margin-block-start: 1.75rem;
}
@media screen and (max-width: 768px) {
  .l-footer {
    -webkit-margin-before: 1.5625rem;
            margin-block-start: 1.5625rem;
  }
}

.l-header {
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 900;
}

.l-inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1250px;
  padding-left: 25px;
  padding-left: 1.5625rem;
  padding-right: 25px;
  padding-right: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}

.l-main {
  padding-top: 124px;
  padding-top: 7.75rem;
}
@media screen and (max-width: 768px) {
  .l-main {
    padding-top: 4.6875rem;
  }
}

.l-ttl {
  -webkit-margin-before: 38px;
          margin-block-start: 38px;
  -webkit-margin-before: 2.375rem;
          margin-block-start: 2.375rem;
}
@media screen and (max-width: 768px) {
  .l-ttl {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.c-band-ttl {
  background-color: var(--green);
  color: var(--white);
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 400;
  line-height: 1.7333333333;
  padding-block: 10px;
  padding-block: 0.625rem;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  position: relative;
  text-align: center;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-band-ttl {
    font-size: 1.25rem;
    line-height: 1.4;
    padding-block: 0.5rem 0.5rem;
    padding-inline: 0.9375rem;
    word-break: keep-all;
    word-wrap: anywhere;
  }
}

.c-band-ttl::before {
  content: "";
  left: 50%;
  position: absolute;
  top: -38px;
  top: -2.375rem;
  -webkit-transform: translateX(-50%);
  background-image: url(../img/common/icon_sun.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 46px;
  height: 2.875rem;
          transform: translateX(-50%);
  width: 85px;
  width: 5.3125rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-band-ttl::before {
    height: 1.4375rem;
    top: -1.25rem;
    width: 2.65625rem;
  }
}

.c-btn {
  background: var(--green-d);
  border: none;
  border-radius: 0.5rem;
  color: var(--white);
  cursor: pointer;
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 20px;
  margin-top: 1.25rem;
  outline: none;
  padding-block: 9.5px;
  padding-block: 0.59375rem;
  padding-inline: 10px;
  padding-inline: 0.625rem;
  text-align: center;
  width: 100%;
  -webkit-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn {
    font-size: 1rem;
    padding-block: 1.0625rem;
  }
}

@media (any-hover: hover) {
  .c-btn:hover {
    background: var(--green-hover);
  }
}
.c-btn.c-btn--orange {
  background: var(--orange);
  color: var(--white);
  font-size: 24px;
  font-size: 1.5rem;
  padding-block: 18px;
  padding-block: 1.125rem;
  -webkit-transition: opacity 0.3s ease;
  position: relative;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .c-btn.c-btn--orange {
    font-size: 1rem;
    padding-block: 1.0625rem;
  }
}

.c-btn.c-btn--orange::after {
  background-image: url(../img/common/icon_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 24px;
  height: 1.5rem;
  position: absolute;
  right: 12px;
  right: 0.75rem;
  top: 50%;
  width: 24px;
  width: 1.5rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .c-btn.c-btn--orange::after {
    height: 1rem;
    width: 1rem;
  }
}

@media (any-hover: hover) {
  .c-btn.c-btn--orange:hover {
    opacity: 0.7;
  }
}
.c-description {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  min-width: 318px;
  min-width: 19.875rem;
}
@media screen and (max-width: 768px) {
  .c-description {
    width: 20.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .c-description.c-description--long {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.c-description__item {
  color: var(--black);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: var(--white);
  border-radius: 0.3125rem;
  padding-block: 6px;
  padding-block: 0.375rem;
}
@media screen and (max-width: 768px) {
  .c-description__item {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

@media screen and (max-width: 768px) {
  .c-description.c-description--long .c-description__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding-block: 0.9375rem;
    padding-inline: 0.625rem;
    width: 20.9375rem;
  }
}

.c-description__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-width: 130px;
  min-width: 8.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-inline: 20px;
  padding-inline: 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-description__ttl {
    min-width: 6.25rem;
    padding-inline: 0.9375rem;
  }
}

.c-description__ttl::after {
  border-right: 2px dashed var(--gray-cc);
  content: "";
  display: inline-block;
  height: 1.5lh;
  position: absolute;
  right: 0px;
  right: 0rem;
  top: 50%;
  width: 2px;
  width: 0.125rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .c-description__ttl--long {
    padding-inline: 0;
    width: 100%;
    -webkit-padding-after: 0.5rem;
            padding-block-end: 0.5rem;
  }
}

.c-description__ttl--long::after {
  height: 2lh;
}
@media screen and (max-width: 768px) {
  .c-description__ttl--long::after {
    border-bottom: 2px dashed var(--gray-cc);
    border-right: none;
    bottom: 0;
    height: 1px;
    right: 0;
    top: unset;
    width: 100%;
  }
}

.c-description__txt {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding-inline: 20px;
  padding-inline: 1.25rem;
}
@media screen and (max-width: 768px) {
  .c-description__txt {
    padding-inline: 0.9375rem 0.625rem;
  }
}

.c-description__txt.c-description__txt--long {
  font-size: 16px;
  font-size: 1rem;
  padding-inline: 25px;
  padding-inline: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .c-description__txt.c-description__txt--long {
    padding-inline: 0;
    -webkit-padding-before: 0.5rem;
    font-size: 0.875rem;
            padding-block-start: 0.5rem;
  }
}

.c-description__item:has(.c-description__txt--long) {
  padding-block: 13px;
  padding-block: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .c-description__item:has(.c-description__txt--long) {
    -webkit-padding-before: 0.5rem;
            padding-block-start: 0.5rem;
  }
}

.c-form {
  margin-inline: auto;
  max-width: 467px;
  max-width: 29.1875rem;
  width: 100%;
  -webkit-margin-before: 45px;
          margin-block-start: 45px;
  -webkit-margin-before: 2.8125rem;
  font-family: var(--font-sub);
          margin-block-start: 2.8125rem;
}

.c-form__item {
  width: 100%;
}

.c-form__item:not(:first-child) {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}

.c-form__label {
  color: var(--gray-99);
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
  min-width: 74px;
  min-width: 4.625rem;
}
@media screen and (max-width: 768px) {
  .c-form__label {
    font-size: 1rem;
  }
}

.c-form__input {
  background-color: var(--white);
  border-radius: 0.3125rem;
  height: 40px;
  height: 2.5rem;
  padding-inline: 11px 8px;
  padding-inline: 0.6875rem 0.5rem;
  width: 100%;
  -webkit-box-shadow: var(--shadow);
  border: none;
          box-shadow: var(--shadow);
  font-size: 16px;
  font-size: 1rem;
  font-size: 18px;
  font-size: 1.125rem;
  margin: 0;
  outline: none;
}
@media screen and (max-width: 768px) {
  .c-form__input {
    font-size: 1rem;
  }
}

.c-form__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 11px;
  gap: 0.6875rem;
}

/*male or female*/
.c-form__radio-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 45px;
  gap: 2.8125rem;
  width: 170px;
  width: 10.625rem;
}

/*年齢*/
.c-form__item-wrapper.c-form__item-wrapper--number {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
  gap: 33px;
  gap: 2.0625rem;
          margin-block-start: 1.25rem;
}
@media screen and (max-width: 600px) {
  .c-form__item-wrapper.c-form__item-wrapper--number {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-form__item.c-form__item--age-wrapper {
  width: 160px;
  width: 10rem;
}

.c-form__radio {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white);
  border-radius: 50%;
  height: 20px;
  height: 1.25rem;
  margin: 0;
  width: 20px;
  width: 1.25rem;
  -webkit-box-shadow: var(--shadow);
  border: none;
  border: 1px solid var(--gray-cc);
          box-shadow: var(--shadow);
  cursor: pointer;
  outline: none;
  position: relative;
}

.c-form__radio:checked::before {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  background-color: var(--gray);
  border-radius: 50%;
  height: 10px;
  height: 0.625rem;
          transform: translate(-50%, -50%);
  width: 10px;
  width: 0.625rem;
}

.c-form__radio-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
  gap: 0.25rem;
}

.c-form__radio-item label {
  font-size: 18px;
  font-size: 1.125rem;
  min-width: unset;
}
@media screen and (max-width: 768px) {
  .c-form__radio-item label {
    font-size: 1rem;
  }
}

/*　郵便番号*/
.c-form__item-wrapper.c-form__item-wrapper--postcode {
  gap: 10px;
  gap: 0.625rem;
}

input[id=postcode] {
  display: block;
  padding-left: 20px;
  padding-left: 1.25rem;
  width: 116px;
  width: 7.25rem;
}
@media screen and (max-width: 768px) {
  input[id=postcode] {
    padding-left: 0.5rem;
  }
}

/*レンタカータイプ*/
.c-form__item-wrapper.c-form__item-wrapper--rental-type {
  gap: 25px;
  gap: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .c-form__item-wrapper.c-form__item-wrapper--rental-type {
    gap: 0.625rem;
  }
}
@media screen and (max-width: 600px) {
  .c-form__item-wrapper.c-form__item-wrapper--rental-type {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-form__radio-rental-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 35px;
  gap: 2.1875rem;
}

/*利用期間*/
@media screen and (max-width: 768px) {
  .c-form__item-wrapper.c-form__item-wrapper--date {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-form__date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13px;
  gap: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .c-form__date-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.c-form__date-item span {
  font-size: 24px;
  font-size: 1.5rem;
  -webkit-margin-start: 7px;
          margin-inline-start: 7px;
  -webkit-margin-start: 0.4375rem;
          margin-inline-start: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .c-form__date-item span {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.125rem;
    height: inherit;
  }
}

input.c-form__input-date {
  color: var(--gray-cc);
  cursor: pointer;
  width: 140px;
  width: 8.75rem;
}

input.c-form__input-date.is-selected {
  color: var(--black);
}

input.c-form__input-date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 0.5" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: opacity(0.5);
          filter: opacity(0.5);
}

input.c-form__input-date.is-selected::-webkit-calendar-picker-indicator {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncA type="table" tableValues="0 1" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: opacity(1);
          filter: opacity(1);
}

/*レンタカータイプ*/
.c-form__radio-rental-wrapper input[type=radio] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: var(--white);
  border-radius: 50%;
  height: 20px;
  height: 1.25rem;
  margin: 0;
  width: 20px;
  width: 1.25rem;
  -webkit-box-shadow: var(--shadow);
  border: none;
  border: 1px solid var(--gray-cc);
          box-shadow: var(--shadow);
  cursor: pointer;
  outline: none;
  position: relative;
}

.c-form__radio-rental-wrapper input[type=radio]:checked::before {
  content: "";
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  background-color: var(--gray);
  border-radius: 50%;
  height: 10px;
  height: 0.625rem;
          transform: translate(-50%, -50%);
  width: 10px;
  width: 0.625rem;
}

.c-form__radio-rental-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--gray-99);
  cursor: pointer;
  font-family: var(--font-sub);
  font-size: 16px;
  font-size: 1rem;
  gap: 15px;
  gap: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .c-form__radio-rental-item {
    gap: 0.25rem;
  }
}

.c-form__radio-rental-item label {
  cursor: pointer;
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .c-form__radio-rental-item label {
    font-size: 1rem;
  }
}

.c-form__item.c-form__item--textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

/*貸出時刻*/
.c-form__select-wrapper {
  position: relative;
  width: 178px;
  width: 11.125rem;
}

.c-form__select-wrapper::after {
  content: "▼";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  color: var(--gray-cc);
  font-size: 12px;
  font-size: 0.75rem;
  pointer-events: none;
  right: 10px;
  right: 0.625rem;
          transform: translateY(-50%);
}

.c-form__select {
  background-color: var(--white);
  height: 40px;
  height: 2.5rem;
  padding-inline: 11px 8px;
  padding-inline: 0.6875rem 0.5rem;
  width: 100%;
  -webkit-box-shadow: var(--shadow);
  appearance: none;
  border: none;
  border-radius: 0.3125rem;
          box-shadow: var(--shadow);
  color: var(--gray-cc);
  font-size: 16px;
  font-size: 1rem;
  margin: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

.c-form__select::-ms-expand {
  display: none;
}

.c-form__select.is-selected {
  color: var(--black);
}

.c-form__select option {
  color: var(--black);
}

/*お問合せ*/
.c-form__textarea {
  width: 100%;
  -webkit-box-shadow: var(--shadow);
  background-color: var(--white);
  border: none;
  border-radius: 0.3125rem;
          box-shadow: var(--shadow);
  color: var(--black);
  font-size: 16px;
  font-size: 1rem;
  height: 118px;
  height: 7.375rem;
  outline: none;
  padding-block: 11px 8px;
  padding-block: 0.6875rem 0.5rem;
  padding-inline: 11px 8px;
  padding-inline: 0.6875rem 0.5rem;
}

.c-form__error {
  -webkit-margin-before: 4px;
          margin-block-start: 4px;
  -webkit-margin-before: 0.25rem;
  color: var(--red);
  display: none;
  font-size: 12px;
  font-size: 0.75rem;
          margin-block-start: 0.25rem;
}

.c-form__error.is-active {
  display: block;
}

.c-form__confirm {
  -webkit-margin-before: 54px;
          margin-block-start: 54px;
  -webkit-margin-before: 3.375rem;
  cursor: pointer;
          margin-block-start: 3.375rem;
  position: relative;
  -webkit-transition: opacity 0.3s ease;
  font-family: var(--font-main);
  transition: opacity 0.3s ease;
}

.c-form__confirm::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  background-image: url(../img/common/icon_arrow.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 24px;
  height: 1.5rem;
  right: 10px;
  right: 0.625rem;
          transform: translateY(-50%);
  width: 24px;
  width: 1.5rem;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-form__confirm::before {
    height: 1rem;
    width: 1rem;
  }
}

@media (any-hover: hover) {
  .c-form__confirm:hover {
    opacity: 0.7;
  }
}
/*placeholder*/
.c-form__input::-webkit-input-placeholder,
.c-form__select option {
  color: var(--gray-ba);
  font-family: var(--font-sub);
  font-size: 18px;
  font-size: 1.125rem;
}
.c-form__input::-moz-placeholder,
.c-form__select option {
  color: var(--gray-ba);
  font-family: var(--font-sub);
  font-size: 18px;
  font-size: 1.125rem;
}
.c-form__input::-ms-input-placeholder,
.c-form__select option {
  color: var(--gray-ba);
  font-family: var(--font-sub);
  font-size: 18px;
  font-size: 1.125rem;
}
.c-form__input::placeholder,
.c-form__select option {
  color: var(--gray-ba);
  font-family: var(--font-sub);
  font-size: 18px;
  font-size: 1.125rem;
}
@media screen and (max-width: 768px) {
  .c-form__input::-webkit-input-placeholder,
  .c-form__select option {
    font-size: 1rem;
  }
  .c-form__input::-moz-placeholder,
  .c-form__select option {
    font-size: 1rem;
  }
  .c-form__input::-ms-input-placeholder,
  .c-form__select option {
    font-size: 1rem;
  }
  .c-form__input::placeholder,
  .c-form__select option {
    font-size: 1rem;
  }
}

.p-reservation__thanks-content {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
}

.p-reservation__thanks-txt {
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 18px;
  font-size: 1.125rem;
  text-align: center;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-reservation__thanks-txt {
    font-size: 1rem;
  }
}

.p-reservation__thanks-btn {
  -webkit-margin-before: 60px;
          margin-block-start: 60px;
  -webkit-margin-before: 3.75rem;
          margin-block-start: 3.75rem;
  margin-inline: auto;
  max-width: 400px;
  max-width: 25rem;
  text-align: center;
  width: 100%;
}

.c-head {
  background-color: var(--green);
  border-radius: 0.5rem;
  color: var(--white);
  font-size: 30px;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
  margin-inline: auto;
  padding-block: 7.5px;
  padding-block: 0.46875rem;
  padding-inline: 15px;
  padding-inline: 0.9375rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-head {
    font-size: 1.5rem;
    line-height: 1.1666666667;
    max-width: 35rem;
    padding-block: 0.625rem;
    padding-inline: 0.3125rem;
  }
}

.c-head span {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .c-head span {
    font-size: 1.125rem;
    line-height: 1.3333333333;
  }
}

.c-head.c-head--purple {
  background-color: var(--purple);
}

.c-line {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(50%, transparent), color-stop(0%, var(--yellow)));
  background: linear-gradient(transparent 50%, var(--yellow) 0%);
  display: inline;
}

.c-mv__img {
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-mv__img {
    height: min(40vw, 200px);
  }
}

.c-mv__img img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-mv__img img {
    -o-object-position: 60% 0;
       object-position: 60% 0;
  }
}

.c-mv__ttl-wrapper {
  position: relative;
}
.c-mv__ttl-img img {
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .c-mv__ttl-img img {
    height: min(12vw, 60px);
  }
}

.c-mv__ttl {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  font-size: 36px;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-mv__ttl {
    font-size: 1.5rem;
  }
}

.c-reservation-btn {
  background: var(--orange);
  border-radius: 0.5rem;
  color: var(--white);
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  line-height: 1;
  max-width: 300px;
  max-width: 18.75rem;
  padding-block: 9.5px;
  padding-block: 0.59375rem;
  padding-inline: 20px 22px;
  padding-inline: 1.25rem 1.375rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-reservation-btn {
    font-size: 1rem;
    min-width: 20rem;
    padding-block: 1.0625rem;
  }
}

@media (any-hover: hover) {
  .c-reservation-btn:hover {
    opacity: 0.7;
  }
}
.c-tel-btn {
  background: var(--green);
  border-radius: 0.5rem;
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 400;
  line-height: 1;
  max-width: 248px;
  max-width: 15.5rem;
  min-height: 53px;
  min-height: 3.3125rem;
  text-align: center;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  gap: 0.625rem;
  padding-inline: 20px 22px;
  padding-inline: 1.25rem 1.375rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .c-tel-btn {
    font-size: 1rem;
    min-height: 3.125rem;
    min-width: 20rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    pointer-events: auto;
  }
}

.c-tel-btn::before {
  background-image: url(../img/common/icon_tel-wh.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 24px;
  height: 1.5rem;
  width: 19px;
  width: 1.1875rem;
}

@media (any-hover: hover) {
  .c-tel-btn:hover {
    opacity: 0.7;
  }
}
.c-ttl {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .c-ttl {
    font-size: 0.75rem;
  }
}

.c-ttl::before {
  background: navy;
  border-radius: 50%;
  content: "";
  display: inline-block;
  height: 15px;
  height: 0.9375rem;
  margin-right: 8px;
  margin-right: 0.5rem;
  vertical-align: middle;
  width: 15px;
  width: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .c-ttl::before {
    height: 0.5rem;
    width: 0.5rem;
  }
}

.c-ttl > span {
  display: block;
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 150%;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .c-ttl > span {
    font-size: 1.75rem;
    margin-top: 0.6875rem;
  }
}

.p-footer {
  background-color: var(--green);
  padding-block: 58px 20px;
  padding-block: 3.625rem 1.25rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-footer {
    padding-block: 2.625rem 0.625rem;
  }
}

.p-footer::before {
  content: "";
  left: 50%;
  position: absolute;
  top: -5%;
  -webkit-transform: translateX(-50%);
  background-image: url(../img/common/icon_sun.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  height: 46px;
  height: 2.875rem;
          transform: translateX(-50%);
  width: 85px;
  width: 5.3125rem;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-footer::before {
    height: 1.875rem;
    top: -2.5%;
    width: 3.75rem;
  }
}

.p-footer__inner {
  margin-inline: auto;
  max-width: 1200px;
  max-width: 75rem;
  padding-inline: 25px;
  padding-inline: 1.5625rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-footer__inner {
    max-width: 37.5rem;
    padding-inline: 1.25rem;
  }
}

.p-footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  color: var(--white);
  gap: 8.1770833333vw;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 3.125rem;
    margin-inline: auto;
    max-width: 37.5rem;
    width: 100%;
  }
}

.p-footer__info {
  max-width: 475px;
  max-width: 29.6875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-footer__info {
    width: 100%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__info-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-footer__name {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-footer__name {
    font-size: 1.625rem;
    line-height: 1.5;
  }
}

.p-footer__info-address {
  font-size: max(24px, 12px);
  font-size: max(1.5rem, 12px);
  font-style: normal;
  line-height: 1;
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__info-address {
    font-size: 1rem;
    line-height: 1.3125;
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
  }
}

.p-footer__info-box {
  background-color: var(--yellow);
  max-width: 475px;
  max-width: 29.6875rem;
  padding-block: 17.5px;
  padding-block: 1.09375rem;
  padding-inline: 12px;
  padding-inline: 0.75rem;
  width: 100%;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
}
@media screen and (max-width: 768px) {
  .p-footer__info-box {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
    max-width: 37.5rem;
            order: 3;
    padding-inline: 0.625rem;
  }
}

.p-footer__info-txt {
  color: var(--black);
  font-size: max(18px, 12px);
  font-size: max(1.125rem, 12px);
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-footer__info-txt {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-footer__info-tel {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          margin-block-start: 1.25rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  gap: 0.3125rem;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .p-footer__info-tel {
    pointer-events: auto;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
    font-size: 1.625rem;
    line-height: 1.5;
            order: 2;
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
  }
}

.p-footer__info-tel::before {
  background-image: url(../img/common/icon_tel-wh.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  display: block;
  height: 34px;
  height: 2.125rem;
  width: 28px;
  width: 1.75rem;
}

@media screen and (max-width: 768px) {
  .p-footer__form-area {
    width: 100%;
    -webkit-border-before: 1px solid var(--white);
            border-block-start: 1px solid var(--white);
    -webkit-padding-before: 1.875rem;
            padding-block-start: 1.875rem;
  }
}

.p-footer__form-ttl {
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-footer__form-ttl {
    font-size: 1.625rem;
    line-height: 1.5;
  }
}

.p-footer__form {
  -webkit-margin-before: 17px;
          margin-block-start: 17px;
  -webkit-margin-before: 1.0625rem;
          margin-block-start: 1.0625rem;
  min-width: 508px;
  min-width: 31.75rem;
}
@media screen and (max-width: 768px) {
  .p-footer__form {
    margin-inline: auto;
    max-width: 37.5rem;
    min-width: unset;
    width: 100%;
    -webkit-margin-before: 0.9375rem;
            margin-block-start: 0.9375rem;
  }
}

@media screen and (max-width: 768px) {
  .p-footer__form-item {
    width: 100%;
  }
}

.p-footer__form-input {
  background-color: var(--white);
  border: none;
  border-radius: 0.3125rem;
  color: var(--c-main);
  font-size: max(18px, 12px);
  font-size: max(1.125rem, 12px);
  height: 36px;
  height: 2.25rem;
  outline: none;
  padding-block: 7px;
  padding-block: 0.4375rem;
  padding-inline: 11px;
  padding-inline: 0.6875rem;
  width: 100%;
  -webkit-margin-after: 20px;
          margin-block-end: 20px;
  -webkit-margin-after: 1.25rem;
          margin-block-end: 1.25rem;
  -webkit-transition: background-color 0.3s ease;
  font-family: var(--font-sub);
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 768px) {
  .p-footer__form-input {
    font-size: 1rem;
    height: 2.5rem;
    line-height: 1.3125;
    padding-block: 0.75rem;
    width: 100%;
  }
}

.p-footer__form-input:focus {
  border-color: var(--green-d);
  outline: 1px solid var(--green-d);
}

.p-footer__form-textarea {
  background-color: var(--white);
  border: none;
  border-radius: 0.3125rem;
  color: var(--c-main);
  font-family: var(--font-sub);
  font-size: max(18px, 12px);
  font-size: max(1.125rem, 12px);
  height: 119px;
  height: 7.4375rem;
  outline: none;
  padding-block: 7px;
  padding-block: 0.4375rem;
  padding-inline: 11px;
  padding-inline: 0.6875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-footer__form-textarea {
    font-size: 1rem;
    height: 11.25rem;
    line-height: 1.3125;
    padding-block: 0.75rem;
    width: 100%;
  }
}

.p-footer__form-input::-webkit-input-placeholder,
.p-footer__form-textarea::-webkit-input-placeholder {
  color: var(--gray-99);
  font-family: var(--font-main);
}

.p-footer__form-input::-moz-placeholder,
.p-footer__form-textarea::-moz-placeholder {
  color: var(--gray-99);
  font-family: var(--font-main);
}

.p-footer__form-input::-ms-input-placeholder,
.p-footer__form-textarea::-ms-input-placeholder {
  color: var(--gray-99);
  font-family: var(--font-main);
}

.p-footer__form-input::placeholder,
.p-footer__form-textarea::placeholder {
  color: var(--gray-99);
  font-family: var(--font-main);
}

.p-footer__form-input:focus,
.p-footer__form-textarea:focus {
  border-color: var(--yellow);
  outline: 2cmsolid var(--yellow);
}

.p-footer__form-btn {
  margin-inline: auto;
  max-width: 248px;
  max-width: 15.5rem;
  -webkit-margin-before: 25px;
          margin-block-start: 25px;
  -webkit-margin-before: 1.5625rem;
          margin-block-start: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .p-footer__form-btn {
    max-width: 18.75rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-footer__logo {
  height: inherit;
  margin-inline: auto;
  max-width: 352px;
  max-width: 22rem;
  width: 100%;
  -webkit-margin-before: 144px;
          margin-block-start: 144px;
  -webkit-margin-before: 9rem;
          margin-block-start: 9rem;
}
@media screen and (max-width: 768px) {
  .p-footer__logo {
    -webkit-margin-before: 5rem;
            margin-block-start: 5rem;
    max-width: 16.25rem;
  }
}

.p-footer__copyright {
  color: var(--white);
  font-family: var(--font-meiryo-r);
  font-size: max(16px, 10px);
  font-size: max(1rem, 10px);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  -webkit-margin-before: 55px;
          margin-block-start: 55px;
  -webkit-margin-before: 3.4375rem;
  display: block;
          margin-block-start: 3.4375rem;
}
@media screen and (max-width: 768px) {
  .p-footer__copyright {
    font-size: 0.75rem;
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-header {
  background-color: var(--white);
  height: 124px;
  height: 7.75rem;
}
@media screen and (max-width: 768px) {
  .p-header {
    height: 4.6875rem;
  }
}

.p-header::before {
  background-color: var(--green);
  content: "";
  height: 11px;
  height: 0.6875rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-header::before {
    height: 0.4375rem;
  }
}

.p-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 113px;
  height: 7.0625rem;
  margin-inline: auto 0;
  max-width: 1700px;
  max-width: 106.25rem;
  padding-block: 16.5px 0;
  padding-block: 1.03125rem 0;
  padding-inline: 18px;
  padding-inline: 1.125rem;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  gap: max(4.1666666667vw, 40px);
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-header__inner {
    height: 4.25rem;
    padding-block: 0.875rem 0;
    padding-inline: 1.25rem 0.625rem;
  }
}
@media (min-width: 1921px) {
  .p-header__inner {
    margin-inline: auto;
  }
}

.p-header__logo {
  height: inherit;
  max-width: 24.7395833333vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__logo {
    max-width: min(69.3333333333vw, 280px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    position: relative;
    z-index: 999;
  }
}

.p-header__logo > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.p-header__logo img {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  gap: 2.0833333333vw;
  height: inherit;
          justify-content: space-between;
  max-width: 1004px;
  max-width: 62.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-header__nav {
    display: none;
  }
}

.p-header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.p-header__nav-item {
  height: inherit;
}

.p-header__nav-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12.5px;
  gap: 0.78125rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  top: -7px;
  top: -0.4375rem;
  z-index: 1;
}

.p-header__nav-item > a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
  padding-inline: max(0.9375vw, 10px);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: var(--c-main);
  cursor: pointer;
  font-size: max(1.0416666667vw, 11px);
  font-weight: 400;
  line-height: 1;
  position: relative;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  white-space: nowrap;
}

.p-header__nav-item > a::after {
  background: var(--orange);
  bottom: 33%;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  width: 100%;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

@media (any-hover: hover) {
  .p-header__nav-item > a:hover {
    color: var(--orange);
  }
  .p-header__nav-item > a:hover::after {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.p-header__hamburger {
  border: none;
  cursor: pointer;
  display: none;
  height: inherit;
  margin: 0;
  outline: none;
  padding: 0;
  position: relative;
  width: 50px;
  width: 3.125rem;
  z-index: 999;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .p-header__hamburger {
    display: block;
  }
}

.p-header__hamburger span {
  left: 50%;
  position: relative;
  -webkit-transform: translateX(-50%);
  background: var(--green);
  display: block;
  height: 2px;
          transform: translateX(-50%);
  width: 30px;
  width: 1.875rem;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.p-header__hamburger span:nth-of-type(1) {
  top: -7px;
  top: -0.4375rem;
}

.p-header__hamburger span:nth-of-type(2) {
  top: 0;
}

.p-header__hamburger span:nth-of-type(3) {
  top: 7px;
  top: 0.4375rem;
}

.p-header__hamburger.is-open span:nth-of-type(1) {
  top: 2px;
  top: 0.125rem;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.p-header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.p-header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.p-header__drawer {
  background-color: var(--white);
  bottom: 0;
  display: none;
  min-height: 100vh;
  overflow-y: scroll;
  padding: 30px 7.2vw 51px 7.4666666667vw;
  padding: 1.875rem 7.2vw 3.1875rem 7.4666666667vw;
  position: absolute;
  right: 0;
  scrollbar-width: none;
  top: 0;
  width: 100%;
  z-index: 900;
  -webkit-transform: translateX(0);
  padding-block: 100px 60px;
  padding-block: 6.25rem 3.75rem;
          transform: translateX(0);
}

.p-header__drawer::after {
  background-color: var(--green);
  content: "";
  display: block;
  height: 7px;
  height: 0.4375rem;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.p-header__drawer::-webkit-scrollbar {
  display: none;
}

.p-header__drawer-item > a {
  border-bottom: dashed 1px var(--gray-cc);
  border-bottom: dashed 0.0625rem var(--gray-cc);
  color: var(--c-main);
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  line-height: 1;
  padding-block: 15px;
  padding-block: 0.9375rem;
}

.p-header__drawer-btn {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          margin-block-start: 1.875rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 15px;
  gap: 0.9375rem;
}

.p-insurance {
  padding-block: 0 136px;
  padding-block: 0 8.5rem;
}
@media screen and (max-width: 768px) {
  .p-insurance {
    padding-block: 0 3.75rem;
  }
}

.p-insurance__list {
  -webkit-padding-before: 45px;
          padding-block-start: 45px;
  -webkit-padding-before: 2.8125rem;
          padding-block-start: 2.8125rem;
}

.p-insurance__item:not(:first-child) {
  -webkit-margin-before: 70px;
          margin-block-start: 70px;
  -webkit-margin-before: 4.375rem;
          margin-block-start: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-insurance__item:not(:first-child) {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.p-insurance__item-container {
  padding-inline: 8px 0;
  padding-inline: 0.5rem 0;
}
@media screen and (max-width: 768px) {
  .p-insurance__item-container {
    padding-inline: 0;
  }
}

@media screen and (max-width: 768px) {
  .p-insurance__item-ttl {
    font-size: 1.375rem;
    max-width: unset;
    width: 100%;
  }
}

.p-insurance__item-txt {
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
}
@media screen and (max-width: 768px) {
  .p-insurance__item-txt {
    font-size: 0.875rem;
    line-height: 1.5;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-insurance__item-txt:not(:first-child) {
  -webkit-margin-before: 45px;
          margin-block-start: 45px;
  -webkit-margin-before: 2.8125rem;
          margin-block-start: 2.8125rem;
}
@media screen and (max-width: 768px) {
  .p-insurance__item-txt:not(:first-child) {
    -webkit-margin-before: 1.875rem;
            margin-block-start: 1.875rem;
  }
}

.p-insurance__item-description-list {
  -webkit-margin-before: 15px;
          margin-block-start: 15px;
  -webkit-margin-before: 0.9375rem;
          margin-block-start: 0.9375rem;
}

.p-insurance__sub-list {
  -webkit-margin-before: 6px;
          margin-block-start: 6px;
  -webkit-margin-before: 0.375rem;
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7222222222;
          margin-block-start: 0.375rem;
  -webkit-padding-start: 0.4em;
          padding-inline-start: 0.4em;
}
@media screen and (max-width: 768px) {
  .p-insurance__sub-list {
    font-size: 0.875rem;
    line-height: 1.8571428571;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
    -webkit-padding-start: 0.2em;
            padding-inline-start: 0.2em;
  }
}

.p-insurance__sub-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.p-insurance__sub-item::before {
  content: "・";
  display: inline-block;
}

.p-introduction {
  -webkit-padding-before: 20px;
          padding-block-start: 20px;
  -webkit-padding-before: 1.25rem;
          padding-block-start: 1.25rem;
  -webkit-margin-after: 60px;
          margin-block-end: 60px;
  -webkit-margin-after: 3.75rem;
          margin-block-end: 3.75rem;
}
@media screen and (max-width: 768px) {
  .p-introduction {
    -webkit-margin-after: 1.875rem;
            margin-block-end: 1.875rem;
  }
}

.p-introduction__bg {
  -webkit-padding-before: 65px;
          padding-block-start: 65px;
  -webkit-padding-before: 4.0625rem;
          padding-block-start: 4.0625rem;
  -webkit-padding-after: 177px;
          padding-block-end: 177px;
  -webkit-padding-after: 11.0625rem;
          padding-block-end: 11.0625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-introduction__bg {
    -webkit-padding-before: 2.5rem;
            padding-block-start: 2.5rem;
    -webkit-padding-after: 6.25rem;
            padding-block-end: 6.25rem;
  }
}

.p-introduction__bg::after {
  background-image: url(../img/common/bg_band.png);
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: 0;
  content: "";
  height: 110px;
  height: 6.875rem;
  left: 0;
  position: absolute;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-introduction__bg::after {
    height: 12vw;
    max-height: 4.0625rem;
  }
}

.p-introduction__list {
  display: grid;
  gap: 62px;
  gap: 3.875rem;
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  .p-introduction__list {
    gap: 2.5rem;
    grid-template-columns: repeat(1, 1fr);
    margin-inline: auto;
    max-width: 25rem;
  }
}

.p-introduction__item {
  background-color: var(--white);
  border-radius: 0.3125rem;
  overflow: hidden;
  padding-block: 13px 16px;
  padding-block: 0.8125rem 1rem;
  padding-inline: 7px;
  padding-inline: 0.4375rem;
}
@media screen and (max-width: 768px) {
  .p-introduction__item {
    padding-block: 0.9375rem;
    padding-inline: 0.625rem;
  }
}

.p-introduction__item-month {
  color: var(--white);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  position: relative;
  text-align: center;
  z-index: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 53px;
  height: 3.3125rem;
  margin-inline: auto;
  width: 300px;
  width: 18.75rem;
  width: 300px;
  width: 18.75rem;
  -webkit-padding-after: 13px;
          padding-block-end: 13px;
  -webkit-padding-after: 0.8125rem;
          padding-block-end: 0.8125rem;
}
@media screen and (max-width: 768px) {
  .p-introduction__item-month {
    font-size: 1.25rem;
    height: 2.6875rem;
    line-height: 1.4;
    width: 18.4375rem;
  }
}

.p-introduction__item-month span {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-introduction__item-month span {
    font-size: 0.875rem;
  }
}

.p-introduction__item-month::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  height: 100%;
          transform: translateX(-50%);
  width: 100%;
  z-index: -1;
}

.p-introduction__item:nth-child(1) {
  border: 9px solid var(--green);
  border: 0.5625rem solid var(--green);
}

.p-introduction__item:nth-child(2) {
  border: 9px solid var(--orange);
  border: 0.5625rem solid var(--orange);
}

.p-introduction__item:nth-child(3) {
  border: 9px solid var(--purple);
  border: 0.5625rem solid var(--purple);
}

.p-introduction__item:nth-child(1) .p-introduction__item-month::before {
  background-image: url(../img/top/ribon_01.png);
}

.p-introduction__item:nth-child(2) .p-introduction__item-month::before {
  background-image: url(../img/top/ribon_02.png);
}

.p-introduction__item:nth-child(3) .p-introduction__item-month::before {
  background-image: url(../img/top/ribon_03.png);
}

.p-introduction__item-amount {
  color: var(--red);
  font-size: 30px;
  font-size: 1.875rem;
  line-height: 1;
  text-align: center;
  -webkit-margin-before: -8px;
          margin-block-start: -8px;
  -webkit-margin-before: -0.5rem;
          margin-block-start: -0.5rem;
}
@media screen and (max-width: 768px) {
  .p-introduction__item-amount {
    font-size: 1.5rem;
    -webkit-margin-before: -0.1875rem;
            margin-block-start: -0.1875rem;
  }
}

.p-introduction__item-amount span {
  color: var(--red);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-introduction__item-amount span {
    font-size: 1rem;
  }
}

.p-introduction__item-tax {
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  text-align: center;
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-introduction__item-tax {
    font-size: 1rem;
  }
}

.p-introduction__item-img {
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}

.p-introduction__item-img img {
  aspect-ratio: 329/148;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-introduction__item-ttl {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
  color: var(--black);
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1;
          margin-block-start: 1.25rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-introduction__item-ttl {
    font-size: 1.25rem;
  }
}

.p-introduction__item-txt {
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  -webkit-margin-before: 0.5rem;
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: max(18px, 11px);
  font-size: max(1.125rem, 11px);
          margin-block-start: 0.5rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-introduction__item-txt {
    font-size: 1rem;
  }
}

.p-introduction__bottom-txt {
  color: var(--gray);
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1;
  text-align: center;
  text-align: center;
  -webkit-margin-before: 47px;
          margin-block-start: 47px;
  -webkit-margin-before: 2.9375rem;
          margin-block-start: 2.9375rem;
  margin-inline: auto;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .p-introduction__bottom-txt {
    font-size: 1.125rem;
    -webkit-margin-before: 2.1875rem;
            margin-block-start: 2.1875rem;
  }
}

.p-introduction__bottom-txt::before,
.p-introduction__bottom-txt::after {
  background-color: var(--orange);
  border-radius: 0.125rem;
  bottom: 16px;
  bottom: 1rem;
  content: "";
  height: 3px;
  height: 0.1875rem;
  position: absolute;
  width: 44px;
  width: 2.75rem;
}
@media screen and (max-width: 768px) {
  .p-introduction__bottom-txt::before,
  .p-introduction__bottom-txt::after {
    bottom: 0.625rem;
    height: 0.125rem;
    width: 1.875rem;
  }
}

.p-introduction__bottom-txt::before {
  left: -40px;
  left: -2.5rem;
  -webkit-transform: rotate(55deg);
          transform: rotate(55deg);
}
@media screen and (max-width: 768px) {
  .p-introduction__bottom-txt::before {
    left: -1.875rem;
  }
}

.p-introduction__bottom-txt::after {
  right: -40px;
  right: -2.5rem;
  -webkit-transform: rotate(-55deg);
          transform: rotate(-55deg);
}
@media screen and (max-width: 768px) {
  .p-introduction__bottom-txt::after {
    right: -1.875rem;
  }
}

.p-introduction__bottom-btn {
  margin-inline: auto;
  max-width: 403px;
  max-width: 25.1875rem;
  -webkit-margin-before: -8px;
          margin-block-start: -8px;
  -webkit-margin-before: -0.5rem;
          margin-block-start: -0.5rem;
}

.p-lead {
  -webkit-margin-before: -31px;
          margin-block-start: -31px;
  -webkit-margin-before: -1.9375rem;
          margin-block-start: -1.9375rem;
  position: relative;
  text-align: center;
  z-index: 1;
}

.p-lead__ttl {
  color: var(--white);
  font-size: 30px;
  font-size: 1.875rem;
  inset: 0;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-inline: auto;
  max-width: 702px;
  max-width: 43.875rem;
  padding-block: 13px;
  padding-block: 0.8125rem;
  padding-inline: 15px;
  padding-inline: 0.9375rem;
  position: relative;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-lead__ttl {
    font-size: 1.25rem;
    line-height: 1.4;
    max-width: 28.125rem;
    padding-block: 0.625rem;
    padding-inline: 0.625rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lead__ttl {
    max-width: 18.75rem;
  }
}

.p-lead__ttl::before {
  background-color: var(--white-tr);
  border-radius: 1rem;
  content: "";
  height: 90px;
  height: 5.625rem;
  left: -14px;
  left: -0.875rem;
  position: absolute;
  top: -14px;
  top: -0.875rem;
  width: 730px;
  width: 45.625rem;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-lead__ttl::before {
    width: 29.875rem;
  }
}
@media screen and (max-width: 600px) {
  .p-lead__ttl::before {
    width: 20.5rem;
  }
}

.p-lead__ttl::after {
  background-color: var(--green);
  border-radius: 0.5rem;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: -1;
}

.p-lead__ttl span {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .p-lead__ttl span {
    font-size: 1.5rem;
    line-height: 1.3333333333;
  }
}

.p-lead__txt {
  -webkit-margin-before: 26px;
          margin-block-start: 26px;
  -webkit-margin-before: 1.625rem;
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.7777777778;
          margin-block-start: 1.625rem;
  position: relative;
  word-break: keep-all;
  word-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .p-lead__txt {
    font-size: 0.875rem;
    line-height: 1.5714285714;
    margin-inline: 0;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-location {
  padding-block: 0 34px;
  padding-block: 0 2.125rem;
}

.p-location__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  gap: 57px;
  gap: 3.5625rem;
          justify-content: center;
  -webkit-padding-before: 28px;
          padding-block-start: 28px;
  -webkit-padding-before: 1.75rem;
          padding-block-start: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-location__list {
    gap: 1.75rem;
    grid-template-columns: repeat(2, 1fr);
    -webkit-padding-before: 2.5rem;
    margin-inline: auto;
    max-width: 37.5rem;
            padding-block-start: 2.5rem;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .p-location__list {
    grid-template-columns: repeat(1, 1fr);
    max-width: 22.375rem;
  }
}

.p-location__item img {
  aspect-ratio: 360/240;
  border-radius: 0.625rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-location__item-ttl {
  font-family: var(--font-meiryo-r);
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
  -webkit-margin-before: 0.5rem;
          margin-block-start: 0.5rem;
}

.p-location__map {
  -webkit-margin-before: 33px;
          margin-block-start: 33px;
  -webkit-margin-before: 2.0625rem;
          margin-block-start: 2.0625rem;
}

.p-location__map iframe {
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  aspect-ratio: 1980/372;
     object-fit: contain;
}
@media screen and (max-width: 768px) {
  .p-location__map iframe {
    aspect-ratio: 768/355;
  }
}
@media screen and (max-width: 600px) {
  .p-location__map iframe {
    aspect-ratio: 600/400;
  }
}

.p-top-mv__inner {
  padding-left: 360px;
  padding-left: 22.5rem;
  padding-left: 18.75vw;
}
@media screen and (max-width: 768px) {
  .p-top-mv__inner {
    padding: 0;
  }
}

.p-top-mv__img-box {
  height: auto;
  margin-left: auto;
  max-width: 1560px;
  max-width: 97.5rem;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-mv__img-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 768px) {
  .p-top-mv__swiper {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
    margin-top: 10.6666666667vw; /*80px*/
            order: 2;
  }
}

.p-top-mv__img {
  margin-left: auto;
  position: relative;
  -webkit-transform: scale(1);
          transform: scale(1);
}

@media screen and (max-width: 768px) {
  .p-top-mv__img img {
    height: 67.7333333333vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.p-top-mv__txt-box {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  left: -5.7%;
  left: -90px;
  margin: 0 auto;
  max-width: 325px;
  max-width: 20.3125rem;
          transform: translateY(-50%);
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-top-mv__txt-box {
    position: static;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
    margin-top: 10.6666666667vw;
    max-width: unset;
            order: 1;
  }
}

.p-top-mv__logo-img {
  margin: 0 auto;
  max-width: 14.0625vw;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-top-mv__logo-img {
    max-width: 13.75rem;
  }
}

.p-top-mv__copy {
  color: navy;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  margin-top: 3.125vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-top-mv__copy {
    font-size: 1.625rem;
    line-height: 1.5384615385;
    margin-top: 6.6666666667vw;
  }
}

.swiper-container {
  height: 100%;
  overflow: hidden;
  width: 100%;
}

.swiper-wrapper,
.swiper-slide > .p-top__img {
  height: 100%;
  width: 100%;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
}
.swiper-slide-active > div,
.swiper-slide-duplicate-active > div,
.swiper-slide-prev > div {
  -webkit-animation: zoomUp 10s linear 0s 1 normal both;
          animation: zoomUp 10s linear 0s 1 normal both;
}

.swiper-slide::after {
  background-image: -webkit-gradient(linear, right top, left top, color-stop(0, transparent), to(#fff));
  background-image: linear-gradient(270deg, transparent 0 70%, #fff 100%);
  content: "";
  height: 100.5%;
  left: 0;
  max-width: 1560px;
  max-width: 97.5rem;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .swiper-slide::after {
    background-image: none;
  }
}

.p-operation {
  padding-block: 30px 140px;
  padding-block: 1.875rem 8.75rem;
}
@media screen and (max-width: 768px) {
  .p-operation {
    padding-block: 1.875rem 3.75rem;
  }
}

@media screen and (max-width: 768px) {
  .p-operation__list {
    margin-inline: auto;
    max-width: 35rem;
    width: 100%;
  }
}

.p-operation__item:not(:first-child) {
  -webkit-margin-before: 70px;
          margin-block-start: 70px;
  -webkit-margin-before: 4.375rem;
          margin-block-start: 4.375rem;
}
@media screen and (max-width: 768px) {
  .p-operation__item:not(:first-child) {
    -webkit-margin-before: 3.125rem;
            margin-block-start: 3.125rem;
  }
}

.p-operation__item-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 35px;
  gap: 2.1875rem;
  -webkit-margin-before: 33px;
          margin-block-start: 33px;
  -webkit-margin-before: 2.0625rem;
          margin-block-start: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .p-operation__item-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.9375rem;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .p-operation__item-ttl {
    font-size: 1.25rem;
    line-height: 1.2727272727;
    word-break: keep-all;
    word-wrap: anywhere;
    padding-inline: 0.625rem;
  }
}

.p-operation__item-img {
  max-width: 483px;
  max-width: 30.1875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-operation__item-img {
    max-width: 100%;
  }
}

.p-operation__item-img img {
  aspect-ratio: 481/239;
  border-radius: 0.3125rem;
}

.p-operation__item-txt {
  color: var(--black);
  font-family: var(--font-sub);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.75;
}
@media screen and (max-width: 768px) {
  .p-operation__item-txt {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-plan {
  padding-block: 44px 75px;
  padding-block: 2.75rem 4.6875rem;
}

.p-plan__ttl {
  word-break: keep-all;
  word-wrap: anywhere;
}

.p-plan__container:not(:first-child) {
  -webkit-margin-before: 65px;
          margin-block-start: 65px;
  -webkit-margin-before: 4.0625rem;
          margin-block-start: 4.0625rem;
}

.p-plan__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  gap: 63px;
  gap: 3.9375rem;
          justify-content: center;
  -webkit-margin-before: 33px;
          margin-block-start: 33px;
  -webkit-margin-before: 2.0625rem;
          margin-block-start: 2.0625rem;
}
@media screen and (max-width: 768px) {
  .p-plan__list {
    gap: 2.5rem;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
    margin-inline: auto;
    max-width: 25rem;
    width: 100%;
  }
}

.p-plan__item {
  max-width: 358px;
  max-width: 22.375rem;
  position: relative;
  width: 100%;
  z-index: 1;
}

.p-plan__item-grade-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 11px;
  gap: 0.6875rem;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  left: 4px;
  left: 0.25rem;
  position: absolute;
  top: 3px;
  top: 0.1875rem;
}

.p-plan__item-grade {
  border-radius: 0.5rem;
  color: var(--white);
  font-size: 32px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1;
  max-width: 97px;
  max-width: 6.0625rem;
  padding-block: 4px;
  padding-block: 0.25rem;
  padding-inline: 15px;
  padding-inline: 0.9375rem;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-plan__item-grade {
    font-size: 1.375rem;
    padding-block: 0.5rem;
    padding-inline: 0.625rem;
  }
}

.p-plan__item-grade span {
  display: block;
  font-size: 18px;
  font-size: 1.125rem;
  -webkit-margin-before: 3px;
          margin-block-start: 3px;
  -webkit-margin-before: 0.1875rem;
          margin-block-start: 0.1875rem;
}
@media screen and (max-width: 768px) {
  .p-plan__item-grade span {
    font-size: 1rem;
    -webkit-margin-before: 0.125rem;
            margin-block-start: 0.125rem;
  }
}

.p-plan__item-grade.p-plan__item-grade--green {
  background-color: var(--green);
}

.p-plan__item-grade.p-plan__item-grade--orange {
  background-color: var(--orange);
}

.p-plan__item-grade.p-plan__item-grade--purple {
  background-color: var(--purple);
}

.p-plan__item-price {
  -webkit-margin-before: 20px;
          margin-block-start: 20px;
  -webkit-margin-before: 1.25rem;
          margin-block-start: 1.25rem;
  max-width: 212px;
  max-width: 13.25rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-plan__item-price {
    -webkit-margin-before: 0.5rem;
            margin-block-start: 0.5rem;
    max-width: 13.25rem;
    width: 100%;
  }
}

.p-plan__container:nth-child(3) .p-plan__item-grade-wrapper {
  gap: 6px;
  gap: 0.375rem;
}

.p-plan__container:nth-child(3) .p-plan__item-price {
  max-width: 233px;
  max-width: 14.5625rem;
}

.p-plan__item-bottom-wrapper {
  left: 50%;
  position: absolute;
  top: 40%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 100%;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .p-plan__item-bottom-wrapper {
    -webkit-transform: translateY(-50%) translateX(-50%);
            transform: translateY(-50%) translateX(-50%);
  }
}

.p-plan__item-tax {
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  position: relative;
  text-align: center;
  z-index: 2;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 53px;
  height: 3.3125rem;
  margin-inline: auto;
  width: 300px;
  width: 18.75rem;
  width: 300px;
  width: 18.75rem;
  -webkit-padding-after: 14px;
          padding-block-end: 14px;
  -webkit-padding-after: 0.875rem;
          padding-block-end: 0.875rem;
  -webkit-margin-before: 17px;
          margin-block-start: 17px;
  -webkit-margin-before: 1.0625rem;
          margin-block-start: 1.0625rem;
}
@media screen and (max-width: 768px) {
  .p-plan__item-tax {
    font-size: 1rem;
    height: 3.75rem;
    line-height: 1.375;
    width: 18.75rem;
    -webkit-padding-after: 0.75rem;
            padding-block-end: 0.75rem;
  }
}

.p-plan__item-tax::before {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 50%;
  position: absolute;
  top: 0;
  -webkit-transform: translateX(-50%);
  height: 100%;
          transform: translateX(-50%);
  width: 100%;
  z-index: -1;
}

.p-plan__item:nth-child(1) .p-plan__item-tax::before {
  background-image: url(../img/plan/ribon_01.png);
}

.p-plan__item:nth-child(2) .p-plan__item-tax::before {
  background-image: url(../img/plan/ribon_02.png);
}

.p-plan__item:nth-child(3) .p-plan__item-tax::before {
  background-image: url(../img/plan/ribon_03.png);
}

.p-plan__item-content {
  -webkit-margin-before: 12px;
          margin-block-start: 12px;
  -webkit-margin-before: 0.75rem;
          margin-block-start: 0.75rem;
  margin-inline: auto;
  max-width: 300px;
  max-width: 18.75rem;
  width: 100%;
}

.p-plan__bottom-btn {
  -webkit-margin-before: 58px;
          margin-block-start: 58px;
  -webkit-margin-before: 3.625rem;
          margin-block-start: 3.625rem;
  margin-inline: auto;
  max-width: 403px;
  max-width: 25.1875rem;
}
@media screen and (max-width: 768px) {
  .p-plan__bottom-btn {
    max-width: 22.375rem;
  }
}

.p-reservation {
  padding-block: 46px 111px;
  padding-block: 2.875rem 6.9375rem;
}

.p-rules {
  padding-block: 40px 150px;
  padding-block: 2.5rem 9.375rem;
}
@media screen and (max-width: 768px) {
  .p-rules {
    padding-block: 1.875rem 3.75rem;
  }
}

.p-rules__ttl {
  word-break: keep-all;
  word-wrap: anywhere;
}
@media screen and (max-width: 768px) {
  .p-rules__ttl {
    max-width: unset;
    width: 100%;
  }
}

.p-rules__section + .p-rules__section {
  -webkit-margin-before: 50px;
          margin-block-start: 50px;
  -webkit-margin-before: 3.125rem;
          margin-block-start: 3.125rem;
}
@media screen and (max-width: 768px) {
  .p-rules__section + .p-rules__section {
    -webkit-margin-before: 2.5rem;
            margin-block-start: 2.5rem;
  }
}

.p-rules__content {
  -webkit-margin-before: 30px;
          margin-block-start: 30px;
  -webkit-margin-before: 1.875rem;
          margin-block-start: 1.875rem;
  padding-inline: 8px;
  padding-inline: 0.5rem;
}
@media screen and (max-width: 768px) {
  .p-rules__content {
    padding-inline: 0.25rem;
  }
}

.p-rules__item + .p-rules__item {
  -webkit-margin-before: 28px;
          margin-block-start: 28px;
  -webkit-margin-before: 1.75rem;
          margin-block-start: 1.75rem;
}
@media screen and (max-width: 768px) {
  .p-rules__item + .p-rules__item {
    -webkit-margin-before: 1.25rem;
            margin-block-start: 1.25rem;
  }
}

.p-rules__item-ttl {
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-rules__item-ttl {
    font-size: 1.125rem;
    line-height: 1.6666666667;
    white-space: nowrap;
  }
}

.p-rules__item-txt {
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-rules__item-txt {
    font-size: 1.125rem;
    line-height: 1.6666666667;
  }
}

.p-rules__detail-list {
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-rules__detail-list {
    padding-left: 0.1em;
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.p-rules__detail-item {
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: -0.01em;
  line-height: 1.7;
}
@media screen and (max-width: 768px) {
  .p-rules__detail-item {
    font-size: 0.875rem;
    line-height: 1.8;
  }
}

.p-rules__detail-item::before {
  content: "・";
  display: inline-block;
}

.p-rules__detail-item:not(:first-child) {
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
  -webkit-margin-before: 0.3125rem;
          margin-block-start: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-rules__detail-item:not(:first-child) {
    -webkit-margin-before: 0.625rem;
            margin-block-start: 0.625rem;
  }
}

.p-rules__item-note-ttl {
  color: var(--black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  -webkit-margin-before: 5px;
          margin-block-start: 5px;
  -webkit-margin-before: 0.3125rem;
  display: flex;
          margin-block-start: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .p-rules__item-note-ttl {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-rules__item-note-ttl::before {
  content: "■";
  display: inline-block;
}

.p-rules__item-note-ttl.p-rules__item-note-ttl--large {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-rules__item-note-ttl.p-rules__item-note-ttl--large {
    font-size: 1rem;
    line-height: 1.5;
  }
}

.p-rules__item-note-txt {
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  -webkit-margin-before: 10px;
          margin-block-start: 10px;
  -webkit-margin-before: 0.625rem;
          margin-block-start: 0.625rem;
}
@media screen and (max-width: 768px) {
  .p-rules__item-note-txt {
    font-size: 0.875rem;
    line-height: 1.5;
  }
}

.p-rules__detail-sublist {
  margin-block: 6px;
  margin-block: 0.375rem;
  padding-left: 1em;
}
@media screen and (max-width: 768px) {
  .p-rules__detail-sublist {
    margin-block: 0.25rem;
  }
}

.p-rules__detail-sublist.p-rules__detail-sublist--space {
  padding-left: 2em;
}
@media screen and (max-width: 768px) {
  .p-rules__detail-sublist.p-rules__detail-sublist--space {
    padding-left: 0.8em;
    -webkit-margin-before: 0.25rem;
            margin-block-start: 0.25rem;
  }
}

.p-rules__detail-subitem {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  color: var(--black);
  font-family: var(--font-meiryo-r);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5555555556;
  -webkit-margin-after: 2px;
          margin-block-end: 2px;
  -webkit-margin-after: 0.125rem;
          margin-block-end: 0.125rem;
}
@media screen and (max-width: 768px) {
  .p-rules__detail-subitem {
    font-size: 0.875rem;
    line-height: 1.6428571429;
  }
}

.p-rules__detail-subitem::before {
  content: "▢";
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  vertical-align: middle;
}

@media screen and (max-width: 768px) {
  .u-pc {
    display: none;
  }
}

.u-sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .u-sp {
    display: block;
  }
}

.u-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-tab {
    display: block;
  }
}

@media screen and (max-width: 600px) {
  .u-tabpc {
    display: none;
  }
}
/*# sourceMappingURL=common.css.map */