@charset "UTF-8";
.news-category-area {
  height: 56px;
  background-color: #FFFFFF;
}
.news-category-area .subpage-wrapper .news-category-list {
  display: flex;
  align-items: center;
  gap: 40px;
  height: 56px;
}
.news-category-area .subpage-wrapper .news-category-list .news-category-item a {
  font-size: 13px;
  color: var(--text-light);
}

.news-posts {
  background-color: var(--bg-color);
  padding-top: 20px;
}
@media screen and (max-width: 840px) {
  .news-posts {
    padding-top: 39px;
  }
}
.news-posts .subpage-wrapper .news-items {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 56px;
  min-height: 586px;
}
@media screen and (max-width: 840px) {
  .news-posts .subpage-wrapper .news-items {
    gap: 12px;
    min-height: 650px;
  }
}
@media screen and (max-width: 450px) {
  .news-posts .subpage-wrapper .news-items {
    min-height: 0;
  }
}
.news-posts .subpage-wrapper .news-items .news-item {
  background-color: var(--white);
  transition: all 0.5s;
  position: relative;
  border: 1px solid #E0E0E0;
  border-radius: 4px;
}
.news-posts .subpage-wrapper .news-items .news-item:hover {
  opacity: 0.6;
}
.news-posts .subpage-wrapper .news-items .news-item::after {
  content: "→";
  position: absolute;
  top: 50%;
  right: 3%;
  transform: translateY(-50%);
  font-size: 14px;
  color: var(--text-light);
}
@media screen and (max-width: 840px) {
  .news-posts .subpage-wrapper .news-items .news-item::after {
    right: 5%;
  }
}
.news-posts .subpage-wrapper .news-items .news-item a {
  padding: 12px 24px;
  display: grid;
  grid-template-columns: 230px 24% 1fr;
  grid-template-rows: repeat(2, auto);
  gap: 4px;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .news-posts .subpage-wrapper .news-items .news-item a {
    padding: 10px 24px 11px 24px;
    gap: 4px;
  }
}
@media screen and (max-width: 450px) {
  .news-posts .subpage-wrapper .news-items .news-item a {
    grid-template-columns: 65% 1fr;
    grid-template-rows: repeat(3, auto);
  }
}
.news-posts .subpage-wrapper .news-items .news-item a .news-date {
  font-size: 12px;
  color: var(--text-light);
  align-self: flex-end;
}
@media screen and (max-width: 840px) {
  .news-posts .subpage-wrapper .news-items .news-item a .news-date {
    grid-area: 1/1/2/2;
  }
}
.news-posts .subpage-wrapper .news-items .news-item a .news-category {
  grid-area: 1/2/3/3;
}
@media screen and (max-width: 840px) {
  .news-posts .subpage-wrapper .news-items .news-item a .news-category {
    grid-area: 1/2/3/3;
  }
}
.news-posts .subpage-wrapper .news-items .news-item a .news-title {
  grid-area: 2/1/3/2;
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 840px) {
  .news-posts .subpage-wrapper .news-items .news-item a .news-title {
    grid-area: 2/1/3/2;
  }
}
.news-posts .subpage-wrapper .news-items .news-item a .news-place {
  grid-area: 1/3/4/4;
  font-size: 12px;
}
@media screen and (max-width: 840px) {
  .news-posts .subpage-wrapper .news-items .news-item a .news-place {
    grid-area: 3/1/4/3;
  }
}

.pagination .nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding-bottom: 20px;
}
.pagination .nav-links .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 40px;
  height: 40px;
  background: #fff;
  border: solid 1px #E0E0E0;
  font-size: 14px;
  color: var(--text-light);
  transition: all 0.3s linear;
  border-radius: 4px;
}
.pagination .nav-links .page-numbers.current {
  background: #1A1A1A;
  color: var(--white);
  pointer-events: none;
}
.pagination .nav-links .page-numbers:not(.current):hover {
  background: #1A1A1A;
  color: var(--white);
}

#single-main {
  display: flex;
  flex-direction: column;
  min-height: calc(100vh - 100px);
}
#single-main .news-contents-area {
  flex: 1;
}
#single-main .breadcrumb,
#single-main .article-pagenation {
  flex-shrink: 0;
}

.breadcrumb {
  background-color: var(--white);
  margin-top: 90px;
  height: 48px;
}
@media screen and (max-width: 840px) {
  .breadcrumb {
    margin-top: 72px;
  }
}
.breadcrumb .subpage-wrapper .breadcrumb-list {
  height: 56px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .breadcrumb .subpage-wrapper .breadcrumb-list {
    height: 51px;
  }
}
.breadcrumb .subpage-wrapper .breadcrumb-list li {
  font-size: 12px;
  padding-bottom: 10px;
}
@media screen and (max-width: 840px) {
  .breadcrumb .subpage-wrapper .breadcrumb-list li {
    padding-bottom: 5px;
  }
}
.breadcrumb .subpage-wrapper .breadcrumb-list li a {
  font-size: 12px;
}
.breadcrumb .subpage-wrapper .breadcrumb-list li:not(:first-child, :last-child)::after {
  content: ">";
  margin: 0 10px;
}

.news-contents-area {
  background-color: var(--bg-color);
  padding-top: 20px;
  padding-bottom: 20px;
  border-radius: 4px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 840px) {
  .news-contents-area {
    padding-top: 50px;
    padding-bottom: 49px;
  }
}
.news-contents-area::after {
  content: "";
  background: url(../img/single-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 66%;
  position: absolute;
  top: 30%;
  right: 0;
  aspect-ratio: 34/45;
  z-index: -1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 840px) {
  .news-contents-area::after {
    display: none;
  }
}
.news-contents-area .subpage-wrapper {
  display: flex;
  gap: 60px;
  padding: 0 13px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper {
    flex-direction: column;
    gap: 34px;
  }
}
.news-contents-area .subpage-wrapper article {
  width: calc(60% - 30px);
  background-color: var(--white);
  padding: 40px 40px 59px;
  border-radius: 4px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article {
    width: 100%;
  }
}
.news-contents-area .subpage-wrapper article .news-category {
  margin-bottom: 18px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article .news-category {
    margin-bottom: 16px;
  }
}
.news-contents-area .subpage-wrapper article .news-date {
  font-size: 13px;
  margin-bottom: 12px;
  color: var(--text-light);
}
.news-contents-area .subpage-wrapper article .news-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 22px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article .news-title {
    font-size: 26px;
  }
}
.news-contents-area .subpage-wrapper article dl {
  display: flex;
  flex-wrap: wrap;
  font-size: 13px;
  margin-bottom: 37px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article dl {
    font-size: 12px;
  }
}
.news-contents-area .subpage-wrapper article dl dt {
  width: 65px;
  border-top: 1px solid #E0E0E0;
  padding: 13px 0 10px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article dl dt {
    width: 60px;
    padding: 16px 0 13px;
  }
}
.news-contents-area .subpage-wrapper article dl dt:last-of-type {
  border-bottom: 1px solid #E0E0E0;
}
.news-contents-area .subpage-wrapper article dl dt.url {
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
}
.news-contents-area .subpage-wrapper article dl dd {
  width: calc(100% - 125px);
  border-top: 1px solid #E0E0E0;
  padding: 13px 0 10px 31px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article dl dd {
    width: calc(100% - 60px);
    padding: 16px 0 13px 9px;
  }
}
.news-contents-area .subpage-wrapper article dl dd:last-child {
  border-bottom: 1px solid #E0E0E0;
}
.news-contents-area .subpage-wrapper article dl dd a {
  font-size: 13px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article dl dd a {
    font-size: 12px;
  }
}
.news-contents-area .subpage-wrapper article .article-detail .article-detail-head {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 13px;
}
.news-contents-area .subpage-wrapper article .article-detail .article-detail-text {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 28px;
  white-space: pre-wrap;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article .article-detail .article-detail-text {
    font-size: 12px;
    line-height: 22px;
  }
}
.news-contents-area .subpage-wrapper article .article-detail .article-detail-map {
  width: 100%;
}
.news-contents-area .subpage-wrapper article .article-detail .article-detail-map .acf-map {
  width: 100%;
  height: 180px;
  border-radius: 4px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper article .article-detail .article-detail-map .acf-map {
    height: 167px;
  }
}
.news-contents-area .subpage-wrapper article .article-detail .article-detail-map .acf-map img {
  max-width: none !important;
}
.news-contents-area .subpage-wrapper aside {
  width: calc(40% - 30px);
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper aside {
    width: 100%;
  }
}
.news-contents-area .subpage-wrapper aside .aside-list {
  background-color: var(--white);
  padding: 24px 24px 43px 24px;
  margin-bottom: 16px;
  border-radius: 4px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper aside .aside-list {
    padding: 15px 24px 20px 24px;
  }
}
.news-contents-area .subpage-wrapper aside .aside-list .aside-head {
  font-size: 16px;
  font-weight: 700;
  padding-bottom: 11px;
}
.news-contents-area .subpage-wrapper aside .aside-list ul li.aside-news-item {
  border-top: 1px solid #E0E0E0;
  border-bottom: 1px solid #E0E0E0;
}
.news-contents-area .subpage-wrapper aside .aside-list ul li.aside-news-item a {
  display: inline-block;
  width: 100%;
  padding: 15px 0 9px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper aside .aside-list ul li.aside-news-item a {
    padding: 10px 0 11px;
  }
}
.news-contents-area .subpage-wrapper aside .aside-list ul li.aside-news-item a .news-date {
  font-size: 11px;
  margin-bottom: 5px;
  display: inline-block;
  padding: 3px 4px;
}
.news-contents-area .subpage-wrapper aside .aside-list ul li.aside-news-item a .news-title {
  font-size: 14px;
  font-weight: 700;
}
.news-contents-area .subpage-wrapper aside .aside-list ul li.aside-news-item.yose .news-date {
  background-color: #D4F869;
}
.news-contents-area .subpage-wrapper aside .aside-list ul li.aside-news-item.event .news-date {
  background-color: #FEBDFB;
}
.news-contents-area .subpage-wrapper aside .aside-list ul li.aside-news-item.rakugokai .news-date {
  background-color: #F8E569;
}
.news-contents-area .subpage-wrapper aside .aside-contact {
  padding: 24px;
  background-color: #4C71B3;
  border-radius: 4px;
}
.news-contents-area .subpage-wrapper aside .aside-contact .aside-contact-head {
  color: var(--white);
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 40px;
}
@media screen and (max-width: 840px) {
  .news-contents-area .subpage-wrapper aside .aside-contact .aside-contact-head {
    margin-bottom: 26px;
    text-align: center;
  }
}
.news-contents-area .subpage-wrapper aside .aside-contact .aside-contact-btn {
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  width: 200px;
  height: 44px;
  border-radius: 999px;
  background-color: var(--white);
  color: var(--text-color);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.19em;
  position: relative;
}
.news-contents-area .subpage-wrapper aside .aside-contact .aside-contact-btn::after {
  height: 8px;
  width: 8px;
  content: "";
  border-bottom: 2px solid var(--text-color);
  border-right: 2px solid var(--text-color);
  position: absolute;
  top: 50%;
  right: 23px;
  transform: translateY(-50%) rotate(-45deg);
}
.news-contents-area .subpage-wrapper aside .aside-contact .aside-contact-btn:hover {
  transform: scale(1.1);
}

.article-pagenation {
  background-color: var(--white);
}
.article-pagenation .subpage-wrapper .article-pagenation-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}
.article-pagenation .subpage-wrapper .article-pagenation-list a {
  font-size: 13px;
  color: var(--text-light);
}
.article-pagenation .subpage-wrapper .article-pagenation-list a:hover {
  color: #4D4D4D;
}
.article-pagenation .subpage-wrapper .article-pagenation-list .disabled {
  font-size: 13px;
  color: var(--text-light);
}

.contact-form-area {
  background-color: var(--bg-color);
  padding: 40px 0;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 840px) {
  .contact-form-area {
    padding: 0;
  }
}
.contact-form-area::before {
  content: "";
  background: url(../img/contact-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 42%;
  position: absolute;
  top: 0;
  left: 0;
  aspect-ratio: 235/377;
  z-index: -1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 840px) {
  .contact-form-area::before {
    display: none;
  }
}
.contact-form-area::after {
  content: "";
  background: url(../img/contact-bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 55%;
  position: absolute;
  bottom: 0;
  right: 0;
  aspect-ratio: 225/461;
  z-index: -1;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 840px) {
  .contact-form-area::after {
    display: none;
  }
}
.contact-form-area .contact-wrapper {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  border-radius: 4px;
}
.contact-form-area .contact-wrapper .contact-form {
  padding: 48px 40px 40px;
  background-color: #ffffff;
}
@media screen and (max-width: 840px) {
  .contact-form-area .contact-wrapper .contact-form {
    padding: 48px 31px 35px;
  }
}
.contact-form-area .contact-wrapper .contact-form .form-item {
  margin-bottom: 24px;
}
.contact-form-area .contact-wrapper .contact-form .form-item .form-label {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 10px;
}
.contact-form-area .contact-wrapper .contact-form .form-item .form-label .badge-required {
  background-color: #FF1E00;
  color: #ffffff;
  font-size: 9px;
  padding: 2px 5px;
  border-radius: 4px;
}
.contact-form-area .contact-wrapper .contact-form .form-item .form-input,
.contact-form-area .contact-wrapper .contact-form .form-item .form-textarea {
  width: 100%;
  padding: 14px;
  border: 1px solid #E0E0E0;
  background-color: var(--bg-color);
  border-radius: 4px;
  font-size: 13px;
  box-sizing: border-box;
  outline: none;
}
.contact-form-area .contact-wrapper .contact-form .form-item .form-input::-moz-placeholder, .contact-form-area .contact-wrapper .contact-form .form-item .form-textarea::-moz-placeholder {
  color: #E0E0E0;
  font-size: 13px;
}
.contact-form-area .contact-wrapper .contact-form .form-item .form-input::placeholder,
.contact-form-area .contact-wrapper .contact-form .form-item .form-textarea::placeholder {
  color: #E0E0E0;
  font-size: 13px;
}
.contact-form-area .contact-wrapper .contact-form .form-item .form-input:focus,
.contact-form-area .contact-wrapper .contact-form .form-item .form-textarea:focus {
  border-color: #dddddd;
}
.contact-form-area .contact-wrapper .contact-form .form-item .wpcf7-not-valid-tip {
  font-size: 13px;
}
.contact-form-area .contact-wrapper .contact-form .form-item .select-wrapper select#type {
  color: var(--text-color);
}
.contact-form-area .contact-wrapper .contact-form .form-item .select-wrapper select#type:has(option[value=""]:checked) {
  color: #E0E0E0;
}
.contact-form-area .contact-wrapper .contact-form .form-item .select-wrapper select#type option {
  color: var(--text-color);
}
.contact-form-area .contact-wrapper .contact-form .form-item .select-wrapper select#type option:first-child {
  color: #E0E0E0;
}
.contact-form-area .contact-wrapper .contact-form .form-textarea {
  height: 160px;
  resize: vertical;
}
.contact-form-area .contact-wrapper .form-agreement {
  margin-bottom: 40px;
  font-size: 13px;
  color: #4D4D4D;
  display: flex;
  gap: 10px;
}
.contact-form-area .contact-wrapper .form-agreement label {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.contact-form-area .contact-wrapper .form-agreement label input {
  margin-right: 10px;
  width: 18px;
  height: 18px;
  cursor: pointer;
}
.contact-form-area .contact-wrapper .form-submit {
  text-align: center;
}
.contact-form-area .contact-wrapper .form-submit .submit-button {
  background-color: #1a1a1a;
  color: #ffffff;
  padding: 16px 124px;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s;
}
.contact-form-area .contact-wrapper .form-submit .submit-button:disabled {
  background-color: #cccccc;
  cursor: not-allowed;
  opacity: 0.6;
}
.contact-form-area .contact-wrapper .form-submit .submit-button:not(:disabled):hover {
  opacity: 0.8;
}
.contact-form-area .contact-wrapper .form-submit p {
  margin: 0 auto;
  max-width: 320px;
  width: 100%;
}
.contact-form-area .contact-wrapper .form-submit p .submit-button {
  width: 100%;
  padding: 16px;
}
@media screen and (max-width: 840px) {
  .contact-form-area .contact-wrapper .form-submit p .submit-button {
    padding: 12px 16px;
  }
}

:root {
  --color-accent: #D4F869;
  --color-main: #274564;
  --text-color: #000000;
  --text-light: #8C8C8C;
  --bg-color: #F2F2F2;
  --white: #FFFFFF;
}

html {
  color: var(--text-color);
  height: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 18px;
  scroll-behavior: smooth;
  scroll-padding-top: 120px;
  background-color: var(--bg-color);
}
@media screen and (max-width: 840px) {
  html {
    scroll-padding-top: 72px;
  }
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
}

a {
  text-decoration: none;
  color: var(--text-color);
  font-size: 18px;
  display: inline-block;
  transition: all 0.5s;
  cursor: pointer;
}

li {
  list-style: none;
}

.wrapper {
  max-width: 1192px;
  margin: 0 auto;
  padding: 0 20px;
}

.subpage-wrapper {
  max-width: 1320px;
  padding: 0 20px;
  margin: 0 auto;
}

.section-title {
  color: var(--color-main);
  margin-bottom: 50px;
  margin-left: 26px;
}
@media screen and (max-width: 840px) {
  .section-title {
    text-align: center;
    margin-left: 0;
  }
}
.section-title .section-title-en {
  font-size: 16px;
}
.section-title .section-title-jp {
  font-size: 40px;
}
@media screen and (max-width: 840px) {
  .section-title .section-title-jp {
    font-size: 32px;
  }
}

.section-title-wh {
  color: var(--white);
}

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

.br-tab {
  display: none;
}
@media screen and (max-width: 840px) {
  .br-tab {
    display: block;
  }
}

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

.subpage-title {
  margin-top: 90px;
  height: 160px;
  background-color: var(--color-main);
}
@media screen and (max-width: 840px) {
  .subpage-title {
    margin-top: 72px;
    height: 130px;
    justify-content: center;
  }
}
.subpage-title .subpage-wrapper {
  height: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media screen and (max-width: 840px) {
  .subpage-title .subpage-wrapper {
    justify-content: center;
  }
}
.subpage-title .subpage-wrapper .section-title {
  margin-bottom: 0;
  margin-left: 0;
}
.subpage-title .subpage-wrapper .section-title .section-title-en {
  font-size: 16px;
}
@media screen and (max-width: 840px) {
  .subpage-title .subpage-wrapper .section-title .section-title-jp {
    font-size: 35px;
  }
}
.subpage-title .subpage-wrapper .section-title .section-title-text {
  font-size: 14px;
  color: #FFFFFF;
  font-weight: 400;
}
@media screen and (max-width: 450px) {
  .subpage-title .subpage-wrapper .section-title .section-title-text {
    display: none;
  }
}
@media screen and (max-width: 840px) {
  .subpage-title .subpage-wrapper .section-title .section-title-text {
    display: none;
  }
}

.news-category span {
  font-size: 10px;
  padding: 8px 10px;
  width: 60px;
  display: inline-block;
  text-align: center;
  border-radius: 2px;
}
.news-category .category-yose {
  background-color: #D4F869;
}
.news-category .category-event {
  background-color: #FEBDFB;
}
.news-category .category-rakugokai {
  background-color: #F8E569;
}

header {
  height: 90px;
  width: 100%;
  background-color: var(--text-color);
  position: fixed;
  top: 0;
  z-index: 999;
}
@media screen and (max-width: 840px) {
  header {
    height: 72px;
  }
}
header .wrapper {
  max-width: 100vw;
  margin: 0 auto;
  padding: 0 52px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 840px) {
  header .wrapper {
    padding: 0 22px;
  }
}
header .wrapper .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}
header .wrapper .header-spacer {
  display: none;
}
@media screen and (max-width: 840px) {
  header .wrapper .header-spacer {
    display: block;
    height: 100%;
    width: 24px;
  }
}
header .wrapper .header-logo {
  height: 50px;
}
header .wrapper .header-logo a .header-logo-pc {
  display: block;
  height: 100%;
  width: 150px;
  transition: all 0.5s;
}
header .wrapper .header-logo a .header-logo-pc:hover {
  opacity: 0.8;
}
@media screen and (max-width: 840px) {
  header .wrapper .header-logo a .header-logo-pc {
    display: none;
  }
}
header .wrapper .header-logo a .header-logo-sp {
  display: none;
  height: 100%;
  width: 147px;
}
@media screen and (max-width: 840px) {
  header .wrapper .header-logo a .header-logo-sp {
    display: block;
  }
}
header .wrapper .header-nav {
  display: flex;
  justify-content: space-between;
}
header .wrapper .header-nav ul {
  display: flex;
  gap: 40px;
}
@media screen and (max-width: 840px) {
  header .wrapper .header-nav ul {
    flex-direction: column;
    gap: 26px;
    position: absolute;
    top: 0;
    right: -100%;
    padding: 75px 30px 54px;
    background-color: #FAFF78;
    transition: all 0.5s;
  }
}
header .wrapper .header-nav ul li a {
  color: var(--white);
  position: relative;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 840px) {
  header .wrapper .header-nav ul li a {
    font-weight: 700;
    color: var(--text-color);
  }
}
header .wrapper .header-nav ul li a::after {
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--color-accent);
  position: absolute;
  left: 0;
  bottom: -10px;
  transition: all 0.5s;
  opacity: 0;
}
@media screen and (max-width: 840px) {
  header .wrapper .header-nav ul li a::after {
    background-color: var(--text-color);
  }
}
header .wrapper .header-nav ul li a:hover {
  color: var(--color-accent);
  opacity: 1;
}
@media screen and (max-width: 840px) {
  header .wrapper .header-nav ul li a:hover {
    color: var(--text-color);
  }
}
header .wrapper .header-nav ul li a:hover::after {
  bottom: -2px;
  opacity: 1;
}
header .wrapper .header-nav .hamburger {
  position: relative;
  height: 24px;
  width: 24px;
  z-index: 20;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 840px) {
  header .wrapper .header-nav .hamburger {
    display: block;
  }
}
header .wrapper .header-nav .hamburger span {
  position: absolute;
  left: 0;
  content: "";
  height: 2px;
  width: 100%;
  background-color: var(--white);
  transition: all 0.5s;
}
header .wrapper .header-nav .hamburger span:nth-child(1) {
  top: 2px;
}
header .wrapper .header-nav .hamburger span:nth-child(2) {
  top: 50%;
}
header .wrapper .header-nav .hamburger span:nth-child(3) {
  bottom: 0px;
}

@media screen and (max-width: 840px) {
  .open .wrapper .header-nav ul {
    right: 0;
  }
}
.open .wrapper .hamburger span:nth-child(1) {
  transform: translateY(500%) rotate(-225deg);
  background-color: #898989;
}
.open .wrapper .hamburger span:nth-child(2) {
  opacity: 0;
}
.open .wrapper .hamburger span:nth-child(3) {
  transform: translateY(-500%) rotate(225deg);
  background-color: #898989;
}

#fv {
  position: relative;
  margin-top: 90px;
}
@media screen and (max-width: 840px) {
  #fv {
    margin-top: 72px;
  }
}
#fv .fv-pc {
  display: block;
}
@media screen and (max-width: 840px) {
  #fv .fv-pc {
    display: none;
  }
}
#fv .fv-sp {
  display: none;
}
@media screen and (max-width: 840px) {
  #fv .fv-sp {
    display: block;
  }
}
#fv .cloud-1 {
  position: absolute;
  top: 10%;
  left: 0;
  width: 14%;
  z-index: 10;
}
@media screen and (max-width: 840px) {
  #fv .cloud-1 {
    top: 3%;
    width: 30%;
  }
}
#fv .cloud-2 {
  position: absolute;
  bottom: -10%;
  right: 0;
  width: 19%;
  z-index: 10;
  display: block;
}
@media screen and (max-width: 840px) {
  #fv .cloud-2 {
    display: none;
    bottom: -9%;
    width: 36%;
  }
}
#fv .cloud-2-1 {
  position: absolute;
  display: none;
  z-index: 10;
}
@media screen and (max-width: 840px) {
  #fv .cloud-2-1 {
    bottom: -12%;
    right: 0;
    width: 36%;
    display: block;
  }
}

#news {
  padding-top: 70px;
  background-color: var(--color-main);
  position: relative;
  margin-bottom: 12%;
  overflow: visible;
}
@media screen and (max-width: 840px) {
  #news {
    padding-top: 78px;
  }
}
#news::before {
  content: "";
  background: url(../img/news-bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  height: 116%;
  width: auto;
  aspect-ratio: 134/135;
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateY(45%);
  z-index: 0;
  mix-blend-mode: multiply;
}
@media screen and (max-width: 840px) {
  #news::before {
    background: url(../img/news-bg2-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 247/408;
    opacity: 1;
    height: 58%;
    width: auto;
    transform: translateY(30%);
  }
}
#news::after {
  content: "";
  background: url(../img/news-bg.png);
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: absolute;
  top: 99%;
  left: 0;
  aspect-ratio: 192/25;
  z-index: -1;
}
@media screen and (max-width: 840px) {
  #news::after {
    background: url(../img/news-bg-sp.png);
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 13/3;
  }
}
#news .section-title {
  margin-bottom: 38px;
}
#news .wrapper {
  position: relative;
  z-index: 3;
}
#news .wrapper .news-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 25px;
}
@media screen and (max-width: 840px) {
  #news .wrapper .news-list {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}
@media screen and (max-width: 840px) {
  #news .wrapper .news-list .news-item {
    max-width: calc(100% - 90px);
    width: 100%;
    margin: 0 auto;
  }
}
#news .wrapper .news-list .news-item a {
  display: block;
  background-color: var(--white);
  padding: 30px;
}
@media screen and (max-width: 840px) {
  #news .wrapper .news-list .news-item a {
    padding: 19px 23px 24px;
  }
}
#news .wrapper .news-list .news-item a:hover {
  transform: scale(1.1);
}
#news .wrapper .news-list .news-item a .news-date {
  padding: 8px;
  display: inline-block;
  margin-bottom: 10px;
}
@media screen and (max-width: 840px) {
  #news .wrapper .news-list .news-item a .news-date {
    font-size: 14px;
  }
}
#news .wrapper .news-list .news-item a .news-title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 8px;
}
@media screen and (max-width: 840px) {
  #news .wrapper .news-list .news-item a .news-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 840px) {
  #news .wrapper .news-list .news-item a .news-place {
    font-size: 14px;
  }
}
#news .wrapper .news-list .news-item.yose .news-date {
  background-color: #D4F869;
}
#news .wrapper .news-list .news-itemevent .news-date {
  background-color: #FEBDFB;
}
#news .wrapper .news-list .news-item.rakugokai .news-date {
  background-color: #F8E569;
}
#news .wrapper .see-all {
  text-align: right;
}
#news .wrapper .see-all a {
  color: var(--white);
  letter-spacing: 0.1em;
}
#news .wrapper .see-all a:hover {
  color: var(--color-accent);
  opacity: 1;
}
@media screen and (max-width: 840px) {
  #news .wrapper .see-all a {
    font-size: 12px;
    margin-bottom: 10px;
    margin-right: 45px;
  }
}

#story {
  padding-top: 50px;
  position: relative;
}
@media screen and (max-width: 840px) {
  #story {
    padding-top: 100px;
  }
}
@media screen and (max-width: 840px) {
  #story {
    padding-top: 70px;
  }
}
#story:has(.swiper-slide:hover) {
  z-index: 11;
}
#story .container {
  max-width: 1380px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
  padding: 0 60px;
}
@media screen and (max-width: 840px) {
  #story .container {
    padding: 0 32px;
  }
}
#story .container .wrapper .section-title {
  margin-bottom: 0;
}
#story .container .swiper {
  width: 100%;
  overflow: visible;
  transform-origin: center;
  position: relative;
  z-index: 2;
  pointer-events: none;
}
#story .container .swiper .swiper-wrapper {
  display: flex;
  align-items: flex-start;
  margin: 70px 0 150px;
  z-index: auto;
  pointer-events: auto;
}
@media screen and (max-width: 840px) {
  #story .container .swiper .swiper-wrapper {
    margin: 70px 0 150px;
  }
}
@media screen and (max-width: 450px) {
  #story .container .swiper .swiper-wrapper {
    margin: 50px 0 150px;
  }
}
#story .container .swiper .swiper-wrapper:hover .swiper-slide {
  opacity: 0.3;
}
#story .container .swiper .swiper-wrapper .swiper-slide {
  position: relative;
  transition: 0.3s;
  transform-origin: center;
  cursor: pointer;
  height: auto;
  z-index: 1;
  pointer-events: auto;
}
#story .container .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  display: block;
}
#story .container .swiper .swiper-wrapper .swiper-slide .slide-hover {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  width: 90%;
  position: absolute;
  top: 75%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: 0.5s;
}
@media screen and (max-width: 724px) {
  #story .container .swiper .swiper-wrapper .swiper-slide .slide-hover {
    width: 100%;
  }
}
@media screen and (max-width: 679px) {
  #story .container .swiper .swiper-wrapper .swiper-slide .slide-hover {
    width: 80%;
  }
}
@media screen and (max-width: 450px) {
  #story .container .swiper .swiper-wrapper .swiper-slide .slide-hover {
    width: 87%;
  }
}
#story .container .swiper .swiper-wrapper .swiper-slide .slide-hover .hover-title {
  background-color: #4C71B3;
  color: var(--white);
  padding: 0.2em 0.5em;
  font-size: clamp(14px, 1.296vw, 18px);
}
@media screen and (max-width: 1079px) {
  #story .container .swiper .swiper-wrapper .swiper-slide .slide-hover .hover-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 450px) {
  #story .container .swiper .swiper-wrapper .swiper-slide .slide-hover .hover-title {
    font-size: 16px;
  }
}
#story .container .swiper .swiper-wrapper .swiper-slide .slide-hover .hover-text {
  background-color: rgba(255, 255, 255, 0.8);
  font-size: 10px;
  font-size: clamp(10px, 0.926vw, 12px);
  padding: 0.5em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1079px) {
  #story .container .swiper .swiper-wrapper .swiper-slide .slide-hover .hover-text {
    font-size: 13px;
  }
}
@media screen and (max-width: 450px) {
  #story .container .swiper .swiper-wrapper .swiper-slide .slide-hover .hover-text {
    font-size: 12px;
  }
}
#story .container .swiper .swiper-wrapper .swiper-slide:hover {
  transform: scale(1.4);
  z-index: 100 !important;
  opacity: 1;
}
@media screen and (max-width: 840px) {
  #story .container .swiper .swiper-wrapper .swiper-slide:hover {
    transform: translateX(11%) scale(1.3);
  }
}
#story .container .swiper .swiper-wrapper .swiper-slide:hover .slide-hover {
  opacity: 1;
}
#story .container .swiper-pagination {
  position: absolute;
  bottom: 9%;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  pointer-events: auto;
}
#story .container .swiper-pagination .swiper-pagination-bullet {
  width: 13px;
  height: 13px;
  background: rgba(39, 69, 100, 0.3);
  opacity: 1;
  margin: 0 10px;
  cursor: pointer;
}
#story .container .swiper-pagination .swiper-pagination-bullet-active {
  background: var(--color-main);
}

#soul {
  margin-bottom: 80px;
  position: relative;
}
@media screen and (max-width: 840px) {
  #soul {
    margin-bottom: 65px;
  }
}
#soul::after {
  content: "";
  background: url(../img/story-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 87%;
  width: auto;
  aspect-ratio: 17/25;
  position: absolute;
  top: -50%;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 840px) {
  #soul::after {
    background: url(../img/story-bg-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 150%;
    width: auto;
    aspect-ratio: 22/45;
    top: -70%;
  }
}
@media screen and (max-width: 450px) {
  #soul::after {
    height: 70%;
    width: auto;
    aspect-ratio: 22/45;
    top: -35%;
  }
}
#soul .container {
  max-width: 1284px;
  width: calc(100% - 40px);
  margin: 0 auto;
  background-image: url(../img/soul-bg.png);
  background-size: cover;
  background-position: center;
  border-radius: 30px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 840px) {
  #soul .container {
    background-image: url(../img/soul-bg-sp.png);
    background-size: cover;
    background-position: top;
  }
}
#soul .container .wrapper {
  padding-top: 67px;
  padding-bottom: 147px;
}
@media screen and (max-width: 840px) {
  #soul .container .wrapper {
    padding-bottom: 57px;
  }
}
#soul .container .wrapper .section-title {
  margin-bottom: 55px;
}
@media screen and (max-width: 840px) {
  #soul .container .wrapper .section-title {
    margin-bottom: 40px;
  }
}
#soul .container .wrapper .soul-text {
  padding: 0 11%;
  margin: 0 auto;
  color: var(--white);
  font-size: 22px;
  line-height: 2.25em;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 840px) {
  #soul .container .wrapper .soul-text {
    padding: 0 8%;
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  #soul .container .wrapper .soul-text {
    padding: 0 10px;
    font-size: 16px;
  }
}
#soul .cloud-3-pc {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-78%);
  width: 19%;
  z-index: 10;
}
@media screen and (max-width: 840px) {
  #soul .cloud-3-pc {
    width: 34%;
    display: none;
  }
}
#soul .cloud-3-sp {
  position: absolute;
  top: 0;
  right: 0;
  transform: translateY(-78%);
  width: 19%;
  z-index: 10;
  display: none;
}
@media screen and (max-width: 840px) {
  #soul .cloud-3-sp {
    width: 34%;
    display: block;
  }
}
#soul .cloud-4 {
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(53%);
  width: 14%;
  z-index: 10;
}
@media screen and (max-width: 840px) {
  #soul .cloud-4 {
    width: 39%;
    transform: translateY(90%);
  }
}

#profile {
  position: relative;
}
#profile::after {
  content: "";
  background: url(../img/profile-bg.png);
  background-repeat: no-repeat;
  background-size: contain;
  height: 71%;
  aspect-ratio: 367/503;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
  z-index: -1;
}
@media screen and (max-width: 840px) {
  #profile::after {
    background: url(../img/profile-bg-sp.png);
    background-repeat: no-repeat;
    background-size: contain;
    height: 27%;
    width: auto;
    aspect-ratio: 39/95;
    top: -9%;
    right: 0;
    left: auto;
    transform: none;
  }
}
#profile .wrapper {
  max-width: 1284px;
  width: calc(100% - 40px);
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  #profile .wrapper {
    padding: 0;
  }
}
#profile .wrapper .section-title {
  margin-bottom: 35px;
}
@media screen and (max-width: 840px) {
  #profile .wrapper .section-title {
    margin-bottom: 24px;
  }
}
#profile .wrapper .profile-contents {
  margin-left: 26px;
  padding-bottom: 83px;
  position: relative;
}
@media screen and (max-width: 840px) {
  #profile .wrapper .profile-contents {
    position: static;
    display: flex;
    flex-direction: column;
    margin-left: 0;
    padding-bottom: 0;
  }
}
#profile .wrapper .profile-contents .profile-list {
  flex-wrap: wrap;
  width: 100%;
  display: flex;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 840px) {
  #profile .wrapper .profile-contents .profile-list {
    font-size: 16px;
  }
}
@media screen and (max-width: 450px) {
  #profile .wrapper .profile-contents .profile-list {
    font-size: 14px;
  }
}
#profile .wrapper .profile-contents .profile-list .profile-list-term {
  width: 140px;
  line-height: 2.1em;
  text-align: justify;
  -moz-text-align-last: justify;
       text-align-last: justify;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 450px) {
  #profile .wrapper .profile-contents .profile-list .profile-list-term {
    width: 104px;
    letter-spacing: 0;
  }
}
#profile .wrapper .profile-contents .profile-list .profile-list-desc {
  width: calc(100% - 140px);
  padding-left: 23px;
  line-height: 2.1em;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
@media screen and (max-width: 450px) {
  #profile .wrapper .profile-contents .profile-list .profile-list-desc {
    width: calc(100% - 104px);
    letter-spacing: 0;
    padding-left: 0;
  }
}
#profile .wrapper .profile-contents .profile-list1 {
  margin-bottom: 17px;
}
@media screen and (max-width: 840px) {
  #profile .wrapper .profile-contents .profile-list2 {
    margin-bottom: 38px;
  }
}
#profile .wrapper .profile-contents .profile-img {
  max-width: 643px;
  width: 100%;
  position: absolute;
  bottom: 0;
  right: 0;
  display: block;
}
@media screen and (max-width: 840px) {
  #profile .wrapper .profile-contents .profile-img {
    position: static;
    transform: translateX(-29%);
    display: none;
  }
}
#profile .wrapper .profile-contents .profile-img-sp {
  display: none;
}
@media screen and (max-width: 840px) {
  #profile .wrapper .profile-contents .profile-img-sp {
    max-width: 70%;
    display: block;
    transform: translateX(-40px);
  }
}
@media screen and (max-width: 450px) {
  #profile .wrapper .profile-contents .profile-img-sp {
    max-width: 100%;
    transform: translateX(-20px);
  }
}

#contact {
  background-color: #4C71B3;
  padding-top: 82px;
  padding-bottom: 91px;
  text-align: center;
}
@media screen and (max-width: 840px) {
  #contact {
    padding-top: 68px;
  }
}
#contact .wrapper .contact-text {
  color: var(--white);
}
#contact .wrapper .contact-text-big {
  font-size: 34px;
  font-weight: 700;
  margin-bottom: 49px;
}
@media screen and (max-width: 840px) {
  #contact .wrapper .contact-text-big {
    font-size: 30px;
    margin-bottom: 25px;
  }
}
#contact .wrapper .contact-text-small {
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 49px;
}
@media screen and (max-width: 840px) {
  #contact .wrapper .contact-text-small {
    font-size: 22px;
  }
}
#contact .wrapper .contact-btn {
  background-color: var(--white);
  font-size: 24px;
  font-weight: 500;
  max-width: 500px;
  width: 100%;
  height: 75px;
  border-radius: 999px;
  position: relative;
  transition: all 0.5s;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
@media screen and (max-width: 840px) {
  #contact .wrapper .contact-btn {
    font-size: 22px;
    padding: 19px 45px;
    max-width: 340px;
  }
}
#contact .wrapper .contact-btn:hover {
  transform: scale(1.1);
}
#contact .wrapper .contact-btn::after {
  content: "";
  height: 10px;
  width: 10px;
  border-right: 2px solid var(--text-color);
  border-bottom: 2px solid var(--text-color);
  position: absolute;
  top: 50%;
  right: 40px;
  transform: rotate(-45deg) translateY(-50%);
}
@media screen and (max-width: 840px) {
  #contact .wrapper .contact-btn::after {
    right: 24px;
  }
}

footer {
  background-color: var(--text-color);
  height: 100px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
  flex-shrink: 0;
}
@media screen and (max-width: 840px) {
  footer {
    height: 200px;
    flex-direction: column;
    justify-content: center;
    gap: 33px;
  }
}
@media screen and (max-width: 450px) {
  footer {
    text-align: center;
  }
}
footer .footer-spacer {
  width: 110px;
}
@media screen and (max-width: 840px) {
  footer .footer-spacer {
    display: none;
  }
}
footer .footer-copy {
  color: var(--white);
}
@media screen and (max-width: 840px) {
  footer .footer-copy {
    order: 2;
  }
}
footer .footer-sns a:hover {
  transform: scale(1.1);
}
footer .footer-sns a img {
  height: 41px;
  width: 100%;
}

footer.footer-subpage {
  width: 100%;
  height: 120px;
}
footer.footer-subpage .footer-copy {
  font-size: 16px;
  font-weight: 700;
}
@media screen and (max-width: 840px) {
  footer.footer-subpage .footer-copy {
    text-align: center;
  }
}
footer.footer-subpage .footer-copy span {
  font-size: 12px;
  font-weight: 400;
  color: var(--text-light);
}/*# sourceMappingURL=style.css.map */