.top-page {
  background-color: #FFFFFF;
  overflow: hidden;
  margin-top: 60px;
  margin-bottom: 191px;
}
@media screen and (max-width: 992px) {
  .top-page {
    margin-bottom: 240px;
  }
}
.top-page .top {
  position: relative;
}
.top-page .top--wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  height: 46.76vw;
}
@media screen and (max-width: 992px) {
  .top-page .top--wrapper {
    height: 415.76px;
    grid-template-columns: repeat(3, 330.66px);
    overflow-x: auto;
    /* smooth scrolling on IPhones */
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for IE & Edge */
    -ms-overflow-style: none;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Chrome Safari & Opera */
  }
  .top-page .top--wrapper::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 575px) {
  .top-page .top--wrapper {
    grid-template-columns: repeat(3, 324px);
  }
}
.top-page .top--container {
  position: relative;
  cursor: pointer;
}
.top-page .top--container:hover .top--more::after {
  content: "";
  width: 16px;
  left: 95px;
  top: calc(50% + 0.5px);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 575px) {
  .top-page .top--container:hover .top--more::after {
    left: 52px;
  }
}
.top-page .top--video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-page .top--overlay-text {
  font-size: 16px;
  position: absolute;
  top: 64px;
  left: 78px;
  z-index: 2;
  color: #FFFFFF;
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .top-page .top--overlay-text {
    left: 62px;
  }
}
@media screen and (max-width: 992px) {
  .top-page .top--overlay-text {
    left: 50vw;
    top: 54px;
    transform: translateX(-50%);
  }
}
.top-page .top--overlay-text::before {
  content: "";
  width: 32px;
  height: 1px;
  background-color: #FFFFFF;
  display: block;
  position: absolute;
  left: -38px;
  top: 50%;
}
@media screen and (max-width: 1200px) {
  .top-page .top--overlay-text::before {
    left: -38px;
  }
}
@media screen and (max-width: 992px) {
  .top-page .top--overlay-text::before {
    width: 1px;
    height: 32px;
    left: calc(50% - 1px);
    top: -42px;
  }
}
.top-page .top--overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5019607843);
}
.top-page .top--text {
  position: absolute;
  left: 40px;
  bottom: 24px;
  color: #FFFFFF;
}
@media screen and (max-width: 1200px) {
  .top-page .top--text {
    left: 24px;
  }
}
.top-page .top--title {
  font-size: 32px;
  font-weight: bold;
  line-height: 40px;
  margin-bottom: 8px;
}
@media screen and (max-width: 1200px) {
  .top-page .top--title {
    font-size: 28px;
  }
}
@media screen and (max-width: 1024px) {
  .top-page .top--title {
    font-size: 24px;
  }
}
.top-page .top--subtitle {
  font-size: 16px;
  line-height: 27px;
  margin-bottom: 30px;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1024px) {
  .top-page .top--subtitle {
    font-size: 12px;
    line-height: 20px;
  }
}
.top-page .top--more {
  font-size: 14px;
  position: relative;
}
@media screen and (max-width: 575px) {
  .top-page .top--more {
    font-size: 10px;
  }
}
.top-page .top--more::after {
  content: "";
  width: 40px;
  height: 1px;
  background-color: #FFFFFF;
  display: block;
  position: absolute;
  left: 71px;
  top: calc(50% + 0.5px);
  transition: all 0.3s ease-in-out;
}
@media screen and (max-width: 575px) {
  .top-page .top--more::after {
    left: 52px;
  }
}
.top-page .popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5019607843);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 0 4.26vw;
  overflow-y: auto;
}
.top-page .popup.active {
  display: flex;
}
.top-page .popup__content {
  background: #fff;
  max-width: 770px;
  width: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  .top-page .popup__content {
    width: 60%;
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 575px) {
  .top-page .popup__content {
    width: 100%;
  }
}
.top-page .popup__close {
  position: absolute;
  top: 32px;
  right: 24px;
  background: none;
  border: none;
  font-size: 14px;
  padding: 0;
  cursor: pointer;
  letter-spacing: 2.24px;
  color: #0C0D0D;
}
@media (max-width: 768px) {
  .top-page .popup__close {
    position: static;
    display: block;
    margin: 39px auto 24px;
  }
}
.top-page .popup__close::before {
  content: "";
  width: 380px;
  height: 1px;
  position: absolute;
  left: -386px;
  top: calc(50% - 1px);
  background-color: #E8E8E8;
}
@media (max-width: 768px) {
  .top-page .popup__close::before {
    display: none;
  }
}
.top-page .popup__body {
  display: flex;
  flex-direction: row;
  gap: 30px;
  padding-right: 41px;
  min-height: 475px;
}
@media (max-width: 768px) {
  .top-page .popup__body {
    flex-direction: column;
    padding: unset;
    gap: unset;
  }
}
.top-page .popup__video {
  width: 270px;
}
@media (max-width: 768px) {
  .top-page .popup__video {
    width: 100%;
    height: 35.6svh;
    aspect-ratio: 343/330;
  }
}
.top-page .popup__video .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.top-page .popup__text {
  flex: 2;
  color: #333;
}
.top-page .popup__text .popup__title {
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 16px;
  margin-top: 102px;
  font-family: "Noto Serif JP", serif;
}
.top-page .popup__text .popup__subtitle {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 50px;
  font-family: "Noto Serif JP", serif;
}
.top-page .popup__text p {
  font-size: 14px;
  line-height: 24px;
  color: #727272;
}
@media (max-width: 768px) {
  .top-page .popup__text {
    padding: 29px 20px 0;
  }
  .top-page .popup__text .popup__title {
    font-size: 26px;
    margin-bottom: 17px;
    margin-top: unset;
  }
  .top-page .popup__text .popup__subtitle {
    font-size: 14px;
    margin-bottom: 23px;
  }
  .top-page .popup__text p {
    font-size: 13px;
  }
}
.top-page .products {
  padding: 40px 20px 80px;
}
.top-page .products__top {
  display: flex;
  justify-content: space-between;
}
.top-page .products__grid {
  display: grid;
  grid-template-columns: repeat(5, 200px);
  gap: 30px;
  justify-items: center;
  margin-top: 32px;
  height: 446px;
}
@media screen and (max-width: 1150px) {
  .top-page .products__grid {
    overflow-x: auto;
    /* smooth scrolling on IPhones */
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for IE & Edge */
    -ms-overflow-style: none;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Chrome Safari & Opera */
  }
  .top-page .products__grid::-webkit-scrollbar {
    display: none;
  }
}
@media screen and (max-width: 992px) {
  .top-page .products__grid {
    gap: 12px;
  }
}
@media screen and (max-width: 768px) {
  .top-page .products__grid {
    margin-bottom: 24px;
  }
}
.top-page .product-card {
  width: 100%;
  background: transparent linear-gradient(180deg, #F7F7F7 0%, #FFFFFF 100%) 0% 0% no-repeat padding-box;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.top-page .product-card:hover .image {
  transform: translateY(-20px);
  transition: transform 0.3s ease-in-out;
}
.top-page .product-card__image {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 35px;
}
.top-page .product-card__image .image {
  transition: transform 0.5s ease-in-out;
}
.top-page .product-card__image .image__0 {
  width: 95px;
  height: 142px;
}
.top-page .product-card__image .image__1 {
  width: 115px;
  height: 170px;
}
.top-page .product-card__image .image__2 {
  width: 47px;
  height: 151px;
}
.top-page .product-card__image .image__3 {
  width: 80px;
  height: 156px;
}
.top-page .product-card__image .image__4 {
  width: 109px;
  height: 140px;
}
.top-page .product-card__image img {
  object-fit: contain;
}
.top-page .product-card__info {
  margin: 0 4px;
}
.top-page .product-card__info .product-card__brand {
  font-size: 12px;
  color: #0C0D0D;
  margin-bottom: 4px;
  -webkit-line-clamp: 2;
}
.top-page .product-card__info .product-card__name {
  font-size: 16px;
  font-weight: 300;
  line-height: 24px;
  margin-bottom: 8px;
  margin-bottom: 16px;
  color: #0C0D0D;
  -webkit-line-clamp: 2;
}
.top-page .product-card__info .product-card__price {
  font-size: 18px;
  font-family: "Economica", sans-serif;
  color: #66B47F;
}
.top-page .see-more {
  width: 170px;
  height: 50px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  border: 1px solid #707070;
}
@media screen and (max-width: 768px) {
  .top-page .see-more {
    margin: 0 auto;
    z-index: 1;
    position: relative;
  }
}
.top-page .see-more .text {
  color: #0C0D0D;
  font-size: 14px;
  margin-left: 32px;
  position: relative;
}
.top-page .see-more .text::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 1px;
  top: calc(50% + 1px);
  left: 71px;
  background-color: #0C0D0D;
}
.top-page .see-more.mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-page .see-more.mobile {
    display: flex;
  }
}
@media screen and (max-width: 768px) {
  .top-page .see-more.desktop {
    display: none;
  }
}
.top-page .concept {
  position: relative;
  background-color: #F5F8F5;
  padding: 28px 0 88px;
}
@media screen and (max-width: 768px) {
  .top-page .concept {
    padding: 60px 0 0px;
    margin-bottom: 120px;
    background-color: #F0F7F0;
  }
}
.top-page .concept::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: #FFFFFF;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media screen and (max-width: 768px) {
  .top-page .concept::before {
    height: 50px;
  }
}
.top-page .concept::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 45px;
  background: #FFFFFF;
  clip-path: polygon(0 100%, 0 0, 100% 100%);
}
@media screen and (max-width: 768px) {
  .top-page .concept::after {
    height: 59px;
    clip-path: polygon(0 100%, 0 0, 120% 100%);
  }
}
.top-page .concept--text {
  margin-top: 49px;
}
@media screen and (max-width: 768px) {
  .top-page .concept--top {
    position: absolute;
    top: 35px;
    z-index: 1;
  }
}
.top-page .concept--container {
  display: flex;
  column-gap: 120px;
  margin-top: 27px;
}
@media screen and (max-width: 1024px) {
  .top-page .concept--container {
    column-gap: 30px;
  }
}
@media screen and (max-width: 992px) {
  .top-page .concept--container {
    padding: 0 4.26vw;
  }
}
@media screen and (max-width: 768px) {
  .top-page .concept--container {
    flex-direction: column;
    padding: unset;
    margin-top: unset;
  }
}
.top-page .concept--video {
  position: relative;
  width: 382px;
  height: 573px;
  flex-shrink: 0;
}
@media screen and (max-width: 992px) {
  .top-page .concept--video {
    width: 300px;
    height: auto;
  }
}
@media screen and (max-width: 768px) {
  .top-page .concept--video {
    width: 100%;
    height: auto;
    padding: unset;
  }
  .top-page .concept--video::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #F0F7F0;
    clip-path: polygon(0 100%, 0 0, 100% 0);
  }
  .top-page .concept--video::after {
    content: "";
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: #F0F7F0;
    clip-path: polygon(0% 100%, 100% 0, 100% 100%);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  .top-page .concept--video::after {
    height: 60px;
  }
}
.top-page .concept--video .video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
@media screen and (max-width: 768px) {
  .top-page .concept--video .video {
    aspect-ratio: 375/411;
  }
}
.top-page .concept--video .video-overlay {
  position: absolute;
  mix-blend-mode: soft-light;
  background-color: #66B47F;
}
.top-page .concept--video .video-overlay--1 {
  width: 200px;
  height: 363px;
  top: 49px;
  right: 0px;
}
.top-page .concept--video .video-overlay--2 {
  width: 224px;
  height: 261px;
  left: 53px;
  top: 268px;
}
.top-page .concept--video .seperator {
  position: absolute;
  width: 187px;
  height: 1px;
  background-color: #66B47F;
  top: 71px;
  right: -107px;
  opacity: 1 !important;
}
@media screen and (max-width: 1024px) {
  .top-page .concept--video .seperator {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .top-page .concept--text {
    margin-top: 14px;
    padding: 0 4.26vw;
  }
}
.top-page .concept--text__title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
  line-height: 46px;
}
@media screen and (max-width: 992px) {
  .top-page .concept--text__title {
    font-size: 27px;
    font-weight: bold;
    margin-bottom: 12px;
    line-height: 38px;
  }
}
.top-page .concept--text__subtitle {
  font-size: 22px;
  margin-bottom: 50px;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .top-page .concept--text__subtitle {
    font-size: 15px;
    margin-bottom: 24px;
  }
}
.top-page .concept--text__description {
  font-size: 14px;
  line-height: 22px;
  margin-bottom: 50px;
  max-width: 495px;
}
@media screen and (max-width: 992px) {
  .top-page .concept--text__description {
    font-size: 15px;
    margin-bottom: 24px;
    max-width: unset;
  }
}
.top-page .concept--text__description .highlight {
  color: #66B47F;
  font-size: 18px;
  font-weight: bold;
}
@media screen and (max-width: 992px) {
  .top-page .concept--text__description .highlight {
    font-size: 15px;
    margin-bottom: 24px;
    font-weight: bold;
  }
}
.top-page .blog {
  margin-top: 80px;
  position: relative;
}
@media screen and (max-width: 992px) {
  .top-page .blog {
    margin-top: 60px;
  }
}
.top-page .blog--header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 24px;
}
@media screen and (max-width: 992px) {
  .top-page .blog--header {
    margin-bottom: 16px;
  }
}
.top-page .blog--header .link {
  font-size: 14px;
  color: #2370CC;
}
.top-page .blog--header .link:hover {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .top-page .blog--header .link {
    display: none;
  }
}
.top-page .blog--title {
  font-size: 24px;
  color: #66B47F;
}
@media screen and (max-width: 992px) {
  .top-page .blog--title {
    font-size: 40px;
  }
}
.top-page .blog--subtitle {
  font-size: 14px;
  color: #2370CC;
}
.top-page .blog .swiper {
  position: relative;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .top-page .blog .swiper {
    margin-bottom: 24px;
  }
}
.top-page .blog .swiper-button-next,
.top-page .blog .swiper-button-prev {
  width: 50px;
  height: 50px;
  background: #FFFFFF;
  color: #8E8A81;
  border-radius: 50%;
  border: 1px solid #C4C1BB;
  top: 192px;
}
.top-page .blog .swiper-button-next::after,
.top-page .blog .swiper-button-prev::after {
  font-size: 8px;
}
@media screen and (max-width: 992px) {
  .top-page .blog .swiper-button-next,
  .top-page .blog .swiper-button-prev {
    display: none;
  }
}
.top-page .blog .swiper-button-prev {
  left: 0;
}
@media screen and (max-width: 1200px) {
  .top-page .blog .swiper-button-prev {
    left: 30px;
  }
}
.top-page .blog .swiper-button-next {
  right: 0;
}
@media screen and (max-width: 1200px) {
  .top-page .blog .swiper-button-next {
    right: 30px;
  }
}
.top-page .blog .swiper-button-disabled {
  pointer-events: unset;
}
.top-page .blogs--list {
  row-gap: 60px;
  list-style-type: none;
}
@media screen and (max-width: 992px) {
  .top-page .blogs--list {
    margin-bottom: 12px;
  }
}
.top-page .blogs--list__block {
  position: relative;
  width: 290px;
  flex-shrink: 0;
}
@media screen and (min-width: 992px) {
  .top-page .blogs--list__block:hover .blogs--list__title {
    text-decoration: underline;
  }
}
.top-page .blogs--list__inner {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.top-page .blogs--list__image {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: all 0.8s ease-in-out;
}
@media screen and (max-width: 992px) {
  .top-page .blogs--list__image {
    height: 215px;
  }
}
.top-page .blogs--list__title {
  font-size: 16px;
  margin-bottom: 6px;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 992px) {
  .top-page .blogs--list__title {
    font-size: 14px;
    margin-bottom: 2px;
  }
}
.top-page .blogs--list__date {
  font-size: 12px;
  margin-bottom: 24px;
  color: #808686;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .top-page .blogs--list__date {
    font-size: 10px;
    margin-bottom: 6px;
  }
}
.top-page .blogs--list__description {
  font-size: 14px;
  color: #5D5952;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 992px) {
  .top-page .blogs--list__description {
    font-size: 12px;
    -webkit-line-clamp: 5;
  }
}
@media screen and (max-width: 992px) {
  .top-page .blogs--list__readmore {
    border: 1px solid #131415;
    width: 100px;
    height: 32px;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 8px;
  }
  .top-page .blogs--list__readmore .text {
    color: #131415;
    font-size: 13px;
  }
}
@media screen and (max-width: 992px) {
  .top-page .blogs--list .block-right {
    padding: 0 12px;
  }
}
.top-page .banner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .top-page .banner {
    grid-template-columns: repeat(1, 1fr);
    gap: 6px;
    margin-top: 120px;
  }
}
.top-page .banner--image {
  display: block;
  width: 100%;
  height: 100%;
  max-height: 332px;
  aspect-ratio: 525/332;
  object-fit: cover;
}
.top-page .subtitle {
  color: #A0A0A0;
  margin-bottom: 4px;
  font-size: 14px;
  font-family: "Inter", sans-serif;
}
.top-page .title {
  color: #66B47F;
  font-size: 20px;
  margin-bottom: 4px;
}
.top-page .xs-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .top-page .xs-block {
    display: block;
  }
}
.top-page .xs-none {
  display: block;
}
@media screen and (max-width: 768px) {
  .top-page .xs-none {
    display: none;
  }
}

html {
  margin-top: unset !important;
  height: 100%;
}

body {
  margin: unset;
  height: 100%;
  background: white;
  padding-bottom: env(safe-area-inset-bottom);
}
body.opened {
  overflow: hidden;
}

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

main {
  overflow: hidden;
}

address,
blockquote,
dl,
fieldset,
figure,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
ol,
p,
pre,
table,
ul {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: unset;
}

dd,
dl,
dt,
li,
ol,
ul {
  padding: 0;
}

a {
  color: unset;
  text-decoration: unset;
}

:focus {
  outline: 0;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 1000px #E2DFDA inset;
}

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

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

.font-cormorant {
  font-family: "Cormorant", serif;
}

.font-noto-serif {
  font-family: "Noto Serif JP", serif;
}

.page-number-wrapper {
  display: flex;
  justify-content: center;
}
.page-number-wrapper .page-numbers {
  display: flex;
  gap: 4px;
  color: inherit;
  text-decoration: none;
  justify-content: center;
  line-height: 37px;
}
.page-number-wrapper a.page-numbers {
  width: 40px;
  height: 40px;
  border: 1px solid #C4C1BB;
  color: #7C766C;
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
}
.page-number-wrapper a.page-numbers:hover {
  background-color: #0C0D0D;
  border: 1px solid #C4C1BB;
  color: #fff;
}
.page-number-wrapper a.dots,
.page-number-wrapper a.prev,
.page-number-wrapper a.next {
  background-color: unset;
  outline: unset;
}
.page-number-wrapper .current {
  background-color: #0C0D0D;
  color: #fff;
  width: 40px;
  line-height: 40px;
}

.wrapper {
  max-width: 1160px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 993px) {
  .wrapper {
    padding: 0 24px;
  }
}

@media screen and (max-width: 992px) {
  .mobile-wrapper {
    padding: 0 4.26vw;
  }
}

* {
  box-sizing: border-box;
}

.seperator {
  width: 100%;
  height: 1px;
  background-color: #131415;
  opacity: 0.15;
}

.line-clamp {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 60px;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 100px;
  padding-right: 110px;
  z-index: 20;
}
@media screen and (max-width: 992px) {
  .header {
    padding-left: 4.26vw;
    padding-right: 4.53vw;
  }
}
.header--hamburger {
  width: 32px;
  height: 12px;
  cursor: pointer;
}
.header--logo {
  width: 36px;
  height: 47px;
  transform: translateX(-50%);
  top: 6px;
  left: 50%;
  position: absolute;
}
.header--language {
  display: flex;
  align-items: center;
}
.header--language__link {
  color: #000000;
  font-size: 14px;
  opacity: 0.5;
}
.header--language__link.active {
  opacity: 1;
}
.header--language__seperator {
  height: 16px;
  width: 1px;
  background-color: #E8E8E8;
  margin: 0 12px;
}

.fixed-footer {
  display: none;
}
@media screen and (max-width: 575px) {
  .fixed-footer {
    display: block;
    position: fixed;
    bottom: 0;
    height: 5px;
    background: white;
    width: 100%;
    z-index: 20;
  }
}

.menu {
  position: fixed;
  top: 0;
  bottom: 0;
  transform: translateX(-100%);
  width: 385px;
  height: 100%;
  background: #fff;
  padding: 45px 23px 47px 62px;
  transition: transform 0.3s ease-in-out;
  z-index: 1001;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}
.menu.active {
  transform: translateX(0%);
}
@media (max-width: 575px) {
  .menu {
    width: 100vw;
    padding: 45px 13px 28px 22px;
    transform: translateX(-100%);
  }
}
.menu .close {
  background: none;
  border: none;
  letter-spacing: 2.24px;
  font-size: 14px;
  color: #0C0D0D;
  cursor: pointer;
  margin-bottom: 30px;
  text-align: right;
  width: 100%;
  position: relative;
  padding: unset;
}
.menu .close::before {
  content: "";
  width: 297px;
  height: 1px;
  position: absolute;
  left: -62px;
  top: 50%;
  background-color: #E8E8E8;
}
.menu ul {
  list-style: none;
  padding: 0;
  margin: 0 0 96px;
}
@media (max-width: 575px) {
  .menu ul {
    margin: 0 0 40px;
  }
}
.menu ul li {
  margin-bottom: 16px;
}
@media (max-width: 575px) {
  .menu ul li {
    margin-bottom: 12px;
  }
}
.menu ul li a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}
.menu .menu-buttons {
  margin-bottom: 76px;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  width: 248px;
}
@media (max-width: 575px) {
  .menu .menu-buttons {
    margin-bottom: 80px;
  }
}
.menu .menu-buttons .btn {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  text-decoration: none;
  width: 100%;
  height: 50px;
  font-size: 14px;
  position: relative;
  padding-left: 29px;
}
.menu .menu-buttons .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 28px;
  height: 1px;
  width: 40px;
  background-color: #FFFFFF;
}
.menu .menu-buttons .btn.black {
  background: #000;
  color: #fff;
}
.menu .menu-buttons .btn.green {
  background: #6dbd84;
  color: #fff;
}
.menu .menu-buttons .btn.white {
  background: #fff;
  color: #000;
  border: 1px solid #000;
}
.menu .menu-buttons .btn.white::before {
  background-color: #0C0D0D;
}
.menu .menu-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-grow: 1;
}
.menu .menu-footer .logo {
  width: 71px;
  height: 92px;
}
.menu .menu-footer .socials a {
  margin-right: 0.5rem;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}
.overlay.active {
  opacity: 1;
  visibility: visible;
}

.hamburger {
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.footer {
  position: relative;
  left: 0;
  bottom: 0;
  background-color: #F5F8F5;
  padding-bottom: 20px;
  /* Card styles */
  /* Tablet & Mobile: switch to horizontal scroll */
  /* Desktop layout */
}
@media (min-width: 769px) {
  .footer {
    padding: 60px 0 32px;
  }
}
.footer .cards {
  position: relative;
  top: -90px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 60px;
  margin: 0 auto;
  width: fit-content;
}
.footer .card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  width: 316px;
  height: 467px;
  flex: 0 0 auto;
  cursor: pointer;
}
.footer .card:hover .card__text {
  color: #0C0D0D;
}
.footer .card:hover .card__title {
  text-decoration: underline;
}
.footer .card:hover .card__line {
  transform: scaleX(0.4);
  transition: all 0.3s ease-in-out;
}
.footer .card__image {
  width: 100%;
  height: auto;
  display: block;
}
.footer .card__content {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.footer .card__title {
  font-size: 16px;
  margin-bottom: 34px;
  color: #0C0D0D;
}
.footer .card__text {
  flex-grow: 1;
  font-size: 14px;
  line-height: 1.6;
  color: #848484;
  margin-bottom: 1.5rem;
}
.footer .card__bottom {
  display: flex;
  align-items: center;
  column-gap: 12px;
}
.footer .card__link {
  font-size: 0.9rem;
  font-weight: 500;
  text-decoration: none;
  color: #111;
  align-self: flex-start;
  padding-bottom: 2px;
}
.footer .card__line {
  background-color: #000000;
  width: 40px;
  height: 1px;
  transform-origin: right;
  transition: all 0.3s ease-in-out;
}
.footer__bambina {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.footer__top {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .footer__top {
    gap: unset;
  }
}
.footer__brand {
  width: 84px;
  height: 110px;
}
.footer__tagline {
  line-height: 1.6;
  color: #555;
}
@media screen and (max-width: 992px) {
  .footer__tagline {
    margin-bottom: 40px;
    text-align: center;
  }
}
.footer__social {
  display: flex;
  gap: 14px;
  font-size: 1.4rem;
}
.footer__social a {
  color: #333;
  transition: color 0.2s;
}
.footer__social a:hover {
  color: #666;
}
.footer__social .fa-instagram {
  margin-right: 12px;
}
.footer__links {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 44px;
}
@media screen and (max-width: 992px) {
  .footer__links {
    margin-top: 60px;
    margin-bottom: 80px;
  }
}
.footer__links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer__links ul li {
  margin-bottom: 16px;
}
.footer__links ul li a {
  text-decoration: none;
  color: #333;
  transition: color 0.2s;
}
.footer__links ul li a:hover {
  color: #666;
}
.footer__sdgs {
  width: 190px;
  height: 28px;
  mix-blend-mode: multiply;
}
.footer__bottom {
  margin-top: 80px;
}
.footer__bottom .footer__company {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 60px;
  text-align: center;
}
.footer__bottom .footer__copy {
  font-size: 0.75rem;
  color: #999;
  text-align: center;
}
@media (max-width: 1150px) {
  .footer .cards {
    gap: 10px;
  }
  .footer__bambina {
    display: flex;
    flex-direction: column;
    row-gap: 24px;
  }
}
@media (max-width: 1024px) {
  .footer .cards {
    overflow-x: auto;
    /* smooth scrolling on IPhones */
    -webkit-overflow-scrolling: touch;
    /* Hide scrollbar for IE & Edge */
    -ms-overflow-style: none;
    /* Hide scrollbar for Firefox */
    scrollbar-width: none;
    /* Hide scrollbar for Chrome Safari & Opera */
    width: unset;
    padding: 2rem;
  }
  .footer .cards::-webkit-scrollbar {
    display: none;
  }
  .footer .card {
    width: 316px;
    height: 467px;
  }
}
@media (min-width: 993px) {
  .footer {
    text-align: left;
  }
  .footer__top {
    flex-direction: row;
    align-items: flex-start;
    gap: unset;
    width: fit-content;
    margin: 0 auto;
  }
  .footer__brand {
    margin-right: 41px;
  }
  .footer__url {
    order: 3;
  }
  .footer__social {
    justify-content: flex-end;
  }
  .footer__tagline {
    margin-right: 89px;
  }
  .footer__links {
    order: 2;
    justify-content: center;
    margin-right: 130px;
    column-gap: 74px;
  }
  .footer__sdgs {
    width: 190px;
    height: 28px;
    margin-top: 76px;
  }
  .footer__bottom {
    text-align: left;
    margin: 40px auto 0;
    width: 954px;
  }
  .footer__bottom .footer__company {
    font-size: 13px;
  }
}
@media (min-width: 1150px) {
  .footer__bottom {
    width: 1068px;
  }
}

.test {
  height: 100vh;
}

.breadcrumb-list {
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 14px;
  color: #9fa2ad;
  width: 100%;
}
@media screen and (max-width: 992px) {
  .breadcrumb-list {
    margin-top: 16px;
    font-size: 11px;
    margin-bottom: unset;
    padding-bottom: 2px;
  }
}
.breadcrumb-list a {
  text-decoration: none;
  color: #9fa2ad;
}
.breadcrumb-list a:hover {
  color: #18191C;
  text-decoration: underline;
}
.breadcrumb-list-text {
  display: inline-block;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 992px) {
  .breadcrumb-list-text {
    max-width: 100px;
  }
}
.breadcrumb-list-text:last-child {
  color: #18191C;
}
.breadcrumb-list .separator {
  display: inline-block;
  pointer-events: none;
  cursor: none;
  overflow: hidden;
  margin: 0 2px;
}

.mb-24 {
  margin-bottom: 24px;
}

* {
  margin: 0;
  padding: 0;
}

body :target {
  scroll-margin-top: 100px;
}
body .about-page {
  margin-top: 60px;
  background-color: #FFFFFF;
  color: #0C0D0D;
  text-align: left;
  width: 100vw;
  height: auto;
  position: relative;
}
body .about-page main .breadcrumb-list {
  margin-top: 40px;
  font-size: 14px;
  width: 100%;
  margin-left: 100px;
  padding-left: 3%;
  color: #9B978D;
  background-color: transparent;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 6;
}
@media screen and (max-width: 1121px) {
  body .about-page main .breadcrumb-list {
    margin-top: 40px;
    margin-bottom: unset;
    margin-left: unset;
    padding-top: 3.5px;
    padding-left: calc(50px + 5%);
  }
}
@media screen and (max-width: 992px) {
  body .about-page main .breadcrumb-list {
    padding-left: 4.5%;
  }
}
body .about-page main .breadcrumb-list a {
  text-decoration: none;
  color: #7C766C;
}
body .about-page main .breadcrumb-list a:hover {
  color: #7C766C;
  text-decoration: underline;
}
body .about-page main .breadcrumb-list-text {
  display: inline-block;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1121px) {
  body .about-page main .breadcrumb-list-text {
    max-width: 100px;
  }
}
body .about-page main .breadcrumb-list-text:last-child {
  color: #5D5952;
}
body .about-page main .breadcrumb-list .separator {
  display: inline-block;
  pointer-events: none;
  cursor: none;
  overflow: hidden;
  margin: 0 2px;
}
body .about-page main .logo {
  width: 100vw;
  height: 366px;
  display: grid;
  place-items: center;
  background-color: #0C0D0D;
}
body .about-page main .logo img {
  width: 75px;
  height: 98px;
}
body .about-page main .about {
  width: 100vw;
}
body .about-page main .about .about-wrapper {
  display: flex;
  flex-direction: column;
  font-size: 14px;
  padding-top: 60px;
  padding-bottom: 55px;
}
@media (max-width: 680px) {
  body .about-page main .about .about-wrapper {
    font-size: 13px;
    max-width: 100%;
  }
}
body .about-page main .about .about-wrapper .container {
  margin-right: 60px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #DEDEDE;
  display: grid;
  grid-template-columns: 210px auto 119px;
  grid-template-rows: auto;
  grid-template-areas: "title details details";
}
body .about-page main .about .about-wrapper .container:last-of-type {
  border-bottom: unset;
}
@media (max-width: 992px) {
  body .about-page main .about .about-wrapper .container {
    grid-template-columns: 180px auto 119px;
    margin-right: unset;
  }
}
@media (max-width: 680px) {
  body .about-page main .about .about-wrapper .container {
    margin-right: unset;
    padding: 0 17px 0 16px;
    grid-template-columns: 110px auto 69px;
    grid-template-areas: "title details details";
  }
}
body .about-page main .about .about-wrapper .container .title {
  grid-area: title;
  color: #66B47F;
  padding: 24px 0;
}
body .about-page main .about .about-wrapper .container .CA_title__en {
  white-space: nowrap;
}
body .about-page main .about .about-wrapper .container .details {
  grid-area: details;
  padding: 24px 0;
  margin: unset;
  width: unset;
}
body .about-page main .about .about-wrapper .company-name {
  grid-template-columns: 210px auto 119px auto;
  grid-template-areas: "title details img .";
}
@media (max-width: 992px) {
  body .about-page main .about .about-wrapper .company-name {
    grid-template-columns: 180px auto 119px;
  }
}
@media (max-width: 680px) {
  body .about-page main .about .about-wrapper .company-name {
    grid-template-columns: 110px auto 112px auto;
    grid-template-areas: "title details img .";
  }
}
body .about-page main .about .about-wrapper .company-name .company-name-img {
  grid-area: img;
  width: 119px;
  height: 86px;
  margin-bottom: 15px;
}
@media (max-width: 680px) {
  body .about-page main .about .about-wrapper .company-name .company-name-img {
    width: 96px;
    height: 69px;
    margin-left: 16px;
  }
}
body .about-page main .about .about-wrapper .certification-and-affiliation {
  border-bottom: unset;
}
body .about-page main .representative-director-profile {
  width: 100vw;
  height: auto;
  background-color: #F5F8F5;
  padding-top: 79px;
  padding-bottom: 80px;
}
body .about-page main .representative-director-profile .representative-director-profile-wrapper {
  width: calc(100% - 33px);
  display: grid;
  grid-template-columns: 315px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "title title" "summary details";
}
@media (max-width: 680px) {
  body .about-page main .representative-director-profile .representative-director-profile-wrapper {
    margin-left: 16px;
    margin-right: 17px;
    grid-template-columns: auto;
    grid-template-rows: 51px max-content auto;
    grid-template-areas: "title" "summary" "details";
  }
}
body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-title {
  grid-area: title;
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 40px;
}
@media (max-width: 680px) {
  body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-title {
    font-size: 20px;
    padding-bottom: 23px;
  }
}
body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary {
  grid-area: summary;
  font-size: 16px;
}
body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary .profile-img {
  width: 292px;
  height: auto;
}
@media (max-width: 680px) {
  body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary .profile-img {
    width: 254px;
  }
}
body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary .profile-name {
  font-size: 32px;
  padding-top: 14px;
  padding-bottom: 24px;
}
@media (max-width: 680px) {
  body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary .profile-name {
    font-size: 24px;
    padding-top: 17px;
    padding-bottom: 18px;
  }
}
body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary .profile-name span {
  font-size: 16px;
}
@media (max-width: 680px) {
  body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary .profile-name span {
    font-size: 14px;
  }
}
body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary .profile-role-1 {
  padding-bottom: 6px;
}
@media (max-width: 680px) {
  body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-summary .profile-role-1 {
    padding-bottom: 8px;
  }
}
body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-details {
  grid-area: details;
  font-size: 14px;
  display: block;
}
@media (max-width: 680px) {
  body .about-page main .representative-director-profile .representative-director-profile-wrapper .profile-details {
    font-size: 13px;
    padding-top: 24px;
  }
}
body .about-page main .activity .activity-wrapper {
  margin-top: 80px;
  margin-bottom: 200px;
  padding-right: 75px;
}
@media (max-width: 680px) {
  body .about-page main .activity .activity-wrapper {
    margin-left: 16px;
    margin-right: 17px;
    padding-right: unset;
  }
}
body .about-page main .activity .activity-wrapper .activity-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 40px;
}
@media (max-width: 680px) {
  body .about-page main .activity .activity-wrapper .activity-title {
    font-size: 20px;
    margin-bottom: 23px;
  }
}
body .about-page main .activity .activity-wrapper .activity-container {
  display: grid;
  grid-template-columns: 240px 1fr;
  grid-template-rows: 47% 53%;
  grid-template-areas: "img title" "img details";
}
@media (max-width: 680px) {
  body .about-page main .activity .activity-wrapper .activity-container {
    grid-template-columns: calc(100% - 33px);
    grid-template-rows: 176px auto auto;
    grid-template-areas: "img" "title" "details";
  }
}
body .about-page main .activity .activity-wrapper .activity-container img {
  grid-area: img;
  width: 204px;
  height: 204px;
  margin-bottom: 16px;
}
@media (max-width: 680px) {
  body .about-page main .activity .activity-wrapper .activity-container img {
    width: 160px;
    height: 160px;
  }
}
body .about-page main .activity .activity-wrapper .activity-container h3 {
  margin-bottom: 9px;
  color: #66B47F;
  font-size: 20px;
  grid-area: title;
  align-self: end;
  word-break: keep-all;
}
@media (max-width: 680px) {
  body .about-page main .activity .activity-wrapper .activity-container h3 {
    font-size: 18px;
    align-self: start;
  }
}
body .about-page main .activity .activity-wrapper .activity-container p {
  font-size: 14px;
  grid-area: details;
}
@media (max-width: 680px) {
  body .about-page main .activity .activity-wrapper .activity-container p {
    font-size: 13px;
    margin-bottom: 61px;
  }
}
body .about-page main .details {
  max-width: 795px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 680px) {
  body .about-page main .details {
    max-width: unset;
    margin: unset;
    padding: unset;
  }
}

.blogs-page {
  background-color: #FFFFFF;
  overflow: hidden;
  margin-top: 60px;
}
.blogs-page * {
  box-sizing: border-box;
}
.blogs-page .seperator {
  width: 100%;
  height: 1px;
  background-color: #131415;
  opacity: 0.15;
}
.blogs-page .seperator--1 {
  margin-top: 81px;
}
.blogs-page .top {
  margin-top: 20px;
  margin-bottom: 60px;
}
@media screen and (max-width: 992px) {
  .blogs-page .top {
    margin-top: 40px;
    margin-bottom: 28px;
  }
}
.blogs-page .top--title {
  font-size: 14px;
  color: #A0A0A0;
}
.blogs-page .top--subtitle {
  font-size: 20px;
  color: #66B47F;
}
.blogs-page .blogs--list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 16px;
  row-gap: 60px;
  list-style-type: none;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .blogs-page .blogs--list {
    grid-template-columns: repeat(2, 1fr);
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 575px) {
  .blogs-page .blogs--list {
    align-items: center;
    grid-template-columns: repeat(1, 1fr);
    row-gap: 20px;
  }
}
.blogs-page .blogs--list__block {
  position: relative;
}
.blogs-page .blogs--list__inner {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
@media screen and (max-width: 575px) {
  .blogs-page .blogs--list__inner {
    flex-direction: row;
    column-gap: 8px;
  }
}
.blogs-page .blogs--list__image {
  width: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 29/22;
}
@media screen and (max-width: 575px) {
  .blogs-page .blogs--list__image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
  }
}
.blogs-page .blogs--list__title {
  font-size: 18px;
  margin-bottom: 4px;
  -webkit-line-clamp: 1;
}
@media screen and (max-width: 992px) {
  .blogs-page .blogs--list__title {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 16px;
    -webkit-line-clamp: 2;
  }
}
.blogs-page .blogs--list__date {
  font-size: 12px;
  margin-bottom: 24px;
  color: #9D9992;
  display: inline-block;
}
@media screen and (max-width: 992px) {
  .blogs-page .blogs--list__date {
    font-size: 10px;
    margin-bottom: 6px;
  }
}
.blogs-page .blogs--list__description {
  font-size: 14px;
  color: #5D5952;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 992px) {
  .blogs-page .blogs--list__description {
    font-size: 12px;
  }
}
.blogs-page .padding-footer {
  padding-bottom: 160px;
}
@media screen and (max-width: 992px) {
  .blogs-page .padding-footer {
    padding-bottom: 150px;
  }
}

.contact-page {
  background-color: #F0F7F0;
  margin-top: 60px;
}
.contact-page .top {
  margin-top: 12px;
}
@media screen and (max-width: 992px) {
  .contact-page .top {
    margin-top: 40px;
  }
}
.contact-page .top--title {
  font-size: 14px;
  color: #A0A0A0;
}
.contact-page .top--subtitle {
  font-size: 20px;
  color: #66B47F;
}
.contact-page .form {
  display: grid;
  grid-template-areas: "form mail" "form send";
  grid-template-columns: 1fr 376px;
  margin-top: 32px;
  margin-bottom: 191px;
  column-gap: 16px;
}
@media screen and (max-width: 992px) {
  .contact-page .form {
    grid-template-areas: "mail" "form" "send";
    grid-template-columns: 1fr;
  }
}
.contact-page .form--container {
  position: relative;
  background-color: #FFFFFF;
  padding: 40px 24px;
  border-radius: 6px;
  grid-area: form;
}
@media screen and (max-width: 992px) {
  .contact-page .form--container {
    padding: 24px 16px;
    margin-top: 16px;
    margin-bottom: 24px;
  }
}
.contact-page .form--container form {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.contact-page .form--container .contact-items {
  display: grid;
  grid-template-columns: 140px 1fr;
  column-gap: 40px;
  row-gap: 10px;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .contact-items {
    grid-template-columns: 1fr 197px;
    row-gap: 0;
  }
}
.contact-page .form--container .label {
  font-size: 14px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .label {
    font-size: 13px;
    margin-bottom: 8px;
    grid-column: span 2;
  }
}
.contact-page .form--container .label .required {
  font-size: 14px;
  color: #F02D1D !important;
  font-family: "Noto Serif JP", serif;
  margin-left: 8px;
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .label .required {
    font-size: 13px;
    margin-left: 2px;
  }
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .field {
    margin-bottom: 16px;
    grid-column: span 2;
  }
}
.contact-page .form--container .field--text input {
  width: 100%;
  height: 40px;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 8px;
}
.contact-page .form--container .field--checkbox .wpcf7-checkbox {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
}
.contact-page .form--container .field--checkbox .wpcf7-checkbox .wpcf7-list-item {
  margin: unset;
  display: flex;
  align-items: center;
}
.contact-page .form--container .field--checkbox .wpcf7-checkbox input {
  appearance: none;
  /* remove default checkbox */
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #CECECE;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
  margin: 0 4px 0 0;
}
.contact-page .form--container .field--checkbox .wpcf7-checkbox input::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 4px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.contact-page .form--container .field--checkbox .wpcf7-checkbox input:checked {
  background-color: #0C0D0D;
  border-color: #0C0D0D;
}
.contact-page .form--container .field--area textarea {
  width: 100%;
  height: 200px;
  border: 1px solid #D0D0D0;
  border-radius: 4px;
  background-color: #FFFFFF;
  padding: 8px;
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .field--area textarea {
    width: 100%;
    height: 180px;
  }
}
.contact-page .form--container .desktop-block {
  display: block;
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .desktop-block {
    display: inline;
  }
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .mobile-block {
    display: block;
  }
}
.contact-page .form--container .annotation {
  font-size: 12px;
  margin-top: 2px;
}
.contact-page .form--container .submit {
  margin-top: 32px;
  position: relative;
  height: 50px;
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .submit {
    margin-top: 8px;
  }
}
.contact-page .form--container .submit::after {
  content: "";
  position: absolute;
  right: 28px;
  top: 52%;
  height: 1px;
  width: 40px;
  background-color: #FFFFFF;
}
.contact-page .form--container .submit input {
  color: white;
  width: 248px;
  height: 50px;
  border: unset;
  background-color: #0C0D0D;
  text-align: left;
  padding: 14px 29px;
  font-size: 14px;
  float: right;
  cursor: pointer;
  position: relative;
}
.contact-page .form--container .submit input:hover {
  background-color: #66B47F;
  border: 1px solid #66B47F;
}
.contact-page .form--container .wpcf7-response-output {
  position: absolute;
  margin: unset !important;
  right: 0;
  bottom: -31px;
  border: unset;
  padding: unset;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  .contact-page .form--container .wpcf7-response-output {
    bottom: -22px;
  }
}
.contact-page .form--notice {
  background-color: #E2EAE2;
  border-radius: 6px;
  padding: 24px 12px;
  font-size: 14px;
  height: fit-content;
}
.contact-page .form--notice.mail {
  grid-area: mail;
  align-self: start;
}
.contact-page .form--notice.send {
  grid-area: send;
  align-self: end;
}
.contact-page .form--notice .title {
  margin-bottom: 8px;
  font-weight: bold;
  color: #0C0D0D;
}
.contact-page .form--notice .description {
  color: #4B4E4E;
}

body .faq-page {
  background-color: #F5F5F5;
}
body .faq-page main .breadcrumb-list {
  margin-top: 100px;
  margin-bottom: 108px;
  font-size: 14px;
  color: #9fa2ad;
  width: 100%;
  margin-left: 100px;
  padding-left: 3%;
}
@media screen and (max-width: 992px) {
  body .faq-page main .breadcrumb-list {
    margin-top: 84px;
    margin-bottom: unset;
    margin-left: unset;
    padding-top: 3.5px;
    padding-bottom: 60px;
    padding-left: 4.5%;
  }
}
body .faq-page main .breadcrumb-list a {
  text-decoration: none;
  color: #9fa2ad;
}
body .faq-page main .breadcrumb-list a:hover {
  color: #18191C;
  text-decoration: underline;
}
body .faq-page main .breadcrumb-list-text {
  display: inline-block;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 992px) {
  body .faq-page main .breadcrumb-list-text {
    max-width: 100px;
  }
}
body .faq-page main .breadcrumb-list-text:last-child {
  color: #18191C;
}
body .faq-page main .breadcrumb-list .separator {
  display: inline-block;
  pointer-events: none;
  cursor: none;
  overflow: hidden;
  margin: 0 2px;
}
body .faq-page main .faq-wrapper {
  color: #0C0D0D;
  max-width: 660px;
  padding: 0 30px;
  margin: 0 auto 250px;
}
@media screen and (max-width: 992px) {
  body .faq-page main .faq-wrapper {
    margin: 0 auto 200px;
  }
}
@media screen and (max-width: 480px) {
  body .faq-page main .faq-wrapper {
    padding: 0 17px 0 16px;
  }
}
body .faq-page main .faq-wrapper .title {
  margin-bottom: 40px;
}
body .faq-page main .faq-wrapper .title h1 {
  font-size: 24px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
body .faq-page main .faq-wrapper .content-wrapper .faq {
  margin-bottom: 40px;
}
body .faq-page main .faq-wrapper .content-wrapper .faq .category-title {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 30px;
  margin-bottom: 31px;
}
body .faq-page main .faq-wrapper .content-wrapper .faq .category-title img {
  height: 30px;
  width: 30px;
  margin-right: 8px;
}
body .faq-page main .faq-wrapper .content-wrapper .faq .category-title h2 {
  font-size: 20px;
  font-weight: bold;
  font-family: "Noto Serif JP", serif;
}
body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 30px 24px 30px 30px;
  margin: 8px 0 0;
  border-radius: 6px;
  color: #0C0D0D;
  cursor: pointer;
  text-align: left;
  border-style: solid;
  border-radius: 6px;
  border-color: #FFFFFF;
  background-color: #FFFFFF;
  transition: 0.3s;
}
@media screen and (max-width: 992px) {
  body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-question {
    padding: 16px 16px 12px;
  }
}
body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-question h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}
@media screen and (max-width: 992px) {
  body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-question h3 {
    font-size: 18px;
  }
}
body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-question .accordion-icon {
  height: 40px;
  width: 40px;
  margin-left: 10px;
}
body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .active-question {
  color: #66B47F;
  border-radius: 6px 6px 0 0;
}
body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-answer {
  width: 100%;
  max-height: 0;
  padding: 0px 30px;
  background-color: #FFFFFF;
  border-radius: 0 0 6px 6px;
  text-align: left;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
@media screen and (max-width: 992px) {
  body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-answer {
    padding: 5px 16px 0 16px;
  }
}
body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-answer p {
  font-family: "Noto Serif JP", serif;
  margin-bottom: 30px;
  font-size: 14px;
}
@media screen and (max-width: 992px) {
  body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .accordion-answer p {
    font-size: 13px;
    margin-bottom: 17px;
  }
}
body .faq-page main .faq-wrapper .content-wrapper .faq .content .accordion-item .active-answer {
  max-height: 500px;
  border-radius: 0 0 6px 6px;
  border-color: #FFFFFF;
  text-align: left;
}

* {
  margin: 0;
  padding: 0;
}

body .story-page {
  padding: 0 0 150px;
  background-color: #FFFFFF;
  color: #0C0D0D;
  text-align: left;
  width: 100%;
}
@media screen and (max-width: 992px) {
  body .story-page {
    position: relative;
    padding: unset;
  }
}
body .story-page main .breadcrumb-list {
  margin-top: 100px;
  margin-bottom: 108px;
  font-size: 14px;
  color: #9fa2ad;
  width: 100%;
  margin-left: 100px;
  padding-left: 3%;
  z-index: 6;
}
@media screen and (max-width: 1121px) {
  body .story-page main .breadcrumb-list {
    margin-top: 70px;
    margin-bottom: unset;
    margin-left: unset;
    padding-top: 3.5px;
    padding-bottom: 60px;
    padding-left: calc(50px + 5%);
    position: absolute;
    top: 0;
    left: 0;
  }
}
@media screen and (max-width: 992px) {
  body .story-page main .breadcrumb-list {
    padding-left: 4.5%;
  }
}
body .story-page main .breadcrumb-list a {
  text-decoration: none;
  color: #9fa2ad;
}
body .story-page main .breadcrumb-list a:hover {
  color: #18191C;
  text-decoration: underline;
}
body .story-page main .breadcrumb-list-text {
  display: inline-block;
  max-width: 300px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1121px) {
  body .story-page main .breadcrumb-list-text {
    max-width: 100px;
  }
}
body .story-page main .breadcrumb-list-text:last-child {
  color: #18191C;
}
body .story-page main .breadcrumb-list .separator {
  display: inline-block;
  pointer-events: none;
  cursor: none;
  overflow: hidden;
  margin: 0 2px;
}
body .story-page main .top-wrapper {
  width: 100vw;
}
body .story-page main .top-wrapper .top {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
  margin: 0 auto 124px;
  padding: 0 30px;
  width: 1062px;
  height: auto;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top {
    align-items: center;
    flex-direction: column;
    margin: 0 0 172px;
    padding: 0;
    width: unset;
    height: unset;
  }
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top {
    margin: 0 0 32px;
  }
}
body .story-page main .top-wrapper .top .top-video {
  padding-right: 10%;
  position: relative;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-video {
    width: 100vw;
    height: auto;
    padding-right: unset;
    margin-top: 60px;
  }
}
body .story-page main .top-wrapper .top .top-video .triangle-top {
  display: none;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-video .triangle-top {
    margin-right: unset;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 4;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 100vw solid transparent;
    border-top: 10vw solid #FFFFFF;
  }
}
@media (max-width: 680px) {
  body .story-page main .top-wrapper .top .top-video .triangle-top {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 100vw solid transparent;
    border-top: 22vw solid #FFFFFF;
  }
}
body .story-page main .top-wrapper .top .top-video video {
  width: 382px;
  height: 573px;
  object-fit: cover;
  overflow: hidden;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-video video {
    width: 100vw;
    height: 600px;
  }
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top .top-video video {
    width: 100vw;
    height: 483px;
  }
}
body .story-page main .top-wrapper .top .top-video .triangle-bottom {
  display: none;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-video .triangle-bottom {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 4;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 100vw solid transparent;
    border-bottom: 4vw solid #FFFFFF;
  }
}
@media (max-width: 680px) {
  body .story-page main .top-wrapper .top .top-video .triangle-bottom {
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 0px solid transparent;
    border-right: 100vw solid transparent;
    border-bottom: 7vw solid #FFFFFF;
  }
}
body .story-page main .top-wrapper .top .top-video .rectangle-1 {
  position: absolute;
  top: 40px;
  left: 190px;
  z-index: 2;
  width: 224px;
  height: 363px;
  background-color: #66B47F;
  mix-blend-mode: soft-light;
  opacity: 1;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-video .rectangle-1 {
    top: 6%;
    left: 50%;
  }
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top .top-video .rectangle-1 {
    width: 300px;
    height: 400px;
  }
}
body .story-page main .top-wrapper .top .top-video .rectangle-2 {
  position: absolute;
  top: 268px;
  left: 53px;
  z-index: 2;
  width: 224px;
  height: 261px;
  background-color: #66B47F;
  mix-blend-mode: soft-light;
  opacity: 1;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-video .rectangle-2 {
    top: 60%;
    left: 10%;
  }
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top .top-video .rectangle-2 {
    width: 224px;
    height: 400px;
  }
}
body .story-page main .top-wrapper .top .top-content {
  margin: auto 0;
  width: 512px;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-content {
    width: 80%;
    margin: 100px 10% 0;
  }
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top .top-content {
    width: 100%;
    margin: 0 auto;
    padding: 6% 4%;
  }
}
body .story-page main .top-wrapper .top .top-content .top-title h1 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 8px;
  position: relative;
  width: 100%;
  word-break: keep-all;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-content .top-title h1 {
    margin-bottom: 12px;
  }
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top .top-content .top-title h1 {
    font-size: 27px;
  }
}
body .story-page main .top-wrapper .top .top-content .top-title h1::before {
  content: "";
  width: 150px;
  height: 1px;
  background-color: #66B47F;
  position: absolute;
  top: 24px;
  left: -160px;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-content .top-title h1::before {
    content: none;
  }
}
@media (max-width: 575px) {
  body .story-page main .top-wrapper .top .top-content .top-title .h1__en {
    font-size: 23px;
  }
}
body .story-page main .top-wrapper .top .top-content .top-title p {
  font-size: 22px;
  font-weight: bold;
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top .top-content .top-title p {
    font-size: 15px;
  }
}
body .story-page main .top-wrapper .top .top-content .top-description {
  margin-top: 50px;
}
@media (max-width: 1121px) {
  body .story-page main .top-wrapper .top .top-content .top-description {
    margin-top: 24px;
  }
}
body .story-page main .top-wrapper .top .top-content .top-description p {
  font-size: 14px;
  font-family: "Noto Sans JP";
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top .top-content .top-description p {
    font-size: 13px;
  }
}
body .story-page main .top-wrapper .top .top-content .top-description .attention {
  font-size: 18px;
  font-weight: bold;
  color: #66B47F;
}
@media (max-width: 992px) {
  body .story-page main .top-wrapper .top .top-content .top-description .attention {
    font-size: 13px;
  }
}
@media (max-width: 575px) {
  body .story-page main .top-wrapper .top .top-content .top-description .attention__en {
    white-space: nowrap;
  }
}
body .story-page main .five-reasons-wrapper {
  width: 100%;
}
@media (max-width: 992px) {
  body .story-page main .five-reasons-wrapper .five-reasons {
    padding-top: 140px;
  }
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-title h2 {
  font-size: 32px;
  font-weight: bold;
  word-break: keep-all;
}
@media (max-width: 992px) {
  body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-title h2 {
    font-size: 24px;
  }
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-title p {
  font-size: 16px;
  font-family: "Noto Sans JP";
  margin: 14px 0 13px;
}
@media (max-width: 992px) {
  body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-title p {
    margin: 12px 0 25px;
  }
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details {
  display: flex;
  padding-bottom: 57px;
}
@media (max-width: 992px) {
  body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details {
    flex-direction: column;
  }
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-img {
  width: 256px;
  height: 250px;
  margin-right: 5.3%;
}
@media (max-width: 992px) {
  body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-img {
    margin-right: unset;
    margin-left: calc(30px + 1%);
    margin-bottom: 50px;
  }
}
@media (max-width: 575px) {
  body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-img {
    margin-right: auto;
    margin-left: auto;
  }
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents {
  font-family: "Noto Sans JP";
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents .reason {
  max-width: 555px;
  margin-bottom: 16px;
  display: grid;
  grid-template-columns: 105px 1fr;
  grid-template-rows: auto auto;
  grid-template-areas: "img title" "img details";
}
@media (max-width: 992px) {
  body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents .reason {
    max-width: unset;
    width: 100%;
    grid-template-columns: 60px 1fr;
    grid-template-rows: auto auto;
    grid-template-areas: "img title" "details details";
  }
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents .reason .reason-img {
  width: 80px;
  height: 80px;
  margin-right: 25px;
  grid-area: img;
}
@media (max-width: 992px) {
  body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents .reason .reason-img {
    width: 50px;
    height: 50px;
  }
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents .reason .reason-title {
  font-size: 20px;
  font-weight: bold;
  color: #66B47F;
  word-break: keep-all;
  grid-area: title;
  align-self: center;
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents .reason .reason-details {
  font-size: 14px;
  margin-top: 9px;
  grid-area: details;
}
@media (max-width: 992px) {
  body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents .reason .reason-details {
    font-size: 13px;
    margin-bottom: 16px;
  }
}
body .story-page main .five-reasons-wrapper .five-reasons .five-reasons-details .five-reasons-contents .reason .reason-details__en {
  white-space: nowrap;
}
body .story-page main .history-wrapper {
  width: 100%;
  background-color: #F5F8F5;
  padding: 80px 0;
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper {
    background-color: #F0F7F0;
  }
}
body .story-page main .history-wrapper .history .history-title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 70px;
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-title {
    font-size: 24px;
  }
}
body .story-page main .history-wrapper .history .history-details .period-wrapper {
  margin-bottom: 16px;
  border-radius: 6px;
  display: grid;
  grid-template-areas: "period title" "period details";
  grid-template-columns: 210px 1fr;
  grid-template-rows: auto auto;
}
@media (max-width: 1121px) {
  body .story-page main .history-wrapper .history .history-details .period-wrapper {
    grid-template-columns: 180px 1fr;
  }
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period-wrapper {
    background-color: #FFFFFF;
    grid-template-columns: 150px 1fr;
  }
}
@media (max-width: 840px) {
  body .story-page main .history-wrapper .history .history-details .period-wrapper {
    background-color: #FFFFFF;
    grid-template-areas: "period title" "details details";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
  }
}
body .story-page main .history-wrapper .history .history-details .period-wrapper .priod {
  grid-area: period;
  padding-top: 16px;
  text-align: left;
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period-wrapper .priod {
    padding-top: 22px;
  }
}
body .story-page main .history-wrapper .history .history-details .period-wrapper .priod p {
  font-family: "Economica", sans-serif;
  font-size: 32px;
  color: #66B47F;
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period-wrapper .priod p {
    font-size: 24px;
  }
}
body .story-page main .history-wrapper .history .history-details .period-wrapper .priod p span {
  font-weight: bold;
  font-size: 20px;
}
body .story-page main .history-wrapper .history .history-details .period-wrapper .period-title {
  font-size: 22px;
  padding: 16px 13px 16px 30px;
  grid-area: title;
  background-color: #FFFFFF;
  border-radius: 6px 6px 0 0;
}
body .story-page main .history-wrapper .history .history-details .period-wrapper .period-title__2 {
  grid-area: title2;
  margin-top: 16px;
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period-wrapper .period-title__2 {
    margin-top: unset;
  }
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period-wrapper .period-title {
    background-color: unset;
    padding: 20px 10px 20px 8px;
    word-break: keep-all;
  }
}
body .story-page main .history-wrapper .history .history-details .period-wrapper .period-details {
  font-size: 14px;
  font-family: "Noto Sans JP";
  padding: 0 13px 16px 30px;
  color: #727272;
  grid-area: details;
  background-color: #FFFFFF;
  border-radius: 0 0 6px 6px;
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period-wrapper .period-details {
    font-size: 13px;
    background-color: unset;
    padding: 0 13px 20px 14px;
  }
}
body .story-page main .history-wrapper .history .history-details .period-wrapper .period-details__2 {
  grid-area: details2;
}
body .story-page main .history-wrapper .history .history-details .period-wrapper .period-details span {
  color: #0C0D0D;
}
body .story-page main .history-wrapper .history .history-details .period2023 {
  grid-template-areas: "period title" "period details" "period title2" "period details2";
}
@media (max-width: 840px) {
  body .story-page main .history-wrapper .history .history-details .period2023 {
    grid-template-areas: "period period" "title title" "details details" "title2 title2" "details2 details2";
  }
}
body .story-page main .history-wrapper .history .history-details .period2013 {
  grid-template-areas: "period title" "period details" "period img-wrapper";
  grid-template-columns: 210px 1fr;
  grid-template-rows: auto auto auto;
}
@media (max-width: 1121px) {
  body .story-page main .history-wrapper .history .history-details .period2013 {
    grid-template-columns: 180px 1fr;
  }
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period2013 {
    background-color: #FFFFFF;
    grid-template-columns: 150px 1fr auto;
  }
}
@media (max-width: 840px) {
  body .story-page main .history-wrapper .history .history-details .period2013 {
    background-color: #FFFFFF;
    grid-template-areas: "period title" "details details" "img-wrapper img-wrapper";
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto auto;
  }
}
body .story-page main .history-wrapper .history .history-details .period2013 .details {
  border-radius: 0;
}
body .story-page main .history-wrapper .history .history-details .period2013 .img-wrapper {
  grid-area: img-wrapper;
  background-color: #FFFFFF;
  border-radius: 0 0 6px 6px;
  display: flex;
  padding: 0 30px 16px;
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period2013 .img-wrapper {
    padding: 0 13px 20px 14px;
  }
}
body .story-page main .history-wrapper .history .history-details .period2013 .img-wrapper .img-container {
  display: flex;
  flex-direction: column;
}
body .story-page main .history-wrapper .history .history-details .period2013 .img-wrapper .img-container img {
  width: 146px;
  height: 114px;
}
body .story-page main .history-wrapper .history .history-details .period2013 .img-wrapper .img-container p {
  font-size: 13px;
  color: #727272;
}
body .story-page main .history-wrapper .history .history-details .period2013 .img-wrapper .img1 {
  margin-right: 7px;
}
body .story-page main .history-wrapper .history .history-details .period201911 {
  display: grid;
  grid-template-areas: "period title img" "period details img";
  grid-template-columns: 210px 1fr 190px;
  grid-template-rows: auto auto;
}
@media (max-width: 1121px) {
  body .story-page main .history-wrapper .history .history-details .period201911 {
    grid-template-columns: 180px 1fr;
  }
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period201911 {
    background-color: #FFFFFF;
    grid-template-columns: 150px 1fr 182px;
  }
}
@media (max-width: 840px) {
  body .story-page main .history-wrapper .history .history-details .period201911 {
    grid-template-areas: "period title img" "details details img";
    grid-template-columns: 90px 1fr 182px;
  }
}
@media (max-width: 680px) {
  body .story-page main .history-wrapper .history .history-details .period201911 {
    grid-template-areas: "period title title" "details details img";
    grid-template-columns: 90px 1fr 95px;
  }
}
@media (max-width: 840px) {
  body .story-page main .history-wrapper .history .history-details .period201911 .period-title {
    padding: 20px 10px 20px 8px;
  }
}
body .story-page main .history-wrapper .history .history-details .period201911 .period-details .p2 {
  color: #66B47F;
  font-size: 14px;
  padding: 16px 0 6px 0;
}
@media (max-width: 840px) {
  body .story-page main .history-wrapper .history .history-details .period201911 .period-details .p2 {
    padding: 24px 0 8px 0;
  }
}
body .story-page main .history-wrapper .history .history-details .period201911 .period-details .p3 {
  font-size: 12px;
}
@media (max-width: 840px) {
  body .story-page main .history-wrapper .history .history-details .period201911 .period-details .p3 {
    font-size: 13px;
  }
}
body .story-page main .history-wrapper .history .history-details .period201911 .img-period201911-wrapper {
  background-color: #FFFFFF;
  grid-area: img;
  display: flex;
  justify-self: right;
}
body .story-page main .history-wrapper .history .history-details .period201911 .img-period201911-wrapper img {
  width: 162px;
  height: 127px;
  margin: 16px 15px;
  object-fit: cover;
}
@media (max-width: 992px) {
  body .story-page main .history-wrapper .history .history-details .period201911 .img-period201911-wrapper img {
    margin: 16px 15px 16px 5px;
  }
}
@media (max-width: 840px) {
  body .story-page main .history-wrapper .history .history-details .period201911 .img-period201911-wrapper img {
    margin: 20px 15px 16px;
  }
}
@media (max-width: 680px) {
  body .story-page main .history-wrapper .history .history-details .period201911 .img-period201911-wrapper img {
    width: 70px;
    height: 88px;
    margin: auto 25px 20px 0;
  }
}
body .story-page main .works-wrapper {
  width: 100%;
  padding: 80px 0;
}
@media (max-width: 992px) {
  body .story-page main .works-wrapper {
    background-color: #F0F7F0;
  }
}
body .story-page main .works-wrapper .works {
  display: grid;
  grid-template-columns: 426px 1fr;
}
@media (max-width: 992px) {
  body .story-page main .works-wrapper .works {
    width: 779px;
    grid-template-columns: 350px auto;
  }
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works {
    width: 100%;
    grid-template-columns: unset;
    grid-template-rows: auto 1fr;
  }
}
body .story-page main .works-wrapper .works .works-text {
  display: grid;
  grid-template-rows: 1fr 65%;
  max-height: auto;
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text {
    grid-template-rows: unset;
    grid-template-rows: 67px 1fr;
    font-size: 24px;
    text-align: center;
  }
}
body .story-page main .works-wrapper .works .works-text h2 {
  font-size: 32px;
  font-weight: bold;
  word-break: keep-all;
}
@media (max-width: 992px) {
  body .story-page main .works-wrapper .works .works-text h2 {
    font-size: 24px;
    margin-right: 10px;
  }
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text h2 {
    text-align: center;
  }
}
body .story-page main .works-wrapper .works .works-text .h2__en {
  word-break: unset;
  margin-bottom: 32px;
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text .h2__en {
    white-space: unset;
  }
}
body .story-page main .works-wrapper .works .works-text .works-text-details {
  display: flex;
  align-items: center;
  margin-right: 2%;
  align-self: start;
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text .works-text-details {
    flex-direction: column;
    text-align: center;
    margin-right: unset;
  }
}
body .story-page main .works-wrapper .works .works-text .works-text-details p {
  font-size: 18px;
  margin-right: 8%;
  word-break: keep-all;
  position: relative;
  z-index: 1;
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text .works-text-details p {
    margin-right: unset;
  }
}
body .story-page main .works-wrapper .works .works-text .works-text-details p span {
  display: block;
  background-color: #D0EDD9;
  position: absolute;
  top: 15px;
  left: -5px;
  z-index: -1;
  width: 216px;
  height: 12px;
}
body .story-page main .works-wrapper .works .works-text .works-text-details p .span__en {
  width: 208px;
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text .works-text-details p .span__en {
    left: 6px;
  }
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text .works-text-details .arrow-img {
    height: 88px;
  }
}
body .story-page main .works-wrapper .works .works-text .works-text-details .arrow-img img {
  width: 14%;
  height: auto;
}
@media (max-width: 992px) {
  body .story-page main .works-wrapper .works .works-text .works-text-details .arrow-img img {
    width: 13%;
    height: auto;
  }
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text .works-text-details .arrow-img img {
    transform-origin: 0 50%;
    transform: rotate(90deg);
    width: auto;
    height: 24px;
    margin-left: 48px;
  }
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-text__en {
    grid-template-rows: unset;
    grid-template-rows: auto 1fr;
    font-size: 24px;
    text-align: center;
  }
}
body .story-page main .works-wrapper .works .works-img {
  width: 100%;
  height: auto;
}
@media (max-width: 840px) {
  body .story-page main .works-wrapper .works .works-img {
    display: flex;
    justify-content: center;
  }
}
body .story-page main .works-wrapper .works .works-img img {
  width: 450px;
  height: auto;
}
@media (max-width: 992px) {
  body .story-page main .works-wrapper .works .works-img img {
    width: unset;
    max-width: 342px;
    height: auto;
  }
}
body .story-page main .research-and-development-wrapper {
  width: 100vw;
}
@media (max-width: 992px) {
  body .story-page main .research-and-development-wrapper {
    background-color: #F0F7F0;
    padding-bottom: 150px;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development h2 {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}
@media (max-width: 992px) {
  body .story-page main .research-and-development-wrapper .research-and-development h2 {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content {
  display: grid;
  grid-template-columns: 360px 90px 452px;
  font-family: "Noto Sans JP";
  font-size: 14px;
  grid-template-areas: "summary . details";
}
@media (max-width: 992px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content {
    grid-template-columns: 315px auto 443px;
  }
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content {
    grid-template-columns: 1fr;
    grid-template-rows: 160px 1fr;
    grid-template-areas: "summary" "details";
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary {
  display: flex;
  align-items: center;
  align-self: start;
  grid-area: summary;
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary img {
  width: 135px;
  height: 184px;
  margin-right: 16px;
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary img {
    width: 100px;
    height: auto;
  }
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary .researcher-summary-text {
    height: 136px;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary .researcher-summary-text .name {
  margin: 24px 0;
  font-size: 18px;
  word-break: keep-all;
  width: 100%;
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary .researcher-summary-text .name {
    font-size: 14px;
    margin: 18px 0;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary .researcher-summary-text .name .hukagawa {
  font-size: 30px;
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary .researcher-summary-text .name .hukagawa {
    font-size: 24px;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary .researcher-summary-text .name .pro {
  word-break: keep-all;
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary__en {
  display: grid;
  grid-template-columns: auto 1fr;
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary__en img {
  align-self: start;
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary__en .researcher-summary-text {
    height: unset;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary__en .researcher-summary-text .name .hukagawa__en {
  font-size: 20px;
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary__en .researcher-summary-text .name .pro__en {
  font-size: 16px;
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-summary__en .researcher-summary-text .name__en {
  margin: 16px 0;
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details {
  align-self: start;
  grid-area: details;
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details {
    font-size: 13px;
    margin-top: 24px;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content {
  display: grid;
  grid-template-columns: 88px 364px;
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content {
    grid-template-columns: 65px 1fr;
    grid-template-areas: "item details";
    column-gap: 16px;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content .item {
  color: #66B47F;
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content .item {
    grid-area: item;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content .content {
  margin-bottom: 12px;
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content .content {
    grid-area: details;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content__en {
  grid-template-columns: 140px auto;
}
@media (max-width: 992px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content__en {
    grid-template-columns: 100px 1fr;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content .researcher-details .researcher-details-content__en p {
  margin-bottom: 14px;
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content__en {
  font-size: 13px;
  grid-template-columns: 390px auto 452px;
}
@media (max-width: 992px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content__en {
    grid-template-columns: 360px 2vw 1fr;
  }
}
@media (max-width: 840px) {
  body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content__en {
    grid-template-columns: unset;
    grid-template-rows: auto 1fr;
  }
}
body .story-page main .research-and-development-wrapper .research-and-development .research-and-development-content__en .p__en {
  margin-bottom: 12px;
}
body .details {
  width: 943px;
  margin: 0 auto;
  padding: 0 30px;
}
@media (max-width: 992px) {
  body .details {
    width: 100%;
    padding: 6% 5%;
  }
}
@media (max-width: 680px) {
  body .details {
    padding: 0 16px 0 17px;
  }
}

.blog-single {
  background-color: #FFFFFF;
  overflow: hidden;
  margin-top: 60px;
}
.blog-single .wrapper {
  max-width: 964px;
}
.blog-single .breadcrumb-list {
  max-width: 1160px;
}
.blog-single p {
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  line-height: 24px;
  color: #2C2923;
}
.blog-single .title {
  font-size: 50px;
}
@media screen and (max-width: 992px) {
  .blog-single .title {
    font-size: 24px;
    line-height: 24px;
  }
}
.blog-single .date {
  font-size: 12px;
  display: inline-block;
  margin: 17px 0;
}
.blog-single .thumbnail {
  width: 100%;
  max-height: 695px;
  object-fit: cover;
  margin-bottom: 12px;
  aspect-ratio: 29/22;
}
.blog-single .navigation {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  margin-top: 32px;
  margin-bottom: 51px;
}
@media screen and (max-width: 992px) {
  .blog-single .navigation {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.blog-single .navigation--inner {
  display: flex;
  column-gap: 4px;
}
.blog-single .navigation a {
  width: 160px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 1;
}
.blog-single .navigation a:hover {
  text-decoration: underline;
}
@media screen and (max-width: 992px) {
  .blog-single .navigation a {
    width: 91px;
  }
}
.blog-single .engagement {
  display: flex;
  column-gap: 8px;
  row-gap: 4px;
  flex-wrap: wrap;
  align-items: center;
}
.blog-single .engagement .fb-share-button {
  transform: translateY(-2px);
}
.blog-single .engagement .copy-btn {
  height: 20px;
  border-radius: 4px;
  border: 1px solid #DDDBD8;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2px;
  background-color: #FFFFFF;
  padding: 0 4px;
}
.blog-single .engagement .copy-btn__text {
  font-size: 11px;
  color: #131415;
}
.blog-single .engagement .copy-btn__icon {
  width: 10px;
  height: 10px;
}
.blog-single .categories {
  display: grid;
  row-gap: 12px;
  margin-bottom: 160px;
}
@media screen and (max-width: 992px) {
  .blog-single .categories {
    margin-top: 32px;
  }
}
.blog-single .categories--title {
  font-size: 30px;
  margin-bottom: 16px;
  color: #5D5952;
}
.blog-single .categories--link {
  display: flex;
  width: 333px;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 575px) {
  .blog-single .categories--link {
    width: 100%;
  }
}
.blog-single .categories--link .text {
  font-size: 14px;
  font-family: "Noto Serif JP", serif;
  line-height: 20px;
  color: #5D5952;
  letter-spacing: 1px;
}
.blog-single .content {
  margin-top: 42px;
  margin-bottom: 80px;
}
@media screen and (max-width: 992px) {
  .blog-single .content {
    margin-top: 24px;
    margin-bottom: 24px;
  }
}
.blog-single .wpulike {
  padding: unset;
  height: 20px;
  display: flex;
  align-items: center;
}
.blog-single .wp_ulike_general_class {
  background-color: #1877E5;
  box-shadow: unset !important;
  height: 20px;
}
.blog-single .wp_ulike_general_class .wp_ulike_btn {
  width: 44px;
  height: 16px;
}
.blog-single .wp_ulike_general_class .wp_ulike_put_image::after {
  width: 44px;
  height: 16px;
}
.blog-single .wp_ulike_general_class .wp_ulike_btn_is_active::after {
  filter: unset !important;
}
.blog-single .wp_ulike_general_class .count-box {
  color: white;
  font-size: 9px !important;
  transform: translateY(1px);
}
.blog-single .tooltip {
  position: relative;
  display: inline-block;
}
.blog-single .tooltip:hover .tooltiptext {
  visibility: visible;
  opacity: 1;
}
.blog-single .tooltip .tooltiptext {
  visibility: hidden;
  width: 103px;
  background-color: #555;
  color: #fff;
  text-align: center;
  border-radius: 6px;
  padding: 5px;
  position: absolute;
  z-index: 1;
  bottom: 135%;
  left: 50%;
  margin-left: -50px;
  opacity: 0;
  transition: opacity 0.3s;
  font-size: 12px;
}
.blog-single .tooltip .tooltiptext::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #555 transparent transparent transparent;
}

/*# sourceMappingURL=style.css.map */
