@charset "UTF-8";
.appear.up .item {
  transform: translateY(6px);
}

.appear.down .item {
  transform: translateY(-6px);
}

.appear.left .item {
  transform: translateX(40px);
}

.appear.right .item {
  transform: translateX(-40px);
}

.appear .item {
  transition: all 0.8s;
  opacity: 0;
}
.appear.inview .item {
  opacity: 1;
  transform: none;
}
.appear.inview .item:nth-child(1) {
  transition-delay: 0.1s;
}
.appear.inview .item:nth-child(2) {
  transition-delay: 0.2s;
}
.appear.inview .item:nth-child(3) {
  transition-delay: 0.3s;
}
.appear.inview .item:nth-child(4) {
  transition-delay: 0.4s;
}
.appear.inview .item:nth-child(5) {
  transition-delay: 0.5s;
}
.appear.inview .item:nth-child(6) {
  transition-delay: 0.6s;
}
.appear.inview .item:nth-child(7) {
  transition-delay: 0.7s;
}
.appear.inview .item:nth-child(8) {
  transition-delay: 0.8s;
}
.appear.inview .item:nth-child(9) {
  transition-delay: 0.9s;
}
.appear.inview .item:nth-child(10) {
  transition-delay: 1s;
}
.appear.inview .item:nth-child(11) {
  transition-delay: 1.1s;
}
.appear.inview .item:nth-child(12) {
  transition-delay: 1.2s;
}
.appear.inview .item:nth-child(13) {
  transition-delay: 1.3s;
}
.appear.inview .item:nth-child(14) {
  transition-delay: 1.4s;
}
.appear.inview .item:nth-child(15) {
  transition-delay: 1.5s;
}
.appear.inview .item:nth-child(16) {
  transition-delay: 1.6s;
}
.appear.inview .item:nth-child(17) {
  transition-delay: 1.7s;
}
.appear.inview .item:nth-child(18) {
  transition-delay: 1.8s;
}
.appear.inview .item:nth-child(19) {
  transition-delay: 1.9s;
}
.appear.inview .item:nth-child(20) {
  transition-delay: 2s;
}
.appear.inview .item:nth-child(21) {
  transition-delay: 2.1s;
}
.appear.inview .item:nth-child(22) {
  transition-delay: 2.2s;
}
.appear.inview .item:nth-child(23) {
  transition-delay: 2.3s;
}
.appear.inview .item:nth-child(24) {
  transition-delay: 2.4s;
}
.appear.inview .item:nth-child(25) {
  transition-delay: 2.5s;
}
.appear.inview .item:nth-child(26) {
  transition-delay: 2.6s;
}
.appear.inview .item:nth-child(27) {
  transition-delay: 2.7s;
}
.appear.inview .item:nth-child(28) {
  transition-delay: 2.8s;
}
.appear.inview .item:nth-child(29) {
  transition-delay: 2.9s;
}
.appear.inview .item:nth-child(30) {
  transition-delay: 3s;
}
.appear.inview .item:nth-child(31) {
  transition-delay: 3.1s;
}
.appear.inview .item:nth-child(32) {
  transition-delay: 3.2s;
}
.appear.inview .item:nth-child(33) {
  transition-delay: 3.3s;
}
.appear.inview .item:nth-child(34) {
  transition-delay: 3.4s;
}
.appear.inview .item:nth-child(35) {
  transition-delay: 3.5s;
}
.appear.inview .item:nth-child(36) {
  transition-delay: 3.6s;
}
.appear.inview .item:nth-child(37) {
  transition-delay: 3.7s;
}
.appear.inview .item:nth-child(38) {
  transition-delay: 3.8s;
}
.appear.inview .item:nth-child(39) {
  transition-delay: 3.9s;
}
.appear.inview .item:nth-child(40) {
  transition-delay: 4s;
}
.appear.inview .item:nth-child(41) {
  transition-delay: 4.1s;
}
.appear.inview .item:nth-child(42) {
  transition-delay: 4.2s;
}
.appear.inview .item:nth-child(43) {
  transition-delay: 4.3s;
}
.appear.inview .item:nth-child(44) {
  transition-delay: 4.4s;
}
.appear.inview .item:nth-child(45) {
  transition-delay: 4.5s;
}
.appear.inview .item:nth-child(46) {
  transition-delay: 4.6s;
}
.appear.inview .item:nth-child(47) {
  transition-delay: 4.7s;
}
.appear.inview .item:nth-child(48) {
  transition-delay: 4.8s;
}
.appear.inview .item:nth-child(49) {
  transition-delay: 4.9s;
}
.appear.inview .item:nth-child(50) {
  transition-delay: 5s;
}

.line {
  display: block;
  overflow: hidden;
}

.line-text {
  display: block;
  opacity: 0;
  transform: translate3d(0, 110%, 0);
  transform-origin: center top;
}

.line.inview .line-text {
  animation: LineReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes LineReveal {
  0% {
    opacity: 0;
    transform: translate3d(0, 110%, 0);
  }
  100% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.more-btn {
  text-align: center;
}
.more-btn a {
  font-family: "Noto Sans JP";
  min-width: 300px;
  font-size: clamp(1.5rem, 1.451rem + 0.22vw, 1.8rem);
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #B3193F;
  background: white;
  border: 1px solid #B3193F;
  padding: 1.2rem 2rem 1.2rem 2rem;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.more-btn a._red {
  background: #B3193F;
  color: white;
  border: none;
}
.more-btn a._red:hover {
  background: rgb(223.75, 31.25, 78.75);
}
.more-btn a._red::before {
  background: url(../images/arrows_white.svg) no-repeat center/contain;
}
@media screen and (max-width: 600px) {
  .more-btn a {
    min-width: 250px;
    padding-inline: 1rem 2rem;
  }
}
.more-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/arrows_red.svg) no-repeat center/contain;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.75rem;
  height: 1.75rem;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 600px) {
  .more-btn a::before {
    right: 1.5rem;
  }
}
.more-btn a:hover {
  background: #B3193F;
  color: white;
}
.more-btn a:hover::before {
  right: 1.5rem;
  background: url(../images/arrows_white.svg) no-repeat center/contain;
}

.dl-btn {
  width: 320px;
}
.dl-btn a {
  border: 1px solid #000;
  color: #000;
  padding-block: 1rem;
  padding-inline: 1em 2em;
  display: inline-block;
  text-align: center;
  width: 100%;
  position: relative;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 960px) {
  .dl-btn a {
    padding-block: 1.5rem;
  }
}
.dl-btn a::before {
  position: absolute;
  content: "";
  background: url(../images/dl_ico_black.svg) no-repeat center/contain;
  width: 1.25rem;
  height: 1.25rem;
  right: 1em;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.dl-btn a:hover {
  background: #000;
  color: white;
}
.dl-btn a:hover::before {
  background: url(../images/dl_ico_white.svg) no-repeat center/contain;
}

.back-btn {
  margin-top: 80px;
  text-align: center;
}
@media screen and (max-width: 600px) {
  .back-btn {
    margin-top: 50px;
  }
}
.back-btn a {
  font-weight: 500;
  position: relative;
  display: inline-block;
  color: #000;
  padding-left: 1.75em;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.back-btn a:hover {
  opacity: 0.5;
}
.back-btn a::before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 1.25em;
  aspect-ratio: 1/1;
  background: url(../images/arrows2.svg) no-repeat center/contain;
  transform: scaleX(-1);
}

.animate-text .char {
  opacity: 0;
}

.animate-text.inview .char {
  animation: letter-glow 0.7s 0s ease both, kf-blur-chars 2s 0s ease both;
}
.animate-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.animate-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.animate-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.animate-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.animate-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.animate-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.animate-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.animate-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.animate-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.animate-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.animate-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.animate-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.animate-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.animate-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.animate-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.animate-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.animate-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.animate-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.animate-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.animate-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.animate-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.animate-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.animate-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.animate-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.animate-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.animate-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.animate-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.animate-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.animate-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.animate-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-blur-chars {
  0% {
    opacity: 0;
    filter: blur(20px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes letter-glow {
  0% {
    opacity: 0;
    text-shadow: 0px 0px 1px rgba(255, 255, 255, 0.1);
  }
  66% {
    opacity: 1;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0.9);
  }
  77% {
    opacity: 1;
  }
  100% {
    opacity: 0.7;
    text-shadow: 0px 0px 20px rgba(255, 255, 255, 0);
  }
}
.fadeUp-text .char {
  opacity: 0;
}

.fadeUp-text.inview .char {
  animation-name: kf-fadeUp-chars;
  animation-duration: 1s;
  animation-timing-function: cubic-bezier(0.39, 1.57, 0.58, 1);
  animation-delay: 0s;
  animation-iteration-count: 1;
  animation-direction: normal;
  animation-fill-mode: both;
}
.fadeUp-text.inview .char:nth-child(1) {
  animation-delay: 0.1s;
}
.fadeUp-text.inview .char:nth-child(2) {
  animation-delay: 0.2s;
}
.fadeUp-text.inview .char:nth-child(3) {
  animation-delay: 0.3s;
}
.fadeUp-text.inview .char:nth-child(4) {
  animation-delay: 0.4s;
}
.fadeUp-text.inview .char:nth-child(5) {
  animation-delay: 0.5s;
}
.fadeUp-text.inview .char:nth-child(6) {
  animation-delay: 0.6s;
}
.fadeUp-text.inview .char:nth-child(7) {
  animation-delay: 0.7s;
}
.fadeUp-text.inview .char:nth-child(8) {
  animation-delay: 0.8s;
}
.fadeUp-text.inview .char:nth-child(9) {
  animation-delay: 0.9s;
}
.fadeUp-text.inview .char:nth-child(10) {
  animation-delay: 1s;
}
.fadeUp-text.inview .char:nth-child(11) {
  animation-delay: 1.1s;
}
.fadeUp-text.inview .char:nth-child(12) {
  animation-delay: 1.2s;
}
.fadeUp-text.inview .char:nth-child(13) {
  animation-delay: 1.3s;
}
.fadeUp-text.inview .char:nth-child(14) {
  animation-delay: 1.4s;
}
.fadeUp-text.inview .char:nth-child(15) {
  animation-delay: 1.5s;
}
.fadeUp-text.inview .char:nth-child(16) {
  animation-delay: 1.6s;
}
.fadeUp-text.inview .char:nth-child(17) {
  animation-delay: 1.7s;
}
.fadeUp-text.inview .char:nth-child(18) {
  animation-delay: 1.8s;
}
.fadeUp-text.inview .char:nth-child(19) {
  animation-delay: 1.9s;
}
.fadeUp-text.inview .char:nth-child(20) {
  animation-delay: 2s;
}
.fadeUp-text.inview .char:nth-child(21) {
  animation-delay: 2.1s;
}
.fadeUp-text.inview .char:nth-child(22) {
  animation-delay: 2.2s;
}
.fadeUp-text.inview .char:nth-child(23) {
  animation-delay: 2.3s;
}
.fadeUp-text.inview .char:nth-child(24) {
  animation-delay: 2.4s;
}
.fadeUp-text.inview .char:nth-child(25) {
  animation-delay: 2.5s;
}
.fadeUp-text.inview .char:nth-child(26) {
  animation-delay: 2.6s;
}
.fadeUp-text.inview .char:nth-child(27) {
  animation-delay: 2.7s;
}
.fadeUp-text.inview .char:nth-child(28) {
  animation-delay: 2.8s;
}
.fadeUp-text.inview .char:nth-child(29) {
  animation-delay: 2.9s;
}
.fadeUp-text.inview .char:nth-child(30) {
  animation-delay: 3s;
}

@keyframes kf-fadeUp-chars {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-height: 0vw;
}

html {
  font-size: 62.5%;
}

body {
  height: 100%;
  font-size: clamp(1.4rem, 1.367rem + 0.15vw, 1.6rem);
  font-family: "Noto Serif JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  letter-spacing: 0.1rem;
  background: white;
  font-style: normal;
  color: #000;
  overflow-x: hidden;
}

html.is-nav-open,
body.is-nav-open {
  overflow: hidden;
  height: 100dvh;
  overscroll-behavior: none;
}

body.is-nav-open {
  width: 100%;
}

.wrapper {
  position: relative;
  overflow: hidden;
  padding-top: 75px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 960px) {
  .wrapper {
    padding-top: 60px;
  }
}

.container {
  flex: 1;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  image-rendering: -webkit-optimize-contrast;
}
@media screen and (max-width: 960px) {
  img {
    image-rendering: auto;
  }
}

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

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

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: text;
    text-decoration: none;
  }
}
.lg-inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

.sm-inner {
  width: 90%;
  max-width: 1080px;
  margin: 0 auto;
}

.section_content {
  margin: 100px 0;
}
.section_content._top {
  margin: 60px 0;
}
@media screen and (max-width: 960px) {
  .section_content {
    margin: 80px 0;
  }
  .section_content._top {
    margin: 40px 0;
  }
}
@media screen and (max-width: 600px) {
  .section_content {
    margin: 60px 0;
  }
  .section_content._top {
    margin: 30px 0;
  }
}

.section_content--p {
  padding: 100px 0;
}
.section_content--p._top {
  padding: 60px 0;
}
@media screen and (max-width: 960px) {
  .section_content--p {
    padding: 80px 0;
  }
  .section_content--p._top {
    padding: 40px 0;
  }
}
@media screen and (max-width: 600px) {
  .section_content--p {
    padding: 60px 0;
  }
  .section_content--p._top {
    padding: 30px 0;
  }
}

.flex {
  display: flex;
}
@media screen and (max-width: 960px) {
  .flex {
    flex-direction: column;
  }
}

.grid {
  display: grid;
}

.anchor {
  display: block;
  padding-top: 80px;
  margin-top: -80px;
}

.main-ttl {
  text-align: center;
  margin-bottom: 4rem;
}
.main-ttl._white .main-ttl-ja,
.main-ttl._white .main-ttl-en {
  color: white;
}
@media screen and (max-width: 960px) {
  .main-ttl {
    margin-bottom: 2rem;
  }
}
@media screen and (max-width: 480px) {
  .main-ttl {
    font-size: 6.4vw;
  }
}
.main-ttl .main-ttl-ja {
  color: #B3193F;
  font-size: clamp(1.9rem, 1.687rem + 0.95vw, 3.2rem);
  font-weight: 600;
  display: block;
  letter-spacing: 0.5rem;
  margin-block: 1.25rem 0;
}
.main-ttl .main-ttl-ja.appear.inview .item {
  transition-delay: 0.3s;
}
@media screen and (max-width: 600px) {
  .main-ttl .main-ttl-ja {
    margin-block: 0;
    letter-spacing: 0.2rem;
  }
}
.main-ttl .main-ttl-en {
  position: relative;
  font-family: "Noto Sans JP";
  font-weight: 600;
  color: #000;
  letter-spacing: 0.2rem;
  font-size: clamp(1.3rem, 1.218rem + 0.36vw, 1.8rem);
  display: inline-block;
  padding-left: 1em;
}
@media screen and (max-width: 960px) {
  .main-ttl .main-ttl-en {
    margin-block: 0 1rem;
  }
}
.main-ttl .main-ttl-en::before {
  position: absolute;
  content: "■";
  color: #B3193F;
  font-size: clamp(0.6rem, 0.535rem + 0.29vw, 1rem);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin-right: 0.5rem;
}

.main-txt {
  font-size: clamp(1.5rem, 1.385rem + 0.51vw, 2rem);
  line-height: 2.2;
  text-align: center;
  margin-bottom: 4rem;
}
@media screen and (max-width: 600px) {
  .main-txt {
    line-height: 2;
    text-align: left;
    margin-bottom: 3rem;
  }
}
@media screen and (max-width: 600px) {
  .main-txt._short {
    text-align: center;
  }
}

.news_list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem;
}
@media screen and (max-width: 960px) {
  .news_list {
    gap: 4rem;
  }
}
@media screen and (max-width: 600px) {
  .news_list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .news_list li {
    width: 80%;
    margin-inline: auto;
  }
}
.news_list a {
  font-family: "Noto Sans JP";
  font-weight: 500;
  display: block;
  color: #000;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.news_list a:hover {
  opacity: 0.5;
}

.news_list-thum {
  aspect-ratio: 1/1;
  overflow: hidden;
  width: 100%;
  display: block;
}
.news_list-thum img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.news_list-ttl {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-top: 1rem;
}
@media screen and (max-width: 960px) {
  .news_list-ttl {
    margin-top: 0.5rem;
  }
}

.news_list-date {
  margin-block: 2.5rem 0;
  color: #909090;
}
@media screen and (max-width: 960px) {
  .news_list-date {
    margin-block: 2rem 0;
  }
}

.info-tel a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(3.4rem, 3.354rem + 0.21vw, 3.6rem);
  font-weight: 500;
  line-height: 0;
  color: #B3193F;
}
@media screen and (max-width: 480px) {
  .info-tel a {
    font-size: 8vw;
  }
}
.info-tel .ico {
  width: 55px;
  margin-right: 0.5rem;
}
@media screen and (max-width: 960px) {
  .info-tel .ico {
    width: 50px;
  }
}

.foot-contact {
  background: #F1EEE9;
}

.foot-contact_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  font-family: "Noto Sans JP";
}
@media screen and (max-width: 960px) {
  .foot-contact_list {
    grid-template-columns: 1fr;
  }
}
.foot-contact_list li {
  background: white;
  padding: 4rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.foot-contact_list-icon {
  display: inline-block;
  margin-block: 0 1.5rem;
}
@media screen and (max-width: 960px) {
  .foot-contact_list-icon {
    width: 40px;
  }
}

.foot-contact_list-txt {
  margin-block: 1.5rem 0;
  font-size: clamp(1.4rem, 1.335rem + 0.29vw, 1.8rem);
  font-weight: 500;
}

.foot-contact_list-btn {
  margin-block: 2rem 0;
}

.foot-contact_list-item--form .foot-contact_list-ttl {
  font-size: clamp(2rem, 1.836rem + 0.73vw, 3rem);
  line-height: 1.3;
}

.foot-contact_list-item--tel .foot-contact_list-ttl {
  font-size: clamp(1.6rem, 1.535rem + 0.29vw, 2rem);
}
.foot-contact_list-item--tel .foot-contact_list-ttl span {
  display: block;
}

.foot-contact_list-telimg {
  display: inline-block;
  margin-block: 1rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.header {
  font-family: "Noto Sans JP";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  opacity: 1;
  transform: translateY(0);
  transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.header.is-scrolled {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}
.header.is-sticky {
  position: fixed;
  animation: headerSlideIn 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.head-inner {
  background: #B3193F;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
}
@media screen and (max-width: 960px) {
  .head-inner {
    height: 60px;
  }
}

.logo {
  margin-right: 2rem;
  margin-left: 3rem;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  z-index: 10000;
}
.logo img {
  margin-inline: 0 1.5rem;
}
.logo a {
  display: flex;
  align-items: center;
  color: white;
  font-size: clamp(1rem, 0.935rem + 0.29vw, 1.4rem);
  font-weight: 500;
}
.logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1440px) {
  .logo {
    margin-left: 1.5vw;
  }
}
@media screen and (max-width: 960px) {
  .logo {
    width: 65px;
    margin-left: 2rem;
  }
}

.g-nav-list {
  height: 75px;
}
@media screen and (max-width: 960px) {
  .g-nav-list {
    height: auto;
    min-height: 60px;
  }
}
.g-nav-list .g-nav-ul {
  display: flex;
  align-items: center;
  list-style: none;
  padding: 0;
  height: 100%;
}
@media screen and (min-width: 961px) {
  .g-nav-list > ul > ._item:not(.sp) {
    font-size: clamp(1.4rem, 1.354rem + 0.21vw, 1.6rem);
    margin: 0.5em 2em 0.5em 0;
    border-right: 2px solid #88112F;
    line-height: 2;
  }
  .g-nav-list > ul > ._item:not(.sp):last-child, .g-nav-list > ul > ._item:not(.sp):has(+ .sp), .g-nav-list > ul > ._item:not(.sp):has(+ .nav-mail) {
    border-right: none;
    margin-right: 1em;
  }
}
@media screen and (min-width: 961px) and (max-width: 1440px) {
  .g-nav-list > ul > ._item:not(.sp):last-child, .g-nav-list > ul > ._item:not(.sp):has(+ .sp), .g-nav-list > ul > ._item:not(.sp):has(+ .nav-mail) {
    margin-right: 1vw;
  }
}
@media screen and (min-width: 961px) and (max-width: 1440px) {
  .g-nav-list > ul > ._item:not(.sp) {
    margin-right: 1.5vw;
    font-size: min(1.6rem, 1.4vw);
  }
}
@media screen and (min-width: 961px) {
  .g-nav-list > ul > ._item:not(.sp) a {
    color: white;
    text-decoration: none;
    padding: 1em 2em 1em 0;
    white-space: nowrap;
    transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  }
}
@media screen and (min-width: 961px) and (max-width: 1440px) {
  .g-nav-list > ul > ._item:not(.sp) a {
    padding-right: 1.5vw;
  }
}
@media screen and (min-width: 961px) {
  .g-nav-list > ul > ._item:not(.sp) a:hover {
    opacity: 0.5;
  }
  .g-nav-list .g-nav-list-foot {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  .g-nav-list .g-nav-ul {
    flex-direction: column;
    height: auto;
    padding: 90px 20px 20px;
  }
  .g-nav-list .g-nav-ul ._item a {
    color: white;
    position: relative;
    text-decoration: none;
    padding: 1.5em 1em;
    display: block;
    letter-spacing: 0.1em;
    font-size: min(1.6rem, 4.5vw);
    font-weight: 500;
  }
}
@media screen and (max-width: 960px) and (max-width: 480px) {
  .g-nav-list .g-nav-ul ._item a {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 960px) {
  .g-nav-list .g-nav-ul ._item.nav-tel,
  .g-nav-list .g-nav-ul ._item:has(> .nav-main-link._border) {
    grid-column: 1/-1;
  }
}
.g-nav-list > .g-nav-ul > .global-navChild {
  position: relative;
}
.g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu {
  list-style: none;
  margin: 0;
  padding: 0;
  height: auto;
}
.g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu > li {
  margin: 0;
}
.g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu > li > a {
  display: block;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu > li > a {
    background: white;
    color: #B3193F;
  }
}
@media screen and (min-width: 961px) {
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 50%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 260px;
    background: white;
    border: 1px solid #B3193F;
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(-50%, 0);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20;
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu > li > a {
    color: #B3193F;
    padding: 0.85rem 1.25rem;
    border-bottom: 1px solid #B3193F;
    text-align: center;
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu > li > a:hover {
    opacity: 1;
    background: #B3193F;
    color: white;
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu > li:last-child > a {
    border-bottom: 0;
  }
  .g-nav-list > .g-nav-ul > .global-navChild.is-open > .global-navChild-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
}
@media screen and (max-width: 960px) {
  .g-nav-list > .g-nav-ul > .global-navChild {
    grid-column: 1/-1;
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-toggle::before, .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-toggle::after {
    top: 50%;
    right: 1em;
    width: 1.75rem;
    height: 1.75rem;
    transition: opacity 0.25s ease, transform 0.25s ease;
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-toggle::before {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-toggle::after {
    position: absolute;
    content: "";
    background: url(../images/close.svg) no-repeat center/contain;
    opacity: 0;
    transform: translateY(-50%) scale(0.7);
    pointer-events: none;
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu {
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: height 0.25s ease, opacity 0.25s ease, visibility 0.25s ease;
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu > li:last-child > a {
    border-bottom: none;
  }
  .g-nav-list > .g-nav-ul > .global-navChild > .global-navChild-menu > li > a {
    padding: 1rem 0.5em 1rem 1.5em;
    font-size: min(1.4rem, 4vw);
    border-bottom: 1px solid #88112F;
  }
  .g-nav-list > .g-nav-ul > .global-navChild.is-open > .global-navChild-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .g-nav-list > .g-nav-ul > .global-navChild.is-open > .global-navChild-toggle::before {
    opacity: 0;
    transform: translateY(-50%) scale(0.7);
  }
  .g-nav-list > .g-nav-ul > .global-navChild.is-open > .global-navChild-toggle::after {
    opacity: 1;
    transform: translateY(-50%) scale(1);
  }
}

.nav-mail {
  height: 100%;
  width: 100%;
}
.nav-mail a {
  line-height: 1.4;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  color: white;
  background: #00507E;
  text-align: center;
  padding-inline: calc(5rem + 38px) 5rem;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 960px) {
  .nav-mail a {
    color: #B3193F;
    background: white;
    margin-block: 3rem;
    margin-inline: auto;
    padding-block: 1.5rem;
    padding-inline: calc(2rem + 38px) 2rem;
    font-size: 1.6rem;
    width: 90%;
    border-radius: 50px;
    justify-content: center;
  }
}
.nav-mail a:hover {
  background: rgb(0, 112.380952381, 177);
}
@media screen and (max-width: 960px) {
  .nav-mail a:hover {
    background: white;
  }
}
.nav-mail a::before {
  position: absolute;
  content: "";
  background: url(../images/mail-icon.svg) no-repeat center/contain;
  width: 38px;
  height: 30px;
  left: 35px;
}
@media screen and (max-width: 960px) {
  .nav-mail a::before {
    background: url(../images/mail-icon_red.svg) no-repeat center/contain;
  }
}

.toggle,
.float-menu {
  display: none;
}

@media screen and (max-width: 960px) {
  .toggle {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 0;
    right: 0;
    cursor: pointer;
    width: 60px;
    height: 60px;
    background: #00507E;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    -webkit-tap-highlight-color: transparent;
  }
  .toggle .openbtn-area {
    position: relative;
    z-index: 1;
    width: 28px;
    height: 28px;
    margin: 0 auto;
    transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .toggle .openbtn-area span {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    height: 1px;
    border-radius: 999px;
    background: white;
    transform-origin: 50% 50%;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.3s ease;
  }
  .toggle .openbtn-area span:nth-of-type(1) {
    transform: translateY(calc(-50% - 8px)) rotate(0deg);
  }
  .toggle .openbtn-area span:nth-of-type(2) {
    transform: translateY(-50%) scaleX(1);
  }
  .toggle .openbtn-area span:nth-of-type(3) {
    transform: translateY(calc(-50% + 8px)) rotate(0deg);
  }
  .toggle.active {
    background: #00507E;
  }
  .toggle.active .openbtn-area {
    transform: rotate(180deg) scale(1.04);
  }
  .toggle.active .openbtn-area span:nth-of-type(1) {
    transform: translateY(-50%) rotate(45deg);
  }
  .toggle.active .openbtn-area span:nth-of-type(2) {
    opacity: 0;
    transform: translateY(-50%) scaleX(0.2) rotate(180deg);
  }
  .toggle.active .openbtn-area span:nth-of-type(3) {
    transform: translateY(-50%) rotate(-45deg);
  }
  .g-nav {
    position: fixed;
    width: 100%;
    height: 100vh;
    z-index: 9998;
    top: 0;
    right: 0;
    margin: auto;
    visibility: hidden;
    opacity: 0;
    transition: 0.6s all;
    background: #B3193F;
  }
  .g-nav.panelactive {
    visibility: visible;
    opacity: 1;
  }
  .g-nav .g-nav_wrap {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    overflow: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }
  .g-nav-list-foot {
    background: #404040;
    padding: 3rem 2.5rem;
    color: white;
  }
  .g-nav-list-foot ._logo a {
    font-size: 1.3rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    color: white;
    margin-bottom: 1.5rem;
  }
  .g-nav-list-foot ._logo a img {
    margin-right: 1rem;
  }
  .g-nav-list-foot ._address {
    line-height: 1.8;
  }
  .g-nav-list-foot ._address a {
    color: white;
  }
  .g-nav-list-foot ._sns-list {
    margin-top: 1.5rem;
  }
  .global-navChild.is-open .global-navChild-toggle {
    background: #88112F;
  }
  .nav-main-link {
    position: relative;
    border-bottom: 1px solid white;
  }
  .nav-main-link.global-navChild-toggle::before {
    width: 1.75rem;
    height: 1.75rem;
    background: url(../images/open.svg) no-repeat center/contain;
  }
  .nav-main-link::before {
    position: absolute;
    content: "";
    background: url(../images/arrows_white.svg) no-repeat center/contain;
    top: 50%;
    right: 1em;
    transform: translateY(-50%);
    width: 1.5rem;
    height: 1.5rem;
    transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  }
  .g-nav ._item {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity 0.4s ease-out, transform 0.4s ease-out;
  }
  .g-nav.panelactive ._item {
    width: 100%;
    animation: fadeInUp 0.4s ease-out forwards;
    pointer-events: auto;
  }
  .g-nav.panelactive ._item:nth-child(1) {
    animation-delay: 0.05s;
  }
  .g-nav.panelactive ._item:nth-child(2) {
    animation-delay: 0.1s;
  }
  .g-nav.panelactive ._item:nth-child(3) {
    animation-delay: 0.15s;
  }
  .g-nav.panelactive ._item:nth-child(4) {
    animation-delay: 0.2s;
  }
  .g-nav.panelactive ._item:nth-child(5) {
    animation-delay: 0.25s;
  }
  .g-nav.panelactive ._item:nth-child(6) {
    animation-delay: 0.3s;
  }
  .g-nav.panelactive ._item:nth-child(7) {
    animation-delay: 0.35s;
  }
  .g-nav.panelactive ._item:nth-child(8) {
    animation-delay: 0.4s;
  }
  .g-nav.panelactive ._item:nth-child(9) {
    animation-delay: 0.45s;
  }
  .g-nav.panelactive ._item:nth-child(10) {
    animation-delay: 0.5s;
  }
  .g-nav.panelactive ._item:nth-child(11) {
    animation-delay: 0.55s;
  }
  .g-nav.panelactive ._item:nth-child(12) {
    animation-delay: 0.6s;
  }
  .g-nav.panelactive ._item:nth-child(13) {
    animation-delay: 0.65s;
  }
  .g-nav.panelactive ._item:nth-child(14) {
    animation-delay: 0.7s;
  }
  .g-nav.panelactive ._item:nth-child(15) {
    animation-delay: 0.75s;
  }
  .g-nav.panelactive ._item:nth-child(16) {
    animation-delay: 0.8s;
  }
  .g-nav.panelactive ._item:nth-child(17) {
    animation-delay: 0.85s;
  }
  .g-nav.panelactive ._item:nth-child(18) {
    animation-delay: 0.9s;
  }
  .g-nav.panelactive ._item:nth-child(19) {
    animation-delay: 0.95s;
  }
  .g-nav.panelactive ._item:nth-child(20) {
    animation-delay: 1s;
  }
  .g-nav.panelactive ._item:nth-child(21) {
    animation-delay: 1.05s;
  }
  .g-nav.panelactive ._item:nth-child(22) {
    animation-delay: 1.1s;
  }
  .g-nav.panelactive ._item:nth-child(23) {
    animation-delay: 1.15s;
  }
  .g-nav.panelactive ._item:nth-child(24) {
    animation-delay: 1.2s;
  }
  .g-nav.panelactive ._item:nth-child(25) {
    animation-delay: 1.25s;
  }
  .g-nav.panelactive ._item:nth-child(26) {
    animation-delay: 1.3s;
  }
  .g-nav.panelactive ._item:nth-child(27) {
    animation-delay: 1.35s;
  }
  .g-nav.panelactive ._item:nth-child(28) {
    animation-delay: 1.4s;
  }
  .g-nav.panelactive ._item:nth-child(29) {
    animation-delay: 1.45s;
  }
  .g-nav.panelactive ._item:nth-child(30) {
    animation-delay: 1.5s;
  }
  .g-nav.panelactive ._item:nth-child(31) {
    animation-delay: 1.55s;
  }
  .g-nav.panelactive ._item:nth-child(32) {
    animation-delay: 1.6s;
  }
  .g-nav.panelactive ._item:nth-child(33) {
    animation-delay: 1.65s;
  }
  .g-nav.panelactive ._item:nth-child(34) {
    animation-delay: 1.7s;
  }
  .g-nav.panelactive ._item:nth-child(35) {
    animation-delay: 1.75s;
  }
  .g-nav.panelactive ._item:nth-child(36) {
    animation-delay: 1.8s;
  }
  .g-nav.panelactive ._item:nth-child(37) {
    animation-delay: 1.85s;
  }
  .g-nav.panelactive ._item:nth-child(38) {
    animation-delay: 1.9s;
  }
  .g-nav.panelactive ._item:nth-child(39) {
    animation-delay: 1.95s;
  }
  .g-nav.panelactive ._item:nth-child(40) {
    animation-delay: 2s;
  }
  .g-nav.panelactive ._item:nth-child(41) {
    animation-delay: 2.05s;
  }
  .g-nav.panelactive ._item:nth-child(42) {
    animation-delay: 2.1s;
  }
  .g-nav.panelactive ._item:nth-child(43) {
    animation-delay: 2.15s;
  }
  .g-nav.panelactive ._item:nth-child(44) {
    animation-delay: 2.2s;
  }
  .g-nav.panelactive ._item:nth-child(45) {
    animation-delay: 2.25s;
  }
  .g-nav.panelactive ._item:nth-child(46) {
    animation-delay: 2.3s;
  }
  .g-nav.panelactive ._item:nth-child(47) {
    animation-delay: 2.35s;
  }
  .g-nav.panelactive ._item:nth-child(48) {
    animation-delay: 2.4s;
  }
  .g-nav.panelactive ._item:nth-child(49) {
    animation-delay: 2.45s;
  }
  .g-nav.panelactive ._item:nth-child(50) {
    animation-delay: 2.5s;
  }
  .float-menu {
    z-index: 100;
    width: 100%;
    display: block;
    position: fixed;
    bottom: 0;
    opacity: 1;
    transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  }
  .float-menu li a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "Noto Sans JP";
    color: white;
    background: #00507E;
    width: min(300px, 75%);
    margin-inline: auto;
    padding: 1rem 0;
    margin-bottom: 1.5rem;
    border-radius: 50px;
    box-shadow: 3px 3px 15px rgba(0, 0, 0, 0.3);
  }
  .float-menu .ico {
    margin-right: 1.5rem;
  }
}
.float-menu--hidden {
  transform: translateY(100%);
  opacity: 0;
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes headerSlideIn {
  0% {
    opacity: 0;
    transform: translateY(-100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.gmap {
  line-height: 0;
}
@media screen and (max-width: 960px) {
  .gmap iframe {
    height: 350px;
  }
}

.footer {
  font-family: "Noto Sans JP";
  background: white;
}
.footer .grid {
  grid-template-columns: 0.3fr 0.7fr;
}
@media screen and (max-width: 1440px) {
  .footer .grid {
    grid-template-columns: 0.4fr 0.6fr;
  }
}
@media screen and (max-width: 960px) {
  .footer .grid {
    grid-template-columns: 1fr;
  }
}
.footer .l_box,
.footer .foot-navWrap {
  padding: 4rem min(6rem, 3vw);
}
@media screen and (max-width: 960px) {
  .footer .l_box,
  .footer .foot-navWrap {
    padding: 3rem 2rem;
  }
}
.footer .l_box {
  background: #404040;
  color: white;
  display: flex;
  flex-direction: column;
}

.foot-logo {
  margin-block: 0 1.5rem;
}
.foot-logo img {
  margin-right: 2rem;
}
@media screen and (max-width: 960px) {
  .foot-logo img {
    margin-right: 1.5rem;
  }
}
.foot-logo a {
  display: flex;
  align-items: center;
  font-size: clamp(1.2rem, 1.167rem + 0.15vw, 1.4rem);
  font-weight: 500;
  color: white;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.foot-logo a:hover {
  opacity: 0.5;
}

.foot-sns-list {
  margin-top: auto;
}
.foot-sns-list a {
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
  display: inline-block;
}
.foot-sns-list a:hover {
  opacity: 0.5;
}

.main-foot-nav,
.sub-foot-nav {
  display: flex;
  flex-wrap: wrap;
}
.main-foot-nav a,
.sub-foot-nav a {
  position: relative;
  display: inline-block;
  color: #000;
  padding-left: 1em;
}
.main-foot-nav a::before,
.sub-foot-nav a::before {
  position: absolute;
  content: "■";
  color: #B3193F;
  font-size: 0.4em;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: inline-block;
}

.main-foot-nav a {
  margin-block: 0 1.5rem;
  font-weight: 600;
  margin-right: 2em;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.main-foot-nav a:hover {
  opacity: 0.5;
}

.sub-foot-nav {
  width: 600px;
  margin-block: 0 1.5rem;
  margin-left: 1em;
}
@media screen and (max-width: 1440px) {
  .sub-foot-nav {
    width: 100%;
  }
}
.sub-foot-nav a {
  font-size: 1.4rem;
  margin-block: 0 1rem;
  margin-right: 3em;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.sub-foot-nav a:hover {
  opacity: 0.5;
}

@media screen and (max-width: 960px) {
  .foot-txt {
    margin-block: 0 3rem;
  }
}

.backtotop.show {
  opacity: 1;
}

.backtotop {
  opacity: 0;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
@media screen and (max-width: 960px) {
  .backtotop {
    display: none;
  }
}
.backtotop a {
  position: fixed;
  right: 25px;
  bottom: 25px;
  background: rgba(0, 0, 0, 0.87);
  width: 50px;
  height: 50px;
  padding: 17px 15px 15px;
  z-index: 999;
  border-radius: 50%;
  transition: 0.4s cubic-bezier(0.49, 0.06, 0.02, 0.98);
}
.backtotop a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  background: url(../images/arrows_white.svg) no-repeat center/contain;
  width: 15px;
  aspect-ratio: 15/10;
  transform: rotate(-90deg);
}
.backtotop a:hover {
  background: rgba(0, 0, 0, 0.6);
}

.copy {
  font-size: clamp(1.1rem, 1.067rem + 0.15vw, 1.3rem);
  font-weight: 300;
  background: #B3193F;
  color: #B3B3B3;
  padding: 0.5rem 2rem;
  text-align: right;
}
@media screen and (max-width: 960px) {
  .copy {
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */