@charset "UTF-8";
:root {
  --notosans: "Noto Sans jP", sans-serif;
  --zengothic: "Zen Kaku Gothic New", sans-serif;
  --bizgothic: "BIZ UDGothic", sans-serif;
  --notoserif: "Noto Serif JP", serif;
  --zenold: "Zen Old Mincho", serif;
  --sawarabi: "Sawarabi Mincho", serif;
  --sippori: "Shippori Mincho", serif;
  --kiwi: "Kiwi Maru", "Zen Maru Gothic", "Kosugi Maru", serif;
  --zenmaru: "Zen Maru Gothic", serif;
  --kosugimaru: "Kosugi Maru", serif;
}

/* Universal box-sizing reset */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
}

/* Set default styles for html */
html {
  box-sizing: border-box;
  font-size: 100%;
}

/* Reset margin for common block-level elements */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 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 */
html:focus-within {
  scroll-behavior: smooth;
}

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

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: 1.4;
}

strong {
  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;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
  -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;
  }
}
a {
  text-decoration: none;
  outline: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

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;
}

:root {
  --fvor: #ff941a;
  --base: #feeeca;
  --or: #f7a346;
  --gr: #50ad41;
  --zenkaku: "Zen Kaku Gothic Antique", sans-serif;
  --zenmaru: "Zen Maru Gothic", sans-serif;
}

iframe {
  border: none;
  display: block;
}

body {
  line-height: 1.7;
}

.zenmaru {
  font-family: "Zen Maru Gothic", sans-serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

.cl-or {
  color: #f7a346;
}

.cl-gr {
  color: #50ad41;
}

.text {
  position: relative;
  z-index: 1;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: 1.7;
}
@media (min-width: 768px) {
  .text {
    line-height: 2;
  }
}

.btn-wrap > a {
  background-color: var(--gr);
  display: flex;
  align-items: center;
  border-radius: 50px;
  width: 100%;
  max-width: 300px;
  padding: 12px 20px 12px 28px;
  color: white !important;
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .btn-wrap > a {
    max-width: 310px;
    font-size: 1rem;
  }
}
.btn-wrap > a:hover {
  background-color: rgb(140, 197, 131);
}
.btn-wrap > a > p:nth-child(2) {
  margin-top: auto;
  margin-right: 15px;
}

.btn-wrap.bg-or > a {
  background-color: var(--or);
}
.btn-wrap.bg-or > a::after {
  background: url(../images/arrow-or.svg) center/contain no-repeat;
}
.btn-wrap.bg-or > a:hover {
  background-color: #f5b976;
}

.bb-dot {
  border-bottom: dotted 4px var(--gr);
}

.bb-line {
  border: solid 3px #feeeca !important;
}

.l-header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  padding: 0 20px;
}
.l-header__inner {
  max-width: 1320px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  padding-top: 15px;
}
@media (min-width: 1400px) {
  .l-header__inner {
    padding-top: 30px;
  }
}
.l-header__logo {
  width: 80px;
}
@media (min-width: 576px) {
  .l-header__logo {
    width: 110px;
  }
}
@media (min-width: 1400px) {
  .l-header__logo {
    width: 130px;
  }
}
.l-header__logo > a {
  display: block;
  width: 100%;
}
.l-header__nav {
  flex: 1;
  background-color: white;
  overflow: clip;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  height: 100%;
  width: 100%;
  padding: 150px 0;
  overflow-y: auto;
  transform: translateX(100%);
  transition: all 0.5s ease;
}
@media (min-width: 576px) {
  .l-header__nav {
    width: 60%;
    min-width: 400px;
  }
}
@media (min-width: 992px) {
  .l-header__nav {
    width: 800px;
  }
}
@media (min-width: 1400px) {
  .l-header__nav {
    position: static;
    flex-direction: row;
    justify-content: space-around;
    gap: 0;
    padding: 15px clamp(0.938rem, -0.176rem + 4.82vw, 4.375rem);
    border-radius: 15px;
    width: 100%;
    height: auto;
    overflow: visible;
    transform: none;
  }
}
.l-header__nav.open {
  transform: translateX(0);
}
.l-header__nav--link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--gr);
  opacity: 0;
  transform: translateY(-24px);
  transition: transform 0.6s ease, opacity 0.6s ease;
  will-change: transform, opacity;
}
.l-header__nav--link.is-in {
  opacity: 1;
  transform: none;
}

.l-header .hamburger-menu {
  position: fixed;
  z-index: 9999;
  display: block;
}
@media (min-width: 1400px) {
  .l-header .hamburger-menu {
    display: none;
  }
}
.l-header .back-shadow {
  position: fixed;
  inset: 0;
  z-index: 997;
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.7);
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s ease-out;
}

.js_action_nav .back-shadow {
  visibility: visible;
  opacity: 1;
}

.hamburger-menu {
  display: flex;
  right: 20px;
  top: 20px;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  height: 64px;
  padding: 15px 10px;
  background-color: var(--or);
  border: solid 2px white;
  border-radius: 5px;
}
@media (min-width: 576px) {
  .hamburger-menu {
    height: 68px;
    right: 20px;
    top: 30px;
  }
}
@media (min-width: 1400px) {
  .hamburger-menu {
    display: none;
  }
}

.btn-trigger {
  position: relative;
  z-index: 9999;
  cursor: pointer;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
  width: 40px;
  height: 30px;
}
@media (min-width: 576px) {
  .btn-trigger {
    width: 50px;
    height: 34px;
  }
}
.btn-trigger p {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #fff;
  border-radius: 4px;
  display: inline-block;
  transition: all 0.5s;
  box-sizing: border-box;
}
.btn-trigger p:nth-of-type(1) {
  top: 0;
}
.btn-trigger p:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.btn-trigger p:nth-of-type(3) {
  bottom: 0;
}

#hum-btn .btn-trigger.is-show p:nth-of-type(1) {
  transform: translateY(13.5px) rotate(-45deg);
}
@media (min-width: 576px) {
  #hum-btn .btn-trigger.is-show p:nth-of-type(1) {
    transform: translateY(15px) rotate(-45deg);
  }
}
#hum-btn .btn-trigger.is-show p:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-btn05-bar02 0.8s forwards;
          animation: active-btn05-bar02 0.8s forwards;
}
#hum-btn .btn-trigger.is-show p:nth-of-type(3) {
  transform: translateY(-13.5px) rotate(45deg);
}
@media (min-width: 576px) {
  #hum-btn .btn-trigger.is-show p:nth-of-type(3) {
    transform: translateY(-15px) rotate(45deg);
  }
}

@-webkit-keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
@keyframes active-btn05-bar02 {
  100% {
    height: 0;
  }
}
.info-pop {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99;
  display: flex;
}
@media (min-width: 768px) {
  .info-pop {
    bottom: 15px;
    right: 15px;
    left: auto;
    flex-direction: column;
    gap: 10px;
  }
}
.info-pop__tel, .info-pop__line {
  width: 50%;
}
@media (min-width: 768px) {
  .info-pop__tel, .info-pop__line {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.info-pop__tel > a, .info-pop__line > a {
  align-items: center;
  justify-content: center;
  color: white !important;
  padding: 10px 8px;
  font-weight: 500;
  gap: 8px;
  width: 100%;
  height: 62px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .info-pop__tel > a, .info-pop__line > a {
    padding: 14px 25px;
    border: solid 2px white;
    border-radius: 99px;
    width: 270px;
    height: 72px;
  }
}
.info-pop__tel > img, .info-pop__line > img {
  display: block;
}
.info-pop__tel > a {
  background-color: var(--or);
}
.info-pop__tel > a > p {
  font-size: clamp(1.063rem, 0.961rem + 0.44vw, 1.375rem);
}
.info-pop__tel--icon {
  width: clamp(1.875rem, 1.612rem + 1.14vw, 2.688rem);
  height: clamp(1.875rem, 1.612rem + 1.14vw, 2.688rem);
}
.info-pop__line > a {
  background-color: var(--gr);
}
.info-pop__line > a > p {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.info-pop__line--icon {
  width: clamp(1.875rem, 1.612rem + 1.14vw, 2.688rem);
  height: clamp(1.875rem, 1.612rem + 1.14vw, 2.688rem);
}

.l-footer {
  padding: 70px 0 50px;
  background: #ffb44f;
  color: white;
}
@media (min-width: 1400px) {
  .l-footer .container {
    max-width: 1320px;
  }
}
.l-footer__logo {
  max-width: 80%;
  margin: 0 auto 30px;
}
@media (min-width: 576px) {
  .l-footer__logo {
    max-width: 348px;
  }
}
@media (min-width: 1200px) {
  .l-footer__logo {
    margin: 0 auto 30px 0;
  }
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: min(6.94vw, 50px);
}
@media (min-width: 1200px) {
  .l-footer__inner {
    flex-direction: row;
  }
}
.l-footer__inner--left {
  width: 100%;
  max-width: 700px;
  margin-inline: auto;
  text-align: center;
  font-size: 1rem;
}
@media (min-width: 768px) {
  .l-footer__inner--left {
    font-size: 1.5rem;
  }
}
@media (min-width: 1200px) {
  .l-footer__inner--left {
    width: 464px;
    text-align: left;
  }
}
.l-footer__inner--right {
  flex: 1;
}
.l-footer .btn-wrap {
  margin-top: 20px;
}
.l-footer .btn-wrap .insta-btn__logo {
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-footer .btn-wrap .insta-btn__logo > img {
  width: 27px;
  min-width: 27px;
  height: 27px;
}
.l-footer .btn-wrap .insta-btn__logo > p {
  flex: 1;
}
.l-footer .btn-wrap a {
  background-color: white;
  color: #ffb44f;
  margin-inline: auto;
}
@media (min-width: 1200px) {
  .l-footer .btn-wrap a {
    margin-inline: 0 auto;
  }
}
.l-footer .btn-wrap a::after {
  background: url(../images/arrow-wh.svg) center/contain no-repeat;
}
.l-footer .btn-wrap a:hover {
  color: #f7b05f;
}
.l-footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 60px auto 0;
  gap: 14px;
}
@media (min-width: 768px) {
  .l-footer__nav {
    max-width: 760px;
  }
}
@media (min-width: 1400px) {
  .l-footer__nav {
    max-width: 100%;
  }
}
.l-footer__nav--link {
  padding: 12px 17px;
  border-radius: 99px;
  border: solid 2px white;
  font-size: 0.875rem;
  font-weight: 500;
  min-width: 150px;
  text-align: center;
}
@media (min-width: 576px) {
  .l-footer__nav--link {
    font-size: 1rem;
    min-width: 170px;
  }
}
@media (min-width: 768px) {
  .l-footer__nav--link {
    min-width: auto;
  }
}
.l-footer__nav--link:hover {
  color: #ffb44f;
  background-color: white;
}

.biz-hours {
  text-align: center;
  max-width: 702px;
  margin-inline: auto;
}
.biz-hours p {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  letter-spacing: 2px;
}
.biz-hours__row {
  align-items: center;
  position: relative;
  display: grid;
  border-bottom: solid 2px white;
  grid-template-columns: 64px repeat(7, 1fr);
}
@media (min-width: 576px) {
  .biz-hours__row {
    grid-template-columns: 150px repeat(7, 1fr);
  }
}
@media (min-width: 768px) {
  .biz-hours__row {
    grid-template-columns: 220px repeat(7, 1fr);
  }
}
@media (min-width: 1200px) {
  .biz-hours__row {
    grid-template-columns: clamp(64px, 17.394vw, 263px) repeat(7, clamp(14px, 3.836vw, 58px));
  }
}
.biz-hours__row:last-child {
  margin-bottom: none;
}
.biz-hours__row + .biz-hours__row {
  margin-top: 8px;
}
.biz-hours__cell {
  padding: 13px 5px;
  white-space: nowrap;
}
@media (min-width: 576px) {
  .biz-hours__cell {
    padding: 18px 10px;
  }
}
.biz-hours__head, .biz-hours__time {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media (min-width: 576px) {
  .biz-hours__head, .biz-hours__time {
    flex-direction: row;
  }
}

.page-top .top-fv {
  position: relative;
  height: 100vh;
  background-color: var(--or);
  padding: 60px 20px;
  min-height: 600px;
}
@media (min-width: 576px) {
  .page-top .top-fv {
    padding: 70px 4.5vw;
  }
}
@media (min-width: 768px) {
  .page-top .top-fv {
    min-height: 850px;
  }
}
.page-top .top-fv__text {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: inherit;
  min-height: inherit;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-inline: auto;
}
.page-top .top-fv__text.container {
  margin-inline: auto;
  padding: 0 35px;
}
@media (min-width: 576px) {
  .page-top .top-fv__text.container {
    padding: 0 5.5vw;
  }
}
@media (min-width: 1400px) {
  .page-top .top-fv__text.container {
    padding: 0 15px;
  }
}
.page-top .top-fv__text > h1 {
  font-size: clamp(1.75rem, 1.021rem + 3.15vw, 4rem);
  font-weight: 700;
  line-height: 1.6;
  text-shadow: 2px 4px 4px rgba(0, 0, 0, 0.4);
  color: white;
  margin-bottom: 26px;
}
.page-top .top-fv__up {
  gap: 10px;
}
@media (min-width: 768px) {
  .page-top .top-fv__up {
    gap: 25px;
  }
}
.page-top .top-fv__img {
  height: 100%;
  border-radius: 25px;
  overflow: clip;
}
@media (min-width: 768px) {
  .page-top .top-fv__img {
    border-radius: 50px;
  }
}
.page-top .top-fv__img img {
  height: 100%;
  -o-object-position: 70% center;
     object-position: 70% center;
}
@media (min-width: 768px) {
  .page-top .top-fv__img img {
    -o-object-position: center;
       object-position: center;
  }
}

.section-title {
  position: relative;
  z-index: 1;
}
.section-title > h2 {
  font-weight: bold;
  font-size: clamp(1.563rem, 1.097rem + 2.01vw, 3rem);
}
.section-title > p {
  position: absolute;
  z-index: -1;
  line-height: 1;
  font-family: var(--zenkaku);
  font-weight: 900;
  font-size: clamp(3.75rem, 2.373rem + 5.95vw, 8rem);
  text-align: center;
  color: rgba(255, 255, 255, 0.2);
  top: clamp(-76px, -5vw, -36px);
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
}
.section-title > p > span {
  display: inline-block;
}

.bd-dot-gr > h2, .bd-dot-gr > h3 {
  border-bottom: dotted 4px var(--gr);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-inline: 20px;
  padding-bottom: 10px;
  margin-inline: auto;
}

.theme-title > h2 {
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
  font-weight: bold;
}
.theme-title > p {
  position: absolute;
  z-index: -1;
  top: clamp(-76px, -5vw, -36px);
  left: 50%;
  transform: translateX(-50%);
  line-height: 1;
  font-size: clamp(3.75rem, 2.373rem + 5.95vw, 8rem);
  font-weight: 900;
  font-family: var(--zenkaku);
  color: rgba(255, 255, 255, 0.2);
}

.contents-title h2,
.contents-title h3 {
  font-weight: bold;
  font-size: clamp(1.25rem, 1.007rem + 1.05vw, 2rem);
}

.top-about {
  background-color: var(--base);
}
.top-about .section-title > p {
  color: rgba(255, 255, 255, 0.55);
  left: -13px;
  transform: none;
}
@media (min-width: 576px) {
  .top-about .section-title > p {
    left: -53px;
  }
}
.top-about__top {
  padding-block: 80px;
  gap: 45px;
  display: flex;
  flex-direction: column;
}
@media (min-width: 576px) {
  .top-about__top {
    padding-block: 120px;
  }
}
@media (min-width: 768px) {
  .top-about__top {
    padding-block: 170px;
  }
}
@media (min-width: 992px) {
  .top-about__top {
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .top-about__top .box:first-child {
    width: 50%;
  }
}
@media (min-width: 1200px) {
  .top-about__top .box:first-child {
    width: 550px;
  }
}
.top-about__top .box:last-child {
  flex: 1;
  border-radius: 30px;
  overflow: clip;
  max-width: 80%;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .top-about__top .box:last-child {
    max-width: 100%;
  }
}
.top-about__top .box:last-child img {
  height: 100%;
}

.flex-box {
  display: flex;
  flex-direction: column-reverse;
  background-color: white;
}
@media (min-width: 992px) {
  .flex-box {
    flex-direction: row;
  }
}
.flex-box span {
  display: inline-block;
}
@media (min-width: 992px) {
  .flex-box .box {
    width: 50%;
  }
}
.flex-box .box img {
  height: 100%;
}
.flex-box .box--img {
  flex: 1;
}
.flex-box .box--text {
  padding: 60px 20px;
}
@media (min-width: 992px) {
  .flex-box .box--text {
    padding: 80px 2.5vw;
  }
}
@media (min-width: 1200px) {
  .flex-box .box--text {
    padding: 80px 4.5vw;
  }
}

.top-treatment {
  background-color: var(--or);
  color: white;
}
.top-treatment .treatment-title {
  margin-bottom: 100px;
}
@media (min-width: 768px) {
  .top-treatment .treatment-title {
    margin-bottom: 140px;
  }
}
.top-treatment__inner {
  display: flex;
  flex-direction: column;
  gap: 100px;
}
@media (min-width: 576px) {
  .top-treatment__inner {
    gap: 120px;
  }
}
@media (min-width: 768px) {
  .top-treatment__inner {
    gap: 140px;
  }
}
.top-treatment__inner .box {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
}
@media (min-width: 992px) {
  .top-treatment__inner .box {
    flex-direction: row;
    align-items: flex-end;
    gap: 58px;
  }
}
@media (min-width: 992px) {
  .top-treatment__inner .box:nth-child(even) {
    flex-direction: row-reverse;
  }
}
@media (min-width: 992px) {
  .top-treatment__inner .box-right {
    width: 370px;
  }
}
.top-treatment__inner .box-left {
  flex: 1;
  overflow: clip;
  border-radius: 30px;
  margin-inline: auto;
  width: 75%;
}
@media (min-width: 992px) {
  .top-treatment__inner .box-left {
    width: 100%;
  }
}
.top-treatment__inner .box .section-title {
  text-align: center;
}
@media (min-width: 992px) {
  .top-treatment__inner .box .section-title {
    text-align: left;
  }
}
.top-treatment__inner .box .section-title > p {
  transform: none;
  opacity: 0.2;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 992px) {
  .top-treatment__inner .box .section-title > p {
    left: -20px;
    transform: none;
  }
}

.treatment-title {
  position: relative;
  z-index: 1;
}
.treatment-title h2 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  border-bottom: dotted 4px #50ad41;
  font-size: clamp(1.875rem, 1.187rem + 2.98vw, 4rem);
  font-weight: bold;
  padding-bottom: 12px;
  padding-left: 30px;
  padding-right: 30px;
}
@media (min-width: 768px) {
  .treatment-title h2 {
    padding-bottom: 18px;
    padding-left: 50px;
    padding-right: 50px;
  }
}

.top-phiten {
  flex-direction: column;
}
@media (min-width: 992px) {
  .top-phiten {
    flex-direction: row;
  }
}
.top-phiten__logo {
  max-width: 150px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.top-phiten__logo img {
  width: 100%;
  max-height: 115px;
}

.slider-box {
  padding: 40px 0;
  background-color: var(--base);
}
@media (min-width: 576px) {
  .slider-box {
    padding: 60px 0;
  }
}
@media (min-width: 768px) {
  .slider-box {
    padding: 100px 0;
  }
}
.slider-box .swiper-wrapper {
  transition-timing-function: linear;
}
.slider-box .swiper-slide {
  border-radius: 20px;
  overflow: clip;
}

.top-news {
  padding: 100px 0 50px;
  background-color: var(--or);
}
.top-news .section-title {
  margin-bottom: 60px;
}
.top-news .section-title > h2 {
  color: white;
}
@media (min-width: 768px) {
  .top-news {
    padding: 130px 0 70px;
  }
}
.top-news .webgene-blog {
  display: flex;
  flex-direction: column;
  gap: 28px;
  max-width: 940px;
  margin-inline: auto;
}
.top-news .webgene-blog .news-item {
  display: flex;
  flex-direction: column;
  background-color: white;
  border-radius: 10px;
  padding: 10px 15px;
}
@media (min-width: 576px) {
  .top-news .webgene-blog .news-item {
    padding: 15px 20px;
  }
}
@media (min-width: 768px) {
  .top-news .webgene-blog .news-item {
    padding: 20px 30px;
    align-items: center;
    flex-direction: row;
  }
}
@media (min-width: 992px) {
  .top-news .webgene-blog .news-item {
    padding: 20px 50px;
  }
}
.top-news .webgene-blog .news-item__date {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  color: var(--gr);
  width: 100%;
}
@media (min-width: 768px) {
  .top-news .webgene-blog .news-item__date {
    width: 173px;
  }
}
.top-news .webgene-blog .news-item__title {
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
  color: var(--or);
  flex: 1;
}

.top-other {
  background-color: var(--base);
}
.top-other .container {
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  --gap: 30px;
}
@media (min-width: 768px) {
  .top-other .container {
    flex-direction: row;
    padding: 85px 0;
    gap: clamp(1.25rem, 0.136rem + 4.82vw, 4.688rem);
    --gap: clamp(1.25rem, 0.136rem + 4.82vw, 4.688rem);
  }
}
.top-other .container .box {
  width: 100%;
  border-radius: 15px;
  overflow: clip;
}
@media (min-width: 768px) {
  .top-other .container .box {
    width: calc((100% - var(--gap)) / 2);
  }
}
.top-other .container .box > a {
  position: relative;
  z-index: 1;
  display: block;
  padding: clamp(2.5rem, 0.536rem + 8.49vw, 8.563rem) clamp(1.25rem, 0.643rem + 2.63vw, 3.125rem) clamp(2.5rem, 2.298rem + 0.88vw, 3.125rem);
  color: white;
}
.top-other .container .box > a::after {
  content: "";
  position: absolute;
  z-index: -1;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(108, 67, 1, 0.4);
  transition: all 0.3s ease;
}
.top-other .container .box > a:hover::after {
  background-color: rgba(108, 67, 1, 0);
  transition: all 0.3s ease;
}
.top-other .container .box > a .box-inner {
  text-align: center;
}
.top-other .container .box > a .box-inner > h3 {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(1.25rem, 0.845rem + 1.75vw, 2.5rem);
  font-weight: bold;
  line-height: 0.9;
  margin-inline: auto;
  margin-bottom: clamp(2.188rem, 1.479rem + 3.06vw, 4.375rem);
  padding-inline: clamp(0.938rem, 0.735rem + 0.88vw, 1.563rem);
  padding-bottom: 25px;
  border-bottom: dotted 4px white;
}
.top-other .container .box > a .box-inner > p {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  font-weight: 500;
}
.top-other .map iframe {
  height: clamp(18.75rem, 11.663rem + 30.65vw, 40.625rem);
}

/* 共通コード */
.page-fv {
  background-color: var(--fvor);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-bottom: clamp(3.125rem, 1.91rem + 5.25vw, 6.875rem);
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  gap: 30px;
}
@media (max-width: 400px) {
  .page-fv {
    max-height: 650px;
  }
}
@media (min-width: 768px) {
  .page-fv {
    align-items: center;
    flex-direction: row;
    height: auto;
    gap: 55px;
  }
}
.page-fv__img {
  position: relative;
  z-index: 1;
  width: 95%;
  height: 100%;
  border-radius: 0 0 20px 0;
  overflow: clip;
  aspect-ratio: 3/4.2;
}
@media (min-width: 576px) {
  .page-fv__img {
    border-radius: 0 0 30px 0;
    aspect-ratio: unset;
  }
}
@media (min-width: 768px) {
  .page-fv__img {
    width: 70%;
    margin-right: 55px;
    margin-bottom: 0;
    height: auto;
  }
}
.page-fv__img::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  background-color: rgba(108, 67, 1, 0.25);
  pointer-events: none;
}
.page-fv__img img {
  height: 100%;
}
@media (min-width: 576px) {
  .page-fv__img img {
    height: auto;
  }
}
.page-fv__text {
  flex: 1;
  text-align: right;
}
@media (min-width: 768px) {
  .page-fv__text {
    text-align: left;
  }
}
.page-fv__text h1 {
  font-size: 30px;
  font-weight: 700;
  line-height: 170%;
  padding-left: 50px;
}
@media (min-width: 576px) {
  .page-fv__text h1 {
    font-size: 40px;
  }
}
@media (min-width: 768px) {
  .page-fv__text h1 {
    padding-left: 0;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .page-fv__text h1 {
    font-size: 55px;
  }
}
.page-fv__text p {
  font-size: 16px;
  font-weight: 700;
  line-height: 120%;
  padding-left: 20px;
}
@media (min-width: 576px) {
  .page-fv__text p {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .page-fv__text p {
    font-size: 28px;
    padding-left: 0;
    padding-right: 20px;
  }
}
@media (min-width: 992px) {
  .page-fv__text p {
    font-size: 35px;
  }
}
.page-fv__text .wrap {
  margin-bottom: 15px;
}
.page-fv__text .wrap::after {
  content: "";
  display: block;
  width: 100%;
  height: 5px;
  background-color: white;
  border-radius: 99px;
}

.contact-buttons {
  padding-top: 65px;
  border-top: dotted 4px var(--or);
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media (min-width: 768px) {
  .contact-buttons {
    gap: 40px;
  }
}
.contact-buttons .contact-btn {
  display: flex;
  align-items: center;
  background-color: var(--fvor);
  color: #fff;
  border-radius: 20px;
  padding: 20px;
  border: 3px solid #fff;
  min-width: 350px;
}
@media (max-width: 400px) {
  .contact-buttons .contact-btn {
    min-width: 80%;
    padding: 18px 10px;
  }
}
@media (min-width: 768px) {
  .contact-buttons .contact-btn {
    padding: 20px 40px;
  }
}
.contact-buttons .contact-btn__icon {
  width: clamp(3.125rem, 2.113rem + 4.38vw, 6.25rem);
  height: clamp(3.125rem, 2.113rem + 4.38vw, 6.25rem);
}
.contact-buttons .contact-btn.line {
  background-color: var(--gr);
}
.contact-buttons .contact-btn.line:hover {
  background-color: var(--hvgr);
}
.contact-buttons .contact-btn.phone:hover {
  background-color: var(--hvor);
}
.contact-buttons .contact-text {
  text-align: left;
  margin-left: 15px;
  line-height: 180%;
}
@media (min-width: 768px) {
  .contact-buttons .contact-text {
    margin-left: 30px;
    line-height: 220%;
  }
}
.contact-buttons .contact-text .text {
  font-weight: 500;
  font-size: clamp(1.375rem, 1.233rem + 0.61vw, 1.813rem);
  margin: 0;
}
.contact-buttons .contact-text .number {
  display: block;
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
}
.contact-buttons .title {
  display: flex;
  align-items: baseline;
}
.contact-buttons .title .small {
  font-weight: 500;
  font-size: clamp(1.125rem, 0.983rem + 0.61vw, 1.563rem);
}
.contact-buttons .big {
  font-weight: 500;
  font-size: clamp(1.563rem, 1.36rem + 0.88vw, 2.188rem);
}

.page-concept .sec01 {
  background-color: var(--base);
  padding: 100px 0 120px;
}
@media (min-width: 576px) {
  .page-concept .sec01 {
    padding: 100px 0 150px;
  }
}
@media (min-width: 768px) {
  .page-concept .sec01 {
    padding: 130px 0 190px;
  }
}
.page-concept .sec01 .section-title p {
  color: rgba(255, 255, 255, 0.55);
}
.page-concept .sec02 {
  background-color: var(--or);
  padding: 100px 0 120px;
  color: white;
}
@media (min-width: 576px) {
  .page-concept .sec02 {
    padding: 100px 0 150px;
  }
}
@media (min-width: 768px) {
  .page-concept .sec02 {
    padding: 130px 0 190px;
  }
}
.page-concept .sec02 .section-title {
  margin-bottom: 60px;
}
.page-concept .sec02 .section-title p {
  width: 100%;
  text-align: center;
  line-height: 0.8;
}
@media (min-width: 576px) {
  .page-concept .sec02 .section-title p {
    line-height: 1;
  }
}
.page-concept .sec02 .box-inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}
.page-concept .sec02 .box {
  display: flex;
  gap: 20px;
}
@media (min-width: 992px) {
  .page-concept .sec02 .box {
    gap: 40px;
  }
}
@media (min-width: 1200px) {
  .page-concept .sec02 .box {
    gap: 60px;
  }
}
.page-concept .sec02 .box-number {
  font-size: clamp(5rem, 3.583rem + 6.13vw, 9.375rem);
  font-family: var(--zenkaku);
  font-weight: 900;
  color: #feeeca;
  line-height: 0.9;
  margin-top: -1.2vw;
}
.page-concept .sec02 .box-text > h3 {
  font-size: clamp(1.25rem, 0.946rem + 1.31vw, 2.188rem);
  font-weight: 500;
}
.page-concept .sec03 {
  padding: 120px 0;
}
@media (min-width: 576px) {
  .page-concept .sec03 {
    padding: 150px 0;
  }
}
@media (min-width: 768px) {
  .page-concept .sec03 {
    padding: 200px 0;
  }
}
.page-concept .sec03 .section-title {
  margin-bottom: 55px;
}
@media (min-width: 768px) {
  .page-concept .sec03 .section-title {
    margin-bottom: 80px;
  }
}
.page-concept .sec03 .section-title > p {
  width: 100%;
  color: rgba(254, 238, 202, 0.5);
  text-align: center;
  line-height: 0.8;
}
@media (min-width: 576px) {
  .page-concept .sec03 .section-title > p {
    line-height: 1;
  }
}
.page-concept .sec03 .box-inner {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.page-concept .sec03 .box {
  position: relative;
  padding-bottom: 245px;
  min-height: 610px;
}
@media (min-width: 768px) {
  .page-concept .sec03 .box {
    padding-bottom: 25px;
    min-height: 410px;
  }
}
.page-concept .sec03 .box .box-text {
  width: 90%;
  background-color: var(--base);
  padding-block: 45px;
}
.page-concept .sec03 .box .box-text > h3, .page-concept .sec03 .box .box-text > p {
  padding: 15px 0;
}
@media (min-width: 576px) {
  .page-concept .sec03 .box .box-text > h3, .page-concept .sec03 .box .box-text > p {
    padding: 15px;
  }
}
.page-concept .sec03 .box .box-text > h3 {
  font-size: clamp(1.125rem, 0.68rem + 1.93vw, 2.5rem);
  border-bottom: dotted 4px var(--gr);
  margin-bottom: 10px;
}
.page-concept .sec03 .box:nth-child(odd) .box-text {
  margin-right: auto;
  border-radius: 0 20px 20px 0;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .page-concept .sec03 .box:nth-child(odd) .box-text {
    border-radius: 0 30px 30px 0;
    padding-inline: 5% 34%;
  }
}
@media (min-width: 1200px) {
  .page-concept .sec03 .box:nth-child(odd) .box-text {
    padding-inline: 12% 34%;
  }
}
@media (min-width: 768px) {
  .page-concept .sec03 .box:nth-child(odd) .box-text > h3, .page-concept .sec03 .box:nth-child(odd) .box-text > p {
    padding-right: 30px;
  }
}
@media (min-width: 992px) {
  .page-concept .sec03 .box:nth-child(odd) .box-text > h3, .page-concept .sec03 .box:nth-child(odd) .box-text > p {
    padding-right: 60px;
  }
}
.page-concept .sec03 .box:nth-child(even) .box-text {
  margin-left: auto;
  border-radius: 20px 0 0 20px;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .page-concept .sec03 .box:nth-child(even) .box-text {
    border-radius: 30px 0 0 30px;
    padding-inline: 34% 5%;
  }
}
@media (min-width: 1200px) {
  .page-concept .sec03 .box:nth-child(even) .box-text {
    padding-inline: 34% 12%;
  }
}
.page-concept .sec03 .box:nth-child(even) .box-text > h3, .page-concept .sec03 .box:nth-child(even) .box-text > p {
  text-align: right;
}
@media (min-width: 768px) {
  .page-concept .sec03 .box:nth-child(even) .box-text > h3, .page-concept .sec03 .box:nth-child(even) .box-text > p {
    padding-left: 30px;
  }
}
@media (min-width: 992px) {
  .page-concept .sec03 .box:nth-child(even) .box-text > h3, .page-concept .sec03 .box:nth-child(even) .box-text > p {
    padding-left: 60px;
  }
}
.page-concept .sec03 .box .box-img {
  position: absolute;
  bottom: 0;
  width: 90%;
  overflow: clip;
  min-height: 324px;
}
@media (min-width: 768px) {
  .page-concept .sec03 .box .box-img {
    width: 45%;
  }
}
.page-concept .sec03 .box .box-img > img {
  height: 100%;
  min-height: inherit;
}
.page-concept .sec03 .box:nth-child(odd) .box-img {
  right: 0;
  border-radius: 20px 0 0 20px;
}
@media (min-width: 768px) {
  .page-concept .sec03 .box:nth-child(odd) .box-img {
    border-radius: 30px 0 0 30px;
  }
}
.page-concept .sec03 .box:nth-child(even) .box-img {
  left: 0;
  border-radius: 0 20px 20px 0;
}
@media (min-width: 768px) {
  .page-concept .sec03 .box:nth-child(even) .box-img {
    border-radius: 0 30px 30px 0;
  }
}
.page-concept .sec04 {
  background-color: var(--base);
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-concept .sec04 {
    padding: 120px 0 100px;
  }
}
@media (min-width: 768px) {
  .page-concept .sec04 {
    padding: 150px 0 100px;
  }
}
@media (min-width: 992px) {
  .page-concept .sec04 {
    padding: 200px 0 100px;
    gap: 0;
  }
}
.page-concept .sec04 .section-title {
  margin-bottom: 50px;
}
@media (min-width: 768px) {
  .page-concept .sec04 .section-title {
    margin-bottom: 80px;
  }
}
.page-concept .sec04 .section-title > p {
  color: rgba(255, 255, 255, 0.55);
  text-align: center;
  width: 100%;
}
.page-concept .sec04 .box-inner {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding-bottom: 100px;
  align-items: center;
}
@media (min-width: 576px) {
  .page-concept .sec04 .box-inner {
    padding-bottom: 120px;
  }
}
@media (min-width: 768px) {
  .page-concept .sec04 .box-inner {
    padding-bottom: 150px;
  }
}
@media (min-width: 992px) {
  .page-concept .sec04 .box-inner {
    padding-bottom: 200px;
    gap: 0;
    flex-direction: row;
  }
}
.page-concept .sec04 .box-inner .box-img {
  width: 75%;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .page-concept .sec04 .box-inner .box-img {
    padding-inline: 60px;
  }
}
.page-concept .sec04 .box-inner .box-img > img {
  border-radius: 20px;
}
@media (min-width: 576px) {
  .page-concept .sec04 .box-inner .box-img > img {
    border-radius: 30px;
  }
}
@media (min-width: 992px) {
  .page-concept .sec04 .box-inner .box-img,
.page-concept .sec04 .box-inner .box-text {
    width: 50%;
  }
}

.page-standard .sec01 {
  background-color: var(--base);
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-standard .sec01 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-standard .sec01 {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .page-standard .sec01 {
    padding: 200px 0;
  }
}
.page-standard .sec01 .box-wrap {
  display: flex;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 30px;
}
@media (min-width: 768px) {
  .page-standard .sec01 .box-wrap {
    gap: 40px;
  }
}
@media (min-width: 992px) {
  .page-standard .sec01 .box-wrap {
    gap: 50px;
  }
}
.page-standard .sec01 .box-wrap .box {
  width: 80%;
  margin-inline: auto;
  border: solid 10px #ffb44f;
  border-radius: 20px;
  background-color: white;
  overflow: clip;
}
@media (max-width: 400px) {
  .page-standard .sec01 .box-wrap .box {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .page-standard .sec01 .box-wrap .box {
    width: calc(50% - 20px);
    border-radius: 30px;
  }
}
@media (min-width: 992px) {
  .page-standard .sec01 .box-wrap .box {
    width: calc(33.3333333333% - 35px);
  }
}
.page-standard .sec01 .box-wrap .box > img {
  background-color: var(--or);
}
.page-standard .sec01 .box-wrap .box-inner {
  padding: 30px 15px;
}
@media (min-width: 768px) {
  .page-standard .sec01 .box-wrap .box-inner {
    padding: 20px 20px 35px;
  }
}
.page-standard .sec01 .box-wrap .box-inner .title {
  display: flex;
  align-items: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: var(--or);
  font-weight: bold;
  line-height: 1;
  padding-bottom: 8px;
  padding-inline: 15px;
  border-bottom: dotted 4px var(--gr);
  margin-inline: auto;
  margin-bottom: 20px;
}
.page-standard .sec01 .box-wrap .box-inner .title > h3 {
  font-size: clamp(1.25rem, 0.717rem + 1.23vw, 1.875rem);
}
.page-standard .sec01 .box-wrap .box-inner .title > p {
  font-size: clamp(1rem, 0.652rem + 0.96vw, 1.563rem);
}
.page-standard .sec02 {
  background-color: var(--or);
  color: white;
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-standard .sec02 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-standard .sec02 {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .page-standard .sec02 {
    padding: 200px 0;
  }
}
.page-standard .sec02 .section-title h2 {
  color: white;
}
.page-standard .sec02 .section-title > p {
  width: 100%;
  text-align: center;
  line-height: 0.8;
  top: clamp(-76px, -7vw, -36px);
}
@media (min-width: 768px) {
  .page-standard .sec02 .section-title > p {
    line-height: 1;
  }
}
.page-standard .sec02 .box-wrap {
  max-width: 680px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}
@media (min-width: 768px) {
  .page-standard .sec02 .box-wrap {
    gap: 60px;
    flex-direction: row;
  }
}
.page-standard .sec02 .box-wrap .btn-wrap {
  width: 100%;
}
@media (min-width: 768px) {
  .page-standard .sec02 .box-wrap .btn-wrap {
    width: calc(50% - 30px);
  }
}
.page-standard .sec02 .box-wrap .btn-wrap > a {
  margin-inline: auto;
}
.page-standard .sec03 {
  padding: 100px 0 100px;
}
@media (min-width: 576px) {
  .page-standard .sec03 {
    padding: 120px 0 100px;
  }
}
@media (min-width: 768px) {
  .page-standard .sec03 {
    padding: 150px 0 100px;
  }
}
@media (min-width: 992px) {
  .page-standard .sec03 {
    padding: 200px 0 100px;
  }
}
.page-standard .sec03 .section-title > p {
  color: rgba(254, 238, 202, 0.5);
  width: 100vw;
  text-align: center;
  line-height: 0.8;
  top: clamp(-76px, -8vw, -36px);
}
@media (min-width: 992px) {
  .page-standard .sec03 .section-title > p {
    line-height: 1;
  }
}

.page-suiso .sec01 {
  background-color: var(--base);
}
.page-suiso .sec01 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 992px) {
  .page-suiso .sec01 .box-wrap {
    flex-direction: row;
    gap: 80px;
  }
}
.page-suiso .sec01 .box-wrap .box {
  width: 100%;
}
@media (min-width: 992px) {
  .page-suiso .sec01 .box-wrap .box {
    width: 50%;
  }
}
.page-suiso .sec01 .box-wrap .box:first-child {
  padding-block: 80px;
  padding-inline: 20px;
}
@media (min-width: 992px) {
  .page-suiso .sec01 .box-wrap .box:first-child {
    padding-block: 100px;
    padding-inline: 50px 0;
  }
}
@media (min-width: 992px) {
  .page-suiso .sec01 .box-wrap .box:first-child > h2, .page-suiso .sec01 .box-wrap .box:first-child > p {
    max-width: 540px;
    margin-left: auto;
  }
}
.page-suiso .sec01 .box-wrap .box:first-child > h2 {
  font-size: clamp(1.563rem, 1.158rem + 1.75vw, 2.813rem);
  font-weight: bold;
}
.page-suiso .sec01 .box-wrap .box:last-child {
  width: 75%;
  margin-inline: auto;
  padding-bottom: 80px;
  border-radius: 25px;
  overflow: clip;
}
@media (min-width: 992px) {
  .page-suiso .sec01 .box-wrap .box:last-child {
    width: 50%;
    padding-bottom: 0;
    border-radius: 0;
  }
}
.page-suiso .sec02 {
  background-color: var(--or);
  color: white;
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-suiso .sec02 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-suiso .sec02 {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .page-suiso .sec02 {
    padding: 200px 0;
  }
}
.page-suiso .sec02 .section-title h2 {
  color: white;
}
.page-suiso .sec03 {
  padding: 100px 0;
}
.page-suiso .sec03 .section-title > p {
  color: rgba(254, 238, 202, 0.5);
}
@media (min-width: 576px) {
  .page-suiso .sec03 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-suiso .sec03 {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .page-suiso .sec03 {
    padding: 200px 0;
  }
}
.page-suiso .sec03 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 80px;
}
@media (min-width: 768px) {
  .page-suiso .sec03 .box-wrap {
    gap: 60px;
  }
}
.page-suiso .sec03 .box-wrap .box {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (min-width: 768px) {
  .page-suiso .sec03 .box-wrap .box {
    gap: 60px;
    flex-direction: row;
  }
}
.page-suiso .sec03 .box-wrap .box-img {
  position: relative;
  z-index: 1;
  overflow: clip;
  border-radius: 20px;
  width: 100%;
  margin-inline: auto;
}
@media (min-width: 576px) {
  .page-suiso .sec03 .box-wrap .box-img {
    border-radius: 30px;
  }
}
@media (min-width: 768px) {
  .page-suiso .sec03 .box-wrap .box-img {
    width: 280px;
  }
}
@media (min-width: 992px) {
  .page-suiso .sec03 .box-wrap .box-img {
    width: 415px;
  }
}
.page-suiso .sec03 .box-wrap .box-text {
  position: relative;
  z-index: 1;
  flex: 1;
  padding: 20px 0 0 20px;
}
.page-suiso .sec03 .box-wrap .box-text > h3 {
  font-weight: 500;
  font-size: clamp(1.25rem, 0.946rem + 1.31vw, 2.188rem);
  margin-bottom: 20px;
}
.page-suiso .sec03 .box-wrap .box-text > p {
  font-size: clamp(0.938rem, 0.836rem + 0.44vw, 1.25rem);
  line-height: 1;
}
.page-suiso .sec03 .box-wrap .box-text .number {
  position: absolute;
  z-index: -1;
  font-weight: 900;
  font-size: clamp(5rem, 2.57rem + 10.51vw, 12.5rem);
  line-height: 1;
  color: rgba(254, 238, 202, 0.5);
  top: -30px;
  left: -15px;
}
.page-suiso .sec04 {
  background-color: var(--or);
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-suiso .sec04 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-suiso .sec04 {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .page-suiso .sec04 {
    padding: 200px 0;
  }
}
.page-suiso .sec04 .section-title h2 {
  color: white;
}
.page-suiso .sec04 .text {
  color: white;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
.page-suiso .sec04 .step-wrap .box {
  background-color: white;
}
.page-suiso .sec04 .step-wrap .box-head p {
  color: var(--gr);
}
.page-suiso .sec05 {
  background-color: var(--base);
  padding: 100px 0 0;
}
@media (min-width: 576px) {
  .page-suiso .sec05 {
    padding: 120px 0 0;
  }
}
@media (min-width: 768px) {
  .page-suiso .sec05 {
    padding: 150px 0 0;
  }
}
@media (min-width: 992px) {
  .page-suiso .sec05 {
    padding: 200px 0 0;
  }
}
.page-suiso .sec05 .section-title > p {
  color: rgba(255, 255, 255, 0.55);
}
.page-suiso .sec05 .box {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .page-suiso .sec05 .box {
    margin-bottom: 100px;
  }
}
.page-suiso .sec05 .box:last-child {
  margin-bottom: 0;
}
.page-suiso .sec05 .box > h3 {
  font-size: clamp(1.125rem, 0.882rem + 1.05vw, 1.875rem);
  font-weight: bold;
  margin-bottom: 30px;
}
.page-suiso .sec05 .box-table,
.page-suiso .sec05 .other-list {
  overflow: clip;
  border-radius: 20px;
  background-color: white;
}
@media (min-width: 576px) {
  .page-suiso .sec05 .box-table,
.page-suiso .sec05 .other-list {
    border-radius: 30px;
  }
}
.page-suiso .sec05 .other-list {
  padding: 25px 20px;
}
@media (min-width: 576px) {
  .page-suiso .sec05 .other-list {
    padding: 25px 30px;
  }
}
@media (min-width: 992px) {
  .page-suiso .sec05 .other-list {
    padding: 25px 55px;
  }
}
.page-suiso .sec05 .other-list .list-dl {
  display: flex;
  flex-direction: column;
  border-bottom: dotted 4px var(--gr);
  padding: 15px 0;
}
@media (min-width: 768px) {
  .page-suiso .sec05 .other-list .list-dl {
    flex-direction: row;
  }
}
.page-suiso .sec05 .other-list .list-dl:first-child {
  padding-top: 0;
}
.page-suiso .sec05 .other-list .list-dl:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.page-suiso .sec05 .other-list .list-dt,
.page-suiso .sec05 .other-list .list-dd {
  font-size: clamp(1.125rem, 0.882rem + 1.05vw, 1.875rem);
}
.page-suiso .sec05 .other-list .list-dt {
  font-weight: 600;
  color: var(--or);
  flex: 1;
}
.page-suiso .sec05 .other-list .list-dd {
  display: flex;
  justify-content: flex-end;
  align-items: baseline;
}
@media (min-width: 768px) {
  .page-suiso .sec05 .other-list .list-dd {
    width: 175px;
  }
}
.page-suiso .sec05 .other-list .list-dd .small {
  margin-left: 8px;
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}

/* 3列のグリッドを構造化する */
.suiso-table {
  display: block;
}
.suiso-table .suiso-hours__cell {
  padding: 0.75em 10px;
  text-align: center;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0.9;
  font-size: clamp(1.125rem, 0.882rem + 1.05vw, 1.875rem);
  font-weight: 500;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .suiso-table .suiso-hours__cell {
    line-height: 2;
    padding: 20px;
  }
}
.suiso-table .suiso__row {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr; /* 左から「コース名・都度・月額」 */
  align-items: center;
  text-align: center;
}
.suiso-table .suiso__row--header {
  background-color: var(--or);
  color: white;
}
.suiso-table .suiso__row--header .suiso-hours__cell {
  padding: 0.75em 10px;
}
@media (min-width: 768px) {
  .suiso-table .suiso__row--header .suiso-hours__cell {
    padding: 10px 20px;
  }
}
.suiso-table .suiso__row--half {
  border-bottom: dotted 4px var(--gr);
}
.suiso-table .suiso__row .price01 {
  background-color: #ffe5aa;
}
.suiso-table .suiso__head {
  flex-direction: column;
  font-weight: bold;
}
@media (min-width: 768px) {
  .suiso-table .suiso__head {
    flex-direction: row;
  }
}
.suiso-table .suiso__head > p:last-child {
  font-size: clamp(0.938rem, 0.735rem + 0.88vw, 1.563rem);
  margin-top: -10px;
}
@media (min-width: 768px) {
  .suiso-table .suiso__head > p:last-child {
    margin-top: 0;
  }
}

.step-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 992px) {
  .step-wrap {
    flex-direction: row;
    align-items: stretch;
  }
}
.step-wrap .try-icon {
  width: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 20px;
}
@media (min-width: 992px) {
  .step-wrap .try-icon {
    padding-inline: 15px;
    padding-block: 0;
  }
}
.step-wrap .try-icon > img {
  transform: rotate(90deg);
  max-width: 110px;
}
@media (min-width: 992px) {
  .step-wrap .try-icon > img {
    transform: none;
  }
}
.step-wrap .box {
  flex: 1;
  width: 90%;
  margin-inline: auto;
  border-radius: 20px;
  overflow: clip;
  padding: 35px 20px;
}
@media (min-width: 576px) {
  .step-wrap .box {
    width: 65%;
    border-radius: 30px;
  }
}
@media (min-width: 992px) {
  .step-wrap .box {
    width: auto;
    padding: 40px 2vw;
  }
}
.step-wrap .box-head {
  text-align: center;
}
.step-wrap .box-head > p {
  font-weight: bold;
  font-size: clamp(1.25rem, 0.836rem + 0.44vw, 1.25rem);
}
.step-wrap .box-head > h3 {
  font-weight: 500;
  font-size: clamp(1.25rem, 0.794rem + 0.35vw, 1.125rem);
  white-space: nowrap;
}
.step-wrap .box > img {
  display: block;
  width: 150px;
  margin: 10px auto;
}
.step-wrap .box > p {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 2;
}

.page-phiten .sec01 {
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-phiten .sec01 {
    padding: 100px 0 120px;
  }
}
@media (min-width: 768px) {
  .page-phiten .sec01 {
    padding: 100px 0 150px;
  }
}
@media (min-width: 992px) {
  .page-phiten .sec01 {
    padding: 100px 0 200px;
  }
}
.page-phiten .sec02 {
  background-color: var(--or);
  color: white;
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-phiten .sec02 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-phiten .sec02 {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .page-phiten .sec02 {
    padding: 200px 0;
  }
}
.page-phiten .sec02 .section-title h2 {
  color: white;
}
.page-phiten .sec02 .section-title > p {
  line-height: 0.8;
  top: clamp(-76px, -8vw, -36px);
}
@media (min-width: 768px) {
  .page-phiten .sec02 .section-title > p {
    line-height: 1;
  }
}
.page-phiten .sec02 .box-wrap {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
}
@media (min-width: 992px) {
  .page-phiten .sec02 .box-wrap {
    flex-direction: row;
    gap: 80px;
  }
}
.page-phiten .sec02 .box-wrap .box-img {
  width: 75%;
  margin-inline: auto;
  overflow: clip;
  border-radius: 20px;
}
@media (min-width: 576px) {
  .page-phiten .sec02 .box-wrap .box-img {
    border-radius: 30px;
  }
}
@media (min-width: 992px) {
  .page-phiten .sec02 .box-wrap .box-img {
    width: 45%;
  }
}
.page-phiten .sec02 .box-wrap .box-img > img {
  height: 100%;
}
.page-phiten .sec02 .box-wrap .box-text {
  flex: 1;
}
.page-phiten .sec03 {
  padding: 100px 0;
}
@media (min-width: 576px) {
  .page-phiten .sec03 {
    padding: 120px 0;
  }
}
@media (min-width: 768px) {
  .page-phiten .sec03 {
    padding: 150px 0;
  }
}
@media (min-width: 992px) {
  .page-phiten .sec03 {
    padding: 200px 0;
  }
}
.page-phiten .sec03 .section-title > p {
  color: rgba(254, 238, 202, 0.5);
  line-height: 0.8;
  top: clamp(-76px, -8vw, -36px);
}
@media (min-width: 768px) {
  .page-phiten .sec03 .section-title > p {
    line-height: 1;
  }
}
.page-phiten .sec03 .box-wrap {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.page-phiten .sec03 .box {
  position: relative;
}
.page-phiten .sec03 .box-text {
  width: 100%;
  max-width: 92%;
  background-color: #feeeca;
  padding-block: 45px;
}
@media (min-width: 992px) {
  .page-phiten .sec03 .box-text {
    max-width: 85%;
    padding-block: 80px;
  }
}
@media (min-width: 1200px) {
  .page-phiten .sec03 .box-text {
    max-width: 78%;
  }
}
.page-phiten .sec03 .box:nth-child(odd) .box-text {
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
  padding-inline: 20px;
}
@media (min-width: 576px) {
  .page-phiten .sec03 .box:nth-child(odd) .box-text {
    border-radius: 30px;
    padding-inline: 30px;
  }
}
@media (min-width: 768px) {
  .page-phiten .sec03 .box:nth-child(odd) .box-text {
    padding-inline: 60px;
  }
}
@media (min-width: 992px) {
  .page-phiten .sec03 .box:nth-child(odd) .box-text {
    padding-inline: 30vw 60px;
    border-radius: 30px 0 0 30px;
    margin-right: 0;
  }
}
@media (min-width: 1200px) {
  .page-phiten .sec03 .box:nth-child(odd) .box-text {
    padding-inline: 31vw 130px;
  }
}
@media (min-width: 992px) {
  .page-phiten .sec03 .box:nth-child(odd) .box-img {
    left: 3vw;
  }
}
@media (min-width: 1200px) {
  .page-phiten .sec03 .box:nth-child(odd) .box-img {
    left: 9vw;
  }
}
.page-phiten .sec03 .box:nth-child(even) .box-text {
  margin-right: auto;
  margin-left: auto;
  border-radius: 20px;
  padding-inline: 20px;
}
@media (min-width: 576px) {
  .page-phiten .sec03 .box:nth-child(even) .box-text {
    border-radius: 30px;
    padding-inline: 30px;
  }
}
@media (min-width: 768px) {
  .page-phiten .sec03 .box:nth-child(even) .box-text {
    padding-inline: 60px;
  }
}
@media (min-width: 992px) {
  .page-phiten .sec03 .box:nth-child(even) .box-text {
    padding-inline: 60px 30vw;
    border-radius: 0 30px 30px 0;
    margin-left: 0;
  }
}
@media (min-width: 1200px) {
  .page-phiten .sec03 .box:nth-child(even) .box-text {
    padding-inline: 130px 31vw;
  }
}
@media (min-width: 992px) {
  .page-phiten .sec03 .box:nth-child(even) .box-img {
    right: 3vw;
  }
}
@media (min-width: 1200px) {
  .page-phiten .sec03 .box:nth-child(even) .box-img {
    right: 9vw;
  }
}
.page-phiten .sec03 .box-img {
  width: clamp(11.25rem, 3.434rem + 33.8vw, 35.375rem);
  aspect-ratio: 1;
  display: block;
  margin-inline: auto;
}
@media (min-width: 992px) {
  .page-phiten .sec03 .box-img {
    position: absolute;
    z-index: 2;
    top: -42px;
  }
}

.page-news .section-title > h2,
.page-newsdetail .section-title > h2 {
  color: white;
}
.page-news .sec,
.page-newsdetail .sec {
  padding: 100px 0 0;
}
@media (min-width: 576px) {
  .page-news .sec,
.page-newsdetail .sec {
    padding: 120px 0 0;
  }
}
@media (min-width: 768px) {
  .page-news .sec,
.page-newsdetail .sec {
    padding: 150px 0 0;
  }
}
@media (min-width: 992px) {
  .page-news .sec,
.page-newsdetail .sec {
    padding: 200px 0 0;
  }
}
.page-news .webgene-item,
.page-newsdetail .webgene-item {
  margin-bottom: 28px;
}
.page-news .webgene-item:last-of-type,
.page-newsdetail .webgene-item:last-of-type {
  margin-bottom: 0;
}
.page-news .webgene-item .news-list__link,
.page-newsdetail .webgene-item .news-list__link {
  display: flex;
  align-items: center;
  flex-direction: column;
  background-color: white;
  padding: 10px 20px;
  border-radius: 10px;
  overflow: clip;
}
@media (min-width: 576px) {
  .page-news .webgene-item .news-list__link,
.page-newsdetail .webgene-item .news-list__link {
    padding: 20px 30px;
  }
}
@media (min-width: 992px) {
  .page-news .webgene-item .news-list__link,
.page-newsdetail .webgene-item .news-list__link {
    padding: 20px 50px;
    flex-direction: row;
  }
}
.page-news .webgene-item .news-list__link:hover .news-list__title,
.page-newsdetail .webgene-item .news-list__link:hover .news-list__title {
  color: var(--or);
  transition: all 0.3s ease;
}
.page-news .webgene-item .news-list__date,
.page-newsdetail .webgene-item .news-list__date {
  color: var(--gr);
  font-size: clamp(0.875rem, 0.754rem + 0.53vw, 1.25rem);
}
@media (min-width: 992px) {
  .page-news .webgene-item .news-list__date,
.page-newsdetail .webgene-item .news-list__date {
    width: 170px;
  }
}
.page-news .webgene-item .news-list__title,
.page-newsdetail .webgene-item .news-list__title {
  font-size: clamp(1.063rem, 0.921rem + 0.61vw, 1.5rem);
  transition: all 0.3s ease;
}

.page-news {
  background-color: var(--or);
}

.page-newsdetail {
  background-color: var(--base);
}

.webgene-pagination {
  margin-top: 70px;
}
.webgene-pagination ul {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  max-width: 680px;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .webgene-pagination ul {
    flex-direction: row;
  }
}
.webgene-pagination ul .prev > a,
.webgene-pagination ul .next > a,
.webgene-pagination ul .back > a {
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media (min-width: 768px) {
  .webgene-pagination ul .next {
    margin-left: 0;
    margin-left: auto;
  }
}
.webgene-pagination ul .back {
  width: 100%;
}

.news-detail__img {
  border-radius: 20px;
  overflow: clip;
}
@media (min-width: 768px) {
  .news-detail__img {
    border-radius: 30px;
  }
}

.prev a,
.next a,
.back a {
  position: relative;
  z-index: 1;
  text-align: center;
  background-color: var(--gr);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  padding: 17px 64px;
  color: white !important;
  font-weight: 500;
  font-size: 0.875rem;
  min-width: 200px;
}
@media (min-width: 576px) {
  .prev a,
.next a,
.back a {
    min-width: 300px;
  }
}
.prev a:hover,
.next a:hover,
.back a:hover {
  background-color: rgb(140, 197, 131);
}
.prev a::after, .prev a::before,
.next a::after,
.next a::before,
.back a::after,
.back a::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 50%;
  min-width: 37px;
  min-height: 37px;
}

.prev a::before {
  left: 17px;
  background: url(../images/arrow.svg) center/contain no-repeat;
  transform: translateY(-50%) scale(-1, 1);
}
.prev a::after {
  display: none;
}

.next a::before {
  display: none;
}
.next a::after {
  right: 17px;
  background: url(../images/arrow.svg) center/contain no-repeat;
  transform: translateY(-50%);
}

.back a::before, .back a::after {
  display: none;
}