@charset "UTF-8";
/* ==================================================
[Style]
    1. setting
	2. foundation
	3. Layout
	4. object

================================================== */
/* --------------------------------------------------
	1. setting
-------------------------------------------------- */
/* mixins */
/* functions */
/* typography */
/* media-query */
/* variables */
/* animation */
@-webkit-keyframes rotate-62395748 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}
@keyframes rotate-62395748 {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
  }
}

@-webkit-keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-60deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-60deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@keyframes flipRightAnime {
  from {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(-60deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(-60deg);
    opacity: 0;
  }
  to {
    -webkit-transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    transform: perspective(600px) translate3d(0, 0, 0) rotateY(0deg);
    opacity: 1;
  }
}

@-webkit-keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes bgextendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes bgextendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes bgLRextendAnime {
  0% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: right;
    transform-origin: right;
  }
  100% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@-webkit-keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

@keyframes bgRLextendAnime {
  0% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
  50% {
    -webkit-transform-origin: right;
    transform-origin: right;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
  }
  50.001% {
    -webkit-transform-origin: left;
    transform-origin: left;
  }
  100% {
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
  }
}

/* --------------------------------------------------
	2. foundation
-------------------------------------------------- */
/* reset */
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, main, menu, nav, section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote::before, blockquote::after,
q::before, q::after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

/* base */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  color: #111111;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.8;
  word-break: normal;
  overflow-wrap: normal;
  word-wrap: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

a {
  color: #000;
  outline: none;
  word-break: break-all;
  overflow-wrap: break-word;
  word-wrap: break-word;
  text-decoration: none;
  cursor: pointer;
}

ul, ol {
  list-style: none;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input, textarea, select {
  font-size: 1rem;
}

/* --------------------------------------------------
	3. Layout
-------------------------------------------------- */
/* header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}

.l-header__inner {
  margin: 0 auto;
}

.l-header__container {
  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;
  gap: 2rem;
  height: 120px;
  position: relative;
}

.l-header__logo {
  top: 25px;
  left: 45px;
  z-index: 1;
  position: absolute;
  width: 23.125rem;
}

.l-header__menu {
  display: none;
  position: absolute;
  background-color: #fff;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
}

.l-header__nav-container {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 100%;
  padding: 120px 0 5rem;
  overflow-y: scroll;
}

.l-header__nav {
  margin-left: auto;
  width: 720px;
  height: auto;
  padding: 0 6.25rem;
}

.l-header__nav-item {
  width: 100%;
}

.l-header__nav-item:not(:last-child) {
  margin-bottom: 1.25rem;
}

.l-header__nav-link {
  display: block;
  font-weight: bold;
  font-size: 2.25rem;
}

.l-header__nav-link[target="_blank"]:after {
  width: 22px;
  height: 20px;
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.625rem;
  background: url(../assets/images/common/icon-blank.svg) no-repeat center/contain;
}

.l-header__nav-link strong {
  margin-right: 1.25rem;
}

.l-header__nav-link span {
  color: #1789e5;
  font-size: 1rem;
  display: inline-block;
}

.l-header__nav-sub-item {
  position: relative;
  width: 100%;
  position: relative;
}

.l-header__nav-sub-item-link {
  white-space: nowrap;
  line-height: 1.5;
  font-size: 1.5rem;
  font-weight: bold;
  position: relative;
  padding-left: 1.875rem;
}

.l-header__nav-sub-item-link::before {
  content: "";
  width: 15px;
  height: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  border-bottom: 3px dotted #000;
}

.l-header__nav-sub-item-link[target="_blank"]:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 22px;
  height: 20px;
  margin-left: 0.625rem;
  background: url(../assets/images/common/icon-blank.svg) no-repeat center/contain;
}

.l-header__nav-sub-item-link span {
  color: #1789e5;
  font-size: 0.875rem;
  display: inline-block;
  margin-left: 0.625rem;
}

.l-header__nav-language {
  display: none;
}

.l-header__language {
  position: absolute;
  top: 45px;
  right: 150px;
}

.l-language {
  width: 130px;
}

.l-language__button {
  width: 130px;
  height: 30px;
  border-radius: 999px;
  line-height: 30px;
  padding: 0 1.25rem;
  color: #fff;
  font-size: 0.8125rem;
  font-weight: bold;
  text-align: left;
  white-space: nowrap;
  overflow: visible;
  border: none;
  cursor: pointer;
  background-color: #111111;
  -webkit-box-shadow: 0 0 2px #fff;
  box-shadow: 0 0 2px #fff;
  position: relative;
}

.l-language__button :focus-visible {
  background: #111111;
}

.l-language__button::after {
  content: "";
  width: 12px;
  height: 20px;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  position: absolute;
  background: url(../assets/images/common/icon_arrow_white.png) no-repeat center/contain;
}

.l-language__content {
  display: none;
  width: 100%;
  margin-top: 2px;
  padding: 0.625rem;
  border-radius: 10px;
  background-color: #111111;
  -webkit-box-shadow: 0 0 2px #fff;
  box-shadow: 0 0 2px #fff;
}

.l-language__content a {
  color: #fff;
  display: block;
  font-size: 0.8125rem;
}

.l-language__content a::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-right: 0.3125rem;
  border-radius: 50%;
  display: inline-block;
  vertical-align: middle;
  background-color: #fff;
  border: 2px solid #fff;
}

.l-language__content a.is-active::before {
  background-color: #000;
}

.l-hum {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #111111;
  -webkit-box-shadow: 0 0 2px #fff;
  box-shadow: 0 0 2px #fff;
  position: absolute;
  top: 30px;
  right: 60px;
  border: none;
}

.l-hum span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background-color: #fff;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
}

.l-hum span:nth-child(1) {
  top: calc( 50% - 7px);
}

.l-hum span:nth-child(2) {
  top: calc( 50% + 7px);
}

.l-hum span:nth-child(3) {
  top: calc( 50%);
}

.l-hum.is-active span {
  width: 30px;
}

.l-hum.is-active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

.l-hum.is-active span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg);
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.l-hum.is-active span:nth-child(3) {
  display: none;
}

@media all and (min-width: 1281px), print {
  .l-header__img {
    height: calc(100% - 120px);
    top: 120px;
    left: 0;
    position: absolute;
    width: calc(100% - 720px);
    border-top-right-radius: 60px;
    overflow: hidden;
  }
  .l-header__img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .l-header__nav-img {
    opacity: 0;
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
    top: 120px;
    left: 0;
    z-index: 1;
    position: absolute;
    width: calc(100% - 720px);
    height: calc(100% - 120px);
    border-top-right-radius: 60px;
    overflow: hidden;
  }
  .l-header__nav-img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
  .l-header__nav-item:hover > .l-header__nav-img {
    opacity: 1;
  }
  .l-header__nav-link::after {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
  .l-header__nav-link:hover::after {
    margin-left: 1.75rem;
  }
  .l-header__nav-link:hover[target="_blank"]:after {
    margin-left: 1.25rem;
  }
  .l-header__nav-sub-item-link::after {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
  .l-header__nav-sub-item-link:hover::after {
    margin-left: 1.75rem;
  }
  .l-header__nav-sub-item-link:hover[target="_blank"]:after {
    margin-left: 1.25rem;
  }
}

@media only screen and (max-width: 1280px) {
  .l-header__container {
    height: 90px;
  }
  .l-header__logo {
    top: 20px;
    left: 15px;
    width: 270px;
    max-width: calc(100% - 100px);
  }
  .l-header__language {
    display: none;
  }
  .l-header__img {
    display: none;
  }
  .l-header__nav {
    width: 100%;
    padding: 0;
  }
  .l-header__nav-img {
    display: none;
  }
  .l-header__nav-list {
    padding-left: 0.625rem;
  }
  .l-header__nav-item:not(:last-child) {
    margin-bottom: 0.9375rem;
  }
  .l-header__nav-link {
    font-size: 1.375rem;
  }
  .l-header__nav-link[target="_blank"]:after {
    width: 12px;
    height: 10px;
  }
  .l-header__nav-link strong {
    margin-right: 0.625rem;
  }
  .l-header__nav-link span {
    font-size: 0.75rem;
  }
  .l-header__nav-sub-item {
    position: relative;
    width: 100%;
    position: relative;
  }
  .l-header__nav-sub-item-link {
    font-size: 1.125rem;
  }
  .l-header__nav-sub-item-link[target="_blank"]:after {
    width: 12px;
    height: 10px;
  }
  .l-header__nav-sub-item-link span {
    font-size: 0.625rem;
  }
  .l-header__nav-language {
    margin-top: 3.125rem;
    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;
  }
  .l-header__nav-container {
    padding: 6.25rem 1.25rem 5rem;
  }
  .l-language {
    width: 220px;
  }
  .l-language__button {
    width: 220px;
    height: 40px;
    line-height: 40px;
    padding: 0 3.125rem;
    font-size: 0.875rem;
  }
  .l-language__button::after {
    right: 30px;
  }
  .l-language__content {
    margin-top: 0.25rem;
    padding: 1.25rem;
  }
  .l-language__content a {
    font-size: 0.875rem;
  }
  .l-language__content a::before {
    margin-right: 0.625rem;
  }
  .l-hum {
    width: 50px;
    height: 50px;
    top: 20px;
    right: 20px;
  }
  .l-hum span {
    width: 18px;
    height: 2px;
  }
  .l-hum span:nth-child(1) {
    top: calc( 50% - 5px);
  }
  .l-hum span:nth-child(2) {
    top: calc( 50% + 5px);
  }
  .l-hum.is-active span {
    width: 25px;
  }
}

/* footer */
.l-footer {
  margin-top: 13.75rem;
  padding: 3.75rem 0;
  position: relative;
}

.l-footer::before {
  content: "";
  height: 4px;
  top: 0;
  left: 0;
  right: 0;
  position: absolute;
  background: -webkit-linear-gradient(355deg, #1789e5 0%, #5dc1d1 100%);
  background: linear-gradient(95deg, #1789e5 0%, #5dc1d1 100%);
}

.l-footer__container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-footer__info {
  width: 50%;
}

.l-footer__info-logo {
  width: 480px;
  max-width: 100%;
  margin-bottom: 1.875rem;
}

.l-footer__info-name {
  font-weight: bold;
}

.l-footer__info-indent3 {
  line-height: 1.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-footer__info-indent3 span {
  min-width: 65px;
}

.l-footer__info-indent4 {
  line-height: 1.6;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.l-footer__info-indent4 span {
  min-width: 80px;
}

.l-footer__sitemap {
  padding: 1.875rem 0 0 1.875rem;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  max-width: 480px;
  gap: 0 1.25rem;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.l-footer__sitemap-link {
  white-space: nowrap;
  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;
  font-weight: bold;
  margin-bottom: 0.1875rem;
}

.l-footer__sitemap-link::after {
  content: "";
  width: 12px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1.25rem;
  background: url(../assets/images/common/icon_arrow.png) no-repeat center/contain;
}

.l-footer__sitemap-link[target="_blank"]:after {
  width: 16px;
  height: 14px;
  margin-left: 0.625rem;
  background: url(../assets/images/common/icon-blank.svg) no-repeat center/contain;
}

.l-footer__sitemap-link span {
  margin-left: 1rem;
  color: #1789e5;
  font-size: 0.875rem;
  display: inline-block;
}

.l-footer__sitemap-sub-link {
  white-space: nowrap;
  font-size: 0.875rem;
  font-weight: bold;
  position: relative;
  padding-left: 1.875rem;
}

.l-footer__sitemap-sub-link::before {
  content: "";
  width: 15px;
  height: 4px;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  border-bottom: 3px dotted #000;
}

.l-footer__sitemap-sub-link::after {
  content: "";
  width: 12px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-left: 1.25rem;
  background: url(../assets/images/common/icon_arrow.png) no-repeat center/contain;
}

.l-footer__sitemap-sub-link[target="_blank"]:after {
  width: 16px;
  height: 14px;
  margin-left: 0.625rem;
  background: url(../assets/images/common/icon-blank.svg) no-repeat center/contain;
}

.l-footer__sitemap-sub-link span {
  margin-left: 0.5rem;
  color: #1789e5;
  font-size: 0.75rem;
  display: inline-block;
}

.l-footer__copyright {
  margin-top: 3.125rem;
  font-size: 0.75rem;
}

@media all and (min-width: 1281px), print {
  .l-footer__sitemap-list {
    min-width: 200px;
  }
  .l-footer__sitemap-link::after {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
  .l-footer__sitemap-link:hover::after {
    margin-left: 1.75rem;
  }
  .l-footer__sitemap-link:hover[target="_blank"]:after {
    margin-left: 1.25rem;
  }
  .l-footer__sitemap-sub-link::after {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
  .l-footer__sitemap-sub-link:hover::after {
    margin-left: 1.75rem;
  }
  .l-footer__sitemap-sub-link:hover[target="_blank"]:after {
    margin-left: 1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .l-footer {
    margin-top: 6.25rem;
    padding: 3.125rem 0 1.25rem;
  }
  .l-footer__container {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .l-footer__info {
    width: 100%;
  }
  .l-footer__info-logo {
    margin-bottom: 0.9375rem;
  }
  .l-footer__sitemap {
    padding-left: 0;
  }
  .l-footer__sitemap .l-footer__sitemap-list {
    display: none;
  }
  .l-footer__sitemap .u-mt-40 {
    margin-top: 0;
  }
  .l-footer__copyright {
    margin-top: 2.5rem;
    text-align: center;
  }
}

/* main */
.l-inner {
  margin: 0 auto;
  padding: 0 20px;
  width: 1240px;
  max-width: 100%;
  height: inherit;
}

.l-inner.--wide {
  width: 1400px;
}

.l-inner.--narrow {
  width: 1000px;
}

.l-article {
  position: relative;
}

.l-container {
  position: relative;
}

@media only screen and (max-width: 767px) {
  .l-inner {
    padding: 0 20px;
  }
}

/* --------------------------------------------------
	4. object
-------------------------------------------------- */
/* component */
.c-button {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  min-width: 380px;
  min-height: 60px;
  padding: 0 1.25rem;
  border-radius: 999px;
  position: relative;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  background: -webkit-gradient(linear, right top, left top, from(#1789e5), color-stop(25%, #5dc1d1), color-stop(51%, #5dc1d1), to(#1789e5));
  background: -webkit-linear-gradient(right, #1789e5 0%, #5dc1d1 25%, #5dc1d1 51%, #1789e5 100%);
  background: linear-gradient(270deg, #1789e5 0%, #5dc1d1 25%, #5dc1d1 51%, #1789e5 100%);
  background-position: 20% 1%;
  background-size: 200% auto;
  border: none;
  cursor: pointer;
}

.c-button::after {
  content: "";
  width: 12px;
  height: 20px;
  top: 50%;
  position: absolute;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 1.75rem;
  background: url(../assets/images/common/icon_arrow_white.png) no-repeat center/contain;
}

.c-button[target="_blank"]:after {
  width: 22px;
  height: 16px;
  margin-left: 0.625rem;
  background: url(../assets/images/common/icon-blank_white.svg) no-repeat center/contain;
}

.c-button[href*=".pdf"]:after {
  content: "PDF";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  width: 40px;
  height: 20px;
  font-size: 0.75rem;
  margin-left: 0.375rem;
  background: red;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

.c-button.--bg-white {
  color: #1789e5;
  background: #fff;
}

.c-button.--bg-white::after {
  background-image: url(../assets/images/common/icon_arrow.png);
}

.c-button.--bg-white[target="_blank"]:after {
  background-image: url(../assets/images/common/icon-blank.svg);
}

.c-button.u-nolink {
  pointer-events: none;
}

@media all and (min-width: 1281px), print {
  .c-button {
    -webkit-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
  }
  .c-button:hover {
    background-position: 99% 80%;
  }
  .c-button.--bg-white:hover {
    background: #fff;
    opacity: .7;
  }
}

@media only screen and (max-width: 767px) {
  .c-button {
    min-width: 310px;
  }
}

.c-form-input-text, .c-form-input-email {
  width: 100%;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 0.375rem 0;
}

.c-form-input-text.--half, .c-form-input-email.--half {
  width: calc(50% - 0.5rem);
}

.c-form-input-text, .c-form-input-email, .c-form-input-tel, .c-form-input-address, .c-form-input-number, .c-form-input-checkbox, .c-form-input-radio, .c-form-label-date, .c-form-select {
  border: 1px solid #b3b3b3;
}

.c-form-input-tel,
.c-form-input-address {
  width: 200px;
  padding: 10px 15px;
  border-radius: 5px;
  margin: 0.375rem 0;
}

.c-form-input-number {
  width: 100px;
  border-radius: 5px;
  padding: 10px 20px;
}

.c-form-label {
  display: inline-block;
  position: relative;
}

.c-form-label:not(:last-child) {
  margin-right: 0.625rem;
}

.c-form-label-checkbox {
  display: inline-block;
  position: relative;
  padding-left: 1.625rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-form-label-checkbox:not(:last-child) {
  margin-right: 3.75rem;
}

.c-form-label-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.c-form-label-checkbox .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background-color: #fff;
  border: 1px solid #1789e5;
}

.c-form-label-checkbox .checkmark::after {
  content: "";
  width: 27px;
  height: 17px;
  top: 50%;
  left: 50%;
  display: none;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../assets/images/common/icon_check.svg) no-repeat center/contain;
}

.c-form-label-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

.c-form-label-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.c-form-input-checkbox {
  width: 16px;
  height: 16px;
  margin: 0 0.1875rem 0.125rem 0;
}

.c-form-label-radio {
  display: inline-block;
  position: relative;
  padding-left: 1.625rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.c-form-label-radio:not(:last-child) {
  margin-right: 3.75rem;
}

.c-form-label-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.c-form-label-radio .checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #000;
}

.c-form-label-radio .checkmark::after {
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  display: none;
  position: absolute;
  border-radius: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background-color: #1789e5;
}

.c-form-label-radio input:checked ~ .checkmark:after {
  display: block;
}

.c-form-input-radio {
  width: 16px;
  height: 16px;
  margin: 0 0.1875rem 0.125rem 0;
}

.c-form-label-date {
  position: relative;
  display: inline-block;
  border-radius: 5px;
  vertical-align: bottom;
}

.c-form-input-date {
  min-width: 200px;
  padding: 0.5625rem 1.25rem;
  border-radius: 5px;
  border: none;
  background-color: #fff;
}

.c-form-label-select {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.c-form-label-select::after {
  content: "";
  width: 8px;
  height: 14px;
  right: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
  position: absolute;
  background: url(../assets/images/common/icon-arrow.svg) no-repeat center/contain;
  pointer-events: none;
}

.c-form-select {
  width: 140px;
  padding: 0.625rem 1.25rem;
  border-radius: 5px;
  background-color: #fff;
}

.c-form-select.--number {
  width: 100px;
}

.c-form-textarea {
  width: 100%;
  padding: 0.5em;
  font-family: "游ゴシック", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.c-form-error-text {
  color: #ed1c24;
  margin-top: 0.25rem;
}

.c-form-required-label {
  font-weight: 500;
  font-size: 0.75rem;
  color: #ed1c24;
}

.c-form-button {
  font-weight: bold;
  display: inline-block;
  position: relative;
  color: #0c7cad;
  text-decoration: underline;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0 1.25rem;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1rem;
}

.c-form-button::before {
  position: absolute;
  width: 8px;
  height: 14px;
  content: "";
  margin-right: 0.375rem;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(180deg);
  transform: translateY(-50%) rotate(180deg);
  left: 0;
  background: url(../assets/images/common/icon-arrow_blue.svg) no-repeat center/contain;
}

@media all and (min-width: 1281px), print {
  .c-form-button:hover {
    opacity: 0.7;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .c-form-required-label {
    display: inline-block;
    margin-right: 0.5em;
  }
}

@media only screen and (max-width: 767px) {
  .c-form-input-text, .c-form-input-email {
    padding: 0.375rem 0.625rem;
  }
  .c-form-input-text.--half, .c-form-input-email.--half {
    width: 100%;
    margin: 0.1875rem 0;
  }
  .c-form-input-tel,
  .c-form-input-address {
    width: 160px;
    padding: 0.375rem 0.625rem;
  }
  .c-form-input-number {
    width: 60px;
    padding: 0.375rem 0.625rem;
  }
  .c-form-input-date {
    width: 160px;
    min-width: inherit;
    padding: 0.3125rem 0.625rem;
  }
  .c-form-label-checkbox:not(:last-child) {
    margin-right: 1.875rem;
  }
  .c-form-label-checkbox .checkmark {
    width: 15px;
    height: 15px;
  }
  .c-form-label-checkbox .checkmark::after {
    content: "";
    width: 21px;
    height: 14px;
  }
  .c-form-label-radio {
    padding-left: 1.3125rem;
  }
  .c-form-label-radio:not(:last-child) {
    margin-right: 1.875rem;
  }
  .c-form-label-radio .checkmark {
    width: 16px;
    height: 16px;
  }
  .c-form-label-radio .checkmark::after {
    width: 10px;
    height: 10px;
  }
  .c-form-label-select::after {
    content: "";
    width: 4px;
    height: 6px;
    right: 10px;
  }
  .c-form-select {
    width: 120px;
    padding: 0.375rem 0.625rem;
  }
  .c-form-error-text {
    font-size: 0.75rem;
  }
  .c-form-required-label {
    font-size: 0.625rem;
    margin-right: 0.5rem;
  }
  .c-form-button {
    font-size: 0.875rem;
  }
}

.c-heading {
  font-size: 2.875rem;
  display: inline-block;
  position: relative;
  color: #111111;
  text-align: center;
  line-height: 1.2;
}

.c-heading__en {
  display: block;
}

.c-heading__en.--shadow {
  text-shadow: 0 0 2px #fff;
}

.c-heading__ja {
  display: block;
  margin-top: 0.3125rem;
  color: #1789e5;
  font-size: 1.125rem;
}

.c-heading__ja.--color-white {
  color: #fff;
}

.c-heading02 {
  font-size: 2rem;
  position: relative;
  color: #111111;
  text-align: center;
  line-height: 1.2;
}

.c-heading-h3 {
  color: #1789e5;
  font-size: 2rem;
  text-align: center;
}

.c-heading-h3::after {
  content: "";
  width: 60px;
  height: 4px;
  display: block;
  margin: 0.3125rem auto 0;
  border-radius: 999px;
  background: -webkit-gradient(linear, right top, left top, from(#1789e5), to(#5dc1d1));
  background: -webkit-linear-gradient(right, #1789e5 0%, #5dc1d1 100%);
  background: linear-gradient(270deg, #1789e5 0%, #5dc1d1 100%);
}

.c-heading-h4 {
  font-size: 1.5rem;
}

.c-heading-h5 {
  font-size: 1.375rem;
}

.c-heading-h6 {
  font-size: 1.125rem;
  color: #1789e5;
}

@media only screen and (max-width: 767px) {
  .c-heading {
    font-size: 2.125rem;
  }
  .c-heading__ja {
    font-size: 1.0625rem;
  }
  .c-heading02 {
    font-size: 1.375rem;
  }
  .c-heading-h3 {
    font-size: 1.375rem;
  }
  .c-heading-h4 {
    font-size: 1.25rem;
  }
  .c-heading-h5 {
    font-size: 1.125rem;
  }
  .c-heading-h6 {
    font-size: 1rem;
  }
}

.c-list-dot {
  padding-left: 1.25rem;
}

.c-list-dot__item {
  position: relative;
  color: #333;
}

.c-list-dot__item::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  position: absolute;
  left: -1rem;
  top: 0.75em;
  background: #ae9373;
}

.c-list-dot__item + .c-list-dot__item {
  margin-top: 0.5rem;
}

.c-list-ol {
  list-style: decimal;
  padding-left: 1.25rem;
}

.c-list-dl__dt {
  font-weight: bold;
}

.c-list-dl__dt + .c-list-dl {
  margin-top: 0.75rem;
}

.c-list-dl__dd {
  margin-left: 14px;
}

.c-rounded-img {
  border-radius: 20px;
}

.c-text-link {
  font-size: 1rem;
  display: inline-block;
  position: relative;
  color: #0c7cad;
  text-decoration: underline;
}

.c-text-link.--blank::after {
  content: "";
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"><path fill="%231789e5" d="M0 25V7h7V0h18v18h-7v7zm3-3h12v-4H7v-8H3zm19-7V3H10v4h8v8zm-12 0h5v-5h-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 14px;
  background-size: contain;
  margin-left: 0.375rem;
}

.c-text-link.--pdf::after {
  content: "PDF";
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-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;
  width: 40px;
  height: 20px;
  font-size: 0.75rem;
  margin-left: 0.375rem;
  background-color: red;
  color: #fff;
  text-align: center;
  font-weight: bold;
}

@media all and (min-width: 1281px), print {
  .c-text-link::after {
    -webkit-transition: 0.4s all;
    transition: 0.4s all;
  }
  .c-text-link:hover::after {
    margin-left: 0.9375rem;
  }
}

.c-text {
  font-size: 1rem;
  color: #111111;
  line-height: 1.8;
}

.c-text.--large {
  font-size: 1.125rem;
}

.c-text.--small {
  font-size: 0.875rem;
}

.c-text.--center {
  text-align: center;
}

.c-text.--mt-30 {
  margin-top: 1.875rem;
}

.c-text.--mt-img {
  margin-top: 1.25rem;
}

/* project */
.p-accordion__item {
  background-color: #fff;
  -webkit-box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
  box-shadow: 0 0 2px rgba(0, 0, 0, 0.2);
}

.p-accordion__item + .p-accordion__item {
  margin-top: 1.25rem;
}

.p-accordion__head {
  color: #1789e5;
  font-size: 1.25rem;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  text-align: center;
  padding: 1rem 2.5rem;
}

.p-accordion__head-plus.u-plus-minus {
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.p-accordion__head.is-close .p-accordion__head-plus {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.p-accordion__head.is-close .p-accordion__head-plus:after {
  display: none;
}

.p-accordion__body {
  display: none;
  padding: 0 2.5rem 2.5rem;
}

.p-accordion02__item {
  background-color: #fff;
}

.p-accordion02__item + .p-accordion02__item {
  margin-top: 1.25rem;
}

.p-accordion02__head {
  color: #1789e5;
  border: 1px solid #3E4143;
  border-radius: 30px;
  font-weight: 500;
  position: relative;
  cursor: pointer;
  display: block;
  width: 100%;
  padding: 1rem 2.5rem;
}

.p-accordion02__head.--q {
  padding: 1rem 2.5rem 1rem 5rem;
}

.p-accordion02__head.--q::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 30px;
  width: 25px;
  height: 20px;
  background: url(../assets/images/common/img_text_q.png) no-repeat center/contain;
}

.p-accordion02__head-plus.u-plus-minus {
  position: absolute;
  top: 50%;
  right: 40px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.p-accordion02__head.is-close .p-accordion02__head-plus {
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}

.p-accordion02__head.is-close .p-accordion02__head-plus:after {
  display: none;
}

.p-accordion02__body {
  display: none;
  padding: 1rem 1.875rem;
}

.p-accordion02__body.--a {
  padding: 0;
}

.p-accordion02__body.--a .p-accordion02__body-answer {
  padding: 1rem 2.5rem 1rem 5rem;
  position: relative;
}

.p-accordion02__body.--a .p-accordion02__body-answer::before {
  content: "";
  top: 20px;
  left: 30px;
  position: absolute;
  width: 25px;
  height: 20px;
  background: url(../assets/images/common/img_text_a.png) no-repeat center/contain;
}

.p-accordion02 + .p-accordion02 {
  margin-top: 1rem;
}

@media only screen and (max-width: 767px) {
  .p-accordion__head {
    font-size: 1rem;
    padding: 0.75rem 1.875rem;
  }
  .p-accordion__body {
    display: none;
    padding: 0 1.25rem 1.25rem;
  }
  .p-accordion02__head {
    padding: 0.75rem 1.875rem;
  }
  .p-accordion02__head.--q {
    padding: 0.75rem 2.8125rem 0.75rem 3.4375rem;
  }
  .p-accordion02__head.--q::before {
    top: 15px;
    left: 25px;
    width: 22px;
    height: 18px;
  }
  .p-accordion02__head-plus.u-plus-minus {
    right: 20px;
  }
  .p-accordion02__body {
    display: none;
    padding: 0.75rem;
  }
  .p-accordion02__body.--a .p-accordion02__body-answer {
    padding: 0.75rem 0.75rem 0.75rem 3.4375rem;
  }
  .p-accordion02__body.--a .p-accordion02__body-answer::before {
    top: 15px;
    left: 25px;
    width: 22px;
    height: 18px;
  }
}

.p-anchor-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 1.25rem;
}

.p-anchor-list__item.is-active .p-anchor-list__link {
  color: #fff;
  background-color: #333;
}

.p-anchor-list__item:hover .p-anchor-list__link {
  color: #fff;
  background-color: #333;
}

.p-anchor-list__link {
  display: block;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  color: #333;
  border: 1px solid #333;
}

.p-anchor-list__link.is-active {
  color: #fff;
  background-color: #333;
}

.p-anchor-list__link:hover {
  color: #fff;
  background-color: #333;
}

.p-bannerbox {
  width: 100%;
  min-height: 15.625rem;
  padding: 3.375rem 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  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;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px -5px #ccc;
  box-shadow: 0px 0px 10px -5px #ccc;
}

.p-bannerbox.--camp {
  padding: 2rem 0;
  background-image: url(../assets/images/index/img_campbox.jpg);
}

.p-bannerbox.--bbq {
  background-image: url(../assets/images/index/img_bbqbox.jpg);
}

.p-bannerbox.--craft {
  background-image: url(../assets/images/index/img_craftbox.jpg);
}

.p-bannerbox__logo {
  text-align: center;
  width: 35%;
}

.p-bannerbox__logo img {
  width: 225px;
}

.p-bannerbox__text {
  text-align: center;
  width: 65%;
  max-width: 590px;
  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;
}

.p-bannerbox__text .info {
  padding-top: 1.25rem;
}

.p-bannerbox__text .info img {
  width: 370px;
}

.p-bannerbox__text .title {
  text-align: center;
  font-size: clamp(2.25rem, 4.5vw, 2.6875rem);
  font-family: "century-gothic", sans-serif;
  font-weight: bold;
  padding: 0 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.4;
}

.p-bannerbox__text .title span {
  letter-spacing: normal;
  display: block;
  font-size: 1.1875rem;
  font-family: "Noto Sans JP", sans-serif;
}

.p-bannerbox__text .link {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #3E4143;
  border-radius: 20px 0 20px 0;
  max-width: 590px;
  width: 65%;
  height: 64px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 64px;
}

.p-bannerbox__text .link:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

@media only screen and (max-width: 767px) {
  .p-bannerbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 30px 0 60px;
    min-height: 11.25rem;
  }
  .p-bannerbox.--camp {
    padding-bottom: 60px;
  }
  .p-bannerbox.--bbq {
    background-position: left;
  }
  .p-bannerbox.--craft {
    background-position: left;
  }
  .p-bannerbox__logo {
    width: 100%;
  }
  .p-bannerbox__logo img {
    width: 140px;
  }
  .p-bannerbox__text {
    width: 100%;
    max-width: inherit;
    margin-bottom: 1.25rem;
  }
  .p-bannerbox__text .info img {
    width: 250px;
  }
  .p-bannerbox__text .title {
    font-size: 1.625rem;
  }
  .p-bannerbox__text .title span {
    font-size: 0.875rem;
  }
  .p-bannerbox__text .link {
    border-radius: 0 0 20px 20px;
    max-width: inherit;
    width: 100%;
    height: 60px;
    line-height: 60px;
  }
}

.p-booking-box {
  position: fixed;
  z-index: 99;
  right: 30px;
  bottom: 150px;
  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;
  gap: 6px;
  padding: 0.625rem;
  background-color: rgba(255, 250, 248, 0.4);
  border-radius: 30px;
  color: #fff;
}

.p-booking-box a {
  color: #fff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}

.p-booking-box a:hover {
  opacity: 0.7;
}

.p-booking-box.is-footer {
  position: absolute;
  bottom: auto;
  top: -425px;
}

.p-booking-box__item {
  width: 240px;
  border-radius: 20px;
  overflow: hidden;
}

.p-booking-box__text .title {
  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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 28px;
  font-weight: bold;
  height: 86px;
  line-height: 33.6px;
  padding-top: 10px;
}

.p-booking-box__text .title.--bbq {
  background: url("../assets/images/common/img_bk_bbq-bg.jpg") center/cover;
}

.p-booking-box__text .title.--craft {
  background: url("../assets/images/common/img_bk_craft-bg.jpg") center/cover;
  background-position: left;
}

.p-booking-box__text .title span {
  display: block;
  font-size: 14px;
  font-weight: normal;
}

.p-booking-box__text .button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  color: #fff;
  -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;
  height: 42px;
  background: #3e4143;
  font-size: 14px;
}

@media only screen and (max-width: 767px) {
  .p-booking-box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    bottom: 6px;
    right: auto;
    left: 18px;
    padding: 8px;
    border-radius: 8px;
  }
  .p-booking-box.is-footer {
    top: -80px;
  }
  .p-booking-box__item {
    width: 118px;
    border-radius: 8px;
  }
  .p-booking-box__text .title {
    font-size: 18px;
    line-height: 21.6px;
    height: 42px;
    padding-top: 0;
  }
  .p-booking-box__text .title span {
    font-size: 10px;
    line-height: 12px;
  }
  .p-booking-box__text .button {
    height: 22px;
    font-size: 12px;
  }
}

.p-box {
  padding: 2rem 2.5rem;
  background-color: #ededed;
  border-radius: 10px;
}

.p-box.--bg-blue {
  background-color: #edf6f9;
}

.p-box__title {
  font-size: 1rem;
  font-weight: bold;
}

.p-box__title.--center {
  text-align: center;
}

.p-box__text {
  font-size: 1rem;
  margin-top: 0.5rem;
}

.p-box__form {
  margin-top: 1.875rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.p-box__form-title {
  margin-right: 1.875rem;
}

.p-box.--br-20 {
  border-radius: 20px;
}

@media only screen and (max-width: 767px) {
  .p-box {
    padding: 1.25rem;
  }
  .p-box__form {
    margin-top: 1.25rem;
  }
  .p-box__form-title {
    margin-right: 0;
  }
}

.p-breadline {
  margin: 0.9375rem auto;
  padding: 0 1.25rem;
  max-width: 1600px;
}

.p-breadline__list {
  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-breadline__item {
  font-size: 0.875rem;
  font-weight: 400;
  color: #333;
  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-breadline__item a {
  margin-right: 1.125rem;
  color: #1789e5;
  word-break: normal;
}

.p-breadline__divider {
  display: block;
  overflow: hidden;
  color: transparent;
  text-decoration: none;
  text-indent: 110%;
  white-space: nowrap;
  font-size: 0;
  position: relative;
  width: 12px;
  height: 20px;
  margin-right: 1.25rem;
}

.p-breadline__divider::after {
  content: "";
  width: 10px;
  height: 20px;
  top: 0;
  position: absolute;
  right: 0;
  background: url(../assets/images/common/icon_arrow02.png) no-repeat center/contain;
}

@media only screen and (max-width: 767px) {
  .p-breadline {
    display: none;
  }
}

.p-buttons.--flex {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px 40px;
}

.p-buttons.--center {
  text-align: center;
}

.p-buttons__title {
  text-align: center;
  margin-bottom: 0.9375rem;
}

.p-buttons__button {
  text-align: center;
}

.p-column__item {
  position: relative;
}

.p-column__img {
  padding-top: 100%;
  position: relative;
}

.p-column__img.--ratio-1-1 {
  padding-top: 100%;
}

.p-column__img.--ratio-3-2 {
  padding-top: 66.66666%;
}

.p-column__img.--ratio-16-9 {
  padding-top: 56.25%;
}

.p-column__img.--ratio-4-1 {
  padding-top: 25%;
}

.p-column__img.--ratio-58-43 {
  padding-top: 74.13793%;
}

.p-column__img.--ratio-12-54 {
  padding-top: 45%;
}

.p-column__img.--ratio-38-28 {
  padding-top: 73.68421%;
}

.p-column__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 20px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-column__title {
  margin-top: 0.625rem;
}

.p-column__text {
  margin-top: 0.625rem;
}

.p-column__tag {
  position: absolute;
  left: 0;
  bottom: 0;
}

.p-column__tag strong {
  color: #fff;
  font-size: 0.875rem;
  width: 120px;
  height: 40px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background: -webkit-gradient(linear, right top, left top, from(#1789e5), to(#5dc1d1));
  background: -webkit-linear-gradient(right, #1789e5 0%, #5dc1d1 100%);
  background: linear-gradient(270deg, #1789e5 0%, #5dc1d1 100%);
  border-top-right-radius: 20px;
  border-bottom-left-radius: 20px;
}

.p-column__tag strong span {
  font-size: 1rem;
  margin-left: 0.3125rem;
}

.p-column.--column2 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(380px, 1fr));
  grid-gap: 1.875rem 2.5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-rows: auto auto;
}

.p-column.--column3 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-gap: 1.875rem 2.5rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-rows: auto auto;
}

.p-column.--column4 {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  grid-gap: 0.9375rem;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  grid-template-rows: auto auto;
}

.p-column.--craft-list {
  grid-gap: 5rem 2.5rem;
}

@media only screen and (max-width: 767px) {
  .p-column.--craft-list {
    grid-gap: 3rem;
  }
}

.p-column.--craft-list .p-column__img {
  padding-top: 66.6248%;
}

.p-column.--craft-list .p-column__title {
  text-align: center;
}

.p-column.--craft-list .p-column__text {
  height: 87px;
}

@media all and (min-width: 1281px), print {
  .p-column.--craft-list .p-column__text.--ht-wide {
    height: 116px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .p-column.--craft-list .p-column__text {
    height: 116px;
  }
  .p-column.--craft-list .p-column__text.--ht-wide {
    height: 144px;
  }
}

@media only screen and (max-width: 767px) {
  .p-column.--craft-list .p-column__text {
    height: auto;
  }
}

.p-column.--craft-list .craft-info {
  background-color: #ededed;
  color: #111111;
  font-size: 16px;
  padding: 0.5rem 0;
  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;
  gap: 0.375rem;
  width: 100%;
  border-radius: 20px;
  margin-top: 0.625rem;
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .p-column.--craft-list .craft-info {
    -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;
    gap: 0rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-column.--craft-list .craft-info {
    -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;
    gap: 0rem;
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    padding-left: 1.875rem;
  }
}

.p-column-wide {
  min-height: 400px;
  position: relative;
}

.p-column-wide.--reserve .p-column-wide__img {
  left: calc( -50vw + 50%);
}

.p-column-wide.--reserve .p-column-wide__content {
  margin-left: auto;
  padding-right: 0;
  padding-left: 1.25rem;
}

.p-column-wide__img {
  position: absolute;
  width: 50vw;
  left: 50%;
  height: 100%;
}

.p-column-wide__img img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-column-wide__content {
  width: 50%;
  padding-right: 1.25rem;
}

.p-column-wide__text {
  margin-top: 0.625rem;
}

.p-column-image {
  text-align: center;
}

.p-column-image img {
  max-width: 100%;
}

@media only screen and (max-width: 767px) {
  .p-column.--column2 {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-column.--column3 {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-column.--column4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-column-wide {
    min-height: auto;
  }
  .p-column-wide.--reserve .p-column-wide__img {
    left: 0;
  }
  .p-column-wide.--reserve .p-column-wide__content {
    margin-left: 0;
    padding-left: 0;
  }
  .p-column-wide__img {
    position: relative;
    width: 100%;
    left: 0;
    padding-top: 56.25%;
  }
  .p-column-wide__content {
    width: 100%;
    padding-right: 0;
    margin-top: 1.25rem;
  }
}

.p-disclaimer {
  height: 300px;
  background-color: #fff;
  overflow-y: scroll;
  font-size: 0.875rem;
  border: 1px solid #eee;
  margin-top: 1.25rem;
  padding: 1.875rem 1.5rem;
}

.p-disclaimer__title {
  text-align: center;
  font-size: 1.125rem;
  font-weight: bold;
  margin-bottom: 1.5rem;
}

.p-disclaimer__subtitle {
  font-size: 1rem;
  font-weight: bold;
  margin-top: 1.5rem;
}

.p-disclaimer__ul {
  padding-left: 1.25rem;
}

.p-disclaimer__ul li {
  position: relative;
}

.p-disclaimer__ul li::before {
  content: "";
  display: block;
  width: 3px;
  height: 3px;
  border-radius: 50%;
  position: absolute;
  left: -0.75rem;
  top: 0.75em;
  background: #1789e5;
}

.p-disclaimer__ol {
  padding-left: 1.25rem;
  list-style: decimal;
}

@media only screen and (max-width: 767px) {
  .p-disclaimer {
    height: 250px;
    font-size: 0.75rem;
    padding: 1.5rem 1rem;
  }
  .p-disclaimer__title {
    font-size: 1rem;
    margin-bottom: 1.125rem;
  }
  .p-disclaimer__subtitle {
    font-size: 0.875rem;
    margin-top: 1.125rem;
  }
}

.p-form-booking__head {
  color: #111111;
  font-weight: 500;
  text-align: center;
}

.p-form-booking__head span {
  font-size: 1.375rem;
}

.p-form-booking__dt {
  font-size: 1.125rem;
  color: #1789e5;
  font-weight: 500;
  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-form-booking__dt:not(:first-child) {
  margin-top: 1.875rem;
}

.p-form-booking__dt.--nut {
  color: #ffa100;
  font-weight: 700;
}

.p-form-booking__dt.--exhibition {
  color: #CA453B;
  font-weight: 700;
}

.p-form-booking__dt span {
  width: 30px;
  height: 30px;
  color: #fff;
  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-right: 0.625rem;
  border-radius: 50%;
}

.p-form-booking__dd {
  margin-top: 1rem;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 3px 3px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-form-booking__dd .c-form-label-checkbox {
  margin: 0;
  width: calc((100% - 15px) / 4);
  padding: 0.625rem 1.125rem 0.625rem 2.8125rem;
  border: 1px solid #b3b3b3;
  vertical-align: middle;
  cursor: pointer;
}

.p-form-booking__dd .c-form-label-checkbox .c-form-input-checkbox {
  margin-right: 0.625rem;
}

.p-form-booking__dd .c-form-label-checkbox .checkmark {
  left: 1.125rem;
}

.p-form-booking__dd .c-form-label-checkbox.u-nocheck {
  color: #b3b3b3;
  pointer-events: none;
  background-color: #f2f2f2;
}

.p-form-booking__dd .c-form-label-checkbox.u-nocheck .checkmark {
  border-color: #b3b3b3;
}

@media only screen and (max-width: 767px) {
  .p-form-booking__head span {
    font-size: 1.25rem;
  }
  .p-form-booking__body {
    margin-top: 1rem;
  }
  .p-form-booking__dt {
    font-size: 1rem;
  }
  .p-form-booking__dt span {
    width: 26px;
    height: 26px;
  }
  .p-form-booking__dd {
    margin-top: 1rem;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 4px 4px;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-form-booking__dd .c-form-label-checkbox {
    padding: 0.5rem 0.5rem 0.5rem 2.1875rem;
    width: calc((100% - 4px) / 2);
  }
  .p-form-booking__dd .c-form-label-checkbox .checkmark {
    left: 0.75rem;
  }
}

.p-form-nav {
  margin-bottom: 6.25rem;
}

.p-form-nav__list {
  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;
  gap: 0 100px;
}

.p-form-nav__item {
  color: #111111;
  font-weight: 500;
  text-align: center;
}

.p-form-nav__item:not(:last-child) {
  position: relative;
}

.p-form-nav__item:not(:last-child)::after {
  content: "";
  width: 20px;
  top: 19px;
  left: calc(100% + 40px);
  height: 1px;
  position: absolute;
  background: #1789e5;
}

.p-form-nav__item.is-active .p-form-nav__item-nb {
  color: #fff;
  background-color: #1789e5;
}

.p-form-nav__item-nb {
  color: #111111;
  z-index: 1;
  margin: 0 auto 0.125rem;
  width: 40px;
  height: 40px;
  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;
  position: relative;
  border-radius: 50%;
  border: 1px solid #1789e5;
  background-color: #fff;
}

@media only screen and (max-width: 767px) {
  .p-form-nav {
    margin-bottom: 3.125rem;
  }
  .p-form-nav__list {
    gap: 0 20px;
  }
  .p-form-nav__item {
    font-size: 0.75rem;
  }
  .p-form-nav__item:not(:last-child)::after {
    content: "";
    width: 10px;
    left: calc(100% + 10px);
  }
  .p-form-nav__item-nb {
    width: 30px;
    height: 30px;
  }
}

.p-form-table {
  width: 100%;
  border-top: 1px solid #ccc;
}

.p-form-table__th, .p-form-table__td {
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}

.p-form-table__th {
  padding: 1rem 2rem 1rem 0;
  width: 250px;
  font-weight: bold;
  text-align: right;
  border-right: 1px solid #ccc;
  background-color: #ededed;
}

.p-form-table__th.--bg-red {
  color: #fff;
  background-color: #ed1c24;
}

.p-form-table__td {
  padding: 1.25rem 2rem;
  width: calc( 100% - 250px);
}

.p-form-table__td-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

.p-form-table__td.--bg-pink {
  background-color: #ffe6ea;
}

@media only screen and (max-width: 767px) {
  .p-form-table__th {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    text-align: left;
    border-right: none;
    border-bottom: none;
  }
  .p-form-table__td {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
  }
  .p-form-table__td-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0.3125rem;
  }
}

.p-logo {
  z-index: 1;
  position: absolute;
}

.p-logo__img {
  width: 430px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}

.p-logo__text {
  width: 790px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-animation: rotate-62395748 35s linear infinite;
  animation: rotate-62395748 35s linear infinite;
}

@media only screen and (max-width: 767px) {
  .p-logo__img {
    width: 128px;
  }
  .p-logo__text {
    width: 278px;
  }
}

.p-mainvisual {
  width: 100%;
  margin: 0 auto;
  position: relative;
}

.p-mainvisual__swiper-slide {
  overflow: hidden;
  height: 100vh;
  min-height: 940px;
}

.p-mainvisual__swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-mainvisual__text {
  top: 120px;
  left: 10.41667vw;
  z-index: 2;
  position: absolute;
}

.p-mainvisual__text-inner {
  width: 960px;
  max-width: calc(100% - 200px);
}

.p-mainvisual__notice {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.p-mainvisual__notice::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #f2f2f2;
  opacity: 0;
}

.p-mainvisual__notice-inner {
  padding: 20px;
  background-color: #f2f2f2;
  min-height: 120px;
  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-mainvisual__notice-cont {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-mainvisual__notice-title {
  color: #fff;
  font-size: 2.25rem;
  font-weight: bold;
  margin-right: 2.5rem;
  width: 110px;
  min-height: 60px;
  line-height: 60px;
  text-align: center;
  background: -webkit-linear-gradient(355deg, #1789e5 0%, #5dc1d1 100%);
  background: linear-gradient(95deg, #1789e5 0%, #5dc1d1 100%);
}

.p-mainvisual__notice-text {
  font-weight: bold;
  font-size: 2.25rem;
}

.p-mainvisual__notice-text span {
  font-size: 2.875rem;
}

.p-mainvisual__notice-img {
  width: 315px;
  margin-right: 1.875rem;
}

.p-mainvisual__catch {
  position: absolute;
  left: 0;
  bottom: 8%;
  z-index: 2;
  text-align: center;
  background-color: #fff;
  padding: 1.75rem 3.125rem 2.25rem 3.75rem;
  border-radius: 0 1.25rem 1.25rem 0;
}

.p-mainvisual__catch-title {
  font-family: "century-gothic", sans-serif;
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.5;
}

.p-mainvisual__catch-title span {
  font-size: 1.0625rem;
}

.p-mainvisual__catch-btn {
  margin-top: 0.5rem;
}

@media only screen and (max-width: 767px) {
  .p-mainvisual__swiper-slide {
    height: 560px;
    min-height: inherit;
  }
  .p-mainvisual__swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .p-mainvisual__text {
    top: 100px;
    left: 20px;
  }
  .p-mainvisual__text-inner {
    width: 320px;
    max-width: calc(100% - 20px);
  }
  .p-mainvisual__notice-cont picture {
    width: 280px;
  }
  .p-mainvisual__catch {
    bottom: 4%;
    padding: 0.9375rem 1.5625rem 1.25rem;
  }
  .p-mainvisual__catch-title {
    font-size: 1.3125rem;
  }
  .p-mainvisual__catch-title span {
    font-size: 0.8125rem;
    display: block;
  }
  .p-mainvisual__catch-btn {
    margin-top: 0.5rem;
  }
  .p-mainvisual__catch-btn .c-button {
    min-width: 250px;
  }
}

/* modal.scss */
.p-remodal {
  display: none;
  /* JSでflexに切り替え */
  position: fixed;
  inset: 0;
  /* top, right, bottom, left = 0 */
  z-index: 1000;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.6);
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
}

.p-remodal.is-opened {
  opacity: 1;
}

.p-remodal__content {
  background: #fff;
  height: 600px;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
}

@media only screen and (max-width: 767px) {
  .p-remodal__content {
    height: 460px;
    max-width: 340px;
  }
}

.p-remodal__img {
  max-width: 652px;
  width: 100%;
  overflow: hidden;
  border-radius: 20px;
}

.p-remodal__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.p-remodal__close {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1.2rem;
  background: #333;
  color: #fff;
  border-radius: 4px;
  cursor: pointer;
  border: none;
}

.p-remodal__close:hover {
  background: #555;
}

/* bodyがモーダルオープン時にスクロールしないように */
body.modal-open {
  overflow: hidden;
}

.p-nav {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: stretch;
  -webkit-align-items: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 2.5rem 1.875rem;
}

.p-nav__item-inner {
  height: 100%;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.p-nav__title {
  margin-bottom: 1.875rem;
  text-align: center;
}

.p-nav__button {
  margin-top: 1.875rem;
  text-align: center;
}

.p-nav__img {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.p-nav__img-logo {
  width: 130px;
  height: 130px;
  right: 15px;
  bottom: 15px;
  position: absolute;
}

.p-nav__img.--no-radius {
  border-radius: 0;
}

.p-nav__text {
  margin-top: 1.25rem;
}

.p-nav__text.--narrow {
  max-width: 960px;
  margin: 1.25rem auto 0;
}

.p-nav.--column2 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6.875rem 2.5rem;
}

.p-nav.--column2 .p-nav__item {
  min-width: 300px;
  width: calc((100% - 40px) / 2);
}

.p-nav.--column3 {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 6.875rem 1.6875rem;
}

.p-nav.--column3 .p-nav__item {
  min-width: 300px;
  width: calc((100% - 54px) / 3);
}

.p-nav.--camp {
  margin-top: 7.5rem;
}

.p-nav.--information {
  margin-top: 10rem;
}

.p-nav.--information .p-nav__link {
  width: 100%;
  display: block;
  position: relative;
  min-height: 320px;
  overflow: hidden;
  border-radius: 20px;
}

.p-nav.--information .p-nav__img {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.p-nav.--information .p-nav__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.p-nav.--information .p-nav__cont {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 4.375rem 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;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  background: rgba(23, 137, 229, 0.6);
}

.p-nav.--logo-narrow .p-nav__img-logo {
  width: 100px;
  height: 100px;
  bottom: 8px;
  right: 8px;
}

@media all and (min-width: 768px), print {
  .p-nav.--information .p-nav__link .p-nav__img {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .p-nav.--information .p-nav__link:hover .p-nav__img {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
}

@media only screen and (max-width: 767px) {
  .p-nav {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-nav__item {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  .p-nav__title {
    margin-bottom: 1.25rem;
  }
  .p-nav__img-logo {
    width: 100px;
    height: 100px;
  }
  .p-nav__img.--spMax {
    overflow-x: auto;
  }
  .p-nav__img.--spMax img {
    width: auto;
    min-width: 600px;
    margin-bottom: 1.25rem;
  }
  .p-nav__img.--spMax::-webkit-scrollbar {
    height: 8px;
    background: #eee;
    border-radius: 5px;
  }
  .p-nav__img.--spMax::-webkit-scrollbar-thumb {
    background: -webkit-linear-gradient(355deg, #5dc1d1 0%, #1789e5 100%);
    background: linear-gradient(95deg, #5dc1d1 0%, #1789e5 100%);
    border-radius: 5px;
  }
  .p-nav.--column2 {
    gap: 4.375rem 0;
  }
  .p-nav.--column2 .p-nav__item {
    width: 100%;
  }
  .p-nav.--information {
    margin-top: 6.25rem;
  }
  .p-nav.--information .p-nav__link {
    border-radius: 0;
  }
}

.p-news__tag {
  margin-bottom: 2.5rem;
}

.p-news__tag-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 20px;
}

.p-news__tag-item {
  max-width: calc((100% - 60px) / 4);
}

.p-news__tag-item span {
  width: 180px;
  max-width: 100%;
  height: 40px;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  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;
  border-radius: 999px;
  background: #f2f2f2;
  border: 1px solid #f2f2f2;
  cursor: pointer;
}

.p-news__tag-item.is-active span {
  color: #1789e5;
  border-color: #1789e5;
  background-color: #fff;
}

.p-news__swiper {
  padding: 0.125rem 0.0625rem;
}

.p-news__link {
  display: block;
  border-radius: 20px;
  overflow: hidden;
  -webkit-box-shadow: 0 0 2px #ccc;
  box-shadow: 0 0 2px #ccc;
  background-color: #fff;
}

.p-news__link.--new .p-news__link-day::after {
  content: "NEW";
  display: inline-block;
  margin-left: 1.25rem;
  font-size: 1rem;
  font-weight: bold;
  color: #ed1c24;
}

.p-news__link-head {
  position: relative;
}

.p-news__link-image {
  height: 280px;
  overflow: hidden;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-news__link-image img {
  height: 100%;
  max-width: inherit;
}

.p-news__link-body {
  padding: 1.25rem;
}

.p-news__link-day {
  display: inline-block;
  font-size: 0.875rem;
  white-space: nowrap;
}

.p-news__link-cat {
  left: 0;
  bottom: 0;
  border-top-right-radius: 20px;
  position: absolute;
  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;
  min-width: 150px;
  min-height: 40px;
  font-size: 0.875rem;
  font-weight: bold;
  color: #111111;
  white-space: nowrap;
  background-color: #fff;
}

.p-news__link-title {
  font-size: 1rem;
  font-weight: 400;
}

.p-news__link-new {
  font-size: 0.75rem;
  max-width: 32px;
  min-width: 32px;
  font-weight: 400;
  color: #8e8a61;
  margin-right: 0.625rem;
  white-space: nowrap;
}

.p-news__button {
  margin-top: 3.75rem;
  text-align: center;
}

.p-news__control {
  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;
  margin-top: 1.25rem;
  height: 40px;
}

.p-news__pagination {
  width: auto !important;
  bottom: 0 !important;
  padding: 0 0.9375rem;
  position: relative;
  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-news__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #fff;
  border: 1px solid #1789e5;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
}

.p-news__pagination .swiper-pagination-bullet-active {
  background-color: #1789e5;
}

.p-news__next, .p-news__prev {
  top: unset;
  left: unset;
  right: unset;
  margin-top: 0;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
}

.p-news__next::after, .p-news__prev::after {
  content: "";
  width: 12px;
  height: 20px;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../assets/images/common/icon_arrow_white.png) no-repeat center/contain;
}

.p-news__next {
  background: -webkit-linear-gradient(355deg, #5dc1d1 0%, #1789e5 100%);
  background: linear-gradient(95deg, #5dc1d1 0%, #1789e5 100%);
}

.p-news__prev {
  background: -webkit-linear-gradient(355deg, #1789e5 0%, #5dc1d1 100%);
  background: linear-gradient(95deg, #1789e5 0%, #5dc1d1 100%);
}

.p-news__prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

@media all and (min-width: 768px), print {
  .p-news__tag-item {
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
  }
  .p-news__tag-item:hover {
    opacity: 0.7;
  }
  .p-news__list {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    gap: 0 30px;
  }
  .p-news__list > * {
    width: calc((100% - 60px) / 3);
  }
  .p-news__link {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .p-news__link:hover {
    opacity: 0.7;
  }
  .p-news__control, .p-news__prev, .p-news__next, .p-news__pagination {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .p-news__tag {
    margin-bottom: 1.875rem;
  }
  .p-news__tag-list {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 15px;
  }
  .p-news__tag-item {
    min-width: inherit;
    min-width: calc((100% - 15px) / 2);
  }
  .p-news__tag-item span {
    width: 100%;
    font-size: 0.875rem;
  }
  .p-news__container {
    margin-left: -20px;
    margin-right: -20px;
  }
  .p-news__link-day {
    margin-right: 0.625rem;
  }
  .p-news__link-cat {
    margin-right: 0.625rem;
  }
  .p-news__link-title {
    width: 100%;
  }
  .p-news__button {
    margin-top: 2.5rem;
  }
}

.p-pagetitle {
  width: 100%;
  height: 480px;
  position: relative;
}

.p-pagetitle__img {
  background-color: #000;
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat center / cover;
}

.p-pagetitle__title {
  position: absolute;
  left: 0;
  bottom: 0;
  min-width: 680px;
  min-height: 100px;
  background-color: #fff;
  border-radius: 0 20px 0 0;
  font-size: 2.25rem;
  font-weight: bold;
  padding: 0.625rem 1.25rem;
  color: #111111;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1.2;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

.p-pagetitle__title-jp {
  color: #1789e5;
  font-size: 1rem;
  margin-left: 0.625rem;
  display: inline-block;
}

@media only screen and (max-width: 767px) {
  .p-pagetitle {
    height: 220px;
  }
  .p-pagetitle__title {
    font-size: 1.375rem;
    min-width: 280px;
    min-height: 60px;
    padding: 0 1.25rem;
  }
  .p-pagetitle__title-ja {
    font-size: 0.75rem;
  }
}

.p-pagination {
  text-align: center;
  margin-top: 2.5rem;
}

.p-pagination__list {
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  gap: 0.625rem;
}

.p-pagination__item span, .p-pagination__item a {
  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;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #1789e5;
  background-color: #fff;
  color: #1789e5;
}

.p-pagination__item span {
  background-color: #1789e5;
  color: #fff;
}

@media all and (min-width: 1281px), print {
  .p-pagination__item a {
    -webkit-transition: 0.3s all;
    transition: 0.3s all;
  }
  .p-pagination__item a:hover {
    background-color: #1789e5;
    color: #fff;
  }
}

.p-schedule {
  display: block;
}

.p-schedule__tab {
  padding-left: 120px;
}

.p-schedule__tab-list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 0 4px;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.p-schedule__tab-list-item {
  width: 100px;
  max-width: calc((100% - 8px) / 3);
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 500;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  background-color: #f2f2f2;
}

.p-schedule__tab-list-item a {
  display: block;
}

.p-schedule__tab-list-item.is-active {
  background-color: #3e4143;
}

.p-schedule__tab-list-item.is-active a {
  color: #fff;
}

.p-schedule__tabItems {
  width: 100%;
  display: block;
}

.p-schedule__scroll {
  width: 100%;
  min-height: 100px;
}

.p-schedule__scroll::after {
  display: block;
  content: "";
  clear: both;
}

.p-schedule__scroll-lock {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  display: block;
  width: 120px;
}

.p-schedule__scroll-data {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  float: left;
  display: block;
  width: calc(100% - 120px);
}

.p-schedule__scroll-data .p-schedule__table {
  border-left: none;
  table-layout: fixed;
}

.p-schedule__table {
  width: 100%;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  border-top: 1px solid #cccccc;
  border-left: 1px solid #cccccc;
}

.p-schedule__table th, .p-schedule__table td {
  height: 50px;
  vertical-align: middle;
  border-right: 1px solid #cccccc;
  border-bottom: 1px solid #cccccc;
}

.p-schedule__table th {
  font-weight: normal;
}

.p-schedule__table-th.--bg-grey {
  padding: 0.9375rem 0.625rem;
  background-color: #f2f2f2;
}

.p-schedule__table-th.--bg-blue {
  color: #0071bc;
  background-color: #e6f7ff;
}

.p-schedule__table-th.--bg-red {
  color: #ed1c24;
  background-color: #ffe6ea;
}

.p-schedule__table-td.--vertical span {
  -ms-writing-mode: tb-rl;
  writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  white-space: nowrap;
}

.p-schedule__table-td.--w103 {
  width: 103px;
}

.p-schedule__table-td.--bg-blue {
  background-color: #e6f7ff;
}

.p-schedule__table-td.--bg-red {
  background-color: #ffe6ea;
}

.p-schedule__desc {
  margin-top: 0.3125rem;
  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-schedule__desc-item {
  font-size: 0.75rem;
  margin-right: 1.875rem;
  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;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}

@media only screen and (max-width: 767px) {
  .p-schedule__tab {
    padding-left: 90px;
  }
  .p-schedule__scroll-lock {
    width: 90px;
  }
  .p-schedule__scroll-data {
    overflow-y: hidden;
    overflow-x: scroll;
    width: calc(100% - 90px);
  }
  .p-schedule__scroll-data .p-schedule__table {
    width: 862px;
    min-width: 100%;
  }
  .p-schedule__scroll-data .p-schedule__th, .p-schedule__scroll-data .p-schedule__td {
    white-space: nowrap;
  }
  .p-schedule__scroll-data::-webkit-scrollbar {
    height: 8px;
    background: #eee;
    border-radius: 5px;
  }
  .p-schedule__scroll-data::-webkit-scrollbar-thumb {
    background-color: #1789e5;
    border-radius: 5px;
  }
  .p-schedule .p-schedule__table {
    table-layout: auto;
  }
  .p-schedule .p-schedule__table-title {
    width: 80px;
    font-size: 0.875rem;
    padding-left: 0.625rem;
  }
  .p-schedule .p-schedule__table-time {
    font-size: 0.875rem;
    padding-left: 0.625rem;
  }
  .p-schedule .p-schedule__table-wday {
    width: calc((100% - 80px) / 7);
    font-size: 0.875rem;
  }
  .p-schedule .p-schedule__table-wday.--day2 {
    white-space: nowrap;
    letter-spacing: -0.3em;
  }
  .p-schedule__info-flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .p-schedule__info-left {
    width: 100%;
  }
}

.p-scroll-top {
  position: fixed;
  z-index: 10;
  right: 40px;
  bottom: 40px;
  opacity: 0;
  -webkit-transition: -webkit-transform 0.3s ease-in-out;
  transition: -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}

.p-scroll-top.is-fixed {
  opacity: 1;
}

.p-scroll-top.is-footer {
  position: absolute;
  bottom: -11.5625rem;
  opacity: 1;
}

.p-scroll-top__button {
  background: none;
  border: none;
  width: 90px;
  padding: 0;
  cursor: pointer;
  position: relative;
}

.p-scroll-top__button::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 24px;
  height: 24px;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../assets/images/common/img_scroll_top_arrow.png) no-repeat center/contain;
}

@media all and (min-width: 768px), print {
  .p-scroll-top .p-scroll-top__text {
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .p-scroll-top__button:hover .p-scroll-top__text {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
    -webkit-transition: all 0.4s;
    transition: all 0.4s;
  }
  .p-scroll-top__button:hover .p-scroll-top__text img {
    -webkit-animation: rotate-62395748 24s linear infinite;
    animation: rotate-62395748 24s linear infinite;
  }
}

@media only screen and (max-width: 767px) {
  .p-scroll-top {
    right: 20px;
    bottom: 10px;
  }
  .p-scroll-top.is-footer {
    bottom: -5.625rem;
  }
  .p-scroll-top__button {
    width: 60px;
  }
  .p-scroll-top__button::after {
    width: 20px;
    height: 20px;
  }
}

.p-section-title-h2 {
  text-align: center;
  margin-bottom: 1.875rem;
}

.p-section-title-h3 {
  text-align: center;
  margin-bottom: 1.875rem;
}

.p-section-title-h3:not(:first-child) {
  margin-top: 8.75rem;
}

.p-section-title-h4 {
  text-align: center;
  margin-bottom: 1.875rem;
}

.p-section-title-h4:not(:first-child) {
  margin-top: 6.25rem;
}

@media only screen and (max-width: 767px) {
  .p-section-title-h2 {
    margin-bottom: 1.25rem;
  }
}

.p-section-title-h3:not(:first-child) {
  margin-top: 6.25rem;
}

.p-slide__swipe-wrapper {
  border-radius: 20px;
  overflow: hidden;
}

.p-slide__swiper-slide {
  border-radius: 20px;
  overflow: hidden;
}

.p-slide__swiper-slide img {
  width: 100%;
}

.p-slide__control {
  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;
  height: 40px;
  position: relative;
}

.p-slide__pagination {
  width: auto !important;
  bottom: 0 !important;
  padding: 0 0.9375rem;
  position: relative;
  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-slide__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: #fff;
  border: 1px solid #1789e5;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 5px);
}

.p-slide__pagination .swiper-pagination-bullet-active {
  background-color: #1789e5;
}

.p-slide__next, .p-slide__prev {
  top: unset;
  left: unset;
  right: unset;
  margin-top: 0;
  position: relative;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #fff;
}

.p-slide__next::after, .p-slide__prev::after {
  content: "";
  width: 12px;
  height: 20px;
  top: 50%;
  left: 50%;
  position: absolute;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: url(../assets/images/common/icon_arrow_white.png) no-repeat center/contain;
}

.p-slide__next {
  background: -webkit-linear-gradient(355deg, #5dc1d1 0%, #1789e5 100%);
  background: linear-gradient(95deg, #5dc1d1 0%, #1789e5 100%);
}

.p-slide__prev {
  background: -webkit-linear-gradient(355deg, #1789e5 0%, #5dc1d1 100%);
  background: linear-gradient(95deg, #1789e5 0%, #5dc1d1 100%);
}

.p-slide__prev::after {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
  transform: translate(-50%, -50%) rotate(180deg);
}

@media only screen and (max-width: 767px) {
  .p-slide__control {
    margin-top: 1.25rem;
  }
}

.p-slideshow {
  width: 100%;
}

.p-slideshow__swiper-wrapper {
  -webkit-transition-timing-function: linear;
  transition-timing-function: linear;
}

.p-slideshow__swiper-slide {
  width: 300px;
  overflow: hidden;
  border-radius: 20px;
}

.p-slideshow__swiper-slide img {
  width: 100%;
}

.p-table {
  width: 100%;
  border-top: 1px solid #ccc;
}

.p-table__th, .p-table__td {
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}

.p-table__th {
  padding: 1rem 2rem 1rem 0;
  width: 250px;
  font-weight: bold;
  text-align: right;
  border-right: 1px solid #ccc;
  background-color: #ededed;
}

.p-table__th.--bg-red {
  color: #fff;
  background-color: #ed1c24;
}

.p-table__td {
  padding: 1.25rem 2rem;
  width: calc( 100% - 250px);
}

.p-table__td-flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem;
}

.p-table__td.--bg-pink {
  background-color: #ffe6ea;
}

.p-table.--th-center .p-table__th {
  text-align: center;
  padding-right: 0;
}

.p-table.--th-br-none .p-table__th {
  border-right: none;
}

.p-table-fee {
  width: 100%;
  border-top: 1px solid #ccc;
}

.p-table-fee__th, .p-table-fee__td {
  vertical-align: middle;
  border-bottom: 1px solid #ccc;
}

.p-table-fee__th {
  text-align: left;
  width: 250px;
  font-weight: 500;
  text-align: right;
  padding: 1rem 2rem 1rem 0;
  border-right: 1px solid #ccc;
}

.p-table-fee__th.--bg-red {
  color: #fff;
  background-color: #ed1c24;
}

.p-table-fee__td {
  width: calc( 100% - 250px);
  padding: 1rem 2rem;
}

.p-table-fee__td.--bg-pink {
  background-color: #ffe6ea;
}

.p-table-rentalfee {
  width: 100%;
}

.p-table-rentalfee__th, .p-table-rentalfee__td {
  vertical-align: middle;
}

.p-table-rentalfee__th:last-child, .p-table-rentalfee__td:last-child {
  text-align: right;
}

.p-table-rentalfee__th {
  text-align: left;
  font-weight: 500;
  padding: 0.75rem 2rem 0.75rem 0;
}

.p-table-rentalfee__th.--price {
  padding-left: 0;
  border-right: 1px dashed #ccc;
  width: 90px;
}

.p-table-rentalfee__th .c-text {
  width: 100%;
}

.p-table-rentalfee__td {
  padding: 0.75rem 2rem;
}

.p-table-rentalfee__td.--set {
  width: 220px;
}

.p-table-rentalfee__td .c-form-select {
  width: 90px;
  padding: 0.75rem 1rem;
  margin-right: 0.375rem;
}

.p-table-rentalfee tr + tr {
  border-top: 1px dashed #ccc;
}

@media only screen and (max-width: 767px) {
  .p-table__th {
    padding: 0.625rem 1.25rem 0.625rem 0;
  }
  .p-table__td {
    padding: 0.625rem 1.25rem;
  }
  .p-table.--spVertical .p-table__th {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    text-align: left;
    border-right: none;
    border-bottom: none;
  }
  .p-table.--spVertical .p-table__td {
    width: 100%;
    display: block;
    padding: 0.5rem 1rem;
    min-height: 36px;
  }
  .p-table-fee__th {
    width: 50%;
    padding: 0.5rem 1.25rem 0.5rem 0;
  }
  .p-table-fee__td {
    padding: 0.5rem 1.25rem;
  }
  .p-table-rentalfee__th, .p-table-rentalfee__td {
    display: block;
    padding: 0.5rem 1rem;
  }
  .p-table-rentalfee__th.--price {
    width: 100%;
    text-align: right;
    padding-left: 1rem;
    border-right: none;
  }
  .p-table-rentalfee__td.--set {
    width: 100%;
  }
}

/* pages */
/* page information */
.page-barbecue .p-pagetitle__img {
  background-image: url("../assets/images/kenmori/img_barbecue_page_title.jpg");
}

.page-barbecue .barbecue__content {
  padding-top: 6.25rem;
}

.page-barbecue .barbecue__column-wide {
  margin-top: 1.875rem;
  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;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 1.875rem;
}

.page-barbecue .barbecue__column-wide-content {
  width: 28.75rem;
}

.page-barbecue .barbecue__column-wide-img {
  width: 100%;
  max-width: 28.75rem;
  border-radius: 30px;
  overflow: hidden;
}

.page-barbecue .barbecue__column-wide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-barbecue .barbecue__column-wide-text {
  margin-top: 0.625rem;
}

.page-barbecue .barbecue-notes {
  margin-top: 1.875rem;
}

@media only screen and (max-width: 767px) {
  .page-barbecue .barbecue__content {
    padding-top: 3.75rem;
  }
  .page-barbecue .barbecue__column-wide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.625rem;
  }
  .page-barbecue .barbecue__column-wide-content {
    max-width: none;
  }
  .page-barbecue .barbecue__column-wide-title {
    text-align: center;
  }
  .page-barbecue .barbecue__column-wide-img {
    max-width: 100%;
    min-width: auto;
  }
  .page-barbecue .barbecue__column-wide-img img {
    width: 100%;
  }
  .page-barbecue .barbecue-notes {
    margin-top: 0.625rem;
  }
}

.page-bbqbooking-form .p-pagetitle__img {
  background-image: url("../assets/images/bbqbooking/img_bbqbooking_page_title.jpg");
}

.page-bbqbooking-form .l-inner {
  padding-top: 6.25rem;
}

.page-bbqbooking-confirm .p-pagetitle__img {
  background-image: url("../assets/images/bbqbooking/img_bbqbooking_page_title.jpg");
}

.page-bbqbooking-confirm .l-inner {
  padding-top: 6.25rem;
}

.page-bbqbooking-complete .p-pagetitle__img {
  background-image: url("../assets/images/bbqbooking/img_bbqbooking_page_title.jpg");
}

.page-bbqbooking-complete .l-inner {
  padding-top: 6.25rem;
}

@media only screen and (max-width: 767px) {
  .page-bbqbooking-form .l-inner {
    padding-top: 3.75rem;
  }
  .page-bbqbooking-confirm .l-inner {
    padding-top: 3.75rem;
  }
  .page-bbqbooking-confirm .p-table-rentalfee__th {
    padding-bottom: 0;
  }
  .page-bbqbooking-complete .l-inner {
    padding-top: 3.75rem;
  }
}

.page-bbqbooking .p-pagetitle__img {
  background-image: url("../assets/images/bbqbooking/img_bbqbooking_page_title.jpg");
}

.page-bbqbooking .l-inner {
  padding-top: 6.25rem;
}

.page-bbqbooking__map {
  margin: 0.9375rem auto 2.5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  max-width: 800px;
}

.page-bbqbooking__map img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (max-width: 767px) {
  .page-bbqbooking .l-inner {
    padding-top: 3.75rem;
  }
}

.page-bbqcancel .p-pagetitle__img {
  background-image: url("../assets/images/bbqbooking/img_bbqbooking_page_title.jpg");
}

.page-bbqcancel .l-inner {
  padding-top: 6.25rem;
}

.page-bbqcancel-confirm .p-pagetitle__img {
  background-image: url("../assets/images/bbqbooking/img_bbqbooking_page_title.jpg");
}

.page-bbqcancel-confirm .l-inner {
  padding-top: 6.25rem;
}

.page-bbqcancel-confirm .p-table__th, .page-bbqcancel-confirm .p-table__td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.page-bbqcancel-confirm .p-table-fee__th, .page-bbqcancel-confirm .p-table-fee__td, .page-bbqcancel-confirm .p-table-rentalfee__th, .page-bbqcancel-confirm .p-table-rentalfee__td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.page-bbqcancel-confirm .p-table-rentalfee__th:last-child {
  text-align: left;
}

.page-bbqcancel-confirm .c-form-select {
  width: auto;
}

.page-bbqcancel-complete .p-pagetitle__img {
  background-image: url("../assets/images/bbqbooking/img_bbqbooking_page_title.jpg");
}

.page-bbqcancel-complete .l-inner {
  padding-top: 6.25rem;
}

@media only screen and (max-width: 767px) {
  .page-bbqcancel .l-inner,
  .page-bbqcancel-confirm .l-inner,
  .page-bbqcancel-complete .l-inner {
    padding-top: 3.75rem;
  }
  .page-bbqcancel .c-text.--center,
  .page-bbqcancel-confirm .c-text.--center,
  .page-bbqcancel-complete .c-text.--center {
    text-align: left;
  }
}

.page-contact__button {
  margin-top: 3.75rem;
  text-align: center;
}

.page-contact__button.--flex {
  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;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1.25rem 2.5rem;
}

/* page information */
.page-craft_list .p-pagetitle__img {
  background-image: url("../assets/images/kenmori/img_craft_page_title.jpg");
}

.page-craft_list__content {
  padding-top: 6.25rem;
}

.page-craft_list .craft-list-columns {
  margin-top: 3.75rem;
}

.page-craft_list .craft-list__button {
  margin-top: 3.75rem;
}

@media only screen and (max-width: 767px) {
  .page-craft_list__content {
    padding-top: 3.75rem;
  }
}

/* page information */
.page-craft .p-pagetitle__img {
  background-image: url("../assets/images/kenmori/img_craft_page_title.jpg");
}

.page-craft .craft__content {
  padding-top: 6.25rem;
}

.page-craft .craft__first_img {
  overflow: hidden;
  border-radius: 30px;
}

.page-craft .craft__first_img img {
  width: 100%;
}

.page-craft .craft__time_img {
  margin-top: 1.25rem;
  border-top: 6px dashed #ededed;
}

.page-craft .craft__time_img img {
  width: 100%;
}

.page-craft .craft__flow {
  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;
  gap: 3.75rem;
}

.page-craft .craft__raft_flow-item {
  width: 80%;
  margin: 0 auto;
}

.page-craft .craft__raft_flow-img img {
  width: 100%;
}

.page-craft .craft__raft_flow-text {
  margin-top: 0.625rem;
}

.page-craft .craft__carousel {
  margin-top: 3.75rem;
}

.page-craft .p-column.--craft-list .p-column__title {
  text-align: center;
}

.page-craft .p-column.--craft-list .p-column__text {
  height: auto;
}

@media all and (min-width: 768px), print {
  .page-craft .p-column.--craft-list.--pc-tab-gap {
    grid-gap: 0 2.5rem;
  }
}

@media all and (min-width: 768px) and (max-width: 840px), print and (max-width: 840px) {
  .page-craft .p-column.--craft-list.--pc-tab-gap {
    grid-gap: 3.125rem 2.5rem;
  }
}

@media only screen and (max-width: 767px) {
  .page-craft .p-pagetitle__img {
    background-position: 25% center;
  }
  .page-craft .craft__content {
    padding-top: 3.75rem;
  }
  .page-craft .craft__raft_flow-item {
    width: 100%;
    margin: 0 auto;
  }
  .page-craft .craft__carousel {
    margin-top: 1.875rem;
  }
  .page-craft .p-column.--craft-list.--sp-2row {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0 0.9375rem;
  }
  .page-craft .p-column.--craft-list .craft-info {
    -webkit-box-align: start;
    -webkit-align-items: start;
    -ms-flex-align: start;
    align-items: start;
    padding-left: 1.875rem;
  }
}

.page-craftbooking-form .p-pagetitle__img {
  background-image: url("../assets/images/craftbooking/img_craftbooking_page_title.jpg");
}

.page-craftbooking-form .l-inner {
  padding-top: 6.25rem;
}

.page-craftbooking-confirm .p-pagetitle__img {
  background-image: url("../assets/images/craftbooking/img_craftbooking_page_title.jpg");
}

.page-craftbooking-confirm .l-inner {
  padding-top: 6.25rem;
}

.page-craftbooking-complete .p-pagetitle__img {
  background-image: url("../assets/images/craftbooking/img_craftbooking_page_title.jpg");
}

.page-craftbooking-complete .l-inner {
  padding-top: 6.25rem;
}

@media only screen and (max-width: 767px) {
  .page-craftbooking-form .p-pagetitle__img {
    background-position: 25% center;
  }
  .page-craftbooking-form .l-inner {
    padding-top: 3.75rem;
  }
  .page-craftbooking-confirm .p-pagetitle__img {
    background-position: 25% center;
  }
  .page-craftbooking-confirm .l-inner {
    padding-top: 3.75rem;
  }
  .page-craftbooking-confirm .p-table-rentalfee__th {
    padding-bottom: 0;
  }
  .page-craftbooking-complete .p-pagetitle__img {
    background-position: 25% center;
  }
  .page-craftbooking-complete .l-inner {
    padding-top: 3.75rem;
  }
}

.page-craftbooking .p-pagetitle__img {
  background-image: url("../assets/images/craftbooking/img_craftbooking_page_title.jpg");
}

.page-craftbooking .l-inner {
  padding-top: 6.25rem;
}

.page-craftbooking .p-box a {
  color: #333;
}

.page-craftbooking__map {
  margin: 0.9375rem auto 2.5rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  max-width: 800px;
}

.page-craftbooking__map img {
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

@media only screen and (max-width: 767px) {
  .page-craftbooking .p-pagetitle__img {
    background-position: 25% center;
  }
  .page-craftbooking .l-inner {
    padding-top: 3.75rem;
  }
}

.page-craftcancel .p-pagetitle__img {
  background-image: url("../assets/images/craftbooking/img_craftbooking_page_title.jpg");
}

.page-craftcancel .l-inner {
  padding-top: 6.25rem;
}

.page-craftcancel-confirm .p-pagetitle__img {
  background-image: url("../assets/images/craftbooking/img_craftbooking_page_title.jpg");
}

.page-craftcancel-confirm .l-inner {
  padding-top: 6.25rem;
}

.page-craftcancel-confirm .p-table__th, .page-craftcancel-confirm .p-table__td {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.page-craftcancel-confirm .p-table-fee__th, .page-craftcancel-confirm .p-table-fee__td, .page-craftcancel-confirm .p-table-rentalfee__th, .page-craftcancel-confirm .p-table-rentalfee__td {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.page-craftcancel-confirm .p-table-rentalfee__th:last-child {
  text-align: left;
}

.page-craftcancel-confirm .c-form-select {
  width: auto;
}

.page-craftcancel-complete .p-pagetitle__img {
  background-image: url("../assets/images/craftbooking/img_craftbooking_page_title.jpg");
}

.page-craftcancel-complete .l-inner {
  padding-top: 6.25rem;
}

@media only screen and (max-width: 767px) {
  .page-craftcancel .p-pagetitle__img,
  .page-craftcancel-confirm .p-pagetitle__img,
  .page-craftcancel-complete .p-pagetitle__img {
    background-position: 25% center;
  }
  .page-craftcancel .l-inner,
  .page-craftcancel-confirm .l-inner,
  .page-craftcancel-complete .l-inner {
    padding-top: 3.75rem;
  }
  .page-craftcancel .c-text.--center,
  .page-craftcancel-confirm .c-text.--center,
  .page-craftcancel-complete .c-text.--center {
    text-align: left;
  }
}

/* page information */
.page-floorguide .p-pagetitle__img {
  background-image: url("../assets/images/kenmori/img_floorguide_page_title.jpg");
}

.page-floorguide .floorguide__content {
  padding-top: 6.25rem;
}

.page-floorguide .floorguide img {
  border-radius: 30px;
  overflow: hidden;
}

.page-floorguide .floorguide__column-wide {
  margin-top: 2.5rem;
  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;
  gap: 1.875rem;
}

.page-floorguide .floorguide__column-wide-content {
  max-width: 470px;
  width: 100%;
}

.page-floorguide .floorguide__column-wide-img {
  width: 100%;
  max-width: 28.75rem;
  border-radius: 30px;
  overflow: hidden;
}

.page-floorguide .floorguide__column-wide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.page-floorguide .floorguide__column-wide-text {
  margin-top: 0.625rem;
}

@media only screen and (max-width: 767px) {
  .page-floorguide .floorguide__content {
    padding-top: 3.75rem;
  }
  .page-floorguide .floorguide__column-wide {
    margin-top: 3.125rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.25rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page-floorguide .floorguide__column-wide-content {
    max-width: none;
  }
  .page-floorguide .floorguide__column-wide-img {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }
  .page-floorguide .floorguide__column-wide-img img {
    width: 100%;
  }
}

/* page information */
.page-forest_lab .p-pagetitle__img {
  background-image: url("../assets/images/kenmori/img_forest_lab_page_title.jpg");
}

.page-forest_lab .forest_lab__content {
  padding-top: 6.25rem;
}

.page-forest_lab .forest_lab__column-wide {
  margin-top: 1.875rem;
  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;
  gap: 1.875rem;
}

.page-forest_lab .forest_lab__column-wide-content {
  max-width: 36.875rem;
}

.page-forest_lab .forest_lab__column-wide-img {
  max-width: 36.25rem;
  min-width: 25rem;
  border-radius: 30px;
  overflow: hidden;
}

.page-forest_lab .forest_lab__column-wide-text {
  margin-top: 0.625rem;
}

.page-forest_lab .p-nav__img img {
  width: 100%;
}

.page-forest_lab .p-nav__title {
  margin-top: 0.625rem;
  margin-bottom: 0;
}

.page-forest_lab .p-nav__text {
  margin-top: 0.625rem;
}

@media only screen and (max-width: 767px) {
  .page-forest_lab .forest_lab__content {
    padding-top: 3.75rem;
  }
  .page-forest_lab .forest_lab__column-wide {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
    -ms-flex-direction: column-reverse;
    flex-direction: column-reverse;
    gap: 0.625rem;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page-forest_lab .forest_lab__column-wide-content {
    max-width: none;
  }
  .page-forest_lab .forest_lab__column-wide-img {
    max-width: 100%;
    min-width: auto;
    width: 100%;
  }
  .page-forest_lab .forest_lab__column-wide-img img {
    width: 100%;
  }
  .page-forest_lab .forest_lab__column-wide-title {
    text-align: center;
  }
  .page-forest_lab .p-nav.--column2 {
    gap: 3.125rem;
  }
  .page-forest_lab .p-nav .p-nav__img img {
    width: 100%;
  }
}

/* page index */
.page-index .l-header__nav-item.--top .l-header__nav-link:after {
  width: 100%;
}

.page-index__news {
  margin-top: 7.5rem;
}

.page-index__nav {
  margin-top: 7.5rem;
  padding: 12.5rem 0;
  position: relative;
}

.page-index__nav-bg {
  top: 0;
  right: 0;
  width: calc(50% + 800px);
  max-width: 100%;
  height: 1000px;
  position: absolute;
  overflow: hidden;
  border-top-left-radius: 60px;
}

.page-index__nav-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.page-index__nav-inner {
  padding: 7.5rem 0;
  position: relative;
  z-index: 1;
}

.page-index__nav-inner::before {
  content: "";
  width: calc(50% + 800px);
  max-width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  height: 820px;
  border-top-right-radius: 60px;
  background-color: #fff;
}

.page-index__nav-inner .l-inner {
  z-index: 2;
  position: relative;
}

.page-index__nav-logo {
  left: -116px;
  bottom: -300px;
  z-index: 1;
  position: absolute;
}

.page-index__nav-logo-img {
  width: 430px;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  position: absolute;
}

.page-index__nav-logo-text {
  width: 790px;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-animation: rotate-62395748 35s linear infinite;
  animation: rotate-62395748 35s linear infinite;
}

.page-index .p-nav.--camp .p-campbox {
  width: 100%;
  padding: 2rem 0;
  background-image: url(../assets/images/index/img_campbox.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  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;
  position: relative;
  -webkit-box-shadow: 0px 0px 10px -5px #ccc;
  box-shadow: 0px 0px 10px -5px #ccc;
}

.page-index .p-nav.--camp .p-campbox__logo {
  text-align: center;
  width: 35%;
}

.page-index .p-nav.--camp .p-campbox__logo img {
  width: 225px;
}

.page-index .p-nav.--camp .p-campbox__text {
  text-align: center;
  width: 65%;
  max-width: 590px;
  padding-top: 1.25rem;
}

.page-index .p-nav.--camp .p-campbox__text .info img {
  width: 370px;
}

.page-index .p-nav.--camp .p-campbox__text .title {
  text-align: center;
  font-size: clamp(2.25rem, 4.5vw, 2.6875rem);
  font-family: "century-gothic", sans-serif;
  font-weight: bold;
  padding: 0 1.25rem;
  letter-spacing: 0.1em;
  color: #fff;
  line-height: 1.4;
}

.page-index .p-nav.--camp .p-campbox__text .title span {
  letter-spacing: normal;
  display: block;
  font-size: 1.1875rem;
  font-family: "Noto Sans JP", sans-serif;
}

.page-index .p-nav.--camp .p-campbox__text .link {
  position: absolute;
  bottom: 0;
  right: 0;
  background-color: #3E4143;
  border-radius: 20px 0 20px 0;
  max-width: 590px;
  width: 65%;
  height: 64px;
  text-align: center;
  color: #fff;
  font-weight: bold;
  line-height: 64px;
}

.page-index .p-nav.--camp .p-campbox__text .link:hover {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 0.7;
}

.page-index .p-nav__title.--two-line {
  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;
  height: 8.875rem;
}

@media (max-width: 993px) {
  .page-index .p-nav__title.--w993-two-line {
    height: 8.875rem;
    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;
  }
}

.page-index .p-nav.--column3 {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 768px) and (max-width: 1280px) {
  .page-index .p-nav.--column3 .c-button {
    min-width: 310px;
  }
}

@media only screen and (max-width: 767px) {
  .page-index__nav {
    margin-top: 6.25rem;
    padding: 11.25rem 0 7.5rem;
  }
  .page-index__nav-inner {
    padding: 4.375rem 0;
  }
  .page-index__nav-logo {
    left: -40px;
    bottom: -95px;
  }
  .page-index__nav-logo-img {
    width: 128px;
  }
  .page-index__nav-logo-text {
    width: 278px;
  }
  .page-index .p-nav.--camp .p-campbox {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 60px;
  }
  .page-index .p-nav.--camp .p-campbox__logo {
    width: 100%;
  }
  .page-index .p-nav.--camp .p-campbox__logo img {
    width: 140px;
  }
  .page-index .p-nav.--camp .p-campbox__text {
    width: 100%;
    max-width: inherit;
    margin-bottom: 1.25rem;
  }
  .page-index .p-nav.--camp .p-campbox__text .info img {
    width: 250px;
  }
  .page-index .p-nav.--camp .p-campbox__text .title {
    font-size: 1.625rem;
  }
  .page-index .p-nav.--camp .p-campbox__text .title span {
    font-size: 0.875rem;
  }
  .page-index .p-nav.--camp .p-campbox__text .link {
    border-radius: 0 0 20px 20px;
    max-width: inherit;
    width: 100%;
    height: 60px;
    line-height: 60px;
  }
  .page-index .p-nav__title.--two-line {
    height: auto;
  }
  .page-index .p-nav__title.--w993-two-line {
    height: auto;
  }
  .page-index .p-nav.--column3 .p-nav__item {
    width: 100%;
  }
  .page-index .p-nav.--column3 .c-button {
    min-width: 310px;
  }
}

/* page information */
.page-information .l-all {
  overflow: hidden;
}

.page-information .p-pagetitle__img {
  background-image: url("../assets/images/information/img_information_page_title.jpg");
}

.page-information__content {
  padding: 6.25rem 0 0;
  position: relative;
}

.page-information__content .p-buttons {
  margin-top: 1.25rem;
}

.page-information__content .p-logo {
  right: -130px;
  top: 220px;
}

@media only screen and (max-width: 767px) {
  .page-information__content {
    padding: 3.75rem 0 0;
  }
  .page-information__content .p-logo {
    right: -40px;
    top: 160px;
  }
}

.page-legal_craft .p-pagetitle__img {
  background-image: url("../assets/images/legal-craft/img_legal-craft_page_title.jpg");
}

.page-legal_craft .l-inner {
  padding-top: 6.25rem;
}

.page-legal_craft .p-pagetitle__title-jp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .page-legal_craft .l-inner {
    padding-top: 3.75rem;
  }
}

.page-legal .p-pagetitle__img {
  background-image: url("../assets/images/legal/img_legal_page_title.jpg");
}

.page-legal .l-inner {
  padding-top: 6.25rem;
}

.page-legal .p-pagetitle__title-jp {
  display: none;
}

@media only screen and (max-width: 767px) {
  .page-bbqbooking .l-inner {
    padding-top: 3.75rem;
  }
}

/* page information */
.page-nature .p-pagetitle__img {
  background-image: url("../assets/images/kenmori/img_nature_page_title.jpg");
}

.page-nature .nature__content {
  padding-top: 6.25rem;
}

.page-nature .p-column {
  margin-top: 3.75rem;
}

@media only screen and (max-width: 767px) {
  .page-nature .nature__content {
    padding-top: 2.25rem;
  }
}

/* page news */
.page-news .p-pagetitle__img {
  background-image: url("../assets/images/news/img_news_page_title.jpg");
}

.page-news__content {
  padding: 6.25rem 0 0;
  position: relative;
  overflow: hidden;
}

.page-news__content .p-logo {
  right: -130px;
  top: 560px;
}

.page-news .p-news__list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 30px;
}

@media all and (min-width: 768px), print {
  .page-news .p-news__list > * {
    width: calc((100% - 60px) / 3);
  }
}

@media only screen and (max-width: 767px) {
  .page-news__content {
    padding: 3.75rem 0 0;
  }
  .page-news .p-news__container {
    margin-left: 0;
    margin-right: 0;
  }
}

/* page editor */
.page-editor .p-pagetitle__img {
  background-image: url("../assets/images/news/img_news_page_title.jpg");
}

.page-editor__section-title {
  margin-bottom: 0.625rem;
}

.page-editor__section-title .c-heading02 {
  line-height: 1.5;
}

.page-editor__content {
  padding: 6.25rem 0 0;
  position: relative;
  overflow: hidden;
}

.page-editor .p-news__link-cat {
  display: inline-block;
  position: relative;
  text-align: left;
  margin-left: 0.625rem;
}

.page-editor__button {
  margin-top: 6.25rem;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  .page-editor__content {
    padding: 3.75rem 0 0;
  }
}

/* page playground */
.page-playground .l-header__nav-item.--playground .l-header__nav-link:after {
  width: 100%;
}

.page-playground .p-pagetitle__img {
  background-image: url("../assets/images/playground/img_playground_page_title.jpg");
}

.page-playground__content {
  padding: 6.25rem 0 0;
  position: relative;
  overflow: hidden;
}

.page-playground__content .p-logo {
  right: -130px;
  top: 560px;
}

@media only screen and (max-width: 767px) {
  .page-playground__content {
    padding: 3.75rem 0 0;
  }
  .page-playground__content .p-logo {
    right: -40px;
    top: 260px;
  }
}

/* page information */
.page-rental-boat .p-pagetitle__img {
  background-image: url("../assets/images/kenmori/img_rental_boat_page_title.jpg");
}

.page-rental-boat .rental-boat__content {
  padding-top: 6.25rem;
}

@media only screen and (max-width: 767px) {
  .page-rental-boat .rental-boat__content {
    padding-top: 3.75rem;
  }
}

/* page information */
.page-rental-cycle .p-pagetitle__img {
  background-image: url("../assets/images/kenmori/img_rental_cycle_page_title.jpg");
}

.page-rental-cycle .rental-cycle__content {
  padding-top: 6.25rem;
}

.page-rental-cycle .p-column.--column4 {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

@media only screen and (max-width: 767px) {
  .page-rental-cycle .rental-cycle__content {
    padding-top: 3.75rem;
  }
  .page-rental-cycle .p-column.--column4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* page routeh */
.page-routeh .l-header__nav-item.--routeh .l-header__nav-link:after {
  width: 100%;
}

.page-routeh .p-pagetitle__img {
  background-image: url("../assets/images/routeh/img_routeh_page_title.jpg");
}

.page-routeh__content {
  padding: 6.25rem 0 0;
  position: relative;
  overflow: hidden;
}

.page-routeh__content-map {
  border-radius: 30px;
  overflow: hidden;
  position: relative;
}

.page-routeh__content .p-logo {
  right: -130px;
  top: 560px;
}

@media only screen and (max-width: 767px) {
  .page-routeh__content {
    padding: 5rem 0 0;
  }
  .page-routeh__content-map.--spMax {
    overflow-x: auto;
  }
  .page-routeh__content-map.--spMax img {
    width: auto;
    min-width: 600px;
    margin-bottom: 1.25rem;
  }
  .page-routeh__content-map.--spMax::-webkit-scrollbar {
    height: 8px;
    background: #eee;
    border-radius: 5px;
  }
  .page-routeh__content-map.--spMax::-webkit-scrollbar-thumb {
    background: -webkit-linear-gradient(355deg, #5dc1d1 0%, #1789e5 100%);
    background: linear-gradient(95deg, #5dc1d1 0%, #1789e5 100%);
    border-radius: 5px;
  }
  .page-routeh__content .p-logo {
    right: -40px;
    top: 260px;
  }
}

/* page template */
.guid {
  position: fixed;
  width: 1240px;
  margin: 0 20px;
  height: 100vh;
  border-left: 1px solid red;
  border-right: 1px solid red;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  top: 0;
  z-index: 9999;
}

.guid::after {
  content: "";
  display: block;
  width: 1px;
  height: 100vh;
  background-color: red;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.page-template .c-text {
  margin-top: 0.625rem;
}

.page-template .p-box {
  margin-top: 1.25rem;
}

.page-template .p-anchor-list {
  margin-top: 2.5rem;
}

.page-template .p-table {
  margin-top: 2.5rem;
}

.page-template .p-accordion {
  margin-top: 2.5rem;
}

.page-template .p-column {
  margin-top: 6.25rem;
}

.page-template .p-column-wide {
  margin-top: 6.25rem;
}

/* page information */
.page-welcome_center .p-pagetitle__img {
  background-image: url("../assets/images/welcome-center/img_welcome_center_page_title.jpg");
}

.page-welcome_center .welcome_center__content {
  padding-top: 6.25rem;
}

.page-welcome_center .welcome_center__nav {
  margin-top: 7.5rem;
}

@media only screen and (max-width: 767px) {
  .page-welcome_center .welcome_center__content {
    padding-top: 3.75rem;
  }
  .page-welcome_center .welcome_center__nav {
    margin-top: 3.75rem;
  }
}

/* utility */
/* display */
.u-inlineBlock {
  display: inline-block;
}

.u-nolink {
  pointer-events: none;
}

.u-z-1 {
  z-index: 1;
  position: relative;
}

.u-z-2 {
  z-index: 2;
  position: relative;
}

@media all and (min-width: 1281px), print {
  .u-tel-link {
    pointer-events: none;
  }
  .u-only-tab-sp {
    display: none !important;
  }
}

@media all and (min-width: 768px), print {
  .u-only-sp {
    display: none !important;
  }
}

@media only screen and (max-width: 767px) {
  .u-only-pc {
    display: none !important;
  }
  .u-pd-0-sp {
    padding: 0;
  }
}

.u-icon-blank::after {
  content: "";
  display: inline-block;
  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="25" height="25"><path fill="%231789e5" d="M0 25V7h7V0h18v18h-7v7zm3-3h12v-4H7v-8H3zm19-7V3H10v4h8v8zm-12 0h5v-5h-5z"/></svg>');
  background-repeat: no-repeat;
  background-position: center center;
  width: 14px;
  height: 14px;
  background-size: contain;
}

.u-mt-10 {
  margin-top: 0.625rem;
}

.u-mt-20 {
  margin-top: 1.25rem;
}

.u-mt-40 {
  margin-top: 2.5rem;
}

.u-mt-60 {
  margin-top: 3.75rem;
}

.u-mt-80 {
  margin-top: 5rem;
}

.u-mt-120 {
  margin-top: 7.5rem;
}

.u-mb-40 {
  margin-bottom: 2.5rem;
}

.u-mx-5 {
  margin: 0 0.3125rem;
}

.u-mt-carousel {
  margin-top: 12.5rem;
}

.u-mt-section {
  margin-top: 6.25rem;
}

.u-mt-h4 {
  margin-top: 6.25rem;
}

@media only screen and (max-width: 767px) {
  .u-mt-sp-10 {
    margin-top: 0.625rem;
  }
  .u-mt-sp-20 {
    margin-top: 1.25rem;
  }
  .u-mt-carousel {
    margin-top: 11.25rem;
  }
  .u-mt-section {
    margin-top: 3.75rem;
  }
}

.u-plus-minus {
  width: 50px;
  height: 50px;
  position: relative;
}

.u-plus-minus::after, .u-plus-minus::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: #000;
}

.u-plus-minus.--blue::after, .u-plus-minus.--blue::before {
  background-color: #1789e5;
}

.u-plus-minus::after {
  -webkit-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}

.u-plus-minus::before {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(90deg);
  transform: translateX(-50%) translateY(-50%) rotate(90deg);
}

.u-plus-minus.is-active::before {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(180deg);
  transform: translateX(-50%) translateY(-50%) rotate(180deg);
}

.u-close {
  display: block;
  margin: 0 auto;
  width: 8px;
  height: 1px;
  border-radius: 999px;
  background-color: #111111;
}

.u-circle {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ed1c24;
}

.u-triangle {
  display: inline-block;
  width: 10px;
  height: 10px;
  background: url(../assets/images/common/icon_triangle.png) repeat center/contain;
}

.u-text-center {
  text-align: center;
}

.u-text-right {
  text-align: right;
}

.u-reference-mark {
  text-indent: -1em;
  padding-left: 1em;
}

.u-color-brand {
  color: #1789e5;
}

.u-color-red {
  color: #ed1c24;
}

.u-text-bold {
  font-weight: bold;
}

@media all and (min-width: 768px), print {
  .u-text-center-pc-tab {
    text-align: center;
  }
}

/* js */
.js-fadeIn {
  opacity: 0;
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
  -webkit-transition: 1s all;
  transition: 1s all;
}

.js-fadeIn.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.js-flipRight.is-active {
  -webkit-animation-name: flipRightAnime;
  animation-name: flipRightAnime;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-perspective-origin: right center;
  perspective-origin: right center;
  opacity: 0;
}

.js-bgLRextendAnime {
  -webkit-animation-name: bgextendAnimeBase;
  animation-name: bgextendAnimeBase;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.js-bgLRextendAnime > * {
  opacity: 0;
}

.js-bgLRextendAnime::before {
  opacity: 0;
}

.js-bgLRextendAnime.is-active > * {
  -webkit-animation-name: bgextendAnimeSecond;
  animation-name: bgextendAnimeSecond;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  opacity: 0;
}

.js-bgLRextendAnime.is-active::before {
  opacity: 1;
  -webkit-animation-name: bgLRextendAnime;
  animation-name: bgLRextendAnime;
  -webkit-animation-duration: 1s;
  animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

@media only screen and (max-width: 767px) {
  .js-bgLRextendAnime > * {
    -webkit-animation-name: bgextendAnimeSecond;
    animation-name: bgextendAnimeSecond;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-delay: 0.6s;
    animation-delay: 0.6s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  .js-bgLRextendAnime::before {
    opacity: 1;
    -webkit-animation-name: bgLRextendAnime;
    animation-name: bgLRextendAnime;
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
  }
}

.js-form-display-a {
  display: none;
  overflow: hidden;
}
