@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  font-size: 16px;
}

* {
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  letter-spacing: 0;
}

.sp-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-show {
    display: block;
  }
}

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

body {
  font-family: "yu-mincho-pr6n", "kozuka-gothic-pr6n", "Noto Sans JP", "Yu Mincho", sans-serif, serif;
  background-color: #fff;
  overflow-y: scroll;
}

body.is-fixed {
  position: fixed;
  left: 0;
  width: 100%;
}

a[href^="tel:"] {
  pointer-events: auto;
}
@media screen and (min-width: 1024px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
  cursor: pointer;
}

*,
*::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 */
/* 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]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* 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]) {
  -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;
}

.footer {
  background-color: #4c2352;
}
@media screen and (max-width: 768px) {
  .footer {
    background-color: #000;
  }
}

.footer__inner {
  padding: 2vw 6.5vw 4vw 4vw;
  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;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 20px 0 0;
  }
}

.footer__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4%;
  padding-top: 1vw;
  width: 73%;
}
@media screen and (max-width: 768px) {
  .footer__left {
    width: 90%;
    margin-inline: auto;
  }
}

.footer__logo {
  max-width: 143px;
  width: 16vw;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    display: none;
  }
}

.footer__logo img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .footer__items {
    width: 100%;
  }
}

.footer__item {
  font-size: 1.7vw;
  line-height: 3vw;
}
@media screen and (max-width: 768px) {
  .footer__item {
    font-size: 3.5vw;
    line-height: 7vw;
  }
}

@media screen and (max-width: 768px) {
  .footer__item a {
    font-family: "Noto Sans JP";
  }
}

.footer__item:not(:last-child)::after {
  content: "／";
  color: #fff;
  font-size: 1.7vw;
  font-weight: 300;
  margin: 0 0.5vw;
}
@media screen and (max-width: 768px) {
  .footer__item:not(:last-child)::after {
    font-size: 4vw;
  }
}

.footer__item.border-none::after {
  content: none;
}
@media screen and (max-width: 768px) {
  .footer__item.border-none::after {
    content: "／";
  }
}

@media screen and (max-width: 768px) {
  .footer__item.border-none-sp::after {
    content: none;
  }
}

.footer__item a {
  font-family: "yu-mincho-pr6n";
}
@media screen and (max-width: 768px) {
  .footer__item a {
    font-family: "Noto Sans JP";
  }
}

.footer__link {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
}

.footer__right {
  width: 41%;
}
@media screen and (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}

.right-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 5%;
}
@media screen and (max-width: 768px) {
  .right-top {
    display: block;
  }
}

.f-menu__privacy {
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .f-menu__privacy {
    display: none;
  }
}

.f-menu__privacy button {
  color: rgb(255, 255, 255);
  font-family: "yu-mincho-pr6n";
  font-size: 1.3vw;
}
@media screen and (max-width: 768px) {
  .f-menu__privacy button {
    font-size: 3.3vw;
    padding: 6px 10px;
  }
}

.js-modal-open {
  color: rgb(255, 255, 255);
}

.modal {
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.modal__overlay {
  background: rgba(0, 0, 0, 0.8);
  height: 100vh;
  position: absolute;
  width: 100%;
}

.modal__content {
  background: #eee;
  left: 50%;
  padding: 40px;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 90%;
  height: 80%;
  position: relative;
  overflow-y: scroll;
}
@media screen and (min-width: 1024px) {
  .modal__content {
    padding: 6vw;
    max-width: 800px;
  }
}

.modal__button {
  display: block;
  background-color: #231815;
  color: rgb(255, 255, 255);
  cursor: pointer;
  font-size: 25px;
  padding: 10px;
  text-align: center;
  text-decoration: none;
  position: fixed;
  top: 0;
  right: 10px;
}

.modal__content img {
  max-width: 200px;
  width: 100%;
}

.modal__content {
  text-align: left;
}

.modal__content p {
  background-color: #eee;
  display: inline-block;
  font-family: "yu-mincho-pr6n";
  font-size: 1rem;
  font-weight: 600;
  margin-top: 1.5625rem;
  letter-spacing: 0.02em;
  line-height: 2;
}

.modal__content h4 {
  font-family: "yu-mincho-pr6n";
  font-size: 1.875rem;
  text-align: center;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .modal__content h4 {
    font-size: clamp(1.25rem, 1.0227272727rem + 1.1363636364vw, 1.875rem);
  }
}

.modal__content a {
  color: #000;
  padding: 5px 10px;
  text-align: right;
}

.fixed {
  height: 100%;
  position: fixed;
  width: 100%;
}

.line-logo-pc {
  max-width: 123px;
  width: 8vw;
}
@media screen and (max-width: 768px) {
  .line-logo-pc {
    display: none;
  }
}

.line-logo-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .line-logo-sp {
    display: block;
    max-width: 70px;
    width: 43vw;
  }
}

.line-logo img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.f-attention {
  display: none;
}
@media screen and (max-width: 768px) {
  .f-attention {
    display: block;
    color: rgb(255, 255, 255);
    font-size: 3vw;
    text-align: center;
    margin-top: 10px;
    padding-bottom: 3vw;
  }
}

.t-copyright {
  text-align: right;
  margin-top: 10px;
}
@media screen and (max-width: 768px) {
  .t-copyright {
    background-color: #4c2352;
    text-align: center;
    padding: 5px 0;
  }
}

.t-copyright small {
  color: rgb(255, 255, 255);
  font-family: "yu-mincho-pr6n";
  font-size: 1.6vw;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .t-copyright small {
    font-size: 2.6vw;
  }
}

.header {
  background-color: rgb(255, 255, 255);
  width: 100%;
  max-height: 76px;
  min-height: 48px;
  height: 5vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2000;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .header {
    height: auto;
    background-color: rgb(255, 255, 255);
    height: 14.4vw;
    max-height: none;
  }
}

.header__inner {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
  margin: 0 auto;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__inner {
    display: block;
  }
}

.header__logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 3%;
  padding-left: 2%;
}
@media screen and (max-width: 768px) {
  .header__logo {
    height: inherit;
    padding-left: 1%;
  }
}

.logo-img {
  max-width: 60px;
  min-width: 40px;
  width: 4vw;
}
@media screen and (max-width: 768px) {
  .logo-img {
    width: 12vw;
    max-width: none;
  }
}

.logo-img img {
  aspect-ratio: 48/48;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.logo-main {
  font-size: 2.1vw;
  font-weight: 600;
}
@media screen and (min-width: 1280px) {
  .logo-main {
    font-size: 32px;
  }
}
@media screen and (max-width: 768px) {
  .logo-main {
    font-size: 5vw;
  }
}

.logo-main span {
  font-weight: 700;
}

.logo-sub {
  font-size: 0.84vw;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: -2px;
}
@media screen and (min-width: 1280px) {
  .logo-sub {
    font-size: 12px;
    margin-top: -6px;
  }
}
@media screen and (max-width: 768px) {
  .logo-sub {
    font-size: 2vw;
  }
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: inherit;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav a {
  color: hsl(0, 0%, 0%);
  font-family: "Noto Sans JP";
  letter-spacing: 0.05em;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .header__nav a {
    height: inherit;
    width: 100%;
  }
}

.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  height: inherit;
  gap: 1vw;
  width: 73%;
}
@media screen and (min-width: 2000px) {
  .header-right {
    gap: 0.7vw;
  }
}

.header__items {
  display: none;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.2vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (min-width: 2000px) {
  .header__items {
    gap: 0.7vw;
  }
}
@media screen and (max-width: 768px) {
  .header__items {
    display: none;
  }
}

.header__item a {
  font-family: "yu-mincho-pr6n";
  font-weight: 600;
}

.header__link {
  font-size: 1.65vw;
}
@media screen and (min-width: 1440px) {
  .header__link {
    font-size: 24px;
  }
}
@media screen and (max-width: 1024px) {
  .header__link {
    font-size: 1.5vw;
  }
}

.header__item.header-reserve {
  background: #4c2352;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__item.header-reserve {
    display: none;
  }
}

.header__item.header-reserve a {
  color: rgb(255, 255, 255);
  font-family: "kozuka-gothic-pr6n";
  font-weight: 700;
  display: inline-block;
  padding: 0 1.8vw;
  width: 100%;
}

.header__tel {
  display: none;
}
@media screen and (max-width: 768px) {
  .header__tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    width: 11.4vw;
    height: 11.4vw;
    max-width: 77px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 16vw;
  }
}

@media screen and (max-width: 768px) {
  .header__tel img {
    aspect-ratio: 1/1;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.hamburger {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger {
    display: block;
    background: #231815;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    aspect-ratio: 1/1;
    cursor: pointer;
    width: 14.4vw;
    height: 14.4vw;
  }
}

.hamburger.is-active {
  right: 0;
  background-color: #898989;
}

.hamburger__wrap {
  width: 100%;
}

.hamburger__wrap span {
  color: rgb(255, 255, 255);
  position: absolute;
  top: 20%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: inline-block;
  width: 80%;
  max-width: 30px;
  height: 3px;
  border-radius: 2px;
  background: rgb(255, 255, 255);
  -webkit-transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: top 0.3s linear, -webkit-transform 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear;
  transition: transform 0.3s linear, top 0.3s linear, -webkit-transform 0.3s linear;
}

@media screen and (max-width: 768px) {
  .hamburger__wrap {
    height: inherit;
    position: relative;
  }
}

@media screen and (max-width: 768px) {
  .hamburger__wrap::after {
    content: "MENU";
    color: #fff;
    font-size: 2.6666666667vw;
    position: absolute;
    bottom: 2vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

.hamburger__wrap.is-active:after {
  content: "CLOSE";
}

.hamburger span:first-child {
  top: 16%;
}

.hamburger span:nth-child(2) {
  top: 32%;
}

.hamburger span:nth-child(3) {
  top: 49%;
}

.hamburger.is-active span:first-child {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  background: rgb(255, 255, 255);
  top: 31%;
  left: 16%;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background: rgb(255, 255, 255);
  top: 31%;
  left: 16%;
}

.drawer-menu {
  background: #4c2352;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
}

.drawer-menu__items {
  padding-top: 6.25rem;
  padding-bottom: 1.5rem;
  width: 100%;
}

.drawer-menu__item {
  padding: 16px 0;
  text-align: center;
}

.drawer-menu__item a {
  color: rgb(255, 255, 255);
  text-transform: uppercase;
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.6818181818rem + 1.5909090909vw, 1.875rem);
  letter-spacing: 0.1em;
}

.drawer-menu__item a .insta {
  text-transform: capitalize;
}

.drawer-menu__item button {
  color: rgb(255, 255, 255);
  font-family: "Noto Sans JP";
  font-size: clamp(1rem, 0.6818181818rem + 1.5909090909vw, 1.875rem);
  letter-spacing: 0.1em;
}

.drawer-menu__item a.link-btn {
  display: inline-block;
  color: rgb(255, 255, 255);
  border: 2px solid rgb(255, 255, 255);
  border-radius: 50px;
  padding: 7px 0;
  width: 250px;
  text-transform: uppercase;
}

.drawer-menu__item a.link-btn.insta {
  text-transform: capitalize;
}

.page-fv {
  position: relative;
}

.page-fv__title {
  background-color: rgba(255, 255, 255, 0.7);
  height: 55%;
  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;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10%;
  width: 5vw;
}
@media screen and (min-width: 2000px) {
  .page-fv__title {
    height: 50%;
  }
}
@media screen and (max-width: 768px) {
  .page-fv__title {
    width: 8vw;
  }
}

.page-fv__title h2 {
  font-size: 2.5vw;
  font-family: "yu-mincho-pr6n";
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  padding: 20px 10px;
}
@media screen and (max-width: 768px) {
  .page-fv__title h2 {
    font-size: 3.5vw;
    padding: 0 10px;
  }
}

.page-title {
  display: none;
}
@media screen and (max-width: 768px) {
  .page-title {
    display: block;
    font-family: "yu-mincho-pr6n";
    font-size: clamp(1.25rem, 0.9772727273rem + 1.3636363636vw, 2rem);
    font-weight: 500;
    text-align: center;
    margin-top: 4vw;
  }
}

.inner {
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 100%;
    margin-inline: auto;
  }
}

.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

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

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  to {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
  -webkit-transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, -webkit-transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  transition: opacity 0.6s ease-out, transform 0.6s ease-out, -webkit-transform 0.6s ease-out;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

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

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.button {
  display: inline-block;
  color: rgb(255, 255, 255);
  font-family: "kozuka-gothic-pr6n";
  background-color: #717171;
  border: 2px solid #717171;
  border-radius: 50px;
  padding: 19px 75px;
  font-size: 2vw;
  letter-spacing: 0.05em;
  position: relative;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .button {
    background-color: #4c2352;
    font-size: 4.2vw;
    padding: 7px 28px;
  }
}

.button::after {
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 5%;
  content: "";
  background-image: url(../images/common/button-arrow.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 18px;
  height: 24px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .button::after {
    width: 9px;
    height: 13px;
  }
}

.button:hover {
  border: 2px solid #717171;
  background-color: rgb(255, 255, 255);
  color: #231815;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .button:hover {
    border: 2px solid #4c2352;
    color: #4c2352;
  }
}

.button:hover::after {
  background-image: url(../images/common/button-arrow-b.svg);
  right: 4%;
}

.button-news {
  font-family: "yu-mincho-pr6n";
  font-size: 2vw;
  font-weight: 600;
  position: relative;
}
@media screen and (max-width: 768px) {
  .button-news {
    font-size: 3.5vw;
  }
}

.button-news::after {
  position: absolute;
  top: 48%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -14%;
  content: "";
  background-image: url(../images/common/button-arrow-b.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 1.1vw;
  height: 1.5vw;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
@media screen and (max-width: 768px) {
  .button-news::after {
    width: 7px;
    height: 10px;
  }
}

.button-news:hover::after {
  right: -16%;
}

.t-news-sp__btn a.button {
  background-color: #7c8558;
  color: rgb(255, 255, 255);
  font-size: clamp(0.875rem, 0.6477272727rem + 1.1363636364vw, 1.5rem);
  font-weight: 300;
  padding: 9px 28px;
}

.t-news-sp__btn a.button::after {
  background-image: url(../images/common/button-arrow.svg);
  width: 1.1vw;
  height: 1.5vw;
  right: 8%;
  top: 50%;
}

.links {
  background-color: #eae5e3;
  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;
  gap: 5vw;
  padding: 5vw 0;
}
@media screen and (max-width: 768px) {
  .links {
    gap: 7vw;
  }
}

.link-wrap {
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 15px;
}

.link__img {
  max-width: 460px;
  width: 22vw;
}
@media screen and (max-width: 768px) {
  .link__img {
    width: 37vw;
  }
}

.link__img img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 50%;
}

.link__text {
  font-size: 2vw;
  font-family: "yu-mincho-pr6n";
  font-weight: 600;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 1vw;
}
@media screen and (max-width: 768px) {
  .link__text {
    font-size: 3vw;
  }
}

.f-line {
  background-color: #22ac3e;
  padding: 4vw 0;
}
@media screen and (max-width: 1024px) {
  .f-line {
    padding: 29px 0;
  }
}
@media screen and (max-width: 768px) {
  .f-line {
    display: none;
  }
}

.f-line span {
  display: inline-block;
}

.f-line__wrap {
  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;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .f-line__wrap {
    gap: 0;
  }
}

.f-line__line {
  max-width: 257px;
  width: 17vw;
}
@media screen and (max-width: 768px) {
  .f-line__line {
    max-width: 160px;
    width: 29vw;
    padding: 0 10px;
  }
}

.f-line__line img {
  aspect-ratio: 186/66;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.f-line__text {
  color: rgb(255, 255, 255);
  font-family: "yu-mincho-pr6n";
  font-size: 2.5vw;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 768px) {
  .f-line__text {
    font-size: clamp(0.625rem, 0.2613636364rem + 1.8181818182vw, 1.625rem);
    font-weight: 600;
  }
}

.f-line__arrow {
  width: 3.5vw;
  max-width: 50px;
  margin-left: 10px;
}
@media screen and (max-width: 768px) {
  .f-line__arrow {
    width: 4.5vw;
    margin-left: 5px;
  }
}

.sp-line-bar {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-line-bar {
    display: block;
    margin-top: 0;
  }
}

.access {
  background-color: #f8f8f8;
  padding: 6.5vw 0;
}
@media screen and (max-width: 768px) {
  .access {
    display: none;
  }
}

.access__title {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1.75rem, 1.5681818182rem + 0.9090909091vw, 2.25rem);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .access__title {
    font-size: clamp(1.25rem, 1.0681818182rem + 0.9090909091vw, 1.75rem);
  }
}

.google-map {
  margin-top: 30px;
  text-align: center;
}

.google-map iframe {
  width: 82%;
  aspect-ratio: 944/318;
}
@media screen and (max-width: 768px) {
  .google-map iframe {
    width: 100%;
    aspect-ratio: 3/2;
  }
}

.address {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1.25rem, 1.0681818182rem + 0.9090909091vw, 1.75rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-align: center;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .address {
    font-size: clamp(0.875rem, 0.6477272727rem + 1.1363636364vw, 1.5rem);
  }
}

.f-contact {
  background-color: rgb(255, 255, 255);
  padding-top: 5.5vw;
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .f-contact {
    padding-bottom: 10vw;
  }
}

.f-contact__logo {
  margin-inline: auto;
  max-width: 160px;
  width: 10vw;
}
@media screen and (max-width: 768px) {
  .f-contact__logo {
    width: 26vw;
  }
}

.f-contact__logo img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.f-logo-text {
  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;
  margin-top: 0.8vw;
}

.limited {
  font-size: 1.9vw;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .limited {
    font-size: 3.9vw;
  }
}

.f-logo-name {
  font-size: 4vw;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .f-logo-name {
    font-size: 9vw;
  }
}

.name-en {
  display: block;
  font-size: 1.5vw;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .name-en {
    display: none;
  }
}

.f-contact__address {
  text-align: center;
}

.f-contact__address p {
  font-family: "yu-mincho-pr6n";
  font-size: 1.9vw;
  font-weight: 600;
  margin-top: 2.5vw;
}
@media screen and (max-width: 768px) {
  .f-contact__address p {
    font-size: 3.3vw;
  }
}

.f-contact__address a {
  font-family: "yu-mincho-pr6n";
  font-size: 1.7vw;
  display: inline-block;
  border-bottom: 1px solid #231815;
  line-height: 1;
  margin-inline: auto;
  margin-top: 1%;
}
@media screen and (max-width: 768px) {
  .f-contact__address a {
    font-size: 2.7vw;
    border-bottom: none;
  }
}

.f-menu__open-desc {
  display: none;
}
@media screen and (max-width: 768px) {
  .f-menu__open-desc {
    display: block;
    margin-inline: auto;
    width: 85%;
  }
}

@media screen and (max-width: 768px) {
  .f-menu__open-detail {
    border-top: 1px solid #231815;
    font-size: clamp(0.75rem, 0.6590909091rem + 0.4545454545vw, 1rem);
    font-family: "Noto Sans JP";
    font-weight: 600;
    line-height: 2;
    text-align: center;
    margin-top: 16px;
    padding-top: 15px;
    margin-inline: auto;
    max-width: 450px;
  }
}

@media screen and (max-width: 768px) {
  .f-menu__close {
    border-top: 1px solid #231815;
    border-bottom: 1px solid #231815;
    font-size: 1rem;
    font-family: "Noto Sans JP";
    font-weight: 600;
    line-height: 1.7;
    text-align: center;
    padding: 16px 0;
    margin-top: 16px;
    margin-inline: auto;
    max-width: 450px;
  }
}

.f-contact__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 3vw;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  .f-contact__wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 10vw;
  }
}

.f-contact__mail span {
  font-family: "yu-mincho-pr6n";
  font-size: 1.5vw;
  letter-spacing: 0.05em;
  display: inline-block;
  border: 1px solid #717171;
  padding: 15px 0 15px 23px;
  text-align: center;
  width: 25vw;
}
@media screen and (max-width: 768px) {
  .f-contact__mail span {
    font-size: 3vw;
    padding: 8px 0 8px 23px;
    width: 48vw;
  }
}

.f-contact__mail {
  text-transform: capitalize;
  font-weight: 700;
  position: relative;
}

.f-contact__mail::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 10%;
  content: "";
  background-image: url(../images/footer/f-mail.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 29px;
  height: 19px;
}
@media screen and (max-width: 1024px) {
  .f-contact__mail::before {
    left: 9%;
    width: 19px;
    height: 12px;
  }
}

.f-contact__mail:hover::before {
  opacity: 0.7;
}

@media screen and (max-width: 768px) {
  .f-contact__mail::after {
    position: absolute;
    top: 49%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: 4%;
    content: "";
    background-image: url(../images/common/button-arrow-b.svg);
    background-size: cover;
    background-repeat: no-repeat;
    width: 9px;
    height: 13px;
  }
}

.f-contact__tel span {
  font-family: "yu-mincho-pr6n";
  font-size: 1.5vw;
  letter-spacing: 0.05em;
  display: inline-block;
  border: 1px solid #717171;
  padding: 15px 0 15px 28px;
  text-align: center;
  width: 25vw;
}

.f-contact__tel {
  font-weight: 700;
  position: relative;
}

.f-contact__tel::before {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 25%;
  content: "";
  background-image: url(../images/footer/f-tel.svg);
  background-size: cover;
  background-repeat: no-repeat;
  width: 17px;
  height: 24px;
}
@media screen and (max-width: 1024px) {
  .f-contact__tel::before {
    width: 12px;
    height: 17px;
  }
}

.f-contact__tel:hover::before {
  opacity: 0.7;
}

.line-bar {
  width: 54px;
  height: 170px;
  position: fixed;
  top: 50vh;
  right: 0;
  z-index: 100;
}
@media screen and (max-width: 1024px) {
  .line-bar {
    width: 44px;
    top: 32vh;
  }
}
@media screen and (max-width: 768px) {
  .line-bar {
    top: 30vh;
    width: 33px;
  }
}

.line-bar img {
  aspect-ratio: 40/160;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wp-pagenavi {
  margin-top: 40px;
  text-align: center;
}

.wp-pagenavi a {
  display: inline-block;
  background-color: rgb(255, 255, 255);
  border: none;
  border-radius: 50px;
  color: hsl(0, 0%, 0%);
  padding: 4px 11px;
  margin-right: 10px;
  margin-left: 10px;
}

a.page.smaller,
a.page.larger {
  display: inline-block;
  background-color: rgb(255, 255, 255);
  border: hsl(0, 0%, 0%);
  border-radius: 50px;
  color: hsl(0, 0%, 0%);
  padding: 4px 10px;
  margin-right: 5px;
  margin-left: 5px;
}

.wp-pagenavi span.current {
  background-color: #22ac3e;
  border: none;
  border-radius: 50px;
  color: rgb(255, 255, 255);
  padding: 4px 10px;
  margin-right: 10px;
  margin-left: 10px;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  border: none;
}

.announce-img {
  width: 100%;
  position: relative;
}

.about__lead {
  background-color: #36558f;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 8%;
  padding: 6.2vw 11vw 6.2vw 11vw;
}
@media screen and (max-width: 768px) {
  .about__lead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8vw 8vw;
  }
}

.about__lead-lr {
  color: rgb(255, 255, 255);
  font-family: "yu-mincho-pr6n";
  font-size: 2.4vw;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-align: end;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .about__lead-lr {
    font-size: clamp(1rem, 0.7727272727rem + 1.1363636364vw, 1.625rem);
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
  }
}

.about__lead-rl {
  color: rgb(255, 255, 255);
  font-family: "yu-mincho-pr6n";
  font-size: 2.2vw;
  font-weight: 600;
  max-width: 1250px;
}
@media screen and (max-width: 768px) {
  .about__lead-rl {
    font-size: clamp(0.8125rem, 0.5625rem + 1.25vw, 1.5rem);
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.02em;
    margin-top: 3vw;
  }
}

.overview__table {
  border-top: 1px solid #231815;
  border-collapse: collapse;
  margin-inline: auto;
  max-width: 866px;
  width: 90.67%;
  margin-top: 5rem;
  max-width: 1200px;
}
@media screen and (max-width: 768px) {
  .overview__table {
    margin-top: 4vw;
  }
}

.overview__table tr {
  border-bottom: 1px solid #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.overview__table th {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1rem, 0.6363636364rem + 1.8181818182vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
  text-align: left;
  padding-top: 1.3vw;
  padding-bottom: 1.3vw;
  padding-left: 1%;
  width: 16%;
}
@media screen and (max-width: 768px) {
  .overview__table th {
    font-size: clamp(0.875rem, 0.5568181818rem + 1.5909090909vw, 1.75rem);
    width: 22%;
  }
}

.overview__table td {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1rem, 0.6363636364rem + 1.8181818182vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  display: block;
  padding-top: 1.3vw;
  padding-bottom: 1.3vw;
  text-indent: initial;
  width: 84%;
}
@media screen and (max-width: 768px) {
  .overview__table td {
    font-size: clamp(0.875rem, 0.5568181818rem + 1.5909090909vw, 1.75rem);
    width: 78%;
  }
}

.overview__table td span {
  display: inline-block;
}

.support__lead {
  background-color: #82b4d8;
  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;
}
@media screen and (max-width: 768px) {
  .support__lead {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 8vw 8vw;
  }
}

.support__lead-wrap {
  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;
  gap: 11%;
  padding: 4vw 2vw 4vw 8vw;
  width: 70.88%;
}
@media screen and (max-width: 768px) {
  .support__lead-wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    width: 100%;
  }
}

.support__lead-lr {
  color: rgb(255, 255, 255);
  font-size: 2.2vw;
  font-family: "yu-mincho-pr6n";
  font-weight: 600;
  letter-spacing: 0.5em;
  text-align: end;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
}
@media screen and (max-width: 768px) {
  .support__lead-lr {
    font-size: clamp(1rem, 0.7727272727rem + 1.1363636364vw, 1.625rem);
    -webkit-writing-mode: horizontal-tb;
        -ms-writing-mode: lr-tb;
            writing-mode: horizontal-tb;
    letter-spacing: 0.2em;
  }
}

.support__lead-rl {
  color: rgb(255, 255, 255);
  font-family: "yu-mincho-pr6n";
  font-size: 1.8vw;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .support__lead-rl {
    font-size: clamp(0.8125rem, 0.5625rem + 1.25vw, 1.5rem);
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.02em;
    margin-top: 3vw;
  }
}

.support__lead-img {
  width: 29.12%;
}
@media screen and (max-width: 768px) {
  .support__lead-img {
    margin-top: 9vw;
    margin-inline: auto;
    width: 66%;
  }
}

.support__lead-img img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.price {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  .price {
    padding: 10vw 0;
  }
}

.price__lead {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem);
  font-weight: 600;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .price__lead {
    font-size: clamp(1rem, 0.6818181818rem + 1.5909090909vw, 1.875rem);
    line-height: 2;
  }
}

.price__title {
  font-size: clamp(1.875rem, 1.6477272727rem + 1.1363636364vw, 2.5rem);
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 6vw;
}
@media screen and (max-width: 768px) {
  .price__title {
    border: 1px solid #231815;
    font-size: clamp(1.375rem, 1.1931818182rem + 0.9090909091vw, 1.875rem);
    margin-inline: auto;
    padding: 4vw 0;
    width: 90%;
  }
}

.price__img {
  max-width: 633px;
  width: 57vw;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .price__img {
    width: 70%;
  }
}

.price__img img {
  aspect-ratio: 460/335;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.price__table {
  border-collapse: collapse;
  margin-inline: auto;
  margin-top: 1.25rem;
  max-width: 2000px;
  width: 81.67%;
}

.price__table tr {
  border-bottom: 1px solid #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .price__table tr {
    -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;
  }
}

.price__table tr:first-child {
  border-top: 1px solid #231815;
}

.price__table th {
  font-family: "yu-mincho-pr6n";
  font-size: 2vw;
  font-weight: 700;
  letter-spacing: 0.1em;
  display: block;
  text-align: left;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  padding-left: 1.7%;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .price__table th {
    font-size: 4vw;
    padding-bottom: 0.3125rem;
    text-align: center;
    width: 100%;
  }
}

.price__table td {
  font-family: "yu-mincho-pr6n";
  font-size: 2vw;
  font-weight: 600;
  letter-spacing: 0.08em;
  display: block;
  padding-top: 0.9375rem;
  padding-bottom: 0.9375rem;
  padding-right: 1.7%;
  text-align: end;
  width: 30%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .price__table td {
    font-size: 4vw;
    padding-top: 0;
    text-align: center;
    width: 100%;
  }
}

.price__table td::before {
  content: "";
  background-color: #231815;
  width: 1px;
  height: 60%;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
}
@media screen and (max-width: 768px) {
  .price__table td::before {
    content: none;
  }
}

.price__table td span {
  display: inline-block;
}

.price__note {
  font-family: "yu-mincho-pr6n";
  font-size: 2vw;
  letter-spacing: 0.05em;
  margin-inline: auto;
  margin-top: 3vw;
  max-width: 2000px;
  width: 81.67%;
}
@media screen and (max-width: 768px) {
  .price__note {
    font-size: 4vw;
  }
}

.document {
  background-color: #f8f8f8;
  padding: 5vw 0;
}

.document__title {
  font-size: clamp(1.25rem, 0.7954545455rem + 2.2727272727vw, 2.5rem);
  text-align: center;
}
@media screen and (min-width: 2000px) {
  .document__title {
    font-size: clamp(2.5rem, 2.0454545455rem + 2.2727272727vw, 3.75rem);
  }
}

.document__head {
  display: block;
  color: rgb(255, 255, 255);
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1.25rem, 0.8863636364rem + 1.8181818182vw, 2.25rem);
  font-weight: 600;
  margin-inline: auto;
  margin-top: 4vw;
  text-align: center;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 2000px) {
  .document__head {
    font-size: clamp(1.875rem, 1.4204545455rem + 2.2727272727vw, 3.125rem);
  }
}
@media screen and (max-width: 768px) {
  .document__head {
    margin-top: 9vw;
  }
}

.document__head::before {
  content: "";
  background-image: url(../images/page-support/document-bg.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 11vw;
  max-width: 142px;
  height: 11vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 2000px) {
  .document__head::before {
    width: 13vw;
    max-width: 190px;
    height: 13vw;
  }
}
@media screen and (max-width: 1024px) {
  .document__head::before {
    width: 12vw;
    height: 12vw;
  }
}
@media screen and (max-width: 768px) {
  .document__head::before {
    width: 76px;
    height: 76px;
  }
}

.document__head.head-s {
  margin-top: 5vw;
}

.document__body {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1.375rem, 0.9659090909rem + 2.0454545455vw, 2.5rem);
  line-height: 1.8;
  margin-top: 3vw;
  text-align: center;
}
@media screen and (min-width: 2000px) {
  .document__body {
    font-size: clamp(1.875rem, 1.4204545455rem + 2.2727272727vw, 3.125rem);
  }
}
@media screen and (max-width: 768px) {
  .document__body {
    font-size: clamp(1rem, 0.7727272727rem + 1.1363636364vw, 1.625rem);
    padding-bottom: 5vw;
    margin-top: 7vw;
  }
}

.flow {
  padding: 7vw 0 3vw;
}
@media screen and (max-width: 768px) {
  .flow {
    padding: 10vw 0 0;
  }
}

.flow__title {
  font-size: clamp(1.375rem, 0.9204545455rem + 2.2727272727vw, 2.625rem);
  letter-spacing: 0.05em;
  text-align: center;
}

.flow__wrap {
  padding-top: 5vw;
  max-width: 900px;
  margin-inline: auto;
  width: 90%;
}
@media screen and (max-width: 768px) {
  .flow__wrap {
    max-width: none;
    width: 100%;
  }
}

.flow__box {
  background-color: rgb(255, 255, 255);
  border: 1px solid #231815;
  padding: 0.8vw;
}
@media screen and (max-width: 768px) {
  .flow__box {
    margin-inline: auto;
    width: 85%;
  }
}

.flow__box p {
  font-size: clamp(1.5rem, 1.3181818182rem + 0.9090909091vw, 2rem);
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__box p {
    font-size: clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem);
  }
}

.flow__arrow {
  max-width: 47px;
  margin-inline: auto;
  margin-top: 1vw;
  margin-bottom: 1vw;
}
@media screen and (max-width: 768px) {
  .flow__arrow {
    max-width: 24.39px;
    margin-top: 3vw;
    margin-bottom: 3vw;
  }
}

.flow__arrow img {
  aspect-ratio: 33/18;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.flow__arrow.arrow02 {
  margin-top: 1vw;
}
@media screen and (max-width: 768px) {
  .flow__arrow.arrow02 {
    margin-top: 2vw;
  }
}

.flow__box-b {
  background-color: #c5d7e7;
  padding: 1.6vw;
}
@media screen and (max-width: 768px) {
  .flow__box-b {
    margin-inline: auto;
    width: 85%;
  }
}

.flow__box-b p {
  font-size: clamp(1.5rem, 1.3181818182rem + 0.9090909091vw, 2rem);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__box-b p {
    font-size: clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem);
  }
}

.flow__desc-r {
  color: #cb171d;
  font-size: clamp(1.5rem, 1.3181818182rem + 0.9090909091vw, 2rem);
  margin-top: 1vw;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__desc-r {
    font-size: clamp(1rem, 0.7727272727rem + 1.1363636364vw, 1.625rem);
    margin-top: 2vw;
  }
}

.flow__box.box02 {
  margin-top: 4vw;
  padding: 1vw;
}

.flow__box-r {
  background-color: #cb171d;
  padding: 2vw;
  margin-top: 2vw;
}
@media screen and (max-width: 768px) {
  .flow__box-r {
    margin-top: 4vw;
  }
}

.flow__box-r p {
  color: rgb(255, 255, 255);
  font-size: clamp(1.5rem, 1.2272727273rem + 1.3636363636vw, 2.25rem);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .flow__box-r p {
    font-size: clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem);
  }
}

.flow__box-r p span {
  color: #fff100;
  font-size: clamp(1.5rem, 1.3181818182rem + 0.9090909091vw, 2rem);
}
@media screen and (max-width: 768px) {
  .flow__box-r p span {
    font-size: clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem);
  }
}

.consultant {
  background-color: #f8f8f8;
  padding: 8vw 0 11vw;
}
@media screen and (max-width: 768px) {
  .consultant {
    padding: 12vw 0;
    background-color: rgb(255, 255, 255);
  }
}

.consultant__title {
  font-size: clamp(1.375rem, 0.9204545455rem + 2.2727272727vw, 2.625rem);
  text-align: center;
}
@media screen and (max-width: 768px) {
  .consultant__title {
    font-size: clamp(1.25rem, 1.0681818182rem + 0.9090909091vw, 1.75rem);
  }
}

.consultant__lead {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1.125rem, 0.8977272727rem + 1.1363636364vw, 1.75rem);
  text-align: center;
  line-height: 1.8;
  margin-top: 3vw;
}
@media screen and (max-width: 768px) {
  .consultant__lead {
    font-size: clamp(1rem, 0.8181818182rem + 0.9090909091vw, 1.5rem);
    margin-top: 3vw;
    line-height: 1.7;
  }
}

.consultant__img {
  max-width: 750px;
  margin-inline: auto;
  margin-top: 6vw;
}
@media screen and (max-width: 768px) {
  .consultant__img {
    margin-top: 8vw;
    margin-inline: auto;
    width: 85%;
  }
}

.consultant__img img {
  aspect-ratio: 540/360;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news {
  padding: 50px 0 70px;
}
@media screen and (max-width: 768px) {
  .news {
    padding: 0 0 12vw;
  }
}

.news__title-img {
  max-width: 150px;
}
@media screen and (max-width: 768px) {
  .news__title-img {
    max-width: 100px;
  }
}

.news__title-img img {
  aspect-ratio: 119.459/31.41;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.news__items {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 860px;
}
@media screen and (max-width: 768px) {
  .news__items {
    margin-top: 20px;
    width: 93%;
  }
}

.news__item {
  border-bottom: 1px solid #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 40px;
  padding-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .news__item {
    padding-top: 30px;
    padding-bottom: 20px;
  }
}

.news__date {
  background: #9fa0a0;
  color: rgb(255, 255, 255);
  font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .news__date {
    padding: 8px 16px;
  }
}

.news__lead {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1rem, 0.7272727273rem + 1.3636363636vw, 1.75rem);
  font-weight: 600;
  margin-top: 30px;
}

.news__text {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(0.75rem, 0.6136363636rem + 0.6818181818vw, 1.125rem);
  text-align: left;
  margin-top: 0.9375rem;
  line-height: 1.5;
}

.news.news-detail {
  padding: 50px 0 70px;
}
@media screen and (max-width: 768px) {
  .news.news-detail {
    padding-bottom: 12vw;
  }
}

.news-detail .news__items {
  margin-top: 60px;
  margin-inline: auto;
  max-width: 860px;
}
@media screen and (max-width: 768px) {
  .news-detail .news__items {
    margin-top: 20px;
    width: 93%;
  }
}

.news-detail .news__item {
  border-bottom: 1px solid #231815;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 24px;
  padding-bottom: 25px;
}

.news-detail .news__date {
  background: #9fa0a0;
  color: rgb(255, 255, 255);
  font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.5625rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 8px 28px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 768px) {
  .news-detail .news__date {
    padding: 8px 16px;
  }
}

.news-detail .news__lead {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1rem, 0.7272727273rem + 1.3636363636vw, 1.75rem);
  font-weight: 600;
  margin-top: 25px;
}

.news-detail .news__text {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(0.875rem, 0.7840909091rem + 0.4545454545vw, 1.125rem);
  text-align: left;
  margin-top: 30px;
  line-height: 2;
}

.detail__other {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 37vw;
}

.detail__other a {
  display: inline-block;
}

.page-line {
  background-color: #f7f8da;
}

.page-line .page-fv__title {
  display: none;
}

.bg-wrap {
  width: 100%;
  position: relative;
}

.page-mv__img {
  max-width: 550px;
  width: 26vw;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 768px) {
  .page-mv__img {
    width: clamp(9.375rem, 6.4204545455rem + 14.7727272727vw, 17.5rem);
  }
}

.page-mv__img img {
  aspect-ratio: 280/266.79;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.line {
  padding: 6.5vw 0 5vw;
}
@media screen and (max-width: 768px) {
  .line {
    padding: 10vw 0;
    padding-bottom: 40px;
  }
}

@media screen and (max-width: 768px) {
  .line__inner {
    padding: 0 2vw;
  }
}

.line__lead {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1.375rem, 0.8295454545rem + 2.7272727273vw, 2.875rem);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.5;
}
@media screen and (min-width: 2000px) {
  .line__lead {
    font-size: clamp(2rem, 1.4545454545rem + 2.7272727273vw, 3.5rem);
  }
}
@media screen and (max-width: 1024px) {
  .line__lead {
    font-size: clamp(1.375rem, 1.0568181818rem + 1.5909090909vw, 2.25rem);
  }
}
@media screen and (max-width: 768px) {
  .line__lead {
    font-size: clamp(1rem, 0.6818181818rem + 1.5909090909vw, 1.875rem);
  }
}

.line__lead span {
  font-family: "yu-mincho-pr6n";
  display: inline-block;
}

.line__text {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1.375rem, 1.0568181818rem + 1.5909090909vw, 2.25rem);
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.8;
  margin-top: 2.5vw;
}
@media screen and (min-width: 2000px) {
  .line__text {
    font-size: clamp(2rem, 1.6818181818rem + 1.5909090909vw, 2.875rem);
  }
}
@media screen and (max-width: 1024px) {
  .line__text {
    font-size: clamp(1.375rem, 1.1931818182rem + 0.9090909091vw, 1.875rem);
  }
}
@media screen and (max-width: 768px) {
  .line__text {
    font-size: clamp(0.875rem, 0.625rem + 1.25vw, 1.5625rem);
    letter-spacing: 0.02em;
  }
}

.line__text span {
  font-family: "yu-mincho-pr6n";
  display: inline-block;
}

.line__qr {
  max-width: 400px;
  margin-inline: auto;
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .line__qr {
    max-width: 180px;
  }
}

.line__qr img {
  aspect-ratio: 1/1;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.qr__desc {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(1rem, 0.6363636364rem + 1.8181818182vw, 2rem);
  text-align: center;
  margin-top: 3.5vw;
}
@media screen and (min-width: 2000px) {
  .qr__desc {
    font-size: clamp(2rem, 1.7727272727rem + 1.1363636364vw, 2.625rem);
  }
}

.qr__desc span {
  font-family: "yu-mincho-pr6n";
  display: inline-block;
}

.line__banner {
  max-width: 420px;
  margin-inline: auto;
  margin-top: 40px;
}
@media screen and (max-width: 1024px) {
  .line__banner {
    max-width: 300px;
  }
}
@media screen and (max-width: 768px) {
  .line__banner {
    max-width: 260px;
    width: 46%;
  }
}

.line__banner img {
  aspect-ratio: 270/80;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.contact {
  padding: 50px 0 70px;
}

.contact__inner {
  margin: auto;
  padding: 0 20px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .contact__inner {
    padding: 0 45px;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner {
    padding: 0 20px;
  }
}

.contact__title-img {
  width: 180px;
}
@media screen and (max-width: 768px) {
  .contact__title-img {
    width: 150px;
  }
}

.contact__attention {
  font-family: "yu-mincho-pr6n";
  font-size: clamp(0.875rem, 0.7386363636rem + 0.6818181818vw, 1.25rem);
  line-height: 2;
  text-align: center;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .contact__attention {
    margin-top: 1.5625rem;
  }
}

.contact__attention span {
  font-family: "yu-mincho-pr6n";
}
@media screen and (max-width: 768px) {
  .contact__attention span {
    display: inline-block;
    font-size: clamp(0.875rem, 0.7386363636rem + 0.6818181818vw, 1.25rem);
    line-height: 2;
  }
}

.form {
  margin-top: 43px;
  margin-bottom: 115px;
}
@media screen and (max-width: 768px) {
  .form {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.form__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .form__wrap {
    display: block;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

@media screen and (max-width: 768px) {
  .form__wrap.date {
    margin-top: 0;
  }
}

@media screen and (max-width: 768px) {
  .form__wrap.form__wra-textarea {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}

.form__wrap:not(:first-of-type) {
  margin-top: 20px;
}
@media screen and (max-width: 768px) {
  .form__wrap:not(:first-of-type) {
    margin-top: 23px;
  }
}

.form__label {
  font-family: "yu-mincho-pr6n";
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.08em;
  width: 198px;
}
@media screen and (max-width: 768px) {
  .form__label {
    max-width: 200px;
    width: 100%;
  }
}

.form__label.date {
  text-wrap: nowrap;
  text-indent: -1em;
}
@media screen and (max-width: 768px) {
  .form__label.date {
    text-indent: 0;
  }
}

.form__label.time {
  padding-left: 10px;
}
@media screen and (max-width: 768px) {
  .form__label.time {
    padding-left: 19px;
  }
}

.form__label span {
  display: inline-block;
  color: rgb(255, 255, 255);
  background-color: #22ac3e;
  border-radius: 5px;
  padding: 2px 4px;
  margin-left: 10px;
}

.form__label.pref {
  width: 100px;
  min-width: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .form__label.pref {
    text-align: left;
  }
}

@media screen and (max-width: 768px) {
  .form__wrap.form__wra-textarea .form__label {
    margin-top: 10px;
  }
}

.form__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 46px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
@media screen and (max-width: 768px) {
  .form__flex {
    display: block;
  }
}

.flex-50 {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .flex-50 {
    width: 100%;
    margin-top: 23px;
  }
}

.flex__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
  width: calc(100% - 196px);
}
@media screen and (max-width: 768px) {
  .flex__wrap {
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}

.form__input span input,
.form__select select,
.form__textarea span textarea {
  background: rgb(255, 255, 255);
  border-radius: 10px;
}

.form__input,
.form__select,
.form__textarea {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .form__input,
  .form__select,
  .form__textarea {
    width: 100%;
    margin-top: 10px;
  }
}

.form-input input {
  padding: 10px 10px;
  width: 100%;
  font-size: 15px;
  line-height: 1;
  border: 1px solid #231815;
  border-radius: 10px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
}

.form-input input:focus {
  border: 1px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form-input.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: 30%;
}
@media screen and (max-width: 768px) {
  .form-input.flex {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .form-input.flex.post {
    width: 100%;
    gap: 0;
  }
}

@media screen and (max-width: 768px) {
  .form-input.flex.post span {
    width: 100px;
  }
}

@media screen and (max-width: 768px) {
  .form-input.flex.post input {
    width: 150%;
  }
}

.pref-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 70%;
}
@media screen and (max-width: 768px) {
  .pref-wrap {
    width: 100%;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 20px;
  }
}

.mail-attention {
  margin-top: 10px;
}

.form-input.time {
  border: 1px solid hsl(0, 0%, 0%);
  border-radius: 10px;
  padding: 8px 0;
}

.form-select select {
  padding: 12px 16px;
  width: 100%;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #231815;
  background-image: url(../img/2x/contact/select-arrow.webp);
  background-repeat: no-repeat;
  background-size: 12px 11px;
  background-position: right 15px top 30px;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  cursor: pointer;
}

.form-input .wpcf7-form-control-wrap,
.form-select .wpcf7-form-control-wrap {
  width: 100%;
}

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

.form-select select:focus {
  border: 1px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form-textarea textarea {
  padding: 23px 15px;
  width: 100%;
  height: 338px;
  font-size: 15px;
  border-radius: 10px;
  border: 1px solid #231815;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  background-image: none;
}
@media screen and (max-width: 768px) {
  .form-textarea textarea {
    height: 380px;
  }
}

.form-textarea textarea:focus {
  border: 1px solid #ccc;
  -webkit-box-shadow: none;
          box-shadow: none;
  outline: none;
}

.form__btn-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.form__submit {
  margin-top: 57px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .form__submit {
    margin-top: 45px;
  }
}

.form-submit input {
  display: inline-block;
  color: rgb(255, 255, 255);
  background-color: #333333;
  padding: 10px 40px;
  cursor: pointer;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}

.form-submit input:hover,
.form-submit input:focus {
  outline: none;
}

.form-submit input:hover {
  opacity: 0.8;
}

.form-submit input::-moz-foucus-inner {
  padding: 0;
  border: none;
}

.privacy__text {
  text-align: center;
}

.wpcf7-list-item-label button.js-modal-open {
  vertical-align: baseline;
}

.wpcf7 {
  margin-top: 17px;
  max-width: 700px;
  margin-inline: auto;
}

.wpcf7-not-valid-tip {
  margin-bottom: 15px;
}

span.wpcf7-spinner {
  display: none;
}

.codedropz-upload-inner h3 {
  font-size: 2vw !important;
}

.p-access {
  padding: 5vw 0 7vw;
}
@media screen and (max-width: 768px) {
  .p-access {
    padding: 7vw 0;
  }
}