@charset "UTF-8";
/*==============================
サイト共通
==============================*/
body {
  font-family: "Noto Serif JP", serif;
  color: #111;
  line-height: 1.7;
  letter-spacing: 0.05em;
  background: #ededed;
}

.inner {
  max-width: 1040px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}
@media (max-width: 767px) {
  .inner {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }
}

.home__section-title-en {
  display: block;
  font-size: 32px;
  font-weight: bold;
}

.home__section-title-ja {
  display: block;
  margin-top: 5px;
  font-size: 18px;
  font-weight: bold;
}

.page-top {
  padding-top: 70px;
  padding-bottom: 70px;
  background: url(../img/subpage-top.png) no-repeat center center/cover;
  margin-bottom: 100px;
}
@media (max-width: 767px) {
  .page-top {
    margin-top: 60px;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 50px;
  }
}

.page-top__title {
  color: #fff;
  font-weight: bold;
}

.page-top__title-en {
  display: block;
  font-size: 32px;
  font-family: "Cormorant Garamond", serif;
}

.page-top__title-ja {
  display: block;
  font-size: 18px;
}

.text-red {
  color: #bb0402;
}

/*==============================
header
==============================*/
.header {
  padding-top: 30px;
  padding-bottom: 30px;
}
@media (max-width: 767px) {
  .header {
    padding-top: 0;
    padding-bottom: 0;
    height: 60px;
    background: #fff;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 100;
  }
}

.header__inner {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media (max-width: 767px) {
  .header__inner {
    height: 60px;
  }
}

.header__nav {
  display: flex;
  flex-direction: row;
  gap: 40px;
  align-items: flex-end;
}
@media (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__nav-link {
  font-weight: bold;
  position: relative;
  padding-bottom: 6px;
}
.header__nav-link::after {
  content: "";
  position: absolute;
  width: 37px;
  height: 2px;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  background: #111;
  opacity: 0;
  transition: all 0.3s;
}
.header__nav-link.is-active::after {
  opacity: 1;
}
.header__nav-link:hover:after {
  opacity: 1;
}

.header__button {
  width: 43px;
  height: 27px;
  position: fixed;
  z-index: 101;
  display: none;
}
.header__button.is-open .header__button-bar:nth-of-type(1) {
  top: 11px;
  transform: rotate(45deg);
}
.header__button.is-open .header__button-bar:nth-of-type(2) {
  display: none;
}
.header__button.is-open .header__button-bar:nth-of-type(3) {
  top: 11px;
  transform: rotate(-45deg);
}
@media (max-width: 767px) {
  .header__button {
    display: block;
  }
}

.header__button-bar {
  content: "";
  position: absolute;
  width: 43px;
  height: 2px;
  background: #111;
  top: 0;
  left: 0;
  transition: all 0.3s ease;
}
.header__button-bar:nth-of-type(2) {
  top: 11px;
}
.header__button-bar:nth-of-type(3) {
  top: 23px;
}

.drawer__content {
  width: 213px;
  height: 100%;
  background: rgba(255, 255, 255, 0.95);
  z-index: 100;
  top: 0;
  right: 0;
  padding-top: 155px;
  position: fixed;
  padding-left: 77px;
  transform: translateX(100%);
  transition: all 0.3s ease;
}
.drawer__content.is-open {
  transform: translateX(0);
}

.drawer__nav {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/*==============================
mv
==============================*/
.mv {
  width: 100%;
  height: 500px;
  background: url(../img/mv.png) no-repeat center center/contain;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media (max-width: 767px) {
  .mv {
    width: 100%;
    height: 100vh;
    background: url(../img/mv-sp.png) no-repeat center center/cover;
    margin-top: 60px;
  }
}

.mv__logo {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.mv__logo img {
  width: 298px;
}

/*==============================
home-message
==============================*/
.home-message {
  padding-top: 140px;
  padding-bottom: 150px;
}
@media (max-width: 767px) {
  .home-message {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.home-message__content {
  display: flex;
  flex-direction: row;
  gap: 138px;
}
@media (max-width: 767px) {
  .home-message__content {
    flex-direction: column-reverse;
    gap: 10px;
  }
}

.home-message__message {
  margin-top: 30px;
  width: 510px;
}
@media (max-width: 767px) {
  .home-message__message {
    width: 100%;
    margin-top: 20px;
  }
}

.home-message__title {
  font-size: 18px;
  font-weight: bold;
}

.home-message__text {
  margin-top: 30px;
}

.home-message__image {
  margin-top: 100px;
}
@media (max-width: 767px) {
  .home-message__image {
    margin-top: 0;
    text-align: center;
  }
}
.home-message__image img {
  width: 160px;
}

/*==============================
home-news
==============================*/
.home-news {
  padding-top: 110px;
  padding-bottom: 110px;
  background: #fff;
}
@media (max-width: 767px) {
  .home-news {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}

.home-news__content {
  margin-top: 10px;
}

.news__item {
  display: flex;
  flex-direction: row;
  gap: 68px;
  padding-top: 20px;
  padding-bottom: 20px;
  padding-left: 20px;
  border-bottom: 1px solid #8b8b8b;
  transition: all 0.3s;
}
.news__item:hover {
  background: rgb(248, 248, 248);
}
@media (max-width: 767px) {
  .news__item {
    flex-direction: column;
    gap: 5px;
    padding-left: 0;
  }
}

.news__date {
  min-width: 125px;
}

.news__title {
  font-weight: bold;
}

/*==============================
footer
==============================*/
.footer {
  padding-top: 200px;
  padding-bottom: 15px;
  text-align: center;
}
@media (max-width: 767px) {
  .footer {
    padding-top: 100px;
  }
}

.copyright {
  font-size: 14px;
  font-family: "Cormorant Garamond", serif;
}

/*==============================
message
==============================*/
.message__content {
  display: flex;
  justify-content: flex-start;
  gap: 80px;
  align-items: center;
}
@media (max-width: 767px) {
  .message__content {
    flex-direction: column;
    gap: 0;
  }
}

.message__logo {
  width: 300px;
}
@media (max-width: 767px) {
  .message__logo {
    width: 200px;
  }
}
.message__texts {
  width: 510px;
}
@media (max-width: 767px) {
  .message__texts {
    width: 100%;
    margin-top: 30px;
  }
}

.message__title {
  font-size: 20px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .message__title {
    font-size: 18px;
  }
}

.message__text {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .message__text {
    margin-top: 10px;
  }
}

/*==============================
single
==============================*/
.single__date {
  font-size: 14px;
}

.single-title {
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .single-title {
    font-size: 18px;
  }
}

.single__image {
  margin-top: 30px;
}
.single__texts {
  margin-top: 40px;
}
.single__texts p + p {
  margin-top: 30px;
}

.single__content {
  display: flex;
  gap: 65px;
  margin-top: 40px;
}
@media (max-width: 767px) {
  .single__content {
    flex-direction: column;
  }
}

.single__content-left {
  width: 41.9%;
}
@media (max-width: 767px) {
  .single__content-left {
    width: 100%;
  }
}

.single__sub-image {
  display: flex;
  margin-top: 20px;
  gap: 16px;
}
.single__sub-image a:hover {
  opacity: 0.7;
}

.single__content-right {
  width: 51.7%;
}
@media (max-width: 767px) {
  .single__content-right {
    width: 100%;
  }
}

.single__test-main {
  font-size: 21px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .single__test-main {
    font-size: 18px;
  }
}

.single__info {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.single-dl {
  display: flex;
}

.single-dt {
  width: 60px;
}

@media (max-width: 767px) {
  .single-dd {
    display: flex;
    flex-direction: column;
  }
}
.single-dd a {
  text-decoration: underline;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .single-dd a {
    margin-left: 0;
  }
}
.single-dd a:hover {
  opacity: 0.7;
}

.single__message {
  margin-top: 50px;
}

/*==============================
past
==============================*/
.past__inner p {
  text-align: center;
  margin-top: 60px;
  font-size: 18px;
  font-weight: bold;
}

.past__list {
  display: flex;
  flex-direction: column;
}

.past__item {
  padding-top: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #8b8b8b;
  transition: all 0.3s;
}
.past__item:hover {
  background: rgb(248, 248, 248);
}

.past__title {
  font-size: 16px;
  font-weight: bold;
}
@media (max-width: 767px) {
  .past__title {
    font-size: 16px;
  }
}

.past__image-content {
  margin-top: 60px;
}

.past__head {
  display: flex;
  flex-direction: row;
  gap: 40px;
}
@media (max-width: 767px) {
  .past__head {
    flex-direction: column;
    gap: 30px;
  }
}

.past__head-image {
  width: 30%;
}
@media (max-width: 767px) {
  .past__head-image {
    width: 100%;
  }
}
.past__head-text {
  width: 40%;
}
@media (max-width: 767px) {
  .past__head-text {
    width: 100%;
  }
}

.past__head-link {
  margin-top: 30px;
}
.past__head-link a {
  text-decoration: underline;
  transition: all 0.3s;
}
.past__head-link a:hover {
  opacity: 0.7;
}

.past__images {
  display: flex;
  flex-direction: row;
  margin-top: 50px;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .past__images {
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
  }
}

.past__image {
  width: calc(33.3% - 20px);
}
.past__image:nth-child(n+4) {
  margin-top: 30px;
}
@media (max-width: 767px) {
  .past__image {
    width: 100%;
  }
  .past__image:nth-child(n+4) {
    margin-top: 0;
  }
}
/*==============================
contact
==============================*/
.contact__texts {
  text-align: center;
}

.contact__text-attention {
  font-size: 13px;
  margin-top: 15px;
}

/*==============================
thanks
==============================*/
.thanks__inner p + p {
  margin-top: 30px;
}
.thanks__inner a {
  display: inline-block;
  margin-top: 50px;
  text-decoration: underline;
  transition: all 0.3s;
}
.thanks__inner a:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */