@charset "UTF-8";
/*-----------------------------------------------
 body
-----------------------------------------------*/
body {
  position: relative;
  background-image: url(../img/global/bg@2x.png);
  background-attachment: fixed;
  background-position: left bottom;
  background-repeat: no-repeat;
  background-size: cover;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #2A426A;
}
body.noScroll {
  overflow: hidden;
}

a,
a:link,
a:visited {
  color: #2A426A;
  text-decoration: none;
}

a:hover {
  color: #2A426A;
  text-decoration: underline;
}

@media only screen and (max-width: 991px) {
  body .bg {
    position: fixed;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background-image: url(/assets/img/bg-sp.jpg);
    background-size: 100% auto;
    background-position: center bottom;
    background-repeat: no-repeat;
  }
}
/*-----------------------------------------------
 img
-----------------------------------------------*/
img {
  max-width: 100%;
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/
.hover :hover {
  opacity: 0.8;
  animation: btn 0.5s;
  -webkit-animation: btn 0.5s;
  -moz-animation: btn 0.5s;
}

@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
/*-----------------------------------------------
 header
-----------------------------------------------*/
.header {
  display: flex;
  justify-content: space-between;
  z-index: 100;
  align-items: center;
  top: 0;
  height: 60px;
  background-color: #2A426A;
}
.header__menu {
  display: block;
  position: fixed;
  z-index: 10;
  top: 0;
  right: 0;
  cursor: pointer;
  width: 58px;
  height: 58px;
  background-color: #2A426A;
  background-image: url(../img/header/menu.svg);
  background-size: 30px 19px;
  background-position: right 10px top 10px;
  background-repeat: no-repeat;
  border-bottom-left-radius: 500px;
}
.header__nav {
  max-width: 1000px;
  margin: 0 auto;
}
.header__nav__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  list-style: none;
  width: 100%;
  margin: 0;
  padding: 0;
}
.header__nav__list li {
  font-size: 16px;
}
.header__nav__list li a {
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .header {
    position: absolute;
    top: 0;
    right: 0;
  }
  .header__menu {
    display: block;
    width: 12vw;
    height: 12vw;
    background-size: 7vw auto;
  }
  .header__nav {
    display: none;
  }
}
/*-----------------------------------------------
 globalNavigation
-----------------------------------------------*/
.globalNavigation {
  visibility: hidden;
  opacity: 0;
  display: flex;
  position: fixed;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transition: 0.2s ease;
}
.globalNavigation__logo {
  position: absolute;
  z-index: 1;
  top: 37px;
  left: 30px;
}
.globalNavigation__bg {
  position: relative;
  width: 50%;
  height: 100vh;
  background-image: url(../img/header/bg@2x.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
.globalNavigation__nav {
  overflow-y: scroll;
  width: 50%;
  height: 100vh;
  padding: 140px 40px 40px;
  background-color: #2A426A;
}
.globalNavigation__nav::-webkit-scrollbar {
  display: none;
}
.globalNavigation__nav__logo {
  display: none;
}
.globalNavigation__nav__close {
  z-index: 2; /*追加コード*/
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background-color: #2A426A;
  background-image: url(../img/header/close.svg);
  background-size: 26px 16px;
  background-position: right 10px top 10px;
  background-repeat: no-repeat;
  border-bottom-left-radius: 500px;
}
.globalNavigation__nav__list {
  list-style: none;
  width: 70%;
  min-width: 340px;
  margin: 0 0 50px auto;
  padding: 0;
}
.globalNavigation__nav__list li {
  background-image: linear-gradient(to right, #fff 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  text-align: right;
  font-size: 28px;
  font-family: "Beth Ellen", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
.globalNavigation__nav__list li a {
  display: block;
  padding: 15px 0;
  color: #fff;
  text-decoration: none;
}
.globalNavigation__nav__list li a span {
  display: block;
  font-size: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
}
.globalNavigation__nav__sns {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.globalNavigation__nav__sns li img {
  width: 32px;
}
.globalNavigation__nav__sns li.lang {
  background: #fff;
  border-radius: 100px;
  width: auto;
}
.globalNavigation__nav__sns li.lang a {
  padding: 4px 1em;
  display: block;
}
.globalNavigation.active {
  opacity: 1;
  visibility: visible;
}

@media only screen and (max-width: 991px) {
  .globalNavigation {
    overflow: scroll;
    flex-direction: column-reverse;
    height: 100vh;
  }
  .globalNavigation::-webkit-scrollbar {
    display: none;
  }
  .globalNavigation__logo {
    display: none;
  }
  .globalNavigation__nav {
    overflow: visible;
    position: relative;
    width: 100%;
    height: auto;
    min-height: 70vh;
    padding: 15vw 5vw 5vw;
    flex-shrink: 0;
  }
  .globalNavigation__nav__logo {
    display: block;
    position: absolute;
    top: 5vw;
    left: 5vw;
  }
  .globalNavigation__nav__logo img {
    width: 20vw;
  }
  .globalNavigation__nav__list {
    min-width: 0;
    width: 60%;
    margin-bottom: 5vw;
  }
  .globalNavigation__nav__list li {
    font-size: 28px;
    font-size: 4.375vw;
  }
  .globalNavigation__nav__list li a {
    padding: 2vw 0;
  }
  .globalNavigation__nav__list li a span {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .globalNavigation__nav__sns {
    gap: 5vw;
  }
  .globalNavigation__nav__sns li {
    width: 8vw;
  }
  .globalNavigation__nav__sns li img {
    width: 100%;
  }
  .globalNavigation__nav__sns li.lang {
    font-size: 3.5vw;
  }
  .globalNavigation__nav__close {
    width: 12vw;
    height: 12vw;
    background-size: 6vw auto;
  }
  .globalNavigation__bg {
    height: 30vh;
    flex-shrink: 0;
    width: 100%;
  }
  .globalNavigation__bg__logo {
    display: none;
  }
}
/*-----------------------------------------------
 footer
-----------------------------------------------*/
.footer {
  position: relative;
}
.footer__top {
  max-width: 1168px;
  margin: 0 auto;
  padding: 40px 0 100px;
}
.footer__top__banner {
  display: flex;
  gap: 20px;
}
.footer__inner {
  position: relative;
  padding: 40px;
  background-color: #2A426A;
}
.footer__inner__content {
  max-width: 1000px;
  margin: 0 auto;
}
.footer__inner__content__pageup {
  position: absolute;
  top: -67px;
  left: 50%;
  transform: translateX(-50%);
}
.footer__inner__content__pdf {
  margin-bottom: 50px;
}
.footer__inner__content__pdf a {
  display: block;
  padding: 12px;
  border: 1px solid #fff;
  border-radius: 12px;
  text-align: center;
  font-weight: 700;
  color: #fff;
  transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
}
.footer__inner__content__pdf a:hover {
  text-decoration: none;
  background-color: #fff;
  color: #2A426A;
}
.footer__inner__content__nav {
  margin-bottom: 50px;
}
.footer__inner__content__nav__list {
  display: flex;
  justify-content: center;
  gap: 1em;
  margin: 0;
  padding: 0;
}
.footer__inner__content__nav__list a {
  display: block;
  padding: 0 0 4px;
  background-image: linear-gradient(to right, #fff 1px, transparent 1px);
  background-size: 3px 1px;
  background-repeat: repeat-x;
  background-position: left bottom;
  text-decoration: none;
  color: #fff;
}
.footer__inner__content__nav__list a:hover {
  background: none;
}
.footer__inner__content__information {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  margin-bottom: 30px;
}
.footer__inner__content__information__text {
  margin-bottom: 0;
  font-size: 12px;
  color: #fff;
}
.footer__inner__content__information__text .logo_sponsor {
  width: 140px;
  margin-left: 0.3em;
  margin-bottom: 1em;
}
.footer__inner__content__information__text .logo_support {
  margin-left: 0.3em;
  margin-right: 0.5em;
  margin-bottom: 1em;
}
.footer__inner__content__information__text a {
  color: #fff;
}
.footer__inner__content__banner {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 27px;
  margin: 0;
  padding: 0;
}
.footer__bottom {
  background-color: rgba(255, 255, 255, 0.9);
}
.footer__bottom__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  height: 86px;
  margin: 0 auto;
}
.footer__bottom__inner__left {
  display: flex;
  gap: 20px;
  align-items: center;
}
.footer__bottom__inner__left__sns {
  display: flex;
  align-items: center;
  gap: 15px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer__bottom__inner__left__sns li {
  width: 30px;
}
.footer__bottom__inner__left__sns li img {
  width: 100%;
}
.footer__bottom__inner__copy {
  margin: 0;
}

@media only screen and (max-width: 991px) {
  .footer__top {
    padding: 8vw 5vw 15vw;
  }
  .footer__top__banner {
    flex-direction: column;
    gap: 5vw;
  }
  .footer__top__banner__item {
    text-align: center;
  }
  .footer__inner {
    padding: 8vw 5vw;
  }
  .footer__inner__content__pageup {
    width: 40vw;
    top: -12vw;
  }
  .footer__inner__content__pageup img {
    width: 100%;
  }
  .footer__inner__content__pdf {
    margin-bottom: 8vw;
  }
  .footer__inner__content__pdf a {
    padding: 3.5vw;
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .footer__inner__content__nav {
    margin-bottom: 8vw;
  }
  .footer__inner__content__nav__list {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 3vw 0;
  }
  .footer__inner__content__nav__list li {
    width: 50%;
  }
  .footer__inner__content__nav__list li a {
    display: inline;
    padding: 0 0 1vw;
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .footer__inner__content__information {
    margin-bottom: 8vw;
    align-items: end;
  }
  .footer__inner__content__information__text {
    width: 65%;
    font-size: 18px;
    font-size: 2.8125vw;
  }
  .footer__inner__content__information__text .logo_sponsor {
    width: 33vw;
    margin-left: 5em;
    margin-top: 0.3em;
    margin-bottom: 1em;
  }
  .footer__inner__content__information__text .logo_support {
    height: 5vw;
    margin-bottom: 0.3em;
  }
  .footer__inner__content__information__image {
    width: 30%;
    text-align: right;
  }
  .footer__inner__content__banner {
    gap: 3vw 5vw;
  }
  .footer__inner__content__banner__item {
    width: calc((100% - 10vw) / 3);
  }
  .footer__inner__content__banner__item img {
    width: 100%;
  }
  .footer__bottom__inner {
    flex-direction: column;
    gap: 5vw;
    height: auto;
    padding: 5vw;
  }
  .footer__bottom__inner__left {
    flex-direction: column;
    gap: 5vw;
  }
  .footer__bottom__inner__left__logo {
    width: 40vw;
  }
  .footer__bottom__inner__left__logo img {
    width: 100%;
  }
  .footer__bottom__inner__left__sns {
    gap: 5vw;
  }
  .footer__bottom__inner__left__sns li {
    width: 8vw;
  }
  .footer__bottom__inner__copy {
    font-size: 18px;
    font-size: 2.8125vw;
  }
}
/*-----------------------------------------------
 page
-----------------------------------------------*/
.page {
  background-color: rgba(255, 255, 255, 0.7);
}
.page__keyvisual {
  position: relative;
  height: 280px;
  padding-top: 140px;
  background-image: url(../img/global/keyvisual@2x.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page__keyvisual2 {
  position: relative;
  height: 280px;
  padding-top: 140px;
  background-image: url(../img/global/keyvisual2@2x.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page__keyvisual3 {
  position: relative;
  height: 280px;
  padding-top: 140px;
  background-image: url(../img/global/keyvisual3@2x.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page__keyvisual4 {
  position: relative;
  height: 280px;
  padding-top: 140px;
  background-image: url(../img/global/keyvisual4@2x.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page__keyvisual5 {
  position: relative;
  height: 280px;
  padding-top: 140px;
  background-image: url(../img/global/keyvisual5@2x.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.page__keyvisual__logo {
  position: absolute;
  top: 20px;
  left: 20px;
}
.page__keyvisual__title {
  margin-bottom: 0;
  font-size: 46px;
  font-family: "Beth Ellen", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
}
.page__keyvisual__title span {
  display: inline-block;
  opacity: 0;
}
.page__keyvisual__jp {
  margin-bottom: 0;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}

@media only screen and (max-width: 991px) {
  .page__keyvisual {
    height: auto;
    padding: 25vw 0 10vw;
  }
  .page__keyvisual__logo img {
    width: 20vw;
  }
  .page__keyvisual__title {
    font-size: 46px;
    font-size: 7.1875vw;
  }
  .page__keyvisual__jp {
    font-size: 28px;
    font-size: 4.375vw;
  }
}
/*-----------------------------------------------
 top
-----------------------------------------------*/
.top__keyvisual {
  position: relative;
  aspect-ratio: 2560/1540;
  background-image: url(../img/top/keyvisual.jpg);
  background-size: 100% auto;
  background-position: center center;
  transform-origin: center;
}
.top__keyvisual__item1 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top__keyvisual__item1 img {
  width: 100%;
}
.top__keyvisual__item2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top__keyvisual__item2 img {
  width: 100%;
}
.top__keyvisual__item3 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.top__keyvisual__item3 img {
  width: 100%;
}
.top__keyvisual__lang {
  background: #fff;
  top: 2.5vw;
  left: 2.5vw;
  margin-bottom: 0;
  padding: 0.2em 0;
  width: 2em;
  height: 2em;
  text-align: center;
  position: absolute;
  border-radius: 100px;
  font-size: 14px;
  font-weight: bold;
  z-index: 1;
}
.top__introduction {
  background-color: rgba(255, 255, 255, 0.9);
}
.top__introduction__inner {
  position: relative;
  max-width: 1080px;
  margin: 0 auto;
  padding: 50px 40px 120px;
}
.top__introduction__inner__image {
  position: absolute;
  top: 10px;
  right: -20px;
}
.top__introduction__inner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.top__introduction__inner__title::before {
  display: block;
  content: "";
  width: 152px;
  height: 61px;
  background-image: url(../img/global/title-object.png);
  background-size: 152px auto;
  background-repeat: no-repeat;
}
.top__introduction__inner__title::after {
  display: block;
  content: "";
  width: 150px;
  height: 7px;
  background-image: url(../img/global/title-object2.png);
  background-size: 150px auto;
  background-repeat: no-repeat;
}
.top__introduction__inner__column1 {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  padding-bottom: 40px;
  border-bottom: 1px solid #D8C8B2;
}
.top__introduction__inner__column1__item {
  width: 100% /*calc((100% - 30px) / 2)*/;
}
.top__introduction__inner__column1__item p {
  line-height: 1.625;
}
.top__introduction__inner__column2 {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  padding: 20px 0;
  border-bottom: 1px solid #D8C8B2;
}
.top__introduction__inner__column2__item {
  width: 50%;
  padding: 20px 20px 20px 0;
}
.top__introduction__inner__column2__item__title {
  padding: 5px 12px;
  background: linear-gradient(90deg, rgb(203, 133, 15) 0%, rgb(206, 140, 29) 95%, rgba(247, 247, 247, 0) 100%);
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}
.top__introduction__inner__column2__item2 {
  width: 50%;
  padding: 20px 0 20px 20px;
  border-left: 1px solid #D8C8B2;
}
.top__introduction__inner__column2__item2__title {
  padding: 5px 12px;
  background: linear-gradient(90deg, rgb(18, 83, 141) 0%, rgb(18, 83, 141) 95%, rgba(247, 247, 247, 0) 100%);
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}
.top__sns {
  padding: 40px 0 40px;
}
.top__sns__widget {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 40px 40px;
  background-color: #2A426A;
  background-image: url(../img/top/x.png);
  background-repeat: no-repeat;
  background-position: right top;
  background-size: 347px auto;
}
.top__sns__widget__title {
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
  color: #fff;
}
.top__sns__widget__image {
  position: absolute;
  top: -140px;
  left: -99px;
}
.top__badge {
  position: relative;
  padding: 30px 0;
  background-color: #C6D1E3;
  text-align: center;
}
.top__badge__image {
  position: absolute;
  top: -100px;
  right: 30px;
}
.top__badge__image2 {
  position: absolute;
  bottom: -20px;
  left: 20px;
}
.top__badge a {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .top__keyvisual {
    aspect-ratio: 1280/1044;
    background-image: url(../img/top/keyvisual-sp.jpg);
  }
  .top__keyvisual__lang {
    top: 4vw;
    left: 4vw;
    font-size: 3vw;
  }
  .top__introduction {
    overflow: hidden;
  }
  .top__introduction__inner {
    padding: 6vw 5vw;
  }
  .top__introduction__inner__image {
    right: -5vw;
  }
  .top__introduction__inner__image img {
    width: 20vw;
  }
  .top__introduction__inner__title {
    font-size: 30px;
    font-size: 4.6875vw;
  }
  .top__introduction__inner__column1 {
    display: block;
    padding-bottom: 5vw;
  }
  .top__introduction__inner__column1__item {
    width: 100%;
  }
  .top__introduction__inner__column1__item p {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .top__introduction__inner__column2 {
    display: block;
    margin-bottom: 5vw;
    padding: 5vw 0;
  }
  .top__introduction__inner__column2__item {
    width: 100%;
    padding: 0 0 5vw;
    border-bottom: 1px solid #D8C8B2;
  }
  .top__introduction__inner__column2__item__title {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .top__introduction__inner__column2__item p {
    font-size: 20px;
    font-size: 3.125vw;
    margin: 0;
  }
  .top__introduction__inner__column2__item2 {
    width: 100%;
    padding: 5vw 0 0;
    border: none;
  }
  .top__introduction__inner__column2__item2__title {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .top__introduction__inner__column2__item2 p {
    font-size: 20px;
    font-size: 3.125vw;
    margin: 0;
  }
  .top__introduction__inner__column3 p {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .top__sns {
    padding: 6vw 5vw;
  }
  .top__sns__widget {
    padding: 2vw 3vw 3vw;
    background-size: 50% auto;
  }
  .top__sns__widget__title {
    font-size: 30px;
    font-size: 4.6875vw;
  }
  .top__sns__widget__image {
    top: -14vw;
    left: -12vw;
  }
  .top__sns__widget__image img {
    width: 25vw;
  }
  .top__badge {
    padding: 6vw 5vw;
  }
  .top__badge__image {
    top: -9vw;
    right: 0;
  }
  .top__badge__image img {
    width: 20vw;
  }
  .top__badge__image2 {
    bottom: -9vw;
    left: 0;
  }
  .top__badge__image2 img {
    width: 20vw;
  }
}
/*-----------------------------------------------
 news
-----------------------------------------------*/
.page__news {
  overflow: hidden;
}
.page__news__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.page__news__inner::before {
  display: block;
  content: "";
  width: 152px;
  height: 61px;
  margin: 0 auto;
  background-image: url(../img/global/title-object.png);
  background-size: 152px auto;
  background-repeat: no-repeat;
}
.page__news__inner__image {
  position: absolute;
  top: -110px;
  right: -100px;
}
.page__news__inner__image2 {
  position: absolute;
  bottom: 0;
  left: -120px;
}
.page__news__inner__list {
  position: relative;
}
.page__news__inner__list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-bottom: 2px solid #D8C8B2;
}
.page__news__inner__list__item time {
  display: block;
  width: 194px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}
.page__news__inner__list__item time .y {
  font-size: 18px;
}
.page__news__inner__list__item time .w {
  font-size: 16px;
  font-weight: 500;
}
.page__news__inner__list__item p {
  margin: 0;
  width: calc(100% - 194px);
}
.page__news__inner__list__item p a {
  display: block;
  padding: 20px 0;
  color: #2a426a;
  text-decoration: underline;
}
.page__news__inner__list__item p a:hover {
  text-decoration: none;
}
.page__news__inner__list__item::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  margin-bottom: 3px;
  background-color: #D8C8B2;
}

@media only screen and (max-width: 991px) {
  .page__news__inner {
    padding: 5vw;
  }
  .page__news__inner__image {
    top: -12vw;
    right: -2vw;
  }
  .page__news__inner__image img {
    width: 20vw;
  }
  .page__news__inner__image2 {
    bottom: 0;
    left: -6vw;
  }
  .page__news__inner__image2 img {
    width: 20vw;
  }
  .page__news__inner__list__item time {
    width: 32%;
    font-size: 28px;
    font-size: 4.375vw;
  }
  .page__news__inner__list__item time .y {
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .page__news__inner__list__item time .w {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__news__inner__list__item p {
    width: 68%;
    font-size: 20px;
    font-size: 3.125vw;
  }
}
/*-----------------------------------------------
 program
-----------------------------------------------*/
.page__program {
  overflow: hidden;
}
.page__program__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.page__program__inner::before {
  display: block;
  content: "";
  width: 152px;
  height: 61px;
  margin: 0 auto 40px;
  background-image: url(../img/global/title-object.png);
  background-size: 152px auto;
  background-repeat: no-repeat;
}
.page__program__inner__image {
  position: absolute;
  top: -110px;
  right: -100px;
}
.page__program__inner__image2 {
  position: absolute;
  bottom: 0;
  left: -130px;
}
.page__program__inner__column {
  margin-bottom: 45px;
  padding: 3px;
  border: 2px solid #d8c8b2;
}
.page__program__inner__column__inner {
  min-height: 500px;
  padding: 40px;
  border: 2px solid #d8c8b2;
}
.page__program__inner__column__inner__title {
  margin-bottom: 20px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.page__program__inner__column__inner__sub1 {
  margin-bottom: 20px;
  padding: 5px 12px;
  background: linear-gradient(90deg, rgb(203, 133, 15) 0%, rgb(206, 140, 29) 95%, rgba(247, 247, 247, 0) 100%);
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}
.page__program__inner__column__inner__sub2 {
  margin-bottom: 20px;
  padding: 5px 12px;
  background: linear-gradient(90deg, rgb(18, 83, 141) 0%, rgb(18, 83, 141) 95%, rgba(247, 247, 247, 0) 100%);
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}
.page__program__inner__column__inner__detail {
  display: flex;
  flex-wrap: wrap;
  padding: 20px 0;
}
.page__program__inner__column__inner__detail__item {
  width: 50%;
  padding: 0 20px 0 0;
}
.page__program__inner__column__inner__detail__item__title {
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}
.page__program__inner__column__inner__detail__item p {
  line-height: 1.625;
}
.page__program__inner__column__inner__detail__item p:last-child {
  margin-bottom: 0;
}
.page__program__inner__column__inner__detail__item2 {
  width: 50%;
  padding: 0 0 0 20px;
  border-left: 1px solid #D8C8B2;
}
.page__program__inner__column__inner__detail__item2__title {
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}
.page__program__inner__column__inner__detail__item2 p {
  line-height: 1.625;
}
.page__program__inner__column__inner__detail__item2 p:last-child {
  margin-bottom: 0;
}
.page__program__inner__banner {
  position: relative;
}
.page__program__inner__banner__image {
  position: absolute;
  top: -110px;
  right: -110px;
}
.page__program__inner__banner a {
  position: relative;
  z-index: 1;
}

@media only screen and (max-width: 991px) {
  .page__program__inner {
    padding: 5vw;
  }
  .page__program__inner::before {
    margin-bottom: 5vw;
  }
  .page__program__inner__image {
    top: -12vw;
    right: -2vw;
  }
  .page__program__inner__image img {
    width: 20vw;
  }
  .page__program__inner__image2 {
    bottom: 0;
    left: -6vw;
  }
  .page__program__inner__image2 img {
    width: 20vw;
  }
  .page__program__inner__column {
    margin-bottom: 5vw;
  }
  .page__program__inner__column__inner {
    padding: 5vw;
  }
  .page__program__inner__column__inner__title {
    margin-bottom: 5vw;
    font-size: 30px;
    font-size: 4.6875vw;
  }
  .page__program__inner__column__inner__sub1 {
    margin-bottom: 5vw;
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__program__inner__column__inner__sub2 {
    margin-bottom: 5vw;
    font-size: 24px;
    font-size: 3.75vw;
    background: linear-gradient(90deg, rgb(18, 83, 141) 0%, rgb(18, 83, 141) 95%, rgba(247, 247, 247, 0) 100%);
  }
  .page__program__inner__column__inner__detail {
    display: block;
    padding: 0;
  }
  .page__program__inner__column__inner__detail__item {
    width: 100%;
    padding: 0 0 5vw 0;
    border-bottom: 1px solid #D8C8B2;
  }
  .page__program__inner__column__inner__detail__item__title {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__program__inner__column__inner__detail__item p {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__program__inner__column__inner__detail__item2 {
    width: 100%;
    padding: 5vw 0 0 0;
    border: none;
  }
  .page__program__inner__column__inner__detail__item2__title {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__program__inner__column__inner__detail__item2 p {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__program__inner__banner {
    padding-top: 10vw;
  }
  .page__program__inner__banner__image {
    top: -9vw;
    right: -5vw;
  }
  .page__program__inner__banner__image img {
    width: 20vw;
  }
}
/*-----------------------------------------------
 schedule
-----------------------------------------------*/
.page__schedule {
  overflow: hidden;
}
.page__schedule__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 40px;
}
.page__schedule__inner__image {
  position: absolute;
  top: -110px;
  right: -100px;
}
.page__schedule__inner__image2 {
  position: absolute;
  bottom: 0;
  left: -130px;
}
.page__schedule__inner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.page__schedule__inner__title::before {
  display: block;
  content: "";
  width: 152px;
  height: 61px;
  background-image: url(../img/global/title-object.png);
  background-size: 152px auto;
  background-repeat: no-repeat;
}
.page__schedule__inner__title::after {
  display: block;
  content: "";
  width: 150px;
  height: 7px;
  background-image: url(../img/global/title-object2.png);
  background-size: 150px auto;
  background-repeat: no-repeat;
}
.page__schedule__inner__table {
  display: grid;
  grid-template-columns: 123px 130px 95px 180px 80px 192px 200px /*repeat( 7, auto)*/;
  width: 100%;
}
.page__schedule__inner__table__row {
  display: contents;
}
.page__schedule__inner__table__row__item {
  display: flex;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #D8C8B2;
}
.page__schedule__inner__table .th {
  position: relative;
  border-bottom: 2px solid #D8C8B2;
  padding: 20px 0;
  font-size: 14px;
  font-weight: 500;
}
.page__schedule__inner__table .th::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 3px;
  height: 2px;
  width: 100%;
  background-color: #D8C8B2;
}
.page__schedule__inner__table .area {
  max-width: 200px /*170px*/;
}
.page__schedule__inner__table .pgA {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #CB850F;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}
.page__schedule__inner__table .pgB {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #12538D;
  line-height: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}
.page__schedule__inner__table a {
  text-decoration: underline;
}
.page__schedule__inner__table a:hover {
  text-decoration: none;
}
.page__schedule__inner__notice {
  font-size: 12px;
  text-align: right;
  color: #D40F1A;
}
.page__schedule__inner__catch {
  margin-bottom: 50px;
  text-align: center;
  line-height: 1.675;
}
.page__schedule__inner__subTitle {
  margin-bottom: 20px;
  padding: 5px 12px;
  background: linear-gradient(90deg, #BCAC95 0%, #BCAC95 36%, rgba(247, 247, 247, 0) 47%);
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}
.page__schedule__inner__ticket {
  display: flex;
  gap: 20px;
  align-items: center;
  margin-bottom: 50px;
}
.page__schedule__inner__ticket__title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}
.page__schedule__inner__ticket__date {
  margin: 0;
  font-size: 20px;
}
.page__schedule__inner__ticket__link a {
  display: block;
  padding: 3px 10px 3px 30px;
  border-radius: 100px;
  border: 1px solid #2A426A;
  background-color: #2A426A;
  color: #fff;
  text-decoration: none;
  transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
}
.page__schedule__inner__ticket__link a:hover {
  background-color: #fff;
  color: #2A426A;
}
.page__schedule__inner__note {
  font-size: 14px;
  line-height: 1.675;
}
.page__schedule__inner__guide {
  margin-bottom: 50px;
  padding: 40px;
  border: 1px solid #D8C8B2;
}
.page__schedule__inner__guide__title {
  font-family: "Zen Maru Gothic", serif;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
}
.page__schedule__inner__guide p {
  margin: 0;
  line-height: 1.675;
}
.page__schedule__inner__table2 {
  display: grid;
  grid-template-columns: 400px 200px 200px 200px/*repeat(4, auto)*/;
    width: 100%;
  margin-bottom: 30px;
}
.page__schedule__inner__table2__row {
  display: contents;
}
.page__schedule__inner__table2__row__item {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #D8C8B2;
}
.page__schedule__inner__table2__row .th {
  border-left: 1px solid #D8C8B2;
  background-color: #F2F6FD;
  font-size: 20px;
  font-family: "Zen Maru Gothic", serif;
  justify-content: center;
}
.page__schedule__inner__table2__row .th2 {
  padding-left: 20px;
  background-color: #F7F5F2;
  flex-wrap: wrap;
  font-size: 20px;
  font-weight: 700;
}
.page__schedule__inner__table2__row .th2 span {
  width: 100%;
  font-size: 16px;
  opacity: .75;
}
.page__schedule__inner__table2__row .td {
  min-height: 80px; /*もとは120*/
  border-left: 1px solid #D8C8B2;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}
.page__schedule__inner__table2__row .full {
  grid-column: span 3;
  min-height: 80px; /*もとは120*/
  border-left: 1px solid #D8C8B2;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}

@media only screen and (max-width: 991px) {
  .page__schedule__inner {
    padding: 5vw;
  }
  .page__schedule__inner::before {
    margin-bottom: 5vw;
  }
  .page__schedule__inner__image {
    top: -12vw;
    right: -2vw;
  }
  .page__schedule__inner__image img {
    width: 20vw;
  }
  .page__schedule__inner__image2 {
    bottom: 0;
    left: -6vw;
  }
  .page__schedule__inner__image2 img {
    width: 20vw;
  }
  .page__schedule__inner__title {
    font-size: 30px;
    font-size: 4.6875vw;
  }
  .page__schedule__inner__scroll {
    position: relative;
    overflow-x: scroll;
    width: 100%;
  }
  .page__schedule__inner__table {
    width: 1000px;
  }
  .page__schedule__inner__table__row {
    display: contents;
  }
  .page__schedule__inner__table__row__item {
    padding: 3vw 0;
  }
  .page__schedule__inner__table .th {
    padding: 3vw 0;
    font-size: 18px;
    font-size: 2.8125vw;
  }
  .page__schedule__inner__table .area {
    max-width: 30vw;
  }
  .page__schedule__inner__table .pgA {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__schedule__inner__table .pgB {
    width: 8vw;
    height: 8vw;
    line-height: 8vw;
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__schedule__inner__notice {
    font-size: 16px;
    font-size: 2.5vw;
    text-align: left;
  }
  .page__schedule__inner__catch {
    margin-bottom: 5vw;
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__schedule__inner__subTitle {
    background: linear-gradient(90deg, #BCAC95 0%, #BCAC95 76%, rgba(247, 247, 247, 0) 100%);
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__schedule__inner__ticket {
    flex-wrap: wrap;
    gap: 3vw;
    margin-bottom: 5vw;
  }
  .page__schedule__inner__ticket__title {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__schedule__inner__ticket__date {
    width: 70%;
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__schedule__inner__ticket__link a {
    padding: 1vw 3vw 1vw 6vw;
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__schedule__inner__note {
    font-size: 18px;
    font-size: 2.8125vw;
  }
  .page__schedule__inner__guide {
    padding: 5vw;
  }
  .page__schedule__inner__guide__title {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__schedule__inner__guide p {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__schedule__inner__table2 {
    display: grid;
    grid-template-columns: repeat(4, auto);
    width: 100%;
    margin-bottom: 30px;
  }
  .page__schedule__inner__table2__row {
    display: contents;
  }
  .page__schedule__inner__table2__row__item {
    display: flex;
    align-items: center;
    padding: 1vw 3vw;
    border-bottom: 1px solid #D8C8B2;
  }
  .page__schedule__inner__table2__row .th {
    padding: 3vw;
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__schedule__inner__table2__row .th2 {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__schedule__inner__table2__row .th2 span {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__schedule__inner__table2__row .td {
    min-height: 16vw;
    font-size: 28px;
    font-size: 4.375vw;
  }
  .page__schedule__inner__table2__row .full {
    min-height: 16vw;
    font-size: 28px;
    font-size: 4.375vw;
  }
}
/*-----------------------------------------------
 schedule
-----------------------------------------------*/
.page__member {
  overflow: hidden;
}
.page__member__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
}
.page__member__inner__image {
  position: absolute;
  top: -110px;
  right: -100px;
}
.page__member__inner__image2 {
  position: absolute;
  bottom: 0;
  left: -130px;
}
.page__member__inner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.page__member__inner__title::before {
  display: block;
  content: "";
  width: 152px;
  height: 61px;
  background-image: url(../img/global/title-object.png);
  background-size: 152px auto;
  background-repeat: no-repeat;
}
.page__member__inner__title::after {
  display: block;
  content: "";
  width: 150px;
  height: 7px;
  background-image: url(../img/global/title-object2.png);
  background-size: 150px auto;
  background-repeat: no-repeat;
}
.page__member__inner__list {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
.page__member__inner__list__item {
  width: calc((100% - 160px) / 5);
  text-align: center;
}
.page__member__inner__list__item a {
  display: block;
  text-decoration: none;
}
.page__member__inner__list__item a:hover {
  text-decoration: underline;
}
.page__member__inner__list__item a:hover img {
  transform: scale(1.1);
}
.page__member__inner__list__item a::after {
  display: block;
  content: "";
  width: 30px;
  height: 30px;
  margin: 10px auto 0;
  background-image: url(../img/member/icon@2x.png);
  background-size: 30px;
}
.page__member__inner__list__item__image {
  overflow: hidden;
  width: 100%;
  margin-bottom: 10px;
  border: 2px dotted #2A426A;
  border-radius: 200px;
}
.page__member__inner__list__item__image img {
  transition: 0.3s all cubic-bezier(0.4, 0, 0.2, 1);
}
.page__member__inner__list__item__name {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
}
.page__member__inner__list__item__en {
  margin: 0;
  font-size: 14px;
}

.memberModal {
  position: fixed;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  z-index: 100;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #2A426A;
}
.memberModal__close {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 0;
  width: 58px;
  height: 58px;
  background-color: #2A426A;
  background-image: url(../img/header/close.svg);
  background-size: 26px 16px;
  background-position: right 10px top 10px;
  background-repeat: no-repeat;
  border-bottom-left-radius: 500px;
}
.memberModal__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1000px;
  width: 100%;
}
.memberModal__item__image {
  width: 360px;
}
.memberModal__item__detail {
  width: calc(100% - 400px);
}
.memberModal__item__detail p {
  color: #fff;
}
.memberModal__item__detail__name {
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}
.memberModal__item__detail__name span {
  font-size: 16px;
}
.memberModal__item__detail__text {
  font-size: 16px;
  line-height: 1.675;
}

@media only screen and (max-width: 991px) {
  .page__member__inner {
    padding: 5vw 5vw 20vw;
  }
  .page__member__inner::before {
    margin-bottom: 5vw;
  }
  .page__member__inner__image {
    top: -12vw;
    right: -2vw;
  }
  .page__member__inner__image img {
    width: 20vw;
  }
  .page__member__inner__image2 {
    bottom: 0;
    left: -6vw;
  }
  .page__member__inner__image2 img {
    width: 20vw;
  }
  .page__member__inner__title {
    font-size: 30px;
    font-size: 4.6875vw;
  }
  .page__member__inner__list {
    gap: 5vw;
  }
  .page__member__inner__list__item {
    width: calc((100% - 10vw) / 3);
  }
  .page__member__inner__list__item__name {
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .page__member__inner__list__item__en {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .memberModal__close {
    width: 12vw;
    height: 12vw;
    background-size: 6vw auto;
  }
  .memberModal__item {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    width: 80%;
  }
  .memberModal__item__image {
    width: 100%;
    margin-bottom: 3vw;
  }
  .memberModal__item__detail {
    width: 100%;
  }
  .memberModal__item__detail__name {
    margin-bottom: 3vw;
    font-size: 24px;
    font-size: 3.75vw;
  }
  .memberModal__item__detail__name span {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .memberModal__item__detail__text {
    font-size: 20px;
    font-size: 3.125vw;
  }
}
/*-----------------------------------------------
 goods
-----------------------------------------------*/
.page__goods {
  overflow: hidden;
}
.page__goods__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 140px;
}
.page__goods__inner__image {
  position: absolute;
  top: -110px;
  right: -100px;
}
.page__goods__inner__image2 {
  position: absolute;
  bottom: 0;
  left: -130px;
}
.page__goods__inner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.page__goods__inner__title::before {
  display: block;
  content: "";
  width: 152px;
  height: 61px;
  background-image: url(../img/global/title-object.png);
  background-size: 152px auto;
  background-repeat: no-repeat;
}
.page__goods__inner__title::after {
  display: block;
  content: "";
  width: 150px;
  height: 7px;
  background-image: url(../img/global/title-object2.png);
  background-size: 150px auto;
  background-repeat: no-repeat;
}
.page__goods__inner__program {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
}
.page__goods__inner__program__image {
  width: 250px;
}
.page__goods__inner__program__image img {
  max-width: 100%;
}
.page__goods__inner__program__detail {
  width: calc(100% - 290px);
}
.page__goods__inner__program__detail__title {
  margin-bottom: 20px;
  padding: 5px 12px;
  background: linear-gradient(90deg, #BCAC95 0%, #BCAC95 36%, rgba(247, 247, 247, 0) 47%);
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  color: #fff;
}
.page__goods__inner__program__detail h4 {
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}
.page__goods__inner__program__detail__column {
  margin-bottom: 45px;
  padding: 3px;
  border: 2px solid #d8c8b2;
}
.page__goods__inner__program__detail__column__inner {
  overflow-y: scroll;
  height: 200px;
  padding: 20px;
  border: 2px solid #d8c8b2;
}
.page__goods__inner__program__detail__column__inner__item {
  display: flex;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #D8C8B2;
}
.page__goods__inner__program__detail__column__inner__item__date {
  width: 100px;
  line-height: 1;
}
.page__goods__inner__program__detail__column__inner__item__detail {
  width: calc(100% - 100px);
}
.small75{
  font-size: .75em;
}

@media only screen and (max-width: 991px) {
  .page__goods__inner {
    padding: 5vw 5vw 20vw;
  }
  .page__goods__inner::before {
    margin-bottom: 5vw;
  }
  .page__goods__inner__sample {
    margin: 0 -5vw;
  }
  .page__goods__inner__image {
    top: -12vw;
    right: -2vw;
  }
  .page__goods__inner__image img {
    width: 20vw;
  }
  .page__goods__inner__image2 {
    bottom: 0;
    left: -6vw;
  }
  .page__goods__inner__image2 img {
    width: 20vw;
  }
  .page__goods__inner__title {
    font-size: 30px;
    font-size: 4.6875vw;
  }
  .page__goods__inner__program {
    display: block;
    margin-bottom: 10vw;
  }
  .page__goods__inner__program__image {
    width: 100%;
    margin-bottom: 5vw;
    text-align: center;
  }
  .page__goods__inner__program__detail {
    width: 100%;
  }
  .page__goods__inner__program__detail__title {
    background: linear-gradient(90deg, #BCAC95 0%, #BCAC95 76%, rgba(247, 247, 247, 0) 100%);
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__goods__inner__program__detail h4 {
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .page__goods__inner__program__detail p {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__goods__inner__program__detail__column {
    margin-bottom: 5vw;
  }
  .page__goods__inner__program__detail__column__inner {
    height: 250px;
    padding: 5vw;
  }
  .page__goods__inner__program__detail__column__inner__item {
    margin-bottom: 3vw;
    padding-bottom: 3vw;
  }
  .page__goods__inner__program__detail__column__inner__item__date {
    width: 30%;
  }
  .page__goods__inner__program__detail__column__inner__item__detail {
    width: 70%;
  }
}
/*-----------------------------------------------
 goods
-----------------------------------------------*/
.page__wellBeing {
  overflow: hidden;
}
.page__wellBeing__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 140px;
}
.page__wellBeing__inner__image {
  position: absolute;
  top: -110px;
  right: -100px;
}
.page__wellBeing__inner__image2 {
  position: absolute;
  bottom: 0;
  left: -130px;
}
.page__wellBeing__inner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.page__wellBeing__inner__title::before {
  display: block;
  content: "";
  width: 152px;
  height: 61px;
  background-image: url(../img/global/title-object.png);
  background-size: 152px auto;
  background-repeat: no-repeat;
}
.page__wellBeing__inner__title::after {
  display: block;
  content: "";
  width: 150px;
  height: 7px;
  background-image: url(../img/global/title-object2.png);
  background-size: 150px auto;
  background-repeat: no-repeat;
}
.page__wellBeing__inner__topic1 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 638px;
  margin-bottom: 50px;
  background-image: url(../img/well-being/bg1.png);
  background-size: 999px auto;
  background-repeat: no-repeat;
}
.page__wellBeing__inner__topic1__catch {
  width: 350px;
  margin: 0 auto 20px;
  padding: 3px 0;
  border-radius: 100px;
  background-color: #D40F1A;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.page__wellBeing__inner__topic1__title {
  margin-bottom: 20px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
.page__wellBeing__inner__topic1__text {
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.page__wellBeing__inner__topic1__text2 {
  margin-bottom: 40px;
  text-align: center;
}
.page__wellBeing__inner__topic1__border {
  position: relative;
  width: 800px;
  margin: 0 auto 20px;
}
.page__wellBeing__inner__topic1__border::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  margin-bottom: 3px;
  background-color: #fff;
}
.page__wellBeing__inner__topic1__border::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.page__wellBeing__inner__topic1__detail {
  position: relative;
  width: 468px;
  margin: 0 auto;
  padding: 40px;
  border-radius: 999px;
  background-color: #D7E9D2;
  text-align: center;
}
.page__wellBeing__inner__topic1__detail__title {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 120px;
  margin: 0 auto 20px;
  padding: 3px 0;
  border-radius: 20px;
  background-color: #2A426A;
  font-size: 14px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
  transform: translateX(-50%);
}
.page__wellBeing__inner__topic1__detail p {
  margin: 0;
}
.page__wellBeing__inner__topic2 {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 533px;
  background-image: url(../img/well-being/bg2.png);
  background-size: 999px auto;
  background-repeat: no-repeat;
}
.page__wellBeing__inner__topic2__catch {
  width: 350px;
  margin: 0 auto 20px;
  padding: 3px 0;
  border-radius: 100px;
  background-color: #D40F1A;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
}
.page__wellBeing__inner__topic2__title {
  margin-bottom: 0;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  font-size: 24px;
  text-align: center;
}
.page__wellBeing__inner__topic2__text {
  margin-bottom: 20px;
  font-size: 18px;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.page__wellBeing__inner__topic2__text2 {
  margin-bottom: 40px;
  text-align: center;
}
.page__wellBeing__inner__topic2__border {
  position: relative;
  width: 800px;
  margin: 0 auto 20px;
}
.page__wellBeing__inner__topic2__border::before {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  margin-bottom: 3px;
  background-color: #fff;
}
.page__wellBeing__inner__topic2__border::after {
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #fff;
}
.page__wellBeing__inner__topic2__detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  width: 800px;
  /* margin: 0 auto; */
  margin : 40px 80px;
  border-radius: 999px;
  background-color: #FBECE3;
}
.page__wellBeing__inner__topic2__detail__title {
  position: absolute;
  top: -10px;
  left: 50%;
  width: 130px;
  margin: 0 auto 20px;
  padding: 3px 0;
  border-radius: 20px;
  background-color: #2A426A;
  font-size: 14px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  text-align: center;
  color: #fff;
  transform: translateX(-50%);
}
.page__wellBeing__inner__topic2__detail p {
  margin: 0;
}
.lh-15{
  padding: 20px 40px;
  line-height: 1.5em;
}

@media only screen and (max-width: 991px) {
  .page__wellBeing__inner {
    padding: 5vw 0 20vw;
  }
  .page__wellBeing__inner::before {
    margin-bottom: 5vw;
  }
  .page__wellBeing__inner__sample {
    margin: 0 -5vw;
  }
  .page__wellBeing__inner__image {
    top: -12vw;
    right: -2vw;
  }
  .page__wellBeing__inner__image img {
    width: 20vw;
  }
  .page__wellBeing__inner__image2 {
    bottom: 0;
    left: -6vw;
  }
  .page__wellBeing__inner__image2 img {
    width: 20vw;
  }
  .page__wellBeing__inner__title {
    font-size: 30px;
    font-size: 4.6875vw;
  }
  .page__wellBeing__inner__topic1 {
    aspect-ratio: 640/615;
    width: 100%;
    height: auto;
    margin: 0 0 10vw;
    background-image: url(../img/well-being/bg1-sp.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .page__wellBeing__inner__topic1__catch {
    width: 60%;
    margin: 0 auto 1vw;
    border-radius: 100px;
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__wellBeing__inner__topic1__title {
    margin-bottom: 2vw;
    font-size: 28px;
    font-size: 4.375vw;
  }
  .page__wellBeing__inner__topic1__text {
    margin-bottom: 2vw;
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .page__wellBeing__inner__topic1__text2 {
    width: 80%;
    margin: 0 auto 5vw;
    font-size: 20px;
    font-size: 3.125vw;
    text-align: left;
  }
  .page__wellBeing__inner__topic1__text2 br {
    display: none;
  }
  .page__wellBeing__inner__topic1__border {
    position: relative;
    width: 80%;
    margin: 0 auto 2vw;
  }
  .page__wellBeing__inner__topic1__detail {
    position: relative;
    width: 80%;
    margin: 0 auto;
    padding: 2vw;
    border-radius: 77px;
    background-color: #D7E9D2;
    text-align: center;
  }
  .page__wellBeing__inner__topic1__detail__title {
    top: -2vw;
    width: 18vw;
    font-size: 18px;
    font-size: 2.8125vw;
    transform: translateX(-50%);
  }
  .page__wellBeing__inner__topic1__detail p {
    margin: 0;
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__wellBeing__inner__topic2 {
    aspect-ratio: 640/715;
    width: 100%;
    height: auto;
    margin: 0 0 0;
    background-image: url(../img/well-being/bg2-sp.png);
    background-size: 100% auto;
    background-repeat: no-repeat;
  }
  .page__wellBeing__inner__topic2__catch {
    width: 60%;
    margin: 0 auto 1vw;
    border-radius: 100px;
    font-size: 20px;
    font-size: 3.125vw;
  }
  .page__wellBeing__inner__topic2__title {
    margin-bottom: 2vw;
    font-size: 28px;
    font-size: 4.375vw;
  }
  .page__wellBeing__inner__topic2__text {
    margin-bottom: 2vw;
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .page__wellBeing__inner__topic2__text2 {
    width: 80%;
    margin: 0 auto 5vw;
    font-size: 20px;
    font-size: 3.125vw;
    text-align: left;
  }
  .page__wellBeing__inner__topic2__text2 br {
    display: none;
  }
  .page__wellBeing__inner__topic2__border {
    position: relative;
    width: 80%;
    margin: 0 auto 2vw;
  }
  .page__wellBeing__inner__topic2__detail {
    flex-direction: column;
    align-items: flex-start;
    position: relative;
    width: 80%;
    height: auto;
    margin: 0 auto;
    padding: 5vw 5vw;
    text-align: center;
  }
  .page__wellBeing__inner__topic2__detail__title {
    top: -2vw;
    width: 24vw;
    font-size: 18px;
    font-size: 2.8125vw;
    transform: translateX(-50%);
  }
  .page__wellBeing__inner__topic2__detail p {
    margin: 0;
    text-align: left;
  }
}
/*-----------------------------------------------
 anniversary
-----------------------------------------------*/
.anivheader{
  display: block;
  width: 100%;
  max-width: 1980px;
  margin: 0 auto;
  translate: none;
  rotate: none;
  scale: none;
  opacity: 1;
  transform: translate(0px, 0px);
}
.anivtxt{
  background-color: #faf9e3;
  color: #0b2859;
  width: 100%;
  padding: 40px;
  border-radius: 50px;
  text-align: center;
  font-size: 1.25em;
}

.page__anniversary__logo {
  position: absolute;
  top: 80px;
  left: 20px;
  z-index: 2;
}
.page__anniversary {
  overflow: hidden;
  background-color: #8fc2f2;
}
.page__anniversary__inner {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  padding-bottom: 140px;
}
.page__anniversary__inner_timeline {
  position: relative;
  max-width: 1980px;
  margin: 0 auto;
  padding-bottom: 140px;
}
.page__anniversary__inner__image {
  position: absolute;
  top: -110px;
  right: -100px;
}
.page__anniversary__inner__image2 {
  position: absolute;
  bottom: 0;
  left: -130px;
}
.page__anniversary__inner__title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  text-align: center;
}
.page__anniversary__inner__title::before {
  display: block;
  content: "";
  width: 152px;
  height: 61px;
  background-image: url(../img/global/title-object.png);
  background-size: 152px auto;
  background-repeat: no-repeat;
}
.page__anniversary__inner__title::after {
  display: block;
  content: "";
  width: 150px;
  height: 7px;
  background-image: url(../img/global/title-object2.png);
  background-size: 150px auto;
  background-repeat: no-repeat;
}
.page__anniversary__inner__item {
  position: relative;
  display: flex;
  justify-content: space-between;
  /* margin-bottom: 50px;
  padding-bottom: 50px; */
  /* border-bottom: 2px solid #d8c8b2; */
}
/* .page__anniversary__inner__item::after {
  position: absolute;
  left: 0;
  bottom: 3px;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background-color: #d8c8b2;
} */
.page__anniversary__inner__item__image {
  width: 250px;
}
.page__anniversary__inner__item__image img {
  max-width: 100%;
}
.page__anniversary__inner__item__detail {
  width: calc(100% - 290px);
}
.page__anniversary__inner__item__detail h3 {
  margin-bottom: 20px;
  padding: 5px 12px;
  background: linear-gradient(90deg, #BCAC95 0%, #BCAC95 36%, rgba(247, 247, 247, 0) 47%);
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
  color: #fff;
}
.page__anniversary__inner__item__detail h4 {
  font-size: 20px;
  font-family: "Zen Maru Gothic", serif;
  font-weight: 700;
}
.page__anniversary__inner__item__detail__border {
  width: 100%;
  height: 2px;
  margin: 1em 0;
  background-color: #d8c8b2;
}
.timeline_bg{
  background-color:#ebe5e1;
  width: 100vw;
}
/* 年表＋パララックス */
.parallax-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}
.timeline-headline{
    font-size: 36px;
    font-weight: 700;
    font-family: "Zen Maru Gothic", serif;
}
.timeline-section {
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items:start;
  justify-content: flex-start;
  background-color: #ebe5e1; /* ごく薄いセピア色 */
}
.timeline-container{
  margin: 80px 40px 40px 40px;
  width: max-content;
  overflow-x: scroll;
}
.timelineimg{
  position: absolute;
  z-index: 0;
  top: 450px;
  width: max-content;
}
.timelineimg img{
  width: 100%;
}
.timeline_head{
  width: max-content;
  position: absolute;
  left: 800;
  top: 60;
  z-index: -1;
}
.timeline {
  width: auto;
  height: 80vh;
  display: flex;
  align-items:start;
  flex-wrap: nowrap; /* 要素を折り返さない */
  text-align: center;
  counter-reset: timeline-counter;
  position: relative;
}
.timeline-container::-webkit-scrollbar {
  height: 8px;
}
.timeline-container::-webkit-scrollbar-track {
  background: #ebe5e1; /* スクロールバーのトラックの色 */
  border-radius: 10px;
}
.timeline-container::-webkit-scrollbar-thumb {
  background: #decec3; /* えんじ色 */
  border-radius: 10px;
}
.timeline-container::-webkit-scrollbar-thumb:hover {
  background: #cfc0b6;
}
.timeline .event {
  width: 250px;
  min-width: 250px;
  text-align: center;
  font-size: 1.5rem;
  color: #a52a2a; /* えんじ色の文字 */
  font-weight: bold;
  text-align: center;
}

.timeline .event p{
  font-size: 1.5rem;
}
.timeline .event .timelinedot{
  line-height: 200px;
}
.event:hover .timelinedot{
  transition: .2s;
  font-weight: 900;
  font-size: 1.5em;
}
.timelinedot{
  width: 100%;
  height: 150px;
  display: inline-block;
}
.timelinedot::after{
  content:'●';
  font-size: 1.5em;
  position: relative;
  z-index: -1;
  display: block;
  margin: 10px;
  transform: translateY(-76%);
}
.decade_060{
  display: inline-block;
  font-size: .5em;
  color: #ffffff;
  background-color: #a52a2a;
  border-radius: 8px;
  padding: 5px;
  line-height: 1em;
  margin-left: .5em;
}
.decade{
  display: inline-block;
  font-size: .5em;
  color: #a52a2a;
  background-color: #ffffff;
  border-radius: 8px;
  padding: 5px;
  line-height: 1em;
  margin-left: .5em;
}
.timeline_episode:last-child:before{
  width: 250px;
}
.timeline_episode::before{
  content: '';
  display: block;
  background-color: #a52a2a;
  width: 100%;
  height: 3px;
  position: absolute;
  top: 150px;
  margin-top: 9px;
}

.timeline_episode{
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-top: 15px;
  flex-wrap: wrap;
}

.timeline_episode .icon{
  line-height: 1;
  padding: 0;
  list-style-type: none;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1 / 1;
}
.timeline_episode .icon a{
display: block;
width: 100%;
height: 100%;
background-color: #a52a2a;
}
div.icon.rectangle a img{
  max-width: 230%;
}
.timeline_episode div a:hover{
  opacity: .8;
  transition: .3s;
}
.modaltrigger{
  width: 28%;
  margin: 10px 5px 0px 5px;
}
.nomodalicon{
  width: 28%;
  margin: 10px 5px 0px 5px;
}


/* モーダルの背景 */
#modalcontainer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

/* モーダル本体 */
.modal {
  background: #2a426a;
  color: #ffffff;
  font-weight: 400;
  border-radius: 30px;
  padding: 40px 50px;
  width: 80%;
  max-width: 900px;
  max-height: 80vh;
  text-align: left;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block; /* デフォルトは非表示 */
  z-index: 1000;
  overflow: hidden;
}

/* モーダル内の画像 */
.modalimg img {
  width: 100%;
  max-width: 500px; /* 画像が大きくなりすぎないように */
  display: block;
  margin: 0 auto;
  border-radius: 15px;
}

/* モーダルないのリンク */
#modallinkcontainer.modallinkcontainer a{
  color: #ffffff;
}

/* モーダル内のスクロール設定 */
.modalcontent {
  overflow-y: scroll;
  max-height: 70vh;
  padding-right: 20px;
}

/* スクロールバーのカスタマイズ */
.modalcontent::-webkit-scrollbar {
  width: 10px; /* スクロールバーの幅 */
}

.modalcontent::-webkit-scrollbar-track {
  background: #2a426a; /* モーダルの背景色 */
  border-radius: 10px; /* トラックの角を丸める */
}

.modalcontent::-webkit-scrollbar-thumb {
  background: #385c80; /* スクロールバーの色 */
  border-radius: 10px; /* サムの角を丸める */
}

/* 閉じるボタン */
.close {
  position: absolute;
  right: 24px;
  top: 20px;
  cursor: pointer;
  font-size: 24px;
  color: #ffffff;
}
.brsp{
  display: none;
}
@media only screen and (max-width: 748px){
  .page__anniversary__logo {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 75px;
    z-index: 2;
  }
  .anivheader{
    display: block ;
    width: 150%;
    margin: 0 auto;
    translate: none;
    rotate: none;
    scale: none;
    opacity: 1;
    transform: translateX(-15%);
  }
  .anivtxt{
    padding: 15px;
    border-radius: 30px;
    font-size: 14px;
  }
  .timeline{
    overflow-Y: hidden;
  }
  .timeline-container{
    margin: 60px 15px 15px 15px;
  }
  .timeline .event .timelinedot{
    line-height: 150px;
  }
  .event:hover .timelinedot{
    font-size: unset;
  }
  .timelineimg{
    top: 375px;
  }
  .timeline-headline{
    font-size: 24px;
    font-weight: 700;
    font-family: "Zen Maru Gothic", serif;
}
.timeline_episode::before{
  top: 113px;
}
#modaltext{
  font-size: 14px;
}
.brsp{
  display: block;
}
/* 閉じるボタン */
.close {
  right: 20px;
  top: 7px;
}

/* モーダル内のスクロール設定 */
.modalcontent {
  max-height: 100%;
  padding-right: 10px;
}

/* モーダル本体 */
.modal {
  padding: 40px 15px 20px 15px;
  max-width: 900px;
}
}

/*年表＋パララックス*/

@media only screen and (max-width: 991px) {
  .page__anniversary__inner {
    padding: 5vw 5vw 20vw;
  }
  .page__anniversary__inner_timeline {
    padding: 5vw 5vw 20vw;
  }
  .page__anniversary__inner::before {
    margin-bottom: 5vw;
  }
  .page__anniversary__inner__sample {
    margin: 0 -5vw;
  }
  .page__anniversary__inner__image {
    top: -12vw;
    right: -2vw;
  }
  .page__anniversary__inner__image img {
    width: 20vw;
  }
  .page__anniversary__inner__image2 {
    bottom: 0;
    left: -6vw;
  }
  .page__anniversary__inner__image2 img {
    width: 20vw;
  }
  .page__anniversary__inner__title {
    font-size: 30px;
    font-size: 4.6875vw;
  }
  .page__anniversary__inner__item {
    display: block;
    padding-bottom: 5vw;
    margin-bottom: 10vw;
  }
  .page__anniversary__inner__item__image {
    width: 100%;
    margin-bottom: 5vw;
    text-align: center;
  }
  .page__anniversary__inner__item__detail {
    width: 100%;
  }
  .page__anniversary__inner__item__detail h3 {
    background: linear-gradient(90deg, #BCAC95 0%, #BCAC95 76%, rgba(247, 247, 247, 0) 100%);
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__anniversary__inner__item__detail h4 {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .page__anniversary__inner__item__detail p {
    font-size: 20px;
    font-size: 3.125vw;
  }
}
/*-----------------------------------------------
 cf 
-----------------------------------------------*/
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*-----------------------------------------------
 font
-----------------------------------------------*/


.maru24b {
  font-size: 24px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}

.maru20b {
  font-size: 20px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}

.maru18b {
  font-size: 18px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}

.maru18 {
  font-size: 18px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
}

.maru16 {
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
}

.maru14b {
  font-size: 14px;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}

.maru14 {
  font-size: 14px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
}

.kaku14 {
  font-size: 14px;
  font-weight: 500;
}

.maru12 {
  font-size: 12px;
  font-weight: 500;
  font-family: "Zen Maru Gothic", serif;
}

@media only screen and (max-width: 991px) {
  .maru24b {
    font-size: 28px;
    font-size: 4.375vw;
  }
  .maru20b {
    font-size: 24px;
    font-size: 3.75vw;
  }
  .maru18b {
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .maru18 {
    font-size: 22px;
    font-size: 3.4375vw;
  }
  .maru16 {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .maru14b {
    font-size: 18px;
    font-size: 2.8125vw;
  }
  .maru14 {
    font-size: 18px;
    font-size: 2.8125vw;
  }
  .kaku14 {
    font-size: 18px;
    font-size: 2.8125vw;
  }
  .maru12 {
    font-size: 16px;
    font-size: 2.5vw;
  }
}
/*-----------------------------------------------
 frame
-----------------------------------------------*/
.frame__top {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 100vw;
  height: 4px;
  background-color: #2A426A;
}
.frame__right {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 0;
  width: 4px;
  height: 100vh;
  background-color: #2A426A;
}
.frame__bottom {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 4px;
  background-color: #2A426A;
}
.frame__left {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 4px;
  height: 100vh;
  background-color: #2A426A;
}
.frame__topThin {
  position: fixed;
  z-index: 1;
  top: 10px;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: #2A426A;
}
.frame__rightThin {
  position: fixed;
  z-index: 1;
  top: 0;
  right: 10px;
  width: 1px;
  height: 100vh;
  background-color: #2A426A;
}
.frame__bottomThin {
  position: fixed;
  z-index: 1;
  bottom: 10px;
  left: 0;
  width: 100vw;
  height: 1px;
  background-color: #2A426A;
}
.frame__leftThin {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 10px;
  width: 1px;
  height: 100vh;
  background-color: #2A426A;
}
.frame__leftUpRound {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: #2A426A;
  border-bottom-right-radius: 35px;
}
.frame__leftRound {
  position: fixed;
  z-index: 1;
  bottom: 0;
  left: 0;
  width: 17px;
  height: 17px;
  background-color: #2A426A;
  border-top-right-radius: 35px;
}
.frame__rightRound {
  position: fixed;
  z-index: 1;
  bottom: 0;
  right: 0;
  width: 17px;
  height: 17px;
  background-color: #2A426A;
  border-top-left-radius: 35px;
}

/*-----------------------------------------------
 pagination
-----------------------------------------------*/
.pagination {
  flex-wrap: wrap;
  justify-content: center;
  padding: 50px 0;
  gap: 20px;
}
.pagination .page-item a {
  border: 1px solid #BEBEBE;
  border-radius: 6px;
  color: #BCAC95;
}
.pagination .page-item.active a {
  background-color: #BCAC95;
  color: #fff;
}
.pagination .page-item.disabled {
  opacity: 0.5;
}

@media only screen and (max-width: 991px) {
  .pagination {
    gap: 2vw;
  }
  .pagination .page-item a {
    font-size: 20px;
    font-size: 3.125vw;
  }
}
/*-----------------------------------------------
 topicpath
-----------------------------------------------*/
.topicpath {
  max-width: 1000px;
  margin: 0 auto;
  padding: 20px 0;
}
.topicpath__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.topicpath__list__item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.2rem;
  font-size: 12px;
  color: #2A426A;
}
.topicpath__list__item:not(:last-of-type)::after {
  content: "";
  display: block;
  content: "";
  width: 8px;
  height: 8px;
  margin-right: 0.2rem;
  border-top: 1px solid #b6aaaa;
  border-right: 1px solid #b6aaaa;
  transform: rotate(45deg);
}
.topicpath__list__item a {
  color: #D40F1A;
}

@media only screen and (max-width: 991px) {
  .topicpath {
    padding: 2.5vw 5vw 0;
  }
  .topicpath__list__item {
    font-size: 20px;
    font-size: 3.125vw;
  }
  .topicpath__list__item:not(:last-of-type)::after {
    content: "";
    display: block;
    content: "";
    width: 2vw;
    height: 2vw;
    border-top: 1px solid #b6aaaa;
    border-right: 1px solid #b6aaaa;
    transform: rotate(45deg);
  }
}
/*-----------------------------------------------
 pageup
-----------------------------------------------*/
.pageup {
  position: sticky;
  bottom: 0;
}
.pageup a {
  display: block;
  z-index: 100;
  right: 20px;
  width: 98px;
  height: 98px;
  margin-left: auto;
  background-image: url(/assets/img/pageup.svg);
  background-size: 98px;
  background-repeat: no-repeat;
}

@media only screen and (max-width: 991px) {
  .pageup {
    bottom: 20vw;
  }
  .pageup a {
    width: 12vw;
    height: 12vw;
    bottom: 20vw;
    background-size: 100% auto;
  }
}

/*slider*/
.slider-wrapper {
  display: flex;
  width: 100%;
  overflow: hidden;
}

.slider {
  display: flex;
  width: max-content;
  animation: scroll 20s linear infinite;
  padding: 20px 0;
}

.photo {
  flex-shrink: 0;
  width: 200px; /* 元の幅 */
  margin: 0 5px;
  object-fit: cover; /* アスペクト比維持 */
  transition: transform 0.3s ease;
}

.pause .photo:hover,
.pause .photo.touch {
  transform: scale(1.2); /* 拡大 */
  object-position: center; /* 拡大時、画像が中央で表示されるように */
}

@keyframes scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.credit {
  text-align: left;
  font-size: 0.75em;
  color: #555;
  /* margin: ; */
}
