@charset "UTF-8";

@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Medium");
}
@font-face {
  font-family: "Yu Gothic M";
  src: local("Yu Gothic Bold");
  font-weight: bold;
}
@font-face {
  font-family: "a1-mincho";
  src: url(../fonts/A-OTF-A1MinchoStd-Bold.otf) format("opentype");
}

.a1-mincho {
  font-family: a1-mincho, sans-serif;
  font-style: normal;
  font-weight: bold;
}

:root {
  --gothic-fonts: "游ゴシック体", YuGothic, "Yu Gothic M", "游ゴシック Medium",
    "Yu Gothic Medium", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN W3",
    HiraKakuProN-W3, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN",
    "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka,
    "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
body {
  margin: 0;
  background-color: #54b994;
  line-height: 2;
  letter-spacing: 0.1em;
  font-family: var(--gothic-fonts);
  font-size: 18px;
}
* {
  box-sizing: border-box;
}
h1 {
  margin: 0;
  font-size: 100%;
}
ul.items,
ul.items li.item {
  list-style: none;
  display: block;
  margin: unset;
  padding: unset;
}
P {
  margin-top: 0;
  margin-bottom: 0.5em;
}
P:last-child {
  margin-bottom: 0;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
a {
  display: inline-block;
}

.sp {
  display: none !important;
}

@media only screen and (max-width: 749px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}

/********************
 Animation Setting
 ********************/

/**** @keyframes ****/

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideup {
  from {
    transform: translateY(2em);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/**** .headline ****/
.headline .char {
  fill: #2b6049;
}
.headline svg > * {
  opacity: 0;
}
.is-active .headline svg > * {
  animation: 0.8s ease-in both fadein;
}
/* The maximum value is 7 characters. */
.headline svg > *:nth-child(1) {
  animation-delay: 0s;
}
.headline svg > *:nth-child(2) {
  animation-delay: 0.1s;
}
.headline svg > *:nth-child(3) {
  animation-delay: 0.2s;
}
.headline svg > *:nth-child(4) {
  animation-delay: 0.3s;
}
.headline svg > *:nth-child(5) {
  animation-delay: 0.4s;
}
.headline svg > *:nth-child(6) {
  animation-delay: 0.5s;
}
.headline svg > *:nth-child(7) {
  animation-delay: 0.6s;
}

/**** .shoulder, .lede ****/
.headline .shoulder,
.lede {
  transform: translateY(2em);
  opacity: 0;
}
.is-active .headline .shoulder,
.is-active .lede {
  animation: 0.8s ease-out 0.6s forwards slideup;
}

/**** #about ****/
#about .more {
  transform: translateY(2em);
  opacity: 0;
}
#about.is-active .more {
  animation: 0.8s ease-out 0.6s forwards slideup;
}
.is-loaded #about.style-sub .headline svg > * {
  animation: 0.8s ease-in both fadein;
}
#about.style-sub .headline svg > *:nth-child(1) {
  animation-delay: 0s;
}
#about.style-sub .headline svg > *:nth-child(2) {
  animation-delay: 0.1s;
}
#about.style-sub .headline svg > *:nth-child(3) {
  animation-delay: 0.2s;
}
#about.style-sub .headline svg > *:nth-child(4) {
  animation-delay: 0.3s;
}
#about.style-sub .headline svg > *:nth-child(5) {
  animation-delay: 0.4s;
}
.is-loaded #about.style-sub .headline .shoulder {
  animation: 0.8s ease-out 0.6s forwards slideup;
}
#about.style-sub .content-body {
  transform: translateY(2em);
  opacity: 0;
}
.is-loaded #about.style-sub .content-body {
  animation: 0.8s ease-out 1.5s forwards slideup;
}
#about.style-sub .more.is-active {
  animation: 0.8s ease-out 0.6s forwards slideup;
}

/**** #seminar ****/

#seminar .item {
  transform: translateY(2em);
  opacity: 0;
}
#seminar .is-active .item {
  animation: 0.8s ease-out forwards slideup;
}
#seminar .more {
  transform: translateY(2em);
  opacity: 0;
  margin-top: 102px;
}
#seminar .more.is-active {
  animation: 0.8s ease-out 0s forwards slideup;
}

/**** #movie ****/
#movie .content-body {
  transform: translateY(2em);
  opacity: 0;
}
#movie .content-body.is-active {
  animation: 0.8s ease-out 0s forwards slideup;
}

/**** #intern ****/
#intern .content-body {
  transform: translateY(2em);
  opacity: 0;
}
#intern .content-body.is-active {
  animation: 0.8s ease-out 0s forwards slideup;
}

.intern_text.color {
  color: #285d45;
}

/**** #magazine ****/
#magazine .content {
  transform: translateY(2em);
  opacity: 0;
}
#magazine.is-active .content {
  animation: 0.8s ease-out 0s forwards slideup;
}
#magazine.is-active .lede {
  opacity: 1;
  transform: none;
  animation: none;
}

/**** #contact ****/
#contact .content-body {
  transform: translateY(2em);
  opacity: 0;
}
#contact .content-body.is-active {
  animation: 0.8s ease-out 0s forwards slideup;
}

/********************
 Common
 ********************/

.container {
  position: relative;
  pointer-events: auto;
  z-index: 2;
}
.container a {
  pointer-events: all;
  cursor: pointer;
}
.container .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding-top: 60px;
  padding-bottom: 35px;
}
.container .background .fill {
  width: 100%;
  max-width: 1340px;
  height: 100%;
  margin: 0 auto;
  background-color: #ffffff;
}
.container .content {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  /* outline: 1px dashed red; */
}
.container .content.layout-full {
  overflow: hidden;
  width: 100%;
  max-width: unset;
}
/*** .layout-sidebyside ***/
.container .content.layout-sidebyside {
  display: flex;
}
.container .content.layout-sidebyside .lede {
  margin-top: -8px;
}
.container .content.layout-sidebyside > * {
  flex-basis: 50%;
}
.container .content.layout-fix > * {
  flex-basis: 50%;
}
.container .contents {
  pointer-events: all;
  margin: 0 auto;
}
.container .headline .shoulder {
  letter-spacing: 0.2em;
  font-weight: bold;
  font-size: 20px;
  color: #285d45;
}
.container .more {
  margin-top: 30px;
  text-align: center;
}
.container .more .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  min-width: 330px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #000;
  border: 1px solid #fff;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: center;
  text-decoration: none;
  font-size: 30px;
  color: #fff;
}
.container .more {
  margin-top: 30px;
  text-align: center;
}
.container .more .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  min-width: 330px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #000;
  border: 1px solid #fff;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: center;
  text-decoration: none;
  font-size: 30px;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  .container {
    margin: 50px auto 0;
    padding: 0 10px;
  }
  .container .background {
    padding: 0 10px;
    padding-top: 30px;
    padding-bottom: 40px;
  }
  .container .content-head .lede {
    margin-top: 40px;
  }
  .container .content-body {
    padding: 0 5px;
  }
  .container .content.layout-full {
    overflow: unset;
    width: unset;
  }
  .container .headline .shoulder {
    font-size: 15px;
    margin-top: -8px;
  }
  .about .container {
    margin: 80px auto;
  }
}
@media only screen and (max-width: 749px) {
  .container .content.layout-sidebyside {
    flex-direction: column;
  }
  .container .content.layout-sidebyside .lede {
    margin: 33px 0 0;
  }
}

/********************
 #background
 ********************/

#background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100lvw;
  height: 100lvh;
  overflow: hidden;
  z-index: 1;
}
#particles-js {
  width: 100%;
  height: 100%;
}

/********************
 #header
 ********************/

#header {
  position: relative;
  width: 100%;
  margin-bottom: 140px;
  transition: all 0.5s;
  opacity: 0;
}
.is-loaded #header {
  opacity: 1;
}
.top #header {
  /* z-index: 100; */
}
.top #header::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  display: block;
  width: 96%;
  height: 30px;
  background-color: #ff0d0e;
  transform: translateX(-50%);
  z-index: 1;
}
#header .background {
}
#header .background img {
  width: 100%;
  height: auto;
}
#header .content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
#header.style-sub {
  margin-bottom: 50px;
}
#header.style-sub .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 460px;
}
#header.style-sub .background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#header.style-sub .content-head {
  position: relative;
}
@media only screen and (max-width: 749px) {
  #header.style-sub .background {
    position: relative;
    height: 88vw;
  }
  #header.style-sub .content-head {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
  }
}
#header .bar {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 8px 16px 6px 22px;
  line-height: 1;
  z-index: 2;
  pointer-events: all;
}
#header .menu {
  list-style: none;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  line-height: 1;
  color: #fff;
}
#header .bar .menu-global {
  margin-left: 35px;
  gap: 20px;
}
#header .bar .menu-global a {
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
  letter-spacing: 0;
}
#header .bar .menu-sns button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 749px) {
  .top #header {
    height: 812px;
    margin-bottom: 0;
  }
  .top #header::after {
    bottom: -7px;
    height: 15px;
  }
  #header .background {
    overflow: hidden;
    height: 100%;
  }
}
@media only screen and (max-width: 749px) {
  #nav {
    position: fixed;
    top: 0px;
    left: 0px;
    display: none;
    width: 100%;
    z-index: 90;
  }
  #header .bar .menu-global {
    flex-direction: column;
    align-items: flex-start;
    gap: 30px;
    width: 100%;
    margin: 0;
    padding: 70px 50px;
    background-color: rgba(0, 0, 0, 0.9);
  }
}
#header .bar .sns {
  margin-left: auto;
}
#header .bar .menu-sns {
  gap: 10px;
}
#header .bar .button {
  display: none;
}
#header .headline {
  padding: 0 13px;
}
#header .headline img {
  width: 100%;
}
#header.style-sub .headline {
  max-width: 1000px;
  box-sizing: content-box;
  margin: 0 auto;
}
#header .content-foot {
  height: 100%;
  pointer-events: none;
}
#header .guide {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  width: 100%;
  height: 100%;
  padding-left: 2.1875vw;
  padding-bottom: 5.72916666667vw;
}
#header .guide .wrap {
  display: inline-flex;
  align-items: center;
  gap: 1em;
  line-height: 1;
  font-size: 15px;
  color: #fff;
  transform-origin: 100% 50%;
  transform: translateX(-100%) rotate(90deg);
}
#header .guide .wrap .line {
  content: "";
  display: block;
  width: 15.1041666667vw;
  max-width: 290px;
  height: 1px;
  background-color: rgba(0, 0, 0, 0.5);
}
#header .guide .wrap .line::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  animation: 1s linear 0s infinite stretchWidth;
}
@keyframes stretchWidth {
  0% {
    width: 0%;
  }
  10% {
    width: 0%;
  }
  90% {
    width: 100%;
  }
  100% {
    width: 100%;
  }
}
@media only screen and (max-width: 749px) {
  .top #header .bar .sns {
    margin-right: 38px;
  }
  #header .guide {
    padding-left: 22px;
    padding-bottom: 25px;
  }
  #header .guide .wrap {
    font-size: 12px;
    letter-spacing: 0.2em;
  }
  #header .guide .wrap .line {
    width: 210px;
  }
}
/*** #slick-hero ***/
#slick-hero:not(.slick-initialized) .item {
  display: none;
}
#slick-hero .item:first-child {
  display: block;
}
#slick-hero .item.slide-animation {
  animation: 8s linear 0s both zoomout;
}
@keyframes zoomout {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@media only screen and (max-width: 749px) {
  #header .bar {
    padding: 10px 10px 15px;
  }
  #header .bar .brand {
    padding-top: unset;
  }
  #header .bar .brand img {
    vertical-align: middle;
  }
  #header .bar .menu-sns .facebook img {
    width: 28px;
  }
  #header .bar .menu-sns .x img {
    width: 24px;
  }
  #header .bar .button {
    position: fixed;
    top: 16px;
    right: 10px;
    display: block;
    width: 25px;
    height: 20px;
    cursor: pointer;
    z-index: 100;
  }
  #header .bar .button::before,
  #header .bar .button::after {
    content: "";
  }
  #header .bar .button::before,
  #header .bar .button::after,
  #header .bar .button > * {
    display: block;
    width: 100%;
    height: 1px;
    background-color: #fff;
    transition: all 0.5s;
  }
  #header .bar .button::before {
    position: absolute;
    top: 0;
    left: 0;
  }
  #header .bar .button > * {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  #header .bar .button::after {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  /**** .close ****/
  #header .bar .button.close > * {
    opacity: 0;
  }
  #header .bar .button.close::before,
  #header .bar .button.close::after {
    top: 50%;
    bottom: unset;
    transform-origin: center center;
    transform: translateY(-50%);
  }
  #header .bar .button.close::before {
    transform: translateY(-50%) rotate(-45deg);
  }
  #header .bar .button.close::after {
    transform: translateY(-50%) rotate(45deg);
  }
  #header .headline {
    padding: 0 10px;
  }
}

/********************
 #quiz
 ********************/
#quiz {
  margin-bottom: 0px;
}
#quiz.style-sub {
  margin-top: 0px;
  margin-bottom: 0px;
}
#quiz .headline svg {
  width: 424px;
}
#quiz .content-head {
  margin-bottom: 0px;
}
#quiz.style-sub .content-head {
  margin-bottom: 0px;
}
#quiz.style-sub .content-body {
  max-width: 800px;
  padding-bottom: 0px;
}
#quiz.style-sub .content-body p {
  margin-bottom: 2em;
  letter-spacing: 0.2em;
}
#quiz.style-sub .content-body p strong {
  font-weight: bold;
  color: #265d45;
}
#quiz.style-sub .content-body .brand img {
  width: 394px;
}
#quiz.style-sub .content-body h2 {
  margin: 45px 0 0px;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-size: 24px;
  color: #265d45;
}
#quiz.style-sub .content-body .image {
  margin-top: 30px;
}
.character-left {
  bottom: 0;
  position: absolute;
}
.character-rifht {
  bottom: 0;
  right: 0;
  position: absolute;
}
.quiz-font-normal {
  text-align: center;
  font-size: 40px;
  color: #025131;
}
.quiz-font-big {
  font-size: 52px;
  color: #fff;
}
.quiz-dots span {
  position: relative;
}
.quiz-dots span::before {
  content: "・";
  position: absolute;
  top: -1em;
  left: 5px;
  font-size: 70%;
  color: #fff;
}
.quiz-transparent {
  position: relative; /* 基準位置とする */
}
.quiz-transparent::before {
  content: ""; /* 疑似要素に必須 */
  width: 100%; /* 幅いっぱい */
  height: 100%; /* 高さいっぱい */
  display: block; /* 高さを指定するためにブロック要素にする */
  background: linear-gradient(
    rgba(255, 255, 255, 0) 90%,
    #54b994 98%
  ); /* 徐々に透明にする */
  position: absolute; /*  */
  top: 0;
  left: 0;
}
@media only screen and (max-width: 749px) {
  #quiz .headline svg {
    width: 216px;
  }
  #quiz .content-head {
    margin-bottom: 0px;
  }
  #quiz.style-sub {
    margin-bottom: 0px;
  }
  #quiz.style-sub .background {
    padding-top: 30px;
  }
  #quiz.style-sub .content-head {
    margin-bottom: 0px;
  }
  #quiz.style-sub .content-body {
    padding-top: 20px;
    padding-bottom: 0px;
  }
  #quiz.style-sub .content-body .brand {
    width: 270px;
  }
  #quiz.style-sub .content-body h2 {
    margin: 24px 0 12px;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin-right: -5px;
  }
  #quiz.style-sub .content-body .image {
    margin: 41px -15px 0;
  }
  .character-left {
    display: none;
  }
  .character-rifht {
    display: none;
  }
  .quiz-font-normal {
    text-align: center;
    font-size: 18px;
    color: #025131;
  }
  .quiz-font-big {
    font-size: 24px;
    color: #fff;
  }
}

/********************
 #about
 ********************/

#about {
  margin-bottom: 100px;
}
#about.style-sub {
  margin-top: 0px;
  margin-bottom: 155px;
}
#about .headline svg {
  width: 424px;
}
#about .content-head {
  margin-bottom: 71px;
}
#about.style-sub .content-head {
  margin-bottom: 50px;
}
#about.style-sub .content-body {
  max-width: 800px;
  padding-bottom: 60px;
}
#about.style-sub .content-body p {
  margin-bottom: 2em;
  letter-spacing: 0.2em;
}
#about.style-sub .content-body p strong {
  font-weight: bold;
  color: #265d45;
}
#about.style-sub .content-body .brand img {
  width: 394px;
}
#about.style-sub .content-body h2 {
  margin: 45px 0 54px;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-size: 24px;
  color: #265d45;
}
#about.style-sub .content-body .image {
  margin-top: 61px;
}
@media only screen and (max-width: 749px) {
  #about {
  }
  #about .headline svg {
    width: 216px;
  }
  #about .content-head {
    margin-bottom: 44px;
  }
  #about.style-sub {
    margin-bottom: 30px;
  }
  #about.style-sub .background {
    padding-top: 106px;
  }
  #about.style-sub .content-head {
    margin-bottom: 13px;
  }
  #about.style-sub .content-body {
    padding-top: 50px;
    padding-bottom: 20px;
  }
  #about.style-sub .content-body .brand {
    width: 270px;
  }
  #about.style-sub .content-body h2 {
    margin: 24px 0 34px;
    letter-spacing: 0.2em;
    line-height: 1.5;
    margin-right: -5px;
  }
  #about.style-sub .content-body .image {
    margin: 41px -15px 0;
  }
}

/********************
 #information
 ********************/

#information {
  margin-bottom: 116px;
  padding: 69px 10px 60px;
  text-align: center;
}
#information .background {
  padding: unset;
}
#information .background .fill {
  max-width: unset;
}
#information .headline {
  margin-bottom: 50px;
  text-align: center;
}
#information .headline .title {
  width: 100%;
  letter-spacing: 0.2em;
  font-weight: bold;
  font-size: 40px;
  color: #285d45;
}
#information .headline .title {
  display: inline-block;
}
#information .lede p {
  font-size: 18px;
  letter-spacing: 0.1em;
  line-height: 1.7;
  margin-bottom: 40px;
}
#information .button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  min-width: 330px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  background-color: #000;
  border: 1px solid #fff;
  line-height: 1;
  letter-spacing: 0.15em;
  text-align: center;
  text-decoration: none;
  font-size: 30px;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  #information {
    margin-top: 89px;
    margin-bottom: 48px;
    padding-top: 50px;
    padding-bottom: 46px;
  }
  #information .headline {
    margin-bottom: 14px;
  }
  #information .lede {
    margin: 10px 0;
    padding: 0 5px;
  }
  #information .headline .title {
    width: 100%;
    letter-spacing: 0.2em;
    font-size: 24px;
  }
}

/********************
 #seminar
 ********************/

#seminar {
  margin-bottom: 100px;
}
#seminar .headline svg {
  width: 560px;
}
#seminar .lede {
  margin: 30px 0 40px;
}
#seminar .panels .items {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 20px;
}
#seminar .panels .items .item {
  width: calc((100% - 40px) / 3);
}
#seminar .panel {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#seminar .panel .cover img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
#seminar .panel .sponsor {
  letter-spacing: 0.2em;
  font-size: 12px;
}
#seminar .panel .caption {
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 1.875;
  margin: 8px 0 12px;
}
#seminar .panel .date {
  margin-top: auto;
  margin-bottom: 14px;
  letter-spacing: 0.2em;
  font-size: 12px;
}
#seminar .panel .button a {
  display: inline-block;
  width: 100%;
  padding: 0.8em 2em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: rgba(43, 101, 76, 0.6);
  border-radius: 999px;
  border: 1px solid #fff;
  line-height: 1;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  font-size: 18px;
  color: #fff;
}
@media only screen and (max-width: 749px) {
  #seminar .headline svg {
    width: 285px;
  }
  #seminar .lede {
    margin-bottom: 43px;
    padding: 0 5px;
  }
  #seminar .panels .items {
    gap: 50px 11px;
  }
  #seminar .panels .items .item {
    width: calc((100% - 11px) / 2);
  }
  #seminar .panel .sponsor {
    line-height: 1.66666666667;
    margin-top: 5px;
  }
  #seminar .panel .caption {
    margin: -1px 0 0;
    margin-bottom: 0.2em;
  }
  #seminar .panel .date {
    margin: 7px 0 8px;
  }
  #seminar .panel .button a {
    padding: 5px;
  }
  #seminar .more {
    margin-top: 44px;
  }
}

/********************
 #movie
 ********************/

#movie {
  margin-bottom: 102px;
}
#movie .headline {
}
#movie .headline svg {
  width: 414px;
}
#movie .lede {
  margin: 29px 0 -7px;
}
#movie .wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}
#movie .content-body {
  padding-top: 20px;
}
#movie .cover {
  pointer-events: all;
  max-width: 1580px;
  margin: 0 auto;
  max-width: 1650px;
}
#movie .cover .items {
  padding-top: 30px;
}
#movie .cover .item {
  position: relative;
  width: 330px;
  box-sizing: content-box;
}
#movie .cover a {
  display: block;
}
#movie .cover .play {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-content: center;
  width: 100%;
  height: 100%;
}
#movie .cover .play img {
  width: 62px;
  height: auto;
}
#movie .cover .thumb {
  display: flex;
  justify-content: center;
}
#movie .cover .thumb img {
  width: 100%;
  height: auto;
}
#movie .cover .thumb img .pc {
  display: block !important;
}
#movie .cover .thumb img .sp {
  display: none !important;
}
#movie .cover .item {
  transform: scale(0.85);
  transition: all 0.5s;
}
#movie .cover .item.slick-center {
  transform: scale(1);
}
#movie .cover .item > * {
  position: relative;
  left: 0px;
  transition: all 0.5s 0s ease;
}
#movie .cover .item.prev01 > * {
  left: -12.5px;
}
#movie .cover .item.next01 > * {
  left: 12.5px;
}
@media only screen and (max-width: 749px) {
  #movie .wrap {
    display: block;
    justify-content: unset;
    width: unset;
    margin-top: 60px;
    margin-bottom: 60px;

    padding-left: 8px;
    padding-right: 8px;
  }
  #movie .cover {
    max-width: unset;
  }
  #movie .cover .items {
    padding-top: unset;
  }
  #movie .cover .item {
    width: unset;
  }
  #movie .cover .thumb img {
    width: 70%;
    height: auto;
  }
  #movie .cover .thumb img .pc {
    display: none !important;
  }
  #movie .cover .thumb img .sp {
    display: block !important;
  }
  #movie .cover .item {
    transform: unset;
  }
  #movie .cover .item.prev01 > *,
  #movie .cover .item.next01 > * {
    left: 0px;
  }
}
#movie .cover .item .play {
  opacity: 0;
  transition: opacity 0.5s;
}
#movie .cover .item.slick-center .play {
  opacity: 1;
}
#movie .cover .prev02 {
  position: relative;
}
#movie .cover .item.prev02,
#movie .cover .item.prev03 {
  margin-top: 42px;
}
#movie .cover .item.next02,
#movie .cover .item.next03 {
  margin-top: -42px;
}
#movie .cover .slick-prev,
#movie .cover .slick-next {
  position: absolute;
  width: 140px;
  height: 140px;
  background-color: rgba(43, 101, 76, 0.6);
  background-repeat: no-repeat;
  background-position: center center;
  border-radius: 50%;
  border: 2px solid #fff;
  line-height: 0;
  font-size: 0;
  color: transparent;
  cursor: pointer;
  transition: all 2s 0.5s ease;
  z-index: 1;
}
@media only screen and (max-width: 749px) {
  #movie .cover .slick-prev,
  #movie .cover .slick-next {
    position: absolute;
    width: 80px;
    height: 80px;
    background-color: rgba(43, 101, 76, 0.6);
    background-repeat: no-repeat;
    background-position: center center;
    border-radius: 50%;
    border: 2px solid #fff;
    line-height: 0;
    font-size: 0;
    color: transparent;
    cursor: pointer;
    transition: all 2s 0.5s ease;
    z-index: 1;
  }
}
#movie .cover .slick-prev {
  top: 50%;
  left: 15.4%;
  background-image: url(../img/triangle-left.svg);
  transform: translateY(-50%);
}
#movie .cover .slick-next {
  bottom: 50%;
  right: 15.4%;
  background-image: url(../img/triangle-right.svg);
  transform: translateY(50%);
}
@media only screen and (max-width: 749px) {
  #movie .cover .item .play {
    opacity: 1;
  }
  #movie .cover .slick-prev {
    left: -18px;
  }
  #movie .cover .slick-next {
    right: -18px;
  }
}
#movie .is-active .cover .slick-prev {
  top: 0.4%;
  transform: translateY(0);
}
#movie .is-active .cover .slick-next {
  bottom: 15px;
  transform: translateY(0);
}
@media only screen and (max-width: 749px) {
  #movie .cover .next01 > *,
  #movie .cover .prev01 > * {
    left: 0;
  }
  #movie .is-active .cover .slick-prev {
    top: 0%;
    transform: translateY(-50%);
  }
  #movie .is-active .cover .slick-next {
    bottom: 0%;
    transform: translateY(50%);
  }
}
/**** .caption ****/
#movie .caption {
  margin-top: -5px;
  margin-bottom: 25px;
  font-size: 16px;
}
#movie .items-caption {
  width: 460px;
  word-break: break-all;
  margin: 0 auto;
}
#movie .items-caption p {
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 749px) {
  #movie .caption {
    line-height: 1.875;
  }
}
/**** .pagenation ****/
#movie .pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 1.2;
}
#movie .pagination .unit {
  position: relative;
}
#movie .pagination .unit::after {
  content: "";
  position: absolute;
  bottom: 70%;
  right: 0;
  display: block;
  width: 100%;
  height: 1px;
  transform-origin: right center;
  transform: rotate(-45deg);
  background-color: #000;
}
#movie .pagination .unit .number {
  display: block;
  padding-right: 20px;
  text-align: left;
  font-size: 30px;
}
#movie .pagination .unit .total {
  display: block;
  padding-left: 30px;
  text-align: right;
  font-size: 16px;
}
@media only screen and (max-width: 749px) {
  #movie.container .background {
    padding-bottom: 34px;
  }
  #movie .headline svg {
    width: 210px;
  }
  #movie .lede {
    margin: 32px 0;
    padding: 0 5px;
  }
  #movie .cover {
    max-width: unset;
  }
  #movie .items-caption {
    width: 100%;
  }
  #movie.container .more {
    margin-top: 50px;
  }
}

/********************
 #intern
 ********************/
#intern {
  margin-bottom: 92px;
}
#intern.container .background {
  padding-top: 30px;
}
#intern .content-head .headline {
  text-align: center;
}
#intern .intern_block {
  padding-top: 30px;
  padding-bottom: 66px;
}
@media screen and (max-width: 749px) {
  #intern .intern_block {
    padding-bottom: 0;
  }
}
#intern .intern_text {
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: 500;
  line-height: 1.875;
}

/********************
 #media
 ********************/
#media {
  margin-bottom: 164px;
}
#media.container .background {
  padding-top: 30px;
}
#media .content-head .title {
  text-align: center;
}
#media .content-head .shoulder {
  text-align: center;
}
#media .media_block {
  max-width: 1000px;
  margin: 0 auto;
  padding-top: 64px;
  padding-bottom: 146px;
}
#media .media_block_list {
  display: flex;
  justify-content: center;
  gap: 0 60px;
  list-style: none;
  margin: 0;
  padding: 0;
}
#media .media_block_item img {
  width: auto;
  height: 80px;
}
@media only screen and (max-width: 749px) {
  #media .content-head .title {
    width: 140px;
    margin: 0 auto;
  }
  #media .content-head .title svg {
    width: 100%;
    height: auto;
  }
  #media .content-head .shoulder {
    font-size: 12px;
  }
  #media.container .background {
    padding-top: 20px;
  }
  #media .media_block {
    padding-bottom: 90px;
  }
  #media .media_block_list {
    flex-wrap: wrap;
    gap: 50px 0;
    width: 67.2vw;
    margin: 0 auto;
  }
  #media .media_block_item {
    width: 50%;
  }
  #media .media_block_item:last-child {
    transform: translateX(17px);
  }
  #media .media_block_item img {
    display: block;
    height: 21.3333333333vw;
    margin: 0 auto;
  }
  #media .media_block_item:nth-child(1) img {
    transform: translateX(-7px);
  }
  #media .media_block_item:nth-child(2) img {
    transform: translateX(23px);
  }
  #media .media_block_item:nth-child(3) img {
    transform: translateX(-7px);
  }
  #media .media_block_item:nth-child(4) img {
    transform: translateX(6px);
  }
}

/********************
 #magazine
 ********************/

#magazine {
  margin-bottom: 116px;
  padding: 69px 10px 60px;
}
#magazine .background {
  padding: unset;
}
#magazine .background .fill {
  max-width: unset;
}
#magazine .headline {
  margin-bottom: 50px;
  text-align: center;
}
#magazine .headline .title {
  width: 100%;
  max-width: 328px;
}
#magazine .headline .title {
  display: inline-block;
}
#magazine .lede {
  margin: 40px 0;
}
#magazine .lede p {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.7;
}
#magazine .items {
  display: flex;
  margin: 40px 0;
  gap: 3px;
}
#magazine .items > * {
  flex-basis: 100%;
}
#magazine .items img {
  width: 100%;
}
#magazine .buy {
  margin-top: 50px;
  text-align: center;
}
#magazine .button {
  display: inline-block;
  padding: 0.7em 2em;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  background-color: rgba(43, 101, 76, 0.6);
  border-radius: 999px;
  border: 1px solid #ffffff;
  line-height: 1;
  text-decoration: none;
  font-size: 24px;
  color: #ffffff;
}
@media only screen and (max-width: 749px) {
  #magazine {
    margin-top: 89px;
    margin-bottom: 48px;
    padding-top: 50px;
    padding-bottom: 46px;
  }
  #magazine .headline {
    margin-bottom: 14px;
  }
  #magazine .lede {
    margin: 10px 0;
    padding: 0 5px;
  }
  #magazine .items {
    flex-wrap: wrap;
    gap: unset;
    margin-top: 10px;
    padding: 0 3px;
  }
  #magazine .items > * {
    flex-basis: 50%;
    padding: 2px;
  }
}

/********************
  #contact
********************/

#contact {
  margin-bottom: 88px;
}
#contact .headline {
  margin-bottom: 40px;
}
#contact .title h2 {
  margin: 0 0 -6px;
}
#contact .headline svg {
  width: 529px;
}
#contact .content-contact .sp {
  display: none;
}
@media only screen and (max-width: 749px) {
  #contact {
    margin-top: 97px;
  }
  #contact .headline {
    margin-bottom: 19px;
  }
  #contact .headline svg {
    width: 269px;
  }
  #contact .content-body {
    padding: 0;
  }
  #contact .content-contact .pc {
    display: none;
  }
  #contact .content-contact .sp {
    display: block;
  }
  #contact .content-contact img {
    width: 100%;
  }
}

/********************
 #footer
 ********************/

#footer {
  position: relative;
}
#footer .background .fill {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #326850;
}
#footer .content {
  position: relative;
  text-align: center;
}
#footer .headline {
  padding: 0 45px;
  padding-bottom: 5%;
}
#footer .headline img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}
@media only screen and (max-width: 749px) {
  #footer .background .fill {
    height: 60%;
  }
  #footer .headline {
    padding-left: 0;
    padding-right: 0;
  }
}

/********************
 #popup
 ********************/

#popup {
}
#popup .overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100svw;
  height: 100svh;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 3;
}
#popup .center {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  overflow-y: auto;
}
#popup .content {
  position: relative;
}
#popup .content svg.ratio {
  vertical-align: bottom;
}
#popup .iframe-trim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#popup iframe {
  width: 100%;
  height: 100%;
}
#popup .content svg.ratio {
  /* width: auto;
  height: 100%;
  max-height: 85svh;
  max-width: 90svw; */
  width: 100%;
  height: 100%;
  max-width: 500px;
  max-height: 888px;
}
@media only screen and (max-width: 749px) {
  #popup .content svg.ratio {
    max-width: 88vw;
    max-height: 156.266666667vw;
  }
}
/**** .close ****/
#popup .close {
  position: absolute;
  top: 0;
  top: -25px;
  right: -25px;
  display: block;
  width: 25px;
  height: 25px;
  z-index: 4;
  cursor: pointer;
}
#popup .close::before,
#popup .close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  display: block;
  width: 100%;
  height: 1px;
  background-color: #fff;
  transform-origin: center center;
  transform: translateY(-50%);
}
#popup .close::before {
  transform: translateY(-50%) rotate(-45deg);
}
#popup .close::after {
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 749px) {
  #popup .close {
    right: -10px;
  }
}

#c_info {
  background-color: #000000;
  color: #ffffff;
  font-size: small;
}

#c_info a {
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

#c_info a:visited {
  font-weight: bold;
  text-decoration: none;
  color: #ffffff;
}

/* 公開前対応 */
.commingsoon_block {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 400px;
  padding-bottom: 120px;
}
@media only screen and (max-width: 749px) {
  #seminar .commingsoon_block {
    padding-bottom: 100px;
  }
  #movie .commingsoon_block {
    padding-bottom: 160px;
  }
}

/********************
  page
 ********************/
.page {
  letter-spacing: 0;
}
/* 下層ヘッダースタイル */
.p-header {
  background: #000;
}
.p-header_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 22px 0 32px;
}
@media screen and (max-width: 749px) {
  .p-header_inner {
    align-items: unset;
    height: 80px;
    padding: 5px 10px;
  }
}
.p-header_left {
  display: flex;
  align-items: center;
  gap: 0 30px;
}
@media screen and (max-width: 749px) {
  .p-header_left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.p-header_logo {
  display: block;
  width: 240px;
  height: fit-content;
}
@media screen and (max-width: 749px) {
  .p-header_logo {
    width: 200px;
  }
}
.p-header_logo img {
  width: 100%;
}
.p-header_title {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0.2em;
  font-weight: bold;
}
@media screen and (max-width: 749px) {
  .p-header_title {
    font-size: 14px;
  }
}
.p-header_share {
  display: flex;
  align-items: center;
  gap: 0 12px;
}
@media screen and (max-width: 749px) {
  .p-header_share {
    gap: 0 10px;
  }
}
.p-header_share-icon {
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .p-header_share-fb {
    width: 44px;
  }
}
@media screen and (max-width: 749px) {
  .p-header_share-fb img {
    width: 100%;
  }
}
@media screen and (max-width: 749px) {
  .p-header_share-x {
    width: 36px;
  }
}
@media screen and (max-width: 749px) {
  .p-header_share-x img {
    width: 100%;
  }
}
@media screen and (max-width: 749px) {
}

/* 下層コンテンツスタイル */
.p-page_inner {
  max-width: 1340px;
  margin: 0 auto;
  padding-top: 104px;
  padding-bottom: 100px;
  background: #fff;
}
@media screen and (max-width: 749px) {
  .p-page_inner {
    padding-top: 23px;
    padding-bottom: 23px;
  }
}
.p-page_content {
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  .p-page_content {
    padding: 0 5px;
  }
}
.p-page_title {
  max-width: 1014px;
  margin-bottom: -104px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 749px) {
  .p-page_title {
    width: 100%;
    max-width: unset;
    margin-bottom: 12px;
  }
}
@media screen and (max-width: 749px) {
  .p-page_title svg {
    width: 285px;
    height: 60px;
  }
}
.p-page_title span {
  display: block;
  color: #265d45;
  font-size: 20px;
  letter-spacing: 0.2em;
  font-weight: bold;
  margin-top: 15px;
  padding-left: 8px;
}
@media screen and (max-width: 749px) {
  .p-page_title span {
    font-size: 15px;
    margin-top: -8px;
    padding: 0;
  }
}

/********************
  intern
 ********************/
.intern .p-page {
  padding-top: 70px;
  padding-bottom: 92px;
}
@media screen and (max-width: 749px) {
  .intern .p-page {
    padding-top: 30px;
    padding-bottom: 64px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.p-intern_lead {
  color: #2b604a;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.875;
  margin-top: 32px;
}
@media screen and (max-width: 749px) {
  .p-intern_lead {
    margin: 0;
  }
}

/* 絞り込みタブのスタイル */
.p-filter_container {
  margin-top: 42px;
}
@media screen and (max-width: 749px) {
  .p-filter_container {
    margin-top: 33px;
  }
}
.p-filter_list {
  display: flex;
  gap: 0 13px;
}
@media screen and (max-width: 749px) {
  .p-filter_list {
    flex-wrap: wrap;
    gap: 10px 15px;
  }
}
.p-filter_option {
  color: #fff;
  font-weight: bold;
  text-align: center;
  background: #94b9ab;
  width: calc((100% - 39px) / 4);
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .p-filter_option {
    width: calc((100% - 15px) / 2);
  }
}
.p-filter_option.selected {
  background: #2b604a;
}
.p-filter_year .p-filter_option {
  font-size: 20px;
  padding: 5px;
}
@media screen and (max-width: 749px) {
  .p-filter_year .p-filter_option {
    font-size: 17px;
  }
}
.p-filter_month {
  margin-top: 20px;
}
@media screen and (max-width: 749px) {
  .p-filter_month {
    margin-top: 30px;
  }
}
.p-filter_month .p-filter_option {
  font-size: 16px;
  line-height: 1.875;
  padding: 2.5px 5px;
}
@media screen and (max-width: 749px) {
  .p-filter_month .p-filter_option {
    font-size: 13px;
    line-height: 1;
    padding: 9px 5px 8px;
  }
}

/* 一覧のスタイル */
@media screen and (max-width: 749px) {
}
.p-article_list {
  display: flex;
  flex-direction: column;
  gap: 21px 0;
  margin: 29px 0 0;
  padding: 0;
}
@media screen and (max-width: 749px) {
  .p-article_list {
    margin-top: 34px;
    gap: 13px 0;
  }
}
.p-article_item {
  list-style: none;
  border-bottom: 1px solid #2b604a;
}
.p-article_item.hidden {
  display: none;
}
.p-article_item div {
  display: flex;
  gap: 0 10px;
  color: #000;
  text-decoration: none;
  padding-bottom: 16px;
}
span.article_marker {
  background: linear-gradient(transparent 15%, #54b9946b 74%);
}
@media screen and (max-width: 749px) {
  .p-article_item div {
    flex-direction: column;
    gap: 23px 0;
    padding-bottom: 13px;
  }
}
.p-article_item .p-article_detail {
  display: flex;
  gap: 0 5px;
}
@media screen and (max-width: 749px) {
  .p-article_item .p-article_detail {
    flex-direction: column;
    gap: 5px 0;
  }
}
.p-article_item .p-article_detail_date {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  text-align: center;
  width: 130px;
  background: #2b604a;
}
@media screen and (max-width: 749px) {
  .p-article_item .p-article_detail_date {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 9px;
  }
}
.p-article_item .p-article_detail_company {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 16px;
  letter-spacing: 0.01em;
  font-weight: 500;
  width: 175px;
  background: #eaeaea;
}
@media screen and (max-width: 749px) {
  .p-article_item .p-article_detail_company {
    justify-content: flex-start;
    text-align: left;
    width: 100%;
    padding: 9px;
  }
}
.p-article_item .p-article_info {
  position: relative;
  width: calc(100% - 320px);
  padding-right: 30px;
}
@media screen and (max-width: 749px) {
  .p-article_item .p-article_info {
    width: 100%;
    padding-right: 35px;
  }
}
//**
.p-article_item .p-article_info::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  transform: rotate(45deg);
}
*/ .p-article_item .p-article_info_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  margin-top: -8px;
}

.p-viewmore_button {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 30px;
  letter-spacing: 0.15em;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  max-width: 330px;
  height: 70px;
  margin: 100px auto 0;
  background-color: #000;
  border: 1px solid #fff;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  cursor: pointer;
}
@media screen and (max-width: 749px) {
  .p-viewmore_button {
    margin-top: 32px;
  }
}
.p-viewmore_button.hidden {
  display: none;
}

/* 記事ページスタイル */
.article {
}
.article figure {
  margin: 0;
}
.article .p-page {
  padding-top: 70px;
  padding-bottom: 92px;
}
@media screen and (max-width: 749px) {
  .article .p-page {
    padding-top: 30px;
    padding-bottom: 64px;
    padding-left: 10px;
    padding-right: 10px;
  }
}
.article .p-page *[data-observe] {
  transform: translateY(2em);
  opacity: 0;
}
.article .p-page .is-active {
  animation: 0.8s ease-out 0.6s forwards slideup;
}
.article .p-page_inner {
  padding-top: 70px;
}
@media screen and (max-width: 749px) {
  .article .p-page_inner {
    padding-top: 23px;
  }
}
.p-article_head_image img {
  width: 100%;
}
.p-article_head_title {
  color: #2b604a;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 45px;
}
@media screen and (max-width: 749px) {
  .p-article_head_title {
    margin-top: 16px;
  }
}
.p-article_head_date {
  color: #2b604a;
  font-size: 12px;
  letter-spacing: 0.1em;
  font-weight: 500;
  margin-top: 26px;
}
@media screen and (max-width: 749px) {
  .p-article_head_date {
    margin-top: 8px;
  }
}
.p-article_content {
  margin-top: 37px;
}
@media screen and (max-width: 749px) {
  .p-article_content {
    margin-top: 32px;
  }
}
h2.p-article_heading {
  color: #2b604a;
  /* font-size: 16px; */
  font-weight: bold;
  line-height: 1.875;
  margin: 36px 0;
}
@media screen and (max-width: 749px) {
  .p-article_heading {
    margin: 16px 0;
  }
}
.p-article_text {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.875;
  margin: 36px 0;
}
.p-article_text_quiz {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.875;
  margin: 36px 0;
}
@media screen and (max-width: 749px) {
  .p-article_text {
    margin: 16px 0;
  }
}
.small-article-box {
  padding: 0.5em 1em;
  margin: 2em 0;
  font-weight: bold;
  // color: #2B604A;
  background: #fff;
  border: solid 2px #2b604a;
  border-radius: 10px;
}
.small-article-box p {
  margin: 0;
  padding: 0;
}
figure.p-article_image {
  margin: 36px 0;
}
@media screen and (max-width: 749px) {
  .p-article_image {
    margin: 16px 0;
  }
}
.p-article_tiktok {
  margin: 36px 0;
}
@media screen and (max-width: 749px) {
  .p-article_tiktok {
    margin: 16px 0;
  }
}
.p-article_youtube {
  position: relative;
  margin: 36px 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}
@media screen and (max-width: 749px) {
  .p-article_youtube {
    margin: 16px 0;
  }
}
.p-article_youtube iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 記事下リコメンドスタイル */
.p-article_recommend {
  margin-top: 110px;
}
@media screen and (max-width: 749px) {
  .p-article_recommend {
    margin-top: 48px;
  }
}
.p-article_recommend_title {
  text-align: center;
  margin: 0;
}
.p-article_recommend_list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px 160px;
  margin: 33px 0 0;
  padding: 0;
}
@media screen and (max-width: 749px) {
  .p-article_recommend_list {
    gap: 50px 11px;
    margin-top: 16px;
  }
}
.p-article_recommend_item {
  width: calc((100% - 160px) / 2);
  list-style: none;
}
@media screen and (max-width: 749px) {
  .p-article_recommend_item {
    width: calc((100% - 11px) / 2);
  }
}
.p-article_recommend_item_title {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.42857142857;
  margin: 17px 0 0;
}
@media screen and (max-width: 749px) {
  .p-article_recommend_item_title {
    line-height: 1.5;
    margin-top: 8px;
  }
}
.p-article_recommend_item_date {
  font-size: 12px;
  letter-spacing: 0.2em;
  font-weight: 500;
  margin: 11px 0 0;
}
@media screen and (max-width: 749px) {
  .p-article_recommend_item_date {
    margin-top: 8px;
  }
}
.p-article_recommend_item_button {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.1em;
  font-weight: bold;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  width: 100%;
  margin-top: 15px;
  padding: 15px;
  background-color: rgba(43, 101, 76, 0.6);
  border-radius: 999px;
  border: 1px solid #fff;
  box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 749px) {
  .p-article_recommend_item_button {
    margin-top: 16px;
    padding: 15px;
  }
}

/********************
 Fixed Banner
 ********************/

.fixed-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 320px;
  height: auto;
  z-index: 1000;
  transition: all 0.3s ease;
}

.fixed-banner-close {
  position: absolute;
  top: -32px;
  left: -32px;
  width: 32px;
  height: 32px;
  background-color: rgba(0, 0, 0, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1001;
}

.fixed-banner-close:before,
.fixed-banner-close:after {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #ffffff;
}

.fixed-banner-close:before {
  transform: rotate(45deg);
}

.fixed-banner-close:after {
  transform: rotate(-45deg);
}

.fixed-banner-content {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  text-align: center;
}

.fixed-banner-title {
  font-size: 16px;
  font-weight: bold;
  color: white;
  margin-bottom: 10px;
  line-height: 1.3;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.fixed-banner-text {
  font-size: 14px;
  color: #333;
  margin-bottom: 15px;
  line-height: 1.4;
}

.fixed-banner-button {
  display: inline-block;
  padding: 8px 16px;
  background-color: #285d45;
  font-family: var(--s-font-85a8b843);
  color: #ffffff;
  text-decoration: none;

  font-size: 14px;
  font-weight: bold;
  transition: all 0.2s ease;
  background-color: #333;
  width: 100%;
}

.fixed-banner.hidden {
  display: none;
}

@media only screen and (max-width: 749px) {
  .fixed-banner {
    bottom: 15px;
    right: 15px;
    width: 280px;
    height: auto;
  }
  .fixed-banner-close {
    position: absolute;
    top: -18px;
    left: -18px;
  }
  .fixed-banner-content {
    padding: 12px;
  }

  .fixed-banner-title {
    font-size: 14px;
    margin-bottom: 8px;
  }

  .fixed-banner-text {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .fixed-banner-button {
    padding: 6px 12px;
    font-size: 12px;
  }
}
