@charset "utf-8";
@media screen and (min-width: 768px) {
  /* PC size */
}
@media screen and (max-width: 767px) {
  /* SP size */
}
@media (hover: hover) {
  /* hover style */
}

/* == base ============================================== */
html {
  font-size: 62.5%;
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  -webkit-text-size-adjust: 100%;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: 400;
  color: #232f50;
}
.mt0 {
  margin-top: 0 !important;
}
.pt0 {
  padding-top: 0 !important;
}
/* == utility ============================================== */
@media screen and (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}
.u-clearfix::after {
  content: "";
  display: block;
  clear: both;
}
.u-bold {
  font-weight: 700;
}
.u-center {
  text-align: center;
}
.u-hover {
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .u-hover:hover {
    opacity: 0.8;
  }
}

/* == parts ============================================== */
/*** inner *********************************/
.l-inner {
  width: 95%;
  max-width: 1360px;
  margin: 0 auto;
}
.l-inner__under {
  width: 95%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 80%;
  }
  .l-inner__under {
    width: 90%;
  }
}

/*** heading *********************************/
.c-heading {
  font-weight: 700;
  color: #232f50;
  text-align: center;
}
.c-heading.c-heading__under {
  padding: 0 0 80px;
}
.c-heading__en {
  display: block;
  font-size: 5.8rem;
  line-height: 1;
  margin: 0 0 10px;
}
.c-heading__ja {
  display: block;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-heading.c-heading__under {
    padding: 0 0 60px;
  }
}

/*** button *********************************/
.c-btn button {
  -webkit-appearance: none;
  appearance: none;
  background: none;
  border: 0;
  padding: 0;
}
.c-btn .c-btn__item {
  display: inline-flex;
  align-items: center;
  min-width: 344px;
  min-height: 72px;
  background: #232f50;
  text-align: left;
  border-radius: 9999px;
  cursor: pointer;
  padding: 20px 72px 20px 24px;
  text-decoration: none;
  position: relative;
  transition: background-color 0.3s;
}
.c-btn__item::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../img/common/icon_arrow01.svg),
    url(../img/common/icon_arrow01.svg);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center left -20px, center;
  background-size: 11px auto;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: background-position 0.4s;
}
.c-btn__item.c-btn__pdf::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background-image: url(../img/common/icon_pdf.svg),
    url(../img/common/icon_pdf.svg);
  background-color: #fff;
  background-repeat: no-repeat;
  background-position: center left -20px, center;
  background-size: 26px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  transition: background-position 0.4s;
}
.c-btn--back .c-btn__item::before {
  left: 24px;
  right: unset;
}
.c-btn.c-btn--back .c-btn__item {
  padding: 20px 24px 20px 72px;
  justify-content: flex-end;
}
.c-btn--back .c-btn__item::before {
  transform: translateY(-50%) rotate(180deg);
}
@media (hover: hover) {
  .c-btn__item:hover {
    background-color: #8aa6c9;
  }
  .c-btn__item:hover::before {
    background-position: center, center right -20px;
  }
}
.c-btn__text {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.37;
  color: #fff;
}
/* --- */
.c-btn--center {
  text-align: center;
}
@media screen and (max-width: 767px) {
  .c-btn .c-btn__item {
    width: 100%;
    max-width: 310px;
    min-width: auto;
  }
}

/*** search form *********************************/
.c-searchForm {
  padding: 0 40px;
}
.c-searchForm__dl + .c-searchForm__dl {
  margin: 70px 0 0;
}
.p-special .c-searchForm__dl + .c-searchForm__dl,
.p-event .c-searchForm__dl + .c-searchForm__dl {
  margin: 40px 0 0;
}
.c-searchForm__dt {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #000;
  padding: 0 0 16px;
}
.c-searchForm__dt.mb {
  margin-bottom: 40px;
}
.c-searchForm__dt.small {
  font-size: 1.6rem;
  border: none;
  padding: 0;
}
.c-searchForm__dd {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  margin: 30px 0 0;
}
.c-searchForm__dl--area {
  display: flex;
  justify-content: space-between;
}
.c-searchForm__dl--area .contents {
  width: 50%;
}
.c-searchForm__dl--area .map {
  width: 50%;
  text-align: right;
  padding: 0 0 0 40px;
}
.c-searchForm .c-btn {
  margin: 70px 0 0;
}
/* --- チェックボックス --- */
.c-searchForm .checkbox-field {
  display: inline-block;
  vertical-align: top;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  color: #232f50;
  transition: background-color 0.3s;
}
.c-searchForm .checkbox-field.js-parent {
  display: inline-flex;
  width: 100%;
  font-size: 2rem;
  font-weight: 700;
}
.c-searchForm .js-children {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 20px 30px;
  padding: 0 0 10px 20px;
}
/* @media (hover: hover) {
  .c-searchForm .checkbox-field:hover {
    background-color: #eee;
  }
}
.c-searchForm .checkbox-field.is-focused {
  background-color: #eee;
}
.c-searchForm .checkbox-field.is-checked {
  background-color: #e4f52e;
} */
.c-searchForm .checkbox-field label {
  /* display: block;
  padding: 16px 24px;
  position: relative; */
  cursor: pointer;
  display: flex;
  gap: 6px;
  align-items: center;
}
.c-searchForm input[type="checkbox"] {
  width: 20px;
  height: 20px;
  /* position: absolute;
  top: 50%;
  left: 24px;
  transform: translateY(-50%);
  opacity: 0; */
}
/* .c-searchForm .checkbox-field-text {
  display: block;
  padding: 0 0 0 32px;
  position: relative;
} */
/* .c-searchForm .checkbox-field-text::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  top: 2px;
  left: 0;
} */
/* .c-searchForm input[type="checkbox"]:focus + .checkbox-field-text::before {
  outline: 2px solid #007bff;
}
.c-searchForm .checkbox-field-text::after {
  content: "";
  display: block;
  width: 8px;
  height: 14px;
  border: 2px solid #232f50;
  border-width: 0 2px 2px 0;
  opacity: 0;
  position: absolute;
  top: 4px;
  left: 7px;
  transform: rotate(45deg);
}
.c-searchForm input[type="checkbox"]:checked + .checkbox-field-text::after {
  opacity: 1;
} */
.c-searchForm_container {
  box-sizing: border-box;
  /* margin: 24px 0 0; */
}
.c-searchForm_container.mt5 {
  margin-top: 5px !important;
}
.c-searchForm_container input[type="text"] {
  background: #fff;
  border: 2px solid #232f50;
  padding: 13px 20px;
  line-height: 1;
  border-radius: 4px;
  width: 400px;
}
.c-searchForm_container input[type="text"]:focus {
  outline: 0;
}
.c-searchForm_container input[type="submit"] {
  cursor: pointer;
  border: none;
  background: #232f50;
  color: #fff;
  outline: none;
  font-size: 1.6rem;
  padding: 16px 24px;
  line-height: 1;
  border-radius: 4px;
  transition: 0.3s;
}
.c-searchForm_container input[type="submit"]:hover {
  opacity: 0.7;
}
.c-searchForm_date {
  display: flex;
  gap: 4px;
}
@media screen and (max-width: 767px) {
  .c-searchForm {
    padding: 40px 16px;
  }
  .c-searchForm__dl--area {
    display: block;
  }
  .c-searchForm__dl--area .contents {
    width: 100%;
  }
  .c-searchForm__dl--area .map {
    width: 100%;
    text-align: center;
    padding: 0;
    margin: 40px auto 0;
  }
  .c-searchForm_container input[type="text"] {
    padding: 13px 12px;
    width: 220px;
  }
  .c-searchForm_container input[type="submit"] {
    padding: 16px 18px;
  }
  /* --- チェックボックス --- */
  .c-searchForm .checkbox-field {
    margin: 12px 12px 0 0;
  }
  .c-searchForm .checkbox-field label {
    padding: 5px;
  }
  .c-searchForm .c-btn {
    margin: 40px 0 0;
  }
  .c-searchForm_date {
    display: block;
  }
  .c-searchForm_date .flex {
    display: flex;
    align-items: center;
    gap: 4px;
  }
  .c-searchForm_date .flex + .flex {
    margin-top: 10px;
  }
  .c-searchForm__dd {
    gap: 5px 10px;
  }
}

/*** special card *********************************/
.c-spCard {
  width: 100%;
  max-width: 1080px;
  background: #fff;
  border-radius: 24px;
  padding: 40px;
  margin: 0 auto;
}
.c-spCard + .c-spCard {
  margin-top: 40px;
}
.c-spCard__inner {
  display: flex;
  justify-content: space-between;
}
.c-spCard__img {
  width: 50%;
}
.c-spCard__imgItem {
  width: 100%;
  padding: 76% 0 0;
  position: relative;
  overflow: hidden;
}
.c-spCard__imgItem img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 24px;
}
@supports (object-fit: cover) {
  .c-spCard__imgItem img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
}
.c-spCard__item {
  width: 48%;
}
.c-spCard__subTitle {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
}
.c-spCard__titleWrap {
  display: flex;
  border-bottom: 1px solid #000;
  padding: 0 0 16px;
  margin: 0 0 24px;
  gap: 16px;
}
.c-spCard__titleWrap .spotArea {
  width: 56px;
}
.c-spCard__titleWrap .textArea {
  width: calc(100% - 72px);
}
.c-spCard__titleWrap .c-ul__tag {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
}
.c-spCard__title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.45;
  margin: 0 0 10px;
}
.c-spCard__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 24px;
}
.c-spCard__callOut {
  font-size: 1.6rem;
  line-height: 1.8;
  background: #f6f5e9;
  border-radius: 8px;
  padding: 20px;
  margin: 0 0 24px;
}
.c-spCard__callOutTitle {
  font-weight: 700;
  padding: 0 0 0 1.5em;
  margin: 0 0 8px;
  position: relative;
}
.c-spCard__callOutTitle::before {
  content: "●";
  color: #8ec666;
  position: absolute;
  top: 0;
  left: 0;
}
.c-spCard__info {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 24px;
}
.c-spCard__info a {
  color: #3f8bc9;
  text-decoration: underline;
  word-break: break-all;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .c-spCard__info a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 767px) {
  .c-spCard {
    padding: 16px;
  }
  .c-spCard__inner {
    display: block;
  }
  .c-spCard__img {
    width: 100%;
    margin: 0 0 24px;
  }
  .c-spCard__item {
    width: 100%;
  }
  .c-spCard__item .c-btn {
    text-align: center;
  }
  .c-spCard__titleWrap .spotArea {
    width: 44px;
  }
  .c-spCard__titleWrap .textArea {
    width: calc(100% - 60px);
  }
  .c-spCard__title {
    font-size: 22px;
  }
}

/*** other special *********************************/
.c-othSp .c-heading {
  margin: 0 0 80px;
}
.c-othSpCard {
  width: 330px;
}
.c-othSpCard__item {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  min-height: 480px;
  padding: 32px 60px 32px 32px;
  border-radius: 24px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.c-othSpCard__item::before {
  content: "";
  display: block;
  width: 32px;
  height: 32px;
  background: url(../img/common/icon_arrow01.svg) no-repeat center #fff;
  background-size: 12px auto;
  border-radius: 50%;
  position: absolute;
  bottom: 32px;
  right: 32px;
  z-index: 1;
}
.c-othSpCard__contents {
  width: 100%;
  color: #fff;
  position: relative;
  z-index: 1;
}
.c-othSpCard__title {
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.4;
}
.c-othSpCard__title rt {
  font-size: 1.2rem;
  margin: 0 0 5px;
}
.c-othSpCard__genre {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.5;
}
.c-othSpCard__bg {
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  opacity: 0.9;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.4s, transform 0.4s;
}
@media (hover: hover) {
  .c-othSpCard__item:hover .c-othSpCard__bg {
    opacity: 0.6;
    transform: scale(1.05);
  }
}
/* --- */
.c-othSpCardWrap {
  max-width: 1026px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 auto;
}
.c-othSpCardWrap .c-othSpCard {
  width: calc(100% / 3);
  padding: 6px;
}
@media screen and (max-width: 991px) {
  .c-othSp .l-inner {
    width: 85%;
  }
  .c-othSpCardWrap {
    display: block;
  }
  .c-othSpCardWrap .c-othSpCard {
    width: 100%;
    max-width: 330px;
    padding: 0;
    margin: 0 auto 12px;
  }
}

/* == header ============================================== */
.l-header {
  width: 100%;
  height: 124px;
  background: linear-gradient(
    180deg,
    rgba(25, 28, 56, 0.6) 0%,
    rgba(25, 28, 56, 0) 100%
  );
  position: fixed;
  top: 0;
  left: 0;
  z-index: 5;
}
.l-header__inner {
  width: 95%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}
.l-header__logo {
  width: 100px;
  height: 80px;
}
.l-header__logoItem {
  display: block;
  width: 100%;
  height: 100%;
  font-size: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
  background: url(../img/common/logo.svg) no-repeat center;
  background-size: contain;
}
.l-header__contents {
  display: flex;
  align-items: center;
}
.l-header__navList {
  display: flex;
}
.l-header__navList__item {
  font-size: 1.6rem;
  line-height: 1.4;
  color: #fff;
  padding: 0 16px;
  position: relative;
}
.l-header__navList__itemText.accordion_header {
  display: inline-block;
  cursor: pointer;
  position: relative;
  padding: 0 20px 0 0;
}
.l-header__navList__itemText.accordion_header::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon_arrow06.svg) no-repeat center;
  background-size: contain;
  position: absolute;
  top: 6px;
  right: 0;
  /* transform: rotate(90deg); */
  transition: transform 0.4s;
}
#underPage .l-header__navList__itemText.accordion_header::after {
  background: url(../img/common/icon_arrow05.svg) no-repeat center;
}
.l-header__navList__itemText.accordion_header.open::after {
  transform: rotate(180deg);
}
.l-header__navList__item .accordion_inner {
  display: none;
  position: absolute;
  top: 30px;
  left: 10px;
  width: 270px;
  background: #fff;
  color: #000;
  padding: 24px 0;
  border-radius: 24px;
}
.l-header__navList__item .accordion_inner li a {
  padding: 5px 0;
  transition: 0.3s;
  display: block;
  width: 100%;
  padding: 8px 16px;
}
.l-header__navList__item .accordion_inner li a:hover {
  opacity: 0.7;
}
.l-header__navList__item + .l-header__navList__item {
  border-left: 1px solid #fff;
}
.l-header__navList__item a {
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .l-header__navList__item a:hover {
    opacity: 0.7;
  }
}
.l-header__langBox {
  position: relative;
  margin: 0 0 0 10px;
}
.l-header__langBox__title {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  line-height: 1.4;
  color: #fff;
  text-align: left;
  cursor: pointer;
  background: none;
  -webkit-appearance: none;
  appearance: none;
  border: 0;
  padding: 0;
  position: relative;
  transition: opacity 0.4s;
}
@media (hover: hover) {
  .l-header__langBox__title:hover {
    opacity: 0.7;
  }
}
.l-header__langBox__titleLang {
  display: block;
  width: 64px;
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  color: #333;
  background: rgba(217, 217, 217, 0.8);
  border-radius: 2px;
  padding: 6px 0;
  margin: 0 0 0 8px;
}
.l-header__langList {
  width: 64px;
  background: rgba(217, 217, 217, 0.8);
  border-radius: 0 0 2px 2px;
  padding: 2px 2px 8px;
  position: absolute;
  top: 100%;
  right: 0;
  display: none;
  z-index: 1;
}
.l-header__langList__item {
  font-size: 1.2rem;
  line-height: 1.4;
  text-align: center;
  color: #333;
}
.l-header__langList__item + .l-header__langList__item {
  margin: 10px 0 0;
}
.l-header__langList__item a {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .l-header__langList__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 768px) {
  .l-header__sns,
  .l-header__img {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 80px;
  }
  .l-header__logo {
    position: absolute;
    top: 0;
    z-index: 1;
    width: 56px;
    height: 76px;
    /* display: none; */
  }
  .l-header__contents {
    width: 100%;
    height: 100vh;
    display: block;
    overflow-y: auto;
    background: #e6616a;
    padding: 136px 40px;
    position: fixed;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
  }
  .l-header__contents.is-active {
    opacity: 1;
    visibility: visible;
  }
  .l-header__navList {
    display: block;
  }
  .l-header__navList__item {
    font-size: 2rem;
    padding: 24px 0;
  }
  .l-header__navList__item + .l-header__navList__item {
    border: 1px dashed #fff;
    border-width: 1px 0 0;
  }
  .l-header__navList__item .accordion_inner {
    display: none;
    position: relative;
    left: 0;
    padding: 0 0 15px;
    background: none;
    color: #fff;
    border-radius: 0;
    width: 100%;
  }
  .l-header__navList__item .accordion_inner li a {
    width: 100%;
    display: block;
    padding: 10px 0;
  }
  .l-header__navList__item .accordion_inner li:first-of-type a {
    padding-top: 0;
  }
  .l-header__navList__item .accordion_inner li + li {
    border-top: 1px dashed #fff;
  }
  .l-header__navList__itemText.accordion_header {
    display: block;
  }
  .l-header__langBox {
    position: absolute;
    top: 20px;
    left: 0;
    margin-left: 80px;
    z-index: 11;
  }
  .l-header__snsList {
    display: flex;
    margin: 60px 0 0;
  }
  .l-header__snsList__item {
    margin: 10px 20px 0 0;
  }
  .l-header__snsList__item a {
    display: block;
    transition: opacity 0.3s;
  }
  .l-header__img {
    text-align: center;
    margin: 40px 0 0;
  }
}
/*** hamburger btn *********************************/
@media screen and (min-width: 768px) {
  .c-hamburger {
    display: none;
  }
}
.c-hamburger {
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  cursor: pointer;
  background: #fff;
  border-radius: 50%;
  position: fixed;
  top: 18px;
  right: 32px;
  z-index: 10;
}
.c-hamburger.is-visible {
  opacity: 1;
  visibility: visible;
}
.c-hamburger__line {
  width: 12px;
  height: 1px;
  background: #000;
  position: absolute;
  left: 14px;
  transition: all 0.4s;
}
.c-hamburger__line--1 {
  top: 15px;
}
.c-hamburger__line--2 {
  top: 24px;
}
/* --- active --- */
.c-hamburger.is-active {
  background-color: #000;
}
.c-hamburger.is-active .c-hamburger__line {
  background-color: #fff;
}
.c-hamburger.is-active .c-hamburger__line--1 {
  transform: rotate(-45deg);
  top: 20px;
}
.c-hamburger.is-active .c-hamburger__line--2 {
  transform: rotate(45deg);
  top: 20px;
}

/* == footer ============================================== */
.l-footer {
  width: 100%;
  color: #fff;
  background: url(../img/common/bg_footer.png) no-repeat center;
  background-size: cover;
}
.l-footer__inner {
  width: 95%;
  margin: 0 auto;
}
.l-footer__upper {
  padding: 80px 0 300px;
}
.l-footer__upper .l-footer__inner {
  display: flex;
  justify-content: space-between;
}
.l-footer__infoArea {
  display: flex;
}
.l-footer__logo {
  width: 190px;
  margin: 0 40px 0 0;
}
.l-footer__inq {
  font-size: 1.6rem;
  line-height: 1.8;
}
.l-footer__inqTitle {
  font-weight: 700;
  margin: 0 0 16px;
}
.l-footer__inqName {
  font-weight: 700;
}
.l-footer__inqSubName {
  font-size: 1.4rem;
}
.l-footer__inqAddr {
  margin: 24px 0 0;
}
.l-footer__sns {
  margin: 30px 0 0;
}
.l-footer__snsList {
  display: flex;
}
.l-footer__snsList__item {
  margin: 10px 20px 0 0;
}
.l-footer__snsList__item a {
  display: block;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .l-footer__snsList__item a:hover {
    opacity: 0.7;
  }
}
.l-footer__navArea {
  margin: 0 0 0 30px;
}
.l-footer__navArea .l-footer__navList__item {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
.l-footer__navArea .l-footer__navList__item + .l-footer__navList__item {
  margin: 32px 0 0;
}
.l-footer__navArea .l-footer__navList__item a {
  display: inline-block;
  padding: 0 0 0 1em;
  position: relative;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .l-footer__navArea .l-footer__navList__item a:hover {
    opacity: 0.7;
  }
}
.l-footer__navArea .l-footer__navList__item a::before {
  content: "・";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.l-footer__lower {
  background: #e6616a;
  padding: 24px 0;
  position: relative;
}
.l-footer__lower::before {
  content: "";
  display: block;
  width: 62px;
  height: 72px;
  background: url(../img/common/icon_daruma.svg) no-repeat center bottom;
  background-size: contain;
  position: absolute;
  top: -100%;
  left: 100px;
}
.l-footer__lower::after {
  content: "";
  display: block;
  width: 72%;
  max-width: 870px;
  height: 118px;
  background: url(../img/common/footer_text.svg) no-repeat right bottom;
  background-size: contain;
  position: absolute;
  pointer-events: none;
  bottom: calc(100% - 10px);
  right: 0;
}
.l-footer__lower .l-footer__inner {
  display: flex;
  justify-content: space-between;
}
.l-footer__lower .l-footer__navList {
  display: flex;
}
.l-footer__lower .l-footer__navList__item {
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.3;
  margin: 0 24px 0 0;
}
.l-footer__lower .l-footer__navList__item + .l-footer__navList__item {
  border-left: 1px solid #fff;
  padding: 0 24px;
}
.l-footer__lower .l-footer__navList__item a {
  text-decoration-line: underline;
  transition: opacity 0.3s;
}
@media (hover: hover) {
  .l-footer__lower .l-footer__navList__item a:hover {
    opacity: 0.7;
  }
}
.l-footer__copyright {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .l-footer {
    background-image: url(../img/common/bg_footer_sp.png);
    background-position: bottom center;
  }
  .l-footer__inner {
    width: 80%;
  }
  .l-footer__upper {
    padding: 80px 0 130px;
  }
  .l-footer__upper .l-footer__inner {
    display: block;
  }
  .l-footer__infoArea {
    display: block;
  }
  .l-footer__logo {
    margin: 0 0 20px;
  }
  .l-footer__navArea {
    margin: 80px 0 0;
  }
  .l-footer__lower::before {
    left: auto;
    right: 20px;
    top: -110px;
  }
  .l-footer__lower::after {
    width: 354px;
    height: 100px;
    bottom: calc(100% - 4px);
    right: 18px;
  }
  .l-footer__lower .l-footer__inner {
    width: 92%;
    display: block;
  }
  .l-footer__lower .l-footer__navList__item {
    margin: 0 16px 0 0;
    font-size: 1rem;
  }
  .l-footer__lower .l-footer__navList__item + .l-footer__navList__item {
    margin: 0;
    padding: 0 0 0 16px;
  }
  .l-footer__copyright {
    font-size: 1rem;
    margin: 16px 0 0;
  }
}

/* == frontpage ============================================== */
/* --- block__front--top -------------------- */

/* == underpage ============================================== */
/* ======
header #
======*/
#underPage .l-header {
  width: 100%;
  height: 76px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(4px);
}
#underPage .l-header__navList__item {
  color: #000;
}
#underPage .l-header__navList__item + .l-header__navList__item {
  border-left: 1px solid #000;
}
#underPage .l-header__logo {
  width: 56px;
  height: 76px;
}
#underPage .l-header__logoItem {
  background: url(../img/common/logo_black.svg) no-repeat center;
}
#underPage .l-header__langBox__title {
  color: #000;
}
@media screen and (max-width: 767px) {
  #underPage .l-header__navList__item {
    color: #fff;
  }
  #underPage .l-header__navList__item + .l-header__navList__item {
    border-left: none;
  }
}
/* ======
bread #
======*/
.l-bread {
  width: 95%;
  margin: 0 auto;
  padding: 40px 0 84px;
}
.l-bread .breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.l-bread .breadcrumb__list .breadcrumb__item a {
  text-decoration: underline;
}
.l-bread .breadcrumb__list > .breadcrumb__item + .breadcrumb__item::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url(../img/common/icon_arrow01.svg) no-repeat center;
  background-size: contain;
  margin: 0 16px;
}
@media screen and (max-width: 767px) {
  .l-bread {
    padding: 10px 0 24px;
    font-size: 1.2rem;
  }
  .l-bread .breadcrumb__list > .breadcrumb__item + .breadcrumb__item::before {
    content: "";
    display: inline-block;
    width: 8px;
    height: 8px;
    margin: 0 10px;
  }
}
/* ======
main #
======*/
.l-under__backgrand {
  padding: 76px 0 0;
  background: #e9f1f6;
}
.l-under__backgrandGray {
  padding: 76px 0 0;
  background: #fafafa;
}
.l-under__backgrandGray.spot__map {
  background: url(../img/under/spot/map.jpg) no-repeat top right #fafafa;
}
.c-h2style {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: 1px solid #000;
  padding: 0 0 16px;
  margin: 0 0 40px;
}
.c-h3style {
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.6;
  background: #fff;
  padding: 4px 8px;
  margin: 0 0 24px;
}
.c-ulsytle li {
  list-style: disc;
  margin: 0 0 0 20px;
}
.c-ulsytle li + li {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .c-h2style {
    margin: 0 0 30px;
  }
  .l-under__backgrandGray.spot__map {
    background: url(../img/under/spot/map_sp.jpg) no-repeat right -200px #fafafa;
    background-size: contain;
  }
}
/* ======
page-name #
======*/
/* .xxx .img_box {
  width: 100%;
  height: 140px;
  position: relative;
  overflow: hidden;
}
.xxx .img_box img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@supports (object-fit: cover) {
  .xxx .img_box img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
} */
/* ======
トピックス
======*/
.c-topics__list .topicList__item .topicList__link {
  display: flex;
  gap: 16px;
  padding: 24px 0;
  transition: 0.3s;
}
.c-topics__list > .topicList__item + .topicList__item {
  border-top: 1px dashed;
}
.c-topics__list .topicList__item .topicList__link:hover {
  opacity: 0.7;
}
/*** pagination *********************************/
.c-pagination {
  margin: 80px auto 0;
  padding-bottom: 80px;
}
.c-paginationList,
.c-pagination .page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.c-paginationList__item,
.c-pagination .page-numbers li span,
.c-pagination .page-numbers li a {
  display: inline-block;
  min-width: 38px;
  height: 38px;
  font-size: 2.4rem;
  line-height: 36px;
  font-weight: 700;
  text-align: center;
  margin: 6px 20px;
  position: relative;
  border-radius: 9999px;
}
.c-paginationList__item a {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}
.c-paginationList__itemNum,
.c-pagination .page-numbers li span {
  display: inline-block;
  padding: 0 4px;
  position: relative;
  transition: color 0.3s;
}
/* --- prev / next --- */
.c-paginationList__item--prev,
.c-paginationList__item--next,
.c-pagination .page-numbers li a.next,
.c-pagination .page-numbers li a.prev {
  background: url(../img/common/icon_arrow01.svg) no-repeat center;
  background-size: 14px auto;
  transition: background-color 0.3s;
  font-size: 0;
  white-space: nowrap;
  text-indent: 100%;
  overflow: hidden;
}
.c-paginationList__item--prev,
.c-pagination .page-numbers li a.prev {
  transform: scale(-1, 1);
  margin-right: 40px;
  margin-left: 0;
}
.c-paginationList__item--next,
.c-pagination .page-numbers li a.next {
  margin-right: 0;
  margin-left: 40px;
}
/* --- current --- */
.c-paginationList__item.is-current,
.c-pagination .page-numbers li span.current {
  color: #fff;
  background-color: #232f50;
}
/* --- disable --- */
.c-paginationList__item.is-disable {
  pointer-events: none;
  opacity: 0.3;
}
@media screen and (max-width: 767px) {
  .c-pagination {
    margin: 40px auto 0;
    padding-bottom: 40px;
  }
  .c-paginationList__item,
  .c-pagination .page-numbers li span,
  .c-pagination .page-numbers li a,
  .c-pagination .page-numbers li a.next,
  .c-pagination .page-numbers li a.prev {
    margin: 6px 4px;
  }
}
@media (hover: hover), (-ms-high-contrast: none) {
  .c-paginationList__item a:hover,
  .c-pagination .page-numbers li a:hover {
    opacity: 0.7;
  }
  .c-paginationList__item--prev:hover,
  .c-paginationList__item--next:hover {
    opacity: 0.7;
  }
}
.accordion_wrap {
  margin: 0 0 80px;
}
.accordion_detail {
  padding: 40px 0;
  background: #fff;
  display: none;
}
.accordion_button {
  padding: 32px 40px;
  color: #fff;
  font-size: 2.4rem;
  background: #232f50;
  position: relative;
  line-height: 1;
  cursor: pointer;
  transition: 0.3s;
}
.accordion_button:hover {
  opacity: 0.7;
}
.accordion_button::before {
  font-size: 2.4rem;
  content: "＋";
  position: absolute;
  right: 20px;
}
.accordion_button.active::before {
  font-size: 2.4rem;
  content: "－";
}
@media screen and (max-width: 767px) {
  .accordion_wrap {
    margin: 0 0 40px;
  }
  .accordion_detail {
    padding: 20px 0 0;
  }
  .accordion_button {
    padding: 20px;
    font-size: 1.8rem;
  }
  .accordion_button::before {
    font-size: 1.8rem;
  }
  .accordion_button.active::before {
    font-size: 1.8rem;
  }
}
/* ======
イベント
======*/
.l-evnet__wrap {
  margin: 0 0 80px;
}
@media screen and (max-width: 767px) {
  .l-evnet__wrap {
    margin: 0 0 40px;
  }
}

.l-spot__wrap .link a {
  font-weight: 700;
  margin-top: 5px;
  text-decoration: underline;
  transition: 0.3s;
}
.l-spot__wrap .link a:hover {
  opacity: 0.7;
}
