@charset "UTF-8";
/* Universal box-sizing reset */
*,
*::before,
*::after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  zoom: 1;
  min-height: auto;
}

/* Set default styles for html */
html {
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
  overflow-y: scroll;
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
a,
figure,
blockquote,
dl,
dd,
input,
textarea,
label {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
/* Set core body defaults */
body {
  word-break: auto-phrase;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  font-size-adjust: 0.5;
}

html,
body {
  font-weight: normal;
  font-style: normal;
  font-optical-sizing: auto;
  font-style: normal;
  max-width: 100vw;
  overflow-x: clip;
}

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

strong {
  font-style: normal;
  line-height: 1;
  font-weight: 600;
}

/* Reset default link styles */
a {
  text-decoration: none; /* Remove underlines from all links */
  color: inherit; /* Make sure the link color inherits the surrounding text color */
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
  outline: none;
  cursor: pointer;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -ms-interpolation-mode: bicubic;
  vertical-align: bottom;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Reset styles for form elements */
input,
button,
textarea,
select {
  font: inherit;
  border: none; /* Remove borders on form elements */
  background: transparent; /* Make background transparent */
}

/* Remove animations and transitions for users with reduced motion preferences */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
li {
  list-style-type: none;
}

input[type=text],
input[type=tel],
input[type=email],
input[type=submit],
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  justify-content: center;
}

iframe {
  border: none;
  display: block;
}

.pc-none {
  display: block;
}
@media (min-width: 768px) {
  .pc-none {
    display: none;
  }
}

.sp-none {
  display: none;
}
@media (min-width: 768px) {
  .sp-none {
    display: block;
  }
}

.lg-none {
  display: none;
}
@media (min-width: 992px) {
  .lg-none {
    display: block;
  }
}

.lg-bk {
  display: block;
}
@media (min-width: 992px) {
  .lg-bk {
    display: none;
  }
}

.sp-br > br {
  display: block;
}
@media (min-width: 768px) {
  .sp-br > br {
    display: none;
  }
}

.tab-br > br {
  display: block;
}
@media (min-width: 992px) {
  .tab-br > br {
    display: none;
  }
}

.xl-br > br {
  display: block;
}
@media (min-width: 1200px) {
  .xl-br > br {
    display: none;
  }
}

.reverse-x {
  transform: scale(-1, 1);
}

.reverse-y {
  transform: scale(1, -1);
}

.reverse-xy {
  transform: scale(-1, -1);
}

.fs-w-xs {
  font-weight: 300;
}

.fs-w-sm {
  font-weight: 400;
}

.fs-w-md {
  font-weight: 500;
}

.fs-w-lg {
  font-weight: 600;
}

.fs-w-b {
  font-weight: bold;
}

.fs-w-xl {
  font-weight: 800;
}

.word-normal {
  word-break: normal;
}

html.is-resizing *,
html.is-resizing *::before,
html.is-resizing *::after {
  transition: none !important;
}

a {
  transition: all 0.3s ease;
  display: inline-block;
}
a:hover {
  transition: all 0.3s ease;
  text-decoration: none;
}

.is-scroll-lock {
  overflow: hidden;
}

.js-stagger > * {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(20px);
  transition: opacity 0.8s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s cubic-bezier(0.22, 1, 0.36, 1), filter 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.js-stagger.is-show > * {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.js-tick {
  overflow: hidden;
  white-space: nowrap;
}

.js-tick-track {
  display: inline-flex;
  will-change: transform;
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-animation: loopText var(--loop-duration, 10s) linear infinite;
          animation: loopText var(--loop-duration, 10s) linear infinite;
}

.js-tick-item {
  display: inline-block;
  padding-right: 4rem;
}

@-webkit-keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}

@keyframes loopText {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-1 * var(--loop-distance, 0px)), 0, 0);
  }
}
.js-typein {
  opacity: 0;
}
.js-typein > * {
  opacity: 0;
}

.js-tab-panel {
  display: none;
  opacity: 0;
}
.js-tab-panel.is-show {
  display: block;
  -webkit-animation: panel-show 0.6s ease forwards;
  animation: panel-show 0.6s ease forwards;
}

@-webkit-keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes panel-show {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.scroll-mask,
.js-scroll-mask,
.scroll-mask-vertical,
.js-scroll-mask-vertical {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.scroll-mask,
.js-scroll-mask {
  aspect-ratio: 4/3;
}

.scroll-mask-vertical,
.js-scroll-mask-vertical {
  aspect-ratio: 3/4;
}

.scroll-mask img,
.js-scroll-mask img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition-duration: 0.8s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-mask-image: url(/system_panel/uploads/images/mask.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
  -webkit-mask-position: center bottom;
  mask-image: url(/system_panel/uploads/images/mask.svg);
  mask-mode: alpha;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: auto 200%;
  opacity: 0;
}

.scroll-mask-vertical img,
.js-scroll-mask-vertical img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1);
  transition-duration: 0.8s;
  transition-property: transform;
  transition-timing-function: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  -webkit-mask-image: url(/system_panel/uploads/images/mask-vertical.svg);
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: auto 200%;
  -webkit-mask-position: center bottom;
  mask-image: url(/system_panel/uploads/images/mask-vertical.svg);
  mask-mode: alpha;
  mask-position: center bottom;
  mask-repeat: no-repeat;
  mask-size: auto 200%;
  opacity: 0;
}

.scroll-mask.is-visible img,
.js-scroll-mask.is-visible img,
.scroll-mask-vertical.is-visible img,
.js-scroll-mask-vertical.is-visible img {
  -webkit-animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
  animation: 2.3s mask-animation cubic-bezier(0.115, 0.405, 0.24, 1) 0s forwards;
}

@-webkit-keyframes mask-animation {
  0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1;
  }
}
@keyframes mask-animation {
  0% {
    -webkit-mask-position: center bottom;
    mask-position: center bottom;
    opacity: 0;
  }
  20% {
    opacity: 1;
  }
  100% {
    -webkit-mask-position: center 0%;
    -webkit-mask-size: auto 500%;
    mask-position: center 0%;
    mask-size: auto 500%;
    opacity: 1;
  }
}
:root {
  --base: #f8f2f3;
  --main: #ee8887;
  --pk01: #f2e0e0;
  --pk02: #f6cbcb;
  --txt: #463417;
  --sub: #c7b466;
  --zenmaru: "Zen Maru Gothic", "Hiragino Sans", "Yu Gothic", "YuGothic",
    "Noto Sans JP", "Meiryo", sans-serif;
  --round: m-plus-rounded-1c, "Hiragino Sans", "Yu Gothic", "YuGothic",
    "Noto Sans JP", "Meiryo", sans-serif;
  --bg-wave01: url(../images/wave-01.png);
  --bg-wave02: url(../images/wave-02.png);
  --bg-wave03: url(../images/wave-03.png);
}

.c-base {
  color: var(--base) !important;
}

.c-main {
  color: var(--main) !important;
}

.c-pk01 {
  color: var(--pk01) !important;
}

.c-pk02 {
  color: var(--pk02) !important;
}

.c-txt {
  color: var(--txt) !important;
}

.c-sub {
  color: var(--sub) !important;
}

.c-w {
  color: white !important;
}

.bg-base {
  background-color: var(--base) !important;
}

.bg-main {
  background-color: var(--main) !important;
}

.bg-pk01 {
  background-color: var(--pk01) !important;
}

.bg-pk02 {
  background-color: var(--pk02) !important;
}

.bg-txt {
  background-color: var(--txt) !important;
}

.bg-sub {
  background-color: var(--sub) !important;
}

.bg-w {
  background-color: white !important;
}

.zenmaru {
  font-family: var(--zenmaru) !important;
}

.round {
  font-family: var(--round) !important;
}

.br-30 {
  border-radius: clamp(20px, 1.5vw, 30px);
  overflow: hidden;
}

.b-1 {
  border: solid 1px var(--txt) !important;
}

.b-2 {
  border: solid 1px var(--txt) !important;
}
@media (min-width: 768px) {
  .b-2 {
    border: solid 2px var(--txt) !important;
  }
}

.bb-1-pk {
  border-bottom: solid 1px var(--main) !important;
}

.loading-overlay {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  opacity: 1;
  visibility: visible;
}

.loading-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loading-overlay__text {
  opacity: 0;
  font-weight: 800;
  font-size: clamp(1.75rem, 1.203rem + 2.36vw, 3.438rem);
  line-height: 1.5;
  text-shadow: 0 0 20px white, 0 0 20px white, 0 0 20px white;
}
.loading-overlay__text span {
  display: inline-block;
  opacity: 0;
}

body.loading {
  overflow: hidden;
}

body {
  font-size: clamp(1.25rem, 1.169rem + 0.35vw, 1.5rem);
  color: var(--txt);
  font-family: var(--round);
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 1.15px;
  background-color: var(--base);
}

a {
  color: var(--txt);
}
a:hover {
  color: #ee8887;
}

@media (min-width: 1200px) {
  .container {
    max-width: 1240px;
  }
}

.gjs-dashed .loading-overlay__text {
  opacity: 1 !important;
}
.gjs-dashed .loading-overlay__text span {
  opacity: 1 !important;
}
.gjs-dashed .header__nav {
  visibility: visible !important;
  opacity: 1 !important;
}
.gjs-dashed * {
  -webkit-animation: none !important;
          animation: none !important;
  transition: none !important;
}
.gjs-dashed .scroll-mask img,
.gjs-dashed .js-scroll-mask img,
.gjs-dashed .scroll-mask-vertical img,
.gjs-dashed .js-scroll-mask-vertical img {
  opacity: 1 !important;
  -webkit-mask-image: none !important;
          mask-image: none !important;
}
.gjs-dashed .p-concept .sec02 .box-txt p {
  color: white !important;
}
.gjs-dashed .js-typein {
  opacity: 1 !important;
}
.gjs-dashed .js-typein > * {
  opacity: 1 !important;
}
.gjs-dashed .p-top-hr {
  min-height: 100vh !important;
  pointer-events: all !important;
}
.gjs-dashed .p-top-hr__main {
  z-index: 10 !important;
}
.gjs-dashed .page-hr {
  background-color: rgba(0, 0, 0, 0.3137254902) !important;
}
.gjs-dashed .page-hr__title {
  pointer-events: none !important;
}
.gjs-dashed .page-hr__title > p,
.gjs-dashed .page-hr__title > h1 {
  pointer-events: all !important;
}
.gjs-dashed .page-hr__bg {
  display: flex !important;
}
.gjs-dashed .page-hr img {
  display: block !important;
}

.header {
  position: fixed;
  z-index: 997;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  pointer-events: none;
}
.header__inner {
  pointer-events: none;
  padding: 15px 20px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media (min-width: 768px) {
  .header__inner {
    padding: 26px 50px;
  }
}
.header__brand {
  pointer-events: all;
}
.header .reserve {
  pointer-events: all;
  margin-left: auto;
}
.header__nav {
  pointer-events: all;
  position: fixed;
  z-index: 997;
  inset: 0;
  width: 100%;
  height: 100dvh;
  visibility: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: var(--pk01);
  transition: all 0.4s ease;
  opacity: 0;
  margin-left: auto;
  justify-content: center;
  padding-block: 50px;
  padding-inline: 20px;
  overflow-y: auto;
  gap: 30px;
}
.header__nav::-webkit-scrollbar {
  width: 10px;
  background: transparent;
}
.header__nav::-webkit-scrollbar-track {
  background-color: transparent;
}
.header__nav::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: var(--);
}
@media (max-height: 750px) {
  .header__nav {
    justify-content: flex-start;
  }
}
@media screen and (max-height: 600px) and (orientation: landscape) {
  .header__nav {
    justify-content: flex-start;
  }
}
.header__nav.open {
  visibility: visible;
  opacity: 1;
}
.header__nav-lists {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0 clamp(30px, 6vw, 70px);
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .header__nav-lists {
    max-width: 1100px;
  }
}
.header__nav-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
}
@media (min-width: 768px) {
  .header__nav-list {
    flex: 1;
  }
}
.header__nav-link {
  display: flex;
  justify-content: space-between;
  gap: 0 30px;
  border-bottom: solid 1px var(--main);
  padding-block: clamp(12px, 1.5vw, 30px);
  width: 100%;
  font-family: var(--round);
  font-weight: 800;
}
.header__nav-link .arrow {
  max-width: clamp(20px, 1.5vw, 33px);
}

#hum-btn {
  position: relative;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  margin-block: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-left: 12px;
  background-color: white;
  padding: 18px 14px;
  border: solid 1px var(--txt);
  border-radius: 100px;
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  display: inline-block;
  transition: all 0.5s ease;
  box-sizing: border-box;
  width: 20px;
  height: 12px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.3s ease;
}
.btn-trigger__bar {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  display: inline-block;
  height: 1.5px;
  transition: all 0.5s ease;
  background-color: var(--txt);
  border-radius: 99px;
}
@media (min-width: 768px) {
  .btn-trigger__bar {
    height: 2px;
  }
}
.btn-trigger__bar:nth-of-type(1) {
  top: 0;
  left: 0;
  -webkit-animation: menu-bar01 0.75s forwards;
          animation: menu-bar01 0.75s forwards;
}
.btn-trigger__bar:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.btn-trigger__bar:nth-of-type(3) {
  bottom: 0;
  left: 0;
  -webkit-animation: menu-bar02 0.75s forwards;
          animation: menu-bar02 0.75s forwards;
}

.is-nav-open .btn-trigger {
  flex-direction: row;
  transition: all 0.5s ease;
}
.is-nav-open .btn-trigger__bar:nth-of-type(1) {
  -webkit-animation: active-menu-bar01 0.75s forwards;
          animation: active-menu-bar01 0.75s forwards;
}
.is-nav-open .btn-trigger__bar:nth-of-type(2) {
  opacity: 0;
}
.is-nav-open .btn-trigger__bar:nth-of-type(3) {
  -webkit-animation: active-menu-bar02 0.75s forwards;
          animation: active-menu-bar02 0.75s forwards;
}

@-webkit-keyframes menu-bar01 {
  0% {
    transform: translateY(5px) rotate(45deg);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}

@keyframes menu-bar01 {
  0% {
    transform: translateY(5px) rotate(45deg);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(5px) rotate(45deg);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(5px) rotate(0);
  }
  100% {
    transform: translateY(5px) rotate(45deg);
  }
}
@-webkit-keyframes menu-bar02 {
  0% {
    transform: translateY(-5px) rotate(-45deg);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-5px) rotate(-45deg);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@-webkit-keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(-5px) rotate(-45deg);
  }
}
@keyframes active-menu-bar02 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-5px) rotate(0);
  }
  100% {
    transform: translateY(-5px) rotate(-45deg);
  }
}
.ft-reserve {
  position: relative;
  z-index: 1;
  padding-bottom: 23px;
}
.ft-reserve::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: url("../images/wave-01.png") repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}

.footer {
  background-color: var(--pk01);
}
.footer .btn-wrap a {
  justify-content: flex-start;
  min-width: auto;
}

.btn-wrap a,
.btn-wrap .button {
  border: solid 1px var(--txt);
  border-radius: 100px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 200px;
  padding: 9px 22px;
  font-family: var(--round);
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: normal;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 4px;
  background-color: white;
  cursor: pointer;
}
@media (min-width: 768px) {
  .btn-wrap a,
.btn-wrap .button {
    min-width: 260px;
  }
}
.btn-wrap a .arrow,
.btn-wrap .button .arrow {
  max-width: 23px;
  margin-left: 13px;
}
.btn-wrap a img,
.btn-wrap .button img {
  transition: all 0.3s ease;
}
.btn-wrap a:hover .arrow img,
.btn-wrap .button:hover .arrow img {
  transform: translateX(5px);
}
.btn-wrap.down-btn .button .arrow img {
  transform: rotate(90deg);
}
.btn-wrap.down-btn .button:hover .arrow img {
  transform: rotate(90deg) translateX(5px);
}

.reserve-btn > a {
  display: flex;
  justify-content: center;
  padding: 25px clamp(20px, 1.8vw, 35px);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  background-color: var(--pk02);
  border: solid 1px var(--pk02);
}
@media (min-width: 768px) {
  .reserve-btn > a {
    border: solid 2px var(--pk02);
  }
}
.reserve-btn > a:hover {
  background-color: var(--pk01);
}
.reserve-btn .inner {
  flex: 1;
}
.reserve-btn .side-left,
.reserve-btn .side-right {
  width: clamp(40px, 6.5vw, 83px);
}
.reserve-btn .wrap {
  line-height: 1;
  font-weight: 800;
}
.reserve-btn .arrow {
  max-width: clamp(20px, 3vw, 40px);
}

.section-title .ja {
  font-family: var(--round);
  font-weight: 800;
  font-size: clamp(1.688rem, 1.343rem + 1.49vw, 2.75rem);
  line-height: 1.2;
}
.section-title .en {
  color: var(--sub);
  font-family: var(--zenmaru);
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
}

.contents-title .main,
.contents-title .sub {
  font-weight: 800;
  font-family: var(--round);
}
.contents-title .main {
  color: var(--main);
  font-size: clamp(1.688rem, 1.343rem + 1.49vw, 2.75rem);
}

.page-hr {
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-height: 700px;
}
@media (min-width: 768px) {
  .page-hr {
    max-height: 950px;
    min-height: 650px;
  }
}
@media screen and (max-height: 600px) and (orientation: landscape) {
  .page-hr {
    max-height: 700px;
  }
}
.page-hr::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.page-hr__title {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.page-hr__title .en {
  color: var(--main);
}
.page-hr__title .ja {
  color: white;
  font-weight: 800;
  font-size: clamp(2.188rem, 1.6rem + 2.54vw, 4rem);
}
.page-hr__bg {
  height: 100%;
  min-height: inherit;
}
.page-hr__bg img {
  height: 100%;
  min-height: inherit;
  -o-object-position: center;
     object-position: center;
}

@-webkit-keyframes wave-move {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: -2048px 100%;
  }
}

@keyframes wave-move {
  from {
    background-position: 0 100%;
  }
  to {
    background-position: -2048px 100%;
  }
}
.menu-link {
  display: flex;
  justify-content: center;
}
.menu-link a {
  width: 90%;
  max-width: 430px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 25px 20px;
  line-height: 1;
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
  font-weight: 800;
  border: solid 1px var(--txt);
  border-radius: clamp(20px, 2vw, 30px);
  background-color: var(--pk01);
}
@media (min-width: 768px) {
  .menu-link a {
    border: solid 2px var(--txt);
  }
}
@media (min-width: 768px) {
  .menu-link a {
    width: 100%;
    padding: 23px 35px;
  }
}
.menu-link a:hover .arrow img {
  transform: translateX(5px);
}
.menu-link .arrow {
  max-width: clamp(26px, 2.4vw, 33px);
}
.menu-link .arrow img {
  transition: all 0.3s ease;
}

.service-contents .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(45px, 7vw, 80px);
}
.service-contents .box-wrap .box {
  border-radius: clamp(20px, 2vw, 30px);
  background-color: white;
  padding: 45px 15px;
}
@media (min-width: 768px) {
  .service-contents .box-wrap .box {
    padding: clamp(45px, 5vw, 60px) clamp(20px, 7vw, 100px);
  }
}
.service-contents .list-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 3vw, 40px) 0px;
}
.service-contents .list-dl {
  display: flex;
  flex-direction: column;
  gap: 0 30px;
}
@media (min-width: 992px) {
  .service-contents .list-dl {
    flex-direction: row;
  }
}
.service-contents .list-dt {
  width: 100%;
}
@media (min-width: 992px) {
  .service-contents .list-dt {
    width: 187px;
  }
}
.service-contents .list-dt p {
  border-radius: 100px;
  background-color: var(--pk01);
  padding: 7px 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  width: 187px;
}
.service-contents .list-dd {
  flex: 1;
  padding-block: 8px;
}
.service-contents .box .button-open {
  display: block;
}
.service-contents .box .button-close {
  display: none;
}
.service-contents .box.is-open .button-open {
  display: none;
}
.service-contents .box.is-open .button-close {
  display: block;
}

.point-contents .box-wrap {
  gap: clamp(20px, 3.4vw, 45px) 0;
}
.point-contents .box-wrap .box-inner {
  background-color: white;
  padding: 45px clamp(15px, 3vw, 45px);
  height: 100%;
}
.point-contents .box-wrap .box img {
  max-width: clamp(100px, 12.5vw, 170px);
  margin-inline: auto;
}

.check-contents .list-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 4vw, 50px) 0;
  max-width: 500px;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .check-contents .list-wrap {
    max-width: 770px;
  }
}
.check-contents .list-dl {
  display: flex;
  align-items: center;
  gap: clamp(15px, 1.5vw, 25px);
}
.check-contents .list-dt {
  width: clamp(35px, 3vw, 45px);
}
.check-contents .list-dd {
  flex: 1;
  padding-block: 6px;
}

.dot-deco {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .dot-deco {
    opacity: 1;
  }
}

.p-top-hr {
  position: relative;
  z-index: 1;
  margin-top: var(--header-top);
  height: calc(100dvh - var(--header-top));
  min-height: calc(750px - var(--header-top));
  max-height: 750px;
  max-width: 1520px;
  margin-inline: auto;
  pointer-events: none;
}
@media (min-width: 768px) {
  .p-top-hr {
    max-height: 980px;
  }
}
@media (min-width: 992px) {
  .p-top-hr {
    min-height: calc(1030px - var(--header-top));
  }
}
.p-top-hr__inner {
  display: flex;
  flex-direction: column;
  max-width: 1920px;
  margin-inline: auto;
}
.p-top-hr__text {
  position: relative;
  z-index: 99;
  white-space: nowrap;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: clamp(50px, 7vw, 84px);
  margin-left: clamp(20px, 5vw, 66px);
}
.p-top-hr__text .main,
.p-top-hr__text .sub {
  font-family: var(--round);
}
.p-top-hr__text .main {
  font-weight: 800;
  font-size: clamp(1.563rem, 0.955rem + 2.63vw, 3.438rem);
  line-height: 1.2;
}
.p-top-hr__text .sub {
  color: var(--main);
  font-size: clamp(0.813rem, 0.59rem + 0.96vw, 1.5rem);
}
.p-top-hr__text-bg {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 30%;
  transform: translate(-50%, -50%);
  width: 200%;
}
@media (min-width: 768px) {
  .p-top-hr__text-bg {
    left: 46%;
    width: 130%;
  }
}
.p-top-hr__main {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  margin-left: auto;
  margin-right: 0px;
  display: flex;
  justify-content: flex-end;
}
@media (min-width: 992px) {
  .p-top-hr__main {
    padding-right: clamp(20px, 5vw, 65px);
  }
}
.p-top-hr__dots, .p-top-hr__patterns, .p-top-hr__elements {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.p-top-hr__dots .inner, .p-top-hr__patterns .inner, .p-top-hr__elements .inner {
  position: relative;
  width: inherit;
  height: inherit;
}
.p-top-hr__dots {
  z-index: -1;
}
.p-top-hr__dots .dot {
  position: absolute;
}
.p-top-hr__dots .dot01 {
  max-width: clamp(150px, 15vw, 232px);
  top: calc(5px - var(--header-top));
  left: -1%;
}
.p-top-hr__dots .dot02 {
  max-width: clamp(180px, 16vw, 264px);
  top: 11%;
  left: 55%;
}
.p-top-hr__dots .dot03 {
  max-width: clamp(140px, 15vw, 212px);
  right: -20px;
  top: 25%;
}
.p-top-hr__dots .dot04 {
  max-width: clamp(140px, 15vw, 212px);
  left: 32%;
  bottom: 12%;
}
.p-top-hr__patterns {
  z-index: 1;
}
.p-top-hr__patterns .pattern {
  position: absolute;
}
.p-top-hr__patterns .pattern01 {
  top: 57%;
  transform: translateY(-50%);
  left: -5%;
  max-width: clamp(200px, 24vw, 357px);
}
.p-top-hr__patterns .pattern02 {
  top: calc(0px - var(--header-top));
  right: 0px;
  max-width: clamp(200px, 24vw, 360px);
}
.p-top-hr__elements {
  z-index: 3;
}
.p-top-hr__elements .element {
  position: absolute;
}
.p-top-hr__elements .element-left {
  left: -3.5%;
  bottom: 46%;
}
@media (min-width: 576px) {
  .p-top-hr__elements .element-left {
    left: 4.5%;
    bottom: 15%;
  }
}
.p-top-hr__elements .element-left__element01 {
  width: clamp(40px, 8vw, 110px);
}
.p-top-hr__elements .element-left__element02 {
  width: clamp(100px, 18vw, 260px);
}
.p-top-hr__elements .element-right {
  bottom: 10%;
  right: clamp(15px, 1.5vw, 30px);
  width: clamp(120px, 18vw, 278px);
}
@media (min-width: 768px) {
  .p-top-hr__elements .element-right {
    bottom: 0%;
  }
}
.p-top-hr .blob-mask {
  margin-bottom: -8vw;
  width: clamp(450px, 108vw, 600px);
  min-width: 500px;
  aspect-ratio: 1031/721;
  overflow: hidden;
  -webkit-mask-image: url("../images/test.svg");
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-image: url("../images/fv-pattern.svg");
          mask-image: url("../images/fv-pattern.svg");
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  display: flex;
  align-items: center;
  margin-right: -100px;
  transform: rotate(-55deg);
}
@media (min-width: 576px) {
  .p-top-hr .blob-mask {
    margin-right: -5vw;
    min-width: clamp(600px, 82vw, 800px);
  }
}
@media (min-width: 992px) {
  .p-top-hr .blob-mask {
    margin-right: 0;
    min-width: 950px;
    transform: none;
  }
}
.p-top-hr .blob-mask img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: inherit;
}
.p-top-hr::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: url("../images/wave-01.png") repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-top-concern {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: clamp(180px, 15vw, 220px);
}
.p-top-concern::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: url("../images/wave-02.png") repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-top-concern .dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-top-concern .dots .dot {
  position: absolute;
  max-width: clamp(150px, 16vw, 232px);
}
.p-top-concern .dots .dot img {
  transform: rotate(30deg);
}
.p-top-concern .dots .dot01 {
  bottom: 15%;
  left: -4.5%;
}
@media (min-width: 768px) {
  .p-top-concern .dots .dot01 {
    bottom: 23%;
  }
}
.p-top-concern .dots .dot02 {
  top: 2%;
  right: -4.5%;
}
@media (min-width: 1200px) {
  .p-top-concern .container {
    max-width: 1340px;
  }
}
@media (max-width: 1199px) {
  .p-top-concern .container > .row {
    max-width: 700px;
    margin-inline: auto;
  }
}
.p-top-concern .box-img img {
  aspect-ratio: 1;
  max-width: clamp(80px, 12vw, 150px);
  margin-inline: auto;
}
.p-top-service {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(200px, 16vw, 234px);
}
.p-top-service::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: url("../images/wave-03.png") repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-top-service .dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-top-service .dots .dot {
  position: absolute;
  max-width: clamp(150px, 16vw, 232px);
}
.p-top-service .dots .dot01 {
  top: 3%;
  left: -1%;
}
.p-top-service .dots .dot01 img {
  transform: rotate(-20deg);
}
.p-top-service .dots .dot02 {
  bottom: 13%;
  right: -1%;
}
.p-top-service .dots .dot02 img {
  transform: rotate(-40deg);
}
.p-top-concept {
  background-color: var(--pk02);
  padding-top: clamp(30px, 5vw, 65px);
  padding-bottom: clamp(200px, 16vw, 250px);
  position: relative;
  z-index: 1;
}
.p-top-concept::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: url("../images/wave-01.png") repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-top-concept .dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-top-concept .dots .dot {
  position: absolute;
  max-width: clamp(130px, 16vw, 265px);
}
.p-top-concept .dots .dot01 {
  bottom: 11%;
  left: -3%;
}
@media (min-width: 992px) {
  .p-top-concept .dots .dot01 {
    bottom: 22%;
  }
}
.p-top-concept .dots .dot01 img {
  transform: scale(1, -1) rotate(-20deg);
}
.p-top-concept .dots .dot02 {
  top: 5%;
  right: 0%;
}
.p-top-concept .dots .dot02 img {
  transform: rotate(70deg);
}
.p-top-concept .box-img {
  position: relative;
  z-index: 1;
}
.p-top-concept .box-img .patterns {
  position: absolute;
  z-index: -1;
}
.p-top-concept .box-img .patterns01 {
  top: -17%;
  left: -20%;
  max-width: clamp(200px, 19vw, 283px);
}
.p-top-concept .box-img .patterns02 {
  bottom: -11%;
  right: -15%;
  max-width: clamp(120px, 13vw, 187px);
}
@media (min-width: 992px) {
  .p-top-concept .box-img .patterns02 {
    right: 6%;
  }
}
.p-top-concept .box-text {
  position: relative;
  z-index: 1;
}
.p-top-reason {
  position: relative;
  z-index: 1;
  background-color: var(--pk01);
  padding-bottom: clamp(200px, 16vw, 250px);
}
.p-top-reason::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: url("../images/wave-03.png") repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-top-reason .dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-top-reason .dots .dot {
  position: absolute;
  max-width: clamp(130px, 16vw, 265px);
}
.p-top-reason .dots .dot01 {
  top: 0%;
  left: -3%;
}
.p-top-reason .dots .dot01 img {
  transform: rotate(165deg);
}
.p-top-reason .dots .dot02 {
  bottom: 16%;
  right: -5%;
}
.p-top-reason .dots .dot02 img {
  transform: rotate(150deg);
}
.p-top-reason .box-img .number {
  top: 0;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(2.125rem, 1.923rem + 0.88vw, 2.75rem);
}
.p-top-reason .box-img .number .inner {
  z-index: 1;
  padding: 15px;
}
@media (min-width: 576px) {
  .p-top-reason .box-img .number .inner {
    padding: 20px;
  }
}
.p-top-reason .box-img .number .inner > img {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: inherit;
  z-index: -1;
}
.p-top-reason .box-text h3 {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .p-top-reason .box-text h3 {
    min-height: 3.563rem;
  }
}
@media (min-width: 992px) {
  .p-top-reason .box-text h3 {
    min-height: auto;
  }
}
.p-top-news {
  position: relative;
  z-index: 1;
  background-color: var(--pk02);
  padding-top: 50px;
  padding-bottom: clamp(200px, 16vw, 250px);
}
.p-top-news .dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-top-news .dots .dot {
  position: absolute;
  max-width: clamp(150px, 17vw, 338px);
}
.p-top-news .dots .dot01 {
  top: 0%;
  left: -1%;
}
.p-top-news .dots .dot02 {
  bottom: 20%;
  right: 1%;
}
.p-top-news::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: url("../images/wave-02.png") repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-top-news .news-wrap {
  background-color: white;
  padding: clamp(35px, 4vw, 50px) clamp(20px, 4vw, 50px);
}
.p-top-news .news-wrap .webgene-blog {
  max-width: 820px;
  margin-inline: auto;
}
.p-top-news .news-wrap .webgene-item a {
  width: 100%;
  padding-block: clamp(13px, 1.5vw, 25px);
  border-bottom: solid 1px var(--main);
  display: flex;
  flex-direction: column;
  gap: 4px 30px;
}
@media (min-width: 992px) {
  .p-top-news .news-wrap .webgene-item a {
    flex-direction: row;
    align-items: stretch;
  }
}
@media (min-width: 992px) {
  .p-top-news .news-wrap .webgene-item a .date {
    width: 180px;
  }
}
.p-top-news .news-wrap .webgene-item a .title {
  flex: 1;
}
.p-top-news .news-wrap .webgene-item:first-child a {
  padding-top: 0px;
}
.p-top-news .other-links a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  min-height: clamp(200px, 19vw, 280px);
  padding: 20px;
}
.p-top-news .other-links a .bg-img {
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  transition: all 0.5s ease;
}
.p-top-news .other-links a .arrow {
  position: absolute;
  max-width: clamp(25px, 2vw, 33px);
  bottom: clamp(13px, 1.5vw, 22px);
  right: clamp(13px, 1.5vw, 22px);
}
.p-top-news .other-links a .arrow img {
  transition: all 0.3s ease;
}
.p-top-news .other-links a:hover .bg-img {
  transform: translate(-50%, -50%) scale(1.05);
}
.p-top-news .other-links a:hover .arrow img {
  transform: translateX(5px);
}
.p-top-info {
  position: relative;
  z-index: 1;
  padding-bottom: clamp(60px, 7vw, 110px);
}
.p-top-info .map iframe {
  height: 385px;
}
.p-top-info .dots {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-top-info .dots .dot {
  position: absolute;
  max-width: clamp(140px, 16vw, 210px);
}
.p-top-info .dots .dot01 {
  bottom: 8%;
  left: -6.5%;
}
.p-top-info .dots .dot02 {
  top: 0%;
  right: 0%;
}

.p-concept .section-title .ja span {
  display: inline-block;
}
.p-concept .page-hr::after {
  background-image: url(../images/wave-01.png);
}
.p-concept__sec01 {
  background-color: var(--pk01);
  padding-block: clamp(40px, 5vw, 60px) clamp(200px, 20vw, 300px);
  position: relative;
  z-index: 1;
}
.p-concept__sec01::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
  background-image: var(--bg-wave03);
}
.p-concept__sec01 .title-wrap {
  max-width: 1000px;
  margin-inline: auto;
}
.p-concept__sec01 .title-wrap .section-title {
  flex: 1;
}
.p-concept__sec01 .title-wrap .side-deco {
  max-width: clamp(60px, 18vw, 130px);
}
@media (min-width: 768px) {
  .p-concept__sec01 .title-wrap .side-deco {
    max-width: 100px;
  }
}
@media (min-width: 992px) {
  .p-concept__sec01 .title-wrap .side-deco {
    max-width: 170px;
  }
}
.p-concept__sec02 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 17vw, 250px);
  position: relative;
  z-index: 1;
  background-color: var(--pk02);
}
.p-concept__sec02::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
  background-image: var(--bg-wave02);
}
.p-concept__sec02 .message .box-img {
  position: relative;
  z-index: 1;
}
.p-concept__sec02 .message .box-img .dot-side {
  position: absolute;
  z-index: -1;
  max-width: clamp(160px, 17vw, 248px);
}
.p-concept__sec02 .message .box-img .dot-side.dot-side01 {
  left: -23%;
  top: -11%;
  transform: rotate(-25deg);
}
.p-concept__sec02 .message .box-img .dot-side.dot-side02 {
  bottom: -11%;
  right: -10vw;
  transform: rotate(-25deg);
}
.p-concept__sec02 .box-wrap .message-box .box-img {
  position: relative;
  z-index: 1;
}
.p-concept__sec02 .box-wrap .message-box .box-img .dot-side {
  position: absolute;
  z-index: -1;
  max-width: clamp(160px, 17vw, 248px);
}
.p-concept__sec02 .box-wrap .message-box:nth-child(odd) .box-img .dot-side {
  left: -23%;
  top: -11%;
  transform: rotate(-25deg);
}
.p-concept__sec02 .box-wrap .message-box:nth-child(even) .box-img .dot-side {
  top: -11%;
  right: -7vw;
  transform: scale(-1, 1) rotate(-26deg);
}
.p-concept__sec03 {
  position: relative;
  z-index: 1;
  padding-block: clamp(40px, 5vw, 60px) clamp(200px, 14vw, 200px);
}
.p-concept__sec03 .dot-deco {
  position: absolute;
  z-index: -1;
  max-width: clamp(160px, 17vw, 260px);
}
.p-concept__sec03 .dot-deco.dot-deco01 {
  bottom: 35px;
  left: -2.5%;
}
.p-concept__sec03 .dot-deco.dot-deco02 {
  top: -30px;
  right: -1%;
}
@media (min-width: 768px) {
  .p-concept__sec03 .dot-deco.dot-deco02 {
    top: 0;
  }
}
.p-concept__sec03 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(80px, 12vw, 165px);
}
.p-concept__sec03 .features-title {
  display: flex;
  gap: clamp(10px, 1vw, 20px);
}
.p-concept__sec03 .number {
  position: relative;
  z-index: 1;
  font-size: clamp(1.875rem, 1.754rem + 0.53vw, 2.25rem);
  font-weight: 800;
  color: var(--main);
  width: clamp(70px, 6.5vw, 82px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-concept__sec03 .number .bg-pattern {
  position: absolute;
  z-index: -1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: inherit;
}

.p-care .page-hr::after {
  background-image: var(--bg-wave02);
}
.p-care__sec01, .p-care__sec02, .p-care__sec03, .p-care__sec04 {
  position: relative;
  z-index: 1;
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 17vw, 250px);
}
.p-care__sec01 .dot-deco, .p-care__sec02 .dot-deco, .p-care__sec03 .dot-deco, .p-care__sec04 .dot-deco {
  position: absolute;
  z-index: -1;
}
.p-care__sec01::after, .p-care__sec02::after, .p-care__sec03::after, .p-care__sec04::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-care__sec01 {
  padding-top: clamp(80px, 12vw, 180px);
}
.p-care__sec01 .dot-deco {
  max-width: clamp(180px, 20vw, 300px);
}
.p-care__sec01 .dot-deco.dot-deco01 {
  bottom: 21%;
  left: -4%;
  transform: rotate(40deg) scale(1, -1);
}
.p-care__sec01 .dot-deco.dot-deco02 {
  top: 2%;
  right: 0px;
  transform: rotate(55deg);
}
.p-care__sec01::after {
  background-image: var(--bg-wave03);
}
.p-care__sec02 {
  background-color: var(--pk02);
}
.p-care__sec02 .dot-deco {
  max-width: clamp(180px, 21vw, 335px);
}
.p-care__sec02 .dot-deco.dot-deco01 {
  bottom: 21%;
  left: -4%;
  transform: rotate(40deg) scale(1, -1);
}
.p-care__sec02 .dot-deco.dot-deco02 {
  top: 2%;
  right: 0px;
  transform: rotate(55deg);
}
.p-care__sec02::after {
  background-image: var(--bg-wave01);
}
.p-care__sec03 {
  background-color: var(--pk01);
}
.p-care__sec03 .dot-deco {
  max-width: clamp(140px, 17vw, 230px);
}
.p-care__sec03 .dot-deco.dot-deco01 {
  top: 0%;
  left: -3%;
  transform: rotate(160deg);
}
.p-care__sec03 .dot-deco.dot-deco02 {
  bottom: 12%;
  right: -2%;
  transform: rotate(160deg);
}
.p-care__sec03::after {
  background-image: var(--bg-wave02);
}
.p-care__sec04 .dot-deco {
  max-width: clamp(170px, 20vw, 298px);
}
.p-care__sec04 .dot-deco.dot-deco01 {
  bottom: 0%;
  left: -2%;
}
.p-care__sec04 .dot-deco.dot-deco02 {
  top: 0%;
  right: -1%;
}

.p-wellness .page-hr::after {
  background-image: url(../images/wave-01.png);
}
.p-wellness__sec01, .p-wellness__sec02, .p-wellness__sec03, .p-wellness__sec04, .p-wellness__sec05, .p-wellness__sec06, .p-wellness__sec07, .p-wellness__sec08, .p-wellness__sec09, .p-wellness__sec10 {
  position: relative;
  z-index: 1;
}
.p-wellness__sec01 .dot-deco, .p-wellness__sec02 .dot-deco, .p-wellness__sec03 .dot-deco, .p-wellness__sec04 .dot-deco, .p-wellness__sec05 .dot-deco, .p-wellness__sec06 .dot-deco, .p-wellness__sec07 .dot-deco, .p-wellness__sec08 .dot-deco, .p-wellness__sec09 .dot-deco, .p-wellness__sec10 .dot-deco {
  position: absolute;
  z-index: -1;
}
.p-wellness__sec01::after, .p-wellness__sec02::after, .p-wellness__sec03::after, .p-wellness__sec04::after, .p-wellness__sec05::after, .p-wellness__sec06::after, .p-wellness__sec07::after, .p-wellness__sec08::after, .p-wellness__sec09::after, .p-wellness__sec10::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-wellness__sec01 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 20vw, 300px);
  background-color: var(--pk01);
}
.p-wellness__sec01::after {
  background-image: var(--bg-wave02);
}
.p-wellness__sec01 .dot-deco {
  max-width: clamp(180px, 18vw, 267px);
}
.p-wellness__sec01 .dot-deco.dot-deco01 {
  top: 26%;
  left: -3%;
  transform: rotate(40deg) scale(1, -1);
}
.p-wellness__sec01 .dot-deco.dot-deco02 {
  top: 7%;
  right: 0px;
  transform: rotate(65deg);
}
.p-wellness__sec02 {
  background-color: var(--base);
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 17vw, 250px);
}
.p-wellness__sec02::after {
  background-image: var(--bg-wave01);
}
.p-wellness__sec02 .dot-deco {
  max-width: clamp(180px, 21vw, 335px);
}
.p-wellness__sec02 .dot-deco.dot-deco {
  transform: rotate(180deg) scale(1, -1);
}
.p-wellness__sec02 .dot-deco.dot-deco01 {
  bottom: 14%;
  left: -2%;
}
.p-wellness__sec02 .dot-deco.dot-deco02 {
  top: 10%;
  right: 0px;
}
.p-wellness__sec03 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 22vw, 350px);
  background-color: var(--pk01);
}
.p-wellness__sec03::after {
  background-image: var(--bg-wave03);
}
.p-wellness__sec03 .dot-deco {
  max-width: clamp(180px, 17vw, 209px);
  transform: rotate(160deg);
}
.p-wellness__sec03 .dot-deco.dot-deco01 {
  top: 0%;
  left: -4%;
}
.p-wellness__sec03 .dot-deco.dot-deco02 {
  bottom: 17%;
  right: -2%;
}
.p-wellness__sec04 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 17vw, 250px);
  background-color: var(--pk02);
}
.p-wellness__sec04::after {
  background-image: var(--bg-wave02);
}
.p-wellness__sec04 .dot-deco {
  max-width: clamp(180px, 22vw, 330px);
}
.p-wellness__sec04 .dot-deco.dot-deco01 {
  top: 8%;
  left: 1%;
}
.p-wellness__sec04 .dot-deco.dot-deco02 {
  bottom: 17%;
  right: 2%;
}
.p-wellness__sec05 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 22vw, 350px);
  background-color: var(--base);
}
.p-wellness__sec05::after {
  background-image: var(--bg-wave01);
}
.p-wellness__sec05 .dot-deco {
  max-width: clamp(180px, 15vw, 224px);
  transform: rotate(30deg) scale(-1, 1);
}
.p-wellness__sec05 .dot-deco.dot-deco01 {
  bottom: 20%;
  left: -2%;
}
.p-wellness__sec05 .dot-deco.dot-deco02 {
  top: 3%;
  right: 1%;
}
.p-wellness__sec06 {
  background-color: var(--pk01);
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 17vw, 250px);
}
.p-wellness__sec06::after {
  background-image: var(--bg-wave02);
}
.p-wellness__sec06 .dot-deco {
  max-width: clamp(180px, 17vw, 250px);
}
.p-wellness__sec06 .dot-deco.dot-deco01 {
  bottom: 26%;
  left: -3%;
  transform: rotate(40deg) scale(1, -1);
}
.p-wellness__sec06 .dot-deco.dot-deco02 {
  top: 10%;
  right: 0%;
  transform: rotate(55deg);
}
.p-wellness__sec07 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 20vw, 300px);
}
.p-wellness__sec07::after {
  background-image: var(--bg-wave01);
}
.p-wellness__sec07 .dot-deco {
  max-width: clamp(180px, 22vw, 330px);
}
.p-wellness__sec07 .dot-deco.dot-deco {
  transform: rotate(180deg) scale(1, -1);
}
.p-wellness__sec07 .dot-deco.dot-deco01 {
  bottom: 18%;
  left: -2%;
}
.p-wellness__sec07 .dot-deco.dot-deco02 {
  top: 10%;
  right: 0px;
}
.p-wellness__sec08 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 22vw, 350px);
  background-color: var(--pk01);
}
.p-wellness__sec08::after {
  background-image: var(--bg-wave03);
}
.p-wellness__sec08 .dot-deco {
  max-width: clamp(180px, 16vw, 230px);
  transform: rotate(155deg) scale(1, 1);
}
.p-wellness__sec08 .dot-deco.dot-deco01 {
  top: 0%;
  left: -4%;
}
.p-wellness__sec08 .dot-deco.dot-deco02 {
  bottom: 16%;
  right: -3%;
}
.p-wellness__sec09 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 20vw, 300px);
  background-color: var(--pk01);
}
.p-wellness__sec09::after {
  background-image: var(--bg-wave02);
}
.p-wellness__sec09 .dot-deco {
  max-width: clamp(180px, 22vw, 330px);
}
.p-wellness__sec09 .dot-deco.dot-deco01 {
  top: 7%;
  left: 2%;
}
.p-wellness__sec09 .dot-deco.dot-deco02 {
  bottom: 17%;
  right: 4%;
}
.p-wellness__sec10 {
  background-color: var(--base);
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 17vw, 250px);
}
.p-wellness__sec10 .dot-deco {
  max-width: clamp(180px, 17vw, 244px);
}
.p-wellness__sec10 .dot-deco.dot-deco {
  transform: rotate(210deg) scale(1, -1);
}
.p-wellness__sec10 .dot-deco.dot-deco01 {
  bottom: 14%;
  left: -1%;
}
.p-wellness__sec10 .dot-deco.dot-deco02 {
  top: 4%;
  right: 1%;
}

.anchor .container {
  gap: 15px clamp(30px, 6vw, 75px);
  align-items: center;
  max-width: 800px;
}
.anchor .btn-wrap a {
  min-width: 230px;
}
@media (min-width: 768px) {
  .anchor .btn-wrap a {
    min-width: 265px;
  }
}

.p-concern .page-hr::after {
  background-image: url(../images/wave-01.png);
}
.p-concern .dot-deco {
  position: absolute;
  z-index: -1;
}
.p-concern__sec01, .p-concern__sec02 {
  position: relative;
  z-index: 1;
}
.p-concern__sec01 .dot-deco, .p-concern__sec02 .dot-deco {
  position: absolute;
  z-index: -1;
}
.p-concern__sec01::after, .p-concern__sec02::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-concern__sec01 {
  padding-block: clamp(40px, 5vw, 60px) clamp(180px, 22vw, 350px);
  background-color: var(--pk01);
}
.p-concern__sec01::after {
  background-image: var(--bg-wave02);
}
.p-concern__sec01 .dot-deco {
  max-width: clamp(180px, 17vw, 209px);
  transform: rotate(160deg);
}
.p-concern__sec01 .dot-deco.dot-deco01 {
  top: 0%;
  left: -2%;
}
.p-concern__sec01 .dot-deco.dot-deco02 {
  bottom: 21%;
  right: -1%;
}
.p-concern__sec02 {
  padding-block: clamp(40px, 5vw, 60px) clamp(80px, 9vw, 125px);
}
.p-concern__sec02 .dot-deco {
  max-width: clamp(180px, 15vw, 224px);
  transform: rotate(30deg) scale(-1, 1);
}
.p-concern__sec02 .dot-deco.dot-deco01 {
  bottom: 10%;
  left: 2%;
}
.p-concern__sec02 .dot-deco.dot-deco02 {
  top: 1%;
  right: -3%;
}

.p-menu .page-hr::after {
  background-image: url(../images/wave-02.png);
}
.p-menu__sec {
  content: "";
  position: relative;
  z-index: 1;
  padding-block: clamp(40px, 5vw, 60px) clamp(80px, 6.5vw, 100px);
}
.p-menu__sec .dot-deco {
  position: absolute;
  z-index: -1;
}
.p-menu__sec .dot-deco {
  max-width: clamp(180px, 15vw, 224px);
  transform: rotate(30deg) scale(-1, 1);
}
.p-menu__sec .dot-deco.dot-deco01 {
  bottom: 2.5%;
  left: 5%;
}
.p-menu__sec .dot-deco.dot-deco02 {
  top: 0.5%;
  right: 6%;
}

.menu-wrap {
  display: flex;
  flex-direction: column;
  gap: clamp(30px, 7.5vw, 90px);
}

.menu-box {
  padding: clamp(40px, 6vw, 75px) clamp(15px, 7vw, 85px);
}

.menu-list {
  border-bottom: solid 1px var(--main);
  padding-block: clamp(30px, 5vw, 60px);
  font-size: clamp(1rem, 0.838rem + 0.7vw, 1.5rem);
}
.menu-list:last-child {
  border-bottom: none;
  padding-bottom: 0px;
}

.menu-dl {
  margin-bottom: 20px;
  flex-direction: column;
  line-height: 1.5;
  gap: 8px 20px;
}
@media (min-width: 1200px) {
  .menu-dl {
    flex-direction: row;
  }
}

.menu-dt {
  flex: 1;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
  font-weight: 800;
  line-height: 1.4;
}

.menu-dd {
  text-align: right;
  font-weight: 800;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}
@media (min-width: 1200px) {
  .menu-dd {
    width: 300px;
  }
}
.menu-dd .price-wrap {
  justify-content: flex-end;
  gap: 6px 10px;
}

.tag-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 6px clamp(15px, 1.5vw, 25px);
  margin-bottom: 10px;
}
.tag-wrap .tag {
  font-size: clamp(1rem, 0.919rem + 0.35vw, 1.25rem);
  border-radius: 100px;
  padding: 3px clamp(30px, 3.5vw, 44px);
  background-color: var(--pk01);
  font-weight: 500;
}

.p-guide .page-hr::after {
  background-image: url(../images/wave-02.png);
}
.p-guide__sec01, .p-guide__sec02, .p-guide__sec03, .p-guide__sec04 {
  position: relative;
  z-index: 1;
}
.p-guide__sec01 .dot-deco, .p-guide__sec02 .dot-deco, .p-guide__sec03 .dot-deco, .p-guide__sec04 .dot-deco {
  position: absolute;
  z-index: -1;
}
.p-guide__sec01::after, .p-guide__sec02::after, .p-guide__sec03::after, .p-guide__sec04::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-guide__sec01 {
  padding-block: clamp(60px, 7vw, 120px) clamp(200px, 20vw, 300px);
}
.p-guide__sec01::after {
  background-image: var(--bg-wave01);
}
.p-guide__sec01 .dot-deco {
  position: absolute;
  max-width: clamp(150px, 16vw, 232px);
  transform: rotate(-20deg);
}
.p-guide__sec01 .dot-deco.dot-deco01 {
  top: 3%;
  left: 2%;
}
.p-guide__sec01 .dot-deco.dot-deco02 {
  bottom: 52%;
  right: 2%;
}
.p-guide__sec02 {
  padding-block: clamp(60px, 7vw, 120px) clamp(200px, 20vw, 300px);
  background-color: var(--pk01);
}
.p-guide__sec02::after {
  background-image: var(--bg-wave03);
}
.p-guide__sec02 .dot-deco {
  max-width: clamp(180px, 17vw, 209px);
  transform: rotate(160deg);
}
.p-guide__sec02 .dot-deco.dot-deco01 {
  top: 7%;
  left: -4%;
}
.p-guide__sec02 .dot-deco.dot-deco02 {
  bottom: 17%;
  right: -2%;
}
.p-guide__sec03 {
  padding-block: clamp(60px, 7vw, 120px) clamp(200px, 20vw, 300px);
  background-color: var(--pk02);
}
.p-guide__sec03::after {
  background-image: var(--bg-wave02);
}
.p-guide__sec04 {
  padding-block: clamp(60px, 7vw, 120px) clamp(80px, 7vw, 125px);
}
@media (min-width: 992px) {
  .p-guide__sec04 .container {
    max-width: 1000px;
  }
}
.p-guide__sec04 .dot-deco {
  position: absolute;
  max-width: clamp(150px, 16vw, 232px);
  transform: rotate(-20deg);
}
.p-guide__sec04 .dot-deco.dot-deco01 {
  top: 3%;
  left: 2%;
}
.p-guide__sec04 .dot-deco.dot-deco02 {
  bottom: 1%;
  right: 3%;
}

.faq-list .list-dl {
  border-bottom: solid 1px var(--main);
  padding-block: clamp(20px, 4vw, 50px);
  display: flex;
  flex-direction: column;
}
.faq-list .list-dl:first-child {
  padding-top: 0px;
}
.faq-list .list-dt, .faq-list .list-dd {
  position: relative;
  display: flex;
  gap: 0px clamp(15px, 1.5vw, 25px);
}
@media (max-width: 767px) {
  .faq-list .list-dt, .faq-list .list-dd {
    word-break: break-all;
  }
}
.faq-list .list-dt > p, .faq-list .list-dd > p {
  padding-block: clamp(0.5rem, 0.055rem + 1.93vw, 1.875rem);
}
.faq-list .list-dt::before, .faq-list .list-dd::before {
  content: "";
  display: block;
  width: clamp(2.625rem, 1.775rem + 3.68vw, 5.25rem);
  min-width: clamp(2.625rem, 1.775rem + 3.68vw, 5.25rem);
  height: clamp(2.625rem, 1.775rem + 3.68vw, 5.25rem);
  min-height: clamp(2.625rem, 1.775rem + 3.68vw, 5.25rem);
}
.faq-list .list-dt {
  cursor: pointer;
  padding-right: 30px;
}
.faq-list .list-dt::before {
  background: url(../images/q-icon.svg) center/contain no-repeat;
}
.faq-list .list-dt::after {
  content: "＋";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  font-size: clamp(1.875rem, 1.47rem + 1.75vw, 3.125rem);
  font-weight: 300;
  color: var(--main);
  transition: all 0.3s ease;
}
.faq-list .list-dd::before {
  background: url(../images/a-icon.svg) center/contain no-repeat;
}
.faq-list .list-dl.is-open .list-dt::after {
  transform: translateY(-50%) rotate(45deg);
}

@media (min-width: 992px) {
  .p-salon .container {
    max-width: 1100px;
  }
}
.p-salon .page-hr::after {
  background-image: url(../images/wave-02.png);
}
.p-salon__sec01, .p-salon__sec02, .p-salon__sec03, .p-salon__sec04 {
  position: relative;
  z-index: 1;
}
.p-salon__sec01 .dot-deco, .p-salon__sec02 .dot-deco, .p-salon__sec03 .dot-deco, .p-salon__sec04 .dot-deco {
  position: absolute;
  z-index: -1;
}
.p-salon__sec01::after, .p-salon__sec02::after, .p-salon__sec03::after, .p-salon__sec04::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-salon__sec01 {
  padding-block: clamp(60px, 7vw, 120px) clamp(200px, 20vw, 300px);
}
.p-salon__sec01::after {
  background-image: var(--bg-wave01);
}
.p-salon__sec01 .dot-deco {
  position: absolute;
  max-width: clamp(150px, 14vw, 210px);
  transform: rotate(-20deg);
}
.p-salon__sec01 .dot-deco.dot-deco01 {
  top: 6%;
  left: 2%;
}
.p-salon__sec01 .dot-deco.dot-deco02 {
  bottom: 27%;
  right: 2%;
}
.p-salon__sec02 {
  padding-block: clamp(60px, 7vw, 120px) clamp(200px, 20vw, 300px);
  background-color: var(--pk01);
}
.p-salon__sec02::after {
  background-image: var(--bg-wave03);
}
.p-salon__sec02 .dot-deco {
  max-width: clamp(180px, 18vw, 267px);
}
.p-salon__sec02 .dot-deco.dot-deco01 {
  top: 26%;
  left: -3%;
  transform: rotate(40deg) scale(1, -1);
}
.p-salon__sec02 .dot-deco.dot-deco02 {
  top: 7%;
  right: 0px;
  transform: rotate(65deg);
}
.p-salon__sec03 {
  padding-block: clamp(60px, 7vw, 120px) clamp(200px, 20vw, 300px);
  background-color: var(--pk02);
}
.p-salon__sec03::after {
  background-image: var(--bg-wave02);
}
.p-salon__sec03 .dot-deco {
  position: absolute;
  max-width: clamp(150px, 14vw, 210px);
  transform: rotate(-20deg);
}
.p-salon__sec03 .dot-deco.dot-deco01 {
  top: 6%;
  left: 2%;
}
.p-salon__sec03 .dot-deco.dot-deco02 {
  bottom: 27%;
  right: 2%;
}
.p-salon__sec04 {
  padding-block: clamp(60px, 7vw, 120px) clamp(80px, 10vw, 125px);
}
.p-salon__sec04 .dot-deco {
  max-width: clamp(180px, 18vw, 267px);
}
.p-salon__sec04 .dot-deco.dot-deco01 {
  bottom: 12%;
  left: -4%;
  transform: rotate(23deg) scale(1, -1);
}
.p-salon__sec04 .dot-deco.dot-deco02 {
  top: 7%;
  right: 0px;
  transform: rotate(65deg);
}

.p-info .page-hr::after {
  background-image: url(../images/wave-01.png);
}
.p-info__sec01, .p-info__sec02 {
  position: relative;
  z-index: 1;
}
@media (min-width: 1200px) {
  .p-info__sec01 .container, .p-info__sec02 .container {
    max-width: 1120px;
  }
}
.p-info__sec01::after, .p-info__sec02::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  transform: translateX(-50%);
  width: 100vw;
  height: 138px;
  background: repeat-x left bottom/2048px 138px;
  -webkit-animation: wave-move 30s linear infinite;
          animation: wave-move 30s linear infinite;
  pointer-events: none;
}
.p-info__sec01 {
  padding-block: clamp(60px, 7vw, 120px) clamp(200px, 20vw, 300px);
}
.p-info__sec01::after {
  background-image: var(--bg-wave02);
}
.p-info__sec01 .dot-deco {
  position: absolute;
  z-index: -1;
  max-width: clamp(150px, 14vw, 210px);
  transform: rotate(-20deg);
}
.p-info__sec01 .dot-deco.dot-deco01 {
  top: 6%;
  left: 2%;
}
.p-info__sec01 .dot-deco.dot-deco02 {
  bottom: 12%;
  right: 0%;
}
.p-info__sec01 .map iframe {
  height: clamp(400px, 40vw, 600px);
}
.p-info__sec02 {
  padding-block: clamp(40px, 5vw, 65px) clamp(80px, 10vw, 135px);
}
.p-info__sec02 .dot-deco {
  position: absolute;
  z-index: -1;
  max-width: clamp(180px, 20vw, 300px);
}
.p-info__sec02 .dot-deco.dot-deco01 {
  bottom: 21%;
  left: -4%;
  transform: rotate(40deg) scale(1, -1);
}
.p-info__sec02 .dot-deco.dot-deco02 {
  top: 2%;
  right: 0px;
  transform: rotate(55deg);
}

.info-list .list-dl {
  display: flex;
  flex-direction: column;
  gap: 8px 25px;
  padding-block: clamp(15px, 1.5vw, 25px);
  border-bottom: solid 1px var(--main);
}
@media (min-width: 768px) {
  .info-list .list-dl {
    flex-direction: row;
  }
}
.info-list .list-dt {
  position: relative;
  width: 100%;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .info-list .list-dt {
    width: 200px;
    padding-left: 0;
  }
}
.info-list .list-dt::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 10px;
  height: 1px;
  background-color: var(--sub);
}
@media (min-width: 768px) {
  .info-list .list-dt::before {
    display: none;
  }
}
.info-list .list-dd {
  flex: 1;
  padding-left: 20px;
}
@media (min-width: 768px) {
  .info-list .list-dd {
    padding-left: 0;
  }
}

.p-news .page-hr::after {
  background-image: url(../images/wave-02.png);
}
.p-news__sec {
  position: relative;
  z-index: 1;
  padding-block: clamp(40px, 6vw, 75px) clamp(80px, 13vw, 185px);
}
.p-news__sec .dot-deco {
  position: absolute;
  z-index: -1;
}
.p-news__sec .dot-deco {
  max-width: clamp(180px, 15vw, 224px);
  transform: rotate(30deg) scale(-1, 1);
}
.p-news__sec .dot-deco.dot-deco01 {
  bottom: 10%;
  left: -2%;
}
@media (min-width: 768px) {
  .p-news__sec .dot-deco.dot-deco01 {
    bottom: 20%;
    left: 2%;
  }
}
.p-news__sec .dot-deco.dot-deco02 {
  top: 0%;
  right: -2%;
}
@media (min-width: 768px) {
  .p-news__sec .dot-deco.dot-deco02 {
    top: 3%;
    right: 2%;
  }
}

.p-newsdetail__sec {
  position: relative;
  z-index: 1;
  padding-block: clamp(100px, 9vw, 140px) clamp(80px, 13vw, 185px);
}
.p-newsdetail__sec .dot-deco {
  position: absolute;
  max-width: clamp(150px, 14vw, 210px);
  transform: rotate(-20deg);
}
.p-newsdetail__sec .dot-deco.dot-deco01 {
  top: 6%;
  left: 2%;
}
.p-newsdetail__sec .dot-deco.dot-deco02 {
  bottom: 17%;
  right: 2%;
}

.p-news .news-wrap {
  padding-block: clamp(60px, 7vw, 100px);
}
.p-news .webgene-blog {
  max-width: 910px;
  padding-inline: 20px;
  margin-inline: auto;
}
.p-news .webgene-blog > article a {
  padding-block: 20px;
  border-bottom: solid 1px var(--main);
  display: flex;
  flex-direction: column;
  gap: 15px 50px;
}
@media (min-width: 768px) {
  .p-news .webgene-blog > article a {
    padding-block: clamp(20px, 3.5vw, 40px);
    flex-direction: row;
    align-items: center;
  }
}
.p-news .webgene-blog > article:first-of-type a {
  padding-top: 0px;
}
.p-news .webgene-blog > article:last-child {
  border-bottom: none;
}
.p-news .webgene-blog > article .date,
.p-news .webgene-blog > article .title {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  color: var(--txt);
}
.p-news .webgene-blog > article .title {
  flex: 1;
}
.p-news .webgene-pagination {
  margin-top: clamp(60px, 8vw, 120px);
}
.p-news .blog-item__img {
  position: relative;
  z-index: 1;
  width: 65%;
  margin-inline: auto;
  aspect-ratio: 1;
  overflow: hidden;
}
@media (min-width: 768px) {
  .p-news .blog-item__img {
    width: 150px;
  }
}
.p-news .blog-item__img img {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
}
.p-news .blog-item__img > .noImage {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.p-news .blog-item__wrap {
  display: flex;
  flex-direction: column;
  gap: 8px 15px;
  flex: 1;
}

.p-newsdetail__sec {
  padding-block: clamp(150px, 18vw, 240px) clamp(80px, 12vw, 140px);
}
.p-newsdetail .btn-back {
  margin-top: clamp(20px, 3vw, 45px);
}

.newsdetail-contents {
  margin-inline: auto;
  max-width: 820px;
  margin-bottom: clamp(60px, 9vw, 130px);
}
.newsdetail-contents__date {
  margin-bottom: 15px;
  font-size: clamp(0.938rem, 0.755rem + 0.79vw, 1.5rem);
}
.newsdetail-contents__title {
  font-size: clamp(1.125rem, 0.842rem + 1.23vw, 2rem);
  margin-bottom: 35px;
}
.newsdetail-contents__meta {
  margin-top: 35px;
}

.p-news .webgene-pagination,
.p-newsdetail .webgene-pagination {
  margin-top: clamp(60px, 6vw, 80px);
}
.p-news .webgene-pagination ul,
.p-newsdetail .webgene-pagination ul {
  max-width: clamp(350px, 39vw, 580px);
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 20px;
}
@media (min-width: 576px) {
  .p-news .webgene-pagination ul,
.p-newsdetail .webgene-pagination ul {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-news .webgene-pagination li,
.p-newsdetail .webgene-pagination li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 120px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 992px) {
  .p-news .webgene-pagination li,
.p-newsdetail .webgene-pagination li {
    min-width: clamp(180px, 18vw, 265px);
  }
}
.p-news .webgene-pagination .prev > a,
.p-news .webgene-pagination .next > a,
.p-news .webgene-pagination .btn-back > a,
.p-newsdetail .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .btn-back > a {
  position: relative;
  display: block;
  align-items: center;
  border-radius: 100px;
  gap: 24px;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: normal;
  transition: all 0.3s ease;
  padding-block: 6px;
  border: solid 1px var(--txt);
  background-color: white;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .prev > a,
.p-news .webgene-pagination .next > a,
.p-news .webgene-pagination .btn-back > a,
.p-newsdetail .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .btn-back > a {
    padding-block: 9px;
  }
}
.p-news .webgene-pagination .prev > a:hover,
.p-news .webgene-pagination .next > a:hover,
.p-news .webgene-pagination .btn-back > a:hover,
.p-newsdetail .webgene-pagination .prev > a:hover,
.p-newsdetail .webgene-pagination .next > a:hover,
.p-newsdetail .webgene-pagination .btn-back > a:hover {
  opacity: 1;
}
.p-news .webgene-pagination .prev > a,
.p-news .webgene-pagination .next > a,
.p-news .webgene-pagination .btn-back a,
.p-newsdetail .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .btn-back a {
  min-width: 200px;
  width: 100%;
}
@media (min-width: 576px) {
  .p-news .webgene-pagination .prev > a,
.p-news .webgene-pagination .next > a,
.p-news .webgene-pagination .btn-back a,
.p-newsdetail .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .btn-back a {
    min-width: 120px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media (min-width: 992px) {
  .p-news .webgene-pagination .prev > a,
.p-news .webgene-pagination .next > a,
.p-news .webgene-pagination .btn-back a,
.p-newsdetail .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .btn-back a {
    min-width: clamp(180px, 18vw, 265px);
  }
}
.p-news .webgene-pagination .prev > a::after,
.p-news .webgene-pagination .next > a::after,
.p-news .webgene-pagination .btn-back a::after,
.p-newsdetail .webgene-pagination .prev > a::after,
.p-newsdetail .webgene-pagination .next > a::after,
.p-newsdetail .webgene-pagination .btn-back a::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  background: url(../images/arrow.svg) center/contain no-repeat;
  width: 23px;
  height: 23px;
  transition: all 0.3s ease;
}
.p-news .webgene-pagination .prev > a,
.p-news .webgene-pagination .btn-back a,
.p-newsdetail .webgene-pagination .prev > a,
.p-newsdetail .webgene-pagination .btn-back a {
  padding-inline: clamp(90px, 8.5vw, 110px) 30px;
  justify-content: flex-end;
}
.p-news .webgene-pagination .prev > a::after,
.p-news .webgene-pagination .btn-back a::after,
.p-newsdetail .webgene-pagination .prev > a::after,
.p-newsdetail .webgene-pagination .btn-back a::after {
  left: clamp(15px, 2.5vw, 30px);
  transform: translateY(-50%) scale(-1, 1);
}
.p-news .webgene-pagination .prev > a:hover::after,
.p-news .webgene-pagination .btn-back a:hover::after,
.p-newsdetail .webgene-pagination .prev > a:hover::after,
.p-newsdetail .webgene-pagination .btn-back a:hover::after {
  transform: translateY(-50%) translateX(-5px) scale(-1, 1);
}
@media (min-width: 576px) {
  .p-news .webgene-pagination .next,
.p-newsdetail .webgene-pagination .next {
    margin-left: auto;
  }
}
.p-news .webgene-pagination .next > a,
.p-newsdetail .webgene-pagination .next > a {
  padding-inline: 30px clamp(90px, 8.5vw, 110px);
  justify-content: flex-start;
}
.p-news .webgene-pagination .next > a::after,
.p-newsdetail .webgene-pagination .next > a::after {
  right: clamp(15px, 2.5vw, 30px);
  transform: translateY(-50%);
}
.p-news .webgene-pagination .next > a:hover::after,
.p-newsdetail .webgene-pagination .next > a:hover::after {
  transform: translateY(-50%) translateX(5px);
}
.p-news .webgene-pagination .btn-back,
.p-newsdetail .webgene-pagination .btn-back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 10px;
}
@media (min-width: 768px) {
  .p-news .webgene-pagination .btn-back,
.p-newsdetail .webgene-pagination .btn-back {
    margin-top: 30px;
  }
}