@charset "UTF-8";
.btn_link, .btn_link-hiro {
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  min-width: -moz-fit-content;
  min-width: fit-content;
  width: min(30%, 500px);
  background-color: #ffffa3;
  border-radius: 9999px;
  border: clamp(1.5px, 0.3vw, 3px) solid #adadad;
  padding: clamp(8px, 1.6vw, 16px) clamp(16px, 3vw, 42px);
  font-weight: 600;
  color: #100f0f;
  gap: 8px;
  font-size: clamp(16px, 1.6vw, 24px);
  animation: heartbeat 1.5s ease-in-out infinite both;
}
.btn_link .icon_arrow, .btn_link-hiro .icon_arrow {
  width: clamp(20px, 2.5vw, 38px);
}

.btn_link:hover, .btn_link-hiro:hover {
  transition: 0.2s;
  background-color: #b8e7ee;
}

.btn_link-hiro {
  background-color: #3e7fb8;
  border: clamp(1.5px, 0.3vw, 3px) solid #fff;
  color: #fff;
  padding: clamp(8px, 1.6vw, 32px) clamp(16px, 4vw, 62px);
  font-size: clamp(16px, 1.6vw, 32px);
  filter: drop-shadow(0px 0px 5px rgb(155, 172, 158));
}
.btn_link-hiro .icon_arrow {
  margin-top: clamp(5px, 0.5vw, 15px);
}

.btn_link-hiro:hover {
  transition: 0.2s;
  background-color: rgb(229, 110, 167);
}

.btn_link-sub {
  color: #514643;
  width: min(90%, 600px);
  font-size: clamp(15px, 3vw, 20px);
  font-weight: 600;
  border: clamp(1.5px, 0.3vw, 3px) solid #d2c8c5;
  padding: clamp(8px, 0.8vw, 16px) clamp(16px, 3vw, 42px);
  background-color: #fff;
  border-radius: 9999px;
  text-align: center;
}

.btn_link-sub:hover {
  transition: 0.2s;
  background-color: #ffffa3;
}

.l__btn {
  display: block;
  margin: 0 auto;
  margin-top: min(6vw, 62px);
  margin-bottom: 1em;
}

.l__btn:nth-of-type(2) {
  margin-top: min(3vw, 24px);
}

.heartbeat {
  animation: heartbeat 1.5s ease-in-out infinite both;
}

/**
 * ----------------------------------------
 * animation heartbeat
 * ----------------------------------------
 */
@keyframes heartbeat {
  from {
    transform: scale(1);
    transform-origin: center center;
    animation-timing-function: ease-out;
  }
  10% {
    transform: scale(0.91);
    animation-timing-function: ease-in;
  }
  17% {
    transform: scale(0.98);
    animation-timing-function: ease-out;
  }
  33% {
    transform: scale(0.87);
    animation-timing-function: ease-in;
  }
  45% {
    transform: scale(1);
    animation-timing-function: ease-out;
  }
}
.yurayura {
  animation: yurayura 2s steps(1, end) infinite;
}

/**
 * ----------------------------------------
 * animation ゆらゆら
 * ----------------------------------------
 */
@keyframes yurayura {
  0%, 100% {
    transform: rotate(5deg);
  }
  50% {
    transform: rotate(-5deg);
  }
}
/* ======================================
ハンバーガーボタン :::::::::::::::::::::::::::::::
========================================== */
/* トグルボタン */
.toggle-btn {
  display: block;
  width: 80px;
  height: 80px;
  background-color: #C7E6E9;
  border-radius: 50%;
  position: fixed;
  right: 20px;
  top: 90px;
  z-index: 500;
}

@media (max-width: 675px) {
  .toggle-btn {
    width: 60px;
    height: 60px;
    right: 0;
    top: 70px;
    border-radius: 0%;
  }
}
.toggle-btn i {
  background: #776F6D;
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  transition: 0.5s;
  width: 40%;
}

.toggle-btn i:nth-of-type(1) {
  left: 24px;
  top: 30px;
  border-radius: 1px;
}

.toggle-btn i:nth-of-type(2) {
  left: 24px;
  top: 40px;
  border-radius: 1px;
}

.toggle-btn i:nth-of-type(3) {
  left: 24px;
  top: 50px;
  border-radius: 1px;
}

.toggle-btn.active i:nth-of-type(1) {
  transform: translateY(10px) rotate(45deg);
}

.toggle-btn.active i:nth-of-type(2) {
  opacity: 0;
}

.toggle-btn.active i:nth-of-type(3) {
  transform: translateY(-10px) rotate(-45deg);
}

@media (max-width: 675px) {
  .toggle-btn i:nth-of-type(1) {
    left: 20px;
    top: 20px;
  }
  .toggle-btn i:nth-of-type(2) {
    left: 20px;
    top: 30px;
    border-radius: 1px;
  }
  .toggle-btn i:nth-of-type(3) {
    left: 20px;
    top: 40px;
    border-radius: 1px;
  }
}
/* ======================================
	ナビゲーションメニュー :::::::::::::::::::::::::::::::
	========================================== */
.cc_global-nav {
  position: fixed;
  inset: 0;
  margin: auto;
  background: #F7F6F2;
  width: 100%;
  height: 100vh;
  z-index: 100;
  opacity: 0;
  pointer-events: none;
  transition: 0.5s;
  font-family: fot-tsukuardgothic-std, sans-serif;
}

.cc_global-nav.active {
  opacity: 0.95;
  pointer-events: auto;
}

.cc_global-nav__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
@media (max-width: 500px) {
  .cc_global-nav__inner {
    margin: 0;
  }
}

.cc_global-nav__list {
  background-color: #fff;
  padding: 2rem;
  border-radius: 20px;
  margin: 80px 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: min(6vw, 24px);
}
@media (max-width: 500px) {
  .cc_global-nav__list {
    background-color: transparent; /*背景透明に*/
    border-radius: 0px;
    padding: 0;
    margin: 2rem;
  }
}

.gnavIcon {
  width: 20px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.cc_global-nav__item {
  align-items: center;
}
.cc_global-nav__item a {
  color: #776F6D;
  letter-spacing: 0.1rem;
  font-size: clamp(20px, 4vw, 26px);
  font-weight: 700;
  display: flex;
  line-height: 2rem;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
.cc_global-nav__item a:hover {
  color: #5BB6C1;
}
.cc_global-nav__item p {
  color: #776F6D;
  font-size: 1rem;
  line-height: 1.5rem;
  font-weight: 400;
  margin-left: 32px;
  text-decoration: none;
  transition: 0.5s;
  display: flex;
  align-items: center;
}
@media (max-width: 500px) {
  .cc_global-nav__item p {
    display: none;
  }
}
.cc_global-nav__item hr {
  border-color: #988d8b;
  border-style: dashed;
  margin-bottom: 15px;
  margin-top: 1rem;
}
@media (max-width: 500px) {
  .cc_global-nav__item hr {
    margin-bottom: 0.5rem;
    margin-top: 0.5rem;
  }
}

.cc_gnav__other p {
  color: #776F6D;
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
}

.cc_gnav__other img {
  width: 60px;
  margin-top: 5px;
}
@media (max-width: 500px) {
  .cc_gnav__other img {
    width: 40px;
  }
}

.cc_gnav__other--link {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
  margin-top: 30px;
}
@media (max-width: 500px) {
  .cc_gnav__other--link {
    margin-top: 0.5rem;
  }
}

.cc_gnav__other--link a {
  font-size: 16px;
  margin-right: 20px;
  line-height: 20px;
  vertical-align: middle;
}

.cc_gnav__other--link img {
  width: 18px;
  margin: 0;
  line-height: 20px;
  vertical-align: middle;
}

.hiro_container {
  width: 100%;
  height: 100%;
  position: relative;
}

.hiro_bg {
  display: block;
  width: 100%;
}

.hiro_title {
  position: absolute;
  z-index: 1;
  display: block;
  top: 6vw;
  left: 15vw;
  width: 44vw;
  filter: drop-shadow(0px 0px 10px rgb(155, 172, 158));
}
@media (max-width: 1024px) {
  .hiro_title {
    width: 58vw;
    top: 12vw;
    left: 4vw;
  }
}
@media (max-width: 450px) {
  .hiro_title {
    width: 88vw;
    top: 25vw;
    left: 4vw;
  }
}

.hiro_icon-minokamo {
  position: absolute;
  z-index: 1;
  display: block;
  top: 2vw;
  left: 2vw;
  width: 8vw;
  mix-blend-mode: multiply;
}
@media (max-width: 1024px) {
  .hiro_icon-minokamo {
    width: clamp(75px, 10vw, 150px);
    top: 3vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media (max-width: 450px) {
  .hiro_icon-minokamo {
    top: 7vw;
  }
}

.l__hiro_btn-link {
  position: absolute;
  z-index: 2;
  display: block;
  bottom: 6.5vw;
  left: 23vw;
}
@media (max-width: 1024px) {
  .l__hiro_btn-link {
    left: 18vw;
    bottom: 9vw;
  }
}
@media (max-width: 650px) {
  .l__hiro_btn-link {
    left: 14vw;
    bottom: 7vw;
  }
}
@media (max-width: 450px) {
  .l__hiro_btn-link {
    bottom: 45vw;
    left: 23vw;
  }
}

.sec_container, .sec_container-blue, .sec_container-green {
  position: relative;
  padding-top: min(10vw, 100px);
  padding-bottom: min(10vw, 100px);
}

.sec_container-green {
  background-color: #e5f3e5;
  padding-top: 0;
}

.sec_container-blue {
  background-color: #e5f3f2;
  padding-top: 0;
}

.sec_top {
  position: relative;
  width: 100%;
}

.sec_title-1l, .sec_title-3l, .sec_title-2l {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: min(4vw, 42px);
}

.sec_title-1l img, .sec_title-3l img, .sec_title-2l img {
  width: auto;
  height: clamp(22px, 6vw, 40px);
}

.sec_title-2l img {
  width: auto;
  height: clamp(50px, 13vw, 100px);
}

@media (max-width: 850px) {
  .sec_title-3l {
    padding-top: calc(100px - 10vw);
  }
}

.sec_title-3l img {
  width: auto;
  height: clamp(80px, 20vw, 160px);
}

.sec_read-txt {
  display: block;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  font-size: clamp(16px, 1.6vw, 20px);
}
@media (max-width: 450px) {
  .sec_read-txt {
    width: calc(100% - 40px);
  }
}

.card_container {
  max-width: 1024px;
  width: calc(100% - 40px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
@media (max-width: 768px) {
  .card_container {
    max-width: 500px;
    grid-template-columns: 1fr;
  }
}
@media (max-width: 450px) {
  .card_container {
    max-width: 350px;
  }
}

.card_item {
  display: flex;
  flex-direction: column;
  background-color: #e5f3f2;
  padding: 16px 32px 32px;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .card_item {
    flex-direction: row;
    align-items: center;
    gap: 16px;
    padding: 16px 32px;
  }
}
@media (max-width: 450px) {
  .card_item {
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
}

.card_img {
  display: block;
  width: auto;
  height: min(16vw, 185px);
  margin: 0 auto;
}
@media (max-width: 768px) {
  .card_img {
    width: 140px;
    height: auto;
  }
}
@media (max-width: 450px) {
  .card_img {
    height: 100px;
    width: auto;
  }
}

.card_text {
  display: block;
  width: 100%;
  font-size: clamp(16px, 1.6vw, 20px);
  flex-grow: 1;
  font-weight: 600;
}

.il_book {
  display: block;
  width: clamp(100px, 25vw, 250px);
  margin: 0 auto;
  margin-bottom: 16px;
  margin-top: calc(min(16vw, 160px) * -1);
}

.il_salaryman {
  position: absolute;
  display: block;
  width: clamp(180px, 28vw, 350px);
  z-index: 1;
  margin-top: calc(min(16vw, 250px) * -1);
  right: min(10vw, 250px);
}

.bg_book-top {
  position: absolute;
  top: 2vw;
  width: 100%;
}

.bg_book-btm {
  position: absolute;
  bottom: 2vw;
  width: 100%;
}

.book_sdgsbook {
  position: relative;
  display: block;
  margin: min(10vw, 60px) auto;
  width: min(80%, 350px);
  cursor: pointer;
  z-index: 1;
}

.contact_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0 16px;
  line-height: 1.3;
}

.contact_wrap h4 {
  font-size: clamp(16px, 1.8vw, 24px);
  font-weight: 600;
  margin-bottom: 8px;
}

.contact_wrap p {
  font-size: clamp(14px, 1.6vw, 16px);
  margin-bottom: 4px;
}

.movie_wrap {
  width: clamp(300px, 70vw, 900px);
  margin: 0 auto;
  filter: drop-shadow(0px 0px 16px rgba(77, 74, 62, 0.2));
}
@media (max-width: 850px) {
  .movie_wrap {
    width: 90%;
  }
}
@media (max-width: 550px) {
  .movie_wrap {
    width: 95%;
  }
}

.youtube-wrap {
  position: relative;
  padding-bottom: 56.25%; /*アスペクト比 16:9の場合の縦幅*/
  height: 0;
  overflow: hidden;
  margin: 0 auto;
}

.youtube-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=style.css.map */