@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;
  text-align: center;
}
.footer__top__banner {
  display: block;
}
.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;
}
ul.footer__inner__content__nav__list{
  list-style: none;
}
.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 26px;
  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: 10em;
    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__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;
  }
}
/*-----------------------------------------------
 program
-----------------------------------------------*/
.programA_content{
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.programA_content::before{
  content: '◆';
  margin: 0 5px 0 0 ;
  color: rgb(206, 140, 29);
  font-size: .75em;
}
.programB_content{
  padding: 0 0 0 1em;
  text-indent: -1em;
}
.programB_content::before{
  content: '◆';
  margin: 0 5px 0 0 ;
  color:rgb(18, 83, 141);
  font-size: .75em;
}
.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;
  /* padding: 20px 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;
}
.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;
  }
}
/*-----------------------------------------------
 anniversary
-----------------------------------------------*/
.page__anniversary {
  overflow: hidden;
}
.page__anniversary__inner {
  position: relative;
  max-width: 1000px;
  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;
}

@media only screen and (max-width: 991px) {
  .page__anniversary__inner {
    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;
  }
}