@charset "UTF-8";
body {
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #f5f5f5;
}

html {
  scroll-behavior: smooth;
}

a {
  text-decoration: none;
  color: #000;
}

li {
  list-style: none;
}

img {
  display: block;
  /* width: 100% */
}

.c-container {
  margin: auto;
  max-width: 1080px;
}

.dashed-border {
  width: 114px !important;
}

/* --------------------------ヘッダー-------------------------------------------- */
.l-header {
  position: relative;
  z-index: 99;
  width: 100%;
  padding: 40px;
  background-color: #fff;
}

.header-inner {
  display: flex;
}
.header-inner h1 {
  width: 100%;
  height: 100%;
  max-width: 350px;
  min-width: 212px;
}
.header-inner img {
  width: 100%;
}
.header-inner nav {
  position: relative;
  display: flex;
  place-content: end;
  width: 100%;
}

.opacity {
  opacity: 0;
  pointer-events: none;
  overflow: hidden;
}

.nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.nav-list li {
  font-size: clamp(16px, 1.5vw, 18px);
  font-weight: 700;
}
.nav-list li:not(:last-child) {
  margin: 0 3% 0 0;
}
.nav-list li a {
  transition: 0.6s;
  letter-spacing: 2px;
}
.nav-list li:nth-child(1) a:hover {
  color: #87b729;
  transition: 0.3s;
}
.nav-list li:nth-child(2) a:hover {
  color: #e69012;
  transition: 0.3s;
}
.nav-list li:nth-child(3) a:hover {
  color: #d786af;
  transition: 0.3s;
}
.nav-list li:nth-child(4) a:hover {
  color: #329acf;
  transition: 0.3s;
}
.nav-list li:nth-child(5) a:hover {
  color: #119891;
  transition: 0.3s;
}
.nav-list li:nth-child(6) a:hover {
  color: #cfd420;
  transition: 0.3s;
}
.nav-list li:nth-child(7) a:hover {
  color: #e85a49;
  transition: 0.3s;
}

/* --------------------------ファーストビュー-------------------------------------------- */
.fv-mask {
  background: linear-gradient(
    180deg,
    #fff 0%,
    #fff 50%,
    rgba(255, 255, 255, 0) 50%,
    rgba(255, 255, 255, 0) 100%
  );
}

.fv-bg {
  width: 100%;
  height: 100vh;
  padding: 30px 0 0 0;
  margin: 0 auto;
  background-size: 100%;
  background-position: center center;
  background-image: url(./img/first_bg.png);
}

.slider {
  border-radius: 20px;
  margin: 0 40px 0 40px;
}

.slick-list {
  overflow: hidden;
  border-radius: 20px;
  height: calc(100vh - 200px);
  background: #fff;
}
.slide-wrap {
  position: relative;
  z-index: 0;
  background: #fff;
  overflow: hidden;
}

.slide-wrap:before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120%;
  height: calc(100vh - 100px);
  background-size: cover;
  filter: blur(20px);
  z-index: -1;
}
/* .slide-wrap-01:before {
  background-image: url(./img/first_view_05.jpg);
}
.slide-wrap-02:before {
  background-image: url(./img/first_view_02.jpg);
}
.slide-wrap-03:before {
  background-image: url(./img/first_view_01.jpg);
}
.slide-wrap-04:before {
  background-image: url(./img/first_view_04.jpg);
}
.slide-wrap-05:before {
  background-image: url(./img/first_view_03.jpg);
}
.slide-wrap-06:before {
  background-image: url(./img/first_view_06.jpg);
} */

.slide-wrap img {
  display: block;
  height: calc(100vh - 200px);
  margin: 0 auto;
}

.slick-arrow {
  display: none !important;
}

.slick-dots {
  bottom: 24px;
}
.slick-dots li {
  width: 16px;
}
.slick-dots li.slick-active button::before {
  opacity: 1;
  color: #fff;
}
.slick-dots li button::before {
  color: #aaaaaa;
  opacity: 1;
  font-size: 10px;
}

/* --------------------------おしらせ-------------------------------------------- */
.news-bg {
  padding: 0 16px;
}

.news-wrap {
  padding: 48px 48px 24px;
  margin: 56px auto 0 auto;
  transition: 0.3s;
  border-radius: 16px;
  border: 1px solid #f1f1f1;
  box-shadow: 2px 3px 3px rgba(206, 206, 206, 0.25);
  background-color: #fff;
  transition: transform 0.3s;
}

.news-inner {
  display: flex;
}

.news-section-title {
  font-size: 28px;
  font-weight: 700;
  margin-right: 6.67%;
  white-space: nowrap;
  letter-spacing: 2px;
}

.news-list {
  width: 100%;
  font-weight: 700;
  opacity: 1;
  background-image: linear-gradient(to right, #ccc 4px, transparent 0px);
  background-size: 13px 2px;
  background-repeat: repeat-x;
  background-position: right top;
}
.news-list.is-hidden {
  opacity: 0;
  height: 0;
  margin: 0;
}
.news-list dl {
  position: relative;
  padding: 20px 0;
  background-image: linear-gradient(to right, #ccc 4px, transparent 0px);
  background-size: 13px 2px;
  background-repeat: repeat-x;
  background-position: right bottom;
}
.news-list #news-link {
  transition: 0.6s;
}

/* 初期状態で5番目以降の要素を非表示にする */
.wp-block-create-block-news:nth-child(n + 5) {
  display: none;
}

/* 非表示のニュースコンテンツのスタイル */
.wp-block-create-block-news.hidden {
  display: block;
}

#more {
  transition: background 0.3s ease;
  transform: scale(1, 1);
}

.more-btn-wrap {
  display: grid;
}

.news-time {
  color: #7a7a7a;
  font-weight: 500;
  margin-right: 24px;
}

.more-btn {
  display: flex;
  place-content: end;
  place-items: end;
  align-items: flex-start;
  margin: 25px 0 0 0;
  font-weight: 700;
  transition: 0.3s;
}
.more-btn:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.more-btn::after {
  content: url(./img/arrow_down.svg);
  margin: 0 0 0 12px;
  rotate: 0deg;
  transition: 0.5s;
}
.more-btn.is-btn-hidden {
  display: none;
}

.more-btn.is-active-rotate::after {
  rotate: 180deg;
  transition: 0.5s;
  height: 24px;
}

/* --------------------------かんがえ-------------------------------------------- */
#concept {
  position: relative;
}

.primary-bg {
  position: relative;
  padding: 0 16px;
  background-size: cover;
  background-image: url(./img/primary_bg.svg);
}
.primary-bg:before {
  content: "";
  position: absolute;
  top: 64px;
  left: 69px;
  width: 5vw;
  height: 5vw;
  z-index: 0;
  min-width: 33.77px;
  min-height: 33.77px;
  animation: 2s fuwafuwa infinite;
  background-size: cover;
  background-image: url(./img/object_01.svg);
}
.primary-bg:after {
  content: "";
  position: absolute;
  top: 64px;
  right: 35.89px;
  width: 12.2vw;
  height: 8.7736vw;
  z-index: 0;
  animation: 3s fuwafuwa infinite;
  background-size: cover;
  background-image: url(./img/object_02.svg);
}

.section-title-wrap {
  padding: 100px 0 0 0;
}
.section-title-wrap img {
  margin: auto;
  width: 132px;
}

.section-title {
  padding: 8px 0 0 0;
  font-size: 40px;
  font-weight: 700;
  text-align: center;
  letter-spacing: 4px;
}

.primary-contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(47.1488%, 1fr));
  place-items: center;
  -moz-column-gap: 40px;
  column-gap: 40px;
  margin: 64px 0 0 0;
  padding: 0 0 215px 0;
}
.primary-contents p {
  font-size: 18px;
  font-weight: 700;
  line-height: 45px;
}

.youtube-frame {
  position: relative;
  display: grid;
  place-content: center;
  place-items: center;
  width: 100%;
  height: 298.27px;
  padding-top: 56.25%;
  border-radius: 24px;
  background-size: cover;
  background-image: url(./img/youtube_frame.svg);
}
.youtube-frame:before {
  position: absolute;
  top: -46.73px;
  left: 13.9px;
  z-index: 0;
  content: url(./img/youtube_frame_eye.svg);
}

.youtube {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  border-radius: 39.86px;
  padding: 23.86px;
}

/* --------------------------けんきゅう-------------------------------------------- */
.secondary-bg {
  position: relative;
  z-index: 0;
  padding: 0 16px;
  background-position: right 115px;
  background-image: url(./img/secondary_dot.svg);
}
.secondary-bg::before {
  content: "";
  position: absolute;
  top: -14.41px;
  left: 39px;
  width: 240px;
  height: 135px;
  z-index: 0;
  background-size: cover;
  background-image: url(./img/object_03.svg);
  animation-name: updown1;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.secondary-bg::after {
  content: "";
  position: absolute;
  top: -101px;
  right: 64px;
  width: 100px;
  height: 90px;
  z-index: 0;
  background-size: cover;
  background-image: url(./img/object_04.svg);
  animation-name: updown1;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.secondary-title-wrap {
  padding-top: 0;
}

.secondary-contents {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  gap: 40px;
  margin: 64px 0 0 0;
}

.secondary-column {
  padding: 24px 24px 0;
  border: 1px solid #f1f1f1;
  box-shadow: 2px 3px 3px rgba(206, 206, 206, 0.25);
  border-radius: 24px;
  background-color: #fff;
  cursor: pointer;
  transition: 0.6s;
}

.secondary-column:nth-child(1):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #87b729;
}
.secondary-column:nth-child(2):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #e69012;
}
.secondary-column:nth-child(3):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #d786af;
}
.secondary-column:nth-child(4):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #329acf;
}
.secondary-column:nth-child(5):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #cfd420;
}
.secondary-column:nth-child(6):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #e85a49;
}
.secondary-column:nth-child(7):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #88d2bb;
}
.secondary-column:nth-child(8):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #bb9ce8;
}
.secondary-column:nth-child(9):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #c35077;
}
.secondary-column:nth-child(10):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #c8aa3c;
}
.secondary-column:nth-child(11):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #fd6ef8;
}
.secondary-column:nth-child(12):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #008e8f;
}
.secondary-column:nth-child(13):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #f1a229;
}
.secondary-column:nth-child(14):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #61b8f5;
}
.secondary-column:nth-child(15):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #ed7f68;
}

.secondary-column img {
  width: 100%;
  height: 268px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}
.secondary-column p {
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding: 16px 0;
  letter-spacing: 2px;
}

.modal {
  position: fixed;
  display: grid;
  place-content: center;
  place-items: center;
  z-index: 9998;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  text-align: center;
  background-color: rgba(113, 113, 113, 0.7);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  overflow: hidden;
  pointer-events: none;
}

.is-active {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.modal-close-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 99;
}

/* モーダル内側の指定 */
.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 1160px;
  width: 100%;
  z-index: 9999;
}

/* モーダルを閉じるボタンの指定 */
.modal-close {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 27px;
  right: 29px;
  color: rgb(122, 122, 122);
  font-size: 16px;
  font-weight: 700;
  background: none;
  cursor: pointer;
  padding: 5px 10px 5px 15px;
  border-radius: 100px;
  transition: 0.6s;
}
.modal-close:hover {
  opacity: 0.7;
  transition: 0.3s;
  color: #fff;
  background-color: #222;
}

/* モーダルのコンテンツ部分の指定 */
.modal-content {
  display: flex;
  -moz-column-gap: 40px;
  column-gap: 40px;
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: 40px;
  border-radius: 8px;
}
.modal-content img {
  width: 44.445%;
  height: 22.595vw;
  min-height: 310px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 24px;
}

.modal-txt-contents {
  display: block;
  width: 48%;
  padding: 24px 0 0 0;
}

.modal-txt-contents h2 {
  font-size: 24px;
  font-weight: 700;
}
.modal-txt-contents p {
  font-size: 16px;
  font-weight: 400;
  line-height: 21.6px;
  padding: 24px 0 32px 0;
}
.modal-txt-contents button {
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 16px 16px 40px;
  color: #fff;
  width: 100%;
  max-width: 288px;
  border-radius: 72px;
  background-color: #222;
  letter-spacing: 2px;
}
.modal-txt-contents button:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.modal-txt-contents .modal-youtube-btn {
  color: #222;
  background-color: #fff;
  margin-top: 24px;
  width: 100%;
  justify-content: center;
  transition: 0.3s;
  outline: 1px solid #222;
  outline-offset: -1px;
}
.modal-txt-contents .modal-youtube-btn:hover {
  color: #fff;
  outline: 1px solid #fff;
  transition: 0.3s;
  background-color: #717171;
}
.modal-txt-contents .modal-youtube-btn .modal-arrow-youtube {
  content: "";
  width: 24px;
  height: 24px;
  margin: 0 4px 0 24px;
  background: #fff;
  border-radius: 50%;
  content: url(./img/arrow_menu_right.svg);
}
.modal-txt-contents .modal-arrow {
  content: url(./img/modal_arrow.svg);
  padding: 0 4px 0 24px;
}

.modal-Youtube-btn {
  display: block;
  margin-top: 24px;
}

.is-overflow-active {
  overflow: hidden;
}

.youtube-contents {
  display: flex;
  place-items: center;
  -moz-column-gap: 40px;
  column-gap: 40px;
  margin: 80px 0 53px 0;
}

.youtube-white-frame {
  width: 100%;
  height: 300px;
  max-width: 524px;
  max-height: 300px;
  padding: 24px;
  border: 1px solid #f1f1f1;
  box-shadow: 2px 3px 3px rgba(206, 206, 206, 0.25);
  border-radius: 24px;
  background-color: #fff;
}

.youtube-secondary {
  width: 100%;
  height: 100%;
  border-radius: 24px;
}

.youtube-contents-title {
  font-size: 24px;
  font-weight: 700;
  padding: 0 0 16px 0;
}

.youtube-contents-txt {
  font-size: 16px;
  padding: 0 0 24px 0;
}

.youtube-btn {
  display: flex;
  place-items: center;
  font-size: 18px;
  font-weight: 700;
  padding: 16px 0 16px 40px;
  border-radius: 72px;
  background-color: #fff;
  transition: 0.6s;
  letter-spacing: 2px;
}
.youtube-btn:hover {
  transition: 0.1s;
  outline: 1px solid #222;
  outline-offset: -1px;
  opacity: 0.8;
}

.arrow-right {
  margin: 0 16px 0 24px;
  content: url(./img/arrow_right.svg);
}

/* --------------------------かつどう-------------------------------------------- */
#work {
  position: relative;
}
/* #third::after {
  content: "";
  position: absolute;
  width: 214px;
  height: 175px;
  bottom: 16%;
  right: 21.3%;
  z-index: -1;
  background-size: cover;
  background-image: url(./img/object_07.svg);
} */

#books {
  position: relative;
}

#books .third-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 16px 14px;
  gap: 16px;
  height: 100%;
  position: relative;
}

#books .third-contents-wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: stretch;
}

/* #books .third-contents-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
} */

#books .third-contents-img-wrap {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 327px;
}

#books .new-badge {
  width: 71px;
  height: 71px;
  position: absolute;
  top: -20px;
  left: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #E8A4C7;
  font-weight: 700;
  border-radius: 100%;
  z-index: 10;
}

#books .third-contents-img-wrap img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 0;
}

/* 画像の向きに応じたスタイル */
#books .third-contents-img-wrap.img-landscape img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

#books .third-contents-img-wrap.img-portrait img {
  width: 170px;
  height: auto;
  max-height: 272px;
  object-fit: cover;
}

#books .third-contents-img-wrap.img-square img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#books .third-contents-title {
  font-size: 20px;
  font-weight: 700;
}

.book-bibliographic-info {
  margin-bottom: 20px;
}

.third-bg {
  position: relative;
  background-size: cover;
  background-image: url(./img/third_bg.svg);
}
.third-bg::before {
  content: "";
  position: absolute;
  width: 122px;
  height: 105px;
  top: -22px;
  left: 60px;
  z-index: 0;
  background-size: cover;
  background-image: url(./img/object_05.svg);
  animation-name: spinA;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.third-bg:after {
  content: "";
  position: absolute;
  width: 184.97px;
  height: 203px;
  top: -127.405px;
  right: 40px;
  z-index: -1;
  background-size: cover;
  background-image: url(./img/object_06.svg);
  animation-name: spinA;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

.third-wrap {
  position: relative;
  z-index: 0;
}

.third-title-wrap {
  padding: 147px 0 64px 0;
}

.third-contents-wrap {
  display: grid;
  gap: 40px;
  grid-template-columns: repeat(auto-fit, minmax(48.1488%, 1fr));
  padding: 0 0 8.54164vw 0;
}

.third-contents {
  padding: 24px 24px 0 24px;
  border-radius: 24px;
  border: 1px solid #f1f1f1;
  box-shadow: 2px 3px 3px rgba(206, 206, 206, 0.25);
  background-color: #fff;
  cursor: pointer;
  transition: 0.6s;
  max-width: 600px;
  margin: 0 auto;
}
/* .third-contents:nth-child(1):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #87b729;
}
.third-contents:nth-child(2):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #e69012;
}
.third-contents:nth-child(3):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #d786af;
}
.third-contents:nth-child(4):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #329acf;
}
.third-contents:nth-child(5):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #cfd420;
}
.third-contents:nth-child(6):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #e85a49;
}
.third-contents:nth-child(7):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #88d2bb;
}
.third-contents:nth-child(8):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #bb9ce8;
}
.third-contents:nth-child(9):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #c35077;
}
.third-contents:nth-child(10):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #c8aa3c;
}
.third-contents:nth-child(11):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #fd6ef8;
}
.third-contents:nth-child(12):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #008e8f;
}
.third-contents:nth-child(13):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #f1a229;
}
.third-contents:nth-child(14):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #61b8f5;
}
.third-contents:nth-child(15):hover {
  transition: 0.3s;
  color: #fff;
  background-color: #ed7f68;
} */
.third-contents img {
  width: 100%;
  border-radius: 16px;
}
.third-contents p {
  font-size: 24px;
  font-weight: 700;
  padding: 16px 0;
  text-align: center;
  letter-spacing: 2px;
}

.forth-bg {
  position: relative;
  background-size: contain;
  background-position: center bottom;
  background-image: url(./img/forth_bg.svg);
}

.forth-bg::before {
  content: "";
  position: absolute;
  width: 122px;
  height: 105px;
  top: -22px;
  left: 60px;
  z-index: 0;
  background-size: cover;
  background-image: url(./img/object_10.svg);
  animation-name: spinA;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}
.forth-bg:after {
  content: "";
  position: absolute;
  width: 184.97px;
  height: 203px;
  top: -127.405px;
  right: 40px;
  z-index: -1;
  background-size: contain;
  background-image: url(./img/object_08.svg);
  animation-name: spinA;
  animation-duration: 5s;
  animation-iteration-count: infinite;
}

/* --------------------------すたっふ-------------------------------------------- */
.forth-wrap {
  position: relative;
  padding: 0 16px;
  margin: 0 0 116px 0;
}
.forth-wrap::before {
  content: "";
  position: absolute;
  left: 2.78%;
  width: 196px;
  height: 135px;
  z-index: 0;
  background-size: cover;
  background-image: url(./img/object_09.svg);
  animation-name: updown1;
  animation-delay: 0s;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}
.forth-wrap::after {
  content: "";
  position: absolute;
  width: 158px;
  height: 113px;
  top: -12%;
  right: 2.78%;
  background-size: cover;
  background-image: url(./img/object_11.svg);
  animation-name: updown1;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.forth-title-wrap {
  padding: 77px 0 60px 0;
}

.forth-contents-wrap {
  position: relative;
  z-index: 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(22.22%, 1fr));
  -moz-column-gap: 40px;
  column-gap: 40px;
  row-gap: 69.25px;
}

.forth-contents {
  display: grid;
  place-content: center;
  place-items: center;
  cursor: pointer;
  transition: 0.6s;
}
.forth-contents img {
  width: 100%;
}
.forth-contents img:hover {
  transition: 0.3s;
  rotate: -3deg;
}
.forth-contents p {
  font-size: 24px;
  font-weight: 700;
  padding: 16px 0 8px 0;
  letter-spacing: 2px;
}

.modal-staff-container {
  max-width: 1003px;
}

.modal-staff-content {
  display: flex;
}
.modal-staff-content img.staff-img {
  width: 163px;
  height: 163px;
  min-height: -moz-fit-content;
  min-height: fit-content;
}

.modal-staff-txt {
  width: 100vw;
  max-width: 720px;
  padding: 0;
}
.modal-staff-txt h3 {
  font-size: 16px;
  font-weight: 700;
  padding: 16px 0;
}
.modal-staff-txt p {
  width: 100%;
  font-size: 16px;
  line-height: 22.4px;
  padding: 0;
}
.modal-staff-txt img.dashed-modal {
  width: 114px;
  height: auto;
  min-height: auto;
}

/* --------------------------フッター-------------------------------------------- */
.footer-bg {
  height: 26.042vw;
  display: grid;
  justify-content: center;
  align-items: end;
  background-size: cover;
  background-position: center;
  background-image: url(./img/footer_bg.jpg);
}

.footer-column {
  display: grid;
  place-content: center;
  place-items: center;
  margin-bottom: 20px;
}
.footer-column h3 {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  padding: 10px 0 24px 0;
  transition: 0.3s;
  letter-spacing: 2px;
  margin-top: 5px;
}
.footer-column a {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 2px;
}
.footer-column a:hover {
  transition: 0.3s;
  opacity: 0.7;
}

@keyframes fuwafuwa {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
}
@keyframes updown1 {
  0% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-20px);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes spinA {
  0% {
    transform: scale(1) rotate(72deg);
  }
  25% {
    transform: scale(1) rotate(144deg);
  }
  75% {
    transform: scale(1) rotate(216deg);
  }
  75% {
    transform: scale(1) rotate(288deg);
  }
  100% {
    transform: scale(1) rotate(360deg);
  }
} /*# sourceMappingURL=style.css.map */

/* --responsive-- */
@media screen and (min-width: 1025px) {
  .header-nav-menu {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .br {
    display: none;
  }
  .ham-wrapper {
    width: 24px;
    height: 100%;
    right: 0;
    position: absolute;
    top: 12px;
    cursor: pointer;
  }
  .ham-icon,
  .ham-icon::before,
  .ham-icon::after {
    border-radius: 8px;
    background-color: #222;
    width: 24px;
    height: 2px;
    right: 0;
    z-index: 9999;
  }
  .ham-icon {
    position: relative;
    top: 15px;
    transition: background 0.3s ease;
  }
  .ham-icon::before,
  .ham-icon::after {
    content: "";
    display: block;
    position: absolute;
  }
  .ham-icon::before {
    top: 6px;
  }
  .ham-icon::after {
    top: -6px;
  }
  .ham-wrapper.active .ham-icon {
    background-color: rgba(0, 0, 0, 0);
  }
  .ham-wrapper.active .ham-icon::before,
  .ham-wrapper.active .ham-icon::after {
    top: 0;
  }
  .ham-wrapper.active .ham-icon::before {
    transform: rotate(45deg);
  }
  .ham-wrapper.active .ham-icon::after {
    transform: rotate(-45deg);
  }
  .ham-icon::before,
  .ham-icon::after {
    transition: top 0.3s ease, transform 0.3s ease;
  }
  .header-nav-menu {
    position: fixed;
    left: 0;
    top: 0;
    z-index: 51;
    width: 100%;
    transform: translateY(-100%);
    background-color: #fff;
    transition: transform ease 0.4s;
  }
  .header-nav-menu.active {
    transform: translateY(0);
  }
  .nav-menu-list {
    padding: 54px 16px 48px 16px;
  }
  .nav-menu-item {
    border-bottom: 1px solid #ebebeb;
  }
  .nav-menu-item a {
    position: relative;
    font-size: 16px;
    font-weight: 700;
    text-align: left;
    text-decoration: none;
    display: block;
    padding: 17px 0;
  }
  .nav-menu-item a::before {
    content: url(./img/arrow_menu_right.svg);
    position: absolute;
    right: 0;
  }
  /* 背景 */
  .ham-bg {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    content: "";
    width: 100vw;
    height: 100vh;
    z-index: 50;
    background: rgba(0, 0, 0, 0.6);
  }
  .ham-bg.active {
    display: block;
  }
  /* --------------------------ヘッダー-------------------------------------------- */
  .l-header {
    position: fixed;
    width: 100%;
    height: 54px;
    padding: 0 16px;
  }
  .header-inner {
    height: 100%;
  }
  .header-inner h1 {
    display: grid;
    place-items: center;
    max-width: 212px;
    width: 100%;
  }
  .nav-list {
    display: none;
  }
  .sp-header {
    display: grid;
    place-content: center;
  }
  /* --------------------------ファーストビュー-------------------------------------------- */
  .fv-mask {
    padding-top: 54px;
  }
  .fv-bg {
    height: auto;
  }
  .slider {
    margin: 0 16px;
  }
  .slick-list {
    overflow: hidden;
    border-radius: 20px;
    height: auto;
  }

  .slide-wrap {
    overflow: inherit;
  }

  .slide-wrap img {
    opacity: 0;
    /* heightはファイル下部にまとめています */
  }
  .slide-wrap:before {
    top: 0;
    left: 0;
    width: 100%;
    filter: blur(0);
    background-size: 102%;
  }

  .slick-dots {
    bottom: 6px;
  }
  .slick-dots li {
    width: 8px;
  }
  .slick-dots li.slick-active button::before {
    opacity: 1;
    color: #fff;
  }
  .slick-dots li button::before {
    color: #aaaaaa;
    opacity: 1;
    font-size: 6px;
  }
  /* --------------------------おしらせ-------------------------------------------- */
  .news-wrap {
    margin: 40px auto 0 auto;
    padding: 24px 16px 24px;
  }
  .news-inner {
    flex-direction: column;
  }
  .news-section-title {
    font-size: 20px;
    margin: 0 0 22px 0;
  }
  .news-list a {
    /* display: flex; */
  }
  .news-time {
    margin: 0 10px 0 0;
    display: block;
  }
  /* --------------------------かんがえ-------------------------------------------- */
  .primary-bg {
    position: relative;
    padding: 0 16px;
    background-size: 216%;
    background-position: 70% 38%;
  }
  .primary-bg:before {
    top: 20px;
    left: 16px;
  }
  .primary-bg:after {
    top: 72.07px;
    width: 14vw;
    height: 10.162vw;
  }
  .primary-contents {
    display: flex;
    flex-direction: column-reverse;
    padding: 0 0 100px 0;
  }
  .primary-contents p {
    font-size: 16px;
  }
  .youtube-frame {
    margin: 0 0 24px 0;
    height: 164.85px;
    border-radius: 16px;
  }
  .youtube {
    border-radius: 32px;
    padding: 15.7px;
  }
  .section-title {
    font-size: 28px;
  }
  .section-title-wrap img {
    width: 94px;
  }
  /* --------------------------けんきゅう-------------------------------------------- */
  .secondary-bg {
    background-size: 68.27%;
    background-position: right 70px;
  }
  .secondary-bg::before {
    width: 84px;
    height: 47px;
    top: -24px;
    left: 8px;
  }
  .secondary-bg::after {
    width: 38px;
    height: 34px;
    top: -76px;
    right: 16px;
  }
  .secondary-contents {
    grid-template-columns: repeat(auto-fit, minmax(40%, 1fr));
    -moz-column-gap: 17px;
    column-gap: 17px;
    row-gap: 16px;
    margin: 24px 0 0 0;
  }
  .secondary-column {
    padding: 12px 12px 0;
  }
  .secondary-column p {
    font-size: 16px;
    letter-spacing: 0;
  }
  .secondary-column img {
    height: 34.934vw;
  }
  .youtube-contents {
    flex-direction: column;
    margin: 32px 0 16px 0;
  }
  .youtube-white-frame {
    height: 52.8vw;
    max-width: none;
    max-height: none;
    padding: 16px;
    border-radius: 16px;
  }
  .youtube-secondary {
    border-radius: 8px;
  }
  .youtube-contents-title {
    padding: 16px 0;
    text-align: center;
  }
  .youtube-contents-txt {
    font-size: 14px;
    padding: 0 0 16px 0;
  }
  .youtube-btn {
    width: 210px;
    font-size: 16px;
    padding: 10px 0 10px 24px;
  }
  .arrow-right {
    width: 18px;
    margin: 0 12px 0 16px;
  }
  .modal-content {
    flex-direction: column;
    place-content: center;
    place-items: center;
    padding: 52px 16px 32px 16px;
  }
  .modal-content img {
    width: 100%;
    height: 39.841vw;
    min-height: 200px;
    border-radius: 16px;
  }
  .modal-close {
    top: 19px;
    right: 21px;
  }
  .modal-txt-contents {
    display: grid;
    place-content: center;
    width: 100%;
    padding: 16px 0 0 0;
  }
  .modal-txt-contents h2 {
    display: block;
    font-size: 18px;
    text-align: left;
  }
  .modal-txt-contents h2 p {
    font-size: 14px;
    padding: 16px 0 32px 0;
    line-height: 18.9px;
  }
  .modal-txt-contents button {
    max-width: 236px;
    margin: auto;
    padding: 10px 12px 10px 24px;
    font-size: 16px;
  }
  .modal-txt-contents button .modal-arrow {
    padding: 0 0px 0 16px;
  }
  /* --------------------------かつどう-------------------------------------------- */
  .third-bg {
    background-position: center top;
    background-size: 240%;
  }
  .third-bg::before {
    width: 51px;
    height: 44px;
    top: 26px;
    left: 16px;
  }
  .third-bg::after {
    width: 58px;
    height: 63px;
    top: -40px;
    right: 16px;
  }
  .third-wrap {
    padding: 0 16px;
  }
  .third-title-wrap {
    padding: 100px 0 24px 0;
  }
  .third-contents {
    padding: 16px 16px 0 16px;
    border-radius: 16px;
  }
  .third-contents h2 {
    font-size: 16px;
    padding: 12px 0;
  }
  .third-contents p {
    font-size: 16px;
    padding: 12px 0;
  }
  .third-contents img {
    border-radius: 8px;
  }
  .third-contents-wrap {
    gap: 24px;
    padding: 0 0 100px 0;
  }

  /* --------------------------すたっふ-------------------------------------------- */
  .forth-wrap {
    position: relative;
  }
  .forth-wrap::before {
    top: -50px;
    left: 16px;
    width: 98px;
    height: 71px;
  }
  .forth-wrap::after {
    top: -60px;
    right: 16px;
    width: 63px;
    height: 45px;
  }
  .forth-title-wrap {
    padding: 0 0 24px 0;
  }
  .forth-contents-wrap {
    grid-template-columns: repeat(auto-fit, minmax(31.22%, 1fr));
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 48px;
  }
  .modal-staff-container {
    max-width: none;
  }
  .modal-staff-txt {
    max-width: none;
    display: grid;
    place-content: center;
    place-items: center;
  }
  .modal-staff-txt h2 {
    padding: 0 0 8px 0;
  }
  .modal-staff-txt h3 {
    padding: 24px 0 12px 0;
  }
  img.staff-img {
    width: 163px;
    height: 163px;
  }
  img.dashed-modal {
    width: 114px;
    height: auto;
  }
  /* --------------------------フッター-------------------------------------------- */
  .footer-bg {
    height: 58.667vw;
    background-position: center;
  }
  .footer-column {
    margin: 0 0 6.83168vw 0;
  }
  .footer-column h3 {
    font-size: 28px;
    padding: 0 0 11px 0;
  }
  .footer-column a {
    font-size: 16px;
  }
  .footer-title-pi {
    width: 94px;
  }
}
@media screen and (max-width: 1024px) and (min-width: 680px) {
  .forth-wrap {
    padding: 100px 16px;
  }
  .wave-wrap {
    position: relative;
    background: #f5f5f5;
    height: 150px;
  }
  .wave {
    position: absolute;
    height: 150px;
    width: 100%;
    background: #fff;
    bottom: 0;
  }
  .wave::before,
  .wave::after {
    content: "";
    display: block;
    position: absolute;
    border-radius: 100% 50%;
  }
  .wave::before {
    width: 100%;
    height: 90%;
    background-color: #fff;
    top: 60%;
  }
  .wave::after {
    width: 55%;
    height: 100%;
    background-color: #fff;
    left: -1.5%;
    top: 40%;
  }
  .slide-wrap img {
    height: 500px;
  }
} /*# sourceMappingURL=responsive.css.map */
@media screen and (max-width: 679px) {
  .slide-wrap img {
    height: 226px;
  }
}

.third-contents-img-wrap {
  position: relative;
  width: 100%;
}

/* 画像の向きに応じたスタイル */
.third-contents-img-wrap.img-landscape img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.third-contents-img-wrap.img-portrait img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.third-contents-img-wrap.img-square img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

#work .third-contents-img-wrap img {
  height: auto;
}

.third-contents-none {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(137, 210, 255, 0.76);
  color: #fff;
  font-weight: bold;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.third-contents-none p {
  font-size: 24px;
}
.third-contents-img-wrap02 {
  position: relative;
  width: 44.445%;
  height: 22.595vw;
  min-height: 310px;
  object-fit: cover;
}
.third-contents-img-wrap02 img {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .third-contents-none {
    border-radius: 8px;
  }
  .third-contents-none p {
    font-size: 20px;
  }
  .third-contents-img-wrap02 {
    width: 100%;
    height: auto;
    min-height: unset;
  }
}
.link-btn {
  /* display: flex;
  align-items: center; */
  text-align: left;
}
.link-btn svg {
  flex-shrink: 0;
  height: auto;
  position: relative;
  top: 5px;
  z-index: -1;
}

.forth-contents img {
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

@media screen and (max-width: 1024px) {
  #books .third-contents-wrap {
    grid-template-columns: repeat(2, 1fr);
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 48px;
  }

  #books .third-contents-img-wrap {
    min-height: 138px;
  }

  #books .third-contents-img-wrap.img-landscape img {
    width: 149px;
    height: 83px;
    object-fit: cover;
  }

  #books .third-contents-img-wrap.img-portrait img {
    width: 81px;
    height: 138px;
    max-height: 138px;
    object-fit: cover;
  }

  #books .third-contents {
    padding: 12px 7px;
  }

  #books .new-badge {
    width: 36px;
    height: 36px;
    font-size: 10px;
    left: -8px;
    top: -15px;
  }

  .forth-bg {
    background-position: center bottom;
    background-size: 240%;
  }
  .forth-bg::before {
    width: 51px;
    height: 44px;
    top: 26px;
    left: 16px;
  }
  .forth-bg::after {
    width: 58px;
    height: 63px;
    top: -40px;
    right: 16px;
  }
}
