@charset "utf-8";
:root {
  --orange01: #F59749;
  --orange02: #F6AD54;
  --yellow01: #FFF6DB;
  --paddings: 20px;
  --header-height: 119.34px;
}
.vdl-logog {
  font-family: vdl-logog, sans-serif;
  font-style: normal;
  font-weight: 500;
}
.ryumin-pr6n {
  font-family: a-otf-ryumin-pr6n, serif;
  font-style: normal;
  font-weight: 300;
}
.noto-sans-jp__black {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 900;
  font-style: normal;
}
.scroll-auto-x {
  overflow-x: auto;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-column {
  display: flex;
  flex-direction: column;
}
span.inline-block {
  display: inline-block;
}
.site-logo1 {
  width: 370px;
  line-height: 1.4;
}
.site-logo1 img {
  display: block;
  width: 100%;
}
.site-logo2 {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px 0;
  line-height: 1.2;
}
.site-logo2 .text01 {
  font-family: vdl-logog, sans-serif;
  font-size: 60px;
  max-width: 204px;
  width: 100%;
  height: 100%;
}
.site-logo2 .text01 img {
  display: block;
  width: 100%;
}
.site-logo2 .text02 {
  font-size: 8px;
  letter-spacing: 1.54%;
}
/* マウス操作できる環境（PC・iPad＋マウス/トラックパッド） */
@media (any-pointer: fine) {
  .phone-link {
    pointer-events: none !important;
    cursor: text;
  }
}
/* 指操作のみの環境（スマホ想定） */
@media (pointer: coarse) {
  .phone-link {
    pointer-events: auto !important;
  }
}
@media screen and (max-width: 1280px) {
  :root {
    --header-height: 95.16px;
  }
}
@media screen and (max-width: 780px) {
  :root {
    --header-height: 85.16px;
  }
}
@media screen and (max-width: 480px) {
  :root {
    --header-height: 67.58px;
  }
  .site-logo1 {
    max-width: 226px;
    width: 100%;
  }
}
/*--- animation ---*/
.slide {
  opacity: 0;
  transition: 1.2s ease;
}
.slide.dir-left {
  transform: translateX(120px);
}
.slide.dir-right {
  transform: translateX(-120px);
}
.slide.dir-top {
  transform: translateY(120px);
}
.slide.dir-bottom {
  transform: translateY(-120px);
}
.anime.show.slide {
  opacity: 1;
  transform: translateX(0) translateY(0);
}
.fade {
  opacity: 0;
  transition: 1.6s ease;
}
.anime.show.fade {
  opacity: 1;
}
@media screen and (max-width: 640px) {
  .slide.dir-left {
    transform: translateX(60px);
  }
  .slide.dir-right {
    transform: translateX(-60px);
  }
  .slide.dir-top {
    transform: translateY(60px);
  }
  .slide.dir-bottom {
    transform: translateY(-60px);
  }
}
@media screen and (max-width: 480px) {
  .slide.dir-left {
    transform: translateX(40px);
  }
  .slide.dir-right {
    transform: translateX(-40px);
  }
  .slide.dir-top {
    transform: translateY(40px);
  }
  .slide.dir-bottom {
    transform: translateY(-40px);
  }
}
/*================
Layout
================*/
/*--- header ---*/
#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: #fff;
}
#header .header-container {
  padding: 10px 20px 40px 20px;
}
#header .header-menus__top {
  max-width: 1660px;
  margin: 0 auto;
}
#header .header-menus__top ul {
  display: flex;
  justify-content: flex-end;
}
#header .header-menus__top ul li {
  padding: 0 10px;
}
#header .header-menus__top ul li:first-child {
  border-right: 1px solid #dcdcdc;
}
#header .header-menus__top ul a {
  font-size: 12px;
  display: flex;
  gap: 0 5px;
  align-items: center;
}
#header .header-menus__top ul a:hover {
  text-decoration: underline;
  opacity: 0.7;
}
#header .header-menus__bottom .bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 5px;
}
#header .header-menus__bottom .linkArea {
  display: flex;
  align-items: center;
  column-gap: clamp(30px, calc(50px - (1920px - 100vw) * 0.5), 50px);
}
#header .header-menus__bottom .global-menu ul {
  display: flex;
  column-gap: clamp(40px, calc(80px - (1920px - 100vw) * 0.8), 80px);
}
#header .header-menus__bottom .global-menu ul li a {
  font-size: 15px;
  font-weight: bold;
  position: relative;
}
#header .header-menus__bottom .global-menu ul li a::after {
  content: "";
  display: block;
  --global-current: 50px;
  width: var(--global-current);
  aspect-ratio: 1 / 1;
  background-color: var(--orange02);
  border-radius: 100%;
  ;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: .3s;
}
#header .header-menus__bottom .global-menu ul li a:hover::after, #header .header-menus__bottom .global-menu ul li.is-current a::after {
  opacity: 1;
}
#header .header-menus__bottom .contact-menu {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 0 20px;
}
#header .header-menus__bottom .contact-menu .link.flex-center {
  gap: 10px;
  font-weight: 500;
}
#header .header-menus__bottom .contact-menu .link.tel {
  font-size: 26px;
}
#header .header-menus__bottom .contact-menu .link.button {
  font-size: 14px;
  color: #fff;
  background-color: var(--orange01);
  border: 1px solid var(--orange01);
  padding: 7px 2em;
  border-radius: 30px;
  transition: .3s;
}
#header .header-menus__bottom .contact-menu .link.button img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(100%) saturate(0%) hue-rotate(60deg) brightness(102%) contrast(102%);
}
#header .header-menus__bottom .contact-menu .link.button:hover {
  color: var(--orange01);
  background-color: #fff;
}
#header .header-menus__bottom .contact-menu .link.button:hover img {
  filter: brightness(0) saturate(100%) invert(58%) sepia(98%) saturate(356%) hue-rotate(338deg) brightness(99%) contrast(95%);
}
#header #nav-toggle {
  display: block;
  --toggle-w: 45px;
  width: var(--toggle-w);
  aspect-ratio: 45 / 24;
  position: relative;
  margin: auto 0;
  position: relative;
  z-index: 1020;
}
#header #nav-toggle span {
  display: inline-block;
  position: absolute;
  left: 0;
  height: 1px;
  background-color: #000;
  transition: ease-in-out 0.3s;
}
#header #nav-toggle span:nth-child(1) {
  width: 100%;
  top: 0;
}
#header #nav-toggle span:nth-child(2) {
  width: 80%;
  top: 50%;
}
#header #nav-toggle span:nth-child(3) {
  width: 60%;
  top: calc(100% - 1px);
}
#header #nav-toggle.open span {
  background-color: #fff;
}
#header #nav-toggle.open span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}
#header #nav-toggle.open span:nth-child(2) {
  transform: translateX(25%);
  opacity: 0;
  transition-delay: .15s;
}
#header #nav-toggle.open span:nth-child(3) {
  width: 100%;
  top: 50%;
  transform: rotate(-45deg);
}
#header #global-nav {
  position: fixed;
  top: 0;
  right: 0;
  width: 40%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  z-index: 1010;
  transition: .4s;
}
#header #global-nav .nav__container {
  padding: var(--header-height) 20px 20px;
}
#header #global-nav .link-menu.menu01 {
  padding: 20px 0;
}
#header #global-nav .link-menu.menu01 li {
  border-bottom: 1px solid #fff;
}
#header #global-nav .link-menu.menu01 li a {
  color: #fff;
  font-weight: bold;
  display: inline-block;
  padding: 10px 0;
  opacity: 0;
  transform: translateX(-10px);
  transition: transform .3s ease-out, opacity .6s;
  transition-delay: .1s;
}
#header #nav-toggle.open + #global-nav .link-menu.menu01 li a {
  opacity: 1;
  transform: translateX(0);
}
#header #nav-toggle.open + #global-nav .link-menu.menu01 li a:hover {
  opacity: 0.7;
}
#header #global-nav .link-menu.menu02 {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin-top: 40px;
}
#header #global-nav .link-menu.menu02 li {
  max-width: 294px;
  width: 50%;
}
#header #global-nav .link-menu.menu02 .link {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  font-weight: bold;
  background-color: #fff;
  border-radius: 10px;
  padding: 15px 10px;
  transition: .3s ease;
}
#header #global-nav .link-menu.menu02 a[href]:hover {
  color: #fff;
  background-color: #000;
}
#header #global-nav .link-menu.menu02 a[href]:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7489%) hue-rotate(143deg) brightness(92%) contrast(114%);
}
#header #nav-toggle.open + #global-nav {
  opacity: 1;
  visibility: visible;
}
#header #nav-bg {
  display: block;
  width: 40%;
  height: 100%;
  background-color: var(--orange01);
  position: fixed;
  top: 0px;
  right: 0px;
  visibility: hidden;
  opacity: 0;
  z-index: 1009;
  transition: ease-in-out .3s;
}
#header #nav-toggle.open ~ #nav-bg {
  visibility: visible;
  opacity: 1;
}
@media screen and (max-width: 1280px) {
  #header .header-menus__top, #header .header-menus__bottom .global-menu, #header .header-menus__bottom .contact-menu {
    display: none;
  }
  #header .header-menus__bottom .bottom__inner {
    padding-top: 0;
  }
}
@media screen and (max-width: 780px) {
  #header #global-nav, #header #nav-bg {
    width: 100%;
  }
  #header .header-container {
    padding: 20px;
  }
  #header #nav-toggle {
    --toggle-w: 40px;
    aspect-ratio: 10 / 7;
  }
}
@media screen and (max-width: 480px) {
  #header #nav-toggle {
    --toggle-w: 35px;
  }
  #header #global-nav .link-menu.menu02 {
    flex-direction: column;
    gap: 10px 0;
  }
  #header #global-nav .link-menu.menu02 li {
    width: 100%;
  }
}
/*--- footer ---*/
#footerPageTop .pageTop {
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: .3s;
}
#footerPageTop p {
  text-align: center;
  line-height: 1.2;
}
#footerPageTop .pageTop .arrow {
  display: inline-block;
  width: 12px;
  height: 44px;
  position: relative;
  margin-block: 12px;
}
#footerPageTop .pageTop .arrow::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  border-right: 1px solid #F59749;
  border-top: 1px solid #F59749;
  transform: skewY(-45deg) translateX(calc(-50% - 6px));
  position: absolute;
  top: 0;
  left: 50%;
}
#footerPageTop .pageTop:hover {
  transform: translateY(-10px);
}
#footerPageTop .pageTop span {
  font-family: 'Tw Cen MT', serif;
  font-weight: 500;
  font-size: 15px;
}
#footer {
  padding-left: 4.11111111111vw; /*8.33333333333*/
}
#footer .site-logo1 {
  max-width: 226px;
  display: block;
  filter: brightness(0) saturate(100%) invert(99%) sepia(25%) saturate(203%) hue-rotate(279deg) brightness(116%) contrast(100%);
  margin-bottom: 40px;
}
#footer .site-logo2 {
  gap: 20px 0;
}
#footer .site-logo2 .text01 {
  max-width: 64px;
}
#footer .site-logo2 .text01 img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(2%) saturate(7500%) hue-rotate(293deg) brightness(114%) contrast(101%);
}
#footer .footer-container {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
}
#footer .footer-body {
  max-width: 1850px;
  flex-grow: 1;
  color: #fff;
  background-color: #F59749;
  border-radius: 30px 0 0 0;
  padding: 40px 20px 20px 20px;
}
#footer .footer-body .footer-body__contents {
  max-width: 1630px;
  display: flex;
  column-gap: clamp(2.5%, calc(10% - (1920px - 100vw) * 0.4), 10%);
  padding-bottom: 40px;
  margin-left: auto;
}
#footer .footer-body__contents .name .site-logo2 {
  margin: 0 auto;
}
#footer .footer-body__contents .box.menu {
  margin-top: 80px;
}
#footer .footer-body__contents .box.menu ul {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
#footer .footer-body__contents .box.menu ul li a {
  position: relative;
}
#footer .footer-body__contents .box.menu ul li a::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  left: 0;
  bottom: 0;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: .3s;
}
#footer .footer-body__contents .box.menu ul li a:hover::after {
  transform: scale(1, 1);
}
#footer .footer-body__contents .box.contactus {
  border-left: 1px solid #fff;
  padding: 0 0 40px clamp(20px, calc(40px - (1920px - 100vw) * 0.2), 40px);
  margin-top: 40px;
}
#footer .footer-body__contents .box.contactus .label {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
}
#footer .footer-body__contents .box.contactus .buttons {
  display: grid;
  grid-auto-rows: 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
#footer .footer-body__contents .box.contactus .buttons li {
  max-width: 294px;
  width: 100%;
}
#footer .footer-body__contents .box.contactus .buttons .button {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  color: #000;
  font-weight: 600;
  background-color: #fff;
  border-radius: 10px;
  padding: 10px;
  transition: .3s;
}
#footer .footer-body__contents .box.contactus .buttons .button.contact {
  font-size: 17px;
}
#footer .footer-body__contents .box.contactus .buttons .button.tel {
  font-size: 26px;
}
#footer .footer-body__contents .box.contactus .buttons .button[href]:hover {
  color: #fff;
  background-color: #000;
}
#footer .footer-body__contents .box.contactus .buttons .button[href]:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(116deg) brightness(109%) contrast(109%);
}
#footer .footer-body__contents .box.contactus .address {
  font-family: 'Meiryo UI';
  font-size: 14px;
}
#footer .footer-body .copyright {
  max-width: 1630px;
  font-family: 'Meiryo UI';
  font-size: 10px;
  margin-left: auto;
}
@media screen and (max-width: 1280px) {
  #footer {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  #footer {
    padding-left: 0;
  }
  #footer .footer-body {
    border-radius: 0;
  }
  #footer .footer-container {
    flex-direction: column;
  }
  #footer #footerPageTop {
    align-self: center;
  }
}
@media screen and (max-width: 780px) {
  #footer .footer-body .footer-body__contents {
    flex-direction: column;
  }
  #footer .footer-body__contents .box.menu {
    padding-top: 20px;
    border-top: 1px solid #fff;
    margin-top: 60px;
  }
  #footer .footer-body__contents .box.contactus {
    border-top: 1px solid #fff;
    border-left: none;
    padding: 20px 0 0 0;
  }
  #footer .footer-body__contents .box.contactus .buttons {
    grid-template-columns: 1fr 1fr;
    margin-bottom: 15px;
  }
  #footer .footer-body__contents .box.contactus .buttons li {
    max-width: 100%;
  }
  #footer .footer-body__contents .box.contactus .buttons .button.tel {
    font-size: 19px;
  }
  #footer .footer-body__contents .box.contactus .address {
    text-align: center;
  }
}
@media screen and (max-width: 480px) {
  #footer .footer-body__contents .box.menu {
    margin-top: 30px;
  }
  #footer .footer-body__contents .box.contactus .buttons {
    grid-template-columns: 1fr;
  }
  #footer .footer-body__contents .box.contactus .address, #footer .footer-body .copyright p {
    font-size: 12px;
  }
}
.site-content {
  padding-top: var(--header-height);
}
/* related-links */
#related-links {
  padding-block: 80px 100px;
}
#related-links ul {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5%;
  padding-inline: var(--paddings);
}
#related-links li a {
  transition: .3s;
}
#related-links li a:hover {
  opacity: 0.7;
}
/*================
TOP
================*/
/* hero */
.top #hero {
  overflow: hidden;
}
.top #hero .site-logo2 .anime2 {
  transition-delay: 0.2s;
}
.top #hero .site-logo2 .anime3 {
  transition-delay: 0.4s;
}
.top #hero .mainImg .inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  column-gap: clamp(40px, calc(60px - (1920px - 100vw) * 0.6), 60px);
  padding-left: 20px;
  margin-bottom: 60px;
}
.top #hero .mainImg .background {
  position: relative;
  overflow: hidden;
}
.top #hero .mainImg .background .img {
  display: block;
  overflow: hidden;
  position: relative;
  border-radius: 20px 0 0 20px;
  pointer-events: none;
  transition-delay: 0.8s;
}
.top #hero .mainImg .background .img::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url("../images/share/filter.png") repeat top left;
  width: 100%;
  height: 100%;
  opacity: 0.5;
}
.top #hero .mainImg .site-logo2 {
  color: var(--orange01);
  gap: clamp(30px, calc(50px - (1920px - 100vw) * 0.35), 50px) 0;
  position: relative;
  z-index: 2;
}
.top #hero .mainImg .site-logo2 > * {
  position: relative;
}
.top #hero .mainImg .site-logo2 .text01 {
  font-size: clamp(7.5rem, 1.786rem + 8.93vw, 12.5rem);
}
.top #hero .mainImg .site-logo2 .text02 {
  font-size: clamp(0.75rem, 0.286rem + 1.12vw, 1.625rem);
}
.top #hero .mainImg .desc {
  color: #fff;
  text-align: center;
  z-index: 10;
  transition-delay: 1.2s;
}
.top #hero .mainImg .desc.pc {
  font-size: clamp(2.125rem, 1.411rem + 1.12vw, 2.75rem);
  position: absolute;
  top: 40%;
  left: 50%;
}
.top #hero .mainImg .desc.sp {
  font-size: clamp(1.25rem, -0.208rem + 4.86vw, 2.125rem);
  display: none;
}
@media screen and (min-width: 1921px) {
  .top #hero .mainImg .site-logo2 {
    flex-grow: 1;
  }
}
@media screen and (max-width: 780px) {
  .top #hero .mainImg {
    aspect-ratio: 65 / 109;
    position: relative;
    overflow: hidden;
    margin-bottom: 60px;
  }
  .top #hero .mainImg .desc.pc {
    display: none;
  }
  .top #hero .mainImg .desc.sp {
    display: block;
  }
  .top #hero .mainImg .inner {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: clamp(30px, calc(60px - (780px - 100vw) * 0.2), 60px);
    padding: 0 20px;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .top #hero .mainImg .site-logo2 .text01 {
    max-width: clamp(108px, calc(204px - (780px - 100vw) * 0.4), 204px);
  }
  .top #hero .mainImg .site-logo2 .text01 {
    font-size: clamp(7.5rem, 2.729rem + 20.36vw, 12.5rem);
  }
  .top #hero .mainImg .site-logo2 .text02 {
    font-size: 20px;
  }
  .top #hero .mainImg .site-logo2 > *::before, .top #hero .mainImg .site-logo2 > *::after {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    transform: translateY(-1px);
  }
  .top #hero .mainImg .site-logo2 .text01::before, .top #hero .mainImg .site-logo2 .text01::after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    filter: brightness(0) saturate(100%) invert(99%) sepia(34%) saturate(0%) hue-rotate(33deg) brightness(112%) contrast(100%) blur(9px);
  }
  .top #hero .mainImg .site-logo2 .text01.haru::before, .top #hero .mainImg .site-logo2 .text01.haru::after {
    background-image: url("../images/share/site-logo02-1.svg");
  }
  .top #hero .mainImg .site-logo2 .text01.kaze::before, .top #hero .mainImg .site-logo2 .text01.kaze::after {
    background-image: url("../images/share/site-logo02-2.svg");
  }
  .top #hero .mainImg .site-logo2 .text02::before, .top #hero .mainImg .site-logo2 .text02::after {
    content: attr(data-text);
    position: absolute;
    inset: 0;
    color: #fff;
    transform: translateY(1px);
    filter: blur(5px);
  }
  .top #hero .mainImg .background {
    position: absolute;
    inset: 0;
  }
  .top #hero .mainImg .background .img {
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  .top #hero .mainImg .site-logo2 .text02 {
    font-size: 16px;
  }
  .top #hero .mainImg .desc.sp {
    font-size: 22px;
  }
}
/* plan */
.top .plan {
  margin-bottom: 100px;
  --cards-gap: 70px;
}
.top .plan .plan__container {
  padding: 0 var(--paddings);
}
.top .plan .planComment {
  font-size: clamp(1.875rem, 1.458rem + 0.87vw, 2.5rem);
  color: #F59749;
  font-weight: bold;
  text-align: center;
  width: 24.8em;
	max-width: 100%;
  margin: 0 auto 40px;
}
/*_:lang(x)::-moz-placeholder, .top .plan .planComment {
  width: 24.8em;
}*/
.top .plan .plan__title {
  font-size: clamp(1.875rem, 1.458rem + 0.87vw, 2.5rem);
  color: #F59749;
  font-weight: bold;
  text-align: center;
  margin-bottom: 40px;
}
.top .plan .plan__list {
  display: grid;
  grid-template-columns: repeat(2, 400px);
  justify-content: center;
  gap: 0 var(--cards-gap);
  margin-bottom: 10px;
}
.top .plan .plan__list .plan__card {
  max-width: 400px;
  width: 100%;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  font-weight: bold;
  border: 3px solid;
  border-radius: 15px;
  padding: 40px 20px 60px;
}
.top .plan .plan__list .plan__card.card1 {
  border-color: #F5994D;
  background-color: #FFFBEA;
}
.top .plan .plan__list .plan__card.card2 {
  border-color: #FF7373;
  background-color: #FFEFEE;
}
.top .plan .plan__card .card__title {
  font-weight: bold;
  text-align: center;
  line-height: 1.2;
  padding-bottom: 20px;
  border-bottom: 1px dotted #000;
  margin-bottom: 20px;
}
.top .plan .plan__card .card__title .title__main {
  font-size: 36px;
  margin-bottom: 20px;
}
.top .plan .plan__card .card__title .title__sub {
  font-size: 23px;
}
.top .plan .plan__card .card__amount {
  font-size: 40px;
  text-align: center;
}
.top .plan .plan__card .card__amount .including-tax, .top .plan .plan__card .card__amount .sub {
  font-size: 16px;
}
.top .plan .plan__card .card__list {
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  margin-bottom: 20px;
}
.top .plan .plan__card .card__list li {
  display: flex;
  align-items: flex-start;
  column-gap: 5px;
  font-size: 15px;
  line-height: 1.3;
  position: relative;
}
.top .plan .plan__card .card__list li img {
  max-width: 18px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
}
.top .plan .card__desc {
  display: none;
}
.top .plan .plan__text {
  display: flex;
  justify-content: center;
  gap: 0 var(--cards-gap);
}
.top .plan .card__desc, .top .plan .plan__text li {
  max-width: 400px;
  width: 50%;
  color: #E02F2F;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 0.9em;
  text-indent: -0.9em;
  letter-spacing: -0.1em;
}
.top .plan .plan__text li {
  max-width: 400px;
}
/*
.top .plan__button {
    display: block;
    max-width: 450px;
    font-size: 23px;
    font-weight: bold;
    text-align: center;
    background-color: var(--orange01);
    border: 3px solid var(--orange01);
    border-radius: 9999px;
    padding: 1em 0;
    margin: 20px auto;
    transition: .3s;
}
.top .plan__button:hover {
    color: var(--orange01);
    background-color: #fff;
}
*/
@media screen and (max-width: 960px) {
  .top .plan .plan__list {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .top .plan .plan__list .plan__card.card2 {
    margin-top: 70px;
  }
  .top .plan .card__desc {
    display: block;
    width: 100%;
    margin-top: 10px;
  }
  .top .plan .plan__text {
    display: none;
  }
}
@media screen and (max-width: 480px) {
  .top .plan .planComment {
    font-size: 24px;
  }
  .top .plan .plan__title {
    font-size: 24px;
  }
  .top .move-in {
    font-size: 17px;
  }
  .top .desc {
    padding: 0;
  }
  .top .plan .plan__card .card__title .title__main {
    font-size: 26px;
  }
  .top .plan .plan__card .card__title .title__sub {
    font-size: 18px;
  }
  .top .plan .plan__card .card__amount {
    font-size: 28px;
  }
  .top .plan .plan__card .card__amount .including-tax, .top .plan .plan__card .card__amount .sub {
    font-size: 14px;
  }
  .top .plan .card__desc {
    font-size: 13px;
  }
  /*
    .top .plan__button {
        font-size: 19px;
    }
    */
}
@media screen and (max-width: 400px) {
  .top .plan .card__desc, .top .plan .plan__text li {
    max-width: 100%;
  }
}
/* menu-list */
.top #site-menu {
  padding-bottom: 45px;
}
.top #site-menu .list {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5%;
  padding-inline: var(--paddings);
}
.top #site-menu .list li {
  text-align: center;
  line-height: 1.2;
}
.top #site-menu .list li .circle__item, .top #site-menu .list li .circle {
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1 / 1;
  border-radius: 100%;
  transition: .3s ease;
}
.top #site-menu .list li .circle__item {
  max-width: 192px;
  width: 192px;
  border: 2px solid transparent;
  background-color: rgba(245, 151, 73, 0.7);
  border-radius: 100%;
}
.top #site-menu .list li .circle {
  width: 80%;
  background-color: rgb(245, 151, 73);
}
.top #site-menu .list li .circle img {
  width: 50%;
  height: 50%;
  object-fit: contain;
}
.top #site-menu .list li .en {
  font-family: 'Meiryo UI', sans-serif;
  font-size: 12px;
  margin-block: 10px;
}
.top #site-menu .list li .jp {
  font-size: 28px;
}
.top #site-menu .list li a:hover .circle__item {
  background-color: transparent;
  border-color: #F38123;
}
.top #site-menu .list li a:hover .circle {
  background-color: #F38123;
}
.top #site-menu .list::-webkit-scrollbar {
  display: none;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
@media screen and (max-width: 780px) {
  .top #site-menu {
    padding-bottom: 150px;
  }
  .top #site-menu .list {
    gap: 20px;
    justify-content: space-between;
  }
  .top #site-menu .list li {
    width: calc(100% / 3);
  }
  .top #site-menu .list li a {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .top #site-menu .list li .circle__item {
    width: 100%;
  }
}
@media screen and (max-width: 640px) {
  .top #site-menu .wrapper .list {
    margin-bottom: 20px;
  }
  .top #site-menu .list li .jp {
    font-size: clamp(1.25rem, 0.5rem + 2.5vw, 1.5rem);
  }
}
@media screen and (max-width: 480px) {
  .top #site-menu {
    padding-bottom: 110px;
  }
  .top #site-menu .list {
    gap: 10px;
  }
  .top #site-menu .list li .en {
    font-size: 10px;
  }
  .top #site-menu .list li .jp {
    font-size: 16px;
  }
}
/* wide-image */
.top #wide-image {
  padding-bottom: 60px;
}
@media screen and (max-width: 780px) {
  .top #wide-image {
    display: none;
  }
}
/* slider */
.top #gallery {
  display: none;
  padding-bottom: 60px;
}
.top #gallery .swiper-wrapper {
  align-items: stretch;
  transition-timing-function: linear;
}
.top #gallery .swiper-slide {
  width: 360px;
  flex-shrink: 0;
}
.top #gallery .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 780px) {
  .top #gallery {
    display: block;
  }
}
@media screen and (max-width: 480px) {
  .top #gallery .swiper-slide {
    width: 180px;
  }
}
/*================
content-pages
================*/
#main {
  padding-top: var(--header-height);
}
.page .page-header {
  max-width: 1730px;
  padding-left: 20px;
  margin: 60px 0 0 auto;
}
.page .page-header .page-header__container {
  background-color: var(--orange01);
  border-radius: 15px 0 0 15px;
  padding: 40px;
}
.page .page-header .page-title.jp {
  font-size: 47px;
  color: #fff;
}
.page .page-header .page-title.en {
  font-size: 32px;
}
.page .page-detail {
  max-width: 1304px;
  padding-inline: var(--paddings);
  margin: 56px auto 0 auto;
}
.page .move-in {
  display: flex;
  align-items: center;
  gap: 0 40px;
  font-size: clamp(1.438rem, 1.104rem + 0.69vw, 1.938rem) /*31px*/ ;
  font-weight: 800;
  background-color: var(--yellow01);
  border-radius: 0.5em;
  padding: 0.75em;
  margin-bottom: 24px;
}
.page .move-in .text01 {
  background-color: #FFBF00;
  border-radius: 10px;
  padding: 10px;
}
@media screen and (max-width: 480px) {
  .page .page-header .page-header__body {
    padding: 30px;
  }
  .page .page-header .page-title.jp {
    font-size: 35px;
    color: #fff;
  }
  .page .page-header .page-title.en {
    font-size: 20px;
  }
  .page .page-detail {
    margin-top: 46px;
  }
  .page .move-in {
    font-size: 27px;
    flex-direction: column;
  }
}
/* price */
.price-pageLayout .section {
  padding-bottom: 120px;
}
.price-pageLayout .section .section__heading {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 0.5em;
}
.price-pageLayout .section .section__heading span {
  display: inline-block;
}
.price-pageLayout .section .section__heading .sub-text {
  font-size: 16px;
}
.price-pageLayout table {
  width: 100%;
  border-collapse: collapse;
}
.price-pageLayout table thead th, .price-pageLayout table tbody th, .price-pageLayout table tbody td {
  border-bottom: 1px solid #dcdcdc;
  line-height: 2;
  padding: 0.75em 10px;
  white-space: nowrap;
}
.price-pageLayout table thead th, .price-pageLayout table tbody th {
  font-weight: bold;
  text-align: left;
}
.price-pageLayout table thead th {
  padding-block: 5px;
}
.price-pageLayout table .multiLine {
  vertical-align: top;
}
.price-pageLayout #section01 table th {
  font-size: 1.25em;
}
.price-pageLayout #section01 table tr th, .price-pageLayout #section01 table tr td {
  width: 15.6%;
}
.price-pageLayout #section01 table tr th:first-child, .price-pageLayout #section01 table tr td:first-child {
  width: 22%;
  text-align: center;
}
.price-pageLayout #section02 table .row-text {
  writing-mode: vertical-rl;
}
.price-pageLayout #section02 table tr th, .price-pageLayout #section02 table tr td {
  width: calc(75% / 5);
}
.price-pageLayout #section02 table tr th:first-child, .price-pageLayout #section02 table tr td:first-child {
  width: 7.5%;
}
.price-pageLayout #section02 table tr th:nth-child(2), .price-pageLayout #section02 table tr td:nth-child(2) {
  width: 17.5%;
}
.price-pageLayout #section02 table .last th, .price-pageLayout #section02 table .last td {
  background-color: #FFF7F7;
  padding-block: 2.5em;
}
.price-pageLayout #section03 table tr th, .price-pageLayout #section03 table tr td:nth-child(2) {
  width: calc(50% / 2);
}
.price-pageLayout #section03 table tr td:last-child {
  width: calc(100% - 50%);
}
.price-pageLayout #section04 table tr th {
  width: 25%;
}
.price-pageLayout #section04 table tr td {
  width: 75%;
}
.price-pageLayout #section05 table tr th {
  font-size: 20px;
}
.price-pageLayout #section05 table tr th:not(:first-child), .price-pageLayout #section05 table tr td:not(:first-child) {
  width: calc(94% / 6);
}
.price-pageLayout #section05 table tr th:first-child, .price-pageLayout #section05 table tr td:first-child {
  width: 6%;
}
.price-pageLayout .note {
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .table-box {
    overflow-x: scroll;
    border: 1px solid #dcdcdc;
    border-radius: 10px;
    padding: 20px;
  }
  .price-pageLayout .section .section__heading {
    font-size: 20px;
  }
  .price-pageLayout .section .section__heading .sub-text {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .price-pageLayout .section {
    padding-bottom: 100px;
  }
}
/*user-guide*/
.page .page-detail:has(.userGuide-pageLayout) {
  max-width: 100%;
  padding: 0;
}
.userGuide-pageLayout #information .container {
  max-width: 1000px;
  padding: 0 var(--paddings);
  margin: 0 auto;
}
.userGuide-pageLayout #information .desc {
  line-height: 2;
  padding-bottom: 80px;
}
.userGuide-pageLayout #information .desc .text01 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 10px;
}
.userGuide-pageLayout #information .desc {
  font-size: 15px;
}
.userGuide-pageLayout #about {
  padding-bottom: 60px;
}
.userGuide-pageLayout #about .container {
  max-width: 1550px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 20px;
  padding: 0 0 0 var(--paddings);
  margin-left: auto;
}
.userGuide-pageLayout #about .about__desc {
  width: 50%;
  font-family: a-otf-ryumin-pr6n, serif;
  font-style: normal;
  font-weight: 300;
  line-height: 2;
}
.userGuide-pageLayout #about .about__desc .title {
  font-size: 35px;
  font-weight: 500;
  margin-bottom: 20px;
}
.userGuide-pageLayout #about .about__desc .text {
  display: flex;
  flex-direction: column;
  row-gap: 40px;
  font-size: 20px;
  letter-spacing: -0.1rem;
}
.userGuide-pageLayout #about .about__image {
  width: 50%;
  text-align: right;
}
@media screen and (max-width: 1380px) {
  .userGuide-pageLayout #about .about__desc .br {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .userGuide-pageLayout #about .container {
    flex-direction: column;
    gap: 20px;
  }
  .userGuide-pageLayout #about .about__desc, .userGuide-pageLayout #about .about__image {
    width: 100%;
  }
  .userGuide-pageLayout #about .about__desc {
    max-width: 670px;
    padding-right: var(--paddings);
    margin-inline: auto;
  }
  .userGuide-pageLayout #about .about__image {
    margin-left: auto;
  }
}
@media screen and (max-width: 780px) {
  .userGuide-pageLayout #about .about__desc .title {
    font-size: 31px;
  }
}
@media screen and (max-width: 480px) {
  .userGuide-pageLayout #about .about__desc .title {
    font-size: 21px;
  }
  .userGuide-pageLayout #about .about__desc .text {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .userGuide-pageLayout #information .move-in {
    font-size: 17px;
  }
  .userGuide-pageLayout #information .desc {
    padding-bottom: 60px;
  }
}
.userGuide-pageLayout #access {
  max-width: 1550px;
  margin: 0 auto;
  padding: 0 var(--paddings);
}
.userGuide-pageLayout #access .inContainer {
  background-color: #F4F4F4;
  display: grid;
  grid-template-areas: 'access-logo access-map'
    'access-contact access-map'
    'access-address access-map';
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: auto auto 1fr;
  justify-content: space-between;
  align-items: center;
  border-radius: 1.25em;
  overflow: hidden;
  position: relative;
}
.userGuide-pageLayout #access .site-logo1 {
  max-width: 100%;
  width: auto;
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 28px;
  margin: 20px 0 40px 0;
  position: relative;
  grid-area: access-logo;
}
.userGuide-pageLayout #access .site-logo1 .text01 {
  font-size: 14px;
}
.userGuide-pageLayout #access .site-logo1 .text02 {
  font-size: 23px;
  font-weight: bold;
}
.userGuide-pageLayout #access .site-logo1::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 100%;
  background-color: #F59749;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.userGuide-pageLayout #access .site-logo1 .inner {
  margin: 0 auto;
}
.userGuide-pageLayout #access .access__contact {
  padding: 0 20px;
  margin: 0 0 40px 0;
  grid-area: access-contact;
}
.userGuide-pageLayout #access .access__contact > * {
  margin: 0 auto;
}
.userGuide-pageLayout #access .access__contact .button {
  max-width: 440px;
  column-gap: 10px;
  font-weight: 500;
  background-color: #fff;
  border: 1px solid #000;
  padding: 10px;
  border-radius: 0.5em;
  margin-bottom: 10px;
  transition: .3s;
}
.userGuide-pageLayout #access .access__contact .button img {
  transition: .3s;
}
.userGuide-pageLayout #access .access__contact .button .num {
  font-size: 26px;
}
.userGuide-pageLayout #access .access__contact .button .jp {
  font-size: 18px;
}
.userGuide-pageLayout #access .access__contact .button[href]:hover {
  color: #fff;
  background-color: #000;
}
.userGuide-pageLayout #access .access__contact .button[href]:hover img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(36%) saturate(1979%) hue-rotate(277deg) brightness(127%) contrast(110%);
}
.userGuide-pageLayout #access .access__contact .fax {
  font-size: 26px;
  font-weight: 500;
  text-align: center;
}
.userGuide-pageLayout #access .access__address {
  grid-area: access-address
}
.userGuide-pageLayout #access .access__address .address-block {
  width: fit-content;
  gap: 20px;
  padding: 0 20px 20px;
  margin: 0 auto;
}
.userGuide-pageLayout #access .access__map {
  display: flex;
  justify-content: flex-end;
  grid-area: access-map;
}
.userGuide-pageLayout #access .access__map iframe {
  display: block;
  aspect-ratio: 714 / 574;
  margin: 0 auto;
}
@media screen and (max-width: 1280px) {
  .userGuide-pageLayout #access .inContainer {
    grid-template-areas: 'access-logo'
      'access-map'
      'access-address'
      'access-contact';
    grid-template-columns: 1fr;
    padding: var(--paddings)
  }
  .userGuide-pageLayout #access .inContainer > * {
    padding: 0;
    margin: 0;
  }
  .userGuide-pageLayout #access .site-logo1 {
    width: auto;
    padding-left: 28px;
    margin-bottom: 40px;
  }
  .userGuide-pageLayout #access .access__map {
    justify-content: center;
    margin-bottom: 30px;
  }
  .userGuide-pageLayout #access .access__contact {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .userGuide-pageLayout #access .access__contact > * {
    width: calc(50% - 10px);
  }
  .userGuide-pageLayout #access .access__contact .button .num, .userGuide-pageLayout #access .access__contact .fax {
    font-size: 18px;
  }
  .userGuide-pageLayout #access .access__contact .button .jp {
    font-size: 14px;
  }
  .userGuide-pageLayout #access .access__address {
    margin-bottom: 50px;
  }
  .userGuide-pageLayout #access .access__address .address-block {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 780px) {
  .userGuide-pageLayout #access .site-logo1 {
    align-items: flex-start;
  }
  .userGuide-pageLayout #access .site-logo1 .inner {
    margin: 0;
  }
  .userGuide-pageLayout #access .access__contact {
    flex-direction: column;
  }
  .userGuide-pageLayout #access .access__contact > * {
    width: 100%;
    margin: 0 auto 0;
  }
}
@media screen and (max-width: 640px) {
  .userGuide-pageLayout #access .site-logo1 .text01 {
    font-size: 13px;
  }
  .userGuide-pageLayout #access .site-logo1 .text02 {
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .userGuide-pageLayout #access .site-logo1 {
    padding-left: 16px;
  }
  .userGuide-pageLayout #access .site-logo1::before {
    width: 6px;
  }
  .userGuide-pageLayout #access .access__contact .button .num {
    font-size: 14px;
  }
  .userGuide-pageLayout #access .access__contact .button .jp {
    font-size: 12px;
  }
  .userGuide-pageLayout #access .access__address .address-block {
    font-size: 14px;
  }
}
/* facility */
.page .page-detail:has(.facility-pageLayout) {
  max-width: unset;
  padding: unset;
}
.facility-pageLayout .top-contents {
  max-width: 1550px;
  margin: 0 auto 40px;
  padding: 0 var(--paddings);
}
.facility-pageLayout .comment {
  font-size: 20px;
  line-height: 2;
  margin-bottom: 50px;
}
.facility-pageLayout .move-in {
  width: fit-content;
  font-size: 20px;
  margin-bottom: 50px;
}
.facility-pageLayout .desc {
  display: flex;
  gap: 40px;
}
.facility-pageLayout .desc .text01 {
  font-size: 20px;
  font-weight: bold;
}
.facility-pageLayout .section-group {
  margin-bottom: 260px;
}
.facility-pageLayout .section {
  padding-top: 64px;
}
.facility-pageLayout .section .section__heading {
  min-width: max-content;
  flex: 1 1 auto;
}
.facility-pageLayout .section .section__heading .jp {
  font-size: 35px;
  font-weight: bold;
}
.facility-pageLayout .section .section__heading .en {
  display: inline-block;
  white-space: normal;
  color: #666666;
  font-size: 18px;
  font-weight: bold;
}
.facility-pageLayout .section .container {
  position: relative;
}
.facility-pageLayout .section .media {
  max-width: fit-content;
  display: flex;
  align-items: center;
  gap: 30px;
  padding-inline: 20px;
  margin: 0 auto;
}
.facility-pageLayout .section.right .media {
  flex-direction: row-reverse;
}
.facility-pageLayout #section01.section .media {
  gap: clamp(30px, calc(120px - (1920px - 100vw) * 0.6), 120px);
}
/*
.facility-pageLayout .section.left .media {
    margin-left: calc((100vw - 1550px) * 3 / 5);
    margin-right: calc((100vw - 1550px) * 2 / 5);
}
.facility-pageLayout .section.right .media {
    flex-direction: row-reverse;
    margin-left: calc((100vw - 1550px) * 2 / 5);
    margin-right: calc((100vw - 1550px) * 3 / 5);
}
*/
.facility-pageLayout .section .bg {
  display: block;
  max-width: 1504px;
  width: 100%;
  aspect-ratio: 1504 / 860;
  background-color: #F59749;
  position: absolute;
  top: 7.5%;
  z-index: -1;
}
.facility-pageLayout .section.left .bg {
  right: clamp(-9%, calc(-7.5% + (-9% - (-7.5%)) * (1920px - 100vw) / 640px), -7.5%); /* 640px = (1920px - 1280px) */
  margin-left: 20px; 
  border-radius: 2em 0 0 2em;
}
.facility-pageLayout .section.right .bg {
  left: clamp(-9%, calc(-7.5% + (-9% - (-7.5%)) * (1920px - 100vw) / 640px), -7.5%);
  margin-right: 20px;
  border-radius: 0 2em 2em 0;
}
.facility-pageLayout .section .img {
  flex: 2 2 auto;
}
.facility-pageLayout .section.left img {
  display: block;
  margin-right: auto;
}
.facility-pageLayout .section.right img {
  display: block;
  margin-left: auto;
}
@supports (-moz-appearance: none) {
  .facility-pageLayout .section.left .bg {
    right: clamp(-9%, -8%, -7.5%);
  }

  .facility-pageLayout .section.right .bg {
    left: clamp(-9%, -8%, -7.5%);
  }
}
@media screen and (max-width: 1570px) {
  .facility-pageLayout .section .section__media .media-bg {
    width: auto;
  }
}
@media screen and (max-width: 1420px) {
  .facility-pageLayout .section.left .media, .facility-pageLayout .section.right .media {
    margin: 0 auto;
  }
}
@media screen and (max-width: 1280px) {
  .facility-pageLayout .section.left .media, .facility-pageLayout .section.right .media {
    flex-direction: column;
    gap: 20px;
  }
  .facility-pageLayout .section.left .bg, .facility-pageLayout .section.right .bg {
    top: clamp(20%, calc(20% + (25% - 20%) * (1280px - 100vw) / 512px), 25%); /* 512px = (1280px - 768px) */
  }
  .facility-pageLayout #section03.section .bg {
    top: clamp(22%, calc(23% + (28% - 23%) * (1280px - 100vw) / 512px), 28%); 
  }
}
@media screen and (max-width: 1024px) {
  .facility-pageLayout .desc {
    flex-direction: column;
  }
}
@media screen and (max-width: 780px) {
  .facility-pageLayout .section {
    padding-top: 48px;
  }
  .facility-pageLayout .section .section__heading {
    min-width: unset;
  }
  .facility-pageLayout .section.left .bg, .facility-pageLayout .section.right .bg {
    top: clamp(25%, calc(25% + (40% - 25%) * (768px - 100vw) / 393px), 40%); /* 393px = (768px - 375px)*/
  }
  .facility-pageLayout #section03.section .bg {
    top: clamp(28%, calc(28% + (43% - 28%) * (768px - 100vw) / 393px), 43%);
  }
}
@media screen and (max-width: 480px) {
  .facility-pageLayout .comment {
    font-size: 18px;
  }
  .facility-pageLayout .move-in {
    width: 100%;
    gap: 10px 0px;
    font-size: 16px;
  }
  .facility-pageLayout .section .section__heading .jp {
    font-size: 25px;
  }
  .facility-pageLayout .section .section__heading .en {
    font-size: 14px;
  }
}