@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Shippori Mincho", serif;
}

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

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

@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
html {
  font-size: 16px;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.3333333333vw;
  }
}
@media (min-width: 1200px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

/* Make images easier to work with */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.05" /><feFuncG type="linear" slope="1.05" /><feFuncB type="linear" slope="1.05" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

.button-green {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 62.4375rem;
  background-color: rgba(44, 171, 174, .07);
  color: #2cabae;
  border: 1.4px solid #2cabae;
  padding: 10px 40px;
  padding: 0.625rem 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  position: relative;
  height: 2.8rem;
}
@media screen and (min-width: 768px) {
  .button-green {
    font-size: 1.125rem;
    width: 15.8rem;
	height: 3rem;
  }
}
.button-green:hover .button-green__arrow {
  -webkit-transform: translateX(0.375rem);
          transform: translateX(0.375rem);
}
.button-green:hover .button-green__arrow::before {
  -webkit-transform: translateX(0.125rem) rotate(45deg);
          transform: translateX(0.125rem) rotate(45deg);
}

.button-green__arrow {
  display: inline-block;
  vertical-align: middle;
  color: #2cabae;
  line-height: 1;
  position: relative;
  width: 16px;
  width: 1rem;
  height: 1px;
  background: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.button-green__arrow::before {
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

/* ===== Button ===== */
.button {
  border: 1px solid transparent;
  border: 0.0625rem solid transparent;
  border-radius: 62.4375rem;
  background-color: #fff;
  padding: 19px 54px;
  padding: 1.1875rem 3.375rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1;
  font-weight: 600;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, -webkit-box-shadow 0.2s ease;
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  gap: 1.125rem;
}
@media screen and (min-width: 768px) {
  .button {
    font-size: 1.25rem;
    padding: 1.125rem 2.375rem;
  }
}

.button::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  padding: 0.125rem; /* 枠の太さ */
  background: linear-gradient(133deg, #e5a3b5 0%, #e5a3b5 43%, rgba(33, 52, 139, .47) 64%, rgba(33, 52, 139, .47) 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 1;
}

/* 上層：ホバー時グラデ（普段は透明） */
.button::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  padding: 0.125rem;
  background: linear-gradient(133deg, #4c6eb1 0%, #4c6eb1 27%, #e5a3b5 54%, #e5a3b5 100%);
  -webkit-mask: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff)) content-box, -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  z-index: 2;
  opacity: 0;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease; /* ← これをトランジション */
}

.button:hover::after,
.button:focus-visible::after {
  opacity: 1;
}

.button:hover .button__arrow {
  color: #f4718b;
}

.button__arrow {
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
  font-size: 16px;
  font-size: 1rem;
}

body.active {
  height: 100%;
  overflow: hidden;
}

/* エントリーバナー */
.entry-banner {
  position: fixed;
  bottom: 20px;
  bottom: 1.25rem;
  right: 20px;
  right: 1.25rem;
  z-index: 10;
  opacity: 0;
  -webkit-transform: translateY(1.25rem);
          transform: translateY(1.25rem);
  -webkit-transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, -webkit-transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transition: opacity 0.5s ease, transform 0.5s ease, -webkit-transform 0.5s ease;
}
@media screen and (min-width: 768px) {
  .entry-banner {
    bottom: calc(50vh - 18.75rem);
    right: 2.8125rem;
  }
}
.entry-banner.is-visible {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.entry-banner__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100px;
  width: 6.25rem;
  height: 100px;
  height: 6.25rem;
  background-color: #eb5673;
  border-radius: 50%;
  -webkit-transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  transition: transform 0.3s ease, box-shadow 0.3s ease, -webkit-transform 0.3s ease, -webkit-box-shadow 0.3s ease;
  border: 2px solid #fff;
}
@media screen and (min-width: 768px) {
  .entry-banner__link {
    width: 9.375rem;
    height: 9.375rem;
    border: 3px solid #fff;
  }
}
.entry-banner__link:hover {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, .2);
          box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, .2);
}
.entry-banner__link:active {
  -webkit-transform: scale(0.95);
          transform: scale(0.95);
}

.entry-banner__icon {
  width: 17px;
  width: 1.0625rem;
}
@media screen and (min-width: 768px) {
  .entry-banner__icon {
    width: 1.6875rem;
  }
}

.entry-banner__text {
  color: #fff;
  text-align: center;
}

.entry-banner__en {
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-family: "Montserrat", sans-serif;
  display: block;
  margin-top: 5px;
  margin-top: 0.3125rem;
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
}
@media screen and (min-width: 768px) {
  .entry-banner__en {
    font-size: 1.375rem;
    margin-top: 0.5625rem;
    margin-bottom: 0.1875rem;
  }
}

.entry-banner__ja {
  font-size: 8px;
  font-size: 0.5rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  display: block;
}
@media screen and (min-width: 768px) {
  .entry-banner__ja {
    font-size: 0.875rem;
    margin-bottom: 0.3125rem;
  }
}

.footer {
  background: linear-gradient(108deg, rgba(255, 193, 215, .3) 32%, rgba(143, 184, 241, .4) 100%);
  border-top-left-radius: 78px;
  border-top-left-radius: 4.875rem;
  border-top-right-radius: 78px;
  border-top-right-radius: 4.875rem;
}
@media screen and (min-width: 768px) {
  .footer {
    border-top-left-radius: 11.875rem;
    border-top-right-radius: 11.875rem;
  }
}

/* inner（マルチクラス） */
.footer__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 28px;
  padding-bottom: 1.75rem;
}
@media screen and (min-width: 768px) {
  .footer__inner {
    padding-top: 5.3125rem;
  }
}

.footer__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .footer__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 16%;
  }
}
@media screen and (min-width: 1440px) {
  .footer__content {
    gap: 22%;
  }
}

/* brand */
.footer__brand {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  max-width: 420px;
  max-width: 26.25rem;
  margin-top: 18px;
  margin-top: 1.125rem;
}

.footer__logo {
  width: 85%;
  margin-inline: auto;
  display: block;
}
@media screen and (min-width: 768px) {
  .footer__logo {
    width: 100%;
    margin-inline: 0;
  }
}

.footer__logo img {
  display: block;
  width: 90%;
  height: auto;
}

.footer__address {
  font-style: normal;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-top: 34px;
  margin-top: 2.125rem;
  letter-spacing: 0.02em;
  font-weight: 600;
}

.footer__site {
  margin-top: 41px;
  margin-top: 2.5625rem;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
}

.footer__siteLink {
  padding-bottom: 2px;
  padding-bottom: 0.125rem;
  position: relative;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

.footer__siteLink::after {
  content: "";
  position: absolute;
  right: -15px;
  right: -0.9375rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-image: url(../images/common/icon_out-link.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
}
@media screen and (min-width: 768px) {
  .footer__siteLink::after {
    right: -1.5625rem;
  }
}

.footer__siteLink:hover,
.footer__siteLink:focus {
  color: #F4718B;
}

/* nav */
.footer__nav {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  gap: 0.625rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.5rem;
  }
}

.footer__list {
  list-style: none;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__list {
    margin-top: 0;
  }
}

.footer__list:not(:first-child) {
  margin-top: 0;
}

.footer__item:not(:first-child) {
  margin-top: 10px;
  margin-top: 0.625rem;
}

.footer__item.pointer {
  pointer-events: none;
}

.footer__item.footer__item--child {
  margin-top: 6px;
  margin-top: 0.375rem;
  padding-left: 16px;
  padding-left: 1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .footer__item.footer__item--child {
    padding-left: 2.375rem;
  }
}

.footer__item--child .footer__link {
  font-size: 13px;
  font-size: 0.8125rem;
}
@media screen and (min-width: 768px) {
  .footer__item--child .footer__link {
    font-size: 0.8125rem;
  }
}

.footer__link {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.9;
  font-weight: 600;
}
.footer__link:hover,
.footer__link:focus {
  color: #d95773;
}

/* divider & copyright */
.footer__divider {
  margin: 24px auto 0;
  margin: 1.5rem auto 0;
  border: 0;
  border-top: 1px solid #767676;
}
@media screen and (min-width: 768px) {
  .footer__divider {
    margin: 4.4375rem auto 0;
  }
}

.footer__copy {
  text-align: center;
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (min-width: 768px) {
  .footer__copy {
    margin-top: 1.5rem;
  }
}

.footer__copyright {
  font-size: 12px;
  font-size: 0.75rem;
}

.cls-1 {
  opacity: 0.3;
}

.st0 {
  isolation: isolate;
}

.st1 {
  opacity: 0.3;
}

.st2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 150px;
}

.header {
  height: 80px;
  height: 5rem;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  -webkit-transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
  transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
}
.header.is-scrolled {
  background-color: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
}
@media screen and (min-width: 768px) {
  .header {
    height: 6.25rem;
  }
}

.header__inner {
  padding-left: 10px;
  padding-left: 0.625rem;
  padding-right: 10px;
  padding-right: 0.625rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 2.5rem;
  }
}

.header__logo {
  max-width: 214px;
  max-width: 13.375rem;
  width: 100%;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__logo {
    max-width: 18.25rem;
  }
}

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

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

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

.header__nav-item {
  height: inherit;
  position: relative;
}

.header__nav-item--dropdown {
  position: relative;
}

.header__submenu {
  position: absolute;
  top: 73%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #fff;
  border-radius: 0.5rem;
  border: 2px solid #f4718b;
  border: 0.125rem solid #f4718b;
  min-width: 180px;
  min-width: 11.25rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity 0.3s ease, visibility 0.3s ease;
  transition: opacity 0.3s ease, visibility 0.3s ease;
  z-index: 1000;
}

.header__nav-item.header__nav-item--dropdown > a::before {
  content: none;
}

.header__nav-item--dropdown:hover .header__submenu {
  opacity: 1;
  visibility: visible;
}

.header__submenu-item {
  list-style: none;
  position: relative;
}

.header__submenu-item span {
  color: #eb5673;
}

.header__submenu-item a {
  display: block;
  padding: 6px 10px;
  padding: 0.375rem 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: background-color 0.2s ease, color 0.2s ease;
  transition: background-color 0.2s ease, color 0.2s ease;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: relative;
}

.header__submenu-item a:hover {
  color: #f4718b;
}

.header__submenu-item a::before {
  content: "";
  position: absolute;
  bottom: 2px;
  bottom: 0.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0, 1);
          transform: translateX(-50%) scale(0, 1);
  width: 85%;
  height: 1px;
  background-color: #eb5673;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
}

@media (any-hover: hover) {
  .header__submenu-item a:hover::before {
    -webkit-transform: translateX(-50%) scale(1, 1);
            transform: translateX(-50%) scale(1, 1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.header__nav-item.header__nav-item--contact {
  margin-left: 15px;
  margin-left: 0.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__nav-item > a {
  padding: 0 30px;
  padding: 0 1.875rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .header__nav-item > a {
    padding: 0 1rem;
  }
}
@media screen and (min-width: 1440px) {
  .header__nav-item > a {
    padding: 0 1.875rem;
  }
}

.header__nav-item > a:hover {
  color: #f4718b;
}

.plus-mark {
  margin-left: 10px;
  margin-left: 0.625rem;
  font-size: 19px;
  font-size: 1.1875rem;
  color: #f4718b;
  font-weight: 400;
}

.header__drawer-item--dropdown .plus-mark {
  position: absolute;
  right: calc(50% - 3.375rem);
  margin-left: 0;
  line-height: 15px;
}

.header__drawer-item--dropdown > a {
  position: relative;
  padding-right: 30px;
  padding-right: 1.875rem;
}
.header__drawer-item--dropdown > a::after {
  content: "";
  position: absolute;
  right: calc(50% - 3.375rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  width: 0.75rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #f4718b;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.header__drawer-item--dropdown > a::before {
  content: "";
  position: absolute;
  right: calc(50% - 3.375rem);
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 12px;
  width: 0.75rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #f4718b;
  -webkit-transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: opacity 0.3s ease, -webkit-transform 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transition: transform 0.3s ease, opacity 0.3s ease, -webkit-transform 0.3s ease;
}
.header__drawer-item--dropdown > a::before {
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
}
.header__drawer-item--dropdown.is-open > a::before {
  -webkit-transform: translateY(-50%) rotate(0deg);
          transform: translateY(-50%) rotate(0deg);
  opacity: 0;
}

.header__nav-item > a::before {
  content: "";
  position: absolute;
  bottom: 29px;
  bottom: 1.8125rem;
  left: 50%;
  -webkit-transform: translateX(-50%) scale(0, 1);
          transform: translateX(-50%) scale(0, 1);
  width: 80%;
  height: 1px;
  background-color: #f4718b;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
}

@media (any-hover: hover) {
  .header__nav-item > a:hover::before {
    -webkit-transform: translateX(-50%) scale(1, 1);
            transform: translateX(-50%) scale(1, 1);
    -webkit-transform-origin: left;
            transform-origin: left;
  }
}
.header__nav-item.header__nav-item--contact a {
  padding: 13px 40px;
  padding: 0.8125rem 2.5rem;
  position: relative;
  height: auto;
  height: initial;
  color: #f4718b;
  border-radius: 25px;
  border: 2px solid #f4718b;
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  text-align: center;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.header__nav-item.header__nav-item--contact a:hover {
  background-color: #f4718b;
  color: #fff;
}

.header__nav-item.header__nav-item--contact a::before {
  content: none;
}

.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 40px;
  width: 2.5rem;
  height: 36px;
  height: 2.25rem;
  border-radius: 6px;
  background-color: #eb5673;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 15px;
  width: 0.9375rem;
  height: 1px;
  background-color: #fff;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -4px;
  top: -0.25rem;
}

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

.header__hamburger span:nth-of-type(3) {
  top: 4px;
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 0;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
  background-color: #000;
}

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

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

.header__drawer {
  padding: 100px 0;
  padding: 6.25rem 0;
  display: none;
  position: absolute;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(252, 240, 242, .95);
  overflow-y: scroll;
  scrollbar-width: none;
}

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

.header__drawer-item a {
  padding: 15px 0;
  padding: 0.9375rem 0;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
  text-align: center;
  text-transform: uppercase;
}

.header__drawer-item--dropdown {
  position: relative;
}

.header__drawer-submenu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  -webkit-transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s, -webkit-transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.1s;
  width: 240px;
  width: 15rem;
  margin-inline: auto;
}

.header__drawer-item--dropdown.is-open .header__drawer-submenu {
  max-height: 200px;
  max-height: 12.5rem;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.header__drawer-item--dropdown .header__drawer-submenu > .header__drawer-submenu-item > a {
  text-align: left;
  padding-left: 74px;
  padding-left: 4.625rem;
}

.header__drawer-submenu-item {
  list-style: none;
}

.header__drawer-submenu-item span {
  color: #eb5673;
}

.header__drawer-submenu-item a {
  padding: 10px 0 10px 20px;
  padding: 0.625rem 0 0.625rem 1.25rem;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  color: #666;
  text-decoration: none;
  -webkit-transition: color 0.2s ease;
  transition: color 0.2s ease;
}

.header__drawer-item.header__drawer-item--contact {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.header__drawer-item.header__drawer-item--contact a {
  width: 280px;
  width: 17.5rem;
  background-color: #fff;
  color: #f4718b;
  border-radius: 25px;
  border: 2px solid #f4718b;
  font-size: 18px;
  font-size: 1.125rem;
  display: block;
  text-align: center;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .header__drawer-item.header__drawer-item--contact a {
    width: auto;
  }
}

.inner {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  max-width: 600px;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1250px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

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

@media screen and (min-width: 768px) {
  .layout-fv {
    padding-top: 6.375rem;
  }
}

.layout-footer {
  margin-top: 60px;
  margin-top: 3.75rem;
}
@media screen and (min-width: 768px) {
  .layout-footer {
    margin-top: 7.5rem;
  }
}

.layout-sub-page {
  padding-top: 180px;
  padding-top: 11.25rem;
}
@media screen and (min-width: 768px) {
  .layout-sub-page {
    padding-top: 14.5rem;
  }
}

.page-banner__inner {
  padding-top: 50px;
  padding-top: 3.125rem;
}
@media screen and (min-width: 768px) {
  .page-banner__inner {
    padding-top: 4.625rem;
  }
}

.page-banner__sec-title {
  text-align: center;
}

.page-banner__content {
  text-align: center;
  margin-top: 48px;
  margin-top: 3rem;
  padding: 30px 16px 40px;
  padding: 1.875rem 1rem 2.5rem;
  margin-inline: auto;
  position: relative;
  background: linear-gradient(11deg, rgb(228, 158, 172) 0%, rgb(228, 158, 172) 89%, rgba(33, 52, 139, .4) 89%, rgba(33, 52, 139, .6) 100%);
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .page-banner__content {
    margin-top: 3.375rem;
    width: 31.25rem;
  }
}

.page-banner__content::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  height: 97%;
  width: 98%;
  border-radius: 0.4375rem;
}

.page-banner__message {
  text-align: center;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  margin-top: 20px;
  margin-top: 1.25rem;
}
@media screen and (min-width: 768px) {
  .page-banner__message {
    margin-top: 2.375rem;
    font-size: 1rem;
  }
}

.page-banner__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  gap: 0.75rem;
  position: relative;
}

.page-banner__figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  width: 2.1875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.page-banner__button {
  margin-top: 16px;
  margin-top: 1rem;
}

@media screen and (min-width: 768px) {
  .page-banner__button-link {
    font-size: 1.1875rem;
    padding-block: 0.875rem;
  }
}

.sec-title__en {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  gap: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.08em;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .sec-title__en {
    font-size: 1.125rem;
  }
}

.sec-title__dot {
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #2cabae;
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .sec-title__dot {
    width: 0.75rem;
    height: 0.75rem;
  }
}

.sec-title__ja {
  font-size: clamp(28px, 27.029px + 0.2588996764vw, 32px);
  font-size: clamp(1.75rem, 1.6893203883rem + 0.2588996764vw, 2rem);
  line-height: 1.4;
  margin-top: 8px;
  margin-top: 0.5rem;
  font-weight: 400;
}

.second-title {
  font-size: clamp(20px, 19.029px + 0.2588996764vw, 24px);
  font-size: clamp(1.25rem, 1.1893203883rem + 0.2588996764vw, 1.5rem);
  font-weight: 400;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.second-title__line {
  width: 4px;
  width: 0.25rem;
  height: 24px;
  height: 1.5rem;
  background-color: #F4718B;
  display: inline-block;
  margin-right: 12px;
  margin-right: 0.75rem;
}

.sub-page {
  background: linear-gradient(to bottom, rgba(252, 240, 242, .6) 0, rgba(252, 240, 242, .6) 150px, white 200px, white 100%);
}
@media screen and (min-width: 1440px) {
  .sub-page {
    background: linear-gradient(to bottom, rgba(252, 240, 242, .6) 0, rgba(252, 240, 242, .6) 250px, white 300px, white 100%);
  }
}

.test {
  font-size: 100px;
  font-size: 6.25rem;
  background-color: #000;
  color: #fff;
}

.sub-page.business-page {
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (min-width: 768px) {
  .sub-page.business-page {
    padding-bottom: 12.125rem;
  }
}

.business__item {
  margin-top: 64px;
  margin-top: 4rem;
  padding-top: 32px;
  padding-top: 2rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .business__item {
    margin-top: 6.9375rem;
    padding-top: 0;
  }
}

.business__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(59%, rgba(255, 193, 215, .15)), to(rgba(143, 184, 241, .4)));
  background: linear-gradient(180deg, rgba(255, 193, 215, .15) 59%, rgba(143, 184, 241, .4) 100%);
  height: 113%;
  width: 100%;
  content: none;
}
@media screen and (min-width: 768px) {
  .business__item::before {
    content: "";
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    height: 92%;
    width: 70%;
    left: 0;
    top: 50%;
    background: linear-gradient(108deg, rgba(255, 193, 215, .15) 59%, rgba(143, 184, 241, .4) 100%);
  }
}
@media screen and (min-width: 1440px) {
  .business__item::before {
    height: 80%;
  }
}
@media screen and (min-width: 1920px) {
  .business__item::before {
    height: 76%;
  }
}
@media screen and (min-width: 1921px) {
  .business__item::before {
    height: 94%;
  }
}

.business__item:nth-child(2n)::before {
  right: 0;
  left: auto;
}
@media screen and (min-width: 768px) {
  .business__item:nth-child(2n)::before {
    height: 80%;
    background: linear-gradient(108deg, rgba(255, 193, 215, .15) 59%, rgba(143, 184, 241, .3) 100%);
  }
}

@media screen and (min-width: 768px) {
  .business__item-inner.inner {
    max-width: 1464px;
  }
}

.business__item-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  row-gap: 32px;
  row-gap: 2rem;
  padding-block: 56px;
  padding-block: 3.5rem;
  background: linear-gradient(108deg, rgba(255, 193, 215, .15) 59%, rgba(143, 184, 241, .3) 100%);
}
@media screen and (min-width: 768px) {
  .business__item-inner {
    gap: 9%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding-block: 0;
    background: none;
  }
}

@media screen and (min-width: 768px) {
  .business__item:nth-child(odd) .business__item-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

@media screen and (min-width: 768px) {
  .business__image {
    width: 63%;
    margin-left: calc(50% - 50vw);
  }
}
@media screen and (min-width: 1921px) {
  .business__image {
    margin-left: 0;
    width: 40%;
  }
}
.business__image img {
  aspect-ratio: 889/559;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .business__item:nth-child(odd) .business__image {
    width: 64%;
    margin-right: calc(50% - 50vw);
  }
}
@media screen and (min-width: 1921px) {
  .business__item:nth-child(odd) .business__image {
    margin-right: auto;
    width: 40%;
  }
}

@media screen and (min-width: 768px) {
  .business__item:nth-child(odd) .business__image {
    margin-left: 0;
  }
}

.business__image img {
  width: 100%;
  aspect-ratio: 2/1.3;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

@media screen and (min-width: 768px) {
  .business__content {
    padding: 2rem;
    margin-right: calc(50% - 50vw);
    width: 47%;
  }
}

@media screen and (min-width: 768px) {
  .business__item:nth-child(odd) .business__content {
    margin-right: 0;
  }
}

.business__content-title {
  line-height: 1.4;
  font-weight: 700;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 7px;
  gap: 0.4375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .business__content-title {
    -webkit-box-pack: unset;
        -ms-flex-pack: unset;
            justify-content: unset;
  }
}

.business__content-figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 30px;
  width: 1.875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  .business__content-figure {
    width: 2.375rem;
  }
}

@media screen and (min-width: 768px) {
  .business__item-inner--reverse .business__content {
    margin-left: calc(50% - 50vw);
  }
}
.business__icon {
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.business__button {
  margin-top: 16px;
  margin-top: 1rem;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  row-gap: 16px;
  row-gap: 1rem;
}
@media screen and (min-width: 768px) {
  .business__button {
    row-gap: 2rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    text-align: left;
  }
}

.business__button.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .business__button.u-desktop {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.business__button.u-mobile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  .business__button.u-mobile {
    display: none;
  }
}

.business__button-link {
  background-color: #f0fbfb;
}
@media screen and (min-width: 768px) {
  .business__button-link {
    font-size: 1rem;
	font-weight: bold;
    padding-bottom: 0.75rem;
  }
}

@media screen and (min-width: 768px) {
  .locate .business__button-link {
    width: 20.25rem;
  }
}

.business__title {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
}

.business__message {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  font-weight: 600;
  margin-top: 24px;
  margin-top: 1.5rem;
}
@media screen and (min-width: 768px) {
  .business__message {
    margin-top: 2.125rem;
    font-size: 1rem;
  }
}

.private-message__wrap {
  margin-top: 64px;
  margin-top: 4rem;
}
@media screen and (min-width: 768px) {
  .private-message__wrap {
    margin-top: 6.5rem;
  }
}

.private-message__wrap__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .private-message__wrap__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 7%;
  }
}

.private-message__content {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .private-message__content {
    width: 46%;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    margin-top: 0;
  }
}

.private-message__text p {
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  line-height: 1.86;
  margin-top: 44px;
  margin-top: 2.75rem;
}

.private-message__images {
  position: relative;
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
@media screen and (min-width: 768px) {
  .private-message__images {
    width: 47%;
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}

@media screen and (min-width: 768px) {
  .private-message__image {
    position: absolute;
  }
}

.private-message__image.large-image {
  right: 0;
  top: 0;
  width: 86%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .private-message__image.large-image {
    margin-left: 0;
  }
}

.private-message__image.small-image {
  width: 41%;
  margin-top: -52px;
  margin-top: -3.25rem;
}
@media screen and (min-width: 768px) {
  .private-message__image.small-image {
    left: 0;
    top: 15.8125rem;
    margin-top: 0;
  }
}

.reason-message {
  margin-top: 82px;
  margin-top: 5.125rem;
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .reason-message {
    margin-top: 7.25rem;
    padding-inline: 25px;
  }
}

@media screen and (min-width: 768px) {
  .shonan-reason-message.reason-message {
    margin-top: 13.25rem;
  }
}

.reason-message__inner {
  background-color: #fffbfb;
  border: 1px solid #f4718b;
  padding: 32px 16px 32px;
  padding: 2rem 1rem 2rem;
  border-radius: 1rem;
}
@media screen and (min-width: 768px) {
  .reason-message__inner {
    padding: 3.5rem 1.25rem 3.75rem;
    width: 80%;
    max-width: 1200px;
  }
}

.reason-message__icon {
  width: 64px;
  width: 4rem;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .reason-message__icon {
    width: 5.625rem;
  }
}

.reason-message__lead {
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  text-align: center;
  position: relative;
  margin-top: 14px;
  margin-top: 0.875rem;
}

.reason-message__lead::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -10px;
  bottom: -0.625rem;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f4718b;
  height: 3px;
  height: 0.1875rem;
  width: 40px;
  width: 2.5rem;
}
@media screen and (min-width: 768px) {
  .reason-message__lead::before {
    bottom: -1.25rem;
  }
}

.reason-message__list {
  margin: auto;
  margin-top: 32px;
  margin-top: 2rem;
  padding-left: 6px;
  padding-left: 0.375rem;
}
@media screen and (min-width: 768px) {
  .reason-message__list {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-top: 2.8125rem;
    padding-left: 0;
  }
}

.reason-message__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  gap: 0.375rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.7;
  margin-top: 16px;
  margin-top: 1rem;
  position: relative;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .reason-message__item {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 1.125rem;
    gap: 0.75rem;
  }
}

.reason-message__item span {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding-top: 5px;
  padding-top: 0.3125rem;
  width: 20px;
  width: 1.25rem;
}
@media screen and (min-width: 768px) {
  .reason-message__item span {
    padding-top: 0;
  }
}

.work-message {
  padding-top: 60px;
  padding-top: 3.75rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .work-message {
    padding-top: 9.75rem;
  }
}

.work-message__inner {
  max-width: 1000px;
  max-width: 62.5rem;
  margin-left: auto;
  margin-right: auto;
}

.work-message__box {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(7%, rgba(143, 184, 241, .2)), color-stop(84%, rgba(255, 193, 215, .2)), color-stop(84%, #fff), to(#fff));
  background: linear-gradient(180deg, rgba(143, 184, 241, .2) 7%, rgba(255, 193, 215, .2) 84%, #fff 84%, #fff 100%);
  margin-top: 53px;
  margin-top: 3.3125rem;
}
@media screen and (min-width: 768px) {
  .work-message__box {
    padding: 2.5rem;
    padding-bottom: 4.125rem;
    background: -webkit-gradient(linear, left top, right top, color-stop(7%, rgba(143, 184, 241, .2)), color-stop(44%, rgba(255, 193, 215, .2)), color-stop(66%, rgba(255, 193, 215, .2)), color-stop(66%, #fff), to(#fff));
    background: linear-gradient(90deg, rgba(143, 184, 241, .2) 7%, rgba(255, 193, 215, .2) 44%, rgba(255, 193, 215, .2) 66%, #fff 66%, #fff 100%);
  }
}

@media screen and (min-width: 768px) {
  .work-message__box:nth-of-type(2) {
    background: -webkit-gradient(linear, right top, left top, color-stop(7%, rgba(143, 184, 241, .2)), color-stop(44%, rgba(255, 193, 215, .2)), color-stop(66%, rgba(255, 193, 215, .2)), color-stop(66%, #fff), to(#fff));
    background: linear-gradient(270deg, rgba(143, 184, 241, .2) 7%, rgba(255, 193, 215, .2) 44%, rgba(255, 193, 215, .2) 66%, #fff 66%, #fff 100%);
  }
}

@media screen and (min-width: 768px) {
  .work-message__box:nth-of-type(2) .work-message__box-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
}

.work-message__box-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 48px;
  padding-top: 3rem;
  row-gap: 32px;
  row-gap: 2rem;
}
@media screen and (min-width: 768px) {
  .work-message__box-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    row-gap: 0;
    padding-top: 1.375rem;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .work-message__content {
    width: 44%;
    margin-left: 3.5rem;
  }
}

.work-message__role {
  font-size: 18px;
  font-size: 1.125rem;
  position: relative;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .work-message__role {
    font-size: 1.25rem;
  }
}

.work-message__role::before {
  content: "";
  position: absolute;
  border-radius: 50%;
  left: -19px;
  left: -1.1875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-color: rgba(244, 113, 139, .4);
  height: 32px;
  height: 2rem;
  width: 32px;
  width: 2rem;
}
@media screen and (min-width: 768px) {
  .work-message__role::before {
    height: 2.5rem;
    width: 2.5rem;
  }
}

.work-message__text {
  margin-top: 46px;
  margin-top: 2.875rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.87;
}

.work-message__image-wrap {
  border-radius: 10px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .work-message__image-wrap {
    width: 44%;
  }
}
.work-message__image-wrap img {
  aspect-ratio: 528/338;
  -o-object-fit: cover;
     object-fit: cover;
}

.work-message__image {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
}

.schedule {
  background-image: url(../images/common/private/bg_private.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.schedule__inner {
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
}
@media screen and (min-width: 768px) {
  .schedule__inner {
    padding-top: 5rem;
    padding-bottom: 5.5rem;
  }
}

.schedule__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .schedule__header {
    margin-top: 3.4375rem;
    gap: 2rem;
  }
}

.schedule__header-icon {
  width: 80px;
  width: 5rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .schedule__header-icon {
    width: 7.5rem;
  }
}

.schedule__header-message {
  border-radius: 0.375rem;
  position: relative;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.8;
  background-color: #fff;
  border: 2px solid #fcf0f2;
  border-radius: 0.75rem;
  padding: 20px 24px;
  padding: 1.25rem 1.5rem;
  -webkit-box-shadow: 0.25rem 0.25rem 0.125rem rgba(244, 113, 139, .3);
          box-shadow: 0.25rem 0.25rem 0.125rem rgba(244, 113, 139, .3);
}
@media screen and (min-width: 768px) {
  .schedule__header-message {
    padding: 1.5rem 2rem;
    font-size: 1rem;
    -webkit-box-shadow: 0.375rem 0.375rem 0.1875rem rgba(244, 113, 139, .3);
            box-shadow: 0.375rem 0.375rem 0.1875rem rgba(244, 113, 139, .3);
    width: 41.875rem;
  }
}
.schedule__header-message::before {
  content: "";
  position: absolute;
  left: -12px;
  left: -0.75rem;
  top: 52%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 13px solid transparent;
  border-top: 0.8125rem solid transparent;
  border-bottom: 11px solid transparent;
  border-bottom: 0.6875rem solid transparent;
  border-right: 13px solid rgba(244, 113, 139, .3);
  border-right: 0.8125rem solid rgba(244, 113, 139, .3);
}
@media screen and (min-width: 768px) {
  .schedule__header-message::before {
    border-top: 1.125rem solid transparent;
    border-bottom: 1rem solid transparent;
    border-right: 1.125rem solid rgba(244, 113, 139, .3);
    left: -1.0625rem;
  }
}
.schedule__header-message::after {
  content: "";
  position: absolute;
  left: -12px;
  left: -0.75rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-top: 0.625rem solid transparent;
  border-bottom: 10px solid transparent;
  border-bottom: 0.625rem solid transparent;
  border-right: 13px solid #fff;
  border-right: 0.8125rem solid #fff;
}
@media screen and (min-width: 768px) {
  .schedule__header-message::after {
    border-top: 1.125rem solid transparent;
    border-bottom: 1.125rem solid transparent;
    border-right: 1.375rem solid #fff;
    left: -1.125rem;
  }
}

.schedule__table {
  border-radius: 0.75rem;
  background-color: #ffffff;
  max-width: 996px;
  margin-inline: auto;
  padding: 24px;
  padding: 1.5rem;
  -webkit-box-shadow: 0.4375rem 0.4375rem 0.25rem rgba(244, 113, 139, .3);
          box-shadow: 0.4375rem 0.4375rem 0.25rem rgba(244, 113, 139, .3);
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .schedule__table {
    margin-top: 3rem;
    width: 84%;
    padding: 3.75rem;
  }
}

.schedule__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .schedule__row {
    margin-top: 3.125rem;
  }
}

.schedule__row:nth-child(2n) .schedule__content {
  background-color: rgba(244, 113, 139, .1);
}

.schedule__row:first-child {
  margin-top: 0;
}

.schedule__row:last-child .schedule__status::before {
  content: none;
}

.schedule__time {
  width: 70px;
  width: 4.375rem;
  color: rgba(44, 171, 174, .9);
  font-size: 16px;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
}
@media screen and (min-width: 768px) {
  .schedule__time {
    font-size: 1.375rem;
    width: 5.9375rem;
  }
}

.schedule__status {
  position: relative;
  width: 68px;
  width: 4.25rem;
  height: 68px;
  height: 4.25rem;
  text-align: center;
  font-size: 12px;
  font-size: 0.75rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .schedule__status {
    width: 6.25rem;
    height: 6.25rem;
    font-size: 0.875rem;
  }
}

.schedule__status::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -140%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #f4718b;
  width: 2px;
  height: 186%;
  z-index: 0;
}
@media screen and (min-width: 768px) {
  .schedule__status::before {
    bottom: -97%;
    height: 141%;
  }
}

.schedule__status-ball {
  display: block;
  width: 20px;
  width: 1.25rem;
  height: 20px;
  height: 1.25rem;
  background-color: #f4718b;
  border-radius: 50%;
  margin-inline: auto;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
}
@media screen and (min-width: 768px) {
  .schedule__status-ball {
    width: 1.875rem;
    height: 1.875rem;
  }
}

.schedule__status-label {
  font-size: 14px;
  font-size: 0.875rem;
  color: #2cabae;
  font-family: "Montserrat", sans-serif;
  display: block;
  border: 2px solid #2cabae;
  font-size: 14px;
  font-size: 0.875rem;
  border-radius: 50%;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: inherit;
  height: inherit;
  background-color: #fff;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .schedule__status-label {
    font-size: 1.375rem;
  }
}

.schedule__status-label--pink {
  color: #ec8c9d;
}

.schedule__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  padding: 12px;
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  margin-left: 16px;
  margin-left: 1rem;
  background-color: rgba(44, 171, 174, .15);
}
@media screen and (min-width: 768px) {
  .schedule__content {
    font-size: 1.25rem;
    margin-left: 1.75rem;
    padding-left: 2.3125rem;
    padding-block: 2.4375rem;
  }
}

.huge-wrap {
  background-color: rgba(252, 240, 242, .3);
}

.fv {
  position: relative;
  height: 672px;
  height: 42rem;
  overflow-x: clip;
  height: clamp(672px, 580.396px + 24.427480916vw, 768px);
  height: clamp(42rem, 36.2748091603rem + 24.427480916vw, 48rem);
}
@media screen and (min-width: 768px) {
  .fv {
    height: 43.75rem;
  }
}

.fv__bg {
  position: absolute;
  top: 31%;
  width: 120%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  left: 50%;
  opacity: 0;
  -webkit-animation: bgFv 1.7s ease 0.4s both;
          animation: bgFv 1.7s ease 0.4s both;
}
@media screen and (min-width: 768px) {
  .fv__bg {
    top: 24%;
    z-index: 1;
    width: 124%;
  }
}

.fv__bg img {
  max-height: 847px;
  -o-object-fit: contain;
     object-fit: contain;
}

.fv__bg-line {
  position: absolute;
  top: 115px;
  top: 7.1875rem;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .fv__bg-line {
    top: 7.5rem;
  }
}

@-webkit-keyframes bgFv {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
  }
}

@keyframes bgFv {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
.fv__inner {
  max-width: 1550px;
  position: relative;
  z-index: 2;
  margin-inline: auto;
  height: inherit;
  padding-inline: 15px;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    padding-inline: 25px;
  }
}

.fv__text-wrap {
  position: absolute;
  top: 13%;
  -webkit-animation: leftRight 0.6s ease 2.1s both;
          animation: leftRight 0.6s ease 2.1s both;
}
@media screen and (min-width: 768px) {
  .fv__text-wrap {
    left: 0.625rem;
  }
}
@media screen and (min-width: 1920px) {
  .fv__text-wrap {
    left: 0;
  }
}

.fv__message {
  color: #fff;
  font-size: clamp(24px, 18.66px + 1.4239482201vw, 46px);
  font-size: clamp(1.5rem, 1.1662621359rem + 1.4239482201vw, 2.875rem);
  letter-spacing: 0.05em;
  font-weight: 400;
}
@-webkit-keyframes leftRight {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
@keyframes leftRight {
  0% {
    opacity: 0;
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  }
  100% {
    opacity: 1;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
.fv__message span {
  background: -webkit-gradient(linear, left top, left bottom, from(transparent), color-stop(0%, #f4718b));
  background: linear-gradient(transparent 0%, #f4718b 0%);
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
  display: inline-block;
  margin-top: 15px;
  margin-top: 0.9375rem;
  padding: 3px 3px 3px 17px;
  padding: 0.1875rem 0.1875rem 0.1875rem 1.0625rem;
}
@media screen and (min-width: 768px) {
  .fv__message span {
    margin-top: 1.875rem;
    padding: 0.3125rem 1.1875rem 0.3125rem 3.0625rem;
  }
}

.fv__message span:nth-child(3) {
  margin-left: 30px;
  margin-left: 1.875rem;
}
@media screen and (min-width: 768px) {
  .fv__message span:nth-child(3) {
    padding-right: 1.4375rem;
  }
}

.fv__text {
  margin-top: 42px;
  margin-top: 2.625rem;
  font-size: clamp(18px, 16.3px + 0.4530744337vw, 25px);
  font-size: clamp(1.125rem, 1.0188106796rem + 0.4530744337vw, 1.5625rem);
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .fv__text {
    margin-top: 2.0625rem;
  }
}

.fv__img-wrap {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 379px;
  width: 90%;
  -webkit-animation: fadeUp 0.7s ease 2.1s both;
          animation: fadeUp 0.7s ease 2.1s both;
  max-width: 443px;
}
@media screen and (min-width: 768px) {
  .fv__img-wrap {
    width: 56%;
    top: 8%;
    bottom: auto;
    display: block;
    right: 0.625rem;
    -webkit-transform: none;
            transform: none;
    left: auto;
    max-width: none;
  }
}
@media screen and (min-width: 1920px) {
  .fv__img-wrap {
    right: 0;
  }
}

@-webkit-keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(1.25rem);
            transform: translateX(-50%) translateY(1.25rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-50%) translateY(1.25rem);
            transform: translateX(-50%) translateY(1.25rem);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0);
            transform: translateX(-50%) translateY(0);
  }
}
@media screen and (min-width: 768px) {
  @-webkit-keyframes fadeUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(1.25rem);
              transform: translateY(1.25rem);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
  @keyframes fadeUp {
    0% {
      opacity: 0;
      -webkit-transform: translateY(1.25rem);
              transform: translateY(1.25rem);
    }
    100% {
      opacity: 1;
      -webkit-transform: translateY(0);
              transform: translateY(0);
    }
  }
}
/* ===== ABOUT ===== */
.about {
  position: relative;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  overflow-x: clip;
}
@media screen and (min-width: 768px) {
  .about {
    padding-bottom: 1rem;
    padding-top: 18.5rem;
  }
}

.about__bg {
  position: absolute;
  bottom: 33%;
  left: 0;
  right: 0;
  width: 139%;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .about__bg {
    bottom: -16%;
    width: 100%;
  }
}

@media screen and (min-width: 768px) {
  .about__bg img {
    max-height: 600px;
  }
}

.about__bg-line {
  position: absolute;
  bottom: 0;
}

.about__bg.is-scrolled {
  -webkit-animation: bg 1.7s ease 0.3s both;
          animation: bg 1.7s ease 0.3s both;
}

@-webkit-keyframes bg {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
  }
}

@keyframes bg {
  0% {
    -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
            clip-path: polygon(0 0, 0 0, 0 100%, 0 100%);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    opacity: 1;
  }
}
.about__media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .about__media {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 13%;
    min-height: 31.875rem;
  }
}

.about__img-wrap {
  position: relative;
  height: 300px;
  height: 18.75rem;
  margin-top: 64px;
  margin-top: 4rem;
  height: clamp(300px, 60.841px + 63.7755102041vw, 550px);
  height: clamp(18.75rem, 3.8026147959rem + 63.7755102041vw, 34.375rem);
}
@media screen and (min-width: 768px) {
  .about__img-wrap {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 26%;
            flex: 1 1 26%;
    height: auto;
    margin-top: 2rem;
  }
}

.about__img {
  position: absolute;
  border-radius: 0.625rem;
  overflow: hidden;
}

/* 少し重なりをつけて動きを出す（overflowは使わない） */
.about__img:nth-child(1) {
  left: 0;
  width: 55%;
}

.about__img:nth-child(2) {
  right: 0;
  top: 12%;
  width: 40%;
}
@media screen and (min-width: 768px) {
  .about__img:nth-child(2) {
    top: 18%;
  }
}

.about__img:nth-child(3) {
  bottom: -5%;
  right: 6%;
  width: 51%;
}

.about__content {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 25%;
          flex: 1 1 25%;
  opacity: 0;
  --x: 100px;
}
@media screen and (min-width: 768px) {
  .about__content {
    margin-top: 1.5rem;
  }
}

.about__content.is-active {
  -webkit-animation: slideIn 1s ease-out forwards;
          animation: slideIn 1s ease-out forwards;
}

@-webkit-keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(var(--x));
            transform: translateX(var(--x));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes slideIn {
  0% {
    opacity: 0;
    -webkit-transform: translateX(var(--x));
            transform: translateX(var(--x));
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.about__badge {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  color: #5b7fff;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 700;
  margin: 0;
}

.about__badge-dot {
  display: inline-block;
  width: 8px;
  width: 0.5rem;
  height: 8px;
  height: 0.5rem;
  background: #5b7fff;
  border-radius: 50%;
}

.about__heading {
  font-size: clamp(28px, 27.029px + 0.2588996764vw, 32px);
  font-size: clamp(1.75rem, 1.6893203883rem + 0.2588996764vw, 2rem);
  line-height: 1.4;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.about__lead {
  margin-top: 24px;
  margin-top: 1.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.9;
}
@media screen and (min-width: 768px) {
  .about__lead {
    font-size: 1.1875rem;
  }
}

.about__message {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .about__message {
    font-size: 1.125rem;
  }
}

.about__cta {
  margin-top: 19px;
  margin-top: 1.1875rem;
}

/* ===== base layout helper ===== */
/* ===== block ===== */
.recruitment {
  text-align: center;
}

.recruitment__inner {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
}
@media screen and (min-width: 768px) {
  .recruitment__inner {
    padding-top: 9.5rem;
    padding-bottom: 8.5rem;
  }
}

.recruitment__inner.is-active {
  -webkit-animation: fadeIn 1s ease-out forwards;
          animation: fadeIn 1s ease-out forwards;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
/* eyebrow */
.recruitment__eyebrow {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  color: #5aa5a0;
  font-size: 12px;
  font-size: 0.75rem;
  letter-spacing: 0.08em;
}

/* title */
.recruitment__title {
  margin-top: 12px;
  margin-top: 0.75rem;
  line-height: 1.4;
  font-weight: 700;
  font-size: clamp(18px, 16.543px + 0.3883495146vw, 24px);
  font-size: clamp(1.125rem, 1.0339805825rem + 0.3883495146vw, 1.5rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 12px;
  gap: 0.75rem;
}

/* lead message */
.recruitment__message {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.9;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  .recruitment__message {
    font-size: 1.1875rem;
    margin-top: 1.5rem;
  }
}

/* list */
.recruitment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 38px;
  gap: 2.375rem;
  margin-top: 52px;
  margin-top: 3.25rem;
}
@media screen and (min-width: 768px) {
  .recruitment__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

/* item */
.recruitment__item {
  position: relative;
  border-radius: 0.625rem;
  background: linear-gradient(30deg, #e5a3b5 0%, #e5a3b5 37%, rgba(33, 52, 139, .47) 47%, rgba(33, 52, 139, .47) 100%);
}
@media screen and (min-width: 768px) {
  .recruitment__item {
    width: 30.7%;
  }
}

.recruitment__item::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: #fff;
  height: 97%;
  width: 98%;
  border-radius: 0.625rem;
}

/* card (gradient border) */
.recruitment__card {
  display: block;
  border-radius: 1rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  padding: 29px 20px;
  padding: 1.8125rem 1.25rem;
  -webkit-transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  transition: transform 0.2s ease, box-shadow 0.2s ease, -webkit-transform 0.2s ease, -webkit-box-shadow 0.2s ease;
  position: relative;
}

/* hover */
/* figure (icon circle) */
.recruitment__figure {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 35px;
  width: 2.1875rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

/* icon */
.recruitment__icon {
  width: 28px;
  width: 1.75rem;
  height: auto;
  display: block;
}

/* body */
.recruitment__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
}

/* label */
.recruitment__label {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
  font-weight: 700;
  color: #111827;
  letter-spacing: 0.02em;
}

.recruitment__footer {
  margin-top: 13px;
  margin-top: 0.8125rem;
}

/* CTA */
.recruitment__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 62.4375rem;
  background-color: rgba(44, 171, 174, .07);
  color: #2cabae;
  border: 1.4px solid #2cabae;
  padding: 10px 40px;
  padding: 0.625rem 2.5rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: bold;
  letter-spacing: 0.03em;
  line-height: 1;
  position: relative;
  height: 2.8rem;
}
@media screen and (min-width: 768px) {
  .recruitment__cta {
    font-size: 1rem;
	font-weight: bold;
  }
}

.dli-arrow-right {
  display: inline-block;
  vertical-align: middle;
  color: #2cabae;
  line-height: 1;
  position: relative;
  width: 16px;
  width: 1rem;
  height: 1px;
  background: currentColor;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.dli-arrow-right::before {
  content: "";
  width: 6px;
  width: 0.375rem;
  height: 6px;
  height: 0.375rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transform-origin: top right;
          transform-origin: top right;
  position: absolute;
  top: 50%;
  right: -0.05em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.recruitment__cta:hover .dli-arrow-right {
  -webkit-transform: translateX(0.25rem);
          transform: translateX(0.25rem);
}

.recruitment__cta:hover .dli-arrow-right::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  right: -2px;
  right: -0.125rem;
}

/* block */
.interview {
  background-color: rgba(252, 240, 242, .3);
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 56px;
  padding-bottom: 3.5rem;
}
@media screen and (min-width: 768px) {
  .interview {
    padding-top: 6rem;
    padding-bottom: 7.5rem;
  }
}

/* inner（マルチクラス） */
.interview__sec-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .interview__sec-title {
    text-align: left;
    text-align: initial;
  }
}

/* head */
/* list */
.interview__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
  gap: 3rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .interview__cards {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-top: 3rem;
    gap: 1.875rem;
  }
}

.interview__card {
  width: 80%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .interview__card {
    width: calc(33.33333% - 1.25rem);
    margin-inline: 0;
  }
}

/* card link */
.interview__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
@media screen and (min-width: 768px) {
  .interview__link {
    height: 100%;
  }
}

/* image */
.interview__figure {
  border-radius: 0.375rem;
  overflow: hidden;
}

.interview__figure img {
  display: block;
  width: 100%;
  height: auto;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}

.interview__link:hover .interview__figure img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

.interview__arrow svg .cls-1,
.interview__arrow svg .cls-2,
.interview__arrow svg .cls-3,
.interview__arrow svg .cls-4 {
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.interview__link:hover .interview__arrow svg .cls-1,
.interview__link:hover .interview__arrow svg .cls-2 {
  stroke: #f4718b;
}
.interview__link:hover .interview__arrow svg .cls-3 {
  fill: #f4718b;
}
.interview__link:hover .interview__arrow svg .cls-4 {
  fill: #fff;
}

/* texts */
.interview__excerpt {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.4;
  margin-bottom: 11px;
  margin-bottom: 0.6875rem;
  margin-top: 16px;
  margin-top: 1rem;
  letter-spacing: 0.02em;
}
@media screen and (min-width: 768px) {
  .interview__excerpt {
    font-size: 1.125rem;
    margin-top: 1.5rem;
  }
}

.interview__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 16px;
  padding-bottom: 1rem;
  border-bottom: 3px dotted #f4718b;
}
@media screen and (min-width: 768px) {
  .interview__footer {
    margin-top: auto;
  }
}

.interview__info {
  font-weight: 700;
}

.interview__tag {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #f4718b;
}
@media screen and (min-width: 768px) {
  .interview__tag {
    font-size: 1rem;
  }
}

.interview__role {
  font-size: 15px;
  font-size: 0.9375rem;
  color: #f4718b;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .interview__role {
    font-size: 1rem;
  }
}

.interview__name {
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 700;
  margin-top: 10px;
  margin-top: 0.625rem;
}

/* arrow button (右下の丸) */
.interview__arrow {
  width: 40px;
  width: 2.5rem;
  display: inline-block;
  -webkit-transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: background-color 0.2s ease, -webkit-transform 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease;
  transition: transform 0.2s ease, background-color 0.2s ease, -webkit-transform 0.2s ease;
}
@media screen and (min-width: 768px) {
  .interview__arrow {
    width: 3.875rem;
  }
}

/* actions */
.interview__actions {
  margin-top: 60px;
  margin-top: 3.75rem;
  text-align: center;
}

/* outline gradient-like button（簡易版） */
.interview__button {
  padding: 19px 54px;
  padding: 1.1875rem 3.375rem;
  gap: 23px;
  gap: 1.4375rem;
}

.interview__button::before {
  background: linear-gradient(30deg, #e5a3b5 0%, #e5a3b5 46%, rgba(33, 52, 139, .47) 44%, rgba(33, 52, 139, .47) 100% 100%);
}

.news {
  padding-top: 56px;
  padding-top: 3.5rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .news {
    padding-top: 7.125rem;
    padding-bottom: 7.5rem;
  }
}

.news__inner {
  opacity: 0;
}

.news__inner.is-active {
  -webkit-animation: fadeIn 1s ease-out forwards;
          animation: fadeIn 1s ease-out forwards;
}

.news__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .news__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 24%;
  }
}

.news__header {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .news__header {
    width: 18%;
  }
}

.news__categories {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 10px;
  gap: 0.625rem;
}
@media screen and (min-width: 768px) {
  .news__categories {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}

.news__category-link {
  border: 1px solid #666;
  border-radius: 1.25rem;
  padding: 3px 11px;
  padding: 0.1875rem 0.6875rem;
  color: #666;
  background: #eeefef;
  font-size: 14px;
  font-size: 0.875rem;
}
.news__category-link.is-active {
  color: #f4718b;
  background-color: #fff3f5;
  border: 1px solid #f4718b;
}
@media screen and (min-width: 768px) {
  .news__category-link {
    font-size: 1rem;
  }
}

.news__category-link span {
  width: 5px;
  width: 0.3125rem;
  height: 5px;
  height: 0.3125rem;
  border-radius: 50%;
  background-color: #f4718b;
  display: block;
}
.news__category-link.is-active .news__category-link span {
  background-color: #f4718b;
}

/* list */
.news__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  gap: 0.5rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .news__list {
    width: 63%;
    margin-top: 0;
  }
}

.news__item {
  border-bottom: 1px solid #e9e9e9;
}

.news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  gap: 1.25rem;
  padding: 11px 0;
  padding: 0.6875rem 0;
}

.news__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.news__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.04em;
  display: block;
}

.news__category-label {
  padding: 1px 10px;
  padding: 0.0625rem 0.625rem;
  border: 1px solid #f4718b;
  border-radius: 20px;
  color: #f4718b;
  background-color: #fff3f5;
  font-size: 14px;
  font-size: 0.875rem;
}
@media screen and (min-width: 768px) {
  .news__category-label {
    font-size: 0.875rem;
  }
}

.news__message {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  font-size: 16px;
  font-size: 1rem;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-top: 3px;
  margin-top: 0.1875rem;
  display: block;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .news__message {
    font-size: 1.125rem;
    line-height: 1.8;
  }
}

.news__arrow {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 42px;
  width: 2.625rem;
  -webkit-transition: background-color 0.2s, -webkit-transform 0.2s;
  transition: background-color 0.2s, -webkit-transform 0.2s;
  transition: background-color 0.2s, transform 0.2s;
  transition: background-color 0.2s, transform 0.2s, -webkit-transform 0.2s;
}

.news__arrow svg .cls-1,
.news__arrow svg .cls-2,
.news__arrow svg .cls-3,
.news__arrow svg .cls-4 {
  -webkit-transition: fill 0.3s ease, stroke 0.3s ease;
  transition: fill 0.3s ease, stroke 0.3s ease;
}

.news__link:hover .news__arrow svg .cls-1,
.news__link:hover .news__arrow svg .cls-2 {
  stroke: #f4718b;
}
.news__link:hover .news__arrow svg .cls-3 {
  fill: #f4718b;
}
.news__link:hover .news__arrow svg .cls-4 {
  fill: #fff;
}

.news__actions {
  margin-top: 40px;
  margin-top: 2.5rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .news__actions {
    margin-top: 4.25rem;
  }
}

.news__cta {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 12px 28px;
  padding: 0.75rem 1.75rem;
  border-radius: 1.75rem;
  border: 2px solid transparent;
  border: 0.125rem solid transparent;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#e5a3b5), to(#7aa1d7)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #e5a3b5, #7aa1d7) border-box;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  -webkit-transition: background 0.2s, color 0.2s;
  transition: background 0.2s, color 0.2s;
}

.news__cta:hover,
.news__cta:focus {
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(#fff)) padding-box, -webkit-gradient(linear, left top, right top, from(#d95773), to(#4c6eb1)) border-box;
  background: linear-gradient(#fff, #fff) padding-box, linear-gradient(90deg, #d95773, #4c6eb1) border-box;
  color: #000;
}

.news__button {
  padding: 19px 54px;
  padding: 1.1875rem 3.375rem;
}
@media screen and (min-width: 768px) {
  .news__button {
    padding-inline: 3.375rem;
  }
}

.news__button::before {
  background: linear-gradient(30deg, #e5a3b5 0%, #e5a3b5 46%, rgba(33, 52, 139, .47) 44%, rgba(33, 52, 139, .47) 100% 100%);
}

.entry {
  position: relative;
}

.entry::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(255, 255, 255, .5);
  height: 100%;
  width: 100%;
  z-index: 1;
}

.entry__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
}
.entry__bg img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.entry__inner {
  opacity: 0;
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 72px;
  padding-bottom: 4.5rem;
  position: inherit;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .entry__inner {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}

.entry__inner.is-active {
  -webkit-animation: fadeIn 1s ease-out forwards;
          animation: fadeIn 1s ease-out forwards;
}

.entry__sec-title {
  text-align: center;
}

.entry__message {
  text-align: center;
  margin-top: 48px;
  margin-top: 3rem;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.6;
  letter-spacing: 0.03em;
}
@media screen and (min-width: 768px) {
  .entry__message {
    font-size: 1.25rem;
  }
}

.entry__actions {
  text-align: center;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .entry__actions {
    margin-top: 4.0625rem;
  }
}

.entry__button {
  background-color: #eb5673;
  color: #fff;
  padding: 15px 60px;
  padding: 0.9375rem 3.75rem;
  border-radius: 62.4375rem;
  font-size: 20px;
  font-size: 1.25rem;
  letter-spacing: 0.03em;
  line-height: 1.6;
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  line-height: 1.4;
  border: 3px solid #fff;
  -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s;
  transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}
@media screen and (min-width: 768px) {
  .entry__button {
    font-size: 1.5625rem;
    padding: 1.0625rem 3.75rem 1.125rem;
  }
}

.entry__button span {
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-family: "Shippori Mincho", serif;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .entry__button span {
    font-size: 1rem;
  }
}

.entry__button:hover {
  background-color: #fff;
  color: #f4718b;
  border: 3px solid #f4718b;
}
/*# sourceMappingURL=styles.css.map */


.wp-pagenavi{
    text-align: center;
    font-size: 14px;
    margin: 30px 0 0 0;
}

.sub-page .interview__sec-title {
    text-align: left;
}

.bebes{
	margin-top: 3rem;
}

.interview__figure{
	margin-bottom:20px;
}
.tiktik{
	border-left: 3px solid #2cabae;
    padding: 5px 0 5px 15px;
    font-size: min(4.2vw, 18px);
    margin: 0 0 20px 0;
    color: #2cabae;
}
.lewe{
	margin:0 0 40px 0;
}
.sdsa{
	overflow:hidden;
	margin:0 0 40px 0;
}
.photoq{
	float:left;
	width:40%;
}
.pwef{
	float:right;
	width:55%;
}
.qasd{
	color: #f4718b;
	font-size: 1rem;
}
@media screen and (max-width: 767px) {
.photoq{
	float:none;
	width: 80%;
    margin: 0 auto 30px auto;
}
.pwef{
	float:none;
	width:100%;
}
.sdsa {
    overflow: hidden;
    margin: 0 0 0px 0;
}
}



table.tb01{
  border-collapse: collapse;
  width: 100%;
}
.tb01 th,
.tb01 td{
  padding: 10px;
  border: solid 1px #ccc;
  text-align:left;
  box-sizing:border-box;
}
.tb01 th {
  background: #2cabae;
  color: #fff;
	width:30%
  
}
@media screen and (max-width: 640px) {
  .tb01 {
    width: 100%;
  }
  table.tb01 th,
  table.tb01 td {
    display: block;
    width: 100%;
    border-bottom:none;
  }
  .tb01 tr:last-child{
    border-bottom: solid 1px #ccc;
  }
}


	.rarara__wrap {
		max-width: 1250px;
        padding-right: 25px;
        padding-left: 25px;
		margin:3rem auto auto auto;
    }


.submit{
	background-color: #eb5673!important;
    color: #fff;
    padding: 15px 60px;
    padding: 0.9375rem 3.75rem!important;
    border-radius: 62.4375rem;
    font-size: 20px;
    font-size: 1.25rem;
    letter-spacing: 0.03em;
    line-height: 1.6;
    display: inline-block;
    font-family: "Montserrat", sans-serif;
    line-height: 1.4;
    border: 3px solid #fff!important;
    -webkit-transition: background-color 0.2s, color 0.2s, border-color 0.2s;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
	margin-top:30px;
}
.submit:hover {
    background-color: #fff!important;
    color: #f4718b;
    border: 3px solid #f4718b!important;
}
.entryry input, .entryry textarea{
	border:1px solid #ddd;
	padding:8px;
	background:#f4f9f9;
}
.fuu{
	width:100%;
}
.hey{
	width:23%!important;
}
.his{
	font-size: 12px;
    background: #f9ff00;
    color: #eb5673;
    padding: 3px 6px;
    margin-left: 10px;
}

.entryry input[type=checkbox], .entryry input[type=radio] {
    display: inherit;
	appearance: auto;
}
.entryry .joi a{
	color:#eb5673;
}
.dadate{
	margin:0 0 15px 0;
	color:#999;
	font-size: 16px;
}
.shinti{
    border-bottom: 1px solid #ddd;
    padding: 0 0 25px 0;
    font-size: min(4.2vw, 20px);
    margin: 0 0 25px 0;
    font-weight:normal;
}

.hoiq{
	margin-bottom:20px;
	border-bottom:1px solid #ddd;
	padding-bottom:20px;
}

.card__time{
	margin:0 0 10px 0;
	color: #999;
	font-size: 16px;
	display: block;
}
.card__title{
	font-size:18px;
}

.rarara__wrap .news__list{
	width:100%;
	padding:0 0 0.6875rem 0;
}
.rarara__wrap .news__item{
	padding:0 0 0.6875rem 0;
}

.wp-pagenavi span.current {
    background: #f4718b;
    color: #fff;
    border-radius: 100px;
    width: 26px;
    display: inline-block;
}
.wp-pagenavi a, .wp-pagenavi span {
	border: none!important;
	margin: 2px 5px!important;
}
.previouspostslink{
	color:#f4718b;
}
.nextpostslink{
	color:#f4718b;
}
.news__date {
color: #999999;
}

.kp{
	font-size:min(4.3vw,24px);
	margin-bottom:20px;
	font-weight:bold;
}
.kpo{
	margin-bottom:40px;
}

.mesbg{
	background-image: url(../images/common/mesbg.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.daip{
	width:30%;
	overflow:hidden;
	border-radius:10px;
  box-shadow: 6px 6px 6px 0px rgba(252, 207, 216, 1);
	margin:0 20px 20px 0;
}

.daip img{
	width:100%;
	height:auto;
}

.child2 {
  background-color:rgba(252,207,216,0.15);
  margin-right: calc(50% - 50vw);
  margin-bottom: 10px;
  margin-left: 15%;
  margin-top: -25%;
  padding:70px;
	border-radius:20px 0 0 20px;
}
.text-ax{
	width:60%;
	margin:auto 25% auto 16%;
}
@media screen and (max-width: 1366px) {
.text-ax{
	width: 75%;
    margin: auto 25% auto 20%;
}
}

@media screen and (max-width: 640px) {
.daip{
	width:100%;
	overflow:hidden;
	border-radius:10px;
  box-shadow: 6px 6px 6px 0px rgba(252, 207, 216, 1);
	margin:0 auto 20px auto;
}
.text-ax{
	width: 100%;
    margin: auto 0 auto 0;
}
.child2 {
  background-color:rgba(252,207,216,0.15);
  margin-right: 0;
  margin-bottom: 0;
  margin-left: 0;
  margin-top: 0;
  padding:30px;
	display: table;
	border-radius:20px;
}
}
.pepei{
	font-size:min(4vw,24px);
	color:#f4718b;
	margin-bottom:30px;
}
@media screen and (max-width: 820px) {
.pepei {
    font-size: 18px;
    color: #f4718b;
    margin-bottom: 20px;
}
}
.fert{
	margin-top:30px;
	text-align:right;
}



.interview__arrow {
        width: 40px;
        margin: 0 0 0 20px;
}

.interview__info {
    font-weight: 700;
    width: 100%;
}
.interview__footer {
    align-items: end;
}
@media screen and (max-width: 767px) {
.interview__card {
    width: 100%;
}
	
.footer__logo img {
  display: block;
  width: 90%;
  height: auto;
  margin: 0 auto;
}
}

.mitsu{
	max-width:800px;
	margin:auto;
}

.mitsu img {
    max-width: 50%;
    margin: auto;
}

@media screen and (max-width: 767px) {
.mitsu img {
    max-width: 80%;
    margin: auto;
}
}