@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*
$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

1em = 16px
*/
/* ----------------------------------------------
 * アニメーション定義
 * -------------------------------------------- */
@keyframes scrollLineDown {
  0% {
    height: 0;
  }
  100% {
    height: 148px;
  }
}
@keyframes scrollDotDown {
  0% {
    top: 69px;
    opacity: 1;
  }
  99% {
    top: 217px;
    opacity: 1;
  }
  100% {
    top: 217px;
    opacity: 0;
  }
}
@keyframes scrollLineDownTablet {
  0% {
    height: 0;
  }
  100% {
    height: 106px;
  }
}
@keyframes scrollDotDownTablet {
  0% {
    top: 50px;
    opacity: 1;
  }
  99% {
    top: 156px;
    opacity: 1;
  }
  100% {
    top: 156px;
    opacity: 0;
  }
}
html {
  font-size: 62.5%;
}
@media only screen and (max-width: 75em) {
  html {
    font-size: 56.25%;
  }
}
@media only screen and (max-width: 56.25em) {
  html {
    font-size: 50%;
  }
}
@media only screen and (max-width: 37.5em) {
  html {
    font-size: 62.5%;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

main {
  overflow-x: hidden;
}

img {
  width: 100%;
}

.montserrat {
  font-family: "Montserrat", sans-serif;
}

.bg-gradation {
  background: linear-gradient(180deg, #d3f5fa 33.3333vw, #fff min(33.3333vw + 1200px, 98%));
}

.bg-gradation--blue {
  background: linear-gradient(180deg, #d3f5fa 33.3333vw, #fff min(33.3333vw + 1200px, 98%));
}
.bg-gradation--blue2 {
  background: linear-gradient(180deg, #b2ebf2 33.3333vw, #fff min(33.3333vw + 1200px, 98%));
}
.bg-gradation--yellow {
  background: linear-gradient(180deg, #fef2be 33.3333vw, #fff min(33.3333vw + 1200px, 98%));
}

.bg-img__second {
  background-image: url("../img/bg-2.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 38rem 0 17rem 0;
}
@media only screen and (max-width: 37.5em) {
  .bg-img__second {
    padding: 11rem 0 4rem 0;
  }
}

.bg-img__third {
  background-image: url("../img/bg-3.webp");
  background-repeat: no-repeat;
  background-size: 100%;
  padding: 38rem 0 0 0;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .bg-img__third {
    padding: 11rem 0 4rem 0;
  }
}

.common-empty-container {
  padding: 8.8rem 0;
  min-height: 20rem;
}
@media only screen and (max-width: 37.5em) {
  .common-empty-container {
    padding: 0;
    min-height: 0;
  }
}

.common-empty-message {
  font-size: 2.4rem;
  text-align: center;
}

.tab-br {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .tab-br {
    display: block;
  }
}

.sp-br {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .sp-br {
    display: block;
  }
}

.btn {
  background-color: #06b4ea;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-size: clamp(13px, 3vw, 16px);
  font-weight: 500;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: 0 4px 10px rgba(37, 126, 210, 0.2);
  overflow: hidden;
  border: none;
  cursor: pointer;
  max-width: 29.5rem;
  width: 100%;
  padding: 2.3rem 0;
}
.btn::before, .btn::after {
  content: "";
  display: block;
  position: absolute;
  border-color: #fff;
  border-style: solid;
  height: 0;
  top: 0;
  bottom: 0;
  right: 1.7em;
  margin: auto 0;
}
.btn::before {
  width: 12px;
  border-width: 2px 0 0 0;
}
.btn::after {
  width: 10px;
  height: 10px;
  border-width: 2px 2px 0 0;
  transform: rotate(45deg);
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(37, 126, 210, 0.3);
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 3px 8px rgba(37, 126, 210, 0.25);
}
.btn--green {
  background-color: #43b149;
  box-shadow: 0 4px 10px rgba(67, 177, 73, 0.2);
}
.btn--green:hover {
  box-shadow: 0 6px 15px rgba(67, 177, 73, 0.3);
}
.btn--green:active {
  box-shadow: 0 3px 8px rgba(67, 177, 73, 0.25);
}
.btn--purple {
  background-color: #944892;
  box-shadow: 0 4px 10px rgba(148, 72, 146, 0.2);
}
.btn--purple:hover {
  box-shadow: 0 6px 15px rgba(148, 72, 146, 0.3);
}
.btn--purple:active {
  box-shadow: 0 3px 8px rgba(148, 72, 146, 0.25);
}
.btn--more {
  background-color: #06b4ea;
  box-shadow: 0 4px 10px rgba(6, 180, 234, 0.2);
  width: 100%;
  max-width: 500px;
  padding: 1rem 2rem;
  position: relative;
  border-radius: 50px;
}
.btn--more:hover {
  box-shadow: 0 6px 15px rgba(6, 180, 234, 0.3);
}
.btn--more:active {
  box-shadow: 0 3px 8px rgba(6, 180, 234, 0.25);
}
.btn--archive {
  background-color: #06b4ea;
  box-shadow: 0 4px 10px rgba(6, 180, 234, 0.2);
  padding: 1rem 2.5rem;
}
.btn--archive:hover {
  box-shadow: 0 6px 15px rgba(6, 180, 234, 0.3);
}
.btn--archive:active {
  box-shadow: 0 3px 8px rgba(6, 180, 234, 0.25);
}
.btn--outline {
  background-color: transparent;
  border: 2px solid #257ed2;
  color: #257ed2;
  box-shadow: 0 4px 10px rgba(37, 126, 210, 0.1);
}
.btn--outline:hover {
  background-color: #257ed2;
  color: #fff;
  box-shadow: 0 6px 15px rgba(37, 126, 210, 0.2);
}
.btn--outline:active {
  box-shadow: 0 3px 8px rgba(37, 126, 210, 0.15);
}
.btn--reception {
  background-color: #43b149;
  color: #fff;
  font-weight: bold;
  padding: 1rem 3rem;
  min-width: 220px;
  border-radius: 50px;
  box-shadow: 0 4px 10px rgba(67, 177, 73, 0.2);
}
.btn--reception:hover {
  background-color: #3c9f41;
  box-shadow: 0 6px 15px rgba(67, 177, 73, 0.3);
}
.btn--reception:active {
  box-shadow: 0 3px 8px rgba(67, 177, 73, 0.25);
}

.component-btn {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 56.25em) {
  .component-btn {
    width: 100%;
    margin: 0 auto;
    justify-content: center;
  }
}
@media only screen and (max-width: 37.5em) {
  .component-btn {
    width: 24rem;
    justify-content: center;
  }
}

.component-heading {
  font-size: clamp(30px, 3vw, 38px);
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 1.2rem;
  position: relative;
}
.component-heading--white {
  color: #fff;
}
.component-heading--center {
  text-align: center;
}

.component-subheading {
  display: block;
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 600;
  margin-bottom: 2.5rem;
  position: relative;
  color: #231815;
  font-family: "Montserrat", sans-serif;
}
.component-subheading--white {
  color: #fff;
}
.component-subheading--white::after {
  background-color: #fff;
}
.component-subheading--center {
  text-align: center;
}
.component-subheading--center::after {
  left: 50%;
  transform: translateX(-50%);
}

/***********************
* 下層ページ
***********************/
.component__page-heading {
  font-size: clamp(37px, 3vw, 46px);
  margin-bottom: 1.8rem;
}
@media only screen and (max-width: 37.5em) {
  .component__page-heading {
    margin-bottom: 1.4rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-component__header-inner {
    padding-left: 0.8rem;
  }
}

.breadcrumb {
  margin: 0 auto 7.7rem auto;
  font-size: clamp(10px, 2vw, 13px);
  color: #7f7f7f;
}
@media only screen and (max-width: 37.5em) {
  .breadcrumb {
    margin: 0 auto 4.9rem auto;
    padding-left: 0.7rem;
  }
  .breadcrumb__kkof-mtg {
    margin: 0 auto 4.5rem auto;
  }
}
@media only screen and (max-width: 37.5em) and (max-width: 37.5em) {
  .breadcrumb__zimu {
    font-size: 1.2rem;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: baseline;
  list-style: none;
  padding: 0;
  font-weight: bold;
}
.breadcrumb__item {
  display: inline-flex;
  min-width: 0;
  flex-shrink: 0;
  color: #231815;
}
.breadcrumb__item--current {
  font-weight: bold;
  align-items: baseline;
  margin-left: 0.7rem;
}
.breadcrumb__item--current i {
  position: relative;
  top: -0.2rem;
  margin-right: 0.5rem;
  font-size: 0.99rem;
}
@media only screen and (max-width: 37.5em) {
  .breadcrumb__item--current i {
    top: 0;
    font-size: 0.8rem;
  }
}
.breadcrumb__item--third {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0 0.5rem;
}
@media only screen and (max-width: 37.5em) {
  .breadcrumb__item--third {
    margin: 0 0.5rem 0 0.7rem;
  }
}
.breadcrumb__item--green {
  color: #43b149;
}
.breadcrumb__item--green i {
  color: #231815;
  margin-right: 0.7rem;
}
.breadcrumb__item--zimu {
  letter-spacing: -0.8px;
}
@media only screen and (max-width: 37.5em) {
  .breadcrumb__item--zimu {
    letter-spacing: 0;
  }
}
.breadcrumb__icon {
  display: inline-block;
  width: 5.5px;
  margin: 0 0.4rem 2.3px 0;
  border-radius: inherit;
  flex-shrink: 0;
}
@media only screen and (max-width: 56.25em) {
  .breadcrumb__icon {
    margin: 0 0.4rem 0 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .breadcrumb__icon {
    width: 4.85px;
    margin: 0.3rem 0.6rem 2.3px 0;
  }
}
.breadcrumb__link {
  transition: all 0.3s ease;
  letter-spacing: -0.6px;
}
.breadcrumb__link:hover {
  color: #43b149;
  text-decoration: none;
}

.page-wrap {
  max-width: 121rem;
  width: 100%;
  margin: 0 auto;
  padding-top: 15rem;
  padding: 15rem 2rem 0 2rem;
}
@media only screen and (max-width: 75em) {
  .page-wrap {
    padding: 16rem 2.6rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-wrap {
    padding: 10rem 2rem 0 2rem;
  }
}

@media only screen and (max-width: 56.25em) {
  .component-contents__bottom {
    padding: 0;
  }
}
.component-contents__bottom-inner {
  max-width: 118rem;
  width: 100%;
  margin: 0 auto;
  padding: 0 min(0.96vw, 12px);
}
@media only screen and (max-width: 75em) {
  .component-contents__bottom-inner {
    padding: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .component-contents__bottom-inner {
    padding: 0 min(1.33vw, 5px);
  }
}

.img-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(3.2258vw, 40px);
  width: 100%;
}
@media only screen and (max-width: 75em) {
  .img-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: min(4.53vw, 17px) min(4.923vw, 16px);
  }
}
@media only screen and (max-width: 56.25em) {
  .img-grid {
    margin-top: 5rem;
  }
}
.img-grid__item {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
}
@media screen and (max-width: 375px) {
  .img-grid__item {
    width: min(47.6vw, 154px);
    height: min(32.8vw, 106px);
  }
}
@media only screen and (max-width: 37.5em) {
  .img-grid__item {
    border-radius: 10px;
  }
}
.img-grid__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.img-grid__item:hover img {
  transform: scale(1.05);
}
.img-grid__item:hover .img-grid__overlay {
  background: rgba(0, 0, 0, 0.4);
}
.img-grid__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
}
.img-grid__title {
  color: #fff;
  font-size: clamp(12px, 3vw, 20px);
  font-weight: bold;
  text-align: center;
  padding: 0 1rem;
}
@media only screen and (max-width: 37.5em) {
  .img-grid__title {
    font-size: 1.2rem;
  }
}

.component-flyer {
  width: 100%;
}
.component-flyer__wrap {
  width: 100%;
  max-width: 560px;
  margin: 5rem auto;
}
@media only screen and (max-width: 37.5em) {
  .component-flyer__wrap {
    width: 95%;
    margin: 5.3rem auto 4.6rem;
  }
}
.component-flyer__link {
  position: relative;
  display: block;
  text-decoration: none;
  color: #231815;
  transition: opacity 0.3s;
  border: 1px solid #e8e8e7;
  width: min(45.1vw, 560px);
}
@media only screen and (max-width: 56.25em) {
  .component-flyer__link {
    width: auto;
    height: auto;
    border: none;
  }
}
.component-flyer__link:hover {
  opacity: 0.8;
}
.component-flyer__image {
  /*
  width: min(30.8vw, 382px);
  height: min(43.54vw, 540px);
  */
  display: block;
  width: 100%;
  height: auto;
  /*
  @include m.respond(tab-port) {
      display: block;
      margin: 0 auto;
      width: min(81.3vw, 305px);
      height: min(115.2vw, 432px);
  }
  */
}
.component-flyer__image-wrap {
  width: 69%;
  margin: 0 auto;
  overflow: hidden;
  padding-top: 7%;
  padding-bottom: 7%;
}
@media only screen and (max-width: 56.25em) {
  .component-flyer__image-wrap {
    width: auto;
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .component-flyer__image-wrap {
    padding-top: 0;
    padding-bottom: 0;
    border: 0;
  }
}
.component-flyer__placeholder {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: #ffb43d;
  color: #231815;
  padding: 5px 15px;
  border-radius: 5px;
  font-size: 0.9rem;
  font-weight: bold;
  z-index: 2;
}
.component-flyer__placeholder-text {
  font-weight: bold;
}
.component-flyer__zoom {
  position: absolute;
  bottom: 13px;
  right: 11px;
  z-index: 3;
}
@media only screen and (max-width: 37.5em) {
  .component-flyer__zoom {
    bottom: -2.6rem;
    right: 0.2rem;
  }
}
.component-flyer__zoom-btn {
  background-color: rgba(127, 127, 127, 0.7);
  border: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s;
}
@media only screen and (max-width: 37.5em) {
  .component-flyer__zoom-btn {
    width: 16px;
    height: 16px;
  }
}
.component-flyer__zoom-btn:hover {
  background-color: #7f7f7f;
}
.component-flyer__zoom-icon {
  color: #fff;
  font-size: 20px;
  font-weight: 100;
  line-height: 1;
}
.component-flyer__title {
  display: block;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 8px;
  color: #231815;
}

/*********************************
 * YouTube関連 必須項目
 *********************************/
/* 動画エリア */
.youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.5s 1s ease-in-out;
}

.youtube.unload {
  opacity: 1;
}

/* サムネイルコンテナ */
.youtube-thumbnail {
  display: block;
  background-color: #000;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
}

/* ボタン */
.youtube:not(.unload) .youtube-thumbnail::before,
.youtube:not(.unload) .youtube-thumbnail::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 3;
  opacity: 0;
  transition: 0.1s ease-in-out;
}

.youtube-thumbnail::before {
  width: 11.28%;
  aspect-ratio: 1/1;
  border-radius: 100%;
  background-color: #944892;
}

.tab-content__green .youtube-thumbnail::before,
.youtube--green .youtube-thumbnail::before {
  background-color: #43b149;
}

.youtube-thumbnail::after {
  background-color: #fff;
  width: 3.2562555182%;
  aspect-ratio: 1/1;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  left: 1%;
}

/* サムネイル画像 */
.youtube-thumbnail-image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: opacity 0.1s ease-in-out;
  opacity: 1;
}

/* Youtubeプレイヤー */
.youtube-player {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

/* サムネイル読込完了 */
.youtube.thumbnail-ready {
  opacity: 1;
}

/* プレイヤー読込完了 */
.youtube.player-ready .youtube-thumbnail::before,
.youtube.player-ready .youtube-thumbnail::after {
  opacity: 1;
}

/* 再生準備完了 */
.youtube.thumbnail-ready.player-ready {
  pointer-events: all;
}

/* 再生準備完了 */
.youtube.playing .youtube-thumbnail {
  opacity: 0;
  transition-duration: 1.6s;
  pointer-events: none;
}

.youtube.playing .youtube-thumbnail::before,
.youtube.playing .youtube-thumbnail::after {
  opacity: 0;
  transition-duration: 0.2s;
}

/* ホバー時 */
.youtube-thumbnail:hover .youtube-thumbnail-image {
  opacity: 0.8;
  transition-delay: 0s;
}

.youtube-thumbnail:hover::before,
.youtube-thumbnail:hover::after {
  transform: scale(1.025);
}

.youtube-thumbnail:active::before,
.youtube-thumbnail:active::after {
  transform: scale(0.975);
}

/*********************************
 * YouTube関連 レイアウト情報
 *********************************/
/* レイアウト情報 */
.list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6vw 3.466vw;
  /* 6÷375 | 13÷375 */
  padding: 6.933vw;
  /* 26÷375 */
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .list {
    padding: 0 6.933vw 6.933vw;
  }
}

.list-item {
  position: relative;
}

.list-item.exclude {
  display: none;
}

.youtube {
  border-radius: 3.5175vw;
  /* 21÷597 */
}

.list-item-caption {
  font-size: min(2.68vw, 16px);
  /* 16÷597 */
  line-height: 1.5;
  margin-top: 0.5em;
}

@media (min-width: 768px) {
  .list {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    gap: min(1.698vw, 16px) min(3.397vw, 32px);
    /* 16÷942 | 32÷942 */
  }
  .list-item-caption {
    font-size: min(1.6985vw, 16px);
    /* 16÷942 */
  }
  .youtube {
    border-radius: min(3.397vw, 21px);
    /* 21÷942 */
  }
}
@media (min-width: 960px) {
  .list {
    grid-template-columns: repeat(4, 1fr);
    gap: min(2.01vw, 25px) min(2.58vw, 32px);
    /* 16÷1240 | 32÷1240 */
    padding: 0 0 min(4.19vw, 52px);
    /* 40÷1240 */
    margin-bottom: min(4.03vw, 50px);
    border-bottom: 1px solid #e8e8e7;
  }
  .list-item-caption {
    font-size: min(1.29vw, 16px);
    /* 16÷1240 */
  }
  .youtube {
    border-radius: min(1.6935vw, 21px);
    /* 21÷1240 */
  }
  .tab-content {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 min(3.2258vw, 40px);
    /* 40÷1240 */
  }
}
.instagram-feed {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: 100%;
}

.instagram-feed__item {
  width: 100%;
  aspect-ratio: 1/1;
}
.instagram-feed__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/**
* 画像の幅指定
* remで指定すれば、emに書いた内容と連動する
*/
body.show-alert {
  position: relative;
  z-index: 9999;
  padding-top: 50px;
}
@media only screen and (max-width: 56.25em) {
  body.show-alert {
    padding-top: 44px;
  }
}
@media only screen and (max-width: 37.5em) {
  body.show-alert {
    padding-top: 38px;
  }
}

.alert {
  font-size: 16px;
  line-height: 1.5;
  position: relative;
  z-index: 3000;
  width: 100%;
  height: 50px;
  overflow: hidden;
  background-color: #e4556f;
  color: #fff;
  /* height: 3.125em;*/
  /*
  @include m.respond(tab-land) {
      display: none;
  }

  &__inner {
      display: flex;
      max-width: 90rem;
      width: 100%;
      margin: 0 auto;
      padding-left: 15rem;
      color: var.$color-white;
      font-size: clamp(12px, 3vw, 16px);
  }

  &__title {
      border-right: 1px solid var.$color-white;
      padding-right: 2.5rem;
  }

  &__text {
      padding-left: 2.5rem;
  }
  */
}
@media only screen and (max-width: 75em) {
  .alert {
    height: 44px;
    font-size: 14px;
  }
}
@media only screen and (max-width: 37.5em) {
  .alert {
    height: 38px;
    font-size: 12px;
  }
}
.alert__item {
  position: absolute;
  display: flex;
  align-items: center;
  text-align: center;
  min-width: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-10%);
  transition: 0.5s ease;
}
.alert__item.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.alert__item > span {
  padding: 0 1em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.alert__item-link {
  align-content: center;
  width: 100%;
  height: 100%;
  padding: 0 1em;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.alert__item-link:hover {
  text-decoration: underline;
}

.header {
  max-width: 100%;
  width: 100%;
  background-color: #fff;
  position: fixed;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.3s ease;
}
.header--shadow {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.header__inner {
  width: 100%;
  padding: 3.8rem min(3vw, 45px) 3.8rem 3.571vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  position: relative;
  z-index: 3000;
}
@media only screen and (max-width: 75em) {
  .header__inner {
    padding: 2.4rem 1rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .header__inner {
    padding: 1.6rem 1rem;
  }
}
.header__left {
  flex: 0 0 auto;
  margin-right: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .header__left {
    margin-right: 0;
    padding-left: 1rem;
  }
}
.header__right {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: right;
}
@media only screen and (max-width: 75em) {
  .header__right {
    margin-right: 1.5rem;
  }
}
.header__buttons {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.header__logo {
  position: relative;
  z-index: 2000;
}
.header__logo-link {
  display: block;
}
.header__logo-image {
  display: inline-block;
  width: clamp(180px, 19.5vw, 300px);
}
@media only screen and (max-width: 37.5em) {
  .header__logo-image {
    max-width: 18rem;
  }
}
@media screen and (max-width: 360px) {
  .header__logo-image {
    width: 130px;
  }
}
.header__nav {
  width: 100%;
}
@media (min-width: 992px) {
  .header__nav {
    flex: 1;
    width: auto;
  }
}
.header__menu {
  display: flex;
  justify-content: right;
  font-size: clamp(14px, 3vw, 16px);
  padding-right: 2.4rem;
  gap: 3rem;
}
.header__menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  margin: 0 auto;
}
.header__menu-container {
  width: 100%;
  max-width: 90%;
  margin: 0 auto;
  padding: 0 1rem;
}
.header__menu-item {
  /*&:first-child {
      padding-right: 2rem;
  }

  &:nth-child(2) {
      padding-right: 1.9rem;
  }*/
  position: relative;
}
.header__menu-item a {
  display: block;
  color: #231815;
  text-decoration: none;
}
.header__menu-link {
  font-weight: 600;
  transition: color 0.3s ease;
}
.header__menu-link:hover {
  color: #43b149;
}
.header__submenu {
  list-style: none;
  padding: 0.5rem 0 0 2rem;
  margin: 0;
}
.header__submenu-item {
  margin-bottom: 1rem;
}
.header__submenu-item:last-child {
  margin-bottom: 0;
}
.header__submenu-link {
  font-size: 0.9rem !important;
  font-weight: normal !important;
  padding: 0.5rem 0 !important;
  color: #231815;
  text-decoration: none;
  transition: color 0.3s ease;
}
.header__submenu-link:hover {
  color: #257ed2;
}
.header__submenu-link::before {
  content: "-";
  margin-right: 0.5rem;
}
.header__cta {
  margin: 3rem 0;
  text-align: center;
}
.header__cta-btn {
  background-color: #43b149;
  display: inline-block;
  border-radius: 50px;
  padding: 1rem 2rem;
  margin: 0 auto;
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  transition: background-color 0.3s ease;
}
.header__copy {
  text-align: center;
  padding: 1rem;
  font-size: 0.75rem;
  color: #7f7f7f;
  border-top: 1px solid #e1e1e1;
  margin: 0 1rem;
}
.header__contact {
  margin: 0 0.5rem;
}
.header__contact-link {
  display: flex;
  align-items: center;
  background-color: #43b149;
  color: #fff;
  padding: 1.3rem 3rem 1.3rem;
  font-size: 1.3rem;
  border-radius: 2rem;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.05em;
}
.header__contact-icon {
  margin-right: 0.5rem;
  font-size: 1.2rem;
  border-radius: initial;
}
.header__year {
  margin: 0 0.5rem;
  position: relative;
}
.header__year-dropdown {
  position: relative;
  cursor: pointer;
}
.header__year-dropdown.is-active .header__year-dropdown-options {
  padding: 1rem 0;
  opacity: 1;
  visibility: visible;
}
.header__year-selected {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #06b4ea;
  font-size: 1.3rem;
  font-weight: bold;
  color: #fff;
  border: none;
  border-radius: 50px;
  padding: 1.3rem 4.2rem;
  cursor: pointer;
  position: relative;
  text-align: center;
}
.header__year-selected::after {
  content: "";
  position: absolute;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-image: url("../img/svg/toggle-icon-white.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  transition: transform 0.3s ease;
}
.is-active .header__year-selected::after {
  transform: translateY(-50%) rotate(180deg);
}
@media only screen and (max-width: 37.5em) {
  .header__year-selected {
    width: 9.7rem;
    font-size: 1.2rem;
    padding: 0.6rem 2rem 0.8rem 1rem;
    margin-bottom: 0.5rem;
    letter-spacing: -1px;
  }
  .header__year-selected::after {
    right: 0.8rem;
    width: 12px;
    height: 12px;
  }
  .header__year-selected::before {
    content: "";
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    z-index: -1;
  }
}
.header__year-selected:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.5);
}
.header__year-options {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #06b4ea;
  border-radius: 2rem;
  margin-top: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 10;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  max-height: calc(100vh - 65px);
  overflow: auto;
}
.header__year-option {
  display: block;
  padding: 0.8rem 2rem;
  color: #fff;
  text-decoration: none;
  font-size: clamp(12px, 2vw, 14px);
  font-weight: bold;
  text-align: center;
  transition: background-color 0.2s ease;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 37.5em) {
  .header__year-option {
    padding: 0.75rem 0;
    position: relative;
    /*// タップ領域を広げる
    &::after {
        content: '';
        position: absolute;
        inset: -5px;
        z-index: 1;
    }*/
  }
}
.header__year-option:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.header__year-option:active {
  background-color: rgba(255, 255, 255, 0.2);
}
.header__search {
  margin: 0 0.5rem;
}
.header__search-form {
  display: flex;
  align-items: center;
  border-radius: 2rem;
  padding: 0.8rem 0;
  border: 1px solid #e0e0e0;
}
@media only screen and (max-width: 75em) {
  .header__search-form {
    justify-content: space-between;
  }
}
.header__search-input {
  border: none;
  background: transparent;
  padding: 0.5rem 1rem 0.5rem 2rem;
  font-size: 1.3rem;
  width: 14.5rem;
  outline: none;
  color: #c8c8c8;
}
@media only screen and (max-width: 75em) {
  .header__search-input {
    width: 100%;
    text-align: left;
  }
}
.header__search-input::-moz-placeholder {
  color: #c8c8c8;
}
.header__search-input::placeholder {
  color: #c8c8c8;
}
.header__search-input:not(:-moz-placeholder-shown) {
  color: #231815;
}
.header__search-input:focus, .header__search-input:not(:placeholder-shown) {
  color: #231815;
}
.header__search-button {
  background-color: transparent;
  color: #333;
  border: none;
  padding: 0.5rem 0.8rem 0.5rem 0.5rem;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.header__search-icon {
  font-size: 1.2rem;
}
.header__search-icon img {
  width: 21px;
  height: 15px;
}
body:not([data-page=home]) .header__page {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
@media only screen and (max-width: 75em) {
  .header__nav, .header__buttons {
    display: none;
  }
}
.header__hamburger {
  display: none;
}
@media only screen and (max-width: 75em) {
  .header__hamburger {
    display: block;
    position: relative;
    width: 36px;
    height: 20px;
    cursor: pointer;
    z-index: 2000;
  }
  .header__hamburger-line {
    display: block;
    height: 1px;
    background-color: #231815;
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  .header__hamburger-line:first-child {
    margin: 6px 0 5px;
  }
  .header__hamburger-line:nth-child(3) {
    width: 2rem;
    margin-left: auto;
  }
}
@media only screen and (max-width: 75em) and (max-width: 37.5em) {
  .header__hamburger-line:first-child {
    margin: 5px 0;
  }
  .header__hamburger-line:nth-child(3) {
    width: 1rem;
    margin: -1px 0 0 auto;
  }
}
@media only screen and (max-width: 75em) {
  .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    width: 113%;
    transform: rotate(30deg) translate(3px, 5.5px);
  }
  .header__hamburger.is-active .header__hamburger-line:nth-child(2) {
    opacity: 0;
  }
  .header__hamburger.is-active .header__hamburger-line:nth-child(3) {
    width: 110%;
    transform: rotate(-29deg) translate(3px, -5px);
  }
}
@media only screen and (max-width: 75em) and (max-width: 37.5em) {
  .header__hamburger.is-active .header__hamburger-line:nth-child(1) {
    transform: rotate(30deg) translate(3px, 4.5px);
  }
}
@media only screen and (max-width: 37.5em) {
  .header__hamburger {
    width: 22px;
    margin: 0 0.1rem 0.6rem 0;
  }
}

/******* spレイアウト *******/
.header__year--sp,
.hamburger-nav {
  display: none;
}
@media only screen and (max-width: 75em) {
  .header__year--sp,
  .hamburger-nav {
    display: block;
  }
}

.header__year--sp {
  padding-right: 0.5rem;
  z-index: 1000;
}

.hamburger-nav {
  position: relative;
  pointer-events: auto;
}
.hamburger-nav__menu {
  position: fixed;
  inset: 0;
  background: #fcfcfc;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.6s ease, visibility 0.6s ease;
  font-size: 16px;
  font-weight: bold;
  padding-top: 17rem;
  text-align: center;
  height: 100vh;
  overflow-y: auto;
  z-index: 2000;
}
.hamburger-nav__menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  padding: 11rem 3rem 0 3rem;
  margin: 0 auto;
}
@media only screen and (max-width: 37.5em) {
  .hamburger-nav__menu.is-open {
    padding: 7rem 3rem 0 3rem;
  }
}
.hamburger-nav__menu-container {
  width: 100%;
  text-align: left;
  font-size: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .hamburger-nav__menu-container {
    font-size: 1.6rem;
  }
}
.hamburger-nav__menu-item {
  position: relative;
  border-top: 1px solid #c8c8c8;
  padding-bottom: 3rem;
}
.hamburger-nav__menu-item a {
  display: block;
  color: #231815;
  text-decoration: none;
}
.hamburger-nav__menu-item:nth-of-type(2) {
  padding-bottom: 3.6rem;
}
.hamburger-nav__menu-item:nth-of-type(3) {
  padding: 0.2rem 0 3.6rem 0;
}
.hamburger-nav__menu-item:nth-of-type(4) {
  padding: 0 0 3.6rem 0;
}
.hamburger-nav__menu-item:last-of-type {
  padding-top: 0.2rem;
}
.hamburger-nav__menu-link {
  font-weight: 600;
  transition: color 0.3s ease;
  padding-top: 2.4rem;
  letter-spacing: -1.9px;
}
.hamburger-nav__menu-link:hover {
  color: #257ed2;
}
.hamburger-nav__submenu {
  list-style: none;
  margin: 0;
  font-size: 1.4rem;
}
.hamburger-nav__submenu-link {
  font-weight: normal;
  padding: 1.9rem 0 0.4rem;
  color: #231815;
  text-decoration: none;
  transition: color 0.3s ease;
}
.hamburger-nav__submenu-link:hover {
  color: #257ed2;
}
.hamburger-nav__cta {
  margin: 3.5rem 0 6.5rem;
}
.hamburger-nav__cta-btn {
  display: block;
  width: 62rem;
  border-radius: 50px;
  padding: 3.5rem;
  margin: 0 auto;
  color: #fff;
}
.hamburger-nav__search {
  margin: 1.5rem 0 2.5rem;
}
.hamburger-nav__banner {
  margin: 2rem 0;
}
@media only screen and (max-width: 56.25em) {
  .hamburger-nav__banner {
    margin: 2rem 0 2.6rem;
  }
}
.hamburger-nav__banner-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, auto);
  gap: 1.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .hamburger-nav__banner-list {
    gap: 1.1rem;
  }
}
.hamburger-nav__banner-item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}
.hamburger-nav__banner-link {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hamburger-nav__banner-img {
  max-width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: inherit;
}
.hamburger-nav__text, .hamburger-nav__copy {
  font-size: 1rem;
  text-align: left;
}
.hamburger-nav__text {
  margin-bottom: 0.8rem;
  line-height: 1.6;
}

.show-alert .hamburger-nav__menu.is-open {
  padding-top: calc(11rem + 50px);
}
@media only screen and (max-width: 56.25em) {
  .show-alert .hamburger-nav__menu.is-open {
    padding-top: calc(11rem + 44px);
  }
}
@media only screen and (max-width: 37.5em) {
  .show-alert .hamburger-nav__menu.is-open {
    padding: calc(7rem + 38px) 3rem 0 3rem;
  }
}

form.gsc-search-box {
  width: 181px !important;
  max-width: 181px !important;
  margin-bottom: 0 !important;
}

.hamburger-nav__search form.gsc-search-box {
  width: 100% !important;
  max-width: 100% !important;
}

table.gsc-search-box {
  margin-bottom: 0 !important;
}

table.gsc-search-box td.gsc-input {
  padding-right: 0 !important;
}

.gsc-input-box {
  border: 1px solid #e0e0e0 !important;
  border-right: none !important;
  background: #fff !important;
  border-top-left-radius: 999px !important;
  border-bottom-left-radius: 999px !important;
}

.gsib_a {
  padding: 11px 0 11px 20px !important;
}

.gsc-input {
  font-size: 13px !important;
  line-height: 1 !important;
  width: 100% !important;
  text-align: left !important;
  height: 19px !important;
}

.gsc-search-button {
  margin-left: -1px !important;
}

button.gsc-search-button-v2 {
  display: block;
  border: solid 1px #e0e0e0;
  border-left: none;
  border-top-right-radius: 22px !important;
  border-bottom-right-radius: 22px !important;
  background-color: transparent !important;
  width: 34px !important;
  height: 43px !important;
  padding: 0 !important;
}

.gsc-search-button-v2 svg {
  fill: #000 !important;
  display: block;
  width: 16px !important;
  height: 16px !important;
  margin-left: 5px !important;
}

button.gsc-search-button-v2:hover {
  background-color: #eee !important;
  border-color: #e0e0e0 !important;
}

.footer {
  padding: 4rem 0 0;
  background: linear-gradient(180deg, #fff 15%, #d3f5fa 100%);
  color: #231815;
  /* ナビゲーション フォントサイズ*/
  /* PC版ナビゲーション */
  /* SP版ナビゲーション */
}
@media only screen and (max-width: 75em) {
  .footer {
    padding: 4rem 4rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer {
    padding: 4.5rem 2.9rem 0;
  }
}
.footer__inner {
  max-width: 120rem;
  width: 100%;
  padding: 0 1.6rem 5rem;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .footer__inner {
    padding: 0;
  }
}
.footer__content-wrap {
  margin-bottom: 6.4rem;
}
@media only screen and (max-width: 56.25em) {
  .footer__content-wrap {
    margin-bottom: 3rem;
  }
}
.footer__logo {
  margin-bottom: 7.6rem;
}
@media only screen and (max-width: 37.5em) {
  .footer__logo {
    margin-bottom: 3.6rem;
  }
}
.footer__logo-img {
  width: auto;
}
@media only screen and (max-width: 56.25em) {
  .footer__logo-img {
    width: 22.5rem;
  }
}
.footer__content {
  display: flex;
  justify-content: space-between;
  margin-bottom: 5.6rem;
}
@media only screen and (max-width: 75em) {
  .footer__content {
    flex-direction: column;
    margin-bottom: 2.8rem;
  }
}
.footer__left {
  padding-right: 2rem;
}
@media only screen and (max-width: 75em) {
  .footer__left {
    width: 100%;
    padding-right: 0;
    margin-bottom: 3.5rem;
  }
}
.footer__info {
  font-size: clamp(13px, 3vw, 14px);
  line-height: 1.6;
}
.footer__info-title {
  font-weight: 600;
  margin-bottom: 2.4rem;
}
.footer__info-address, .footer__info-tel {
  margin-bottom: 0.5rem;
  letter-spacing: -0.4px;
}
@media only screen and (max-width: 56.25em) {
  .footer__info-address, .footer__info-tel {
    margin-bottom: 0.2rem;
  }
}
@media (max-width: 768px) {
  .footer__right {
    width: 100%;
  }
}
.footer__right--pc {
  display: block;
  padding: 0.4rem 14rem 0 12.3rem;
  margin-right: auto;
}
@media only screen and (max-width: 75em) {
  .footer__right--pc {
    display: none;
  }
}
.footer__right--sp {
  display: none;
}
@media only screen and (max-width: 75em) {
  .footer__right--sp {
    display: block;
  }
}
@media (max-width: 768px) {
  .footer__right-inner {
    display: flex;
    justify-content: space-between;
  }
}
@media (min-width: 769px) {
  .footer__right-inner {
    display: flex;
    gap: 4.6rem;
  }
}
.footer__nav-pc-heading, .footer__nav-sp-heading {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 600;
}
.footer__nav-pc-link, .footer__nav-sp-link {
  font-size: clamp(11px, 3vw, 13px);
  color: #231815;
  text-decoration: none;
}
.footer__nav-pc-heading {
  padding-top: 1.3rem;
  margin-bottom: 1.8rem;
  position: relative;
}
.footer__nav-pc-left, .footer__nav-pc-group {
  border-top: 1px solid #c8c8c8;
  padding: 1.5rem 1rem 1.5rem 0;
}
.footer__nav-pc-left {
  padding: 1.5rem 1rem 1.5rem 0;
}
.footer__nav-pc-right {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 74px);
  gap: 1.5rem 4.6rem;
}
.footer__nav-pc-right .footer__nav-pc-group .footer__nav-pc-heading {
  margin-bottom: 0;
}
.footer__nav-pc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__nav-pc-item {
  position: relative;
  padding: 1rem 0;
  /*&:nth-of-type(3) {
      padding-bottom: 1.3rem;
  }*/
}
.footer__nav-pc-item:not(:first-child) {
  padding-top: 0;
}
.footer__nav-pc-link {
  transition: color 0.3s ease;
}
.footer__nav-pc-link:hover {
  color: #257ed2;
}
.footer__nav-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 480px) {
  .footer__nav-list {
    grid-template-columns: 1fr;
  }
}
.footer__nav-item {
  position: relative;
  padding-left: 1rem;
}
.footer__nav-item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #257ed2;
}
.footer__nav-link {
  color: #231815;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav-link:hover {
  color: #257ed2;
}
.footer__nav-sp-left, .footer__nav-sp-right {
  margin-bottom: 2rem;
}
.footer__nav-sp-left {
  width: 45%;
}
.footer__nav-sp-right {
  width: 46%;
}
.footer__nav-sp-right .footer__nav-sp-heading {
  margin-bottom: 3.9rem;
}
.footer__nav-sp-right .footer__nav-sp-box {
  margin-bottom: 0;
}
.footer__nav-sp-right .footer__nav-sp-box:nth-of-type(2) {
  padding-top: 2.5rem;
}
.footer__nav-sp-box {
  margin-bottom: 3.2rem;
  padding-top: 2.5rem;
  border-top: 1px solid #e1e1e1;
}
.footer__nav-sp-heading {
  margin-bottom: 2.7rem;
  position: relative;
}
.footer__nav-sp-list {
  list-style: none;
  margin: 0;
}
.footer__nav-sp-item {
  margin-bottom: 1rem;
  position: relative;
}
.footer__nav-sp-link {
  color: #231815;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer__nav-sp-link:hover {
  color: #257ed2;
}
.footer__banner {
  margin-top: 2rem;
}
.footer__banner-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1.333vw, 20px);
}
@media only screen and (max-width: 75em) {
  .footer__banner-list {
    grid-template-columns: repeat(3, 1fr);
    gap: min(2.222vw, 20px);
  }
}
@media only screen and (max-width: 56.25em) {
  .footer__banner-list {
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.933vw, 20px);
  }
}
.footer__banner-link {
  display: block;
  width: 100%;
}
.footer__banner-img {
  width: 100%;
  height: auto;
  border-radius: inherit;
  vertical-align: bottom;
}
@media only screen and (max-width: 75em) {
  .footer__banner-img {
    max-width: 100%;
  }
}
.footer__copy {
  padding: 1.5rem 0;
  text-align: left;
  border-top: 1px solid #e1e1e1;
}
@media only screen and (max-width: 56.25em) {
  .footer__copy {
    padding: 1.8rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .footer__copy {
    border-top: none;
  }
}
.footer__copy-text {
  font-size: clamp(10px, 3vw, 13px);
  margin: 0;
  line-height: 2;
}
@media only screen and (max-width: 37.5em) {
  .footer__copy-text {
    line-height: 1.65;
  }
}

.component-grid__container {
  max-width: 124rem;
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .component-grid__container {
    max-width: 84rem;
  }
}
.component-grid__items {
  display: grid;
  margin: 0 auto;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.33vw, 29px) min(2.5862vw, 30px);
}
@media only screen and (max-width: 56.25em) {
  .component-grid__items {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media only screen and (max-width: 37.5em) {
  .component-grid__items {
    grid-template-columns: 1fr;
    gap: min(5.33vw, 20px);
  }
}
.component-grid__item {
  max-width: 36rem;
  width: 100%;
}
@media only screen and (max-width: 56.25em) {
  .component-grid__item {
    max-width: 100%;
  }
}
.component-grid__item.exclude {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .component-grid__link {
    display: flex;
    gap: min(4vw, 15px);
  }
}
.component-grid__thumbnail {
  position: relative;
  width: min(29vw, 360px);
  height: min(22.5vw, 280px);
  overflow: hidden;
  padding-bottom: 75%;
  border-radius: min(2.381vw, 20px);
  flex-shrink: 0;
}
@media only screen and (max-width: 75em) {
  .component-grid__thumbnail {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .component-grid__thumbnail {
    width: min(47.6vw, 154px);
    height: min(32vw, 120px);
    padding: 0;
  }
}
.component-grid__thumbnail img {
  position: absolute;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: min(2.381vw, 20px);
  transition: transform 0.3s ease;
}
.component-grid__meta {
  display: flex;
  align-items: center;
  gap: min(1.12vw, 14px);
  margin: min(1.93vw, 24px) 0 min(0.64vw, 8px);
}
@media only screen and (max-width: 37.5em) {
  .component-grid__meta {
    margin: 0 0 min(2.66vw, 10px);
    gap: min(3.46vw, 13px);
    flex-direction: column;
    align-items: flex-start;
  }
}
.component-grid__date {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  font-size: clamp(14px, 2vw, 16px);
}
.component-grid__tag {
  display: block;
  background-color: #257ed2;
  color: #fff;
  font-size: clamp(12px, 2vw, 13px);
  padding: 0.23em 1.23em;
  border-radius: 999px;
}
@media only screen and (max-width: 37.5em) {
  .component-grid__tag {
    padding: 0.23em 1em;
  }
}
.component-grid__tag--forum {
  background-color: #43b149;
}
.component-grid__tag--donation {
  background-color: #f29da8;
}
.component-grid__tag--yukimiku {
  background-color: #06b4ea;
}
.component-grid__tag--news {
  background-color: #ffb43d;
}
.component-grid__tag--support {
  background-color: #0068a9;
}
.component-grid__tag--kickoff {
  background-color: #944892;
}
.component-grid__title {
  font-size: clamp(14px, 2vw, 16px);
  line-height: 1.8;
}
@media only screen and (max-width: 37.5em) {
  .component-grid__title {
    line-height: 1.7;
    letter-spacing: 0.1px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3.4em;
  }
}

a.component-grid__link:hover .component-grid__thumbnail img {
  transform: scale(1.05);
}

@media only screen and (max-width: 37.5em) {
  .js-grid:not(.active) {
    display: none;
  }
}

.read-button {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .read-button {
    display: block;
    margin: 7rem auto 0;
    font-size: 13px;
  }
  .read-button i {
    padding-left: 1.6rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .js-grid-yukimiku:not(.active) {
    display: none;
  }
}

.read-button--yukimiku {
  display: block;
  margin: 0 auto;
  font-size: clamp(13px, 2vw, 16px);
}

/******** 3階層目 グリッド *********/
/********* ビデオ関連 *********/
/*************** 
*HERO
***************/
.hero {
  box-sizing: border-box;
  width: 100%;
  max-width: 148rem;
  margin: 12rem auto 0 auto;
  padding: 0 min(3.4482vw, 4rem);
  position: relative;
  /*@media screen and (min-width: 1501px) {
      max-width: 100%;
  }*/
}
@media only screen and (max-width: 75em) {
  .hero {
    margin-top: 12rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero {
    margin-top: 10rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero {
    aspect-ratio: 335/560;
    max-height: 560px;
    margin-top: 7rem;
    padding: 0 2rem;
  }
}
.hero__container {
  aspect-ratio: 1400/960;
  margin: 0 auto;
}
.hero__container, .hero__swiper {
  width: 100%;
  height: 100%;
  /*@media screen and (min-width: 1501px) {
      max-width: 140rem;
      width: 100%;
      height: 100%;
      margin: 0 auto;
  }

  @include m.respond(tab-land) {
      width: 100%;
      height: 100%;
  }

  @include m.respond(phone) {
      width: 100%;
      // height: min(149.3vw, 560px);

      .hero__swiper {
          height: min(149.3vw, 560px) !important;
      }
  }*/
}
.hero__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 60px;
  /*@include m.respond(phone) {
      max-height: 149.33vw;
  }*/
}
@media only screen and (max-width: 56.25em) {
  .hero__img {
    border-radius: 30px;
  }
}
.hero__catch-copy {
  position: absolute;
  bottom: 9%;
  left: 6.4%;
  z-index: 20;
}
@media only screen and (max-width: 37.5em) {
  .hero__catch-copy {
    bottom: 6.8%;
    left: min(14.5%, 5.5rem);
  }
}
.hero__heading {
  font-size: clamp(30px, 4vw, 54px);
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 4px;
  color: #fff;
}
@media only screen and (max-width: 56.25em) {
  .hero__heading {
    line-height: 1.68;
    letter-spacing: 3px;
  }
}
@media only screen and (max-width: 37.5em) {
  .hero__heading {
    font-size: min(8vw, 3rem);
  }
}
.hero__caption {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.6;
  color: #fff;
  position: absolute;
  right: 7%;
  bottom: 4.5%;
  z-index: 2;
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 37.5em) {
  .hero__caption {
    font-size: min(3.2vw, 1.4rem);
    right: 10%;
    bottom: 3%;
  }
}
@media only screen and (max-width: 56.25em) {
  .hero__pagination--pc {
    display: none !important;
  }
}
.hero__pagination--sp {
  display: none !important;
}
@media only screen and (max-width: 56.25em) {
  .hero__pagination--sp {
    display: block !important;
  }
}
.hero__pagination .swiper-pagination-bullet {
  width: 12px !important;
  height: 12px !important;
  margin: 8px 0 4px !important;
  opacity: 0.5;
  background-color: #c8c8c8;
  transition: all 0.3s ease;
}
.hero__pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background-color: #257ed2;
}
.hero__pagination.swiper-pagination {
  position: absolute;
  right: 5.6% !important;
  left: auto !important;
  top: 62% !important;
  transform: translateY(-50%);
  width: 20px !important;
  height: auto;
  z-index: 10;
  display: flex;
  flex-direction: column;
  /* 中央寄せになっていないっぽいので修正した方が良さそう */
}
@media only screen and (max-width: 56.25em) {
  .hero__pagination.swiper-pagination {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    left: 50% !important;
    top: 103.5% !important;
    transform: translate(-50%, -50%);
    gap: 2rem;
    flex-direction: row;
  }
}
.hero__scroll-down {
  position: absolute;
  right: 6%;
  bottom: 6%;
  display: flex;
  z-index: 10;
  align-items: center;
  flex-direction: column;
  height: 214px;
}
@media only screen and (max-width: 56.25em) {
  .hero__scroll-down {
    right: 9.3%;
    bottom: 5.2%;
    height: 154px;
  }
}
.hero__scroll-down-text {
  writing-mode: vertical-rl;
  color: #ffffff;
  font-size: 1.4rem;
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: 0.2px;
  margin-bottom: 20px;
  animation: fadeInOut 2s infinite;
}
@media only screen and (max-width: 37.5em) {
  .hero__scroll-down-text {
    font-size: 1rem;
  }
}
.hero__scroll-down::after {
  content: "";
  position: relative;
  width: 1px;
  height: 148px;
  background-color: rgba(255, 255, 255, 0.3);
}
@media only screen and (max-width: 56.25em) {
  .hero__scroll-down::after {
    height: 106px;
  }
}
.hero__scroll-down::before {
  content: "";
  position: absolute;
  top: 69px;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 0;
  background-color: #ffffff;
  z-index: 1;
  animation: scrollLineDown 2s infinite;
}
@media only screen and (max-width: 56.25em) {
  .hero__scroll-down::before {
    top: 50px;
    animation: scrollLineDownTablet 2s infinite;
  }
}
.hero__scroll-down .dot {
  width: 8px;
  height: 8px;
  background-color: #ffffff;
  border-radius: 50%;
  position: absolute;
  top: 69px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: scrollDotDown 2s infinite;
}
@media only screen and (max-width: 56.25em) {
  .hero__scroll-down .dot {
    top: 50px;
    animation: scrollDotDownTablet 2s infinite;
  }
}

/*************** 
*ABOUT
***************/
.about {
  padding: 12rem 0 4rem;
}
@media only screen and (max-width: 37.5em) {
  .about {
    padding: 10.3rem 0 10rem;
  }
}
.about__inner {
  max-width: 120rem;
  width: 100%;
  padding: 0 1.9rem;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  gap: min(3.54vw, 44px);
}
@media only screen and (max-width: 75em) {
  .about__inner {
    padding: 0 2.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .about__inner {
    flex-direction: column;
  }
}
@media only screen and (max-width: 37.5em) {
  .about__inner {
    gap: min(5.33vw, 20px);
  }
}
.about__left {
  flex: 0 0 auto;
  width: 35%;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .about__left {
    width: 100%;
  }
}
.about__right {
  flex: 1;
  position: relative;
}
@media (max-width: 992px) {
  .about__right {
    width: 100%;
  }
  .about__right::before {
    display: none;
  }
}
.about__text-container {
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}
.about__text {
  font-size: clamp(16px, 3vw, 20px);
  line-height: 2.5;
  margin: -0.6rem 0 2rem 0;
  color: #231815;
}
@media only screen and (max-width: 56.25em) {
  .about__text {
    text-align: left;
  }
}
@media only screen and (max-width: 37.5em) {
  .about__text {
    margin: 0 0 2rem 0;
    line-height: 2.5;
  }
}
.about__btn-container {
  margin-top: 6.5rem;
  justify-content: left;
}
@media only screen and (max-width: 75em) {
  .about__btn-container {
    margin-top: 4.8rem;
    justify-content: center;
  }
}
@media only screen and (max-width: 56.25em) {
  .about__btn-container {
    width: 23.8rem;
  }
}
.about__btn-container .btn--about {
  padding: 2.4rem 0;
}
@media only screen and (max-width: 56.25em) {
  .about__btn-container .btn--about {
    padding: 1.8rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .about__btn-container .btn--about {
    padding: 1.8rem 0;
  }
}

/*************** 
*TOPICS 
*/
.topics {
  padding: 48.5rem 0 27rem;
  background-image: url("../img/bg-1.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 56.25em) {
  .topics {
    padding: 20rem 0 6.4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .topics {
    padding: 15rem 0 6.4rem 0.2rem;
  }
}
.topics__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media only screen and (max-width: 75em) {
  .topics__inner {
    padding: 0 2.8rem;
  }
}
.topics__header {
  text-align: left;
  margin-bottom: min(3.79vw, 47px);
}
@media only screen and (max-width: 56.25em) {
  .topics__header {
    margin-bottom: 5rem;
  }
}
.topics__heading {
  margin-bottom: 1.8rem;
}
@media only screen and (max-width: 56.25em) {
  .topics__heading {
    letter-spacing: 1px;
  }
}
.topics__grid {
  display: grid;
  grid-template-columns: repeat(3, min(24vw, 360px));
  gap: min(2.6666vw, 40px);
  margin-bottom: 7.2rem;
  justify-content: center;
}
@media only screen and (max-width: 75em) {
  .topics__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: min(3.571vw, 30px) min(4.7619vw, 40px);
    margin-bottom: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .topics__grid {
    grid-template-columns: 1fr;
    gap: min(5.333vw, 26px);
    /* (20÷375×100=5.333vw)×480=26px */
  }
}
.topics__item {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.topics__link {
  display: block;
  text-decoration: none;
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .topics__link {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
  }
}
.topics__thumbnail {
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .topics__thumbnail {
    margin-left: 0.3rem;
    width: min(41.0666vw, 154px);
    border-radius: 10px;
  }
}
.topics__thumbnail:hover .topics__img {
  transform: scale(1.05);
}
.topics__img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: 20px;
}
@media only screen and (max-width: 37.5em) {
  .topics__img {
    border-radius: 10px;
  }
}
@media only screen and (max-width: 37.5em) {
  .topics__content {
    flex: 1;
    padding: 0;
  }
}
.topics__meta {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  gap: min(1.428vw, 12px);
  margin-top: min(2.619vw, 22px);
}
@media only screen and (max-width: 56.25em) {
  .topics__meta {
    gap: min(6.3694vw, 10px);
    margin-top: min(3.18471vw, 5px);
  }
}
@media only screen and (max-width: 37.5em) {
  .topics__meta {
    flex-direction: column;
    align-items: flex-start;
  }
}
.topics__date {
  font-size: clamp(13px, 3.7vw, 16px);
  font-weight: bold;
  color: #231815;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 37.5em) {
  .topics__date {
    margin: 0 1.4rem 0 0;
  }
}
.topics__tag {
  display: block;
  padding: 0.25rem 1.6rem;
  font-size: clamp(12px, 3vw, 13px);
  border-radius: 50px;
  color: #fff;
  background-color: #257ed2;
  font-weight: 500;
}
@media only screen and (max-width: 56.25em) {
  .topics__tag {
    padding: 0.25rem 8%;
  }
}
.topics__tag--forum {
  background-color: #43b149;
}
.topics__tag--news {
  background-color: #ffb43d;
}
.topics__tag--donation {
  background-color: #f29da8;
}
.topics__tag--character {
  background-color: #06b4ea;
}
.topics__tag--report {
  background-color: #f29da8;
}
.topics__tag--support {
  background-color: #257ed2;
}
.topics__tag--event {
  background-color: #944892;
}
.topics__title {
  font-size: clamp(14px, 3vw, 16px);
  font-weight: 500;
  line-height: 1.7;
  margin: 1rem 0 0 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  height: 3em;
}
@media only screen and (max-width: 56.25em) {
  .topics__title {
    margin: 1rem 2rem 0 0.4rem;
  }
}
.topics__btn-container {
  display: flex;
  justify-content: center;
  margin-top: 11.7rem;
}
@media only screen and (max-width: 56.25em) {
  .topics__btn-container {
    flex-direction: column;
    align-items: center;
    margin-top: 5rem;
    gap: min(6.93vw, 26px);
  }
}
.topics__btn-wrapper {
  max-width: 32rem;
  width: 100%;
}
.topics__btn-wrapper .btn {
  display: inline-block;
  width: 100%;
  padding: 2.2rem 2.8rem;
}
@media only screen and (max-width: 56.25em) {
  .topics__btn-wrapper {
    padding-left: 11.5rem;
  }
}
.topics__btn-wrapper--right {
  padding-left: 0.5rem;
}
@media only screen and (max-width: 37.5em) {
  .topics__btn-wrapper--right {
    padding-left: 0.2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .topics__btn-wrapper--right .btn {
    padding: 2rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .topics__btn-wrapper--right .btn {
    padding: min(4.8vw, 18px) 0;
  }
}
.topics__btn-wrapper--left {
  padding-left: 0.5rem;
}
@media only screen and (max-width: 37.5em) {
  .topics__btn-wrapper--left {
    padding-left: 0.2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .topics__btn-wrapper--left .btn {
    padding: 2rem 0;
  }
}

/*************** 
*CONTENTS
***************/
.content {
  margin-bottom: min(10.4vw, 39px);
}
@media screen and (min-width: 900px) {
  .content {
    margin-bottom: min(5.73vw, 86px);
  }
  .content__header {
    margin-top: -0.5rem;
  }
  .content__heading {
    margin-bottom: 1.4rem;
  }
}
.content__sub-heading {
  margin-bottom: min(8.26vw, 31px);
}
@media screen and (min-width: 900px) {
  .content__sub-heading {
    margin-bottom: min(3.46vw, 52px);
  }
}
@media screen and (min-width: 900px) {
  .content__inner {
    display: flex;
  }
}
.content__right {
  margin-bottom: min(10.6vw, 40px);
}
.content__left {
  padding: 0 min(8vw, 40px);
}
@media screen and (min-width: 900px) {
  .content__left {
    width: 36vw;
    padding-left: 11.7vw;
    padding-right: min(2.666vw, 40px);
    margin-top: min(2.13vw, 32px);
    flex-shrink: 0;
  }
}
.content__description {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.8;
  color: #231815;
  margin-bottom: min(16vw, 60px);
  width: 100%;
}
@media screen and (min-width: 768px) {
  .content__description {
    margin-bottom: min(3.6vw, 54px);
    width: 100%;
  }
}
@media screen and (min-width: 900px) {
  .content__description {
    width: min(19.3vw, 290px);
  }
}
.content__swiper-right {
  width: min(201.6vw, 1200px);
}
@media screen and (min-width: 768px) {
  .content__swiper-right {
    width: min(119.53125vw, 1200px);
  }
}
@media screen and (min-width: 900px) {
  .content__swiper-right {
    width: min(80vw, 1200px);
  }
}
@media screen and (min-width: 1500px) {
  .content__swiper-right {
    width: 2800px;
  }
}
.content__slide {
  padding-left: min(6.933vw, 40px);
}
@media screen and (min-width: 768px) {
  .content__slide {
    padding-left: min(3.984375vw, 40px);
  }
}
@media screen and (min-width: 900px) {
  .content__slide {
    padding-left: 0;
    padding-right: min(2.666vw, 40px);
  }
}
.content__slide-inner {
  display: block;
  color: inherit;
}
.content__slide-inner:hover .content__slide-img img {
  transform: scale(1.05);
}
.content__slide-img {
  aspect-ratio: 360/450;
  border-radius: min(3.2vw, 20px);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .content__slide-img {
    border-radius: min(1.9921875vw, 20px);
  }
}
.content__slide-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
.content__slide-text {
  font-size: min(3.3613vw, 20px);
  font-weight: 700;
  text-align: center;
  color: #231815;
  margin: 1.5em 0 0 0;
  transition: color 0.3s ease;
}
@media screen and (min-width: 768px) {
  .content__slide-text {
    font-size: min(1.9921875vw, 20px);
  }
}
@media screen and (min-width: 900px) {
  .content__slide-text {
    font-size: min(1.333vw, 20px);
  }
}
.content__slide:hover .content__slide-text {
  color: #06b4ea;
}
.content__btn-container {
  display: flex;
  gap: 2.2rem;
  padding-left: 0.1rem;
}
@media only screen and (max-width: 56.25em) {
  .content__btn-container {
    display: none;
    justify-content: center;
  }
}
.content__btn-container--sp {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .content__btn-container--sp {
    display: flex;
    width: 50%;
    margin: 0 auto;
    padding: 0 0.4rem;
    gap: 1.6rem;
  }
}
.content .content-btn-prev, .content .content-btn-next {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #06b4ea;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .content .content-btn-prev, .content .content-btn-next {
    width: 45px;
    height: 45px;
  }
}
.content .content-btn-prev:hover, .content .content-btn-next:hover {
  transform: translateY(-3px);
}
.content .content-btn-prev:active, .content .content-btn-next:active {
  transform: translateY(-1px);
}
.content .content-btn-prev::before, .content .content-btn-next::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 2px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
}
.content .content-btn-prev::after, .content .content-btn-next::after {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 50%;
}
@media only screen and (max-width: 56.25em) {
  .content .content-btn-prev::after, .content .content-btn-next::after {
    width: 8px;
    height: 8px;
  }
}
.content .content-btn-prev::before {
  left: 22px;
}
@media only screen and (max-width: 56.25em) {
  .content .content-btn-prev::before {
    left: 18px;
  }
}
.content .content-btn-prev::after {
  left: 22px;
  transform: translateY(-50%) rotate(-135deg);
}
@media only screen and (max-width: 56.25em) {
  .content .content-btn-prev::after {
    left: 18px;
  }
}
.content .content-btn-next::before {
  right: 22px;
}
@media only screen and (max-width: 56.25em) {
  .content .content-btn-next::before {
    right: 18px;
  }
}
.content .content-btn-next::after {
  right: 22px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 56.25em) {
  .content .content-btn-next::after {
    right: 18px;
  }
}

/*************** 
*SNS
***************/
.sns {
  padding: 11rem 0 31.5rem;
  border-top: 1px solid #e8e8e7;
}
@media only screen and (max-width: 37.5em) {
  .sns {
    padding: 5.5rem 0 min(29.3vw, 110px);
  }
}
.sns__inner {
  max-width: 120rem;
  width: calc(100% - 34.2rem);
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .sns__inner {
    width: calc(100% - 6rem);
  }
}
.sns__header {
  text-align: left;
  margin-bottom: 4rem;
}
.sns__heading {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  letter-spacing: -1.3px;
}
@media only screen and (max-width: 56.25em) {
  .sns__heading {
    letter-spacing: -0.7px;
  }
}
.sns__container {
  max-width: 114.3rem;
  display: flex;
  gap: min(2.4vw, 3rem);
  justify-content: space-between;
  padding: 0 2.4rem 0 3.8rem;
}
@media only screen and (max-width: 75em) {
  .sns__container {
    margin: 0 auto;
    padding: 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .sns__container {
    flex-direction: column;
    align-items: center;
    padding: 0;
    gap: min(12.5vw, 47px);
  }
}
.sns__item {
  flex: 1;
  max-width: 500px;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .sns__item {
    width: 100%;
  }
}
.sns__icon {
  padding: 3.6rem 3.5rem 3rem 0.3rem;
}
@media only screen and (max-width: 56.25em) {
  .sns__icon {
    padding: 0 0 2rem 0;
  }
}
.sns__icon img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0;
}
@media only screen and (max-width: 56.25em) {
  .sns__icon img {
    width: 36px;
    height: 36px;
  }
}
.sns__content {
  width: 100%;
  max-height: 40.5vh;
  overflow: hidden;
  border: 1px solid #e8e8e7;
}
.sns__content--scroll {
  overflow: auto;
}
@media only screen and (max-width: 56.25em) {
  .sns__content {
    height: 35vh;
  }
}
@media only screen and (max-width: 37.5em) {
  .sns__content {
    max-height: 32.3vh;
  }
}
.sns__content .instagram-media {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin: 0 !important;
  border: none !important;
  border-radius: 0 !important;
}

.mail-form {
  max-width: 600px;
  margin: 0 auto;
  background: #6ca482;
  padding: 20px;
  border-radius: 10px;
}
.mail-form__group {
  margin-bottom: 20px;
}
.mail-form__label {
  display: block;
  font-weight: bold;
  margin-bottom: 8px;
}
.mail-form__required {
  color: #00a1e0;
  font-size: 0.9em;
  margin-left: 5px;
}
.mail-form__input, .mail-form__textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #dcdcdc;
  border-radius: 5px;
  font-size: 1em;
}
.mail-form__textarea {
  height: 120px;
  resize: none;
}
.mail-form__notice {
  font-size: 0.8em;
  color: #666;
  margin-bottom: 20px;
}
.mail-form__submit {
  text-align: center;
}
.mail-form__button {
  display: inline-block;
  width: 100%;
  background: #00a1e0;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 10px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s;
}
.mail-form__button:hover {
  background: #007bb8;
}

.page-about {
  padding: 6rem 0 5rem 0;
  border-radius: inherit;
}
.page-about__wrap {
  padding-bottom: 25.8rem;
}
@media only screen and (max-width: 37.5em) {
  .page-about__wrap {
    padding-bottom: 13.3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-about {
    padding: 9.8rem 0 5rem 0;
  }
}
.page-about__detail {
  max-width: 86rem;
  width: 100%;
  margin: 0 auto;
  margin-bottom: -1.2rem;
}
.page-about__logo-title {
  display: flex;
  gap: 1.1rem;
  margin: 0.1rem 0 0.3rem 0;
  padding-left: 0.4rem;
}
@media only screen and (max-width: 56.25em) {
  .page-about__logo-title {
    padding-left: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-about__logo-title {
    display: block;
    margin-bottom: 3rem;
    padding-left: 0.8rem;
  }
}
.page-about__logo-title .page-about__logo {
  width: 9.5rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 3rem;
  border-radius: inherit;
}
@media only screen and (max-width: 37.5em) {
  .page-about__logo-title .page-about__logo {
    width: 8rem;
    margin-bottom: 2.4rem;
  }
}
.page-about__logo-title-text {
  font-size: clamp(28px, 3vw, 35px);
  font-weight: bold;
  line-height: 1.6;
}
.page-about__desc {
  font-size: clamp(14px, 3vw, 18px);
  margin-bottom: 0;
  color: #231815;
  padding: 0 0 0 1rem;
}
@media only screen and (max-width: 56.25em) {
  .page-about__desc {
    padding-left: 0.6rem;
    margin-bottom: 8.3rem;
  }
}
.page-about__desc p:first-child {
  line-height: 2.1;
}
@media only screen and (max-width: 37.5em) {
  .page-about__desc p:first-child {
    line-height: 2;
  }
}
.page-about__desc p:nth-of-type(2) {
  line-height: 2.15;
}
@media only screen and (max-width: 37.5em) {
  .page-about__desc p:nth-of-type(2) {
    line-height: 2;
  }
}
.page-about__desc p:last-of-type {
  line-height: 2.15;
}
@media only screen and (max-width: 37.5em) {
  .page-about__desc p:last-of-type {
    line-height: 2;
  }
}
.page-about__highlight-box {
  background-image: url("../img/about-img2.png");
  background-size: contain;
  background-repeat: no-repeat;
  padding-top: 29%;
  margin: 0 1rem 2.2rem 1rem;
}
@media only screen and (max-width: 56.25em) {
  .page-about__highlight-box {
    background-image: url("../img/about-img2-sp.png");
    padding-top: 80%;
    margin: 0 0.6rem;
  }
}
.page-about__support {
  background-image: url("../img/bg-1.webp");
  background-size: contain;
  background-repeat: no-repeat;
}
.page-about__support-inner {
  padding-top: 51.5rem;
  max-width: 117rem;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .page-about__support-inner {
    padding-top: 50%;
    padding: 50% 4rem 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-about__support-inner {
    padding-top: 40%;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-about__support-inner {
    padding: 59% 2.6rem 0;
  }
}
.page-about__cycle {
  background-image: url("../img/about-img1.png");
  background-size: cover;
  background-repeat: no-repeat;
  padding-top: 77%;
  margin: 0 0 14rem 1.2rem;
}
@media only screen and (max-width: 75em) {
  .page-about__cycle {
    margin: 0 0 4.5rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-about__cycle {
    background-image: url("../img/about-img1-sp.png");
    margin: 0 0 4.1rem 0;
    padding-top: 102%;
  }
}
.page-about__contents {
  margin: -0.3rem 0 0 0;
}
@media only screen and (max-width: 37.5em) {
  .page-about__contents {
    margin: 47px 0 0;
  }
}
.page-about__contents-box {
  position: relative;
  display: flex;
  align-items: center;
  overflow: visible;
  margin-bottom: min(9.67vw, 120px);
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-box {
    flex-direction: column;
    margin-bottom: 8rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-about__contents-box {
    margin-bottom: 0.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-box--reverse {
    flex-direction: column-reverse;
  }
}
.page-about__contents-text-wrapper {
  background: #fff;
  border-radius: 42px;
  padding: 6rem 9rem;
  margin-bottom: -20rem;
  position: absolute;
  left: 1.1%;
  width: min(290vw, 600px);
  height: min(29vw, 360px);
  z-index: 2;
}
@media only screen and (max-width: 75em) {
  .page-about__contents-text-wrapper {
    padding: 6rem 6rem 5rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-text-wrapper {
    background: transparent;
    padding: 2.5rem 2rem;
    margin-bottom: 0;
    height: auto;
  }
}
.page-about__contents-text-wrapper--right {
  right: 0;
  padding-left: 9rem;
  margin-left: auto;
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-text-wrapper--right {
    padding-left: 2rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-box, .page-about__contents-text-wrapper {
    position: static;
    width: 100%;
  }
}
.page-about__contents-title {
  font-size: clamp(26px, 3vw, 36px);
  font-weight: bold;
  margin-bottom: 2.7rem;
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-title {
    margin-bottom: 1rem;
  }
}
.page-about__contents-text {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.7;
  color: #231815;
  margin-bottom: 3.1rem;
}
@media only screen and (max-width: 37.5em) {
  .page-about__contents-text {
    margin-bottom: 0.8rem;
  }
}
.page-about__contents-img-wrapper {
  overflow: hidden;
  z-index: 1;
}
.page-about__contents-img-wrapper--right {
  margin-left: auto;
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-img-wrapper--right {
    margin: 0 auto;
  }
}
.page-about__contents-img-wrapper--left {
  margin-right: auto;
  padding-left: 1rem;
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-img-wrapper--left {
    padding-left: 0;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-img-wrapper--right, .page-about__contents-img-wrapper--left {
    margin: 0 auto;
  }
}
.page-about__contents-img-wrapper img {
  border-radius: 35px;
}
@media only screen and (max-width: 37.5em) {
  .page-about__contents-img-wrapper img {
    border-radius: 20px;
  }
}
.page-about__contents-img {
  max-width: 72rem;
  width: 100%;
  height: auto;
  border-radius: 1.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  box-shadow: none;
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .page-about__contents-img {
    max-width: 100%;
  }
}
.page-about__btn-container {
  text-align: right;
  margin-top: 2.5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-about__btn-container {
    width: 90%;
    margin: 2rem auto 0;
  }
}
.page-about__btn-container .btn {
  max-width: 37.6rem;
  width: 100%;
  padding: min(1.85vw, 23px) 0;
  font-size: clamp(13px, 3vw, 16px);
}
@media only screen and (max-width: 56.25em) {
  .page-about__btn-container .btn {
    margin: 0 auto;
    padding: 1.7rem 2.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-about__btn-container .btn {
    padding: 1.7rem 2.3rem;
  }
}
.page-about__btn-container .btn .page-about__contents {
  margin: 0 auto 0 0;
  padding-top: 2.4rem;
  padding-left: 6rem;
}
.page-about__btn-container .component-btn {
  font-size: 1.1rem;
  padding: 0.8em 2.5em;
}
.page-about__btn-container--1 {
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .page-about__btn-container--1 {
    padding-top: 0;
  }
}
.page-about__btn-container--1 .page-about__btn--1 {
  margin: 0 auto 0 0;
}
.page-about__btn-container--2 {
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .page-about__btn-container--2 {
    margin-top: 1.8rem;
  }
}
.page-about__btn-container--2 .page-about__btn--2 {
  margin: 0 auto 0 0;
}
.page-about__btn-container--3 {
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .page-about__btn-container--3 {
    padding-top: 0;
  }
}
.page-about__btn-container--3 .page-about__btn--3 {
  margin: 0 auto 0 0;
}
.page-about__btn-container--4 {
  text-align: left;
}
.page-about__btn-container--4 .page-about__btn--4 {
  margin: 0 auto 0 0;
}
.page-about__btn-container--5 {
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .page-about__btn-container--5 {
    margin: 2.2rem 0 0 0;
  }
}
.page-about__btn-container--5 .page-about__btn--5 {
  margin: 0 auto 0 0;
}
@media only screen and (max-width: 75em) {
  .page-about__btn-container--1 .page-about__btn--1, .page-about__btn-container--2 .page-about__btn--2, .page-about__btn-container--3 .page-about__btn--3, .page-about__btn-container--4 .page-about__btn--4, .page-about__btn-container--5 .page-about__btn--5 {
    padding: 2rem 3rem;
    width: 80%;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-about__btn-container--3, .page-about__btn-container--4, .page-about__btn-container--5 {
    padding-top: 0;
    margin: 2rem 0 0 0;
  }
  .page-about__btn-container--1 .page-about__btn--1, .page-about__btn-container--2 .page-about__btn--2, .page-about__btn-container--3 .page-about__btn--3, .page-about__btn-container--4 .page-about__btn--4, .page-about__btn-container--5 .page-about__btn--5 {
    margin-left: 0;
    padding: 2rem 8%;
    width: 67%;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-about__btn-contents {
    width: 100%;
  }
}
.page-about__btn-contents .page-about__contents-btn {
  max-width: 21.6rem;
  margin-right: auto;
}
@media only screen and (max-width: 56.25em) {
  .page-about__btn-contents .page-about__contents-btn {
    max-width: 37rem;
    margin: 0 auto 0 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-about__btn-contents .page-about__contents-btn {
    max-width: 17.4rem;
    padding: min(4.53vw, 17px);
  }
}

.breadcrumb__list--topics-archive {
  padding-left: 0.4rem;
}

.page-wrap__group-info {
  padding: 15rem 2.6rem;
}
@media only screen and (max-width: 37.5em) {
  .page-wrap__group-info {
    padding: 10rem 2rem 6.3rem;
  }
}

.page-group__top {
  width: 100%;
  padding: 2.5rem 0 0 0;
  margin-bottom: 12.3rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__top {
    margin-bottom: 5rem;
  }
}
.page-group__top-inner {
  margin: 0 auto;
  padding: 2.5rem 0 3rem;
  box-sizing: border-box;
}
@media only screen and (max-width: 75em) {
  .page-group__top-inner {
    padding: 2.5rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__top-inner {
    padding: 2.5rem 0.7rem;
  }
}
.page-group__header {
  margin-bottom: 2.5rem;
  position: relative;
}
.page-group__title-wrap {
  position: relative;
  margin: 1.5rem 0;
}
@media only screen and (max-width: 37.5em) {
  .page-group__title-wrap {
    margin: 1.5rem 0.6rem 0 0.54rem;
  }
}
.page-group__title-main {
  display: flex;
  align-items: flex-end;
  gap: 1.2rem;
  margin-bottom: 0.5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__title-main {
    gap: 0.7rem;
  }
}
.page-group__subtitle {
  margin-top: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__subtitle {
    margin-top: 1.35rem;
  }
}
.page-group__year {
  font-size: clamp(16px, 3vw, 32px);
  font-weight: 600;
  color: #231815;
  padding-bottom: 0.8rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__year {
    font-size: clamp(25px, 3vw, 32px);
  }
}
.page-group__title {
  margin: 0;
  letter-spacing: 0.02em;
}
.page-group__note {
  position: absolute;
  top: 0;
  right: 0;
  color: #d94c1e;
  font-weight: bold;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}
.page-group__main {
  margin: 0 auto;
  border-radius: 12px;
  box-sizing: border-box;
}
.page-group__img-box {
  width: 100%;
  overflow: hidden;
  margin-bottom: 3rem;
}
.page-group__img {
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 15px;
}
@media only screen and (max-width: 37.5em) {
  .page-group__img {
    border-radius: 3px;
  }
}
.page-group__desc {
  font-size: clamp(14px, 3vw, 18px);
  color: #231815;
  line-height: 2;
  margin-bottom: 8rem;
  width: 100%;
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .page-group__desc {
    margin-bottom: 3.5rem;
    line-height: 1.99;
  }
}
.page-group__btn-container {
  text-align: center;
  width: 100%;
}
.page-group__btn-container .btn {
  max-width: 38rem;
  padding: 2.3rem 0;
}
@media only screen and (max-width: 37.5em) {
  .page-group__btn-container .btn {
    max-width: 30rem;
    padding: 1.9rem 2.3rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__btn-container .page-group__btn {
    margin-top: -4px;
  }
}

.page-group__category-list {
  display: flex;
  flex-direction: column;
  gap: min(1.46666vw, 22px);
  margin-top: 2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-list {
    gap: min(4.8vw, 18px);
    margin-top: 0;
  }
}

.page-group__category-label {
  display: inline-block;
  font-size: 13px;
  font-weight: bold;
  padding: 0.25rem 2rem;
  border-radius: 9999px;
  color: #fff;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-label {
    font-size: 10px;
    padding: 0.25rem 1.5rem;
  }
}
.page-group__category-label--blue {
  background-color: #06b4ea;
}
.page-group__category-label--orange {
  background-color: #ffb43d;
  padding: 0.25rem 1.5rem;
  margin-bottom: 1.8rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-label--orange {
    margin-bottom: 0.7rem;
  }
}
.page-group__category-label--green {
  background-color: #43b149;
}

.page-group__category-card {
  border: 2px solid #e0e0e0;
  border-radius: 16px;
  padding: 0.2rem 2.2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}
.page-group__category-card--shizuku3 {
  margin-bottom: 3.7rem;
}
.page-group__category-card + .page-group__category-card {
  margin-top: 2rem;
}
.page-group__category-card-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: 12rem;
}
@media only screen and (max-width: 56.25em) {
  .page-group__category-card-header {
    width: 13rem;
  }
}
.page-group__category-card-tag {
  display: inline-block;
  font-size: 0.85rem;
  color: #fff;
  background: #f5b400;
  border-radius: 8px;
  padding: 0.15em 0.8em;
}
.page-group__category-card-body {
  display: flex;
  align-items: flex-start;
  gap: 1.8rem;
  margin: 0.1rem 0 0 0;
}
.page-group__category-card-body--e-water2 {
  margin-bottom: 3.9rem;
}
.page-group__category-card-body--e-water3 {
  margin-bottom: 4.4rem;
}
.page-group__category-card-body--next-gen1, .page-group__category-card-body--next-gen2, .page-group__category-card-body--next-gen3 {
  margin-bottom: 3.9rem;
}
.page-group__category-card-body--shizuku1 {
  margin-top: 0.3rem;
}
.page-group__category-card-body--shizuku2, .page-group__category-card-body--shizuku3 {
  margin-bottom: 3.9rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-body {
    gap: 0.75rem;
    margin-left: 0.6rem;
    margin: 0 0 0 0.6rem;
  }
  .page-group__category-card-body--e-water2 {
    margin-bottom: 0.8rem;
  }
  .page-group__category-card-body--e-water3 {
    margin-bottom: 1rem;
  }
  .page-group__category-card-body--next-gen2 {
    margin-top: 0;
  }
  .page-group__category-card-body--next-gen3 {
    margin-top: 0.3rem;
    margin-bottom: 0.9rem;
  }
  .page-group__category-card-body--shizuku1 {
    margin-top: -0.2rem;
  }
}
.page-group__category-card-img-wrap {
  aspect-ratio: 380/260;
  width: min(38vw, 38rem);
  background-color: #f0f0f0;
  border-radius: min(1.85vw, 23px);
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-img-wrap {
    aspect-ratio: 380/380;
    width: min(40vw, 160px);
    border-radius: 10px;
  }
}
.page-group__category-card-img-wrap img {
  width: 100%;
  height: 100%;
  border-radius: min(1.85vw, 23px);
  -o-object-fit: cover;
     object-fit: cover;
  /*@include m.respond(phone) {
      border-radius: 10px;
  }*/
}
.page-group__category-card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 2rem 0 2rem 2.1rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-content {
    padding: 0.3rem 0 1rem 0.6rem;
  }
}
.page-group__category-card-header {
  width: 100%;
}
.page-group__category-card-header--e-water3 {
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-header--e-water3 {
    margin-bottom: 0.8rem;
  }
  .page-group__category-card-header--shizuku {
    margin-bottom: 0.7rem;
  }
  .page-group__category-card-header--shizuku2 {
    margin-bottom: 0.9rem;
  }
}
.page-group__category-card-title {
  font-size: clamp(14px, 3vw, 18px);
  margin-top: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-title {
    margin-top: 0.7rem;
  }
}
.page-group__category-card-title-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  background: url("../img/svg/external-link.svg") no-repeat center center;
  background-size: contain;
}
.page-group__category-card-title-link:hover {
  opacity: 0.7;
}
.page-group__category-card-meta {
  font-size: 0.95rem;
  color: #231815;
  margin-top: 1.5rem;
}
.page-group__category-card-meta .page-group__category-card-label {
  display: inline-block;
  padding: 0 0.8rem;
  border: 1px solid #231815;
  border-radius: 15px;
  font-size: 13px;
  font-weight: bold;
  color: #231815;
  margin-right: 0.8rem;
  white-space: nowrap;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-meta .page-group__category-card-label {
    font-size: 10px;
    margin-bottom: 0.8rem;
  }
}
.page-group__category-card-desc {
  font-size: 1rem;
  color: #231815;
  margin-top: 0.8rem;
}
@media only screen and (max-width: 56.25em) {
  .page-group__category-card-desc {
    display: none;
  }
}
.page-group__category-card-report {
  margin-top: 3.75rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-report {
    position: relative;
    margin-top: 2rem;
    margin-left: 0.6rem;
    z-index: 10;
  }
  .page-group__category-card-report--e-water3 {
    margin-top: 0;
  }
  .page-group__category-card-report--next-gen1, .page-group__category-card-report--next-gen2 {
    margin-top: 0;
  }
  .page-group__category-card-report--next-gen3 {
    margin-top: 0rem;
  }
}
.page-group__category-card-report-title {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: bold;
  margin-bottom: 0.3rem;
  margin: -0.7rem 0 2rem 0;
}
@media only screen and (max-width: 56.25em) {
  .page-group__category-card-report-title {
    margin: 2.5rem 0 2rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-report-title {
    margin: 0 0 0.6rem 0;
    letter-spacing: 1px;
  }
}
.page-group__category-card-report-title--e-water3 {
  margin: -1rem 0 2rem 0;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-report-title--e-water3 {
    margin: -0.8rem 0 0.8rem 0;
  }
}
.page-group__category-card-report-list {
  display: table;
}
.page-group__category-card-report-list li {
  font-size: clamp(13px, 3vw, 16px);
  margin-bottom: 1rem;
}
.page-group__category-card-report-list li li {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-report-list li {
    white-space: nowrap;
    overflow: hidden;
    display: inline-block;
    max-width: 100%;
    margin-bottom: 0.3rem;
  }
}
.page-group__category-card-report-list li a:hover {
  color: #43b149;
}
.page-group__category-card-report-date {
  display: inline-block;
  min-width: 107px;
  font-family: "Montserrat", sans-serif;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-card-report-date {
    min-width: 78px;
  }
}

.page-group__category-card-desc__sp {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .page-group__category-card-desc__sp {
    display: block;
    position: relative;
    margin-top: 3.25rem;
    font-size: clamp(13px, 3vw, 16px);
    line-height: 1.8;
    letter-spacing: 0.7px;
    /*
    &::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 14rem;
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%,
                #fff 50%
            );
        pointer-events: none;
        z-index: 1;
    }

    // グラデーションを非表示にするクラス
    &.no-gradient::after {
        display: none;
    }

    .desc-toggle-btn {
        display: flex;
        align-items: center;
        font-size: 14px;
        letter-spacing: -1px;
        position: absolute;
        top: 77%;
        left: 50%;
        z-index: 10;
        transform: translate(-50%, -50%);

        @include m.respond(phone) {
            top: 67.5%;
            left: 51.5%;
        }

        &__arrow {
            display: inline-block;
            margin: 0 1rem 1rem 1rem;
            padding-left: 0.4rem;
        }
    }

    &.active {
        bottom: 0;
        top: auto;
    }

    &__arrow-icon {
        transition: transform 0.3s ease;
    }
        */
  }
}
@media only screen and (max-width: 56.25em) and (max-width: 37.5em) {
  .page-group__category-card-desc__sp {
    margin-top: 1.75rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-group__category-card-desc__sp-text {
    height: auto;
    overflow: hidden;
    position: relative;
  }
  .page-group__category-card-desc__sp-text::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 6rem;
    background: linear-gradient(360deg, rgb(255, 255, 255) 2%, rgba(255, 255, 255, 0) 80%);
    pointer-events: none;
    z-index: 1;
    opacity: 0;
  }
  .page-group__category-card-desc__sp .desc-toggle-btn {
    display: flex;
    align-items: center;
    font-size: 14px;
    letter-spacing: -1px;
    position: absolute;
    bottom: 0.25em;
    left: 50%;
    z-index: 10;
    transform: translate(-50%, 0);
    opacity: 0;
    pointer-events: none;
  }
  .page-group__category-card-desc__sp .desc-toggle-btn__arrow {
    display: inline-block;
    margin: 0 1rem 1rem 1rem;
    padding-left: 0.4rem;
  }
  .page-group__category-card-desc__sp.more {
    padding-bottom: 2.5em;
  }
  .page-group__category-card-desc__sp.more .desc-toggle-btn {
    opacity: 1;
    pointer-events: auto;
  }
  .page-group__category-card-desc__sp.more .page-group__category-card-desc__sp-text::before {
    opacity: 1;
  }
}

/*
.page-group__category-card-desc__sp {
    display: none;

    @include m.respond(tab-port) {
        display: block;
        font-size: clamp(13px, 3vw, 16px);
        position: relative;
        margin-top: 3.75rem;
        margin-bottom: 6.5rem;
        line-height: 1.8;
        letter-spacing: 0.7px;

        @include m.respond(phone) {
            margin-top: 1.1rem;
            margin-bottom: -0.8rem;
        }

        &::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            height: 14rem;
            background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%,
                    #fff 50%
                );
            pointer-events: none;
            z-index: 1;
        }

        // グラデーションを非表示にするクラス
        &.no-gradient::after {
            display: none;
        }

        //.desc-container {
        //    position: relative;
        //    margin-bottom: 2rem;
        //}

        //.desc-hidden-content {
        //    margin-top: 1rem;
        //    padding-bottom: 3rem; // ボタンのスペースを確保
        //}

        .desc-toggle-btn {
            display: flex;
            align-items: center;
            font-size: 14px;
            letter-spacing: -1px;
            position: absolute;
            top: 77%;
            left: 50%;
            z-index: 10;
            transform: translate(-50%, -50%);

            @include m.respond(phone) {
                top: 67.5%;
                left: 51.5%;
            }

            &__arrow {
                display: inline-block;
                margin: 0 1rem 1rem 1rem;
                padding-left: 0.4rem;
            }
        }

        &.active {
            bottom: 0;
            top: auto;
        }

        &__arrow-icon {
            transition: transform 0.3s ease;
        }
    }
}*/
.page-group__category {
  margin-top: 3rem;
  padding-bottom: 7.2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category {
    margin-top: -0.3rem;
    padding-bottom: 1rem;
  }
}

.page-group__category-tabs {
  width: 100%;
  margin: 0 auto;
  display: flex;
  /*
  max-width: 66rem;
  justify-content: flex-start;
  gap: 2rem;
  */
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  padding: 0 0.6rem 1rem 0.6rem;
}
@media only screen and (max-width: 56.25em) {
  .page-group__category-tabs {
    max-width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-tabs {
    /*
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 0.8rem;
    .page-group__tab {
        width: calc(46% - 1rem);
    }
    */
    gap: 2rem;
  }
}

.page-group__tab {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: bold;
  text-align: center;
  color: #fff;
  cursor: pointer;
  padding: 1.4rem 2.25em;
  border-radius: 24px;
  border: none;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  min-width: 18rem;
  position: relative;
  /*&:first-of-type {
      margin-left: 4.5rem;

      @include m.respond(tab-port) {
          margin-left: 0;
      }
  }*/
}
.page-group__tab::before, .page-group__tab::after {
  content: "";
  display: block;
  position: absolute;
  border-color: #fff;
  border-style: solid;
  height: 0;
  top: 0;
  bottom: 0;
  right: 1em;
  margin: auto 0;
}
.page-group__tab::before {
  width: 10px;
  border-width: 2px 0 0 0;
  transform: rotate(90deg);
}
.page-group__tab::after {
  width: 10px;
  height: 10px;
  border-width: 2px 2px 0 0;
  transform: rotate(135deg);
}
@media only screen and (max-width: 75em) {
  .page-group__tab {
    padding: 1.4rem 2.25em;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__tab {
    min-width: calc(50% - 1rem);
    padding: 1rem 2.25em;
  }
}
.page-group__tab:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
.page-group__tab:active {
  transform: translateY(0);
}
.page-group__tab--btn {
  margin-top: -2px;
}
.page-group__tab--blue {
  background: #257ed2;
}
@media only screen and (max-width: 37.5em) {
  .page-group__tab--blue {
    padding: 1.2rem 1.6rem;
  }
}
.page-group__tab--orange {
  background: #ffb43d;
}
@media only screen and (max-width: 37.5em) {
  .page-group__tab--orange {
    padding: 1.2rem 1.3rem;
    margin-right: 3.5rem;
  }
}
.page-group__tab--green {
  background: #43b149;
}
@media only screen and (max-width: 37.5em) {
  .page-group__tab--green {
    padding: 1.2rem 1.3rem;
  }
}

.btn__arrow--down {
  transform: rotate(90deg);
}

.page-group__category-content {
  display: none;
}
.page-group__category-content.active {
  display: block;
}

.page-group__category-section {
  scroll-margin-top: 100px;
  margin-top: 4rem;
  padding: 1rem 0 0;
}
@media only screen and (max-width: 75em) {
  .page-group__category-section {
    padding: 1rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-section {
    padding: 0.9rem 0;
    margin-top: -0.3rem;
  }
}
.page-group__category-section:nth-of-type(2) {
  margin-top: 2.8rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-section:nth-of-type(2) {
    margin-top: 0;
  }
}
.page-group__category-section:last-of-type {
  margin-top: 2.9rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-section:last-of-type {
    margin-top: 0.3rem;
  }
}

.page-group__content-title {
  font-size: clamp(18px, 3vw, 28px);
  color: #231815;
  background-color: #f4f4f4;
  font-weight: bold;
  padding: 1.8rem 1.2rem 1.8rem 4rem;
  margin: 0;
  display: inline-block;
  width: 100%;
  text-align: left;
  border-radius: 24px 4px 4px 24px;
  position: relative;
  /*
  &--blue,
  &--orange,
  &--green {
      border-radius: 24px 4px 4px 24px; // 左側だけ大きな丸みをつける
      position: relative;

      &::before {
          content: '';
          position: absolute;
          left: 0;
          top: 0;
          height: 97%;
          width: 16px;
          background-color: transparent; // 各カラーバリエーションで上書き
          border-radius: 12px;

          @include m.respond(phone) {
              width: 12px;
          }
      }
  }
  */
  /*
  &--blue::before {
      background-color: var.$color-blue;
  }

  &--orange::before {
      background-color: var.$color-orange;
  }

  &--green::before {
      background-color: var.$color-green;
  }
  */
}
.page-group__content-title-icon {
  position: absolute;
  left: 0;
  top: 0;
  height: 97%;
  width: 16px;
  background-color: transparent;
  border-radius: 12px;
  filter: brightness(0.8);
}
@media only screen and (max-width: 37.5em) {
  .page-group__content-title-icon {
    width: 12px;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__content-title {
    padding: 1rem 1.2rem 1.2rem 2.7rem;
    margin-bottom: 2.2rem;
  }
}

.page-group__category-list {
  border-radius: 8px;
  overflow: hidden;
}
.page-group__category-list--2 {
  margin-top: 2.2rem;
}
.page-group__category-list--3 .page-group__category-card:first-of-type {
  margin: 0.8rem 0 0.4rem 0;
}
.page-group__category-list--3 .page-group__category-card:last-of-type {
  margin-top: 1rem;
}
.page-group__category-list .page-group__category-card {
  border: none;
  border-radius: 0;
  border-bottom: 1px solid #e8e8e7;
  margin-top: 0;
  box-shadow: none;
  padding: 2.6rem 0 4rem;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-list .page-group__category-card {
    padding: 0 0 1.5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-list .page-group__category-card-title {
    line-height: 1.3;
  }
}
.page-group__category-list .page-group__category-card-title--2 {
  margin-bottom: 1.3rem;
}
.page-group__category-list .page-group__category-card-meta {
  display: flex;
  align-items: baseline;
  font-size: clamp(12px, 3vw, 15px);
  margin-bottom: 0;
  line-height: 1.4;
}
@media only screen and (max-width: 56.25em) {
  .page-group__category-list .page-group__category-card-meta {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-list .page-group__category-card-meta {
    border-bottom: none;
    padding-bottom: 0;
  }
}
.page-group__category-list .page-group__category-card-desc {
  font-size: clamp(12px, 3vw, 16px);
  line-height: 1.9;
  margin-top: 2.4rem;
  padding-top: 2.4rem;
  border-top: 1px solid #c8c8c8;
}
@media only screen and (max-width: 37.5em) {
  .page-group__category-list .page-group__category-card-desc {
    padding-top: 0;
    border-top: none;
  }
}

.page-group__category-card-report-link {
  transition: all 0.3s ease-in-out;
}

#e-water .page-group__category-card-report-link:hover {
  color: #06b4ea;
}

#next-gen .page-group__content-title {
  margin-bottom: 0;
}
#next-gen .page-group__category-card-header {
  margin-bottom: 0;
}
#next-gen .page-group__category-card-report-link:hover {
  color: #ffb43d;
}

#shizuku .page-group__category-card-report-link:hover {
  color: #43b149;
}
#shizuku .page-group__category-label {
  padding: 0.25rem 1.2rem;
}

.page-topics-archive__wrap {
  padding: 15.1rem 2rem 0 2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-topics-archive__wrap {
    padding: 10.1rem 2rem 0 2rem;
  }
}

.page-component__header--topics-archive {
  margin-bottom: min(9.11vw, 113px);
  padding-left: 0.5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-component__header--topics-archive {
    margin-bottom: 6rem;
  }
}

.bg-img__topica--archive {
  background-image: url("../img/bg-2.webp");
  background-repeat: no-repeat;
  background-size: contain;
  padding: 39rem 0 17rem 0;
}
@media only screen and (max-width: 37.5em) {
  .bg-img__topica--archive {
    padding: 14.2rem 0 4rem 0;
  }
}

/******** コンテンツ内容 *********/
@media only screen and (max-width: 37.5em) {
  .page-topics-archive {
    margin-bottom: min(13.3vw, 50px);
  }
}
.page-topics-archive__wrap-header {
  margin-bottom: 11rem;
}
@media only screen and (max-width: 56.25em) {
  .page-topics-archive__wrap-header {
    margin-bottom: 6rem;
  }
}
.page-topics-archive__category {
  max-width: 120rem;
  width: 100%;
  margin: 0 auto -9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: min(1.37vw, 17px);
  line-height: 1.6;
  font-size: min(4.26vw, 16px);
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .page-topics-archive__category {
    gap: 0;
    margin: 0 auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-topics-archive__category {
    display: block;
    font-size: min(3.2vw, 15px);
    gap: min(1.666vw, 6px);
    margin: 0 auto min(4.8rem, 18px);
    padding: 2.6rem 0 0 0.6rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-topics-archive__category-left .all {
    display: none;
  }
}
.page-topics-archive__category-right {
  flex: 1;
}
@media only screen and (max-width: 56.25em) {
  .page-topics-archive__category-right {
    padding-left: 0;
  }
}
.page-topics-archive__category-right .all {
  display: none;
}
@media only screen and (max-width: 56.25em) {
  .page-topics-archive__category-right .all {
    display: block;
  }
}
.page-topics-archive__category-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  gap: min(1.19vw, 10px) min(1.2vw, 15px);
}
@media only screen and (max-width: 37.5em) {
  .page-topics-archive__category-list {
    gap: min(1.6vw, 6px) min(2.13vw, 8px);
  }
}
.page-topics-archive__category-item {
  margin: 0;
}
.page-topics-archive__category-item a {
  display: block;
  border-radius: 20px;
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  transition: opacity 0.3s;
  line-height: 1.5;
  padding: calc(0.37em - 4px) 2.1em calc(0.37em - 2px);
}
.page-topics-archive__category-item a:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 37.5em) {
  .page-topics-archive__category-item a {
    line-height: 1.5;
    padding: 2px 16px;
    padding: 0.533vw 6.266vw;
    /* 2 ÷ 375 * 100 = 0.533vw　16 ÷ 375 * 100 = 4.266vw */
  }
}
.page-topics-archive__category-item a.current {
  box-shadow: inset 0 0 0 2px #000;
}
.page-topics-archive__category-item a.disabled {
  opacity: 0.2;
  pointer-events: none;
}
.page-topics-archive__category-item.all a {
  background-color: #fff;
  border: 1px solid #c8c8c8;
  color: #231815;
  width: 100%;
}
.page-topics-archive__category-item.announcement a {
  background-color: #257ed2;
}
.page-topics-archive__category-item.forum a {
  background-color: #43b149;
}
.page-topics-archive__category-item.josei-report a {
  background-color: #f29da8;
}
.page-topics-archive__category-item.kickoff a {
  background-color: #944892;
}
.page-topics-archive__category-item.mailmag a {
  background-color: #06b4ea;
}
.page-topics-archive__category-item.news a {
  background-color: #ffb43d;
}
.page-topics-archive__category-item.report a {
  background-color: #e4556f;
}
.page-topics-archive__category-item.web-news a {
  background-color: #ff8643;
}
.page-topics-archive__category-item.web-report a {
  background-color: #0068a9;
}
.page-topics-archive__container {
  margin-top: 40px;
}
.page-topics-archive__title {
  letter-spacing: 2px;
}
@media only screen and (max-width: 37.5em) {
  .page-topics-archive__title {
    letter-spacing: 0;
  }
}

.topics__item--sp .topics__item-btn {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .topics__item--sp .topics__item-btn {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .topics__item--sp {
    display: block;
  }
}

.desc-toggle-btn--topics {
  display: none;
}
@media only screen and (max-width: 37.5em) {
  .desc-toggle-btn--topics {
    display: flex;
    margin: 5rem auto 0;
    font-size: 13px;
    padding-left: 1.5rem;
  }
}

.desc-toggle-btn__arrow {
  margin-left: 1.6rem;
}

.bg-gradation__topics-single {
  margin-top: -15rem;
}
@media only screen and (max-width: 37.5em) {
  .bg-gradation__topics-single {
    margin-top: -5rem;
  }
}

.topics-bg--single {
  padding: 45rem 0 9.5rem;
  background-size: contain;
}
@media only screen and (max-width: 37.5em) {
  .topics-bg--single {
    padding: 15rem 0 7.5rem;
  }
}

.page-single__inner {
  max-width: 121rem;
  margin: 0 auto;
  padding: 0 2.6rem;
}
@media only screen and (max-width: 75em) {
  .page-single__inner {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-single__inner {
    padding: 0;
    padding: 0 2.6rem;
  }
}
.page-single__detail {
  border-radius: min(3.22vw, 40px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  margin-bottom: 40px;
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail {
    border-radius: 10px;
  }
}
.page-single__detail-inner {
  background-color: #fff;
  padding: 11rem 15.5rem 11rem;
}
@media only screen and (max-width: 75em) {
  .page-single__detail-inner {
    padding: 8rem 7.6005vw;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail-inner {
    padding: 2.1rem 2rem 4rem;
  }
}
.page-single__detail-meta {
  margin-bottom: 2rem;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail-meta {
    margin-bottom: 1.6rem;
  }
}
.page-single__detail-date {
  display: block;
  color: #231815;
  font-size: clamp(13px, 3vw, 16px);
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  margin-bottom: 1.6rem;
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail-date {
    margin-bottom: 1.4rem;
  }
}
.page-single__detail-category {
  display: inline-block;
  padding: 3px 15px;
  border-radius: 20px;
  color: #fff;
  font-size: clamp(13px, 3vw, 16px);
  font-weight: bold;
  margin-bottom: 1.5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail-category {
    margin-bottom: 1.3rem;
  }
}
.page-single__detail-category.announcement {
  background-color: #257ed2;
}
.page-single__detail-category.forum {
  background-color: #43b149;
}
.page-single__detail-category.josei-report {
  background-color: #f29da8;
}
.page-single__detail-category.kickoff {
  background-color: #944892;
}
.page-single__detail-category.mailmag {
  background-color: #06b4ea;
}
.page-single__detail-category.news {
  background-color: #ffb43d;
}
.page-single__detail-category.report {
  background-color: #e4556f;
}
.page-single__detail-category.web-news {
  background-color: #ff8643;
}
.page-single__detail-category.web-report {
  background-color: #0068a9;
}
.page-single__detail-title {
  font-size: clamp(21px, 3vw, 26px);
  font-weight: bold;
  line-height: 1.6;
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail-title {
    line-height: 1.4;
  }
}
.page-single__detail-img {
  margin: 0 0 4rem;
  text-align: center;
  aspect-ratio: 840/654;
  width: min(67vw, 840px);
}
@media only screen and (max-width: 75em) {
  .page-single__detail-img {
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail-img {
    margin: 0 0 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .page-single__detail-img {
    width: 75.4vw;
    max-width: 100%;
  }
}
.page-single__detail-img img {
  max-width: 100%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px;
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail-img img {
    border-radius: 10px;
  }
}
.page-single__detail-text {
  font-size: clamp(13px, 3vw, 16px);
  line-height: 1.76;
  color: #231815;
}
.page-single__detail-text p {
  margin-bottom: 20px;
}
.page-single__detail-text p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 37.5em) {
  .page-single__detail-text p:last-child {
    line-height: 1.73;
  }
}
.page-single__detail-text a {
  color: #43b149;
}
.page-single__back {
  font-size: clamp(13px, 3vw, 16px);
  text-align: center;
  margin: 10.6rem 0 5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-single__back {
    margin: 5rem 0;
  }
}
.page-single__back-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  color: #231815;
  text-decoration: none;
  transition: opacity 0.3s;
  font-weight: bold;
}
.page-single__back-link:hover {
  opacity: 0.7;
}
.page-single__back-icon {
  padding-right: 1.6rem;
}
.page-single__back-text {
  display: inline-block;
  padding-right: 2.2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-single__back-text {
    padding-right: 0;
  }
}

.page-search__results {
  margin-bottom: 16rem;
}
@media only screen and (max-width: 56.25em) {
  .page-search__results {
    margin-bottom: 12rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-search__results {
    margin-bottom: 8rem;
  }
}

.breadcrumb__joseikin {
  margin: 0 auto 8.2rem;
}
@media only screen and (max-width: 37.5em) {
  .breadcrumb__joseikin {
    margin: 0 auto 5rem;
  }
}

.page-joseikin {
  max-width: 121rem;
  margin: 0 auto;
  padding: 0 2rem;
}
@media only screen and (max-width: 75em) {
  .page-joseikin {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin {
    padding: 0 2.6rem;
  }
}
.page-joseikin__title {
  font-size: clamp(32px, 3vw, 40px);
  font-weight: bold;
  margin-bottom: 10rem;
  line-height: 1.4;
  color: #231815;
  position: relative;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__title {
    line-height: 1.3;
    margin-bottom: 3.8rem;
  }
}
.page-joseikin__title--child {
  margin-bottom: 6rem;
}
@media only screen and (max-width: 56.25em) {
  .page-joseikin__title--child {
    margin-bottom: 1rem;
  }
}
.page-joseikin__container {
  margin-bottom: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__container {
    margin-bottom: 2.5rem;
  }
}
.page-joseikin__container-inner {
  display: flex;
  gap: min(2.82vw, 35px);
}
@media only screen and (max-width: 56.25em) {
  .page-joseikin__container-inner {
    flex-direction: column;
    gap: min(5.33vw, 20px);
  }
}
.page-joseikin__container--gaiyou {
  margin-bottom: 8rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__container--gaiyou {
    margin-bottom: -2.6rem;
  }
}
.page-joseikin__container--flyer {
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
  margin-bottom: 4.2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__container--flyer {
    border-top: none;
    margin-bottom: 3.2rem;
  }
}
.page-joseikin__container--child {
  margin-bottom: 8rem;
}
.page-joseikin__movie {
  border-bottom: 1px solid #e8e8e7;
  padding-bottom: 4.7rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__movie {
    padding-bottom: 2.5rem;
  }
}
.page-joseikin__movie-container {
  width: min(77.4vw, 960px);
  height: min(43.5vw, 540px);
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .page-joseikin__movie-container {
    width: 100%;
    height: auto;
  }
}
.page-joseikin__movie-container .youtube {
  border-radius: min(3.22vw, 40px);
}
.page-joseikin__movie-container .youtube-thumbnail::before {
  background-color: #06b4ea;
}
.page-joseikin__image {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-joseikin__image-col {
  flex: 1;
}
.page-joseikin__image-wrap {
  width: min(45.1vw, 560px);
  height: min(32.2vw, 400px);
  border-radius: 25px;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .page-joseikin__image-wrap {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__image-wrap {
    border-radius: 10px;
  }
}
@media screen and (max-width: 375px) {
  .page-joseikin__image-wrap {
    width: min(86.1vw, 323px);
    height: min(61.3vw, 230px);
  }
}
.page-joseikin__image-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.page-joseikin__image-image-wrap {
  position: relative;
  width: 100%;
  border: 1px solid #7f7f7f;
  border-radius: 5px;
  overflow: hidden;
  background-color: #d1f2f7;
  padding-top: 140%;
}
.page-joseikin__content-col {
  flex: 1;
}
.page-joseikin__content-section {
  margin-bottom: 2.2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__content-section {
    margin-bottom: 1.2rem;
  }
}
.page-joseikin__content-section:last-child {
  margin-bottom: 0;
}
.page-joseikin__content-title {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: bold;
  margin-bottom: 1.1rem;
  padding: 1.9rem 0 0 0.4rem;
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__content-title {
    margin-bottom: 0.5rem;
    padding: 2px 0;
  }
}
.page-joseikin__content-title--reserve {
  margin-bottom: 0;
  padding: 1.5rem 0 1.4rem 0.4rem;
  border-top: 1px solid #c8c8c8;
  border-bottom: 1px solid #c8c8c8;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__content-title--reserve {
    padding: 1rem 0;
    line-height: 1.6;
  }
}
.page-joseikin__content-text p {
  font-size: clamp(13px, 3vw, 16px);
  line-height: 1.88;
  margin-bottom: 15px;
}
.page-joseikin__content-text p:last-child {
  margin-bottom: 0;
  padding-left: 0.4rem;
  letter-spacing: -0.1px;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__content-text p:last-child {
    padding-left: 0;
    letter-spacing: 0;
    line-height: 1.85;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__content-text {
    padding: 0;
  }
}
.page-joseikin__download {
  max-width: 122.5rem;
  margin: 0 auto 9.5rem;
  padding: 0 2rem 9.4rem;
  border-bottom: 1px solid #c8c8c8;
}
@media only screen and (max-width: 56.25em) {
  .page-joseikin__download {
    border-bottom: none;
    margin: 0 auto -3.5rem;
  }
}
.page-joseikin__download-inner {
  margin: 0 auto;
  padding: 0 1.2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-inner {
    padding: 0 0.6rem;
  }
}
.page-joseikin__download-top {
  margin-bottom: 2.6rem;
  border-radius: 5px;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-top {
    padding: 0;
    margin-bottom: 2.7rem;
  }
}
.page-joseikin__download-title {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: bold;
  color: #231815;
  margin-bottom: 2.4rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-title {
    margin-bottom: 2rem;
  }
}
.page-joseikin__download-text {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 2;
}
.page-joseikin__download-grid {
  /*
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1.63934vw, 19px) min(3.3649vw, 39px);
  */
  display: flex;
  flex-wrap: wrap;
  gap: min(1.63934vw, 19px) min(3.3649vw, 39px);
  margin-bottom: 3.7rem;
}
@media only screen and (max-width: 56.25em) {
  .page-joseikin__download-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: min(2.4vw, 9px) min(4.2666vw, 16px);
  }
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-grid {
    margin-bottom: 1.9rem;
  }
}
.page-joseikin__download-grid-item {
  border: 1px solid #7f7f7f;
  padding: min(1.2666vw, 19px) min(2.5333vw, 38px) min(1.6666vw, 25px);
  border-radius: 20px;
  text-align: center;
  flex-basis: calc(25% - min(2.35887vw, 29.25px));
  flex-grow: 2;
  max-width: 261px;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-grid-item {
    border-radius: 10px;
    padding: min(2.9333vw, 11px) min(4.2666vw, 16px) min(3.4666vw, 13px);
  }
}
.page-joseikin__download-grid-item-title {
  font-size: clamp(12px, 3vw, 20px);
  font-weight: bold;
  line-height: 1.5;
  color: #231815;
}
.page-joseikin__download-grid-item-text {
  font-size: clamp(9px, 2vw, 14px);
  line-height: 1.6;
  color: #231815;
}
.page-joseikin__download-grid-item-link {
  max-width: 17.7rem;
  width: 100%;
  margin: 1.7rem auto 0 auto;
  padding: 0.64em 0 calc(0.64em + 2px);
  display: block;
  text-decoration: none;
  border-radius: 999px;
  background-color: #fff;
  border: 1px solid #231815;
  color: #231815;
  transition: all 0.3s;
  box-sizing: border-box;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-grid-item-link {
    max-width: 10.7rem;
    padding: 3px 0 5px;
    margin-top: 0.7rem;
  }
}
.page-joseikin__download-grid-item-link:hover {
  background-color: #06b4ea;
  color: #fff;
  border-color: #06b4ea;
}
.page-joseikin__download-grid-item-link--active {
  background-color: #06b4ea;
  color: #fff;
  border-color: #06b4ea;
}
.page-joseikin__download-grid-item-link--active:hover {
  background-color: #257ed2;
}
.page-joseikin__download-grid-item-link-text {
  font-size: clamp(8px, 2vw, 14px);
  font-weight: bold;
}
.page-joseikin__download-contact {
  background-color: #06b4ea;
  padding: 3.8rem 0 4.8rem;
  border-radius: 20px;
  color: #fff;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-contact {
    padding: 3rem 0 2rem;
    border-radius: 10px;
  }
}
.page-joseikin__download-contact-title {
  max-width: 22rem;
  width: 100%;
  margin: 0 auto 2.8rem;
  font-size: clamp(14px, 3vw, 18px);
  font-weight: bold;
  letter-spacing: -1.7px;
  border-bottom: 1px solid #fff;
  padding-bottom: 1.1rem;
  text-align: center;
}
@media only screen and (max-width: 56.25em) {
  .page-joseikin__download-contact-title {
    max-width: 26rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-contact-title {
    max-width: 20rem;
    padding-bottom: 0.9rem;
    margin: 0 auto 1.2rem;
  }
}
.page-joseikin__download-contact-text {
  font-size: clamp(12px, 3vw, 16px);
  line-height: 1.7;
  letter-spacing: 2.9px;
  margin-bottom: 1.3rem;
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-contact-text {
    padding: 0 1.8rem;
    letter-spacing: 1.9px;
  }
}
.page-joseikin__download-contact-info {
  font-size: clamp(12px, 3vw, 16px);
  text-align: center;
  line-height: 1.7;
}
.page-joseikin__download-contact-info p:last-child {
  margin-bottom: 0;
}
.page-joseikin__download-contact-info a {
  color: #fff;
  text-decoration: underline;
}
.page-joseikin__download-contact-info a:hover {
  text-decoration: none;
}
.page-joseikin__download-contact-info .page-joseikin__download-contact-detail {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-contact-info .page-joseikin__download-contact-detail {
    padding: 0 2rem;
    gap: 0;
  }
}
.page-joseikin__download-contact-name {
  font-weight: bold;
  font-size: clamp(18px, 3vw, 23px);
  margin-bottom: 1.4rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download-contact-name {
    margin-bottom: 1.1rem;
  }
}
.page-joseikin__download--child {
  margin: 0 auto;
  margin-bottom: 16.7rem;
  border-bottom: none;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download--child {
    padding-bottom: 0;
    margin-bottom: 14.2rem;
  }
}
.page-joseikin__download--child .page-joseikin__download-inner {
  border-bottom: 1px solid #e8e8e7;
  padding-bottom: 9rem;
  margin-bottom: 16rem;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__download--child .page-joseikin__download-inner {
    padding-bottom: 4rem;
    margin-bottom: 3rem;
  }
}
.page-joseikin__text {
  margin-bottom: 3rem;
  padding: 2rem 1rem;
  border-radius: 10px;
}
@media only screen and (max-width: 37.5em) {
  .page-joseikin__text {
    padding: 2rem 0;
    margin-bottom: 2.8rem;
  }
}
.page-joseikin__text p {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 2;
  letter-spacing: -0.1px;
  margin-bottom: 2rem;
}
.page-joseikin__text p:last-child {
  margin-bottom: 0;
}
.page-kifu-detail__title {
  letter-spacing: 2.2px;
}
@media only screen and (max-width: 37.5em) {
  .page-kifu-detail__title {
    padding-left: 0.8rem;
  }
}

.page-kifu-detail__wrap {
  margin: 0 auto -14rem;
  padding-left: 2.6rem;
  padding-right: 2.6rem;
}
@media only screen and (max-width: 37.5em) {
  .page-kifu-detail__wrap {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}

.kifu-detail {
  padding: 5rem 0 0;
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail {
    margin-bottom: min(18.575vw, 60px);
  }
}
.kifu-detail__inner {
  max-width: 116rem;
  margin: 0 auto;
}
@media only screen and (max-width: 75em) {
  .kifu-detail__inner {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__inner {
    padding: 0 2.6rem;
  }
}
.kifu-detail__wrapper {
  padding: 44.7rem 0 0;
  margin-bottom: min(13.709vw, 170px);
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__wrapper {
    padding: min(26.6vw, 100px) 0 0;
    margin-top: min(35.7vw, 134px);
  }
}
.kifu-detail__content {
  display: flex;
  gap: min(3.8709vw, 48px);
  margin-bottom: min(4.0322vw, 50px);
  padding-bottom: min(3.92vw, 49px);
  border-bottom: 1px solid #e8e8e7;
  /*&-header {
      border-bottom: 1px solid var.$color-light-gray2;
      margin-bottom: min(1.2096vw, 15px);

      @include m.respond(phone) {
          margin-bottom: min(4.6439vw, 15px);
      }
  }*/
}
@media only screen and (max-width: 56.25em) {
  .kifu-detail__content {
    flex-direction: column;
    gap: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content {
    padding-bottom: min(5.0666vw, 19px);
    margin-bottom: min(7.1466vw, 26.8px);
  }
}
.kifu-detail__content-img {
  width: min(44.3548vw, 550px);
  height: min(36.29vw, 450px);
  flex-shrink: 0;
}
@media only screen and (max-width: 56.25em) {
  .kifu-detail__content-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    padding-left: 0;
  }
}
@media screen and (max-width: 375px) {
  .kifu-detail__content-img {
    height: min(70.4vw, 264px);
  }
}
.kifu-detail__content-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 20px;
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-img img {
    border-radius: 10px;
  }
}
.kifu-detail__content-text {
  padding: min(1.0483vw, 13px) 0 0 0;
  display: flex;
  flex-direction: column;
  flex: 50%;
  padding-left: 0.2rem;
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-text {
    padding: min(5.6vw, 21px) 0 0;
  }
}
.kifu-detail__content-meta {
  display: flex;
  align-items: center;
  gap: min(1.2096vw, 15px);
  margin-bottom: min(1.129vw, 14px);
  padding-top: min(0.2419vw, 3px);
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-meta {
    padding: 0 0 min(3.6vw, 13.5px) 0;
    margin-bottom: 0;
    gap: min(3.8933vw, 14.6px);
  }
}
.kifu-detail__content-date {
  font-size: 1.6rem;
  color: #231815;
  font-family: "Montserrat", sans-serif;
  padding-top: min(0.2419vw, 3px);
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-date {
    padding-top: min(1.23839vw, 4px);
  }
}
.kifu-detail__content-category {
  background-color: #f29da8;
  color: #fff;
  font-size: 1.3rem;
  padding: min(0.2419vw, 3px) min(1.2903vw, 16px);
  border-radius: 999px;
  font-weight: bold;
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-category {
    padding: 0.23em 1.23em;
  }
}
.kifu-detail__content-category--grant {
  background-color: #f29da8;
}
.kifu-detail__content-category--donation {
  background-color: #257ed2;
}
.kifu-detail__content-category--event {
  background-color: #ffb43d;
}
.kifu-detail__content-category--project {
  background-color: #43b149;
}
.kifu-detail__content-title {
  /*
  margin-bottom: 13px;

  @include m.respond(phone) {
      margin-bottom: min(4vw, 15px);
  }
  */
}
.kifu-detail__content-title h3 {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.4;
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-title h3 {
    letter-spacing: -0.1px;
    margin-bottom: -1px;
  }
}
.kifu-detail__content-organization {
  display: flex;
  align-items: center;
  gap: min(0.6451vw, 8px);
  margin-top: 13px;
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-organization {
    margin-top: min(4vw, 15px);
    gap: min(1.866vw, 7px);
  }
}
.kifu-detail__content-label {
  border: 1px solid #7f7f7f;
  padding: min(0.1612vw, 2px) min(1.9354vw, 24px);
  border-radius: 20px;
  font-size: 1.3rem;
  color: #231815;
  white-space: nowrap;
  flex-shrink: 0;
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-label {
    padding: 0.23em 1.92em;
  }
}
.kifu-detail__content-name {
  font-size: 1.5rem;
  font-weight: bold;
  color: #231815;
}
.kifu-detail__content-body {
  border-top: solid 1px #e8e8e7;
  margin-top: min(1.9354vw, 24px);
  padding-top: min(1.2096vw, 15px);
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-body {
    padding-top: min(4.6439vw, 15px);
    margin-top: min(5.8666vw, 22px);
  }
}
.kifu-detail__content-body p {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.9;
}
.kifu-detail__content-body p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail__content-body p {
    line-height: 2;
  }
}
.kifu-detail .component-contents__bottom {
  margin-bottom: 27rem;
  padding: 0 4rem;
}
@media only screen and (max-width: 56.25em) {
  .kifu-detail .component-contents__bottom {
    margin-bottom: 14rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .kifu-detail .component-contents__bottom {
    margin: 6rem 0 6.4rem 0;
    padding: 0 2rem;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-kifu-detail__contents {
    margin-bottom: -8rem;
  }
}

/***** 背景・ページタイトル *****/
.bg-gradation__kkof-mtg {
  margin-top: -9rem;
}
@media only screen and (max-width: 37.5em) {
  .bg-gradation__kkof-mtg {
    margin-top: 0;
    padding-top: 3.2rem;
  }
}
.bg-gradation__kkof-mtg .component-contents__bottom {
  margin-bottom: 27rem;
  padding: 0 4rem;
}
@media only screen and (max-width: 56.25em) {
  .bg-gradation__kkof-mtg .component-contents__bottom {
    margin-bottom: 14rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .bg-gradation__kkof-mtg .component-contents__bottom {
    margin: 1rem 0 2.4rem 0;
    padding: 0 2rem;
  }
}
.bg-gradation__kkof-mtg .component-contents__bottom .img-grid {
  border-top: 1px solid #e8e8e7;
}
@media only screen and (max-width: 37.5em) {
  .bg-gradation__kkof-mtg .component-contents__bottom .img-grid {
    padding-top: 7rem;
  }
}

.page-kkof__title {
  letter-spacing: 2.4px;
  padding-top: 0.7rem;
}

/******* キックオフ：コンテンツ *******/
.page-kkof-mtg {
  margin: 6.3rem 0 0;
  /*
  &__info-link {
      display: inline-flex;
      align-items: center;
      text-decoration: underline;
      margin-right: 10px;

      &:hover {
          opacity: 0.8;
      }
  }

  &__info-map-icon {
      display: block;
      width: min(1.77vw, 22px);
      margin: min(0.08vw, 1px) 0 0 min(1.61vw, 20px);
      border-radius: 50%;
      position: relative;
      vertical-align: middle;

      @include m.respond(phone) {
          margin: -0.8rem 0 0rem 0.3rem;
          width: 14px;
      }

      img {
          width: 100%;
          height: auto;
          position: relative;
      }
  }*/
  /*&__info-program {
      width: 100%;

      p {
          margin-bottom: min(0.32vw, 4px);
          position: relative;
          padding-left: 0;

          &:last-child {
              margin-bottom: 0;
              line-height: 1.88;
          }
      }
  }*/
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg {
    margin: 6.8rem 0 0;
  }
}
.page-kkof-mtg__wrap {
  padding: 15rem 2.8rem 0 2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__wrap {
    padding: 10rem 2.8rem 0 2rem;
  }
}
.page-kkof-mtg__inner {
  max-width: 121rem;
  margin: 0 auto;
  padding: 0 2.6rem;
}
@media only screen and (max-width: 56.25em) {
  .page-kkof-mtg__inner {
    padding: 0 2.6rem;
  }
}
.page-kkof-mtg__info {
  width: 100%;
  padding: 20px;
  margin-bottom: min(2.419vw, 30px);
}
.page-kkof-mtg__info--header, .page-kkof-mtg__info--footer {
  background-color: transparent;
  display: flex;
  flex-direction: column;
}
.page-kkof-mtg__info--header {
  padding: 0;
}
.page-kkof-mtg__info--footer {
  max-width: 1000px;
  margin: 0 auto 0 0;
  padding: 20px;
  background-color: transparent;
}
.page-kkof-mtg__title {
  margin-bottom: min(1.854vw, 23px);
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__title {
    margin-bottom: min(5.333vw, 20px);
  }
}
.page-kkof-mtg__title h3 {
  font-size: clamp(24px, 3vw, 30px);
  font-weight: bold;
  line-height: 1.3;
  color: #231815;
}
.page-kkof-mtg__desc {
  margin-bottom: 3rem;
  font-size: clamp(13px, 3vw, 16px);
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__desc {
    margin-bottom: 2.3rem;
  }
}
.page-kkof-mtg__desc p {
  line-height: 1.75;
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__desc p {
    line-height: 1.7;
  }
}
.page-kkof-mtg__desc p:last-child {
  margin-bottom: 0;
}
.page-kkof-mtg__content {
  display: flex;
  gap: min(3.4677vw, 43px);
  margin: min(1.048vw, 13px) 0 min(3.387vw, 42px);
}
@media only screen and (max-width: 56.25em) {
  .page-kkof-mtg__content {
    flex-direction: column;
    gap: 23px;
  }
}
.page-kkof-mtg__content-left {
  width: min(44.3548vw, 550px);
  height: min(36.29vw, 450px);
  flex-shrink: 0;
  padding-top: min(0.1612vw, 2px);
}
@media only screen and (max-width: 56.25em) {
  .page-kkof-mtg__content-left {
    width: 100%;
    height: auto;
  }
}
.page-kkof-mtg__content-left img {
  display: block;
  border-radius: 20px;
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__content-left img {
    border-radius: 10px;
  }
}
@media only screen and (max-width: 56.25em) {
  .page-kkof-mtg__content-left {
    flex: 0 0 auto;
  }
}
.page-kkof-mtg__info-box {
  font-size: clamp(13px, 3vw, 16px);
  margin-bottom: 30px;
}
.page-kkof-mtg__info-box:last-child {
  margin-bottom: 0;
}
.page-kkof-mtg__info-row {
  display: flex;
  align-items: flex-start;
  gap: min(1.37vw, 17px);
  margin-bottom: min(0.8vw, 10px);
  /*
  &:nth-of-type(2) {
      margin-bottom: min(0.32vw, 4px);

      @include m.respond(tab-port) {
          margin-bottom: 1.6rem;
      }

      @include m.respond(phone) {
          margin-bottom: 1.9rem;
      }
  }

  &:last-child {
      margin-bottom: 0;
  }*/
}
@media only screen and (max-width: 56.25em) {
  .page-kkof-mtg__info-row {
    flex-direction: column;
    margin-bottom: 1.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__info-row {
    flex-direction: column;
    gap: min(2.933vw, 10px);
  }
}
.page-kkof-mtg__info-label {
  font-size: clamp(11px, 2vw, 14px);
  display: flex;
  flex: 0 0 12rem;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 1px solid #c8c8c8;
  border-radius: 999px;
  padding: 0.14em 0;
  /*
  @include m.respond(phone) {}

  &--program {
      padding: 0.14em 0;
      margin-top: min(0.56vw, 7px);

      @include m.respond(tab-port) {
          padding: 0.14em 0.81em;
      }
  }
      */
}
@media only screen and (max-width: 56.25em) {
  .page-kkof-mtg__info-label {
    flex: 0 0 auto;
    padding: 0.14em 3.5rem;
  }
}
.page-kkof-mtg__info-content {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  line-height: 1.8;
  margin: -0.4em 0;
  padding-top: min(0.2419vw, 3px);
  min-width: 0;
  max-width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__info-content {
    padding: 0;
    margin-top: -0.25em;
    margin-bottom: -0.25em;
    border-left: none;
  }
}
.page-kkof-mtg__info-place {
  width: 100%;
  /*@include m.respond(phone) {
      margin-bottom: 1rem;
  }*/
}
.page-kkof-mtg__info-place-text {
  letter-spacing: -1px;
  display: flex;
  align-items: center;
  gap: 1em;
}
.page-kkof-mtg__info-place-icon {
  display: block;
  width: min(1.77vw, 22px);
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__info-place-icon {
    margin: -0.8rem 0 0rem 0.3rem;
    width: 14px;
  }
}
.page-kkof-mtg__info-place-icon:hover {
  opacity: 0.8;
}
.page-kkof-mtg__info-place-icon img {
  width: 100%;
  height: auto;
  position: relative;
}
.page-kkof-mtg__info-place-link {
  display: flex;
}
.page-kkof-mtg__info-place-link a {
  text-decoration: underline;
  display: inline-block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  margin-top: -0.2em;
  margin-bottom: 0.2em;
}
.page-kkof-mtg__info-place-link a:hover {
  opacity: 0.8;
}
.page-kkof-mtg__gallery {
  margin-bottom: 40px;
}
.page-kkof-mtg__gallery-item {
  width: 100%;
  border-radius: 5px;
  overflow: hidden;
}
.page-kkof-mtg__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
}

.page-kkof-mtg__content--bottom {
  margin-bottom: min(1.129vw, 14px);
  border-top: 1px solid #e8e8e7;
}
.page-kkof-mtg__bottom {
  margin-top: min(4.435vw, 55px);
}
.page-kkof-mtg__title--bottom {
  margin: min(2.741vw, 34px) 0;
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__title--bottom {
    margin: min(5.333vw, 20px) 0;
  }
}
.page-kkof-mtg__desc--bottom {
  margin-bottom: min(2.983vw, 37px);
}
@media only screen and (max-width: 37.5em) {
  .page-kkof-mtg__desc--bottom {
    margin-bottom: min(6.4vw, 24px);
  }
}
.page-kkof-mtg__info-box--bottom .page-kkof-mtg__info-label {
  font-size: clamp(11px, 2vw, 14px);
  display: flex;
  flex: 0 0 12rem;
  align-items: center;
  justify-content: center;
  color: #000;
  border: 1px solid #c8c8c8;
  border-radius: 999px;
  padding: 0.14em 0;
}
@media only screen and (max-width: 56.25em) {
  .page-kkof-mtg__info-box--bottom .page-kkof-mtg__info-label {
    flex: 0 0 auto;
    padding: 0.14em 3.5rem;
  }
}
.page-kkof-mtg__info-box--bottom .page-kkof-mtg__info-label--program-bm {
  width: auto;
  padding: 0.14em 0;
  margin-top: min(0.56vw, 7px);
}
@media only screen and (max-width: 56.25em) {
  .page-kkof-mtg__info-box--bottom .page-kkof-mtg__info-label--program-bm {
    padding: 0.14em 0.81em;
  }
}

.component-child__text {
  background-color: #fff;
  padding: 40px 0;
  margin-bottom: 60px;
}

/******** タブ関連 *******/
.tab-container {
  margin-bottom: 0;
}

.tab-list {
  display: flex;
  max-width: 124rem;
  padding: 0 4rem;
  margin: 0 auto 4.6rem;
  gap: min(3.064vw, 38px);
  flex-wrap: wrap;
}
@media only screen and (max-width: 37.5em) {
  .tab-list {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
    gap: 1rem 2.8rem;
    padding: 0 2.6rem;
    margin: 0 0 1.5rem;
  }
}

.tab-item {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: bold;
  padding: 0;
  flex-grow: 0;
}
@media only screen and (max-width: 37.5em) {
  .tab-item {
    padding: 1rem 0 0.6rem;
  }
}
.tab-item a {
  display: block;
  padding: min(0.967vw, 12px) 0 min(0.5645vw, 7px);
  text-decoration: none;
  color: #231815;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}
.tab-item a:hover {
  color: #944892;
}
.tab-item a.active {
  color: #944892;
}
.tab-item a.active:after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #944892;
}

/*
.tab-item {
    font-size: clamp(13px, 3vw, 16px);
    padding: min(0.967vw, 12px) 0 min(0.5645vw, 7px);
    cursor: pointer;
    font-weight: bold;
    color: var.$color-black;
    transition: all 0.3s ease;
    position: relative;

    &:hover {
        color: var.$color-purple;
    }

    &.active {
        color: var.$color-purple;

        &:after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 1px;
            background-color: var.$color-purple;
        }
    }

    &:not(:first-child) {
        margin-left: min(3.064vw, 38px);
    }

    &:last-child {
        margin-left: min(2.5vw, 31px);
    }

    @include m.respond(phone) {

        &:not(:first-child),
        &:last-child {
            margin-left: 0;
        }
    }

    @include m.respond(phone) {
        padding: 1rem 0 0.6rem;

        &--emizu {
            flex: 0 0 calc(39% - 10px);
        }

        &--next-gen {
            flex: 0 0 calc(45% - 10px);
        }

        &--shizuku {
            flex: 0 0 calc(45% - 10px);
        }
    }
}
.tab-panel {
    display: none;

    &.active {
        display: block;
    }
}    
*/
/******** コンテンツ　下 *******/
.page-kikcoff__contents {
  margin-bottom: min(25.96vw, 322px);
}
@media only screen and (max-width: 37.5em) {
  .page-kikcoff__contents {
    margin-bottom: min(23.2vw, -82px);
  }
}

/****** 背景あしらい　位置調整 *****/
.bg-gradation__e-mizuforum {
  margin-top: -9rem;
}
@media only screen and (max-width: 56.25em) {
  .bg-gradation__e-mizuforum {
    margin-top: min(14.1vw, 53px);
    padding-top: min(22.13vw, 83px);
  }
}
.bg-gradation__e-mizuforum .component-contents__bottom {
  margin-bottom: 27rem;
  padding: 0 4rem;
}
@media only screen and (max-width: 56.25em) {
  .bg-gradation__e-mizuforum .component-contents__bottom {
    margin-bottom: 14rem;
    padding: 10rem 4rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .bg-gradation__e-mizuforum .component-contents__bottom {
    margin: 9.2rem 0 2.4rem 0;
    padding: 0 2rem;
  }
}

.page-e-mizuforum__title {
  padding-top: 0.6rem;
  letter-spacing: 2px;
}
@media only screen and (max-width: 37.5em) {
  .page-e-mizuforum__title {
    padding-top: 0.3rem;
  }
}

/****** メインコンテンツ *****/
.e-mizuforum {
  margin-top: min(5.322vw, 66px);
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__title {
    padding-top: 0.2rem;
  }
}
.e-mizuforum__inner {
  max-width: 118rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media only screen and (max-width: 75em) {
  .e-mizuforum__inner {
    padding: 0 4rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__inner {
    padding: 0 2.6rem;
  }
}
.e-mizuforum__img {
  width: min(93.5vw, 1160px);
  height: min(38.7vw, 480px);
  margin-bottom: min(3.225vw, 40px);
  padding-top: 5rem;
}
@media only screen and (max-width: 75em) {
  .e-mizuforum__img {
    width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__img {
    margin-bottom: 1.6rem;
  }
}
@media screen and (max-width: 375px) {
  .e-mizuforum__img {
    width: min(100vw, 323px);
    height: min(71.8vw, 232px);
  }
}
.e-mizuforum__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: min(1.612vw, 20px);
}
.e-mizuforum__card {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 44px;
  border-radius: 5px;
  overflow: hidden;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__card {
    flex-direction: column;
  }
}
.e-mizuforum__card-left {
  flex-grow: 2;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__card-left {
    width: 100%;
    border-right: none;
  }
}
.e-mizuforum__card-right {
  width: 48.5%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: min(3.2vw, 40px) 0 min(0.19vw, 24px) 0;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__card-right {
    width: 100%;
    padding: min(5.33vw, 20px) 0 min(8vw, 30px);
  }
}
.e-mizuforum__card-content {
  height: 100%;
}
.e-mizuforum__category {
  display: inline-block;
  margin-bottom: min(1.2vw, 15px);
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__category {
    margin-bottom: min(2.66vw, 10px);
  }
}
.e-mizuforum__category-text {
  display: inline-block;
  font-size: clamp(10px, 2vw, 13px);
  font-weight: bold;
  padding: 0.23em 1.15em;
  background-color: #43b149;
  color: #fff;
  border-radius: 999px;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__category-text {
    padding: 0.23em 1.3em;
  }
}
.e-mizuforum__title {
  font-size: clamp(16px, 3vw, 20px);
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.3px;
  margin-bottom: min(0.96vw, 12px);
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__title {
    margin-bottom: min(2.4vw, 9px);
  }
}
.e-mizuforum__date {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: bold;
  margin-bottom: min(1.85vw, 23px);
  letter-spacing: -0.3px;
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__date {
    margin-bottom: min(4.8vw, 18px);
  }
}
.e-mizuforum__info-item {
  display: flex;
  align-items: flex-start;
  gap: min(0.564vw, 7px);
  margin-bottom: min(0.483vw, 6px);
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__info-item {
    flex-direction: row;
    gap: 4px;
  }
}
.e-mizuforum__info-item--capacity {
  margin-bottom: min(0.48vw, 6px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__info-item--capacity {
    margin-bottom: 0.6rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__info-item--price {
    margin-bottom: min(1.33vw, 5px);
  }
}
.e-mizuforum__info-label {
  flex: 0 0 75px;
  font-size: clamp(10px, 2vw, 13px);
  line-height: 1;
  font-weight: bold;
  padding: 0.23em 0;
  display: flex;
  align-items: center;
  border: 1px solid #7f7f7f;
  border-radius: 999px;
  align-items: flex-start;
  justify-content: center;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__info-label {
    flex: 0 0 62px;
    gap: 4px;
  }
}
.e-mizuforum__info-content {
  flex-grow: 2;
  font-size: clamp(12px, 3vw, 15px);
  line-height: 1.5;
  margin-top: -0.05em;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__info-content--form {
    letter-spacing: -1.2px;
  }
}
.e-mizuforum__info-content .e-mizuforum__info-content-place {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1em;
  width: 100%;
}
.e-mizuforum__info-content .e-mizuforum__info-content-place span {
  flex-grow: 2;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__info-content .e-mizuforum__info-content-place {
    display: block;
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__info-content {
    gap: 0;
  }
}
.e-mizuforum__info-content p {
  min-height: 1.5em;
}
.e-mizuforum__info-content a {
  text-decoration: underline;
  color: #43b149;
}
.e-mizuforum__info-link {
  font-size: clamp(13px, 3vw, 16px);
  margin-bottom: min(1.37vw, 17px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__info-link {
    margin-left: 0;
    margin-bottom: min(3.2vw, 12px);
  }
}
.e-mizuforum__info-link a:hover {
  text-decoration: underline;
}
.e-mizuforum__map-link {
  display: inline-block;
  flex-shrink: 0;
  margin-top: -0.5em;
  margin-bottom: -0.5em;
}
.e-mizuforum__map-link:hover {
  opacity: 0.8;
}
.e-mizuforum__map-icon {
  aspect-ratio: 24/28;
  width: clamp(14px, 1.93vw, 24px);
  display: block;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__map-icon {
    margin: 0.2rem 0 0 -0.5rem;
    width: 14.5px;
    height: auto;
  }
}
.e-mizuforum__description {
  margin: min(1.45vw, 18px) 0 0;
  padding: min(1.29vw, 16px) 0 min(1.77vw, 22px);
  font-size: clamp(12px, 3vw, 15px);
  line-height: 1.6;
  color: #231815;
  border-top: 1px solid #7f7f7f;
  border-bottom: 1px solid #7f7f7f;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__description--sp {
    margin: min(4.26vw, 16px) 0 0;
    padding: min(3.46vw, 13px) 0;
  }
}
.e-mizuforum__program {
  margin: min(1.61vw, 20px) 0;
  /*&-list {
      list-style: none;
      padding: 0;
      margin: 0;
  }

  &-item {
      padding: min(0.403vw, 5px) 0 0;
      font-size: clamp(12px, 2vw, 15px);
      line-height: 1.5;
      color: var.$color-black;

      &--report {
          padding-top: min(0.24vw, 3px);

          @include m.respond(phone) {
              margin-bottom: min(0.8vw, 3px);
          }
      }

      &--lecture {
          padding-top: min(0.08vw, 1px);
      }
  }*/
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__program {
    margin: min(5.333vw, 20px) 0 min(5.86vw, 22px);
  }
}
.e-mizuforum__program-title {
  font-size: clamp(10px, 3vw, 13px);
  font-weight: bold;
  margin-bottom: min(0.56vw, 7px);
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__program-title {
    margin-bottom: min(2.133vw, 8px);
  }
}
.e-mizuforum__program-body {
  font-size: clamp(12px, 2vw, 15px);
  line-height: 1.6;
  margin-top: 0.75em;
}
.e-mizuforum__presenters {
  margin: min(2.016vw, 25px) 0;
  padding-top: min(1.69vw, 21px);
  padding-bottom: min(1.61vw, 20px);
  border-top: 1px solid #7f7f7f;
  border-bottom: 1px solid #7f7f7f;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__presenters {
    padding: min(3.73vw, 14px) 0 0;
  }
}
.e-mizuforum__presenters-title {
  font-size: clamp(10px, 3vw, 13px);
  font-weight: bold;
  margin-bottom: min(1.2vw, 15px);
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__presenters-title {
    margin-bottom: min(2.93vw, 11px);
  }
}
.e-mizuforum__presenters-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: min(0.725vw, 9px) min(0.96vw, 12px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__presenters-list {
    flex-wrap: nowrap;
    flex-direction: column;
    gap: min(1.6vw, 6px);
    padding-bottom: min(4.26vw, 16px);
  }
  .e-mizuforum__presenters-list > li {
    width: -moz-fit-content;
    width: fit-content;
  }
}
.e-mizuforum__presenters-item {
  font-size: clamp(11px, 3vw, 14px);
  font-weight: bold;
  padding: 0.57em 1.07em;
  background-color: #e8e8e7;
  border-radius: 999px;
  display: inline-block;
}
.e-mizuforum__profile {
  margin: min(1.85vw, 23px) 0 min(3.46vw, 43px);
  padding-bottom: min(3.7vw, 46px);
  border-bottom: 1px solid #e8e8e7;
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__profile {
    padding-bottom: min(8vw, 30px);
  }
}
.e-mizuforum__profile-inner {
  display: flex;
  justify-content: space-between;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__profile-inner {
    flex-direction: column;
  }
}
.e-mizuforum__profile-inner--bottom {
  padding-bottom: min(2.25vw, 28px);
}
.e-mizuforum__profile-left {
  flex: 0 0 50%;
  padding-top: 2.6rem;
}
.e-mizuforum__profile-left--bottom {
  flex: 1;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__profile-left {
    padding-top: 0;
    border-right: none;
  }
}
.e-mizuforum__profile-right {
  flex: 0 0 48.5%;
  position: relative;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__profile-right {
    flex: 1 0 auto;
  }
}
.e-mizuforum__profile-section {
  margin-bottom: min(1.61vw, 20px);
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__profile-section {
    margin-bottom: min(3.2vw, 12px);
  }
}
.e-mizuforum__profile-section:last-child {
  margin-bottom: 0;
}
.e-mizuforum__profile-label {
  display: inline-block;
  color: #231815;
  font-size: clamp(10px, 3vw, 13px);
  font-weight: bold;
  margin-bottom: 13px;
  border-radius: 5px;
}
.e-mizuforum__profile-title {
  font-size: clamp(13px, 3vw, 16px);
  font-weight: bold;
  line-height: 1.4;
  color: #231815;
}
.e-mizuforum__profile-speaker {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(14px, 1.61vw, 20px);
  /*&--bottom {
      justify-content: normal;
      gap: min(1.61vw, 20px);
  }*/
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__profile-speaker {
    flex-direction: row;
    padding-bottom: min(0.53vw, 2px);
    margin-bottom: min(3.466vw, 13px);
  }
}
.e-mizuforum__profile-image {
  flex-shrink: 0;
  background-color: #7f7f7f;
  aspect-ratio: 140/160;
  width: min(11.29vw, 140px);
  flex-shrink: 0;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum__profile-image {
    /*
    flex: 0 0 auto;
    margin-right: 0;
    margin-bottom: 15px;
    */
    width: min(29.8vw, 112px);
  }
}
.e-mizuforum__profile-img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid #7f7f7f;
}
.e-mizuforum__profile-info {
  padding-right: 3rem;
  width: 72.7%;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__profile-info {
    padding-right: 0;
    width: 60%;
  }
}
.e-mizuforum__profile-info--bottom {
  padding-left: 0;
  width: 100%;
}
.e-mizuforum__profile-name {
  font-size: clamp(12px, 3vw, 16px);
  font-weight: bold;
  letter-spacing: 4.2px;
  margin-bottom: min(1.048vw, 13px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__profile-name {
    font-size: clamp(12px, 3vw, 15px);
  }
}
.e-mizuforum__profile-bio {
  font-size: clamp(12px, 3vw, 15px);
  line-height: 1.6;
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__profile-bio {
    line-height: 1.8;
  }
}
.e-mizuforum__profile-image-large iframe {
  width: 100%;
  aspect-ratio: 16/9;
}
.e-mizuforum__profile-image-large .custom-youtube-player {
  width: min(45.1vw, 560px);
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 75em) {
  .e-mizuforum__profile-image-large .custom-youtube-player {
    width: 100%;
  }
}
@media (max-width: 375px) {
  .e-mizuforum__profile-image-large .custom-youtube-player {
    width: min(100vw, 323px);
  }
}
.e-mizuforum__profile-image-large .custom-youtube-player .movie-play {
  width: min(3.22vw, 40px);
  height: min(3.22vw, 40px);
  background-color: #43b149;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__profile-image-large .custom-youtube-player .movie-play {
    width: min(6.81vw, 22px);
    height: min(6.81vw, 22px);
  }
}
.e-mizuforum__profile-image-large .custom-youtube-player .movie-play .movie-play-icon::before {
  width: min(1.04vw, 13px);
  height: min(1.04vw, 13px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__profile-image-large .custom-youtube-player .movie-play .movie-play-icon::before {
    width: min(2.47vw, 8px);
    height: min(3.09vw, 10px);
  }
}
.e-mizuforum__profile-image-large .movie-thumbnail {
  border-radius: 10px;
}
.e-mizuforum__profile-img-large {
  width: min(45.16vw, 560px);
  height: min(25.4vw, 315px);
  border-radius: 10px;
  padding-top: 0.2rem;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 75em) {
  .e-mizuforum__profile-img-large {
    width: 100%;
    height: auto;
  }
}
.e-mizuforum__profile-image-caption {
  position: absolute;
  bottom: 10px;
  right: 10px;
  background-color: #ffb43d;
  color: #231815;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
}
.e-mizuforum + .e-mizuforum {
  margin-top: min(4.032vw, 50px);
  padding-top: 5rem;
}
.e-mizuforum__bottom {
  margin-top: min(4.032vw, 50px);
  padding-top: 5rem;
}
@media only screen and (max-width: 37.5em) {
  .e-mizuforum__bottom {
    margin-top: min(10.66vw, 40px);
  }
}
.e-mizuforum__bottom__bottom {
  border-top: 1px solid #e8e8e7;
}

.e-mizuforum .component-flyer {
  position: relative;
  border: 1px solid #7f7f7f;
  border-radius: 20px;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum .component-flyer {
    border: none;
  }
}
.e-mizuforum .component-flyer .component-flyer__link {
  position: static;
  width: min(30.8vw, 382px);
  margin: 0 auto;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum .component-flyer .component-flyer__link {
    width: auto;
    height: auto;
  }
}
.e-mizuforum .component-flyer .e-mizuforum__zoom {
  bottom: 20px;
  right: 20px;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum .component-flyer .e-mizuforum__zoom {
    bottom: max(-8vw, -30px);
    right: 0;
  }
}
.e-mizuforum .component-flyer__wrap {
  margin: 4rem auto;
  max-width: 100%;
}
@media only screen and (max-width: 75em) {
  .e-mizuforum .component-flyer__wrap {
    margin: 10.4rem auto;
  }
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum .component-flyer__wrap {
    margin: auto;
  }
}
.e-mizuforum .component-flyer__image-wrap {
  width: 100%;
  padding-top: 0;
  padding-bottom: 0;
}
@media only screen and (max-width: 56.25em) {
  .e-mizuforum .component-flyer__image-wrap {
    background-color: transparent;
  }
}
.e-mizuforum .component-flyer__placeholder {
  background-color: #ffb43d;
}

/*
.e-mizuforum .component-flyer {
    border: 1px solid var.$color-gray;
    border-radius: 20px;
    width: 100%;
    height: 100%;
    max-width: 100%;

    @include m.respond(tab-port) {
        border: none;
    }

    .component-flyer__link {
        width: min(30.8vw, 382px);
        height: min(43.54vw, 540px);
        margin: 0 auto;

        @include m.respond(tab-port) {
            width: auto;
            height: auto;
        }
    }

    .e-mizuforum__zoom {
        bottom: -5%;
        right: -20.1%;

        @include m.respond(tab-port) {
            bottom: -6.5%;
            right: 0.7%;
        }
    }

    &__wrap {
        margin: 4rem auto;
        max-width: 100%;

        @include m.respond(tab-land) {
            margin: 10.4rem auto;
        }

        @include m.respond(tab-port) {
            margin: auto;
        }
    }

    &__image-wrap {
        width: 100%;
        padding-top: 0;
        border-radius: 5px;
        background-color: var.$color-gradient-light-blue;

        @include m.respond(tab-port) {
            background-color: transparent;
        }
    }

    &__placeholder {
        background-color: var.$color-orange;
    }
}
*/
/***** e-水　動画一覧　******/
.component-child__grid .list {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: min(2.5vw, 31px);
}
.component-child__grid--e-mizu__btm {
  margin-bottom: min(13.7vw, 170px);
}
@media only screen and (max-width: 56.25em) {
  .component-child__grid--e-mizu__btm {
    margin-bottom: min(5.06vw, -19px);
  }
}

.tab-container__e-mizu {
  padding-bottom: min(0.64vw, 8px);
}
@media only screen and (max-width: 37.5em) {
  .tab-container__e-mizu {
    padding-bottom: min(6.13vw, 23px);
  }
}
.tab-container__e-mizu .video-grid {
  border-bottom: none;
  padding-bottom: min(0.8vw, 10px);
}

.tab-list--e-mizu {
  max-width: 116rem;
  margin: min(1.61vw, 20px) auto min(0.64vw, 8px);
  padding: 0 0 min(3.2258vw, 40px);
  /* 40÷1240 */
}
@media only screen and (max-width: 75em) {
  .tab-list--e-mizu {
    padding: 0 4rem min(3.2258vw, 40px);
  }
}
@media only screen and (max-width: 37.5em) {
  .tab-list--e-mizu {
    margin: min(4.5vw, 17px) 0 min(4vw, 15px);
    padding: 0 2.4rem;
  }
}
.tab-list--e-mizu .tab-item.active,
.tab-list--e-mizu .tab-item:hover {
  color: #43b149;
}
.tab-list--e-mizu .tab-item.active:after {
  background-color: #43b149;
}

.e-mizu__grid-btn {
  max-width: 52rem;
  width: 100%;
  margin: 0 auto;
  font-size: clamp(13px, 3vw, 16px);
  background-color: #43b149;
  color: #fff;
  text-align: center;
  padding: 1.37em 0;
  border-radius: 999px;
}
@media only screen and (max-width: 75em) {
  .e-mizu__grid-btn {
    margin-top: 5rem;
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizu__grid-btn {
    margin-top: 0;
    max-width: 32rem;
  }
}

/***** e-水　bottom コンテンツ　******/
.page-e-mizuforum__contents {
  margin-bottom: min(-3.06vw, -38px);
}
@media only screen and (max-width: 37.5em) {
  .page-e-mizuforum__contents {
    margin-bottom: min(-21.06vw, -79px);
  }
}

.breadcrumb__page-report {
  margin: 0 auto min(6.77vw, 84px);
}

@media only screen and (max-width: 37.5em) {
  .page-component__header--report {
    padding: 0;
  }
}

@media only screen and (max-width: 37.5em) {
  .page-e-mizu__title {
    padding-top: 2.7rem;
  }
}

.page-report__bg {
  margin-top: min(7.25vw, -90px);
}
@media only screen and (max-width: 37.5em) {
  .page-report__bg {
    margin-top: min(14.6vw, 55px);
  }
}

.page-report {
  padding: min(35.8vw, 445px) 0 0;
  margin-bottom: min(3.23vw, 401px);
}
@media only screen and (max-width: 37.5em) {
  .page-report {
    padding-top: min(26.6vw, 100px);
    margin-bottom: min(39.4vw, 148px);
  }
}

.report {
  /***** レポート詳細エリア *****/
  /*&__text {
      font-size: clamp(13px, 3vw, 16px);
      line-height: 1.75;
      color: var.$color-black;
      margin: 0 0 min(2.33vw, 29px);

      &:last-child {
          margin-bottom: 0;
      }

      @include m.respond(phone) {
          line-height: 1.7;
          letter-spacing: 0.2px;
      }
  }*/
}
.report__inner {
  max-width: 121rem;
  margin: 0 auto min(32.3vw, 401px);
  padding: 0 2.6rem;
}
@media only screen and (max-width: 75em) {
  .report__inner {
    padding: 0 2.6rem;
  }
}
.report__content {
  width: min(93.5vw, 1160px);
  height: min(51.6vw, 640px);
  margin-bottom: min(3.54vw, 44px);
}
@media only screen and (max-width: 75em) {
  .report__content {
    width: 100%;
    height: 100%;
  }
}
.report__content .report__pagination {
  position: static;
}
.report__content .report__swiper {
  margin-bottom: min(3.22vw, 40px);
  border-radius: min(3.22vw, 40px);
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .report__content .report__swiper {
    margin-bottom: min(4vw, 15px);
  }
}
.report__content .report__swiper .report__wrapper {
  width: min(93.54vw, 1160px);
  height: min(51.61vw, 640px);
}
@media only screen and (max-width: 37.5em) {
  .report__content .report__swiper .report__wrapper {
    width: 323px;
    height: 232px;
  }
}
.report__content .report__movie {
  margin-bottom: min(3.22vw, 40px);
  border-radius: min(3.22vw, 40px);
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16/9;
}
@media only screen and (max-width: 37.5em) {
  .report__content .report__movie {
    margin-bottom: min(4vw, 15px);
  }
}
.report__content .report__movie iframe {
  width: 100%;
  height: 100%;
}
.report__content .report__pagination .swiper-pagination-bullet {
  display: inline-block;
  width: 14px !important;
  height: 14px !important;
}
@media only screen and (max-width: 37.5em) {
  .report__content .report__pagination .swiper-pagination-bullet {
    width: 9px !important;
    height: 9px !important;
  }
}
.report__content .report__pagination .swiper-pagination-bullet:first-child {
  margin: 0 6px 0 3px;
}
.report__slide {
  width: 100%;
}
.report__img {
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 37.5em) {
  .report__img {
    height: min(61.8vw, 232px);
  }
}
.report__text-area {
  max-width: 96.5rem;
  width: 100%;
  margin: min(8.06vw, 100px) auto 0;
}
@media only screen and (max-width: 37.5em) {
  .report__text-area {
    margin-top: 0;
  }
}
.report__business-area {
  padding: min(1.61vw, 20px) 0;
}
@media only screen and (max-width: 37.5em) {
  .report__business-area {
    padding: min(7.46vw, 28px) 0 min(5.33vw, 20px);
  }
}
.report__business-tag {
  margin-bottom: 15px;
}
@media only screen and (max-width: 37.5em) {
  .report__business-tag {
    display: flex;
  }
}
.report__business-label {
  display: inline-block;
  padding: 0.25em 0.875em;
  color: #231815;
  font-size: clamp(13px, 2vw, 16px);
  font-weight: bold;
  border: 1px solid #7f7f7f;
  border-radius: 20px;
  margin-right: min(1.2vw, 15px);
  text-align: center;
}
@media only screen and (max-width: 37.5em) {
  .report__business-label {
    padding: 0.25em 0.84em;
    margin-right: min(3.2vw, 12px);
  }
}
.report__business-name {
  display: inline-block;
  font-size: clamp(12px, 3vw, 16px);
  color: #231815;
  margin: 0;
  font-weight: normal;
}
@media only screen and (max-width: 37.5em) {
  .report__business-name {
    display: block;
    margin-top: 5px;
  }
}
.report__title {
  font-size: clamp(20px, 3vw, 26px);
  line-height: 1.4;
  color: #231815;
  font-weight: bold;
  margin: 0;
}
@media only screen and (max-width: 37.5em) {
  .report__title {
    letter-spacing: 1px;
  }
}
.report__content-area {
  padding: min(1.93vw, 24px) 0;
}
.report__content-area p {
  font-size: clamp(13px, 3vw, 16px);
  line-height: 1.75;
  color: #231815;
  margin: 0 0 min(2.33vw, 29px);
}
.report__content-area p:last-child {
  margin-bottom: 0;
}
@media only screen and (max-width: 37.5em) {
  .report__content-area p {
    line-height: 1.7;
    letter-spacing: 0.2px;
  }
}
.report__content-area a {
  color: #43b149;
}
.report__group {
  margin-top: min(5.32vw, 66px);
  border-top: 1px solid #e8e8e7;
  overflow: hidden;
  position: relative;
}
.report__group-inner {
  display: flex;
  justify-content: space-between;
  padding: min(4.03vw, 50px) 0 min(3.87vw, 48px);
  gap: min(3.54vw, 44px);
  align-items: center;
}
@media only screen and (max-width: 56.25em) {
  .report__group-inner {
    flex-direction: column;
    padding-top: 3.8rem;
  }
}
@media only screen and (max-width: 56.25em) {
  .report__group-left {
    flex: 1;
  }
}
.report__group-img-container {
  height: 100%;
}
.report__group-img {
  width: min(30.6vw, 380px);
  height: min(20.9vw, 260px);
  border-radius: min(1.61vw, 20px);
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media only screen and (max-width: 56.25em) {
  .report__group-img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .report__group-img {
    width: min(81vw, 304px);
    height: min(55.4vw, 208px);
    border-radius: 20px;
  }
}
.report__group-img-caption {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background-color: #ffb43d;
  color: #231815;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: bold;
  border-radius: 3px;
}
.report__group-right {
  width: 64%;
}
@media only screen and (max-width: 56.25em) {
  .report__group-right {
    border-left: none;
    padding: 8rem 0;
    width: 100%;
  }
}
@media only screen and (max-width: 37.5em) {
  .report__group-right {
    padding: min(1.6vw, 6px) 0;
  }
}
.report__course {
  margin-bottom: min(1.37vw, 17px);
}
@media only screen and (max-width: 37.5em) {
  .report__course {
    margin-bottom: min(3.73vw, 14px);
  }
}
.report__course-label {
  display: inline-block;
  background-color: #06b4ea;
  color: #fff;
  font-size: clamp(10px, 3vw, 13px);
  font-weight: bold;
  padding: 0.21em 1.14em;
  border-radius: 999px;
}
@media only screen and (max-width: 37.5em) {
  .report__course-label {
    padding: 0.15em 0.83em;
  }
}
.report__group-info {
  margin-bottom: min(1.85vw, 23px);
}
@media only screen and (max-width: 37.5em) {
  .report__group-info {
    margin-bottom: min(3.2vw, 12px);
  }
}
.report__group-title {
  font-size: clamp(14px, 3vw, 18px);
  font-weight: bold;
  margin: 0 0 min(1.04vw, 13px);
  color: #231815;
}
@media only screen and (max-width: 37.5em) {
  .report__group-title {
    margin-bottom: 0.9rem;
  }
}
.report__group-title-link {
  transition: opacity 0.3s ease;
}
.report__group-title-link::after {
  content: "";
  display: inline-block;
  width: 1em;
  height: 1em;
  margin-left: 0.25em;
  background: url("../img/svg/external-link.svg") no-repeat center center;
  background-size: contain;
}
.report__group-title-link:hover {
  opacity: 0.7;
}
.report__group-business {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 37.5em) {
  .report__group-business {
    align-items: baseline;
  }
}
.report__group-business-label {
  display: inline-block;
  background-color: #fff;
  border: 1px solid #7f7f7f;
  color: #231815;
  padding: 0.25em 0.58em;
  font-size: clamp(10px, 2vw, 12px);
  border-radius: 999px;
  margin-right: 10px;
}
@media only screen and (max-width: 37.5em) {
  .report__group-business-label {
    margin: 0 min(1.86vw, 7px) min(1.33vw, 5px) 0;
  }
}
.report__group-business-name {
  font-size: clamp(12px, 3vw, 15px);
  margin: 0;
}
@media only screen and (max-width: 37.5em) {
  .report__group-business-name {
    padding-top: 0.2rem;
  }
}
.report__group-description {
  padding-top: min(1.2vw, 15px);
  border-top: 1px solid #e8e8e7;
}
@media only screen and (max-width: 37.5em) {
  .report__group-description {
    padding-top: min(4vw, 15px);
  }
}
.report__group-text {
  font-size: clamp(13px, 3vw, 16px);
  line-height: 1.9;
  color: #231815;
  margin: 0;
}
@media only screen and (max-width: 37.5em) {
  .report__group-text {
    line-height: 1.8;
  }
}
.report__back-btn {
  text-align: center;
  padding: min(4.83vw, 60px) 0 0;
  border-top: 1px solid #e8e8e7;
}
@media only screen and (max-width: 37.5em) {
  .report__back-btn {
    padding-top: min(12.8vw, 48px);
  }
}
.report__back-link {
  display: inline-flex;
  align-items: center;
  color: #231815;
  text-decoration: none;
  font-size: clamp(12px, 3vw, 16px);
  font-weight: bold;
  transition: all 0.3s ease;
  padding-right: min(2.82vw, 35px);
}
@media only screen and (max-width: 37.5em) {
  .report__back-link {
    margin-right: min(1.6vw, 6px);
    padding-right: 0;
  }
}
.report__back-link:hover {
  opacity: 0.7;
}
.report__back-link i {
  padding-right: min(1.61vw, 20px);
}
@media only screen and (max-width: 37.5em) {
  .report__back-link i {
    padding-right: 17px;
  }
}
.report__back-icon {
  margin-right: 8px;
  font-size: 18px;
}

@media only screen and (max-width: 37.5em) {
  .breadcrumb__item--zimu i {
    font-size: 1.1rem;
  }
}

.page-zimu__wrap {
  padding: 14.9rem 2rem 0 2rem;
}
@media only screen and (max-width: 37.5em) {
  .page-zimu__wrap {
    padding: 9.9rem 2rem 0 2rem;
  }
}

.page-zimu__title {
  font-size: clamp(36px, 4vw, 46px);
}

.page-zimu__bg {
  margin-top: -9.5rem;
}
@media only screen and (max-width: 37.5em) {
  .page-zimu__bg {
    margin-top: 4.8rem;
  }
}

/***** 事務局　コンテンツ　*****/
.e-mizu-project {
  padding: min(3.2vw, 40px) 0;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project {
    padding: min(3.2vw, 40px) 0 min(1.06vw, 4px);
  }
}
.e-mizu-project__inner {
  max-width: 120rem;
  margin: 0 auto;
  padding: min(30.6vw, 380px) 2rem 2.8rem;
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 75em) {
  .e-mizu-project__inner {
    padding: 25rem 2.6rem 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__inner {
    padding: min(20.8vw, 78px) 2.6rem 2rem 2.6rem;
  }
}
.e-mizu-project__header {
  text-align: center;
  margin-bottom: min(1.85vw, 23px);
  border-radius: 8px;
  padding: min(2.01vw, 25px) 0;
  width: 100%;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__header {
    padding: 0;
    margin-bottom: 2rem;
  }
}
.e-mizu-project__title {
  font-size: clamp(28px, 3vw, 35px);
  font-weight: bold;
  color: #231815;
  margin: 0 0 min(2.98vw, 37px);
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__title {
    line-height: 1.6;
    margin-bottom: 1.8rem;
  }
}
.e-mizu-project__description {
  font-size: clamp(14px, 3vw, 16px);
  line-height: 1.7;
  letter-spacing: 2px;
  color: #231815;
  margin: 0;
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__description {
    line-height: 2.2;
  }
}
.e-mizu-project__image-container {
  border-radius: min(4.64vw, 15px);
  overflow: hidden;
  width: min(93.5vw, 1160px);
  height: min(37vw, 460px);
}
@media only screen and (max-width: 75em) {
  .e-mizu-project__image-container {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__image-container {
    border-radius: 5px;
  }
}
@media screen and (max-width: 375px) {
  .e-mizu-project__image-container {
    width: min(100vw, 323px);
    height: min(71.8vw, 232px);
  }
}
.e-mizu-project__image {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.e-mizu-project__organizations {
  width: 100%;
  margin-top: min(8.14vw, 101px);
  display: flex;
  flex-direction: column;
  gap: min(4.03vw, 50px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__organizations {
    gap: 2.7rem;
  }
}
.e-mizu-project__org-item {
  overflow: hidden;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-item--kankyou {
    padding-top: 0;
    margin-top: -0.7rem;
  }
}
.e-mizu-project__org-content {
  display: flex;
  gap: min(1.69vw, 21px);
  border-bottom: 1px solid #e8e8e7;
  padding-bottom: min(5.56vw, 69px);
}
@media only screen and (max-width: 75em) {
  .e-mizu-project__org-content {
    justify-content: space-between;
  }
}
@media only screen and (max-width: 56.25em) {
  .e-mizu-project__org-content {
    flex-direction: column-reverse;
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-content {
    gap: 0;
    padding-bottom: min(8.53vw, 32px);
  }
}
.e-mizu-project__org-info {
  flex: 0 0 46.5%;
  padding: min(4.59vw, 57px) 0 0;
}
.e-mizu-project__org-info--hokaido {
  padding: min(4.11vw, 51px) 0 0;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-info--hokaido {
    padding-top: 1.7rem;
  }
}
.e-mizu-project__org-title {
  font-size: clamp(18px, 3vw, 23px);
  font-weight: bold;
  color: #231815;
  margin: 0 0 min(2.17vw, 27px);
  letter-spacing: -0.7px;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-title {
    margin-bottom: min(6.4vw, 25px);
  }
}
.e-mizu-project__org-title--hokaido {
  line-height: 1.6;
  margin-bottom: min(1.61vw, 20px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-title--hokaido {
    margin-bottom: min(4.8vw, 18px);
  }
}
.e-mizu-project__org-address {
  font-size: clamp(12px, 3vw, 16px);
  line-height: 1.5;
  color: #231815;
  margin: 0 0 min(0.56vw, 7px);
}
.e-mizu-project__org-address:last-of-type {
  margin-bottom: min(2.7vw, 34px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-address:last-of-type {
    margin-bottom: min(6.93vw, 26px);
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-address {
    margin-bottom: min(2.4vw, 9px);
  }
}
.e-mizu-project__org-address--hokaido:last-of-type {
  margin-bottom: min(2.98vw, 37px);
}
.e-mizu-project__org-address--kankyou {
  margin-bottom: min(0.56vw, 7px);
}
.e-mizu-project__org-address--kankyou:last-of-type {
  margin-bottom: min(3.22vw, 40px);
}
.e-mizu-project__org-link {
  display: inline-block;
  color: #231815;
  text-decoration: none;
  padding: 1.56em 0;
  width: 45rem;
  text-align: center;
  border-radius: 50px;
  border: 1px solid #231815;
  font-size: clamp(11px, 3vw, 16px);
  transition: all 0.3s ease;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-link {
    width: min(86.1vw, 323px);
  }
}
.e-mizu-project__org-link:hover {
  background-color: #06b4ea;
  border: 1px solid #06b4ea;
  color: #fff;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-link--hokaido {
    margin-top: min(3.4vw, 13px);
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-link--kankyou {
    margin-top: min(6.66vw, 25px);
  }
}
.e-mizu-project__org-logo {
  width: min(45.1vw, 560px);
  height: min(25.8vw, 320px);
  margin-top: min(1.61vw, 20px);
}
.e-mizu-project__org-logo--hokaido, .e-mizu-project__org-logo--kankyou {
  box-shadow: 0 0 0 1px #f3f3f3;
}
@media only screen and (max-width: 75em) {
  .e-mizu-project__org-logo {
    width: 100%;
    height: auto;
    margin-top: 0;
  }
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-project__org-logo {
    border-left: none;
    margin-top: 0;
    padding: min(5.33vw, 20px) 0 0;
  }
  .e-mizu-project__org-logo--hokaido, .e-mizu-project__org-logo--kankyou {
    padding-top: 0;
  }
}
@media screen and (max-width: 375px) {
  .e-mizu-project__org-logo {
    width: min(100vw, 323px);
    height: min(56.9vw, 184px);
  }
}
.e-mizu-project__org-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.e-mizu-contact {
  padding: min(1.61vw, 20px) 0 min(3.22vw, 40px);
  margin-bottom: min(19.6vw, 244px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-contact {
    margin-bottom: 9.8rem;
  }
}
.e-mizu-contact__inner {
  max-width: 121rem;
  margin: 0 auto;
  padding: 0 2.6rem;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-contact__inner {
    padding: 0 2.8rem;
  }
}
.e-mizu-contact__text {
  font-size: clamp(14px, 3vw, 18px);
  line-height: 2.2;
  margin-bottom: min(2.58vw, 32px);
  text-align: left;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-contact__text {
    margin-bottom: min(6.4vw, 24px);
    text-align: left;
  }
}
.e-mizu-contact__box {
  border-radius: 20px;
  padding: min(4.35vw, 54px) 0 min(3.06vw, 38px);
  margin: 0 auto;
  background-color: #06b4ea;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-contact__box {
    padding: min(6.4vw, 24px) min(4.26vw, 16px);
    padding: 23px 16px 12px 16px;
  }
}
.e-mizu-contact__info {
  text-align: center;
  color: #fff;
  margin-bottom: min(4.03vw, 50px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-contact__info {
    margin-bottom: min(3.7vw, 14px);
  }
}
.e-mizu-contact__org {
  font-size: clamp(18px, 3vw, 23px);
  font-weight: bold;
  line-height: 1.6;
  margin: 0 0 min(2.9vw, 36px);
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-contact__org {
    margin: 0 0 min(2.13vw, 8px);
  }
}
.e-mizu-contact__dept {
  margin: 0 0 20px;
}
.e-mizu-contact__address, .e-mizu-contact__tel {
  font-size: clamp(12px, 3vw, 16px);
  line-height: 1.6;
  margin: 0 0 5px;
}
.e-mizu-contact__buttons {
  text-align: center;
}
.e-mizu-contact__button {
  display: inline-block;
  background-color: #fff;
  color: #06b4ea;
  text-decoration: none;
  padding: 1.62em 0;
  width: 45rem;
  border-radius: 50px;
  font-size: clamp(13px, 3vw, 16px);
  font-weight: bold;
  margin-bottom: 20px;
  transition: all 0.3s ease;
}
.e-mizu-contact__button:hover {
  opacity: 0.8;
}
@media only screen and (max-width: 37.5em) {
  .e-mizu-contact__button {
    width: 28rem;
    padding: 1.57em 0;
  }
}
.e-mizu-contact__google-wrapper {
  margin: 0;
}
.e-mizu-contact__google {
  display: inline-block;
  background-color: #fdd835;
  color: #231815;
  text-decoration: none;
  padding: 8px 20px;
  border-radius: 5px;
  font-size: 14px;
  transition: all 0.3s ease;
}
.e-mizu-contact__google:hover {
  opacity: 0.8;
}/*# sourceMappingURL=style.css.map */