@charset "UTF-8";
html {
  scroll-behavior: smooth;
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}
body {
  margin: 0 ;
  padding: 0;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "Yu Gothic", "游ゴシック体", "メイリオ", Meiryo, sans-serif;
  color: #5a4f40;
  word-wrap: break-word;
  -webkit-font-smoothing: antialiased;
  font-size: 16px;
  line-height: 1.5;
  font-weight: 400;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
}
/* common */
.inner {
  width: min(92%,1200px);
  margin-inline: auto;
}
.innerS {
  width: min(92%,1000px);
  margin-inline: auto;
}
.innerSS {
  width: min(92%,820px);
  margin-inline: auto;
}
.pc_none {
  display: none;
}
@media screen and (max-width: 1024px) {
  .tb_none {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sp_none {
    display: none;
  }
  .pc_none {
    display: initial;
  }
}


/* ttl */
.cont__ttl {
  font-size: clamp(24px,2.5vw,36px);
  font-weight: 700;
  color: #399d26;
  letter-spacing: 0.1em;
  margin-bottom: 0.8em;
}
.cont__ttl-en {
  font-size: clamp(16px,1.39vw,20px);
  font-family: "Montserrat", sans-serif;
}
.cont__ttl.cont__ttl-page {
  color: #5a4f40;
}
.cont__ttl.cont__ttl-dotted {
  padding-bottom: 0.5em;
  position: relative;
}
.cont__ttl.cont__ttl-dotted::after {
  content: '';
  display: inline-block;
  height: 8px;
  width: 100%;
  background: radial-gradient(circle farthest-side, #399d26, #399d26 30%, transparent 30%, transparent);
  background-size: 8px;
  position: absolute;
  bottom: -4px;
  left: 0;
}
.ttl__line {
  padding-bottom: 0.8em;
  margin-bottom: 1.4em;
  position: relative;
}
.ttl__line::before {
  content: '';
  display: inline-block;
  height: 8px;
  width: 100%;
  background: radial-gradient(circle farthest-side, #399d26, #399d26 30%, transparent 30%, transparent);
  background-size: 8px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.post__date {
  display: block;
  margin-bottom: 0.2em;
  font-size: clamp(16px,1.25vw,18px);
  font-family: "Montserrat", sans-serif;
  letter-spacing: 0;
  color: #399d26;
}
.ttl__sub {
  margin-top: 2em;
  margin-bottom: 0.8em;
  padding-left: 0.5em;
  border-left: 0.25em solid #399d26;
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 700;
  color: #399d26;
}
.ttl__sub-s {
  margin-top: 2em;
  margin-bottom: 0.8em;
  font-size: clamp(16px,1.39vw,20px);
  font-weight: 700;
  color: #399d26;
}

/* btn */
a.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8em;
       column-gap: 0.8em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 13.5em;
  min-height: 3.8em;
  margin-inline: auto;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1.8em;
  padding-right: 1.8em;
  border-radius: 3em;
  background-color: #399d26;
  border: 2px solid #399d26;
  color: #fcfbf3;
  font-weight: 700;
  font-size: clamp(16px,1.25vw,18px);
  box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.1);
}
.btn__contact {
  min-width: auto;
}
.btn__contact::before {
  content: '';
  display: block;
  width: 1.8em;
  height: 1.8em;
  background: url(../images/common/icon_mail.svg) no-repeat center center / contain;
}
.btn__external {
  border-color: #5a4f40;
  background-color: #5a4f40;
}
.btn__cta {
  min-width: auto;
  background-color: #ffffff;
  color: #399d26;
}
.btn__cta::before {
  content: '';
  display: block;
  width: 1.2em;
  height: 1em;
  background: url(../images/common/arrow_cta.svg) no-repeat center center / contain;
}

.btn__b {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8em;
       column-gap: 0.8em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 13.5em;
  min-height: 3em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1.4em;
  padding-right: 1.4em;
  border-radius: 3em;
  background-color: #fff;
  border: 1px solid #399d26;
  color: #399d26;
  font-weight: 700;
  font-size: clamp(16px,1.25vw,18px);
}
.btn__b::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../images/common/arrow_cta.svg) no-repeat center center / contain;
}
.btn__pdf::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(../images/common/icon_pdf.svg) no-repeat center center / contain;
}
@media (hover: hover) {
  .btn:hover {
    background-color: #fcfbf3;
    color: #399d26;
    transition: all 0.2s ease-in-out;
  }
  .btn__contact:hover::before {
    background: url(../images/common/icon_mail_hover.svg) no-repeat center center / contain;
    transition: all 0.2s ease-in-out;
  }
  .btn__external:hover {
    color: #5a4f40;
  }
  .btn__cta:hover {
    background-color: #399d26;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
  }
  .btn__cta:hover::before {
    background: url(../images/common/arrow_cta_hover.svg) no-repeat center center / contain;
    transition: all 0.2s ease-in-out;
  }
  .btn__b:hover {
    opacity: 0.6;
    transition: all 0.2s ease-in;
  }
}

.breadcrumbs {
  background-color: #fcfbf3;
  padding-bottom: 3.5em;
}
.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 2.8em;
       column-gap: 2.8em;
}
.breadcrumbs__item {
  position: relative;
}
.breadcrumbs__item:not(:last-child):after {
  content: '';
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #399d26;
  border-right: 2px solid #399d26;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  right: -1.4em;
  transform: translateY(-50%) rotate(45deg);
}
.breadcrumbs__link {
  color: #399d26;
  position: relative;
}
@media (hover: hover) {
  .breadcrumbs__link:hover {
    opacity: 0.6;
    transition: all 0.2s ease-in;
  }
}
.breadcrumbs__item:has(.breadcrumbs__link)::after {
  border-top: 2px solid #399d26;
  border-right: 2px solid #399d26;
}

.txt__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  margin-top: 0.5em;
  padding-right: 2.4em;
  font-size: clamp(18px,1.39vw,20px);
  font-weight: 700;
  text-align: center;
  color: #399d26;
  background: url(../images/common/arrow.svg) no-repeat right center / 1.5em;
}

/* pagenavi */
.pagenavi .wp-pagenavi {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0 2.5em;
}
.pagenavi .current,
.pagenavi .page {
  display: block;
  font-size: clamp(18px, 1.39vw, 20px);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
}
.pagenavi .current {
  color: #399d26;
}
.pagenavi .previouspostslink,
.pagenavi .nextpostslink {
  display: block;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background-color: #399d26;
  color: #399d26;
  text-align: center;
  position: relative;
}
@media (any-hover: hover) {
  .pagenavi .page:hover,
  .pagenavi .previouspostslink:hover,
  .pagenavi .nextpostslink:hover {
    opacity: 0.7;
    transition: all 0.2s ease-in;
  }
}
.pagenavi .previouspostslink::after,
.pagenavi .nextpostslink::after {
  content: "";
  display: block;
  width: 0.7em;
  height: 0.7em;
  border-bottom: 2px solid #fff;
  border-left: 2px solid #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.pagenavi .previouspostslink::after {
  transform: translate(-30%,-50%) rotate(45deg);
}
.pagenavi .nextpostslink::after {
  transform: translate(-70%,-50%) rotate(-135deg);
}

/* animation */
.fadeup {
  opacity: 0; 
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}
.fadeup.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px) translateX(0px);
}

/* header */ 
.header {
  background-color: #fcfbf3;
}
.header__inner {
  width: 92%;
  margin-inline: auto;
  padding-top: 1.25em;
  padding-bottom: 1.25em;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 2em;
       column-gap: 2em;
}
.header__lead {
  font-size: clamp(16px,1.67vw,24px);
  font-weight: 700;
  color: #399d26;
  position: relative;
}
.header__lead::before {
  content: '';
  display: block;
  width: 8.33vw;
  height: 9.03vw;
  background: url(../images/common/header_leaf.png) no-repeat center center / contain;
  position: absolute;
  bottom: -4.5vw;
  left: -3em;
  z-index: 10;
}
.header__menu {
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 5%;
       column-gap: 5%;
}
.header__menu-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 7%;
       column-gap: 7%;
}
.header__menu-link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px,1.39vw,20px);
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
}
.header__menu-en {
  display: block;
  font-size: clamp(14px,1.11vw,16px);
  color: #399d26;
  text-align: center;
  font-family: "Montserrat", sans-serif;
}
.menu__trigger {
  display: none;
}
.header__menu-ex-link {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1em 0.5em;
}
.header__menu-ex-link .btn {
  min-width: auto;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  font-size: 14px;
  line-height: 1.3;
}
.header__menu-ex-link .btn.btn_tokyo {
  background-color: #0b78b0;
  border-color: #0b78b0;
}
.header__menu-ex-link .btn.btn_tokyo:hover {
  background-color: #fcfbf3;
  color: #0b78b0;
  transition: all 0.2s ease-in-out;
}
.header__menu-ex-link .btn.btn_sapporo {
  background-color: #14aa97;
  border-color: #14aa97;
}
.header__menu-ex-link .btn.btn_sapporo:hover {
  background-color: #fcfbf3;
  color: #14aa97;
  transition: all 0.2s ease-in-out;
}
/* footer */
.footer {
  background: url(../images/section_bg_footer.svg) repeat center center / 32px;
}
.footer__inner {
  width: min(1080px,92%);
  margin-inline: auto;
  padding-bottom: 5.75em;
  position: relative;
}
.footer__inner::after {
  content: '';
  width: min(303px,26vw);
  height: min(283px,23vw);
  background: url(../images/common/footer_tree.png) no-repeat center center / contain;
  position: absolute;
  top: -4vw;
  right: 0;
  z-index: 5;
}
.footer__main {
  width: min(60vw,640px);
}
.footer__top {
  display: grid;
  grid-template-columns: repeat(2, auto);
  align-items: center;
  justify-content: flex-start;
  gap: 1em 2em;
}
.footer__ttl {
  display: block;
  font-size: clamp(18px,1.67vw,24px);
  font-weight: 700;
}
.footer__btn-list {
  display: grid;
  grid-template-columns: repeat(2,auto);
  justify-content: flex-start;
  gap: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2em;
}
.footer__btn-link {
  display: block;
  box-shadow: 2px 2px 8px 0 rgba(0,0,0,0.1);
}
@media (hover: hover) {
  .footer__btn-link:hover {
    opacity: 0.7;
    transition: all 0.2s ease-in;
  }
}
.footer__btn-link img {
  display: block;
}
.footer__link-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin-top: 2em;
}
.footer__link {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px,1.39vw,20px);
  font-weight: 600;
  padding-right: 1.5em;
  background: url(../images/common/arrow_s.svg) no-repeat right center / 1.2em;
}
@media (hover: hover) {
  .footer__link:hover {
    background: url(../images/common/arrow_s_hover.svg) no-repeat right center / 1.2em;
    transition: all 0.2s ease-in-out;
  }
}
.footer__copy {
  background: #b6d368;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 4%;
  padding-right: 4%;
}
.footer__copy-txt {
  text-align: center;
  color: #5a4f40;
}
.pagetop {
  width: min(5em,10vw);
  height: min(5em,10vw);
  position: absolute;
  top: -11vw;
  right: max(4%, calc((100vw - 1200px) / 2));
  z-index: 15;
}

/* top */
.section__sepa01,
.section__sepa02,
.section__sepa03 {
  position: relative;
  z-index: 0;
}
.section__sepa02::before,
.section__sepa02::after,
.section__sepa03::before,
.section__sepa03::after {
  content: '';
  display: block;
  width: 100%;
  height: 8vw;
  position: absolute;
  top: -8vw;
  left: 0;
}
.section__sepa03::before,
.section__sepa03::after {
  top: -10vw;
}
.section__sepa02::before,
.section__sepa03::before {
  z-index: 1;
}
.section__sepa02::after,
.section__sepa03::after {
  z-index: 2;
}
.section__sepa02::before {
  background: url(../images/common/section_sepa_bg_02.svg) repeat center center / cover;
}
.section__sepa02::after {
  background: url(../images/common/section_sepa_02.svg) repeat center center / cover;
}
.section__sepa03::before {
  background: url(../images/section_sepa_bg_footer.svg) repeat center center / cover;
  height: 10vw;
}
.section__sepa03::after {
  background: url(../images/section_sepa_footer.svg) repeat center center / cover;
  height: 10vw;
}
.section__sepa01 {
  background: url(../images/common/section_bg_01.svg) repeat center center / 32px;
  padding-top: 7em;
  margin-top: -3em;
}
.section__sepa02 {
  background: url(../images/common/section_bg_02.svg) repeat center center / 32px;
}
.mv {
  position: relative;
  z-index: 5;
}
.mv__img {
  -webkit-clip-path: ellipse(150% 150% at 52% -52%);
          clip-path: ellipse(150% 150% at 52% -52%);
}
.box__wrap {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 5em;
  margin-inline: auto;
  background-color: #ffffff;
  border: 1px solid #399d26;
  padding-top: 2.25em;
  padding-bottom: 3em;
  padding-left: 6%;
  padding-right: 6%;
  -webkit-clip-path: polygon(100% 0%, 100% calc(100% - 3em), calc(100% - 3em) 100%, 0 100%, 0 0);
          clip-path: polygon(100% 0%, 100% calc(100% - 3em), calc(100% - 3em) 100%, 0 100%, 0 0);
  position: relative;
}
.box__wrap::after {
  content: '';
  display: inline-block;
  width: 3em;
  height: 3em;
  background-color: #399d26;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  position: absolute;
  bottom: -1px;
  right: -1px;
}
.box__ttl {
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  color: #399d26;
}
.box__ttl-en {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  font-size: clamp(16px,1.39vw,20px);
  line-height: 1.2;
  font-family: "Montserrat", sans-serif;
  background-image: linear-gradient(to bottom, transparent, transparent 0.6em, #cce38e 0.6em, #cce38e 1em);
  padding-left: 0.2em;
  padding-right: 0.2em;
  margin-bottom: 0.4em;
}
.box__ttl-txt {
  font-size: clamp(20px,1.94vw,28px);
  padding-bottom: 0.8em;
  margin-bottom: 0.6em;
  position: relative;
}
.box__ttl-txt::after {
  content: '';
  display: inline-block;
  height: 12px;
  width: 100%;
  background: radial-gradient(circle farthest-side, #399d26, #399d26 30%, transparent 30%, transparent);
  background-size: 12px;
  position: absolute;
  bottom: 0;
  left: 0;
}
.box__ttl-txtS {
  font-size: 0.8em;
}
.box__txt {
  font-size: clamp(16px,1.25vw,18px);
  font-weight: 700;
  line-height: 2;
  text-align: center;
}
.news {
  background-color: #fcfbf3;
  padding-bottom: 22vw;
}
.news__inner {
  position: relative;
}
.news__list {
  margin-bottom: 2em;
}
.news__link {
  display: grid;
  grid-template-columns: 7em auto 1fr;
  align-items: flex-start;
  -moz-column-gap: 3%;
       column-gap: 3%;
  padding-top: 2.2em;
  padding-bottom: 2.2em;
  padding-right: 3em;
  font-size: clamp(16px,1.25vw,18px);
  background: url(../images/common/arrow.svg) no-repeat right 2% center / 1.8em;
  position: relative;
}
@media (hover: hover) {
  .news__link:hover {
    background: url(../images/common/arrow_hover.svg) no-repeat right 2% center / 1.8em;
    color: #399d26;
    transition: all 0.2s ease-in-out;
  }
  .news__link:hover .news__ttl {
    text-decoration: underline;
  }
}
.news__link::before,
.news__item:last-child .news__link::after {
  content: '';
  display: inline-block;
  height: 8px;
  width: 100%;
  background: radial-gradient(circle farthest-side, #399d26, #399d26 30%, transparent 30%, transparent);
  background-size: 8px;
  position: absolute;
  top: -4px;
  left: 0;
}
.news__item:last-child .news__link::after {
  top: auto;
  bottom: -4px;
}
.news__cat {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  background-color: #399d26;
  border-radius: 0.4em;
  font-size: clamp(14px,1.11vw,16px);
  color: #fff;
  font-weight: 700;
}
.news__cat-tokyo {
  background-color: #0b78b0;
}
.news__cat-sapporo {
  background-color: #14aa97;
}
.news__date {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  color: #399d26;
}
.activity__contain {
  position: relative;
  margin-top: -3.4em;
  padding-top: 4em;
}
.activity__contain .cont__ttl {
  margin-bottom: 0;
}
.activity__list-wrap {
  padding-bottom: 13.89vw;
}
.activity__list {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 2.5em 6.5vw;
  padding-top: 2.5em;
  margin-bottom: 1.5em;
}
.activity__item:nth-child(odd) {
  margin-top: 3em;
}
.activity__link {
  display: block;
}
@media (hover: hover) {
  .activity__link:hover .activity__img img {
    opacity: 0.7;
    transition: all 0.2s ease-in;
  }
  .activity__link:hover .activity__detail {
    opacity: 0.7;
    transition: all 0.2s ease-in;
  }
  .activity__link:hover .txt__link {
    background: url(../images/common/arrow_hover.svg) no-repeat right center / 1.5em;
    transition: all 0.2s ease-in;
  }
}
.activity__ttl {
  font-size: clamp(18px,1.67vw,24px);
  font-weight: 700;
  text-align: center;
  color: #399d26;
  margin-bottom: 0.5em;
}
.activity__txt {
  font-size: 16px;
  line-height: 1.8;
}
.activity__img {
  aspect-ratio: 91 / 47;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 1.2em;
  position: relative;
  z-index: 0;
}
.activity__img::after {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/img_shadow.png) no-repeat center center / contain;
  position: absolute;
  top: 0.5em;
  left: 0.5em;
  z-index: -1;
}
.activity__img img {
  -webkit-mask-image: url(../images/common/mask.svg);
  mask-image: url(../images/common/mask.svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat; 
  -webkit-mask-size: contain; 
          mask-size: contain;
  aspect-ratio: 91 / 47;
  -o-object-fit: cover;
     object-fit: cover;
}

/* leaf */
.leaf01::after {
  content: '';
  display: block;
  width: min(278px,19.31vw);
  height: min(123px,8.54vw);
  background: url(../images/common/mv_leaf.png) no-repeat center center / contain;
  position: absolute;
  bottom: -2em;
  right: 1em;
  z-index: 10;
  -webkit-animation: fallRight linear both;
          animation: fallRight linear both;
  animation-timeline: scroll();
  animation-range: entry 0% cover 50%;
  transform-origin: top right;
}
@-webkit-keyframes fallRight {
  from {
    transform: translateY(0) rotate(0) scale(1);
  }
  to {
    transform: translateY(4em) rotate(12deg) scale(1.2);
  }
}
@keyframes fallRight {
  from {
    transform: translateY(0) rotate(0) scale(1);
  }
  to {
    transform: translateY(4em) rotate(12deg) scale(1.2);
  }
}
.leaf02::after {
  content: '';
  display: block;
  width: min(242px,16.81vw);
  height: min(272px,18.89vw);
  background: url(../images/common/leaf_left01.png) no-repeat center center / contain;
  position: absolute;
  top: -27%;
  left: -2%;
  z-index: 10;
  -webkit-animation: fallLeft linear both;
          animation: fallLeft linear both;
  animation-timeline: scroll();
  animation-range: entry 0% entry 100%;
  transform-origin: bottom left;
}
@-webkit-keyframes fallLeft {
  from {
    transform: translateX(0) rotate(0) scale(1);
  }
  to {
    transform: translateX(5%) rotate(0) scale(1.2);
  }
}
@keyframes fallLeft {
  from {
    transform: translateX(0) rotate(0) scale(1);
  }
  to {
    transform: translateX(5%) rotate(0) scale(1.2);
  }
}
.leaf03::after {
  content: '';
  display: block;
  width: min(178px,12.36vw);
  height: min(187px,12.99vw);
  background: url(../images/common/leaf_right01.png) no-repeat center center / contain;
  position: absolute;
  top: -52%;
  right: -2%;
  z-index: 10;
  -webkit-animation: fallBottom linear both;
          animation: fallBottom linear both;
  animation-timeline: scroll();
  animation-range: entry 0% entry 100%;
  transform-origin: top right;
}
@-webkit-keyframes fallBottom {
  from {
    transform: translateX(0) rotate(0) scale(0.5);
  }
  to {
    transform: translateX(5%) rotate(0) scale(1);
  }
}
@keyframes fallBottom {
  from {
    transform: translateX(0) rotate(0) scale(0.5);
  }
  to {
    transform: translateX(5%) rotate(0) scale(1);
  }
}
.leaf_side {
  display: block;
  width: min(178px,12.36vw);
  height: min(187px,12.99vw);
  background: url(../images/common/leaf_right01.png) no-repeat center center / contain;
  position: absolute;
  bottom: -24%;
  right: -40%;
  z-index: 10;
}
.menu__tree:after {
  content: '';
  width: min(180px, 45vw);
  height: min(180px, 45vw);
  background: url(../images/common/footer_tree.png) no-repeat center center / contain;
  position: absolute;
  bottom: 0;
  left: 16vw;
}
.menu__leaf:after {
  content: '';
  width: min(178px, 21.36vw);
  height: min(187px, 20vw);
  background: url(../images/common/leaf_right01.png) no-repeat center center / contain;
  position: absolute;
  top: 0;
  right: 20vw;
  -webkit-animation: moveLeaf 5s ease-in-out infinite;
          animation: moveLeaf 5s ease-in-out infinite;
}
@-webkit-keyframes moveLeaf {
  0% , 100%{
		transform: translateX(10px) translateY(0);
	}
	50%{
			transform: translateX(-20px) translateY(20px) rotate(15deg);
	}
}
@keyframes moveLeaf {
  0% , 100%{
		transform: translateX(10px) translateY(0);
	}
	50%{
			transform: translateX(-20px) translateY(20px) rotate(15deg);
	}
}

/* page common */
.post__box {
  display: grid;
  grid-template-columns: 1fr auto;
  -moz-column-gap: 5%;
       column-gap: 5%;
  justify-content: space-between;
  align-items: flex-start;
  background-color: #fcfbf3;
}
.post__box-sticky {
  position: -webkit-sticky;
  position: sticky;
}
.post__txt {
  display: block;
  margin-bottom: 0.5em;
}
.post__txtL {
  font-size: 1.2em;
}
.post__txt-bold {
  font-weight: 700;
}
.post__ttl {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 0.3em;
       column-gap: 0.3em;
  align-items: center;
  margin-top: 1.8em;
  margin-bottom: 0.5em;
  font-size: clamp(20px,1.67vw,24px);
  font-weight: 700;
  color: #399d26;
}
.post__ttl::before {
  content: '';
  display: block;
  width: 3px;
  height: 1.2em;
  background-color: #399d26;
  margin-top: 0.1em;
}
.post__link {
  color: #399d26;
  text-decoration: underline;
}
@media (hover: hover) {
  .post__link:hover {
    opacity: 0.6;
    transition: all 0.2s ease-in;
  }
}
.post__img {
  display: block;
  padding: 0.5em 0;
}
.archive {
  padding-top: 1.5em;
  padding-bottom: 1.5em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  background-color: #f8f6e9;
  border-radius: 2em;
  box-shadow: 5px 5px 8px 0 rgba(30, 46, 39, 0.08);
  min-width: 13.6em;
  max-width: 15em;
}
.archive__ttl {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 1em;
  margin-inline: auto;
  font-size: clamp(16px,1.25vw,18px);
  font-weight: 700;
  text-align: center;
  color: #399d26;
  letter-spacing: 0.01em;
  border-bottom: 1px solid #399d26;
}
.archive__list {
  margin-inline: auto;
}
.archive__list li {
  border-bottom: 1px dotted #d9cfc0;
  padding-bottom: 0.2em;
}
.news__inner .archive__list li {
  border-bottom: none;
  padding-bottom: 0;
}
.archive__list li:not(:last-child) {
  margin-bottom: 0.4em;
}
.archive__list li a {
  font-size: clamp(18px,1.39vw,20px);
  font-family: "Montserrat", sans-serif;
  font-weight: 700;
  color: #399d26;
  display: block;
  text-align: center;
}
@media (hover: hover) {
  .archive__list li a:hover {
    opacity: 0.6;
    transition: all 0.2s ease-in;
  }
}
.post__cta {
  position: -webkit-sticky;
  position: sticky;
  top: 2em;
}
.post__cta-link {
  display: block;
  margin-top: 0.5em;
  margin-bottom: 2.25em;
}
@media (hover: hover) {
  .post__cta-link:hover {
    opacity: 0.6;
    transition: all 0.2s ease-in;
  }
}
.post__cta-img {
  display: block;
  width: min(7.5em,100%);
  margin-inline: auto;
  margin-bottom: 0.5em;
}
.post__cta-txt {
  color: #0099ff;
  text-decoration: underline;
}
.post__cta-note {
  padding-top: 1em;
  color: #399d26;
  text-indent: -1em;
  padding-left: 1em;
}

/* page */
.common__page {
  background-color: #fcfbf3;
  padding-bottom: max(16vw,10em);
  min-height: 50vh;
}
.common__grid {
  display: grid;
  grid-template-columns: auto 1fr;
  -moz-column-gap: 5%;
  column-gap: 5%;
  justify-content: space-between;
  align-items: flex-start;
}

/* 404 */
.page__none {
  padding-top: 6em;
}
/* news */
.page__news {
  padding-bottom: 19.44vw;
}

/* activity */
.activity__trans-list {
  display: grid;
  row-gap: 0.5em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 1em;
  margin-bottom: 2em;
}
.activity__trans-link {
  display: block;
  font-size: clamp(16px,1.25vw,18px);
  font-weight: 600;
  padding-left: 1.5em;
  background: url(../images/common/arrow_s.svg) no-repeat left center / 1.2em;
}
@media (hover: hover) {
  .activity__trans-link:hover {
    background: url(../images/common/arrow_s_hover.svg) no-repeat left center / 1.2em;
    transition: all 0.2s ease-in-out;
  }
}
/* #tokyo */
#tokyo a.btn {
  background-color: #0b78b0;
  border-color: #0b78b0;
}
#tokyo .btn__b {
  border-color: #0b78b0;
  color: #0b78b0;
}
#tokyo .btn__b::after {
  background: url(../images/tokyo/arrow_cta.svg) no-repeat center center / contain;
}
#tokyo .btn__pdf::after {
  content: "";
  display: block;
  width: 2em;
  height: 2em;
  background: url(../images/tokyo/icon_pdf.svg) no-repeat center center / contain;
}
#tokyo .btn__external {
  border-color: #5a4f40;
  background-color: #5a4f40;
}
@media (hover: hover) {
  #tokyo .btn:hover {
    background-color: #fcfbf3;
    color: #0b78b0;
    transition: all 0.2s ease-in-out;
  }
  #tokyo .btn__contact:hover::before {
    background: url(../images/tokyo/icon_mail_hover.svg) no-repeat center center / contain;
    transition: all 0.2s ease-in-out;
  }
  #tokyo .btn__external:hover {
    color: #5a4f40;
  }
  #tokyo .btn__cta:hover {
    background-color: #0b78b0;
    color: #ffffff;
    transition: all 0.2s ease-in-out;
  }
  #tokyo .btn__cta:hover::before {
    background: url(../images/tokyo/arrow_cta_hover.svg) no-repeat center center / contain;
    transition: all 0.2s ease-in-out;
  }
}
#tokyo .pagenavi .previouspostslink,
#tokyo .pagenavi .nextpostslink {
  background-color: #0b78b0;
  color: #0b78b0;
}
#tokyo .pagenavi .current,
#tokyo .header__lead,
#tokyo .header__menu-en,
#tokyo .breadcrumbs__link,
#tokyo .cont__ttl,
#tokyo .ttl__sub-s,
#tokyo .news__date,
#tokyo .activity__ttl,
#tokyo .archive__ttl,
#tokyo .archive__list li a {
  color: #0b78b0;
}
#tokyo .breadcrumbs__item:has(.breadcrumbs__link)::after,
#tokyo .breadcrumbs__item:not(:last-child):after {
  border-color: #0b78b0;
}
#tokyo .archive__ttl {
  border-color: #0b78b0;
}
#tokyo .footer__link {
  background: url(../images/tokyo/arrow_s.svg) no-repeat right center / 1.2em;
}
@media (hover: hover) {
  #tokyo .footer__link:hover {
    background: url(../images/tokyo/arrow_s_hover.svg) no-repeat right center / 1.2em;
    transition: all 0.2s ease-in-out;
  }
}
#tokyo .mv {
  background-color: #fcfbf3;
  background: url(../images/common/section_bg_01.svg) repeat center center / 32px;
}
#tokyo .activity__list {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 768px) {
  #tokyo .activity__list {
    grid-template-columns: 1fr;
  }
}
#tokyo .leaf02::after {
  top: -21%;
}
#tokyo .news {
  background-color: #fcfbf3;
  background: url(../images/common/section_bg_01.svg) repeat center center / 32px;
  padding-top: 2em;
  padding-bottom: 14vw;
}
#tokyo .news__link {
  background: url(../images/tokyo/arrow.svg) no-repeat right 2% center / 1.8em;
}
@media (hover: hover) {
  #tokyo .news__link:hover {
    background: url(../images/tokyo/arrow_hover.svg) no-repeat right 2% center / 1.8em;
    color: #0b78b0;
    transition: all 0.2s ease-in-out;
  }
}
#tokyo .news__link::before,
#tokyo .news__item:last-child .news__link::after {
  background: radial-gradient(circle farthest-side, #0b78b0, #0b78b0 30%, transparent 30%, transparent);
  background-size: 8px;
}
#tokyo .activity__img::after {
  background: url(../images/tokyo/img_shadow.png) no-repeat center center / contain;
}
#tokyo .cont__ttl.cont__ttl-dotted::after {
  background: radial-gradient(circle farthest-side, #0b78b0, #0b78b0 30%, transparent 30%, transparent);
  background-size: 8px;
}
#tokyo .ttl__sub,
#tokyo .magazine__ttl,
#tokyo .single__cont h2 {
  border-color: #0b78b0;
  color: #0b78b0;
}
#tokyo .activity__post-link {
  background: url(../images/tokyo/arrow_s.svg) no-repeat right center / 1.2em;
}
@media (hover: hover) {
  #tokyo .activity__post-link:hover {
    background: url(../images/tokyo/arrow_s_hover.svg) no-repeat right center / 1.2em;
  }
}
@media screen and (max-width: 768px) {
  #tokyo .activity__post-link {
        border-color: #0b78b0;
    }
}
#tokyo .form input[type="checkbox"]:checked {
  background-color: #0b78b0;
}
#tokyo .form .btn .wpcf7-submit {
  background-color: #0b78b0;
  color: #fff;
}
#tokyo .form .btn input {
  border-color: #0b78b0;
  color: #0b78b0;
}
#tokyo .form .btn li:has(input[type="reset"]):after {
  background: url(../images/tokyo/arrow_cta.svg) no-repeat center center / contain;
}

/* 固定ページ */
/* about 2024yakuin */
.single__cont table,
.yakuin__table {
  border-top: 1px solid #E3E1D5;
}
.single__cont th,
.yakuin__table th {
  font-weight: 700;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 1.5em;
  padding-left: 1.5em;
  border-bottom: 1px solid #E3E1D5;
  line-height: 1.2;
  background-color: #F3F3E8;
}
.single__cont td,
.yakuin__table td {
  padding-top: 1em;
  padding-bottom: 1em;
  padding-right: 1.5em;
  padding-left: 1.5em;
  border-bottom: 1px solid #E3E1D5;
  line-height: 1.2;
  background-color: #F9F9F3;
}

.magazine__list {
  display: grid;
  row-gap: 3em;
  margin-top: 3em;
}
.magazine__item {
  display: grid;
  grid-template-columns: min(20%,200px) 1fr;
  gap: 1em 4%;
  align-items: center;
}
.magazine__img img {
  box-shadow: 4px 4px 6px 0 rgba(0,0,0,0.08);
}
.magazine__ttl {
  margin-bottom: 0.8em;
  padding-bottom: 0.2em;
  border-bottom: 1px solid #399d26;
  font-size: clamp(18px, 1.67vw, 24px);
  font-weight: 700;
  color: #399d26;
}
.magazine__item .btn__pdf {
  margin-top: 1em;
}

.about__posi {
  display: block;
  margin-top: 1.5em;
  text-align: right;
}
.about__btn-area {
  display: grid;
  grid-template-columns: repeat(2,auto);
  justify-content: center;
  gap: 1em 4%;
  margin-top: 3em;
}

.history__list {
  display: grid;
  row-gap: 0.5em;
  margin-top: 1.5em;
  padding-top: 1.5em;
  border-top: 1px solid #d9cfc0;
}
.history__list:last-child {
  border-bottom: 1px solid #d9cfc0;
  padding-bottom: 1.5em;
}
.history__item {
  display: grid;
  grid-template-columns: 4.5em 5.5em 1fr;
}
.history__year,
.history__date {
  font-size: clamp(16px,1.25vw,18px);
  color: #399d26;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
}

.cont__txt {
  padding-top: 0.5em;
  padding-bottom: 1em;
}
.cont__img-wrap {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1em 4%;
  max-width: 600px;
}
.cont__img {
  display: block;
  margin-top: 1em;
  margin-bottom: 1em;
}
.cont__img-wrap .cont__img img {
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

.cont__btn-flex {
  display: flex;
  flex-wrap: wrap;
  align-content: center;
  justify-content: center;
  gap: 1.5em 4%;
  margin-top: 2em;
}
.cont__btn-column {
  display: grid;
  gap: 1.5em 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2em;
}
.cont__btn-column li {
  width: 100%;
}
.cont__btn-column li .btn__b {
  width: 100%;
  justify-content: space-between;
}
.cont__btn {
  margin-top: 1em;
  margin-bottom: 2em;
}

.cont__movie {
  width: 100%;
  margin-top: 1em;
  margin-bottom: 3em;
  aspect-ratio: 16 / 9;
}
.cont__movie iframe {
  width: 100%;
  height: 100%;
}

.activity__post-list {
  display: grid;
  gap: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 2em;
}
.activity__post-link {
  display: block;
  padding-right: 1.5em;
  background: url(../images/common/arrow_s.svg) no-repeat right center / 1.2em;
}
@media (any-hover: hover) {
  .activity__post-link:hover {
    background: url(../images/common/arrow_s_hover.svg) no-repeat right center / 1.2em;
    transition: all 0.2s ease-in-out;
  }
}
.activity__post-movie {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em 1em;
}

.wrapper_bg {
  background-color: #fcfbf3;
  padding-bottom: max(16vw, 10em);
}
.wrapper {
  width: min(92%, 1200px);
  margin-inline: auto;
}
.sidemenu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1em 4%;
}
.sidemenu_top,
.sidemenu_bot {
  display: none;
}
.sidemenu a {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8em;
  column-gap: 0.8em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 13.5em;
  min-height: 3em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1.4em;
  padding-right: 1.4em;
  border-radius: 3em;
  background-color: #fff;
  border: 1px solid #399d26;
  color: #399d26;
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 18px);
}
.sidemenu a::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../images/common/arrow_cta.svg) no-repeat center center / contain;
}

/* シングルページ */
/* /activity/xxx/ */
.fig_r,
.fig_l {
  width: 260px !important;
  padding: 20px;
  border-radius: 2em;
  float: right;
}
.fig_r:first-child {
  box-shadow: 5px 5px 10px 0 rgba(0,0,0,0.08);
}
.fig_r a[href*=pdf] img {
  width: 120px;
  box-shadow: 2px 2px 4px 0 rgba(0,0,0,0.08);
}
.fig_r p {
  text-align: left;
}
.fig_r .mt-image-none {
  width: 100%;
  box-shadow: none;
}
@media (any-hover: hover) {
  .fig_r a img:hover {
    opacity: 0.6;
    transition: all 0.2s ease-in;
  }
}
.single__cont h2 {
  margin-top: 2em;
  margin-bottom: 1em;
  padding-left: 0.4em;
  border-left: 4px solid #399d26;
  font-size: 20px;
  font-weight: 700;
  color: #399d26;
}
.single__cont p {
  display: block;
  margin-bottom: 1em;
}
.single__cont strong {
  font-weight: 700;
}
.single__cont a {
  color: #0099ff;
  text-decoration: underline;
}
@media (any-hover: hover) {
  .single__cont a:hover {
    text-decoration: none;
  }
}
.single__cont img {
  display: block;
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 1em;
}
.single__cont img[width="100"] {
  width: 100px;
  height: 100px;
}
.single__cont iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
}

/* 絵画コンクール */
blockquote {
  max-width: 720px;
  margin-inline: auto;
  margin-bottom: 2em;
  padding-top: 1em;
  padding-bottom: 1em;
  padding-left: 1.5em;
  padding-right: 1.5em;
  border: 1px solid #399d26;
  font-style: normal;
  text-decoration: none;
  background-color: #fff;
}
blockquote h4 {
  font-size: clamp(16px,1.39vw,20px);
  font-weight: 700;
}
blockquote dl dt {
  font-weight: 700;
}
.concours_gallery h3 {
  margin-bottom: 0.5em;
  font-size: clamp(16px,1.25vw,18px);
  font-weight: 700;
  text-align: center;
  color: #399d26;
}
.concours_gallery .colum2 {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5em 4%;
}
.concours_gallery .colum3 {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 1.5em 4%;
}
.concours_gallery > p img {
  display: block;
  width: min(70%, 320px);
}
.concours_gallery img {
  display: block;
  margin-inline: auto;
}
.concours_gallery .colum2 img {
  width: min(360px,70%);
}
.concours_gallery .colum3 img {
  width: min(360px,90%);
}
.concours_gallery .con_in p {
  text-align: center;
}

/* form */
.form {
  padding-bottom: 3em;
}
.form dl {
  display: grid;
  grid-template-columns: 12em 1fr;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0 1em;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
.form dt {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
  min-height: 2.6em;
}
.form .must {
  padding-top: 0.2em;
  padding-bottom: 0.2em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  border-radius: 0.3em;
  background-color: #c00;
  font-size: 14px;
  color: #fff;
}
.form input[type="text"],
.form input[type="email"],
.form textarea {
  display: block;
  width: 100%;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 0.5em;
  padding-right: 0.5em;
  background-color: #fff;
  border: solid 1px #d9cfc0;
  border-radius: 0.3em;
}
.form input[type="checkbox"] {
  display: block;
  width: 2em;
  height: 2em;
  background-color: #fff;
  border: solid 1px #d9cfc0;
  border-radius: 0.3em;
  cursor: pointer;
  position: relative;
}
.form input[type="checkbox"]:checked {
  background-color: #399d26;
}
.form input[type="checkbox"]:checked::after {
  content: '';
  display: block;
  width: 1.2em;
  height: 0.8em;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  position: absolute;
  top: 0.3em;
  left: 0.4em;
  transform: rotate(-45deg);
}
.form .wpcf7-exclusive-checkbox .wpcf7-list-item {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5em;
}
.form .btn {
  display: grid;
  grid-template-columns: repeat(2,auto);
  align-items: center;
  justify-content: center;
  gap: 1em 4%;
}
.form .btn input {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.8em;
  column-gap: 0.8em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 13.5em;
  min-height: 3em;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  padding-left: 1.4em;
  padding-right: 1.4em;
  border-radius: 3em;
  background-color: #fff;
  border: 1px solid #399d26;
  color: #399d26;
  font-weight: 700;
  font-size: clamp(16px, 1.25vw, 18px);
  cursor: pointer;
}
.form .btn li {
  position: relative;
}
.form .btn li::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../images/common/arrow_cta.svg) no-repeat center center / contain;
  position: absolute;
  top: 50%;
  right: 2em;
  transform: translateY(-50%);
}
.form .btn .wpcf7-submit {
  background-color: #399d26;
  color: #fff;
}
.form .btn li:has(.wpcf7-submit)::after {
  background: url(../images/common/arrow_cta_hover.svg) no-repeat center center / contain;
}
.screen-reader-response {
  display: none;
}
.form .wpcf7-not-valid-tip {
  font-size: 14px;
  color: #c00;
}
.sitemap__list ul, .sitemap__list ol {
    margin-left: 1.5em;
}
.sitemap__list li {
  margin-top: 0.5em;
}
.kaiga__intro-box {
  display: grid;
  grid-template-columns: 3em 1fr;
  gap: 0.5em 0;
  margin-top: 1em;
}
.single__cont .kaiga__title {
  margin-top: 4em;
  margin-bottom: 1.5em;
}
.single__cont .kaiga__intro-text {
  line-height: 1.8;
}


@media screen and (max-width: 1440px) {
  .header__lead::before {
    width: 6.2vw;
    bottom: -3.78vw;
  }
}
@media screen and (max-width: 1024px) {
  .news__inner::after {
    bottom: -2vw;
  }
  .header__inner {
    grid-template-columns: repeat(2,auto);
    padding-top: 0.5em;
    padding-bottom: 0.5em;
  }
  .header__menu-wrap {
    display: none;
    width: 100vw;
    height: 100svh;
    background: #fcfbf3;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
  }
  .header__menu {
    grid-template-columns: 1fr;
    align-content: flex-start;
    row-gap: 2em;
    padding-top: 6em;
    position: relative;
  }
  .header__menu-list {
    flex-direction: column;
    row-gap: 1.5em;
  }
  .header__menu .btn__contact {
    width: min(200px,100%);
  }
  .header__menu-ex-link {
    grid-template-columns: 1fr;
  }
  .menu__illust {
    position: relative;
    display: block;
    width: 100%;
    height: 24vh;
  }
  .menu__trigger {
    display: flex;
    align-items: center;
    justify-content: space-around;
    width: 3em;
    height: 3em;
    padding-left: 0.4em;
    padding-right: 0.4em;
    background: #399d26;
    border-radius: 50%;
    cursor: pointer;
  }
  .menu__trigger.active {
    position: fixed;
    top: 1em;
    right: 4%;
    z-index: 15;
  }
  .menu__trigger.show {
    position: fixed;
    top: 1em;
    right: 4%;
    z-index: 15;
    -webkit-animation: show 0.7s ease-in-out forwards;
            animation: show 0.7s ease-in-out forwards;
  }
  @-webkit-keyframes show {
    0% {
      opacity: 0;
      transform: translateY(-1em);
    }
    50% {
      transform: translateY(0);
    }
    100% {
      opacity: 1;
    }
  }
  @keyframes show {
    0% {
      opacity: 0;
      transform: translateY(-1em);
    }
    50% {
      transform: translateY(0);
    }
    100% {
      opacity: 1;
    }
  }
  .menu__trigger-dotted {
    display: block;
    width: 0.3em;
    height: 0.3em;
    background: #ffffff;
    border-radius: 50%;
  }
  .menu__trigger.active .menu__trigger-dotted {
    width: 1.5em;
    height: 2px;
    position: absolute;
    transition: transform 0.2s ease-in-out;
  }
  .menu__trigger.active .menu__trigger-dotted:nth-child(1) {
    transform: rotate(30deg);
  }
  .menu__trigger.active .menu__trigger-dotted:nth-child(2) {
    opacity: 0;
  }
  .menu__trigger.active .menu__trigger-dotted:nth-child(3) {
    transform: rotate(-30deg);
  }
  body.fixed {
    height: 100%;
    overflow: hidden;
  }
}
@media screen and (max-width: 768px) {
  .btn {
    padding-left: 1em;
    padding-right: 1em;
  }
  .breadcrumbs {
    padding-bottom: 1.5em;
    padding-top: 1em;
  }
  .common__grid {
    grid-template-columns: 1fr;
    row-gap: 4em;
  }
  .common__grid .archive {
    grid-row: 2;
  }
  .header__menu-ttl {
    display: block;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #399d26;
  }
  .footer__inner::after {
    top: -15vw;
  }
  .footer__main {
    width: 100%;
    padding-top: 4em;
  }
  .footer__btn-list .btn {
    width: 100%;
  }
  .footer__link-list {
    justify-content: flex-start;
    -moz-column-gap: 1.5em;
         column-gap: 1.5em;
  }
  .footer__copy-txt {
    font-size: 12px;
  }
  .pagetop {
    width: 3em;
    height: 3em;
    top: -14vw;
  }
  .pagenavi .wp-pagenavi {
    justify-content: center;
    gap: 0 8%;
  }
  .header__lead::before {
    width: 3em;
    height: 3.2em;
    left: -2em;
  }
  .leaf02::after {
    width: 5em;
    height: 5.7em;
    top: -8em;
  }
  .leaf03::after {
    width: 5em;
    height: 5.2em;
    top: -22vw;
  }
  .leaf_side {
    width: 5.5em;
    height: 5.8em;
    bottom: -6%;
    right: -28%;
  }
  .intro {
    padding-top: 14vw;
    padding-bottom: 16vw;
  }
  .box__wrap {
    padding-top: 1.5em;
    padding-bottom: 2em;
    padding-left: 4%;
    padding-right: 4%;
    -webkit-clip-path: polygon(100% 0%, 100% calc(100% - 1.5em), calc(100% - 1.5em) 100%, 0 100%, 0 0);
            clip-path: polygon(100% 0%, 100% calc(100% - 1.5em), calc(100% - 1.5em) 100%, 0 100%, 0 0);
  }
  .box__wrap::after {
    width: 1.5em;
    height: 1.5em;
  }
  .news {
    padding-bottom: 18vw;
  }
  .news__inner::after {
    left: -6%;
  }
  .news__link {
    grid-template-columns: 6em 1fr;
    row-gap: 0.5em;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-right: 3.5em;
  }
  .news__ttl {
    grid-column: 1/3;
  }
  .news__date {
    display: flex;
    align-items: center;
    height: 100%;
  }
  .activity__contain {
    margin-top: -2.2em;
  }
  .activity__list-wrap {
    padding-bottom: 22vw;
  }
  .activity__list {
    grid-template-columns: 1fr;
  }
  .activity__item:nth-child(odd) {
    margin-top: 0;
    margin-left: 20%;
  }
  .activity__item:nth-child(even) {
    margin-right: 20%;
  }
  .activity__img::after {
    top: 0.2em;
    left: 0.2em;
  }
  .post__box {
    grid-template-columns: 1fr;
    row-gap: 4em;
  }
  .archive {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    padding-left: 2em;
    padding-right: 2em;
  }
  .archive .leaf_side {
    display: none;
  }
  .fig_r {
    width: 50% !important;
  }
  .about__btn-area {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .yakuin__table-wrap {
    overflow-x: scroll;
  }
  .yakuin__table {
    width: 760px;
  }
  .yakuin__table th,
  .yakuin__table td {
    padding-top: 0.5em;
    padding-bottom: 0.5em;
    padding-right: 1em;
    padding-left: 1em;
    font-size: 14px;
  }
  .activity__post-link {
    padding-bottom: 1em;
    border-bottom: 1px solid #399d26;
  }
  .concours_gallery .colum3 {
    grid-template-columns: repeat(2, 1fr);
  }
  .concours_gallery .colum2 img,
  .concours_gallery .colum3 img {
    width: 80%;
  }
  .concours_gallery .con_in p {
    font-size: 14px;
  }
  .form dl {
    grid-template-columns: 1fr;
  }
  .form .btn {
    grid-template-columns: 1fr;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
  #tokyo .menu__trigger {
    background-color: #0b78b0;
  }
  #tokyo .header__menu-ttl {
    color: #0b78b0;
  }
}
@media screen and (max-width: 440px) {
  .header__lead::before {
    width: 16vw;
    height: 18vw;
    bottom: -7.5vw;
    left: -2.2em;
  }
  .footer__main {
    padding-top: 2em;
    margin-inline: auto;
  }
  .footer__top {
    grid-template-columns: 1fr;
    justify-items: flex-start;
  }
  .footer__ttl {
    width: 100%;
    text-align: center;
  }
  .footer__top .btn {
    width: 100%;
    margin-left: 0;
  }
  .footer__btn-list {
    grid-template-columns: 1fr;
    margin-top: 3em;
    margin-inline: auto;
  }
  .footer__link-list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-top: 4em;
    flex-direction: column;
    row-gap: 1em;
    align-items: flex-start;
  }
  .footer__inner::after {
    width: 40vw;
    height: 38vw;
    top: auto;
    bottom: 6.5em;
  }
  .leaf01::after {
    width: 30vw;
    height: 14vw;
  }
  .leaf02::after {
    left: -7%;
  }
  .menu__tree:after {
    left: 10vw;
  }
  .menu__leaf:after {
    right: 12vw;
  }
  .activity__contain::after {
    width: 20vw;
    height: 19.5vw;
    bottom: 1em;
  }
  .magazine__item {
    grid-template-columns: 1fr;
  }
  .magazine__item .btn__pdf {
    margin-inline: auto;
  }
  .magazine__img {
    grid-row: 2;
    width: min(200px,80%);
    margin-inline: auto;
  }
}