@charset "UTF-8";

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */

/* Hide scroll bar */

html.remodal-is-locked {
  overflow: hidden;

  touch-action: none;
}

/* Anti FOUC */

.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */

.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;

  display: none;
}

/* Necessary styles of the wrapper */

.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;

  display: none;
  overflow: auto;

  text-align: center;

  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;

  height: 100%;
  margin-left: -0.05em;

  content: "";
}

/* Fix iPad, iPhone glitches */

.remodal-overlay,
.remodal-wrapper {
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */

.remodal {
  position: relative;

  outline: none;

  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */

/* Default theme styles for the background */

.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  filter: blur(3px);
}

/* Default theme styles of the overlay */

.remodal-overlay {
  background: rgba(43, 46, 56, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */

.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */

.remodal {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;

  transform: translate3d(0, 0, 0);

  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */

.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */

.remodal-close {
  position: absolute;
  top: 0;
  left: 0;

  display: block;
  overflow: visible;

  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;

  cursor: pointer;
  transition: color 0.2s;
  text-decoration: none;

  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;

  position: absolute;
  top: 0;
  left: 0;

  display: block;

  width: 35px;

  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */

.remodal-confirm,
.remodal-cancel {
  font: inherit;

  display: inline-block;
  overflow: visible;

  min-width: 110px;
  margin: 0;
  padding: 12px 0;

  cursor: pointer;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;

  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */

.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;

  border: 0;
}

/* Keyframes
   ========================================================================== */

@keyframes remodal-opening-keyframes {
  from {
    transform: scale(1.05);

    opacity: 0;
  }
  to {
    transform: none;

    opacity: 1;

    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    transform: scale(1);

    opacity: 1;
  }
  to {
    transform: scale(0.95);

    opacity: 0;

    filter: blur(0);
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */

.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}
/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
base
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
:root {
  --accent-color-1: #fdfd00;
  --accent-color-2: #25a200;
  --white-color: #ffffff;
  --text-color: #1e1e1e;
}

/* html {
  font-size: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
} */

#forestry {
  line-height: 1.75;
  word-wrap: break-word;
  word-break: break-all;
  font-display: auto;
  letter-spacing: 0.05rem;
  color: var(--text-color);
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

#forestry.l-container {
  overflow-x: hidden;
}

#forestry img {
  /* width: 100%; */
  /* height: auto; */
}
iframe {
  border: none;
}
.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}
.youtube iframe {
  width: 100%;
  height: 100%;
}
video {
  width: 100%;
  height: auto;
  display: block;
}

#forestry .pc-only {
  display: block;
}

#forestry .sp-only {
  display: none;
}

#forestry .marker {
  background: linear-gradient(transparent 60%, var(--accent-color-1) 40%);
}

#forestry .f-Mont {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

#forestry .banner {
  position: fixed;
  z-index: 999;
  right: 0;
  bottom: max(10%, 100px);

  img {
    width: clamp(124px, 10.63vw, 204px);
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
header
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
/* PC　ーーーーーーーーーーーーーーーーーーー */
.l-header__pcWrap {
  height: 100px;
  background: var(--white-color);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;
  box-shadow: 0px 0px 10px -3px rgba(0, 0, 0, 0.5);
}

.l-header__pcInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 clamp(24px, 3.33vw, 48px);
}

.l-header__pcInner-nav-nav {
  display: flex;
  align-items: center;

  & .listitem {
    font-size: clamp(13px, 1.11vw, 16px);
    letter-spacing: 0.15rem;

    &:not(:first-child) {
      margin-left: clamp(24px, 3.33vw, 48px);
    }

    &:not(:last-child) {
      a::after {
        content: "▼";
        display: inline-block;
        padding-left: 10px;
      }
    }
  }

  & .listitem.header-button {
    a {
      background: var(--accent-color-2);
      color: var(--white-color);
      padding: 0.75rem 0.75rem 0.75rem 1.75rem;
      width: 180px;
      display: inline-block;
      text-align: center;
      border-radius: 99vw;
      position: relative;

      &::before {
        content: "";
        display: block;
        background: url("/images/56113/mail-icon.png") no-repeat center center / contain;
        width: 30px;
        height: 30px;
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
      }
    }
  }
}

.l-header__pcInner-logoWrap img {
  width: clamp(180px, 12.19vw, 234px);
}

/* SP　ーーーーーーーーーーーーーーーーーーー */
.l-header__spWrap {
  display: none;
}

/* ーーーーーーーーーーーーーーーーーーーー
SP - header
ーーーーーーーーーーーーーーーーーーーーー */
.l-header__spWrap {
  position: fixed;
  z-index: 999;
  top: 0;
  right: 0;
  width: 100%;
  background: var(--white-color);
  height: 80px;
  display: none;
  font-weight: 500;
}

.l-header__spWrap-logo {
  width: 180px;
  height: auto;
  position: relative;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  left: 20px;
  z-index: 6;
}

/* hamburgerMenu　ーーーーーーーー */
.p-button {
  position: relative;
  display: inline-block;
  text-decoration: none;
  appearance: none;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 999;
}

.p-hamburger {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  z-index: 999;
  width: 80px;
  height: 100%;
  box-shadow: 0 0 2rem transparent;
  outline: none;
  transition: all 0.3s ease-in-out;
  background: var(--accent-color-2);
}

.p-hamburger__line {
  position: absolute;
  top: -15px;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 40px;
  height: 3px;
  background-color: var(--white-color);
  transition: inherit;
}

.p-hamburger__line::before,
.p-hamburger__line::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  content: "";
  transition: inherit;
}

.p-hamburger__line::before {
  top: -11px;
}

.p-hamburger__line::after {
  top: 11px;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line {
  background-color: transparent;
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before,
.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
  top: 0;
  background-color: var(--white-color);
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::before {
  transform: rotate(45deg);
}

.p-hamburger[aria-expanded="true"] .p-hamburger__line::after {
  transform: rotate(-45deg);
}

.u-visuallyHidden {
  position: absolute;
  white-space: nowrap;
  width: 1px;
  height: 1px;
  overflow: hidden;
  border: 0;
  padding: 0;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  margin: -1px;
}

.l-header__spNavDrawerWrap {
  pointer-events: none;
  opacity: 0;
  height: 100vh;
  background-color: var(--white-color);
  top: 0;
  right: 0;
  width: 100%;
  position: fixed;
  z-index: 5;
  transition: all 0.4s ease-out;
  color: var(--text-color);
  overflow-y: scroll;
  padding-bottom: 3rem;
}

.js-nav {
  pointer-events: auto;
  opacity: 1;
  transition: all 0.4s ease-out;
}

/* drowerMenuInner */
.l-header__spNavDrawer {
  margin-top: 120px;
  width: min(768px, 90%);
  margin-inline: auto;
}

.l-header__spNavDrawer-navWrap {
  & .listitem {
    &:first-child {
      border-top: 1px solid var(--accent-color-2);
    }

    &:not(:last-child) {
      a {
        display: block;
        border-bottom: 1px solid var(--accent-color-2);
        padding: 0.75rem;
        font-weight: 700;
        position: relative;

        &::after {
          content: "";
          width: 10px;
          height: 10px;
          border-top: solid 3px var(--accent-color-2);
          border-right: solid 3px var(--accent-color-2);
          position: absolute;
          top: 50%;
          transform: translateY(-50%) rotate(45deg);
          transition: 0.4s all;
          right: 0.75rem;
        }
      }
    }
  }

  & .listitem.header-button {
    text-align: center;
    margin-top: 32px;

    a {
      background: var(--accent-color-2);
      color: var(--white-color);
      padding: 1rem 1rem 1rem 1.75rem;
      width: 300px;
      display: inline-block;
      text-align: center;
      border-radius: 99vw;
      position: relative;
      font-size: 18px;

      &::before {
        content: "";
        display: block;
        background: url("/images/56113/mail-icon.png") no-repeat center center / contain;
        width: 40px;
        height: 40px;
        position: absolute;
        top: 50%;
        left: 10px;
        transform: translateY(-50%);
      }
    }
  }
}

.p-hamburger__text {
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--white-color);
  word-break: normal;
  font-weight: 700;
}

.l-main {
  /* margin-top: 100px; */
}

@media screen and (max-width: 1200px) {
  .l-main {
    /* margin-top: 80px; */
  }

  .l-header__pcWrap {
    display: none;
  }

  .l-header__spWrap {
    display: block;
  }
}

@media screen and (max-width: 576px) {
  .l-main {
    /* margin-top: 60px; */
  }

  .banner {
    img {
      width: 100px;
    }
  }

  .banner {
    bottom: 30px;
  }

  .l-header__spWrap {
    height: 60px;
  }

  .p-hamburger__line {
    width: 36px;
    height: 2px;
  }

  .p-hamburger {
    width: 60px;
  }

  .p-hamburger__text {
    font-size: 12px;
  }

  .l-header__spWrap-logo {
    width: 130px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
footer
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.l-footer {
  background: #000;
  color: var(--white-color);
  padding-top: 150px;

  & .copyright {
    text-align: center;
    padding-top: 170px;
    padding-bottom: 24px;
    font-size: 12px;
    color: #bababa;
  }
}

.l-footer__inner {
  width: min(1420px, 90%);
  margin-inline: auto;
}

.l-footer__flexWrap {
  display: flex;
}

.l-footer__contentWrap {
  justify-content: space-between;
}

.l-footer__logoWrap {
  flex-basis: clamp(250px, 15.63vw, 300px);
}

.l-footer__recruitWrap {
  flex-basis: calc(100% - clamp(250px, 15.63vw, 300px) - clamp(32px, 9.9%, 190px));
}

.l-footer__recruit1,
.l-footer__recruit2 {
  flex-basis: 50%;
  text-align: center;

  & .l-footer__recruitTitle {
    font-size: 20px;
  }
}

.l-footer__recruit1 {
  border-right: 2px solid var(--white-color);
  padding-right: 40px;
}

.l-footer__recruit2 {
  padding-left: 40px;
}

.l-footer__recruitButton {
  margin-top: 32px;
  a {
    display: inline-block;
    width: 100%;
    border: 2px solid var(--white-color);
    font-size: 20px;
    padding: 20px 0;
    border-radius: 10px;
    background: #000;
    position: relative;
    color: #fff;
    text-decoration: none;

    &::after {
      content: "";
      display: block;
      background: url("/images/56113/arrow-w.png") no-repeat center center / contain;
      width: 18px;
      height: 18px;
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translateY(-50%);
    }
  }
}

.l-footer__recruit2 {
  & .l-footer__recruitButton {
    a {
      background: var(--white-color);
      border: 2px solid var(--white-color);
      color: #000;

      &::after {
        background: url("/images/56113/arrow-b.png") no-repeat center center / contain;
      }
    }
  }
}

@media screen and (max-width: 1200px) {
  .l-footer__recruitWrap {
    flex-basis: calc(100% - clamp(250px, 15.63vw, 300px) - 64px);
  }

  .l-footer__recruitButton {
    margin-top: 24px;
    a {
      font-size: 20px;
      padding: 20px 0;
    }
  }
}

@media screen and (max-width: 1024px) {
  .l-footer {
    padding-top: 64px;
  }

  .l-footer__contentWrap {
    display: block;
  }

  .l-footer__logoWrap {
    width: min(300px, 100%);
    margin-inline: auto;
  }

  .l-footer__recruitWrap {
    margin-top: 64px;
  }
}

@media screen and (max-width: 768px) {
  .l-footer {
    & .copyright {
      padding-top: 80px;
      padding-bottom: 24px;
    }
  }

  .l-footer__recruitWrap {
    display: block;
    width: min(480px, 100%);
    margin-inline: auto;
  }

  .l-footer__recruitButton {
    margin-top: 10px;
  }

  .l-footer__recruit1 {
    padding-right: 0;
    border: none;
  }

  .l-footer__recruit2 {
    padding-left: 0;
    margin-top: 48px;
  }
}

@media screen and (max-width: 576px) {
  .l-footer {
    padding-top: 48px;

    & .copyright {
      padding-top: 64px;
      padding-bottom: 18px;
    }
  }

  .l-footer__logoWrap {
    width: min(240px, 100%);
  }

  .l-footer__recruit1,
  .l-footer__recruit2 {
    & .l-footer__recruitTitle {
      font-size: 16px;
    }
  }

  .l-footer__recruitWrap {
    margin-top: 48px;
  }

  .l-footer__recruitButton {
    a {
      font-size: 18px;
      border-radius: 8px;
    }
  }

  .l-footer__recruit2 {
    margin-top: 32px;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
main
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/

/*ーーーーーーーーーーーーー
intro
ーーーーーーーーーーーーー*/
.p-intro__video {
  width: 100%;
}

/*ーーーーーーーーーーーーー
copy
ーーーーーーーーーーーーー*/
.p-copy {
  padding-top: 124px;
  padding-bottom: 124px;
}

.p-copy__inner {
  width: min(850px, 90%);
  margin-inline: auto;
}

#forestry .p-copy__title {
  font-weight: 900;
  font-size: 20px;
  background: url("/images/56113/intro-text-bg.jpg");
  color: transparent;
  -webkit-background-clip: text;
}

.p-copy__subTitle {
  font-size: 36px;
  margin-top: 8px;
}

.p-copy__textWrap {
  font-size: 18px;
  margin-top: 100px;
}

.p-copy__text1 {
  line-height: 2;
}

.p-copy__text2 {
  margin-top: 40px;
}

.p-copy__text3 {
  font-size: 24px;
  margin-top: 64px;
}

.p-copy__textWrap {
  width: min(690px, 100%);
  margin-inline: auto;
}

/*ーーーーーーーーーーーーー
event
ーーーーーーーーーーーーー*/
.p-event {
  position: relative;
  padding-top: min(20vw, 240px);
  padding-bottom: min(20vw, 400px);

  &::before {
    content: "";
    display: block;
    width: 80%;
    aspect-ratio: 8 / 3;
    background: url("/images/56113/workshop-bg1.jpg") no-repeat center center / cover;
    background-attachment: fixed;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    border-radius: 0 min(5vw, 80px) min(5vw, 80px) 0;
    max-height: 576px;
    min-height: 400px;
  }

  &::after {
    content: "";
    display: block;
    width: 100%;
    aspect-ratio: 10 / 3;
    background: url("/images/56113/workshop-bg2.jpg") no-repeat center center / cover;
    position: absolute;
    z-index: -1;
    bottom: 0;
    max-height: 576px;
    min-height: 400px;
    background-attachment: fixed;
  }
}

.p-event__inner {
  width: min(1300px, 90%);
  margin-inline: auto;
  border: 3px solid var(--text-color);
  background: url("/images/56113/workshop-bg.jpg") no-repeat center center / cover;
  padding: 0 32px 64px;
}

.p-event__title1Wrap {
  text-align: center;
}

.p-event__title1 {
  font-weight: 700;
  font-size: 32px;
  letter-spacing: 0.25rem;
  background: var(--text-color);
  color: var(--white-color);
  display: inline-block;
  padding: 1rem 80px;
  border-radius: 0 0 30px 30px;
}

#forestry .p-event__title2 {
  width: min(562px, 100%);
  margin-inline: auto;
  margin-top: 72px;
}

.p-event__flexWrap {
  display: flex;
}

.p-event__textWrap {
  text-align: center;
  margin-top: 48px;
}

.p-event__text1 {
  font-size: 28px;
  letter-spacing: 0.15rem;
}

.p-event__text2 {
  font-size: 20px;
  margin-top: 12px;
}

.p-event__detailWrap {
  width: min(100%, 890px);
  margin-inline: auto;
  margin-top: 48px;
}

.p-event__detailTextWrap {
  text-align: center;
}

.p-event__detailImgWrap,
.p-event__detailaccentWrap {
  flex-basis: 166px;
}

.p-event__detailImgName {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;

  & .textBig {
    font-size: 150%;
    line-height: 1.15;
  }
}

.p-event__detailaccentImg2 {
  margin-top: 24px;
}

.p-event__detailTextWrap {
  flex-basis: calc(100% - (166px * 2));
  padding: 0 48px;
}

.p-event__detailText1 {
  font-weight: 800;
  font-size: 40px;
  line-height: 1;

  & .textBig {
    font-size: 200%;
    line-height: 1;
    padding: 0 12px;
    letter-spacing: 0.25rem;
  }
}
.p-event__detailText1 .text-End {
  font-size: 30px;
  color: red;
}

.p-event__detailText2,
.p-event__detailText3 {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 500;

  & .textBig {
    font-size: 200%;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.25rem;
  }
}

.p-event__detailText4 {
  display: flex;
  margin-top: 32px;
  font-size: 18px;
  font-weight: 500;
  justify-content: center;
  align-items: baseline;

  & .textBig {
    font-size: 200%;
    line-height: 1.25;
    font-weight: 800;
    letter-spacing: 0.15rem;
    padding-left: 20px;
  }

  & .textSmall {
    border-bottom: 1px solid var(--text-color);
    font-size: 24px;
    font-weight: 700;
  }
}

.p-event__detailButtonWrap {
  width: min(100%, 660px);
  margin-inline: auto;
  margin-top: 64px;
}

.p-event__detailButtonText {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;

  & .textBig {
    font-size: 180%;
    letter-spacing: 0.25rem;
  }
}

.p-event__detailButtonText2 {
  margin-top: 8px;
}

.p-event__detailButtonMainWrap {
  text-align: center;
  margin-top: 24px;
  a {
    color: var(--white-color);
    background: #009e3b;
    display: inline-block;
    width: 100%;
    font-size: 24px;
    padding: 30px 0;
    border-radius: 10px;
    border: 1px solid var(--text-color);
    text-decoration: none;
  }
}

.p-event__detailButtonSubWrap {
  justify-content: space-between;
  margin-top: 32px;
}

.p-event__detailButtonSub1,
.p-event__detailButtonSub2 {
  flex-basis: 48%;
  text-align: center;
  a {
    border: 1px solid var(--text-color);
    display: inline-block;
    width: 100%;
    padding: 14px 0;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
  }
}

.p-event__detailButtonSub2 {
  a {
    position: relative;
    cursor: pointer;

    &::before {
      content: "";
      display: block;
      background: url("/images/56113/movie-icon2.png") no-repeat center center / contain;
      width: 30px;
      height: 30px;
      position: absolute;
      top: 50%;
      right: 10px;
      transform: translateY(-50%);
    }
  }
}

/*ーーーーーーーーーーーーー
movie
ーーーーーーーーーーーーー*/
/* intro */
.p-movieIntro {
  padding-top: 120px;
  padding-bottom: 280px;
  position: relative;
  max-width: 1920px;
  margin-inline: auto;

  &::after {
    content: "";
    display: block;
    background: url("/images/56113/movie-logo.jpg") no-repeat center center / contain;
    width: clamp(800px, 54vw, 1150px);
    height: calc(clamp(800px, 60vw, 1150px) * 0.5983);
    position: absolute;
    bottom: -56px;
    right: 0;
    z-index: -1;
  }
}

.p-movieIntro__titleWrap {
  padding-left: max(3.47vw, 50px);
}

#forestry .p-movieIntro__title {
  font-weight: 900;
  font-size: 32px;
}

.p-movieIntro__subTitle {
  font-size: 36px;
  margin-top: 8px;
}

.p-movieIntro__imgWrap {
  width: min(880px, 100%);
  margin-top: 80px;
}

/* movie1 */
.p-movie1 {
  background: url("/images/56113/vol1-bg.jpg") no-repeat center center / cover;
  border-top: 3px solid var(--text-color);
}

.p-movie1__inner {
  display: flex;
  width: min(1280px, 100%);
  margin-inline: auto;
}

.p-movie1__flexWrap {
  display: flex;
  align-items: center;
}

.p-movie1__textWrap {
  flex-basis: 56%;
  background: var(--white-color);
  padding: 40px 75px 40px;
}

.p-movie1__videoContainer {
  flex-basis: calc(100% - 56%);
  position: relative;
}
.p-movie1__videoContainer iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
}

.p-movie1__nameContainer {
  margin-top: 24px;
}

#forestry .p-movie1__imgWrap {
  width: 40%;
  flex-basis: 40%;
  max-width: 210px;
}

.p-movie1__nameWrap {
  flex-basis: calc(100% - 40%);
  padding-left: 32px;

  & .p-movie1__job {
    font-size: 20px;
  }

  & .p-movie1__name {
    font-size: 32px;
    font-weight: 700;
    letter-spacing: 0.15rem;
    line-height: 1;
    padding-top: 18px;
  }
}

.p-movie1__videoButton {
  a {
    cursor: pointer;
  }

  img {
    width: 80px;
  }
}
.p-movie1__copyContainer {
  justify-content: space-between;
  margin-top: 32px;

  & .p-movie1__copy {
    font-size: 36px;
    line-height: 1.65;
    font-weight: 900;
    padding-right: 20px;
  }
}

.p-movie1__text {
  margin-top: 32px;
  font-size: 18px;
  line-height: 2;
  font-weight: 400;
  letter-spacing: 0.15rem;
}

/* movie2 */
.p-movie2 {
  background: url("/images/56113/vol2-bg.jpg") no-repeat center center / cover;
  border-top: 3px solid var(--text-color);

  & .p-movie1__inner {
    flex-direction: row-reverse;
  }
}

.p-movie3 {
  background: url("/images/56113/vol3-bg.jpg") no-repeat center center / cover;
  border-top: 3px solid var(--text-color);
}

.p-movie4 {
  background: url("/images/56113/vol4-bg.jpg") no-repeat center center / cover;
  border-top: 3px solid var(--text-color);

  & .p-movie1__inner {
    flex-direction: row-reverse;
  }
}

/* remodal */
.remodal {
  padding: 28px;
  width: 85%;
}

.remodal-close:before {
  font-size: 50px;
  top: 0;
  left: inherit;
  right: 0;
}

.remodal-close {
  position: absolute;
  top: 0;
  left: inherit;
  color: var(--text-color);
  right: 0;
}

@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 1200px;
  }
}

@media screen and (max-width: 1280px) {
  .p-movie1__inner {
    width: min(980px, 100%);
  }

  .p-movie1__textWrap {
    flex-basis: 50%;
    padding: 32px;
  }

  .p-movie1__videoContainer {
    flex-basis: calc(100% - 50%);
  }

  .p-movie1__nameWrap {
    & .p-movie1__job {
      font-size: 18px;
    }

    & .p-movie1__name {
      font-size: 30px;
    }
  }

  .p-movie1__copyContainer {
    & .p-movie1__copy {
      font-size: 24px;
    }
  }

  .p-movie1__text {
    font-size: 16px;
  }

  .p-movie1__videoButton {
    img {
      width: 64px;
    }
  }
}

@media screen and (max-width: 1024px) {
  /* copy */
  .p-copy {
    padding-top: 80px;
    padding-bottom: 100px;
  }

  .p-copy__textWrap {
    margin-top: 64px;
  }

  #forestry .p-copy__title {
    font-size: 18px;
  }

  .p-copy__subTitle {
    font-size: 28px;
  }

  /* event */
  .p-event__title1 {
    font-size: 24px;
    padding: 1rem 48px;
  }

  #forestry .p-event__title2 {
    width: min(400px, 100%);
    margin-top: 48px;
  }

  .p-event__text1 {
    font-size: 24px;
  }

  .p-event__text2 {
    font-size: 18px;
  }

  .p-event__detailText1 {
    font-size: 24px;
  }
  .p-event__detailText1 .text-End {
    font-size: 20px;
  }

  .p-event__detailImgWrap,
  .p-event__detailaccentWrap {
    flex-basis: 124px;
  }

  .p-event__detailTextWrap {
    flex-basis: calc(100% - (124px * 2));
    padding: 0 32px;
  }

  .p-event__detailText2,
  .p-event__detailText3,
  .p-event__detailText4 {
    & .textBig {
      font-size: 150%;
    }
  }

  .p-event__detailButtonWrap {
    margin-top: 32px;
  }

  .p-event__detailText4 {
    & .textSmall {
      font-size: 20px;
    }
  }

  .p-event__detailImgName {
    & .textBig {
      font-size: 120%;
    }
  }

  /* movie */
  .p-movieIntro {
    padding-top: 80px;
    &::after {
      width: 600px;
      height: calc(600px * 0.5983);
      bottom: -12px;
    }
  }

  .p-movie1__inner {
    flex-direction: column-reverse;
    width: 100%;
  }

  .p-movie1__videoWrap {
    width: min(375px, 100%);
    margin-inline: auto;
  }

  .p-movie1__copyContainer {
    margin-top: 20px;
    justify-content: flex-start;
  }

  .p-movie2,
  .p-movie4 {
    & .p-movie1__inner {
      flex-direction: column-reverse;
    }
  }

  .p-movie1,
  .p-movie2,
  .p-movie3,
  .p-movie4 {
    background: none;
  }

  .p-movie1 {
    & .p-movie1__videoContainer {
      background: url("/images/56113/vol1-bg-sp.jpg") no-repeat center center / cover;
    }
  }

  .p-movie2 {
    & .p-movie1__videoContainer {
      background: url("/images/56113/vol2-bg-sp.jpg") no-repeat center center / cover;
    }
  }

  .p-movie3 {
    & .p-movie1__videoContainer {
      background: url("/images/56113/vol3-bg-sp.jpg") no-repeat center center / cover;
    }
  }

  .p-movie4 {
    & .p-movie1__videoContainer {
      background: url("/images/56113/vol4-bg-sp.jpg") no-repeat center center / cover;
    }
  }
}

@media screen and (max-width: 768px) {
  .p-event {
    padding-bottom: min(30vw, 400px);
    &::before {
      background-attachment: scroll;
      width: 85%;
      min-height: 300px;
    }

    &::after {
      background-attachment: scroll;
      min-height: 300px;
    }
  }

  .p-event__flexWrap.p-event__detailWrap {
    display: block;
    margin-top: 32px;
  }

  #forestry .p-event__detailImgWrap {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    img {
      width: 140px;
    }
  }

  .p-event__detailImgName {
    align-items: flex-start;
    padding-left: 20px;
    margin: 0;

    & .textBig {
      font-size: 110%;
    }
  }

  .p-event__detailTextWrap {
    padding: 0;
    margin-top: 32px;
  }

  .p-event__detailText2,
  .p-event__detailText3,
  .p-event__detailText4 {
    margin-top: 16px;
  }

  .p-event__detailaccentWrap {
    display: flex;
    justify-content: center;
    margin-top: 24px;
  }

  .p-event__detailaccentImg1,
  .p-event__detailaccentImg2 {
    width: 124px;
  }

  .p-event__detailaccentImg2 {
    margin-top: 0;
    margin-left: 24px;
  }

  .p-event__flexWrap.p-event__detailButtonSubWrap {
    display: block;
  }

  .p-event__detailButtonSubWrap {
    margin-top: 24px;
  }

  .p-event__detailButtonSub2 {
    margin-top: 16px;
  }

  /* movie */
  .p-movieIntro__subTitle {
    font-size: 28px;
  }

  .p-movieIntro__titleWrap {
    padding-left: 20px;
  }
}

@media screen and (max-width: 576px) {
  /* copy */
  .p-copy {
    padding-top: 48px;
    padding-bottom: 64px;
  }

  .p-copy__subTitle {
    font-size: 20px;
  }

  .p-copy__textWrap {
    font-size: 16px;
    margin-top: 48px;
  }

  .p-copy__text3 {
    font-size: 18px;
    margin-top: 48px;
  }

  /* event */
  .p-event {
    &::after {
      min-height: 240px;
    }

    &::before {
      min-height: 200px;
    }
  }

  .p-event__inner {
    padding: 0 16px 48px;
  }

  .p-event__title1 {
    font-size: 14px;
    padding: 0.5rem 18px;
    letter-spacing: 0.15rem;
    border-radius: 0 0 20px 20px;
  }

  #forestry .p-event__title2 {
    width: min(220px, 100%);
    margin-top: 32px;
  }

  .p-event__textWrap {
    margin-top: 32px;
  }

  .p-event__text1 {
    font-size: 16px;
    letter-spacing: 0.075rem;
    text-align: left;
  }

  .p-event__text2 {
    font-size: 14px;
    text-align: left;
  }

  .p-event__detailText2,
  .p-event__detailText3,
  .p-event__detailText4 {
    font-size: 16px;
    & .textBig {
      letter-spacing: 0.15rem;
    }
  }

  .p-event__detailaccentImg1,
  .p-event__detailaccentImg2 {
    width: 90px;
  }

  .p-event__detailaccentImg2 {
    margin-left: 16px;
  }

  .p-event__detailButtonText {
    font-size: 16px;
  }

  .p-event__detailButtonText {
    & .textBig {
      font-size: 150%;
      letter-spacing: 0.1rem;
    }
  }

  .p-event__detailButtonMainWrap {
    a {
      font-size: 18px;
      padding: 18px 0;
      border-radius: 8px;
    }
  }

  .p-event__detailButtonSub1,
  .p-event__detailButtonSub2 {
    a {
      padding: 12px 0;
      border-radius: 8px;
      font-size: 16px;
    }
  }

  .p-event__detailButtonText2 {
    font-size: 14px;
  }

  /* movie */
  .p-movieIntro {
    padding-top: 48px;
    padding-bottom: 130px;
    &::after {
      width: 300px;
      height: calc(300px * 0.5983);
      bottom: -12px;
    }
  }

  #forestry .p-movieIntro__title {
    font-size: 18px;
  }

  .p-movieIntro__subTitle {
    font-size: 22px;
    margin-top: 0;
  }

  .p-movieIntro__imgWrap {
    margin-top: 48px;
  }

  .p-movie1__videoWrap {
    width: min(250px, 100%);
  }

  .p-movie1__textWrap {
    padding: 24px 12px;
  }

  #forestry .p-movie1__imgWrap {
    width: 35%;
    flex-basis: 35%;
  }

  .p-movie1__nameWrap {
    flex-basis: calc(100% - 35%);
    padding-left: 20px;
    & .p-movie1__job {
      font-size: 14px;
    }

    & .p-movie1__name {
      font-size: 24px;
      padding-top: 10px;
    }
  }

  .p-movie1__videoButton {
    img {
      width: 48px;
    }
  }

  .p-movie1__copyContainer {
    & .p-movie1__copy {
      font-size: 20px;
    }
  }

  .p-movie1__text {
    font-size: 14px;
    margin-top: 24px;
    letter-spacing: 0.05rem;
  }
}

/*＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
animation
＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝*/
.l-header__pcInner-logoWrap,
.l-header__pcInner-nav-nav .listitem,
.p-event__detailButtonMainWrap,
.p-event__detailButtonSub1,
.p-event__detailButtonSub2,
.p-movie1__videoButton,
.p-movie1__videoWrap,
.l-footer__logoWrap,
.l-footer__recruit1 .l-footer__recruitButton,
.l-footer__recruit2 .l-footer__recruitButton {
  a {
    transition: 0.3s all ease-in-out;
  }
}

@media (any-hover: hover) {
  .l-header__pcInner-logoWrap,
  .l-header__pcInner-nav-nav .listitem,
  .p-movie1__videoButton,
  .p-movie1__videoWrap,
  .l-footer__logoWrap {
    & a:hover {
      opacity: 0.6;
    }
  }

  .p-event__detailButtonMainWrap {
    & a:hover {
      background: var(--text-color);
    }
  }

  .p-event__detailButtonSub1,
  .p-event__detailButtonSub2 {
    & a:hover {
      background: var(--text-color);
      color: var(--white-color);
    }
  }

  .p-event__detailButtonSub2 {
    & a:hover {
      &::before {
        background: url("/images/56113/movie-icon2-w.png") no-repeat center center / contain;
      }
    }
  }

  .l-footer__recruit1 .l-footer__recruitButton {
    & a:hover {
      background: var(--white-color);
      color: #000;

      &::after {
        background: url("/images/56113/arrow-b.png") no-repeat center center / contain;
      }
    }
  }

  .l-footer__recruit2 .l-footer__recruitButton {
    & a:hover {
      background: #000;
      color: var(--white-color);

      &::after {
        background: url("/images/56113/arrow-w.png") no-repeat center center / contain;
      }
    }
  }
}

.format_free .column_rnavi .col_main {
  margin-right: 0 !important;
}
.d_none {
  display: none;
}
