@charset "UTF-8";
@media screen and (max-width: 900px) {
  .min901 {
    display: none;
  }
}

@media screen and (min-width: 901px) {
  .max900 {
    display: none;
  }
}

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

@media screen and (min-width: 501px) {
  .max500 {
    display: none;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: #f6f6f0;
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

.wrap {
  overflow: hidden;
}

img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

a, p, ul, li {
  color: #2f2f2f;
  line-break: strict;
}

a {
  transition: all 0.5s ease 0s;
}

a:hover {
  opacity: 0.6;
}

a, span {
  display: inline-block;
}

.fa-solid {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

.fa-brands {
  font-family: "Font Awesome 6 Brands";
  font-weight: 400;
}

body * {
  box-sizing: border-box;
}

.w-500 {
  max-width: 500px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.w-800 {
  max-width: 800px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.w-860 {
  max-width: 860px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.w-1000 {
  max-width: 1000px;
  width: calc(100% - 40px);
  margin: 0 auto;
}

.hamburger-bar {
  width: 133px;
  height: 31px;
  background-color: #2f2f2f;
  position: fixed;
  top: 27px;
  right: 18px;
  border-radius: 50vw;
  z-index: 1000;
}
@media screen and (max-width: 500px) {
  .hamburger-bar {
    width: 113px;
    height: 29px;
    top: 17px;
  }
}

/* fade-styles.css */
.hamburger-fade {
  position: fixed;
  top: 0;
  right: 20px;
  z-index: 1000;
  width: 60px;
  height: 30px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.hamburger-txt {
  position: relative;
  font-size: 0.9rem;
  top: 33px;
  right: 40px;
  color: white;
}
@media screen and (max-width: 500px) {
  .hamburger-txt {
    font-size: 0.85rem;
    top: 23px;
    right: 31px;
  }
}

.hamburger-fade__wrapper {
  position: relative;
  width: 30px;
  height: 20px;
  margin: 20px auto;
}
@media screen and (max-width: 500px) {
  .hamburger-fade__wrapper {
    margin: 10px auto;
  }
}

.hamburger-fade__line {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: white;
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger-fade__line:nth-child(1) {
  top: 0;
}

.hamburger-fade__line:nth-child(2) {
  top: 5px;
}

.hamburger-fade__line:nth-child(3) {
  top: 10px;
}

.hamburger-fade.active .hamburger-fade__line {
  background-color: #fff;
}

.hamburger-fade.active .hamburger-fade__line:nth-child(1) {
  transform: translateY(6px) rotate(20deg);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(2) {
  opacity: 0;
  transform: translateX(16px);
}

.hamburger-fade.active .hamburger-fade__line:nth-child(3) {
  transform: translateY(-5px) rotate(-20deg);
}

.nav-fade {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  visibility: hidden;
  z-index: 900;
}

.nav-fade__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f9f9f9;
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.23, 1, 0.32, 1);
  background-image: url(../../files/images/menu-bg.png);
  background-position: 80% 50%;
  background-repeat: no-repeat;
  background-size: 30vw;
}
@media screen and (max-width: 1000px) {
  .nav-fade__bg {
    background-position: 100% 100%;
  }
}
@media screen and (max-width: 500px) {
  .nav-fade__bg {
    background-image: none;
  }
}

.nav-fade.active {
  visibility: visible;
}

.nav-fade.active .nav-fade__bg {
  opacity: 1;
}

.nav-fade__wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding: 10vh 10vw 5vh 10vw;
}
@media screen and (max-width: 767px) {
  .nav-fade__wrapper {
    padding: 10vh 10vw 5vh 10vw;
  }
}

.nav-fade__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-fade__item {
  position: relative;
  margin-bottom: 3vh;
  padding-left: 40px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-fade.active .nav-fade__item {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade.active .nav-fade__item:nth-child(1) {
  transition-delay: 0.2s;
}

.nav-fade.active .nav-fade__item:nth-child(2) {
  transition-delay: 0.3s;
}

.nav-fade.active .nav-fade__item:nth-child(3) {
  transition-delay: 0.4s;
}

.nav-fade.active .nav-fade__item:nth-child(4) {
  transition-delay: 0.5s;
}

.nav-fade__number {
  position: absolute;
  left: 0;
  top: 13px;
  color: #ff62c8;
  font-size: 14px;
  font-family: "Roboto", sans-serif;
}
@media screen and (max-width: 767px) {
  .nav-fade__number {
    top: 5px;
  }
}

.nav-fade__link {
  display: inline-block;
  color: #2f2f2f;
  font-size: 1.5rem;
  line-height: 2.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-fade__link:hover {
  color: #084e8f;
}

.nav-fade__info {
  margin-top: auto;
  color: #2f2f2f;
  font-size: 14px;
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1) 0.6s;
}

.nav-fade.active .nav-fade__info {
  opacity: 1;
  transform: translateY(0);
}

.nav-fade__logo {
  max-width: 300px;
  padding-bottom: 20px;
}

.nav-fade__address {
  font-size: 1rem;
}

.nav-fade__address,
.nav-fade__tel {
  margin: 5px 0;
  line-height: 1.4;
}

.nav-fade__btn {
  max-width: 350px;
  padding-top: 20px;
}

@media (max-width: 768px) {
  .nav-fade__link {
    font-size: 1.3rem;
    line-height: 1.6;
  }
  .nav-fade__item {
    padding-left: 40px;
    margin-bottom: 3vh;
  }
  .nav-fade__info {
    padding-left: 0;
  }
}
.header-submit {
  position: fixed;
  right: 0;
  bottom: 2vh;
}
@media screen and (max-width: 500px) {
  .header-submit {
    right: -10px;
    bottom: -10px;
  }
}
.header-submit img {
  animation: katakata 6s infinite ease-in-out alternate;
  width: 182px;
}
@media screen and (max-width: 767px) {
  .header-submit img {
    width: 130px;
  }
}

@keyframes katakata {
  0% {
    transform: translate(0, 0) rotate(0deg);
  }
  21% {
    transform: translate(0, 0) rotate(0deg);
  }
  22% {
    transform: translate(0, 0) rotate(-3deg);
  }
  23% {
    transform: translate(0, -1px) rotate(0deg);
  }
  24% {
    transform: translate(0, -1px) rotate(3deg);
  }
  25% {
    transform: translate(1px, 0) rotate(-2deg);
  }
  26% {
    transform: translate(0, 1px) rotate(0deg);
  }
  27% {
    transform: translate(0, 0) rotate(3deg);
  }
  28% {
    transform: translate(0, 0) rotate(0deg);
  }
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
}
.header-sns-wrap {
  position: fixed;
  top: 78px;
  right: 37px;
}
@media screen and (max-width: 1000px) {
  .header-sns-wrap {
    display: none;
  }
}
.header-sns-wrap ul li {
  padding-bottom: 20px;
}
.header-sns-wrap ul li a {
  display: flex;
  align-items: center;
}
.header-sns-wrap ul li img {
  width: 40px;
  padding-right: 20px;
}
.header-sns-wrap ul li p {
  font-size: 0.85rem;
}

.main-wrap {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .main-wrap {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 400px) {
  .main-wrap {
    margin-bottom: 50px;
  }
}
.main-wrap img {
  width: 100%;
}

.top-lead-wrap {
  background-image: url(../../files/images/lead-bg.png);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-top: 110px;
}
@media screen and (max-width: 767px) {
  .top-lead-wrap {
    margin-top: 50px;
  }
}
.top-lead-wrap .top-lead-inner {
  max-width: 500px;
  margin: 0 auto;
  writing-mode: vertical-rl;
}
.top-lead-wrap .top-lead-inner h2, .top-lead-wrap .top-lead-inner p {
  text-orientation: upright;
  white-space: normal;
  width: auto;
  min-width: 1em;
}
.top-lead-wrap .top-lead-inner h2 {
  padding-left: 2.5rem;
}
@media screen and (max-width: 500px) {
  .top-lead-wrap .top-lead-inner h2 {
    padding-left: 1.5rem;
  }
}
.top-lead-wrap .top-lead-inner h2 img {
  display: block; /* Safari fix */
  width: 34px;
}
@media screen and (max-width: 767px) {
  .top-lead-wrap .top-lead-inner h2 img {
    width: 27px;
  }
}
@media screen and (max-width: 400px) {
  .top-lead-wrap .top-lead-inner h2 img {
    width: 5.5vw;
  }
}
.top-lead-wrap .top-lead-inner p {
  line-break: strict; /* br のズレ防止 */
  font-size: clamp(1rem, 0.9rem + 0.625vw, 1.3rem);
  line-height: 1.8;
}
@media screen and (max-width: 400px) {
  .top-lead-wrap .top-lead-inner p {
    font-size: 4vw;
    line-height: 6vw;
  }
}
.top-lead-wrap .top-lead-inner p span {
  writing-mode: vertical-rl;
  display: inline-block;
}

.mainv-wrap {
  padding: 110px 0;
}
@media screen and (max-width: 500px) {
  .mainv-wrap {
    padding: 90px 0;
  }
}
@media screen and (max-width: 400px) {
  .mainv-wrap {
    padding: 60px 0;
  }
}
.mainv-wrap img {
  width: 100%;
}

.vision-wrap {
  text-align: center;
  padding: 110px 0;
  background-image: url(../../files/images/vision-bg.png);
  background-size: cover;
  background-attachment: fixed;
}
@media screen and (max-width: 500px) {
  .vision-wrap {
    padding: 90px 0;
    position: relative;
    background-image: none;
    background-attachment: scroll;
  }
}
@media screen and (max-width: 500px) {
  .vision-wrap ::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../../files/images/vision-bg.png);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -1;
    opacity: 0.2;
  }
}
.vision-wrap h2 img {
  max-width: 543px;
}
@media screen and (max-width: 500px) {
  .vision-wrap h2 img {
    max-width: 390px;
  }
}
.vision-wrap p {
  font-size: clamp(1.1rem, 0.9rem + 0.625vw, 1.5rem);
  line-height: clamp(1.8rem, 1.7rem + 0.625vw, 2.5rem);
  padding: 50px 0;
}
@media screen and (max-width: 500px) {
  .vision-wrap p {
    text-align: left;
  }
}
.vision-wrap a img {
  max-width: 612px;
}
.vision-wrap p.caution {
  font-size: 1rem;
  padding: 10px 0 0 0;
  text-align: center;
}

.aboutus-wrap {
  text-align: center;
  padding: 110px 0;
}
@media screen and (min-width: 501px) {
  .aboutus-wrap {
    background-image: url(../../files/images/aboutus-bg-1.png), url(../../files/images/aboutus-bg-2.png);
    background-repeat: no-repeat, no-repeat;
    background-position: bottom left, bottom right;
    background-size: 300px, 303px;
  }
}
@media screen and (max-width: 1000px) {
  .aboutus-wrap {
    background-size: 200px, 203px;
  }
}
@media screen and (max-width: 700px) {
  .aboutus-wrap {
    padding: 110px 0 140px 0;
    background-size: 150px, 153px;
  }
}
@media screen and (max-width: 500px) {
  .aboutus-wrap {
    padding: 90px 0 160px 0;
    background-image: url(../../files/images/aboutus-bg-sp.png);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: contain;
  }
}
.aboutus-wrap h2 img {
  max-width: 304px;
}
@media screen and (max-width: 500px) {
  .aboutus-wrap h2 img {
    max-width: 204px;
  }
}
.aboutus-wrap p {
  font-size: clamp(1.1rem, 0.9rem + 0.625vw, 1.5rem);
  line-height: clamp(1.8rem, 1.7rem + 0.625vw, 2.2rem);
  padding: 50px 0;
}
.aboutus-wrap p span {
  font-weight: bold;
}
@media screen and (max-width: 700px) {
  .aboutus-wrap p {
    text-align: left;
    padding: 50px 50px 30px 50px;
  }
}
@media screen and (max-width: 400px) {
  .aboutus-wrap p {
    padding: 50px 0 30px 0;
  }
}
.aboutus-wrap p:last-child {
  padding: 0 50px 50px 50px;
}
@media screen and (max-width: 400px) {
  .aboutus-wrap p:last-child {
    padding: 0 0 50px 0;
  }
}

.news-wrap {
  padding: 110px 0;
  background: #084e8f;
}
@media screen and (max-width: 900px) {
  .news-wrap {
    text-align: center;
  }
}
.news-wrap .news-lead {
  display: flex;
  justify-content: space-around;
}
@media screen and (max-width: 900px) {
  .news-wrap .news-lead {
    display: block;
    display: inline-block;
    text-align: left;
    padding: 0 0 0 70px;
  }
}
@media screen and (max-width: 600px) {
  .news-wrap .news-lead {
    padding: 0;
  }
}
@media screen and (max-width: 900px) {
  .news-wrap .news-lead h2 {
    padding-bottom: 50px;
  }
}
.news-wrap .news-lead h2 img {
  max-width: 173px;
}
@media screen and (max-width: 500px) {
  .news-wrap .news-lead h2 {
    max-width: 123px;
  }
}
.news-wrap .news-lead p {
  font-size: clamp(1.1rem, 0.9rem + 0.625vw, 1.5rem);
  line-height: clamp(1.8rem, 1.7rem + 0.625vw, 2.2rem);
  color: white;
}
.news-wrap .news-sns-wrap {
  display: flex;
  justify-content: center;
  gap: 140px;
  padding-top: 90px;
}
@media screen and (max-width: 900px) {
  .news-wrap .news-sns-wrap {
    padding-top: 50px;
    justify-content: space-around;
    gap: 0;
  }
}
.news-wrap .news-sns-wrap a {
  text-align: center;
}
.news-wrap .news-sns-wrap a img {
  width: 40px;
}
.news-wrap .news-sns-wrap a p {
  padding-top: 10px;
  color: white;
  font-size: clamp(1rem, 0.9rem + 0.625vw, 1.2rem);
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

.footer-wrap {
  padding: 100px 0 35px 0;
}
.footer-wrap .footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-bottom: 80px;
}
@media screen and (max-width: 900px) {
  .footer-wrap .footer-inner {
    display: block;
    text-align: center;
  }
}
.footer-wrap .footer-inner .footer-1 img {
  max-width: 488px;
}
.footer-wrap .footer-inner .footer-2 {
  text-align: right;
}
@media screen and (max-width: 900px) {
  .footer-wrap .footer-inner .footer-2 {
    padding-top: 60px;
    text-align: center;
  }
}
@media screen and (max-width: 400px) {
  .footer-wrap .footer-inner .footer-2 {
    text-align: left;
  }
}
.footer-wrap .footer-inner .footer-2 h2 {
  font-size: 1.2rem;
  line-height: 1.4;
  padding-bottom: 10px;
}
.footer-wrap .footer-inner .footer-2 p {
  font-size: 1rem;
  line-height: 1.6;
}
.footer-wrap .copy p {
  text-align: center;
  font-size: 0.9rem;
  color: #94948e;
  font-family: "Crimson Text", serif;
  font-weight: 400;
  font-style: normal;
}

.footer-bar {
  height: 30px;
  background-image: url(../../files/images/footer-bar.png);
  background-position: center center;
  background-size: cover;
}/*# sourceMappingURL=base.css.map */