@charset "UTF-8";
/*------------------------------------------------------
    Top page用scss
------------------------------------------------------*/
/*------------------------------------------------------
    Breakpoint　値はサイトに合わせて変更しましょう
------------------------------------------------------*/
/*------------------------------------------------------
    このファイルは基本触らない
------------------------------------------------------*/
/*------------------------------------------------------
    color format (カラー設定)
------------------------------------------------------*/
/*------------------------------------------------------
    color format (カラー設定)
------------------------------------------------------*/
/*------------------------------------------------------
    Top page用scss
------------------------------------------------------*/
/*------------------------------------------------------
    Top page用scss
------------------------------------------------------*/
/*------------------------------------------------------
    Top page用scss
------------------------------------------------------*/
.maintitle {
  font-size: 60px;
  color: blue;
}

.subtitle {
  font-size: 40px;
  color: red;
}

.top__mv {
  position: relative;
  overflow: hidden;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 190px 0 0;
  padding-right: clamp(50px, 9.8958333333vw, 190px);
  box-sizing: border-box;
}
.top__mv .top__mv__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: left;
  background-repeat: no-repeat;
  opacity: 0;
  z-index: -1;
  transition: all 1.2s ease-in-out;
  animation: mvSlide 12s infinite;
  /* 画像指定 */
}
.top__mv .top__mv__bg:nth-child(1) {
  background-image: url(../img/top/top_mv1.webp);
  animation-delay: 0s;
}
.top__mv .top__mv__bg:nth-child(2) {
  background-image: url(../img/top/top_mv2.webp);
  animation-delay: 4s;
}
.top__mv .top__mv__bg:nth-child(3) {
  background-image: url(../img/top/top_mv3.webp);
  animation-delay: 8s;
}
@keyframes mvSlide {
  0% {
    opacity: 0;
  }
  8% {
    opacity: 1;
  }
  33% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.top__mv .top__mv__wrap {
  width: fit-content;
  margin: 0 0 0 auto;
  background: url(../img/top/top_mv_wrap.webp) no-repeat center center/contain;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 85px;
  padding-right: clamp(50px, 5.9027777778vw, 85px);
  padding-left: clamp(20px, 3.8194444444vw, 55px);
}
.top__mv .top__mv__wrap .top__mv__subtitle {
  font-size: clamp(22px, 2.5vw, 36px);
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  font-family: "Oooh Baby", cursive;
  color: #C1C1C1;
}
.top__mv .top__mv__wrap .top__mv__title {
  font-size: clamp(35px, 4.375vw, 63px);
  font-weight: 600;
  line-height: 1.4;
  margin: 7px auto clamp(15px, 2.0833333333vw, 30px);
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  color: #262626;
  padding-left: clamp(20px, 2.7777777778vw, 40px);
}
.top__mv .top__mv__wrap .top__mv__text {
  font-size: clamp(14px, 1.3888888889vw, 20px);
  text-align: center;
}
@media (max-width: 1400px) {
  .top__mv {
    padding-right: clamp(30px, 6.9444444444vw, 50px);
  }
}
@media (max-width: 768px) {
  .top__mv {
    align-items: flex-end;
    padding: 10px 10px 20px;
  }
  .top__mv .top__mv__bg:nth-child(1) {
    background-image: url(../img/top/top_mv1_sp.webp);
  }
  .top__mv .top__mv__bg:nth-child(2) {
    background-image: url(../img/top/top_mv2_sp.webp);
  }
  .top__mv .top__mv__bg:nth-child(3) {
    background-image: url(../img/top/top_mv3_sp.webp);
  }
  .top__mv .top__mv__wrap {
    margin: 0 auto;
    padding: 40px 30px;
  }
  .top__mv .top__mv__wrap .top__mv__title {
    padding-left: 20px;
    font-size: clamp(24px, 8.9743589744vw, 35px);
  }
}
@media screen and (max-width: 768px) {
  .top__mv {
    padding: 100px 20px clamp(30px, 15.1041666667vw, 116px) 20px;
  }
  .top__mv__container .lower__mv__content .breadcrumb {
    margin-top: 56px;
  }
  .top__mv__container .lower__mv__image__wrap {
    top: -7px;
    right: 40px;
  }
  .top__mv__container .lower__mv__image__wrap .lower__mv__image1 {
    width: clamp(185px, 49.3333333333vw, 400px);
  }
  .top__mv__container .lower__mv__image__wrap .lower__mv__image2 {
    width: clamp(104px, 27.7333333333vw, 200px);
    top: 32px;
    right: -60px;
  }
}

.top__btn__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.top__btn__wrap .top__btn {
  width: clamp(222px, 27.4vw, 274px);
  height: auto;
  padding: clamp(20px, 2.5vw, 25px) 0 clamp(19px, 2.4vw, 24px);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  background: linear-gradient(130deg, #1AA982 10%, #AFCA54 50%, #AFCA54 80%);
  background-size: 200% 100%;
  background-position: 0% 50%;
  box-shadow: 8px 8px 20px rgba(105, 195, 111, 0.3);
  transition: background-position 0.5s ease;
}
.top__btn__wrap .top__btn__text {
  font-size: clamp(15px, 1.8vw, 18px);
  font-weight: bold;
  color: #FFFFFF;
  line-height: 1.3;
}
.top__btn__wrap .top__btn__arrow {
  width: 18px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .top__btn__wrap .top__btn:hover {
    background-position: 20% 50%;
  }
  .top__btn__wrap .top__btn:hover .top__btn__arrow {
    transform: translateX(12px);
  }
}

main {
  overflow-x: hidden;
}

.top__news {
  padding: clamp(60px, 6.25vw, 120px) clamp(20px, 5.2083333333vw, 40px) clamp(70px, 6.25vw, 120px);
  background: url(../img/top/top_news_bg.webp) no-repeat center center/cover;
}
.top__news .top__news__container {
  max-width: 1260px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: clamp(30px, 5.2083333333vw, 100px);
}
.top__news .top__news__container .top__news__title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-shrink: 0;
  margin-top: 16px;
}
.top__news .top__news__container .top__news__title__ja {
  font-size: clamp(15px, 0.9375vw, 18px);
  color: #262626;
}
.top__news .top__news__container .top__news__title__en {
  font-size: clamp(35px, 2.0833333333vw, 40px);
  color: #262626;
  font-family: "Aboreto", sans-serif;
  margin-bottom: 6px;
}
.top__news .top__news__container .top__news__title__link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: #1AA981;
}
.top__news .top__news__container .top__news__title__link__text {
  font-size: clamp(17px, 0.9375vw, 18px);
  font-weight: 500;
  line-height: 1.2;
}
.top__news .top__news__container .top__news__title__link__arrow {
  width: 17px;
  height: auto;
  object-fit: contain;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .top__news .top__news__container .top__news__title__link:hover .top__news__title__link__arrow {
    transform: translateX(12px);
  }
}
.top__news .top__news__container .top__news__list {
  width: 100%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.4);
  box-shadow: 5px 5px 20px rgba(183, 183, 183, 0.25);
  backdrop-filter: blur(4px);
  padding: clamp(20px, 2.0833333333vw, 40px) clamp(40px, 4.1666666667vw, 80px);
  -webkit-mask-image: linear-gradient(to top, transparent, black 10px), linear-gradient(to bottom, transparent, black 10px), linear-gradient(to left, transparent, black 10px), linear-gradient(to right, transparent, black 10px);
  mask-image: linear-gradient(to top, transparent, black 10px), linear-gradient(to bottom, transparent, black 10px), linear-gradient(to left, transparent, black 10px), linear-gradient(to right, transparent, black 10px);
  -webkit-mask-composite: destination-in;
  mask-composite: intersect;
}
.top__news .top__news__container .top__news__list__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top__news .top__news__container .top__news__list__item {
  padding: 20px 2px;
  border-bottom: 1px solid #DBDBDB;
}
.top__news .top__news__container .top__news__list__item:last-child {
  border-bottom: none;
}
.top__news .top__news__container .top__news__list__item .top__news__item__link {
  display: block;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #5C5C5C;
  gap: 30px;
}
.top__news .top__news__container .top__news__list__item .top__news__item__link .top__news__item__date {
  font-size: clamp(15px, 0.9375vw, 18px);
  font-weight: 500;
  line-height: 1.2;
  color: #fff;
  background: linear-gradient(130deg, #1AA982 0%, #AFCA54 100%);
  padding: clamp(7px, 0.5208333333vw, 10px) clamp(9px, 1.0416666667vw, 20px);
  border-radius: 5px;
  box-shadow: 8px 8px 20px rgba(105, 195, 111, 0.3);
}
.top__news .top__news__container .top__news__list__item .top__news__item__link .top__news__item__text {
  font-size: clamp(16px, 0.9375vw, 18px);
  font-weight: 500;
  line-height: 1.8;
}
.top__news .top__news__container .top__news__title__link.sp {
  display: none;
}
@media (max-width: 1400px) {
  .top__news .top__news__container {
    gap: clamp(20px, 2.1428571429vw, 30px);
  }
}
@media (max-width: 960px) {
  .top__news .top__news__container {
    flex-direction: column;
    gap: 0px;
  }
  .top__news .top__news__container .top__news__title__link {
    display: none;
  }
  .top__news .top__news__container .top__news__list {
    background: transparent;
    box-shadow: none;
    backdrop-filter: none;
    padding: 0;
    mask-image: none;
    -webkit-mask-image: none;
    -webkit-mask-composite: none;
    mask-composite: none;
  }
  .top__news .top__news__container .top__news__list__item:last-child {
    border-bottom: 1px solid #DBDBDB;
  }
  .top__news .top__news__container .top__news__title__link.sp {
    display: flex;
    margin-top: 30px;
  }
}
@media (max-width: 768px) {
  .top__news .top__news__container .top__news__list__item {
    padding: 30px 0px 20px;
  }
  .top__news .top__news__container .top__news__list__item .top__news__item__link {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}

.top__products {
  padding: 160px 40px;
}
.top__products .top__products__container {
  max-width: 1600px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(50px, 6.7708333333vw, 130px);
}
.top__products .top__products__container .top__products__title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  margin-top: -160px;
}
.top__products .top__products__container .top__products__title__en {
  font-size: 50px;
  color: #262626;
  margin-bottom: 6px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Oooh Baby", cursive;
  color: #C1C1C1;
  margin-right: -30px;
  padding-bottom: 100px;
}
.top__products .top__products__container .top__products__title__ja {
  background: #E5EEE2;
  padding: 100px 26px 290px 29px;
  font-size: clamp(30px, 2.0833333333vw, 40px);
  color: #262626;
  writing-mode: vertical-rl;
  font-family: "Sawarabi Mincho", sans-serif;
}
.top__products .top__products__container .top__products__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: clamp(50px, 5.2083333333vw, 100px);
  padding-right: clamp(50px, 10.4166666667vw, 200px);
}
.top__products .top__products__container .top__products__wrap .top__products__list {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(50px, 5.2083333333vw, 100px);
  row-gap: clamp(30px, 3.4895833333vw, 67px);
}
.top__products .top__products__container .top__products__wrap .top__products__list__item {
  width: calc(50% - clamp(25px, 2.6041666667vw, 50px));
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
.top__products .top__products__container .top__products__wrap .top__products__list__item__img {
  display: block;
}
.top__products .top__products__container .top__products__wrap .top__products__list__item__text {
  font-size: clamp(15px, 2.2vw, 22px);
  line-height: 1.4;
  font-family: "Noto Sans", sans-serif;
}
@media screen and (max-width: 974px) {
  .top__products .top__products__container .top__products__wrap {
    padding-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .top__products {
    padding: 70px 20px 40px;
  }
  .top__products .top__products__container {
    flex-direction: column;
    gap: 35px;
  }
  .top__products .top__products__container .top__products__title {
    flex-direction: column;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .top__products .top__products__container .top__products__title__en {
    font-size: 24px;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    margin: 0;
    padding: 0;
    order: 2;
    line-height: 1;
  }
  .top__products .top__products__container .top__products__title__ja {
    font-size: 25px;
    writing-mode: horizontal-tb;
    padding: 0;
    order: 1;
    background: transparent;
    letter-spacing: 0.05em;
  }
  .top__products .top__products__container .top__products__title::before {
    content: "";
    display: block;
    width: 243px;
    height: 33px;
    background: #E5EEE2;
    position: absolute;
    top: 20px;
    left: -20px;
    z-index: -1;
  }
  .top__products .top__products__container .top__products__wrap {
    padding-right: 0;
  }
  .top__products .top__products__container .top__products__wrap .top__products__list {
    gap: 8px;
    row-gap: 34px;
  }
  .top__products .top__products__container .top__products__wrap .top__products__list__item {
    width: calc(50% - 4px);
    gap: 3px;
  }
}

.top__about {
  padding: 140px clamp(100px, 10.4166666667vw, 200px) 160px 40px;
  background: #FBFBFB;
  border-top: 1px solid #DBDBDB;
}
.top__about__container {
  margin: 0 auto;
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: center;
  align-items: flex-start;
  gap: clamp(50px, 3.6458333333vw, 70px);
  margin-left: calc(50% - 50vw);
}
.top__about__container .top__about__title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  margin-top: -140px;
}
.top__about__container .top__about__title__en {
  font-size: 50px;
  color: #262626;
  margin-bottom: 6px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Oooh Baby", cursive;
  color: #C1C1C1;
  margin-left: -26px;
  padding-bottom: 100px;
}
.top__about__container .top__about__title__ja {
  background: #E5EEE2;
  padding: 100px 26px 120px 29px;
  font-size: clamp(30px, 2.0833333333vw, 40px);
  color: #262626;
  writing-mode: vertical-rl;
  font-family: "Sawarabi Mincho", sans-serif;
}
.top__about__container .top__about__content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 140px;
}
.top__about__container .top__about__content__item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: clamp(50px, 5.2083333333vw, 100px);
}
.top__about__container .top__about__content__item__img {
  width: 100%;
  max-width: clamp(256px, 24.7916666667vw, 476px);
  height: auto;
  object-fit: cover;
}
.top__about__container .top__about__content__item__title {
  font-size: clamp(23px, 1.9791666667vw, 38px);
  font-weight: 500;
  font-family: "Zen Old Mincho", serif;
  color: #262626;
}
.top__about__container .top__about__content__item__text {
  max-width: clamp(380px, 31.0416666667vw, 596px);
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.4;
  font-family: "Noto Sans", sans-serif;
  padding-bottom: clamp(47px, 9.1145833333vw, 70px);
}
.top__about__container .top__about__content__item:first-child {
  align-self: flex-start;
  justify-content: flex-start;
}
.top__about__container .top__about__content__item:first-child .top__about__content__item__img {
  max-width: clamp(400px, 39.6354166667vw, 761px);
}
.top__about__container .top__about__content__item:first-child .top__about__content__item__title {
  margin-top: clamp(60px, 6.7708333333vw, 130px);
  margin-left: clamp(10px, 1.5625vw, 30px);
}
.top__about__container .top__about__content__item:last-child .top__about__content__item__img {
  transform: translateY(calc(-100% - 40px));
}
.top__about .top__btn__wrap {
  margin-left: calc(50vw - 50%);
}
@media screen and (max-width: 1500px) {
  .top__about {
    padding: 140px 40px 160px;
  }
}
@media screen and (max-width: 974px) {
  .top__about__container {
    margin-left: 0;
  }
  .top__about__container .top__about__content {
    gap: clamp(30px, 6.5104166667vw, 50px);
  }
  .top__about__container .top__about__content__item {
    flex-direction: column-reverse;
    gap: 0;
  }
  .top__about__container .top__about__content__item__title {
    margin: 0;
  }
  .top__about__container .top__about__content__item__text {
    max-width: 100%;
  }
  .top__about__container .top__about__content__item:first-child {
    align-self: center;
    justify-content: center;
  }
  .top__about__container .top__about__content__item:first-child .top__about__content__item__img {
    max-width: 100%;
  }
  .top__about__container .top__about__content__item:first-child .top__about__content__item__title {
    margin: 0 0 20px;
  }
}
@media screen and (max-width: 768px) {
  .top__about {
    padding: 50px 20px 87px;
  }
  .top__about__container {
    flex-direction: column;
    gap: 35px;
  }
  .top__about__container .top__about__title {
    flex-direction: column;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .top__about__container .top__about__title__en {
    font-size: 24px;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    margin: 0;
    padding: 0;
    order: 2;
    line-height: 1;
  }
  .top__about__container .top__about__title__ja {
    font-size: 25px;
    writing-mode: horizontal-tb;
    padding: 0;
    order: 1;
    background: transparent;
    letter-spacing: 0.05em;
  }
  .top__about__container .top__about__title::before {
    content: "";
    display: block;
    width: 90vw;
    max-width: 335px;
    height: 33px;
    background: #E5EEE2;
    position: absolute;
    top: 20px;
    left: -20px;
    z-index: -1;
  }
  .top__about__container .top__about__content {
    align-items: flex-start;
  }
  .top__about__container .top__about__content__item:first-child {
    width: 100%;
  }
  .top__about__container .top__about__content__item:first-child .top__about__content__item__img {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
  }
}

.top__history {
  padding: 160px clamp(40px, 5.2083333333vw, 100px);
  position: relative;
}
.top__history::before {
  content: "";
  display: block;
  width: 21%;
  height: 100%;
  background: url(../img/top/top_history_bg.webp) no-repeat center center/cover;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.top__history__container {
  max-width: 1450px;
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.top__history__container .top__history__title {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
}
.top__history__container .top__history__title__ja {
  font-size: clamp(32px, 1.9791666667vw, 38px);
  color: #262626;
  writing-mode: vertical-rl;
  text-orientation: upright;
  font-family: "Sawarabi Mincho", sans-serif;
  letter-spacing: -0.1em;
}
.top__history__container .top__history__content__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-evenly;
  gap: 20px;
}
.top__history__container .top__history__wrap {
  width: 41%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.top__history__container .top__history__wrap .top__history__wrap__en {
  font-size: clamp(34px, 2.6041666667vw, 50px);
  color: #C1C1C1;
  font-family: "Oooh Baby", cursive;
}
.top__history__container .top__history__wrap .top__history__wrap__title {
  font-size: clamp(23px, 1.9791666667vw, 38px);
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  color: #262626;
  margin: 56px 0 23px;
}
.top__history__container .top__history__wrap .top__history__wrap__text {
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.4;
}
.top__history__container .top__history__inner {
  width: 46%;
  min-width: 490px;
}
.top__history__container .top__history__inner .top__history__block {
  display: flex;
  gap: clamp(10px, 1.0416666667vw, 20px);
}
.top__history__container .top__history__inner .top__history__block .top__history__year {
  width: clamp(100px, 7.8125vw, 150px);
}
.top__history__container .top__history__inner .top__history__block .top__history__year .top__history__label {
  font-size: clamp(20px, 1.3020833333vw, 25px);
  font-weight: bold;
  text-align: right;
}
.top__history__container .top__history__inner .top__history__block .top__history__year .top__history__num {
  font-size: clamp(30px, 2.34375vw, 45px);
  font-weight: bold;
  text-align: right;
  color: #1AA981;
}
.top__history__container .top__history__inner .top__history__block .top__history__year .top__history__num .top__history__num__unit {
  font-size: clamp(26px, 1.875vw, 36px);
  font-weight: bold;
  color: #1AA981;
}
.top__history__container .top__history__inner .top__history__block .top__history__timeline {
  position: relative;
  flex: 1;
  padding-left: 40px;
  padding-top: 40px;
}
.top__history__container .top__history__inner .top__history__block .top__history__timeline::before {
  content: "";
  position: absolute;
  left: 14px;
  top: 52px;
  width: 2px;
  height: 100%;
  background: #169F74;
}
.top__history__container .top__history__inner .top__history__block .top__history__timeline .top__history__item {
  position: relative;
  margin-bottom: 30px;
}
.top__history__container .top__history__inner .top__history__block .top__history__timeline .top__history__item .top__history__dot {
  position: absolute;
  left: -32px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #1AA981;
  border-radius: 50%;
}
.top__history__container .top__history__inner .top__history__block .top__history__timeline .top__history__item .top__history__content {
  display: flex;
  align-items: center;
  gap: clamp(10px, 1.0416666667vw, 20px);
}
.top__history__container .top__history__inner .top__history__block .top__history__timeline .top__history__item .top__history__content .top__history__date {
  background: #1AA981;
  color: #fff;
  padding: 6px clamp(10px, 1.0416666667vw, 20px);
  font-size: 16px;
  font-weight: bold;
  white-space: nowrap;
}
.top__history__container .top__history__inner .top__history__block .top__history__timeline .top__history__item .top__history__content p {
  font-size: 15px;
  font-family: "Noto Sans", sans-serif;
  color: #909090;
}
.top__history .top__btn__wrap {
  margin-top: 72px;
}
@media screen and (max-width: 1024px) {
  .top__history {
    padding: 100px 60px;
  }
  .top__history .top__history__title {
    padding-left: 20px;
  }
  .top__history .top__history__container {
    gap: 50px;
  }
  .top__history .top__history__container .top__history__content__wrap {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  .top__history .top__history__container .top__history__content__wrap .top__history__wrap {
    width: 100%;
  }
  .top__history .top__history__container .top__history__content__wrap .top__history__wrap .top__history__wrap__en {
    font-size: 30px;
  }
  .top__history .top__history__container .top__history__content__wrap .top__history__wrap .top__history__wrap__title {
    font-size: 30px;
    margin: 20px 0 10px;
  }
  .top__history .top__history__container .top__history__content__wrap .top__history__inner {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .top__history {
    padding: 43px 20px 90px 10px;
  }
  .top__history::before {
    width: 30%;
  }
  .top__history .top__history__container {
    gap: 20px;
  }
  .top__history .top__history__container .top__history__title {
    padding-left: 0;
  }
  .top__history .top__history__container .top__history__title__en {
    font-size: 25px;
    writing-mode: vertical-lr;
    font-family: "Oooh Baby", cursive;
    color: #C1C1C1;
    transform: rotate(0deg);
    margin-left: -10px;
    padding: 0;
    order: 2;
    line-height: 1;
  }
  .top__history .top__history__container .top__history__title__ja {
    font-size: 24px;
  }
  .top__history .top__history__container .top__history__content__wrap .top__history__wrap .top__history__wrap__en {
    display: none;
  }
  .top__history .top__history__container .top__history__content__wrap .top__history__wrap .top__history__wrap__title {
    font-size: 24px;
    margin: 40px 0 10px;
  }
  .top__history .top__history__container .top__history__content__wrap .top__history__inner {
    display: none;
  }
  .top__history .top__btn__wrap {
    margin-top: 40px;
  }
}

.top__sdgs {
  padding: 160px clamp(40px, 5.2083333333vw, 100px);
  background: url(../img/top/top_sdgs_bg.webp) no-repeat center center/cover;
}
.top__sdgs__container {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  margin-left: calc(50% - 50vw);
  gap: 20px;
}
.top__sdgs__container .top__sdgs__img {
  width: 41%;
  height: auto;
  object-fit: cover;
}
.top__sdgs__container .top__sdgs__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top__sdgs__container .top__sdgs__wrap {
  width: 46%;
  color: #FFFFFF;
}
.top__sdgs__container .top__sdgs__wrap .top__sdgs__wrap__en {
  font-size: clamp(25px, 3.4722222222vw, 50px);
  font-family: "Oooh Baby", cursive;
  color: #C1C1C1;
}
.top__sdgs__container .top__sdgs__wrap .top__sdgs__wrap__title {
  font-size: clamp(25px, 2.6388888889vw, 38px);
  font-family: "Zen Old Mincho", serif;
  margin: 30px 0 46px;
}
.top__sdgs__container .top__sdgs__wrap .top__sdgs__wrap__text {
  max-width: 712px;
  font-size: clamp(15px, 1.0416666667vw, 20px);
  line-height: 1.4;
}
.top__sdgs .top__btn__wrap {
  margin-top: clamp(-130px, -6.7708333333vw, -50px);
}
@media screen and (max-width: 1440px) {
  .top__sdgs__container {
    gap: 40px;
  }
  .top__sdgs__container .top__sdgs__wrap {
    flex-grow: 1;
  }
  .top__sdgs .top__btn__wrap {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top__sdgs {
    padding: 64px 20px 94px;
  }
  .top__sdgs__container {
    margin: 0 auto;
    flex-direction: column-reverse;
    gap: 20px;
  }
  .top__sdgs__container .top__sdgs__img {
    width: 100%;
  }
  .top__sdgs__container .top__sdgs__wrap {
    width: 100%;
  }
  .top__sdgs__container .top__sdgs__wrap .top__sdgs__wrap__title {
    margin: 20px 0 33px;
  }
  .top__sdgs .top__btn__wrap {
    margin-top: 52px;
  }
}

.top__media {
  padding: 200px 40px 160px 40px;
}
.top__media__container {
  max-width: 1480px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  align-items: flex-start;
  gap: clamp(40px, 3.6458333333vw, 70px);
}
.top__media__container .top__media__title {
  display: flex;
  align-items: flex-start;
  margin-bottom: 60px;
  margin-top: -200px;
}
.top__media__container .top__media__title__en {
  font-size: 50px;
  color: #262626;
  margin-bottom: 6px;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-family: "Oooh Baby", cursive;
  color: #C1C1C1;
  margin-right: -26px;
  padding-bottom: 100px;
}
.top__media__container .top__media__title__ja {
  background: #E5EEE2;
  padding: 100px 26px 120px 29px;
  font-size: clamp(30px, 2.0833333333vw, 40px);
  color: #262626;
  writing-mode: vertical-rl;
  font-family: "Sawarabi Mincho", sans-serif;
}
.top__media__container .top__media__content__wrap {
  display: flex;
  justify-content: space-between;
  gap: clamp(40px, 3.6458333333vw, 70px);
}
.top__media__container .top__media__content {
  display: flex;
  flex-direction: column;
}
.top__media__container .top__media__content__title {
  font-size: clamp(23px, 2.6388888889vw, 38px);
  font-weight: 600;
  font-family: "Zen Old Mincho", serif;
  color: #262626;
}
.top__media__container .top__media__content__text {
  max-width: 520px;
  font-size: clamp(16px, 1.0416666667vw, 20px);
  line-height: 1.4;
  font-family: "Noto Sans", sans-serif;
  margin: clamp(26px, 2.5vw, 36px) 0 clamp(26px, 3.1944444444vw, 46px);
}
.top__media__container .top__media__content__tag {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}
.top__media__container .top__media__content__tag p {
  font-size: clamp(15px, 1.3888888889vw, 20px);
  font-weight: 200;
  padding: 4px 28px 6px;
  border: 1px solid #909090;
  border-radius: 100px;
}
.top__media__container .top__media__img {
  width: 41%;
  height: auto;
  object-fit: cover;
}
.top__media .top__btn__wrap {
  margin-left: calc(50vw - 50%);
}
@media screen and (max-width: 974px) {
  .top__media {
    padding: 100px 40px 100px 40px;
  }
  .top__media__container .top__media__title {
    margin-top: -100px;
  }
  .top__media__container .top__media__content__wrap {
    flex-direction: column;
    gap: 30px;
  }
  .top__media__container .top__media__content__wrap .top__media__content__title {
    font-size: clamp(25px, 4.9479166667vw, 30px);
  }
  .top__media__container .top__media__img {
    width: 60%;
  }
  .top__media .top__btn__wrap {
    margin-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .top__media {
    padding: 65px 20px 62px;
  }
  .top__media__container {
    flex-direction: column;
    gap: 7px;
  }
  .top__media__container .top__media__title {
    flex-direction: column;
    margin: 0;
    position: relative;
    z-index: 1;
  }
  .top__media__container .top__media__title__en {
    font-size: 24px;
    writing-mode: horizontal-tb;
    transform: rotate(0deg);
    margin: 0;
    padding: 0;
    order: 2;
    line-height: 1;
  }
  .top__media__container .top__media__title__ja {
    font-size: 25px;
    writing-mode: horizontal-tb;
    padding: 0;
    order: 1;
    background: transparent;
    letter-spacing: 0.05em;
  }
  .top__media__container .top__media__title::before {
    content: "";
    display: block;
    width: 90vw;
    max-width: 335px;
    height: 33px;
    background: #E5EEE2;
    position: absolute;
    top: 20px;
    left: -20px;
    z-index: -1;
  }
  .top__media__container .top__media__content__wrap {
    flex-direction: column;
    gap: 30px;
  }
  .top__media__container .top__media__content .top__media__img {
    width: 100vw;
    max-width: 100vw;
    margin: 18px calc(50% - 50vw) 0;
  }
  .top__media__container .top__media__content__tag p {
    padding: 3px 21px;
  }
}