@charset "UTF-8";
/* import_setting */
@import "css/reset.css";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&family=Noto+Serif+JP:wght@400;700;900&display=swap");
html, body {
  font-family: "Noto Serif JP", serif;
  height: 100%;
}
html img, body img {
  height: auto;
}
@media screen and (max-width: 768px) {
  html .pc, body .pc {
    display: none !important;
  }
}
html .sp, body .sp {
  display: none !important;
}
@media screen and (max-width: 768px) {
  html .sp, body .sp {
    display: block !important;
  }
}

body#top .footer {
  display: none;
}
@media screen and (max-width: 768px) {
  body#top .footer {
    display: block;
  }
}

.fade__target {
  /* 最初は非表示 */
  transform: translateY(30px);
  opacity: 0;
  visibility: hidden;
  transition: transform 1s, opacity 1s, visibility 1s;
}

.is-fadein {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
}

.header {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 15px 0;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 20px 0;
  }
}
.header__logo {
  margin-right: auto;
}
.header__logo img {
  display: block;
  width: 140px;
}
.header__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 60px;
}
@media screen and (max-width: 1020px) {
  .header__list {
    display: none;
  }
}
.header__item {
  margin-left: 40px;
}
.header__item a {
  color: #252525;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.header__login {
  font-size: 14px;
  background: #252525;
  color: #fff;
  padding: 13px 15px;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .header__login {
    font-size: 13px;
    padding: 12px;
  }
}
.header__login i {
  margin-right: 10px;
}

.movie video {
  display: block;
  width: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .movie video {
    height: 50vh !important;
  }
}

.message {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .message {
    flex-wrap: wrap;
  }
  .message__img {
    order: 2;
  }
  .message__txt {
    order: 1;
  }
}
.message__img, .message__txt {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .message__img, .message__txt {
    width: 100%;
  }
}
.message__img img {
  display: block;
  width: 100%;
  height: auto;
}
.message__txt {
  color: #252525;
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  background: url("img/logo__white-transparent.svg") no-repeat;
  background-position: center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  .message__txt {
    width: 90%;
    padding: 60px 0;
  }
  .message__txt .fade__target {
    transition: none;
    transform: none;
    visibility: visible;
    opacity: 1;
  }
}
.message__txt h2, .message__txt h3, .message__txt p {
  width: 78%;
}
@media screen and (max-width: 768px) {
  .message__txt h2, .message__txt h3, .message__txt p {
    width: 100%;
  }
}
.message__txt h2 {
  font-size: 34px;
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-bottom: 20px;
}
@media screen and (max-width: 1350px) {
  .message__txt h2 {
    font-size: 30px;
  }
}
@media screen and (max-width: 1200px) {
  .message__txt h2 {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 768px) {
  .message__txt h2 {
    font-size: 24px;
    margin-bottom: 20px;
    letter-spacing: 0.15vw;
  }
}
.message__txt h3 {
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0.15em;
  font-weight: 900;
  margin-bottom: 30px;
}
@media screen and (max-width: 1350px) {
  .message__txt h3 {
    font-size: 22px;
  }
}
@media screen and (max-width: 1200px) {
  .message__txt h3 {
    font-size: 18px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .message__txt h3 {
    font-size: 20px;
    margin-bottom: 30px;
    letter-spacing: 0.15vw;
  }
}
.message__txt p {
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 1200px) {
  .message__txt p {
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .message__txt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 1350px) {
  .message__txt p {
    letter-spacing: 0.15vw;
  }
}

.contact {
  background: #252525;
  color: #fff;
  text-align: center;
}
.contact__wrap {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 100px 0;
  background: url("img/logo__black-transparent.svg") no-repeat;
  background-position: top center;
  background-size: 45%;
}
@media screen and (max-width: 768px) {
  .contact__wrap {
    padding: 60px 0;
    background-size: 100%;
  }
}
.contact__title {
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .contact__title {
    font-size: 20px;
    margin-bottom: 40px;
  }
}
.contact__title i {
  margin-right: 10px;
}
.contact__list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact__list {
    flex-wrap: wrap;
  }
}
.contact__item {
  width: 46%;
}
@media screen and (max-width: 768px) {
  .contact__item {
    width: 100%;
    margin-bottom: 60px;
  }
  .contact__item:last-child {
    margin-bottom: 0;
  }
}
.contact__item img {
  display: block;
  width: 40px;
  height: auto;
  margin: 0 auto 15px;
}
.contact__item-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
.contact__item-title span {
  display: block;
  font-size: 16px;
  margin: 10px 0 20px 0;
}
.contact__item hr {
  width: 50%;
}
.contact__item-tel {
  font-size: 18px;
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
}
.contact__item-tel i {
  color: #59A9E9;
  margin-right: 10px;
}
.contact__item-tel a {
  color: #fff;
}
.contact__item-address {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: normal;
}
.contact__item-map img {
  width: 100%;
  height: auto;
}

.about__title {
  background: url("img/about.jpg") no-repeat;
  background-size: cover;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 24px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about__title {
    background: url("img/about--sp.jpg") no-repeat;
    background-size: cover;
  }
}
.about__list {
  width: 90%;
  margin: 50px auto;
  max-width: 1080px;
}
@media screen and (max-width: 768px) {
  .about__list {
    margin: 0 auto 30px;
  }
}
.about__item {
  padding: 50px 0;
}
@media screen and (max-width: 768px) {
  .about__item {
    padding: 30px 0;
  }
}
.about__item-title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .about__item-title {
    margin-bottom: 20px;
  }
}
.about__item-title img {
  width: 40px;
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .about__item-title img {
    margin-right: 20px;
  }
}
.about__item-title h3 {
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .about__item-title h3 {
    line-height: 1.4;
  }
}
@media screen and (max-width: 768px) {
  .about__item-title h3 span {
    display: none;
  }
}
.about__item-info {
  background: #F8F8F8;
  border-radius: 4px;
  padding: 30px;
  font-size: 16px;
  line-height: 1.6;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .about__item-info {
    padding: 20px;
    font-size: 14px;
  }
}
.about__item-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .about__item-list {
    flex-wrap: wrap;
    margin-bottom: 0;
  }
}
.about__item-item {
  width: 22%;
}
@media screen and (max-width: 768px) {
  .about__item-item {
    width: 45%;
    margin-bottom: 30px;
  }
}
.about__item-item img {
  display: block;
  width: 100%;
  border-radius: 4px;
}
.about__item-table {
  width: 100%;
  text-align: left;
  font-size: 16px;
  border-collapse: collapse;
}
@media screen and (max-width: 768px) {
  .about__item-table {
    display: block;
    font-size: 14px;
  }
}
@media screen and (max-width: 768px) {
  .about__item-table tr {
    display: block;
  }
}
.about__item-table tr:nth-child(odd) {
  background: #F8F9FA;
}
.about__item-table tr th, .about__item-table tr td {
  border-top: 1px solid #DEE2E6;
  padding: 17px 20px;
}
@media screen and (max-width: 768px) {
  .about__item-table tr th, .about__item-table tr td {
    padding: 10px 15px;
    display: block;
    border-top: none;
    width: 100%;
    box-sizing: border-box;
  }
}
.about__item-table tr th {
  font-weight: 900;
  width: 25%;
}
@media screen and (max-width: 768px) {
  .about__item-table tr th {
    width: 100%;
    border-top: 1px solid #DEE2E6;
    padding-bottom: 5px;
  }
}
.about__item-table tr td {
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .about__item-table tr td {
    padding-top: 0;
  }
}

.notfound {
  display: flex;
  justify-content: center;
  align-items: center;
  align-content: center;
  text-align: center;
  height: 100%;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .notfound {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .notfound__wrap {
    width: 100%;
  }
}
.notfound__logo {
  margin-bottom: 40px;
}
.notfound__logo img {
  display: block;
  width: 280px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .notfound__logo img {
    width: 210px;
  }
}
.notfound__main {
  background: #F8F8F8;
  border-radius: 4px;
  padding: 60px 120px;
}
@media screen and (max-width: 768px) {
  .notfound__main {
    padding: 40px 0;
    width: 100%;
    box-sizing: border-box;
  }
}
.notfound__title {
  line-height: 1;
  font-weight: 700;
  margin-bottom: 60px;
}
.notfound__title--en {
  font-size: 36px;
  color: #59A9E9;
  margin-bottom: 15px;
}
@media screen and (max-width: 768px) {
  .notfound__title--en {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
.notfound__title--ja {
  font-size: 20px;
  color: #252525;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .notfound__title--ja {
    font-size: 16px;
    letter-spacing: 0.1vw;
  }
}
.notfound__info {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .notfound__info {
    font-size: 14px;
    margin-bottom: 40px;
  }
}
.notfound__link a {
  font-size: 14px;
  background: #252525;
  color: #fff;
  padding: 13px 15px;
  border-radius: 4px;
  font-family: "Noto Sans JP", san-serif;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .notfound__link a {
    font-size: 13px;
    padding: 12px;
  }
}
.notfound__link a i {
  margin-right: 10px;
}
.notfound small {
  position: absolute;
  width: 100%;
  box-sizing: border-box;
  text-align: center;
  font-size: 10px;
  line-height: 1;
  bottom: 30px;
}

.footer {
  width: 90%;
  margin: 0 auto;
  max-width: 1080px;
  padding: 30px 0;
}
.footer__menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 30px;
}
@media screen and (max-width: 1020px) {
  .footer__menu {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.footer__logo {
  margin-right: auto;
}
@media screen and (max-width: 1020px) {
  .footer__logo {
    margin: 0 auto 30px;
  }
}
.footer__logo img {
  display: block;
  width: 140px;
}
.footer__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-right: 60px;
}
@media screen and (max-width: 1020px) {
  .footer__list {
    margin-right: 0;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
    margin-bottom: 30px;
    width: 100%;
  }
}
.footer__item {
  margin-left: 40px;
}
@media screen and (max-width: 1020px) {
  .footer__item {
    margin-left: 0;
    width: 100%;
    margin-bottom: 30px;
  }
}
.footer__item a {
  color: #252525;
  font-weight: bold;
  letter-spacing: 0.05em;
}
.footer__login {
  font-size: 14px;
  background: #252525;
  color: #fff;
  padding: 13px 15px;
  border-radius: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 900;
  line-height: 1;
}
@media screen and (max-width: 1020px) {
  .footer__login {
    font-size: 13px;
    padding: 12px;
  }
}
.footer__login i {
  margin-right: 10px;
}
.footer__copyright {
  display: block;
  width: 100%;
  text-align: right;
  font-size: 10px;
  line-height: 1;
}
@media screen and (max-width: 1020px) {
  .footer__copyright {
    text-align: center;
  }
}
