/* ===============
base
=============== */
:root {
  --black-txt: #25282b;
  --blue-main: #2d579a;
  --blue-arrowBg: #3a63a6;
  --blue-shadow: #25282b;
  --skyblue-bg: #f2f4f8;
  --skyblue-thMain: #edf1f7;
  --skyblue-footer: #7995c2;
  --red-accent: #a12612;
  --gray-line: #c8c9cc;
  --col-8: 60.8vw;
  --col-10: 76.5vw;
  --col-12: 92vw;
}

body {
  font-family: "Noto Sans JP", "Noto Serif JP", "Fasthand", sans-serif;
  font-size: clamp(14px, 0.8vw, 16px);
  font-style: normal;
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  text-align: justify;
  text-box: trim-both text;
  color: var(--black-txt);
  overflow-x: hidden;
  background-color: #fff;
}

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

.descContainer p {
  margin-top: clamp(14px, 0.8vw, 16px);
  line-height: 1.75;
}
.descContainer p:first-of-type {
  margin-top: 0;
}

span {
  display: inline-block;
}

.blank {
  line-height: 1 !important;
}

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

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

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

@media (orientation: landscape) {
  .vtBr {
    display: none;
  }
}
@media (orientation: portrait) {
  .vtBr {
    display: block;
  }
}

/* ===============
page-transition
=============== */
.body::before {
  display: block;
  content: "";
  width: 100vw;
  height: 100vh;
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  animation: blur 1s linear forwards;
  pointer-events: none;
}

@keyframes blur {
  0% {
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
  }
  100% {
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
  }
}
/* ===============
header
=============== */
.header {
  width: 100%;
  padding: clamp(12px, 1.2vw, 24px) clamp(15px, 2vw, 40px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: 0.4s;
}
.header .header__right {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.2vw, 24px);
}
.header .header__right .tel {
  color: var(--blue-main);
}
.header .header__right .tel a span {
  color: var(--blue-main);
}
.header .header__right .openBtn {
  position: relative;
  z-index: 110;
  cursor: pointer;
  width: clamp(32px, 2.6vw, 52px);
  aspect-ratio: 52/32;
}
.header .header__right .openBtn span {
  display: inline-block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background: var(--black-txt);
  transition: all 0.4s;
}
.header .header__right .openBtn span:nth-of-type(1) {
  top: 0;
}
.header .header__right .openBtn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}
.header .header__right .openBtn span:nth-of-type(3) {
  top: 100%;
}
.header .header__right .openBtn.active span {
  background-color: #fff;
}
.header .header__right .openBtn.active span:nth-of-type(1) {
  width: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(-30deg);
}
.header .header__right .openBtn.active span:nth-of-type(2) {
  opacity: 0;
}
.header .header__right .openBtn.active span:nth-of-type(3) {
  width: 100%;
  top: 50%;
  transform: translateY(-50%) rotate(30deg);
}
.header .header__right .nav__bg {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
}
.header .header__right .nav__bg.active {
  opacity: 1;
  pointer-events: initial;
}
.header .header__right .nav {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30vw;
  height: 100vh;
  background-color: var(--blue-main);
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 100;
  transition: 0.6s;
}
@media (orientation: portrait) {
  .header .header__right .nav {
    width: 80vw;
  }
}
.header .header__right .nav .nav__list a {
  color: #fff;
}
.header .header__right .nav .nav__list .nav__item {
  margin-top: clamp(36px, 2.4vw, 48px);
  font-size: clamp(16px, 0.9vw, 18px);
  font-family: "Noto Serif JP";
  line-height: 1;
  position: relative;
}
.header .header__right .nav .nav__list .nav__item:first-of-type {
  margin-top: 0;
}
.header .header__right .nav .nav__list .nav__item .nav__item--en {
  display: block;
  margin-top: clamp(8px, 0.6vw, 12px);
  font-family: "Spectral";
}
.header .header__right .nav .nav__list .nav__item::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: calc(clamp(12px, 1vw, 20px) * -1);
  transform: scale(1, 0);
  transform-origin: top;
  transition: 0.4s;
}
.header .header__right .nav .nav__list .nav__item.current::before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  background-color: #fff;
  position: absolute;
  top: 0;
  left: calc(clamp(12px, 1vw, 20px) * -1);
  transform-origin: top;
  transform: scale(1, 1);
  transition: 0.4s;
}
@media (hover: hover) {
  .header .header__right .nav .nav__list .nav__item:hover::before {
    transform: scale(1, 1);
  }
}
.header .header__right .nav.active {
  right: 0;
}
.header.appeared {
  background-color: rgb(255, 255, 255);
  filter: drop-shadow(0 1px 12px rgba(37, 40, 43, 0.2));
}
.header.appeared .logo a {
  color: var(--blue-main);
}

.header--lower .logo a {
  color: var(--blue-main);
}

/* ===============
footer
=============== */
.footer {
  background-color: var(--skyblue-footer);
  font-size: clamp(12px, 0.7vw, 14px);
  color: #fff;
}
.footer .spot {
  line-height: 1.6;
}
.footer .spot .address .postcode {
  line-height: 1;
}
.footer .spot .address .build span {
  display: inline-block;
  width: clamp(8px, 0.5vw, 10px);
  height: 100%;
}
.footer .spot .address .build span a {
  vertical-align: text-bottom;
}
.footer .number,
.footer .tel {
  display: flex;
  align-items: center;
  gap: clamp(8px, 0.6vw, 12px);
  margin-top: clamp(12px, 0.8vw, 16px);
}
.footer .number dt,
.footer .tel dt {
  font-weight: 400;
}
.footer .number dd a,
.footer .tel dd a {
  color: #fff;
}
.footer .tel dt {
  padding: clamp(4px, 0.3vw, 6px) clamp(6px, 0.4vw, 8px);
  background-color: #fff;
  color: var(--skyblue-footer);
  font-size: clamp(10px, 0.7vw, 14px);
  font-weight: 700;
  letter-spacing: 0.06em;
}
.footer .footer__nav {
  display: flex;
  gap: clamp(24px, 2vw, 40px);
  font-size: clamp(12px, 0.7vw, 14px);
  font-weight: 500;
}
.footer .footer__nav li {
  position: relative;
}
.footer .footer__nav li::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: calc(clamp(1px, 0.1vw, 2px) * -1);
  left: 0;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}
@media (hover: hover) {
  .footer .footer__nav li:hover::before {
    transform: scale(1, 1);
  }
}
.footer .footer__nav li a {
  color: #fff;
}
.footer .footer__logo {
  width: -moz-fit-content;
  width: fit-content;
  margin: clamp(48px, 4vw, 80px) 0 0 auto;
}
.footer .footer__logo .logo {
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(14px, 0.9vw, 18px);
  color: #fff;
}
.footer .footer__logo .logo .name {
  font-size: clamp(24px, 1.6vw, 32px);
}
.footer .footer__logo .copy {
  display: block;
  margin-top: clamp(10px, 0.8vw, 16px);
  font-size: clamp(10px, 0.7vw, 14px);
}
.footer .footer__inner {
  width: 92vw;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 100px) 0 clamp(20px, 3vw, 60px);
}
.footer .footer__inner--lg {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 992px) {
  .footer .footer__inner--lg {
    display: none;
  }
}
.footer .footer__inner--sm {
  display: none;
}
@media screen and (max-width: 992px) {
  .footer .footer__inner--sm {
    display: flex;
    justify-content: space-between;
  }
  .footer .footer__inner--sm .footer__left .footer__logo {
    margin: 0;
  }
  .footer .footer__inner--sm .footer__left .footer__info {
    margin-top: clamp(16px, 2vw, 20px);
  }
  .footer .footer__inner--sm .footer__right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-end;
    width: clamp(220px, 30%, 280px);
  }
  .footer .footer__inner--sm .footer__right .footer__nav {
    flex-wrap: wrap;
    justify-content: end;
    gap: clamp(28px, 2.8vw, 28px) clamp(40px, 4vw, 40px);
  }
  .footer .footer__inner--sm .footer__right .footer__nav li {
    width: 82px;
  }
}
@media screen and (max-width: 576px) {
  .footer .footer__inner--sm {
    flex-direction: column;
  }
  .footer .footer__inner--sm .footer__right {
    width: 100%;
    margin-top: clamp(20px, 14.4vw, 40px);
    align-items: center;
    justify-content: center;
  }
  .footer .footer__inner--sm .footer__right .footer__nav {
    align-items: center;
    justify-content: center;
    gap: 16px 28px;
  }
  .footer .footer__inner--sm .footer__right .copy {
    margin-top: clamp(20px, 14.4vw, 40px);
  }
}

.footer--lower {
  margin-top: clamp(120px, 10vw, 200px);
}

/* ===============
all common-parts
=============== */
.logo {
  font-family: "Noto Serif JP";
  font-size: clamp(10px, 0.9vw, 18px);
  font-weight: 700;
  line-height: 1;
}
.logo a {
  color: #fff;
  transition: 0.4s;
}
@media (hover: hover) {
  .logo a:hover {
    opacity: 0.8;
  }
}
.logo .name {
  display: block;
  font-size: clamp(16px, 1.6vw, 32px);
  margin-top: clamp(8px, 0.6vw, 12px);
}

.tel {
  width: -moz-fit-content;
  width: fit-content;
  font-family: "Spectral";
  line-height: 1;
  letter-spacing: 0.06em;
}
.tel .tel__number {
  font-size: clamp(20px, 1.8vw, 36px);
  font-weight: 600;
}
.tel .tel__number::before {
  display: inline-block;
  content: "";
  width: clamp(14px, 1.2vw, 24px);
  margin-right: clamp(4px, 0.3vw, 6px);
  aspect-ratio: 1/1;
  background-image: url(../img/icon-tel-blue.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.tel .tel__info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(8px, 0.8vw, 16px);
  margin-top: clamp(2px, 0.2vw, 4px);
}
.tel .tel__info dt {
  font-size: clamp(10px, 0.8vw, 16px);
  font-weight: 500;
}
.tel .tel__info dd {
  font-size: clamp(13px, 0.9vw, 18px);
  font-weight: 500;
}

.section__title,
.pageSection__title {
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  font-family: "Spectral";
  font-size: clamp(18px, 1vw, 20px);
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  color: var(--blue-main);
}
.section__title .section__title--ja,
.section__title .pageSection__title--ja,
.pageSection__title .section__title--ja,
.pageSection__title .pageSection__title--ja {
  display: block;
  width: -moz-max-content;
  width: max-content;
  margin-top: clamp(7px, 0.7vw, 14px);
  font-family: "Noto Serif JP";
  font-size: clamp(23px, 1.6vw, 32px);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--black-txt);
}
.section__title .line,
.pageSection__title .line {
  display: block;
  width: 80px;
  height: 2px;
  margin-top: clamp(24px, 2vw, 40px);
  background: linear-gradient(90deg, var(--red-accent) 0% 25%, var(--gray-line) 25% 100%);
}

.bgExtend {
  animation-name: bgExtendAnimeBase;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
  opacity: 0;
}
@keyframes bgExtendAnimeBase {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.bgAppear {
  animation-name: bgExtendAnimeSecond;
  animation-duration: 1s;
  animation-delay: 0.6s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes bgExtendAnimeSecond {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.bgLRExtend::before {
  animation-name: bgLRExtendAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: var(--black-txt);
}

@keyframes bgLRExtendAnime {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
.bgAppearTrigger,
.bgLRExtendTrigger,
.bgAppearTrigger--contact,
.bgLRExtendTrigger--contact {
  opacity: 0;
}

.btn {
  width: -moz-fit-content;
  width: fit-content;
}

.btn--viewMore {
  display: flex;
  align-items: center;
  width: 240px;
  height: 60px;
  padding: 2px 0 0 12.5%;
  border-radius: clamp(2px, 0.2vw, 4px);
  position: relative;
  background-color: var(--blue-main);
  font-family: "Spectral";
  font-size: clamp(18px, 1.2vw, 24px);
  letter-spacing: 0.04em;
  color: #fff;
}
.btn--viewMore::before {
  content: "";
  display: block;
  width: clamp(96px, 53.3%, 128px);
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 26.7%;
  left: 12.5%;
  transform: scale(0, 1);
  transform-origin: left;
  transition: 0.4s;
}
.btn--viewMore .arrowContainer {
  width: 17.5%;
  aspect-ratio: 1/1;
  border-radius: clamp(1px, 0.1vw, 2px);
  background-color: var(--blue-arrowBg);
  position: absolute;
  top: 50%;
  right: 4.2%;
  transform: translateY(-50%);
  overflow: hidden;
}
.btn--viewMore .arrowContainer .arrow {
  width: 45.2%;
  aspect-ratio: 19/18;
  overflow: hidden;
  position: absolute;
  top: 28.6%;
  left: 28.6%;
}
.btn--viewMore .arrowContainer .arrow::before, .btn--viewMore .arrowContainer .arrow::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 19/18;
  background-image: url(../img/icon-arrow-white.svg);
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  transition: 0.4s;
}
.btn--viewMore .arrowContainer .arrow::before {
  left: 0;
}
.btn--viewMore .arrowContainer .arrow::after {
  left: -300%;
}
@media (hover: hover) {
  .btn--viewMore:hover::before {
    transform: scale(1, 1);
  }
  .btn--viewMore:hover .arrowContainer .arrow::before {
    left: 300%;
  }
  .btn--viewMore:hover .arrowContainer .arrow::after {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  .btn--viewMore.btn--viewMore--xxl {
    display: none;
  }
}
.btn--viewMore.btn--viewMore--md {
  display: none;
}
@media screen and (max-width: 768px) {
  .btn--viewMore.btn--viewMore--md {
    display: flex;
  }
}

#pageTop {
  width: clamp(40px, 3vw, 60px);
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: var(--blue-main);
  position: fixed;
  bottom: clamp(20px, 2vw, 40px);
  right: clamp(20px, 2vw, 40px);
  opacity: 0;
  transform: translateY(5vw);
}
#pageTop a {
  transform: rotate(270deg);
}
#pageTop a .arrowContainer {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#pageTop a .arrowContainer .arrow {
  width: 36%;
  aspect-ratio: 19/18;
  overflow: hidden;
  position: absolute;
  top: 34%;
  left: 33%;
}
#pageTop a .arrowContainer .arrow::before, #pageTop a .arrowContainer .arrow::after {
  content: "";
  display: block;
  width: 100%;
  aspect-ratio: 19/18;
  background-image: url(../img/icon-arrow-white.svg);
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 0;
  transition: 0.4s;
}
#pageTop a .arrowContainer .arrow::before {
  left: 0;
}
#pageTop a .arrowContainer .arrow::after {
  left: -300%;
}
#pageTop.appeared {
  animation: pageTopUp 1s forwards;
}
#pageTop.appeared a {
  transition: 0.4s;
}
@media (hover: hover) {
  #pageTop.appeared a:hover .arrowContainer .arrow::before {
    left: 300%;
  }
  #pageTop.appeared a:hover .arrowContainer .arrow::after {
    left: 0;
  }
}
#pageTop.disappeared {
  animation: pageTopDown 1s forwards;
}

@keyframes pageTopUp {
  from {
    opacity: 0;
    transform: translateY(6vw);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes pageTopDown {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(6vw);
  }
}/*# sourceMappingURL=common.css.map */