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

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

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

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[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;
}

/* fade */
.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/* fadeup */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* flipleft */
.flipLeftTop {
  -webkit-animation-name: flipLeftTopAnime;
          animation-name: flipLeftTopAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipLeftTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(-15deg);
            transform: translate(-20px, 80px) rotate(-15deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 0) rotate(0deg);
            transform: translate(0, 0) rotate(0deg);
    opacity: 1;
  }
}
/* flipright */
.flipRightTop {
  -webkit-animation-name: flipRightTopAnime;
          animation-name: flipRightTopAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes flipRightTopAnime {
  from {
    -webkit-transform: translate(-20px, 80px) rotate(25deg);
            transform: translate(-20px, 80px) rotate(25deg);
    opacity: 0;
  }
  to {
    -webkit-transform: translate(0, 1) rotate(0deg);
            transform: translate(0, 1) rotate(0deg);
    opacity: 1;
  }
}
/* zoom */
.zoomIn {
  -webkit-animation-name: zoomInAnime;
          animation-name: zoomInAnime;
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes zoomInAnime {
  from {
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
    opacity: 0;
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger,
.zoomInTrigger,
.flipLeftTopTrigger,
.flipRightTopTrigger {
  opacity: 0;
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time07 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.delay-time1 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

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

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

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

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

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

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

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

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

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

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

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

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

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * 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. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

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

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

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

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

/*------------------------------------------------------------------------------
  Base
------------------------------------------------------------------------------*/
html,
input,
textarea,
select,
button {
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, sans-serif;
  font-weight: 500;
  font-size: 16px;
}

html {
  color: #434343;
  background: #fff;
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  word-break: break-all;
}

body {
  background: #fff;
  margin: 0;
}

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

img {
  border: 0;
  margin: 0;
  vertical-align: top;
  max-width: 100%;
}

p {
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}

a {
  color: inherit;
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

input,
select,
textarea,
button,
figure {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: vertical;
}

::-webkit-input-placeholder {
  color: #c3c3c3;
}

:-ms-input-placeholder {
  color: #c3c3c3;
}

::-ms-input-placeholder {
  color: #c3c3c3;
}

::-moz-placeholder {
  color: #c3c3c3;
}

::placeholder {
  color: #c3c3c3;
}

button {
  border: none;
  cursor: pointer;
}

label {
  cursor: pointer;
}

table {
  border-collapse: collapse;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  padding: 0;
}

main {
  display: block;
}

#wrapper {
  position: relative;
  overflow: hidden;
}

dl, dt, dd {
  padding: 0;
  margin: 0;
}

.c-svg {
  display: inline-block;
  fill: currentColor;
  vertical-align: top;
}

/*------------------------------------------------------------------------------
  Base SP
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  Base PC
------------------------------------------------------------------------------*/
/*------------------------------------------------------------------------------
  リキッドレイアウト対応
------------------------------------------------------------------------------*/
html {
  font-size: 16px;
}

/* --------------------------------
l-inner
----------------------------------- */
*[class*=l-inner-] {
  margin: 0 auto;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
}

.l-inner-max {
  max-width: 87.5rem;
}

.l-inner-lg {
  max-width: 67.5rem;
}

.l-inner-md {
  max-width: 56rem;
}

/* --------------------------------
c-header
----------------------------------- */
.c-header {
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 1000;
}
.c-header__inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: 3.875rem;
  padding: 0 0.9375rem;
}
.c-header__openbtn {
  width: 1.57875rem;
  height: 100%;
  position: relative;
}
.c-header__openbtn span {
  display: inline-block;
  width: 100%;
  height: 0.125rem;
  position: absolute;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  background-color: #FD9F6E;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-header__openbtn span:nth-of-type(1) {
  margin-top: -0.4375rem;
}
.c-header__openbtn span:nth-of-type(3) {
  margin-top: 0.4375rem;
}
.js-g-nav-active .c-header__openbtn span {
  background-color: #fff;
}
.js-g-nav-active .c-header__openbtn span:nth-of-type(1) {
  margin-top: 0;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.js-g-nav-active .c-header__openbtn span:nth-of-type(2) {
  opacity: 0;
}
.js-g-nav-active .c-header__openbtn span:nth-of-type(3) {
  margin-top: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

/* --------------------------------
c-g-nav
----------------------------------- */
.c-g-nav {
  position: fixed;
  top: 0;
  left: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
  background-color: rgba(253, 159, 110, 0.8);
  -webkit-backdrop-filter: blur(30px);
          backdrop-filter: blur(30px);
  color: #fff;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 6.25rem 2.125rem 1.84375rem;
}
.c-g-nav__top {
  width: 100%;
}
.c-g-nav__list {
  width: 100%;
}
.c-g-nav__list li a {
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 1rem;
  padding: 0.625rem 0;
}
.c-g-nav__reserve-btn {
  display: block;
  width: 100%;
  background-color: #92C865;
  border-radius: 1.625rem;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1rem;
  padding: 0.71875rem 4.375rem 0.71875rem 2.5625rem;
  background-image: url(../img/common/icon-reserve.png);
  background-repeat: no-repeat;
  background-size: 1.3875rem;
  background-position: right 2.375rem center;
  margin-top: 2.8125rem;
}
.c-g-nav__sns {
  padding-top: 3.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
}
.c-g-nav__sns a {
  padding-right: 1.0625rem;
}
.c-g-nav__sns a:last-child {
  padding-right: 0;
}
.c-g-nav__sns .link_01 img {
  width: 1.355625rem;
}
.c-g-nav__sns .link_02 img {
  width: 1.37625rem;
}
.c-g-nav__btm {
  margin-top: auto;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-g-nav__logo img {
  width: 14.435rem;
}
.c-g-nav__copyright {
  font-size: 0.625rem;
  padding-top: 1.5625rem;
}

.js-g-nav-active .c-g-nav {
  visibility: visible;
  opacity: 1;
}

/* --------------------------------
c-btn
----------------------------------- */
.c-btn {
  display: inline-block;
  width: 100%;
  max-width: 100%;
  background-color: #92C865;
  border-radius: 2.5rem;
  color: #fff;
  text-align: center;
  padding: 1.3625rem 1.25rem;
}
.c-btn_orange {
  background-color: #FD9F6E;
}

/* --------------------------------
c-footer
----------------------------------- */
.c-footer {
  background-color: #FD9F6E;
  color: #fff;
}
.c-footer__inner {
  padding-top: 3.125rem;
  padding-bottom: 4.375rem;
}
.c-footer__row {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-footer__logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-footer__logo img {
  width: 11.7825rem;
}
.c-footer__menu {
  padding-top: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.c-footer__list {
  padding-right: 1.875rem;
}
.c-footer__list:last-child {
  padding-right: 0;
}
.c-footer__list li {
  font-family: "Zen Maru Gothic", sans-serif;
  letter-spacing: 0.025em;
  margin-top: 0.625rem;
}
.c-footer__sns {
  padding-top: 1.875rem;
}
.c-footer__sns a {
  padding-right: 0.9375rem;
}
.c-footer__sns a:last-child {
  padding-right: 0;
}
.c-footer__sns .link_01 img {
  width: 1.355625rem;
}
.c-footer__sns .link_02 img {
  width: 1.37625rem;
}
.c-footer__copyright {
  display: block;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.025em;
  padding-top: 3.125rem;
}

/* -----------------------------------------------
* Modules エントリーポイント
-------------------------------------------------- */
.p-home-mv {
  background-color: #FFFAFA;
}
.p-home-mv__inner {
  width: 100%;
  height: 100vh;
  padding: 0.71875rem 0.9375rem 0;
  position: relative;
}
.p-home-mv__logo img {
  width: 5.25rem;
}
.p-home-mv__slider {
  margin-top: 1.4375rem;
}
.p-home-mv .mv-slider {
  border-top-left-radius: 3.125rem;
  overflow: hidden;
}
.p-home-mv .mv-slider__img {
  width: 100%;
  padding-top: calc(100vh - 10.1875rem);
  position: relative;
}
.p-home-mv .mv-slider__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  100% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}
.p-home-mv .mv-slider .add-animation {
  -webkit-animation: zoomUp 8s 0s forwards;
          animation: zoomUp 8s 0s forwards;
}
.p-home-mv__copy {
  position: absolute;
  top: 18.5rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  left: 0.3125rem;
}
.p-home-mv__copy span {
  display: inline-block;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
  line-height: 2.1;
  letter-spacing: 0.05em;
  color: #FD9F6E;
  position: relative;
  padding: 0 0.625rem 0 0.625rem;
}
.p-home-mv__copy span.row02 {
  margin-top: -0.625rem;
}
.p-home-mv__copy .bgextend {
  -webkit-animation-name: bgextendAnimeBase;
          animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.p-home-mv__copy .bgTBextend::before {
  -webkit-animation-name: bgTBextendAnime;
          animation-name: bgTBextendAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #fff;
  border-radius: 2.3125rem;
  z-index: -1;
}
@-webkit-keyframes bgTBextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
@keyframes bgTBextendAnime {
  0% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
  }
  100% {
    -webkit-transform-origin: left;
            transform-origin: left;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
  }
}
.p-home-mv__news {
  width: 95.75%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: 1px solid #92C865;
  border-bottom: 1px solid #92C865;
  padding: 0.625rem 1.25rem;
  background-color: #fff;
  position: relative;
  z-index: 10;
  margin-top: -1.6875rem;
}
.p-home-mv__news .ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: bold;
  font-size: 1.25rem;
  letter-spacing: 0.05em;
  color: #92C865;
  padding-right: 2.8125rem;
}

.p-home-sec01 {
  background-color: #FFFAFA;
  position: relative;
  z-index: 10;
}
.p-home-sec01__inner {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
  position: relative;
  z-index: 20;
}
.p-home-sec01__ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #FD9F6E;
  font-size: 1.625rem;
  line-height: 1.666;
  position: relative;
}
.p-home-sec01__ttl span {
  position: absolute;
  font-size: 1.1875rem;
  top: -1.875rem;
  padding: 0 0.625rem;
}
.p-home-sec01__ttl span::before, .p-home-sec01__ttl span::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 0.9375rem;
  background-color: #FD9F6E;
  position: absolute;
  bottom: 0;
}
.p-home-sec01__ttl span::before {
  -webkit-transform: rotate(-33deg);
          transform: rotate(-33deg);
  left: 0;
}
.p-home-sec01__ttl span::after {
  -webkit-transform: rotate(33deg);
          transform: rotate(33deg);
  right: 0;
}
.p-home-sec01__txt {
  line-height: 2.2666;
  padding-top: 1.25rem;
}
.p-home-sec01__right {
  padding-top: 1.25rem;
}
.p-home-sec01__wave-mask {
  position: absolute;
  bottom: -15rem;
  z-index: 10;
}

.p-home-sec02 {
  background-color: #F6FFEF;
  position: relative;
  z-index: 20;
  background-image: url(../img/home/bg-sec02-txt.png);
  background-repeat: no-repeat;
  background-size: 25rem;
  background-position: left top;
}
.p-home-sec02__inner {
  padding-top: 7.5rem;
}
.p-home-sec02 .item + .item {
  margin-top: 3.125rem;
}
.p-home-sec02 .item__ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #92C865;
  border-top: 1px solid #92C865;
  border-bottom: 1px solid #92C865;
  padding: 0.5rem 0;
}
.p-home-sec02 .item__ttl .txt {
  font-size: 1.25rem;
  letter-spacing: 0.05em;
}
.p-home-sec02 .item__ttl .yen {
  font-size: 1rem;
  position: relative;
  display: block;
  text-align: right;
}
.p-home-sec02 .item__ttl .yen::before {
  content: "";
  display: inline-block;
  background-image: linear-gradient(to right, #92C865 2px, transparent 2px);
  background-size: 0.3125rem 0.0625rem;
  background-position: left bottom;
  background-repeat: repeat-x;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 4.375rem;
  width: 7.25rem;
  height: 1px;
}
.p-home-sec02 .item__wrap {
  padding-top: 1.25rem;
}
.p-home-sec02 .item__txt {
  line-height: 2.125;
}
.p-home-sec02 .item__txt + .item__txt {
  padding-top: 0.625rem;
}
.p-home-sec02 .item__btn-wrap {
  padding-top: 1.25rem;
}
.p-home-sec02 .item__right {
  padding-top: 1.25rem;
}
.p-home-sec02 .item__white-wrap {
  background-color: #fff;
  border-radius: 1.25rem;
  padding: 0 0.625rem;
  margin-top: 1.25rem;
}
.p-home-sec02 .item__white-wrap .col {
  background-image: linear-gradient(to right, #92C865 2px, transparent 2px);
  background-size: 0.3125rem 0.0625rem;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-top: 1.5625rem;
  padding-bottom: 1.5625rem;
}
.p-home-sec02 .item__white-wrap .col:last-child {
  background-image: none;
}
.p-home-sec02 .item__white-wrap .col p {
  padding: 0 1.25rem;
}
.p-home-sec02 .item__spec {
  padding-top: 1.375rem;
}
.p-home-sec02__caution {
  line-height: 2.285;
  padding-top: 3.125rem;
}
.p-home-sec02__caution .list li {
  position: relative;
  letter-spacing: 0.05em;
  padding-left: 0.9375rem;
}
.p-home-sec02__caution .list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-home-sec02__btm-img {
  padding-top: 1.25rem;
  padding-right: 15px;
  padding-left: 15px;
  padding-bottom: 3.125rem;
}
.p-home-sec02__btm-img img {
  width: 68.9375rem;
}

.p-home-sec03__inner {
  background-image: url(../img/home/bg-sec03.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 3.125rem 0.625rem;
}
.p-home-sec03__item {
  background-color: #fff;
  border-radius: 3.125rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.25rem 0.625rem;
}
.p-home-sec03__item .ttl {
  color: #FD9F6E;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.25rem;
}
.p-home-sec03__item .txt {
  padding-top: 1.25rem;
}
.p-home-sec03__item .btn-wrap {
  width: 100%;
  padding-top: 1.25rem;
}
.p-home-sec03__item .btn-wrap .c-btn {
  padding: 0.703125rem 1.25rem;
}

.p-home-sec04__inner {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.p-home-sec04__ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #FD9F6E;
  font-size: 1.875rem;
  letter-spacing: 0.05em;
}
.p-home-sec04__item-wrap {
  width: 44rem;
  max-width: 100%;
}
.p-home-sec04__item {
  padding: 1.25rem 0;
  border-bottom: 1px solid #FD9F6E;
}
.p-home-sec04__item .data {
  color: #FD9F6E;
}
.p-home-sec04__item .ttl {
  padding-top: 0.3125rem;
}

.p-home-sec05 {
  background-color: #FFFAFA;
}
.p-home-sec05__inner {
  padding-top: 3.125rem;
  padding-bottom: 3.125rem;
}
.p-home-sec05__ttl {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #FD9F6E;
  font-size: 1.25rem;
  font-weight: bold;
}
.p-home-sec05__info .wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.625rem;
  line-height: 2.1;
}
.p-home-sec05__info .head {
  width: 6.25rem;
  position: relative;
}
.p-home-sec05__info .head::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 1rem;
  background-color: #434343;
  position: absolute;
  right: 1.25rem;
  top: 0.4375rem;
}
.p-home-sec05__right {
  padding-top: 1.25rem;
}
.p-home-sec05__map {
  padding-top: 18.75rem;
  border-radius: 2.5rem;
  overflow: hidden;
  position: relative;
}
.p-home-sec05__map iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.p-home-sec05__link-wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: -1.25rem;
  padding-top: 3.125rem;
}
.p-home-sec05__link-wrap .link {
  width: 100%;
  height: 5.625rem;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 1.25rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 1.25rem;
}
.p-home-sec05__link-wrap .link_01 img {
  width: 12.095625rem;
}
.p-home-sec05__link-wrap .link_03 img {
  width: 12.066875rem;
}

.p-home-banner {
  width: 100%;
  position: fixed;
  z-index: 900;
  bottom: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.p-home-banner a {
  width: 50%;
  border-top-right-radius: 1.25rem;
  border-top-left-radius: 1.25rem;
  color: #fff;
  font-size: 0.75rem;
  height: 2.75rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-home-banner__link_01 {
  background-color: #FD9F6E;
  background-image: url(../img/common/icon-instagram.png);
  background-repeat: no-repeat;
  background-size: 1.273125rem;
  background-position: right 1.4375rem center;
}
.p-home-banner__link_02 {
  background-color: #92C865;
  background-image: url(../img/common/icon-reserve.png);
  background-repeat: no-repeat;
  background-size: 0.98375rem;
  background-position: right 1.23125rem center;
}

/* -----------------------------------------------
* Page エントリーポイント
-------------------------------------------------- */

@media only screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
  .sp {
    display: none !important;
  }
  a[href^="tel:"] {
    pointer-events: none;
  }
  a,
  a::before,
  a::after,
  button {
    -webkit-transition: 0.3s ease-in-out;
    transition: 0.3s ease-in-out;
  }
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 14px;
    position: relative;
    -webkit-appearance: none;
    -webkit-text-size-adjust: 100%;
  }
  #wrapper {
    min-width: 320px;
    position: relative;
    overflow: hidden;
  }
  input[type=submit] {
    -webkit-text-size-adjust: 100%;
  }
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
  .pc {
    display: none !important;
  }
}

@media (max-width: 375) {
  html {
    font-size: 4.2666666667vw;
  }
}

@media (min-width: 768px) {
  html {
    font-size: 1.4285714286vw;
  }
  *[class*=l-inner-] {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
  .c-header__inner {
    height: 5.625rem;
    padding: 0 1.25rem;
    margin-top: 0.9375rem;
  }
  .c-header__balloon {
    padding-top: 0.75rem;
    padding-right: 1.75rem;
  }
  .c-header__balloon img {
    width: 19.125rem;
  }
  .c-header__tel {
    font-family: "Zen Maru Gothic", sans-serif;
    color: #FD9F6E;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding-right: 1.875rem;
  }
  .c-header__tel .txt {
    font-weight: bold;
    font-size: 0.9375rem;
  }
  .c-header__tel .num {
    font-weight: 900;
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: 0;
  }
  .c-header__openbtn {
    width: 5.625rem;
    height: 5.625rem;
    background-color: #fff;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer;
  }
  .c-header__openbtn span {
    width: 2.131875rem;
    top: 2.125rem;
  }
  .c-header__openbtn span:nth-of-type(1) {
    margin-top: -0.5625rem;
  }
  .c-header__openbtn span:nth-of-type(3) {
    margin-top: 0.5625rem;
  }
  .c-header__openbtn::after {
    content: "MENU";
    width: 100%;
    font-family: "Zen Maru Gothic", sans-serif;
    color: #FD9F6E;
    font-size: 0.8125rem;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    position: absolute;
    bottom: 1.1875rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .js-g-nav-active .c-header__openbtn {
    background-color: #FD9F6E;
  }
  .js-g-nav-active .c-header__openbtn span:nth-of-type(1) {
    -webkit-transform: rotate(-30deg);
            transform: rotate(-30deg);
  }
  .js-g-nav-active .c-header__openbtn span:nth-of-type(3) {
    -webkit-transform: rotate(30deg);
            transform: rotate(30deg);
  }
  .c-g-nav {
    background-color: #FD9F6E;
    -webkit-backdrop-filter: blur(0px);
            backdrop-filter: blur(0px);
    width: 33.25rem;
    height: 33.6875rem;
    border-radius: 50%;
    top: -3.5rem;
    left: auto;
    right: -2.8125rem;
    padding: 9.375rem 1.875rem 0 6.625rem;
  }
  .c-g-nav__top {
    position: relative;
  }
  .c-g-nav__menu {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
  }
  .c-g-nav__list li a {
    font-size: 1.25rem;
    display: block;
    padding: 0.875rem 0;
  }
  .c-g-nav__reserve-btn {
    width: 19.1875rem;
    font-size: 1.125rem;
    margin-top: 1.4375rem;
  }
  .c-g-nav__sns {
    padding-top: 0;
    position: absolute;
    top: 9.1875rem;
    right: 7.1875rem;
  }
  .c-btn {
    width: 21.5rem;
  }
  .c-footer__inner {
    position: relative;
    padding-top: 5.1875rem;
    padding-bottom: 10.625rem;
  }
  .c-footer__row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .c-footer__logo {
    padding-right: 17rem;
    padding-top: 0.5rem;
  }
  .c-footer__menu {
    padding-top: 0;
    padding-right: 13.3125rem;
  }
  .c-footer__list {
    margin-top: -1.75rem;
    padding-right: 5rem;
  }
  .c-footer__list li {
    font-size: 1.25rem;
    margin-top: 1.75rem;
  }
  .c-footer__sns {
    padding-top: 0.5rem;
  }
  .c-footer__copyright {
    position: absolute;
    bottom: 9.6875rem;
    left: 1.25rem;
  }
  .p-home-mv__inner {
    padding: 1.625rem 1.625rem 0 19.3125rem;
    background-image: url(../img/home/bg-mv-txt.png);
    background-repeat: no-repeat;
    background-size: 79.3125rem;
    background-position: center bottom -2.5rem;
  }
  .p-home-mv__inner::after {
    content: "";
    width: 80.5625rem;
    height: 80.5625rem;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    position: absolute;
    top: -38.375rem;
    right: -21.875rem;
  }
  .p-home-mv__logo {
    position: absolute;
    top: 2.28125rem;
    left: 4.55625rem;
  }
  .p-home-mv__logo img {
    width: 11.7825rem;
  }
  .p-home-mv__slider {
    margin-top: 0;
  }
  .p-home-mv .mv-slider {
    border-radius: 3.125rem;
  }
  .p-home-mv .mv-slider__img {
    padding-top: calc(100vh - 15.375rem);
  }
  .p-home-mv__copy {
    top: 14.0625rem;
    left: 4.5625rem;
  }
  .p-home-mv__copy span {
    font-size: 2.25rem;
    padding: 0 0.9375rem 0 0.8125rem;
  }
  .p-home-mv__copy span.row02 {
    margin-top: -1.125rem;
  }
  .p-home-mv__news {
    width: 67.5rem;
    max-width: 100%;
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    margin-top: -1.0625rem;
  }
  .p-home-mv__news .ttl {
    padding-right: 3.375rem;
  }
  .p-home-mv__news .data {
    font-size: 0.875rem;
    padding-right: 0.9375rem;
  }
  .p-home-mv__news .txt {
    font-size: 0.9375rem;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
  .p-home-sec01__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 7.875rem;
    padding-bottom: 0;
  }
  .p-home-sec01__ttl {
    font-size: 2.25rem;
    padding-top: 0.625rem;
  }
  .p-home-sec01__ttl span {
    padding: 0 1.25rem;
  }
  .p-home-sec01__ttl span::before {
    left: 0.625rem;
  }
  .p-home-sec01__ttl span::after {
    right: 0.625rem;
  }
  .p-home-sec01__txt {
    font-size: 0.9375rem;
    padding-top: 2.5rem;
  }
  .p-home-sec01__right {
    padding-top: 0;
    margin-top: -13.5625rem;
  }
  .p-home-sec01__right img {
    width: 33rem;
  }
  .p-home-sec01__left {
    width: 28.75rem;
  }
  .p-home-sec02 {
    background-size: 50.625rem;
    background-position: left -0.625rem top 5.9375rem;
  }
  .p-home-sec02__inner {
    padding-top: 20.625rem;
  }
  .p-home-sec02 .item + .item {
    margin-top: 8.25rem;
  }
  .p-home-sec02 .item__ttl {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-home-sec02 .item__ttl .txt {
    padding-right: 8.4375rem;
    font-size: 1.875rem;
  }
  .p-home-sec02 .item__ttl .txt span {
    font-size: 1.5rem;
  }
  .p-home-sec02 .item__inner {
    max-width: 56rem;
    width: 100%;
    margin: 0 auto;
  }
  .p-home-sec02 .item__wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 3.625rem;
  }
  .p-home-sec02 .item__left {
    max-width: 21.5rem;
    width: 100%;
    padding-top: 1.375rem;
  }
  .p-home-sec02 .item__txt + .item__txt {
    padding-top: 2.125rem;
  }
  .p-home-sec02 .item__btn-wrap {
    padding-top: 2.6875rem;
  }
  .p-home-sec02 .item__right {
    padding-top: 0;
  }
  .p-home-sec02 .item__right img {
    width: 28.75rem;
  }
  .p-home-sec02 .item__white-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin-top: 2.3125rem;
    padding: 1.6875rem 0;
  }
  .p-home-sec02 .item__white-wrap .col {
    width: 33.333%;
    background-image: linear-gradient(to bottom, #92C865 2px, transparent 2px);
    background-size: 0.0625rem 0.3125rem;
    background-position: right top;
    background-repeat: repeat-y;
    padding-top: 0;
    padding-bottom: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-home-sec02 .item__spec {
    font-size: 0.875rem;
    letter-spacing: 0.05em;
  }
  .p-home-sec02__caution {
    width: 46.875rem;
    max-width: 100%;
    margin: 0 auto;
    font-size: 0.875rem;
    padding-top: 6.75rem;
  }
  .p-home-sec02__btm-img {
    width: 68.9375rem;
    max-width: 100%;
    margin: 0 auto;
    padding-right: 0;
    padding-left: 0;
    padding-top: 3.0625rem;
    padding-bottom: 8.3125rem;
  }
  .p-home-sec03__inner {
    padding: 1.8125rem 1.25rem 1.75rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .p-home-sec03__item {
    width: 24.4375rem;
    max-width: 100%;
    padding: 2.1875rem 0.625rem 3.125rem;
  }
  .p-home-sec03__item .ttl {
    font-size: 2.25rem;
  }
  .p-home-sec03__item .txt {
    width: 17.75rem;
    font-size: 0.9375rem;
    line-height: 2.2666;
    padding-top: 1.6875rem;
  }
  .p-home-sec03__item .btn-wrap {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding-top: 2.0625rem;
  }
  .p-home-sec03__item .btn-wrap .c-btn {
    width: 17.375rem;
  }
  .p-home-sec04__inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 3.625rem;
    padding-bottom: 5.21875rem;
  }
  .p-home-sec04__ttl {
    font-size: 3.75rem;
    padding-top: 1.375rem;
  }
  .p-home-sec04__item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 2rem 0.8125rem;
  }
  .p-home-sec04__item .data {
    padding-right: 4.75rem;
  }
  .p-home-sec04__item .ttl {
    padding-top: 0;
    font-size: 1rem;
  }
  .p-home-sec05__inner {
    padding-top: 6.3125rem;
    padding-bottom: 6.0625rem;
  }
  .p-home-sec05__row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-home-sec05__left {
    padding-top: 2.5rem;
  }
  .p-home-sec05__ttl {
    font-size: 1.625rem;
  }
  .p-home-sec05__info {
    margin-top: -0.1875rem;
    padding-top: 2.625rem;
  }
  .p-home-sec05__info .wrap {
    margin-top: 0.1875rem;
  }
  .p-home-sec05__info .head {
    width: 7.0625rem;
  }
  .p-home-sec05__right {
    width: 38.75rem;
    max-width: 100%;
    padding-top: 0;
  }
  .p-home-sec05__map {
    padding-top: 23.1375rem;
  }
  .p-home-sec05__link-wrap {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    padding-top: 8.125rem;
  }
  .p-home-sec05__link-wrap .link {
    height: 6.5rem;
    width: 21.5rem;
    margin-top: 0;
    margin-right: 1.5rem;
  }
  .p-home-sec05__link-wrap .link:last-child {
    margin-right: 0;
  }
  .p-home-banner {
    width: 3.5rem;
    right: 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    bottom: 4.5625rem;
  }
  .p-home-banner a {
    border-top-right-radius: 0;
    border-bottom-left-radius: 1.25rem;
    width: 3.5rem;
    height: 14.8125rem;
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
    writing-mode: vertical-rl;
    font-size: 1rem;
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    letter-spacing: 0.2em;
  }
  .p-home-banner__link_01 {
    background-position: center bottom 0.9375rem;
    padding: 2.5rem 0;
  }
  .p-home-banner__link_02 {
    background-position: center bottom 1.225rem;
    padding: 1.875rem 0;
  }
}

@media (min-width: 1120px) {
  html {
    font-size: 16px;
  }
}

@media only screen and (max-width: 374px) {
  .c-g-nav {
    padding: 6.25rem 1.25rem;
  }
  .p-home-banner a {
    padding: 0.625rem;
  }
}

@media only screen and (max-width: 375px) {
  .c-g-nav__reserve-btn {
    padding: 0.828125rem 3.125rem 0.828125rem 1.25rem;
    background-position: right 1.25rem center;
  }
}

@media only screen and (min-width: 1400px) {
  .p-home-sec01__wave-mask {
    display: none;
  }
}

@media only screen and (max-width: 500px) {
  .p-home-banner a {
    -webkit-box-pack: start;
    -webkit-justify-content: start;
        -ms-flex-pack: start;
            justify-content: start;
    padding: 0.625rem 1.25rem;
  }
}