/* CSS Document */
.spmask {
  display: block;
}

.sponly {
  display: none;
}

@media (max-width: 767px) {
  .spmask {
    display: none;
  }
  .sponly {
    display: block;
  }
}
/*------------------------------*/
.inner {
  padding-inline: 2rem;
  max-width: calc(1100px + 4rem);
  margin-inline: auto;
}

.innerNarrow {
  max-width: 900px;
  margin-inline: auto;
}

.readText {
  font-kerning: normal;
  line-height: 2.2;
  text-align: justify;
  margin-block: calc((1em - 1lh) / 2);
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .readText {
    font-size: 1.35rem;
  }
}
.readText.alignCenter {
  text-align: center;
}

@media screen and (max-width: 767px) {
  .anchor {
    padding-top: 5.4rem;
    margin-top: -5.4rem;
  }
}

/*------------------------------*/
div[data-aos=fade-up], p[data-aos=fade-up], h3[data-aos=fade-up] {
  transform: translateY(20px);
  transition-property: transform, opacity;
  opacity: 0;
}
div[data-aos=fade-up].aos-animate, p[data-aos=fade-up].aos-animate, h3[data-aos=fade-up].aos-animate {
  transform: translateY(0px);
  opacity: 1;
}

div[data-aos=fade-right], p[data-aos=fade-right] {
  transform: translateX(-30px);
  transition-property: transform, opacity;
  opacity: 0;
}
div[data-aos=fade-right].aos-animate, p[data-aos=fade-right].aos-animate {
  transform: translateX(0px);
  opacity: 1;
}

div[data-aos=fade-left], p[data-aos=fade-left] {
  transform: translateX(30px);
  transition-property: transform, opacity;
  opacity: 0;
}
div[data-aos=fade-left].aos-animate, p[data-aos=fade-left].aos-animate {
  transform: translateX(0px);
  opacity: 1;
}

/*------------------------------*/
#toppage, #subpage {
  position: relative;
}

.blank {
  height: calc(100svh - 120px);
  display: block;
}
@media screen and (max-width: 767px) {
  .blank {
    height: 100lvh;
  }
}

/*------------------------------*/
.header {
  display: flex;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  z-index: 1001;
  background-color: #050505;
}
.header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(100% - 2rem);
  height: 4.4rem;
  padding: 0 2rem;
  position: relative;
  z-index: 1001;
  background-color: #050505;
}
.header_logo {
  z-index: 1001;
}
.header_logo a {
  width: 12rem;
  display: inline-block;
}
.header_logo a img {
  width: 100%;
  opacity: 1 !important;
}
.header_link {
  display: flex;
  align-items: center;
}
.header_link a {
  text-decoration: none;
  color: #000;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
  font-weight: 400;
  margin: 0 15px;
  padding-top: 12px;
  padding-bottom: 2px;
}
@media (hover: hover) and (pointer: fine) {
  .header_link a:hover {
    border-bottom: #000 solid 1px;
  }
}
.header #nav_btn {
  display: block;
  width: 4.4rem;
  height: 4.4rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1005;
  border: none;
  background-color: #050505;
}
.header #nav_btn .bar {
  width: 44%;
  min-width: 24px;
  height: 2px;
  display: block;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 1px;
  margin-bottom: -1px;
  background-color: #fff;
}
.header #nav_btn .bar.bar_top {
  top: 32%;
  transition: all 0.3s;
}
.header #nav_btn .bar.bar_mid {
  top: calc(50% + 1px);
  transform: translate(-50%, -50%);
  transition: all 0.2s;
}
.header #nav_btn .bar.bar_bottom {
  bottom: 32%;
  transition: all 0.3s;
}
.header #nav_btn.close .bar.bar_top {
  transform: translate(-50%, -1px) rotate(45deg);
  transition: all 0.3s;
  top: 50%;
}
.header #nav_btn.close .bar.bar_mid {
  opacity: 0;
  transition: all 0.2s;
}
.header #nav_btn.close .bar.bar_bottom {
  transform: translate(-50%, 0) rotate(-45deg);
  transition: all 0.3s;
  bottom: 50%;
}

.menu {
  display: none;
  height: calc(100lvh - 4.4rem);
  height: -webkit-fill-available;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 998;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
  width: 100%;
  transition: all 0.4s ease-out;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
}
.menu_inner {
  display: block;
  width: calc(100% - 2rem);
  height: 100%;
  margin: 0 auto;
  padding: 0 2rem;
  margin-top: 100px;
}
.menu_link {
  display: block;
}
.menu_link-wrap {
  border-bottom: 1px solid #333;
}
.menu_link-wrap a {
  position: relative;
  display: flex;
  align-items: center;
  text-decoration: none;
  line-height: 1.5;
  padding-top: 3rem;
  padding-bottom: 2.8rem;
  color: #000;
  font-size: 1.4rem;
}
.menu_link-wrap a span {
  display: inline-block;
  font-weight: 400;
}
.menu_copyright {
  width: 100%;
  padding-block: 1rem;
  text-align: center;
  position: absolute;
  bottom: 0;
}
.menu_copyright span {
  font-size: 1.2rem;
  color: #050505;
}

.menu.open {
  overflow: auto;
  opacity: 1;
  z-index: 998;
  pointer-events: auto;
}

/*------------------------------*/
.toppage_link {
  position: -webkit-sticky;
  position: sticky;
  z-index: 10000;
  top: 20px;
  text-align: center;
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .toppage_link {
    display: none;
  }
}
.toppage_link-box {
  display: inline-block;
  background-color: rgba(51, 51, 51, 0.1882352941);
  -webkit-backdrop-filter: blur(1px);
          backdrop-filter: blur(1px);
}
.toppage_link-wrap {
  display: flex;
  width: auto;
  -moz-column-gap: 20px;
       column-gap: 20px;
  height: 50px;
  border-bottom: #fff 1px solid;
  padding-inline: 30px;
}
.toppage_link a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  padding-inline: 20px;
  text-decoration: none;
  transition: 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .toppage_link a:hover {
    opacity: 0.5;
  }
}

/*------------------------------*/
.information {
  padding-top: 8rem;
  text-align: center;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .information {
    padding-top: 4rem;
    padding-bottom: 3rem;
  }
}
.information_hd {
  padding-bottom: 1.8rem;
  padding-inline: 2.4rem;
  display: inline-block;
  position: relative;
}
.information_hd h2 {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}
.information_hd p {
  font-size: 2.1rem;
  font-weight: 500;
}
.information_hd::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  height: 1px;
  background-color: #000;
  width: 60%;
  left: 20%;
}

/*------------------------------*/
.footer {
  padding-top: 6.4rem;
  background-color: #050505;
  position: relative;
  overflow: hidden;
}
.footer#subInfo {
  background-color: #fff;
}
.footer#subInfo .footer_wrap {
  background-color: #fff;
  color: #000;
}
.footer#subInfo .phone::before {
  background-image: url(../images/phone_b.png);
}
.footer#subInfo .fax::before {
  background-image: url(../images/fax_b.png);
}
.footer#subInfo .mail::before {
  background-image: url(../images/mail_b.png);
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 30px;
  }
}
.footer_logo {
  display: inline-block;
  width: 28rem;
  margin-bottom: 4rem;
}
@media screen and (max-width: 767px) {
  .footer_logo {
    width: 14rem;
    margin-bottom: 3rem;
  }
}
.footer_logo img {
  width: 100%;
  opacity: 1 !important;
}
.footer_wrap {
  display: flex;
  -moz-column-gap: 8rem;
       column-gap: 8rem;
  color: #fff;
  background-color: #050505;
}
@media screen and (max-width: 767px) {
  .footer_wrap {
    display: block;
  }
}
.footer_wrap.split {
  justify-content: space-between;
}
.footer_column-01 .map {
  margin-bottom: 30px;
  max-width: 440px;
  display: block;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.4s;
  width: 40rem;
  aspect-ratio: 3/1;
}
.footer_column-01 .map img {
  -o-object-fit: cover;
  object-fit: cover;
  transform-origin: top left;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  min-width: 100%;
  min-height: 100%;
  width: 100%;
  height: 100%;
  transition: all 0.4s;
}
@media screen and (max-width: 767px) {
  .footer_column-01 .map {
    max-width: none;
    width: 100%;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer_column-01 .map:hover {
    opacity: 0.6;
  }
  .footer_column-01 .map:hover img {
    scale: 1.05;
  }
}
.footer_column-01 > p {
  line-height: 1.9;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .footer_column-01 > p {
    margin-bottom: 40px;
    font-size: 1.4rem;
  }
}
.footer_column-02 > p {
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .footer_column-02 > p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer_column-02 {
    margin-top: 40px;
  }
}
.footer_column-03 > p {
  line-height: 1.9;
}
@media screen and (max-width: 767px) {
  .footer_column-03 > p {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .footer_column-03 {
    margin-top: 40px;
  }
}
.footer_contact .contactBox {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .footer_contact .contactBox {
    font-size: 1.4rem;
  }
}
.footer_contact .contactBox + .contactBox {
  margin-top: 20px;
}
.footer_contact .contactBox::before {
  width: 16px;
  height: 16px;
  display: inline-block;
  margin-right: 12px;
  content: "";
  background-size: contain;
}
.footer_contact .contactBox.phone::before {
  background-image: url(../images/phone.png);
}
.footer_contact .contactBox.fax::before {
  background-image: url(../images/fax.png);
}
.footer_contact .contactBox.mail::before {
  background-image: url(../images/mail.png);
}
.footer_nav {
  margin-top: 8rem;
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #050505;
}
@media screen and (max-width: 767px) {
  .footer_nav {
    margin-top: 4rem;
    padding-top: 3rem;
  }
}
.footer_nav ul {
  display: flex;
  justify-content: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
@media screen and (max-width: 767px) {
  .footer_nav ul {
    display: block;
    text-align: right;
    margin-right: 2rem;
  }
}
.footer_nav ul li a {
  color: #fff;
  display: block;
  text-decoration: none;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .footer_nav ul li a {
    font-size: 1.2rem;
    padding-block: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .footer_nav ul li a:hover {
    text-decoration: underline;
  }
}
.footer_copyright {
  background-color: #050505;
  padding-bottom: 6rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .footer_copyright {
    padding-bottom: 2rem;
  }
}
.footer_copyright-inner {
  width: 100%;
  padding: 0.8rem 0;
  text-align: center;
}
.footer_copyright-inner span {
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer_copyright-inner span {
    font-size: 1.2rem;
  }
}
/*# sourceMappingURL=common.css.map */