@charset "utf-8";
/* *************************************
hamburger
************************************* */
.hamburger {
  width: fit-content;
  text-align: center;
}

@media (any-hover: hover) {
  .hamburger:hover {
    cursor: pointer;
  }
}

.hamburger__btn {
  padding: calc(8 * var(--rem));
}

.hamburger__btn span {
  display: block;
  width: calc(32 * var(--rem));
  height: calc(2 * var(--rem));
  background-color: var(--black);
  transition: 0.3s ease;
}

.hamburger__btn span:nth-child(2) {
  margin: calc(8 * var(--rem)) 0;
}

/* is-open */
.hamburger.is-open .hamburger__btn span:nth-child(1) {
  transform: translateY(calc(10 * var(--rem))) rotate(45deg);
}
.hamburger.is-open .hamburger__btn span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open .hamburger__btn span:nth-child(3) {
  transform: translateY(calc(-10 * var(--rem))) rotate(-45deg);
}

.hamburger__menu,
.hamburger__close {
  text-transform: uppercase;
  font-size: calc(12 * var(--rem));
  font-weight: bold;
  font-family: var(--jp);
  line-height: 1;
}

.hamburger.is-open .hamburger__menu {
  display: none;
}

.hamburger__close {
  display: none;
}

.hamburger.is-open .hamburger__close {
  display: block;
}

/* *************************************
lead-text
************************************* */
.lead-text {
  text-align: center;
  font-size: calc(18 * var(--rem));
  line-height: 1.8;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    text-align: left;
  }
}

/* *************************************
btn1
************************************* */
.btn1 {
  min-width: calc(400 * var(--rem));
  display: inline-flex;
  justify-content: center;
  gap: calc(16 * var(--rem));
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  font-size: calc(22 * var(--rem));
  padding: calc(22 * var(--rem)) calc(30 * var(--rem));
  clip-path: polygon(5% 0, 95% 0, 100% 50%, 95% 100%, 5% 100%, 0% 50%);
  @media (width < 768px) {
    min-width: calc(280 * var(--rem));
    font-size: calc(18 * var(--rem));
    padding: calc(18 * var(--rem)) calc(10 * var(--rem));
    gap: calc(10 * var(--rem));
  }
}

.btn1::before {
  content: '';
  display: block;
  width: calc(14 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/btn-arrow-w.svg) no-repeat center / contain;
  @media (width < 768px) {
    width: calc(12 * var(--rem));
  }
}

/* 白 */
.btn1[date-modi='white'] {
  background-color: var(--white);
  color: var(--green);
}

.btn1[date-modi='white']::before {
  background: url(../../library/images/common/btn-arrow-g.svg) no-repeat center / contain;
}

/* 透明 */
.btn1[date-modi='small'] {
  min-width: calc(200 * var(--rem));
  padding-block: calc(14 * var(--rem));
  background-color: var(--border);
  position: relative;
  z-index: 0;
  border: none;
  color: var(--text);
  font-size: calc(16 * var(--rem));
}

.btn1[date-modi='small']::after {
  content: '';
  position: absolute;
  top: calc(2 * var(--rem));
  right: calc(2 * var(--rem));
  bottom: calc(2 * var(--rem));
  left: calc(2 * var(--rem));
  background-color: var(--white);
  clip-path: inherit;
  z-index: -1;
}

.btn1[date-modi='small']::before {
  position: relative;
  z-index: 1;
  background: url(../../library/images/common/btn-arrow-g.svg) no-repeat center / contain;
}

/* *************************************
contact-btn
************************************* */
.contact-btn {
  display: inline-flex;
  min-width: calc(524 * var(--rem));
  background-color: var(--green);
  padding: calc(35 * var(--rem)) calc(50 * var(--rem));
  gap: calc(5 * var(--rem));
  @media (width < 768px) {
    min-width: calc(280 * var(--rem));
    padding: calc(20 * var(--rem));
  }
}

.contact-btn__icon {
  width: calc(40 * var(--rem));
  @media (width < 768px) {
    width: calc(30 * var(--rem));
  }
}

.contact-btn__icon img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-btn__text {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  text-align: center;
  color: var(--white);
  font-size: calc(20 * var(--rem));
  font-weight: 500;
  line-height: 1;
  gap: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    gap: calc(6 * var(--rem));
  }
}

.contact-btn__text::before {
  content: '';
  display: block;
  width: calc(14 * var(--rem));
  width: 0.8lh;
  aspect-ratio: 1;
  background: url(../../library/images/common/btn-arrow-w.svg) no-repeat center / contain;
  @media (width < 768px) {
    margin-block-start: calc(2 * var(--rem));
  }
}

/* *************************************
icon-btn
************************************* */
.icon-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: calc(8 * var(--rem));
  min-width: calc(200 * var(--rem));
  background-color: var(--green);
  font-size: calc(16 * var(--rem));
  color: var(--white);
  padding: calc(8 * var(--rem)) calc(16 * var(--rem));
}

.icon-btn::after {
  content: '';
  display: block;
  width: calc(14 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/link.svg) no-repeat center / contain;
  @media (width < 768px) {
    width: calc(12 * var(--rem));
  }
}

.icon-btn[date-color="blue"] {
   background-color: var(--izu-kenki);
}

/* *************************************
to-top
************************************* */
.to-top {
  display: inline-block;
  width: calc(70 * var(--rem));
  aspect-ratio: 1;
  @media (width < 768px) {
    width: calc(60 * var(--rem));
  }
}

.to-top img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* *************************************
instagram-link
************************************* */
.instagram-link {
  display: inline-flex;
  align-items: center;
  gap: calc(6 * var(--rem));
  font-size: calc(16 * var(--rem));
  font-weight: 800;
  color: var(--green);
}

.instagram-link::after {
  content: '';
  display: block;
  width: calc(40 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/instagram.svg) no-repeat center / contain;
  @media (width < 768px) {
    width: calc(30 * var(--rem));
  }
}

/* *************************************
instagram-list
************************************* */
.instagram-list {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16 * var(--rem));
}

/* *************************************
link-title
************************************* */
.link-title a {
  display: block;
  font-size: calc(16 * var(--rem));
  line-height: 1;
  border-left: 4px solid var(--green);
  padding-block: calc(4 * var(--rem));
  padding-inline-start: calc(13 * var(--rem));
  position: relative;
}

.link-title a::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background-color: var(--border);
  position: absolute;
  top: 128%;
  left: calc(-4 * var(--rem));
}

/* *************************************
link-text1
************************************* */
.link-text1 {
  display: inline-flex;
  align-items: center;
  gap: calc(8 * var(--rem));
  padding-block: calc(2 * var(--rem));
  @media (width < 768px) {
    font-size: calc(12 * var(--rem));
  }
}

.link-text1::before {
  content: '';
  display: block;
  width: calc(8 * var(--rem));
  height: 2px;
  background-color: var(--border);
}

/* *************************************
link-text2
************************************* */
.link-text2 {
  display: inline-flex;
  align-items: center;
  gap: calc(8 * var(--rem));
  font-weight: 800;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
  }
}

.link-text2::after {
  content: '';
  display: block;
  width: 0.5lh;
  aspect-ratio: 1;
  background: url(../../library/images/common/link2.svg) no-repeat center / contain;
}

/* *************************************
link-text3
************************************* */
.link-text3 {
  display: inline-flex;
  align-items: center;
  gap: calc(14 * var(--rem));
  font-size: calc(21 * var(--rem));
  font-weight: 800;
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    gap: calc(10 * var(--rem));
  }
}

.link-text3::after {
  content: '';
  display: block;
  width: calc(60 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/arrow-button.svg) no-repeat center / contain;
  @media (width < 768px) {
    width: calc(40 * var(--rem));
  }
}

/* *************************************
title1
************************************* */
.title1 {
  color: var(--green);
  font-size: calc(30 * var(--rem));
  font-family: var(--roboto);
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  z-index: 10;
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}

.title1::before {
  content: '';
  display: block;
  width: calc(55 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/rhombus_y.svg) no-repeat center / contain;
  position: absolute;
  top: calc(-13 * var(--rem));
  left: calc(-18 * var(--rem));
  z-index: -1;
  @media (width < 768px) {
    width: calc(45 * var(--rem));
  }
}

/* 黄色・白 */
.title1[data-modi='y-w'] {
  color: var(--yellow);
}

.title1[data-modi='y-w']::before {
  background: url(../../library/images/common/rhombus_w.svg) no-repeat center / contain;
}

/* 緑・白 */
.title1[data-modi='g-w']::before {
  background: url(../../library/images/common/rhombus_w.svg) no-repeat center / contain;
}

/* *************************************
title2
************************************* */
.title2 {
}

.title2__main {
  font-size: calc(45 * var(--rem));
  font-weight: 600;
  margin-inline-start: calc(-7 * var(--rem));
  @media (width < 768px) {
    font-size: calc(35 * var(--rem));
  }
}

/* *************************************
title3
************************************* */
.title3 {
  width: fit-content;
  text-align: center;
}

.title3__en {
  font-size: calc(70 * var(--rem));
  font-weight: 900;
  line-height: 1;
  font-family: var(--roboto);
  text-transform: capitalize;
  @media (width < 768px) {
    font-size: calc(50 * var(--rem));
  }
}

.title3--jp {
  font-size: calc(35 * var(--rem));
  line-height: 1;
  margin-block-start: calc(10 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

/* *************************************
title4
************************************* */
.title4 {
  width: fit-content;
  padding: calc(11 * var(--rem)) calc(55 * var(--rem));
  font-size: calc(30 * var(--rem));
  background: url(../../library/images/common/hexagonal-frame.svg) no-repeat center / contain;
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
    padding-inline: calc(50 * var(--rem));
  }
}

/* *************************************
title5
************************************* */
.title5 {
  display: inline-grid;
  grid-template-columns: repeat(3, auto);
  align-items: center;
  font-size: calc(28 * var(--rem));
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.1em;
  color: var(--white);
}

.title5::before,
.title5::after {
  content: '';
  display: inline-block;
  width: 1lh;
  aspect-ratio: 1;
}

.title5::before {
  background: url(../../library/images/common/title-arrow.svg) no-repeat center / contain;
  rotate: 180deg;
}

.title5::after {
  background: url(../../library/images/common/title-arrow.svg) no-repeat center / contain;
}

/* *************************************
title6
************************************* */
.title6 {
  display: inline-grid;
  gap: calc(8 * var(--rem));
  justify-items: center;
  position: relative;
}

.title6::before,
.title6::after {
  content: '';
  position: absolute;
  top: 117%;
  left: 50%;
  transform: translate(-50%, 0%);
  width: calc(130 * var(--rem));
  height: calc(8 * var(--rem));
}

/* 個別の装飾（色とクリップ） */
.title6::before {
  background-color: var(--yellow);
}

.title6::after {
  background-color: var(--green);
  clip-path: polygon(0 0, 50% 0, 48% 100%, 0 100%);
}

.title6__jp {
  font-size: calc(40 * var(--rem));
  line-height: 1;
  letter-spacing: -0.04em;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.title6__en {
  font-size: calc(18 * var(--rem));
  font-weight: 500;
  line-height: 1;
  font-family: var(--roboto);
  text-transform: capitalize;
  letter-spacing: 0.01em;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.title6[data-modi='white'] {
  &::before,
  &::after {
    background-color: var(--white);
  }

  .title6__jp,
  .title6__en {
    color: var(--white);
  }
}

/* *************************************
title7
************************************* */
.title7 {
  font-size: calc(20 * var(--rem));
  font-weight: bold;
  border-left: 4px solid var(--green);
  padding-inline-start: calc(10 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

/* *************************************
title8
************************************* */
.title8 {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: self-end;
  gap: calc(24 * var(--rem));
  @media (width < 768px) {
    gap: calc(16 * var(--rem));
  }
}

.title8__jp {
  font-size: calc(50 * var(--rem));
  line-height: 1;
  border-left: 8px solid var(--green);
  padding-inline-start: calc(12 * var(--rem));
  padding-block: calc(4 * var(--rem));
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.title8__en {
  font-size: calc(90 * var(--rem));
  font-family: var(--roboto);
  font-weight: bold;
  line-height: 1;
  margin-block-end: calc(-12 * var(--rem));
  text-transform: uppercase;
  color: var(--green-bg);
  @media (width < 768px) {
    font-size: calc(35 * var(--rem));
    margin-block-end: calc(-3 * var(--rem));
  }
}

.title8[data-modi1='green'] .title8__en {
  color: #d3e3e1;
}

.title8[data-modi2='center'] {
  grid-template-columns: 1fr;
  gap: calc(8 * var(--rem));
}

.title8[data-modi2='center'] .title8__jp {
  width: fit-content;
  margin-inline: auto;
  order: 2;
}
.title8[data-modi2='center'] .title8__jp {
  order: 1;
}

/* *************************************
title9
************************************* */
.title9 {
  font-size: calc(40 * var(--rem));
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.title9 span {
  color: var(--white);
  padding-inline: calc(8 * var(--rem));
}

.title9 span:nth-child(1) {
  background-color: var(--green);
}

.title9 span:nth-child(2) {
  background-color: var(--yellow);
}

/* *************************************
title10
************************************* */
.title10 {
  text-align: center;
}

.title10__jp {
  font-size: calc(44 * var(--rem));
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.4;
  font-family: var(--noto-serif);
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
  }
}

.title10[data-modi='large'] {
  font-size: calc(50 * var(--rem));
  @media (width < 768px) {
    font-size: calc(40 * var(--rem));
  }
}

.title10__en {
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  font-family: var(--roboto);
  color: var(--yellow);
  text-transform: capitalize;
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.title10[data-modi='large'] .title10__en {
  color: var(--gray);
}

/* *************************************
title11
************************************* */
.title11 {
  font-size: calc(45 * var(--rem));
  line-height: 1.5;
  font-weight: bold;
  font-feature-settings: 'palt';
  font-kerning: auto;
  @media (width < 768px) {
    font-size: calc(30 * var(--rem));
    line-height: 1.5;
  }
}

.title11 span:nth-of-type(1) {
  color: var(--green);
}

.title11 span:nth-of-type(2) {
  color: var(--yellow);
}

.title11[data-modi='white'] {
  color: var(--white);

  span {
    color: var(--white);
  }
}

/* *************************************
title12
************************************* */
.title12 {
  display: inline-block;
  text-align: center;
}

.title12__en {
  color: var(--green);
  font-size: calc(30 * var(--rem));
  font-family: var(--roboto);
  font-weight: 900;
  text-transform: uppercase;
  position: relative;
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.title12__en::after {
  content: '';
  display: block;
  width: calc(80 * var(--rem));
  height: calc(4 * var(--rem));
  background-color: var(--yellow);
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.title2__jp {
  font-size: calc(45 * var(--rem));
  font-weight: 600;
  margin-block-start: calc(8 * var(--rem));
  @media (width < 768px) {
    font-size: calc(28 * var(--rem));
  }
}

.title12[date-color="izu-kenki"] .title12__en{
color: var(--izu-kenki);
}

.title12[date-color="izu-kenki"] .title12__en::after {
  background-color:var(--izu-kenki-gray);
}

/* *************************************
post-list
************************************* */
.post-list {
}

.post-list__item a {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: calc(24 * var(--rem));
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-block: calc(13 * var(--rem)) calc(20 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr auto;
    grid-template-rows: repeat(2, auto);
    gap: calc(8 * var(--rem)) calc(16 * var(--rem));
  }
}

.post-list__item a::after {
  content: '';
  display: block;
  width: calc(50 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/arrow-button.svg) no-repeat center / contain;
  @media (width < 768px) {
    width: calc(36 * var(--rem));
  }
}

.post-list__time {
  margin-block-start: calc(3 * var(--rem));
  color: var(--gray);
  @media (width < 768px) {
    grid-column: span 2;
  }
}

.post-list__title {
  @media (width < 768px) {
    grid-column: span 1;
  }
}

/* *************************************
card1
************************************* */
.card1 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  background-color: var(--white);
  padding-block-end: calc(16 * var(--rem));
  position: relative;
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 0.2);
  align-items: self-start;
  gap: 0;
}

.card1__img {
  position: relative;
}

.card1__img::after {
  content: '';
  display: block;
  width: 84.5%;
  height: calc(36 * var(--rem));
  background-color: var(--white);
  position: absolute;
  bottom: -1px;
  left: -1px;
}

.card1__img img {
  aspect-ratio: 564/376;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card1__cat {
  width: fit-content;
  min-width: calc(100 * var(--rem));
  background-color: var(--green);
  font-size: calc(18 * var(--rem));
  color: var(--white);
  text-align: center;
  padding: calc(2 * var(--rem)) calc(8 * var(--rem));
  position: relative;
  z-index: 10;
  margin-block-start: calc(-10 * var(--rem));
}

.card1__year {
  font-size: calc(20 * var(--rem));
  font-weight: 500;
  padding-inline: calc(8 * var(--rem));
}

.card1__title {
  font-weight: 500;
  padding-inline: calc(8 * var(--rem));
}

.card1__medaru {
  position: absolute;
  top: calc(-18 * var(--rem));
  left: calc(-30 * var(--rem));
  display: grid;
  grid-template-columns: calc(80 * var(--rem)) 1fr;
  align-items: self-start;
  @media (width < 768px) {
    grid-template-columns: calc(60 * var(--rem)) 1fr;
    left: calc(-16 * var(--rem));
  }
}

.card1__medaru-img {
  position: relative;
  z-index: 1;
}

.card1__medaru-img img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card1__medaru-title {
  background-color: var(--white);
  padding: calc(4 * var(--rem)) calc(16 * var(--rem));
  font-size: calc(14 * var(--rem));
  margin-inline-start: calc(-24 * var(--rem));
  max-width: calc(340 * var(--rem));
  margin-block-start: calc(16 * var(--rem));
  background: linear-gradient(90deg, #d4af37 0%, /* 左端：落ち着いた金 */ #f2d06b 25%, /* やや明るめ */ #ffffff 45%, /* 中央左：強い光の反射（白） */ #efcf6a 55%, /* 中央右：明るい金 */ #b8860b 80%, /* 右側：深い陰影 */ #e6c670 100% /* 右端：再び明るく */);
}

/* *************************************
card1-list
************************************* */
.card1-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(32 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.card1-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 4;
  gap: 0;
}

/* *************************************
mv-logo
************************************* */
.mv-logo {
  position: relative;
  width: fit-content;
}

.mv-logo::before {
  content: '';
  display: block;
  width: calc(400 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/mv-logo-bg1.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-34%, -45%);
  @media (width < 768px) {
    width: calc(140 * var(--rem));
  }
}

.mv-logo[date-modi='logo2']::before {
  background: url(../../library/images/common/mv-logo-bg2.svg) no-repeat center / contain;
}

.mv-logo[date-modi='logo3']::before {
  background: url(../../library/images/common/mv-logo-bg3.svg) no-repeat center / contain;
  width: calc(345 * var(--rem));
  top: 83%;
  @media (width < 768px) {
    top: 80%;
    width: calc(130 * var(--rem));
  }
}

.mv-logo__title {
  position: relative;
  z-index: 1;
}

.mv-logo__title--jp {
  font-size: calc(70 * var(--rem));
  font-family: var(--noto-serif);
  font-weight: 600;
  line-height: 1;
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(34 * var(--rem));
  }
}

.mv-logo__title--en {
  font-size: calc(26 * var(--rem));
  font-weight: bold;
  font-family: var(--roboto);
  line-height: 1;
  margin-block-start: calc(34 * var(--rem));
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    margin-block-start: calc(8 * var(--rem));
  }
}

.mv-logo__title--jp span,
.mv-logo__title--en span {
  color: var(--yellow);
}

/* *************************************
mv-logo2
************************************* */
.mv-logo2 {
  width: fit-content;
  position: relative;
}

.mv-logo2::before {
  content: '';
  display: block;
  width: calc(630 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/mv-logo-bg4.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  @media (width < 768px) {
    width: calc(150 * var(--rem));
  }
}

.mv-logo2__title {
  position: relative;
  z-index: 1;
}

.mv-logo2__text-jp {
  font-size: calc(38 * var(--rem));
  color: var(--white);
  font-family: var(--noto-serif);
  line-height: 1;
  @media (width < 768px) {
    font-size: calc(22 * var(--rem));
  }
}

.mv-logo2__text-en {
  font-size: calc(24 * var(--rem));
  color: var(--yellow);
  font-weight: bold;
  font-family: var(--roboto);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.13em;
  margin-block-start: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
    margin-block-start: calc(16 * var(--rem));
  }
}

.mv-logo2__title-main {
  font-size: calc(100 * var(--rem));
  color: var(--white);
  line-height: 1;
  margin-block-start: calc(20 * var(--rem));
  letter-spacing: 0.1em;
  margin-inline-start: calc(-20 * var(--rem));
  @media (width < 768px) {
    margin-block-start: calc(10 * var(--rem));
    font-size: calc(40 * var(--rem));
    text-align: center;
  }
}

/* *************************************
slider1
************************************* */
.slider1 {
  height: calc(100vh - calc(80 * var(--rem)));
  position: relative;
  @media (width < 768px) {
    height: calc(70vh - calc(80 * var(--rem)));
  }
}

.slider1 .swiper {
  width: 100%;
  height: inherit;
}

.slider1 .swiper-slide {
  height: inherit;
}

.slider1 .swiper-slide::before {
  content: '';
  display: block;
  background-color: #a5b4bc20;
  position: absolute;
  inset: 0;
  z-index: 10;
}

.slider1 .swiper-slide img {
  aspect-ratio: 2161 /1158;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider1__logo {
  position: absolute;
  top: 50%;
  left: 22%;
  transform: translate(-50%, -50%);
  z-index: 100;
  @media (width < 768px) {
    top: 19%;
    left: 34%;
    display: grid;
    place-content: center;
    width: 100%;
  }
}

/* *************************************
slider2
************************************* */
.slider2 {
}

.slider2__container {
  padding-block: calc(35 * var(--rem)) calc(20 * var(--rem));
}

.slider2__btn.swiper-button-next svg,
.slider2__btn.swiper-button-prev svg {
  display: none;
}

.swiper-wrapper.slider2__list {
}

.slider2__list .swiper-slide {
  display: grid;
  height: auto;
}

.slider2__btn.swiper-button-next,
.slider2__btn.swiper-button-prev {
  background: url(../../library/images/common/slider-arrow.svg) no-repeat center / cover;
  width: calc(70 * var(--rem));
  height: calc(90 * var(--rem));
  top: 29%;
  @media (width < 768px) {
    top: 35%;
    width: calc(40 * var(--rem));
    height: calc(50 * var(--rem));
  }
}

.slider2__btn.swiper-button-next {
  right: calc(25 * var(--rem));
}

.slider2__btn.swiper-button-prev {
  rotate: 180deg;
  left: calc(25 * var(--rem));
}

/* *************************************
slider3
************************************* */
.slider3 {
  height: calc(100vh - calc(80 * var(--rem)));
  position: relative;
  @media (width < 768px) {
    height: calc(70vh - calc(80 * var(--rem)));
  }
}

.slider3 .swiper {
  width: 100%;
  height: inherit;
}

.slider3 .swiper-slide {
  height: inherit;
}

.slider3 .swiper-slide::before {
  content: '';
  display: block;
  background-color: #00000020;
  position: absolute;
  inset: 0;
  z-index: 10;
}

.slider3 .swiper-slide img {
  aspect-ratio: 2161 /1158;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slider3 .swiper-slide:nth-child(3) img {
  object-position: 88% 50%;
}

.slider3__title-block {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  width: 100%;
  padding-inline-start: calc(20 * var(--rem));
  @media (width < 768px) {
    padding-inline-start: calc(10 * var(--rem));
    top: 60%;
  }
}

.slider3__title-block--wrap {
  position: relative;
}

.slider3__title-block--wrap::before {
  content: '';
  display: block;
  width: calc(200 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/recruit/rhombus_y.svg) no-repeat center / contain;
  position: absolute;
  top: calc(-55 * var(--rem));
  left: calc(-33 * var(--rem));
  @media (width < 768px) {
    width: calc(110 * var(--rem));
    top: calc(-21 * var(--rem));
    left: calc(-12 * var(--rem));
  }
}

.slider3__title {
  font-size: calc(80 * var(--rem));
  padding: calc(16 * var(--rem)) calc(24 * var(--rem));
  display: inline-block;
  font-family: var(--noto-serif);
  color: var(--white);
  line-height: 1;
  position: relative;
  @media (width < 768px) {
    font-size: calc(45 * var(--rem));
  }
}

.slider3__title-sub {
  position: relative;
  background-color: var(--green-tra);
  margin-block-start: calc(40 * var(--rem));
  color: var(--white);
  padding: calc(24 * var(--rem));
  width: fit-content;
  font-size: calc(20 * var(--rem));
  line-height: 1.8;
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
    gap: calc(8 * var(--rem));
    margin-block-start: calc(24 * var(--rem));
  }
}

.slider3__title-sub .sp_contents {
  @media (width < 768px) {
    display: contents;
  }
}
.slider3__title-sub .pc_contents {
  display: contents;
  @media (width < 768px) {
    display: block;
  }
}

/* *************************************
slider4
************************************* */
.slider4 {
  .swiper-wrapper {
    transition-timing-function: linear;
  }

  .swiper-slide img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* *************************************
slider5
************************************* */
.slider5 {
  .swiper-wrapper {
    transition-timing-function: linear;
  }

  .swiper-slide img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/* *************************************
slider6
************************************* */
.slider6 {
}

.slider6__container {
  padding-block-end: calc(26 * var(--rem));
}

.slider6 .swiper-slide {
  transform: scale(0.9);
  transition: transform 0.7s ease;
}

.slider6 .swiper-slide.swiper-slide-active {
  transform: scale(1);
}

.slider6 .swiper-slide {
}

.slider6__btn.swiper-button-next svg,
.slider6__btn.swiper-button-prev svg {
  display: none;
}

.slider6__btn.swiper-button-next,
.slider6__btn.swiper-button-prev {
  background: url(../../library/images/common/slider-arrow.svg) no-repeat center / cover;
  width: calc(70 * var(--rem));
  height: calc(90 * var(--rem));
  top: 29%;
  @media (width < 768px) {
    top: 35%;
    width: calc(40 * var(--rem));
    height: calc(50 * var(--rem));
  }
}

.slider6__btn.swiper-button-next {
  right: calc(25 * var(--rem));
}

.slider6__btn.swiper-button-prev {
  rotate: 180deg;
  left: calc(25 * var(--rem));
}

/* *************************************
slider7
************************************* */
.slider7 {
  .swiper-wrapper {
    transition-timing-function: linear;
  }

  .swiper-slide.mbs-space {
    margin-block-start: calc(40 * var(--rem));
  }

  .swiper-slide img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* *************************************
slider8
************************************* */
.slider8 {
  .swiper-wrapper {
    transition-timing-function: linear;
  }

  .swiper-slide.mbs-space {
    margin-block-start: calc(40 * var(--rem));
  }

  .swiper-slide img {
    aspect-ratio: 3 / 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
/* *************************************
page-top
************************************* */
.page-top {
  height: calc(300 * var(--rem));
  position: relative;
  margin-block-start: calc(80 * var(--rem));
}

.page-top::before {
  content: '';
  display: block;
  position: absolute;
  inset: 0;
  background-color: #a5b4bc20;
}

.page-top__img {
  height: inherit;
}

.page-top__img img {
  aspect-ratio: 2161/ 1157;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-top__title-block {
  position: absolute;
  top: 50%;
  left: calc(80 * var(--rem));
  transform: translate(0, -50%);
  @media (width < 768px) {
    left: calc(20 * var(--rem));
  }
}

.page-top__title {
  position: relative;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0 calc(16 * var(--rem));
  background-color: #ffffff80;
  padding: calc(14 * var(--rem)) calc(32 * var(--rem));
  @media (width < 768px) {
    padding-inline: calc(16 * var(--rem));
    gap: 0 calc(8 * var(--rem));
    width: fit-content;
  }
}

.page-top__title::before {
  content: '';
  display: block;
  width: calc(100 * var(--rem));
  aspect-ratio: 1;
  background: url(../../library/images/common/page-top_img-bg.svg) no-repeat center / contain;
  grid-column: span 1;
  grid-row: span 2;
  @media (width < 768px) {
    width: calc(40 * var(--rem));
  }
}

.page-top__title-en {
  font-size: calc(76 * var(--rem));
  font-weight: bold;
  line-height: 1;
  text-transform: uppercase;
  grid-column: 2/3;
  grid-row: span 1;
  @media (width < 768px) {
    font-size: calc(36 * var(--rem));
  }
}

.page-top__title-jp {
  font-size: calc(28 * var(--rem));
  grid-column: 2/3;
  grid-row: 2/3;
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.page-top[data-modi='small'] .page-top__title-en {
  @media (width < 768px) {
    font-size: calc(35 * var(--rem));
  }
}

.page-top[data-modi='font'] .page-top__title-en {
  @media (width < 768px) {
    font-size: calc(25 * var(--rem));
  }
}

/* *************************************
the-content
************************************* */
.the-content {
  img.alignright {
    display: block;
    margin: 0 0 0 auto;
  }
  img.alignleft {
    display: block;
    margin: 0 auto 0 0;
  }
  img.aligncenter {
    display: block;
    margin: 0 auto;
  }

  p {
    margin-block-end: 1em;
    line-height: 1.8;
  }

  img {
    height: auto;
  }
}

/* *************************************
pagination
************************************* */
.pagination {
}

.page-numbers {
  display: flex;
  justify-content: center;
  gap: calc(16 * var(--rem));
}

.page-numbers li {
}

.page-numbers li a,
.page-numbers li span {
  display: block;
  border: 2px solid var(--green);
  color: var(--green);
  font-weight: bold;
  padding: calc(8 * var(--rem)) calc(10 * var(--rem));
  transition:
    color 0.3s ease,
    background-color 0.3s ease;
  @media (width < 768px) {
    font-size: calc(14 * var(--rem));
    padding: calc(8 * var(--rem));
  }
}

.page-numbers li span.current {
  background-color: var(--green);
  color: var(--white);
}

@media (any-hover: hover) {
  .page-numbers li a:hover {
    background-color: var(--green);
    color: var(--white);
    opacity: 1;
  }
}

/* *************************************
table1
************************************* */
.table1 {
  @media (width < 768px) {
    display: grid;
    gap: calc(24 * var(--rem));
  }
}

.table1__item {
  position: relative;
  border-bottom: calc(2 * var(--rem)) solid var(--border);
  display: grid;
  grid-template-columns: calc(140 * var(--rem)) 1fr;
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.table1__item::before {
  content: '';
  position: absolute;
  bottom: calc(-2 * var(--rem));
  width: calc(140 * var(--rem));
  height: calc(2 * var(--rem));
  background: var(--green);
  @media (width < 768px) {
    display: none;
  }
}

.table1__item dt {
  text-align: center;
  font-weight: bold;
  padding: calc(24 * var(--rem)) calc(10 * var(--rem));
  @media (width < 768px) {
    text-align: left;
    border-bottom: calc(2 * var(--rem)) solid var(--green);
    width: fit-content;
    padding-block: calc(10 * var(--rem));
  }
}

.table1__item dd {
  padding: calc(24 * var(--rem));
}

.table1__item dd h3 {
  margin-block-start: calc(16 * var(--rem));
  font-size: calc(16 * var(--rem));
  font-weight: bold;
}

.table1__item dd h3:first-of-type {
  margin-block-start: 0;
}

.table1__item dd p {
  margin-block-end: 1em;
  line-height: 1.8;
}

.table1__item dd a {
  display: block;
  padding-block: calc(4 * var(--rem));
  color: #006699;
}

.table1[date-color="blue"] .table1__item::before {
  background: var(--izu-kenki);
}

.table1[date-color="blue"] dt {
  @media (width < 768px) {
 border-bottom: calc(2 * var(--rem)) solid var(--izu-kenki);
  }
}

/* *************************************
table2
************************************* */
.table2 {
  border: 1px solid var(--green);
  border-bottom: none;
}

.table2__item {
  display: grid;
  grid-template-columns: calc(200 * var(--rem)) 1fr 1fr;
  border-bottom: 1px solid var(--green);
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.table2__item dt {
  padding: calc(24 * var(--rem));
  text-align: center;
  font-weight: bold;
  background-color: var(--green-bg);
  @media (width < 768px) {
    text-align: center;
  }
}

.table2__item dd {
  padding: calc(24 * var(--rem));
  border-left: 1px solid var(--green);
  @media (width < 768px) {
    border-left: none;
    border-top: 1px solid var(--green);
    text-align: center;
  }
}

.table2[data-modi='2col'] .table2__item {
  grid-template-columns: calc(200 * var(--rem)) 1fr;
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.table2[data-modi='2col'] .table2__item dd ul {
  display: grid;
  gap: calc(4 * var(--rem));
  @media (width < 768px) {
    width: fit-content;
    margin-inline: auto;
  }
}

.table2[data-modi='2col'] .table2__item dd ul li {
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: calc(8 * var(--rem));
  line-height: 1;
  align-items: center;
  @media (width < 768px) {
    text-align: left;
  }
}

.table2[data-modi='2col'] .table2__item dd ul li::before {
  content: '';
  display: block;
  width: 0.4lh;
  aspect-ratio: 1;
  background-color: var(--green);
  border-radius: 100vmax;
}

/* *************************************
table3
************************************* */
.table3 {
  background-color: var(--white);
  @media (width < 768px) {
    display: grid;
    gap: 0;
  }
}

.table3__item {
  position: relative;
  border-bottom: calc(2 * var(--rem)) solid var(--border);
  display: grid;
  grid-template-columns: calc(200 * var(--rem)) 1fr;
  @media (width < 768px) {
    grid-template-columns: 1fr;
    border-bottom: none;
  }
}

.table3__item:first-child {
  border-top: calc(2 * var(--rem)) solid var(--border);
  @media (width < 768px) {
    display: none;
  }
}

.table3__item:first-child::after {
  content: '';
  position: absolute;
  top: calc(-2 * var(--rem));
  width: calc(200 * var(--rem));
  height: calc(2 * var(--rem));
  background: var(--green);
}

.table3__item::before {
  content: '';
  position: absolute;
  bottom: calc(-2 * var(--rem));
  width: calc(200 * var(--rem));
  height: calc(2 * var(--rem));
  background: var(--green);
  @media (width < 768px) {
    display: none;
  }
}

.table3__item dt {
  text-align: center;
  font-weight: bold;
  padding: calc(24 * var(--rem)) calc(10 * var(--rem));
  background-color: var(--green-bg);
  display: grid;
  place-content: center;
  @media (width < 768px) {
    text-align: left;
    border-block: calc(2 * var(--rem)) solid var(--green);
    width: 100%;
    padding-block: calc(10 * var(--rem));
  }
}

.table3__item dd {
  padding: calc(24 * var(--rem)) calc(16 * var(--rem));
  background-color: var(--white);
}

/* *************************************
table4
************************************* */
.table4 {
  display: grid;
  gap: calc(32 * var(--rem));
}

.table4[data-modi='2col'] {
  grid-template-columns: repeat(2, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(32 * var(--rem));
  }
}

.table4__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: calc(26 * var(--rem));
  align-items: self-start;
  border-bottom: 1px solid var(--green);
  @media (width < 768px) {
    gap: calc(4 * var(--rem));
  }
}

.table4__item dt,
.table4__item dd {
  padding: calc(8 * var(--rem));
}

.table4__item dt {
  text-align: left;
}
.table4__item dd {
  text-align: right;
  @media (width < 768px) {
    min-width: calc(100 * var(--rem));
  }
}

.table4[data-color="blue"] .table4__item {
  border-color: var(--izu-kenki);
}

/* *************************************
voices-list
************************************* */
.voices-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(64 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    row-gap: calc(40 * var(--rem));
  }
}

.voices-list__item {
  position: relative;
  @media (width < 768px) {
    row-gap: calc(10 * var(--rem));
  }
}

/* *************************************
voices-card
************************************* */
.voices-card {
  display: block;
  background-color: var(--white);
  padding-block-end: calc(24 * var(--rem));
  align-items: self-start;
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 0.2);
  @media (width < 768px) {
    row-gap: calc(10 * var(--rem));
  }
}

.voices-card__img img {
  aspect-ratio: 3 /2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.voices-card__year {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--green);
  font-size: calc(20 * var(--rem));
  color: var(--white);
  line-height: 1;
  padding: calc(8 * var(--rem)) calc(20 * var(--rem));
  font-size: calc(22 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.voices-card__department {
  font-size: calc(24 * var(--rem));
  font-weight: 500;
  padding-inline: calc(20 * var(--rem));
  background-color: var(--green);
  color: var(--white);
  @media (width < 768px) {
    font-size: calc(20 * var(--rem));
  }
}

.voices-card__name-jp {
  font-size: calc(32 * var(--rem));
  letter-spacing: 0.05em;
  line-height: 1;
  padding-inline: calc(20 * var(--rem));
  margin-block-start: calc(16 * var(--rem));
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}


/* *************************************
flow-list
************************************* */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.flow-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: calc(20 * var(--rem));
  counter-increment: num;
  border: 2px solid var(--black);
  padding: calc(24 * var(--rem));
  position: relative;
  background-color: var(--white);
}

.flow-list__item:not(:last-child)::before {
  content: '';
  display: block;
  width: calc(50 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--green);
  clip-path: polygon(0 0, 0% 100%, 60% 50%);
  position: absolute;
  top: 50%;
  right: calc(-57 * var(--rem));
  transform: translate(0%, -50%);
  @media (width < 768px) {
    clip-path: polygon(0 0, 50% 60%, 100% 0);
    top: 103%;
    left: 50%;
    transform: translate(-50%, 0%);
  }
}

.flow-list__step {
  font-size: calc(20 * var(--rem));
  text-transform: uppercase;
  display: grid;
  place-content: center;
  background-color: var(--green);
  width: calc(80 * var(--rem));
  margin-inline: auto;
  aspect-ratio: 0.866 / 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  color: var(--white);
  @media (width < 768px) {
    width: calc(70 * var(--rem));
  }
}

.flow-list__step::after {
  content: counter(num, decimal-leading);
  text-align: center;
  font-size: calc(30 * var(--rem));
  line-height: 1;
  display: block;
  @media (width < 768px) {
    font-size: calc(26 * var(--rem));
  }
}

.flow-list__title {
  text-align: center;
  border-bottom: 2px solid var(--yellow);
  width: fit-content;
  margin-inline: auto;
  padding-inline: calc(8 * var(--rem));
}

.flow-list__text {
  line-height: 1.8;
}

/* *************************************
list1
************************************* */
.list1 {
  display: inline-grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(16 * var(--rem)) calc(24 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.list1__item {
  border: 2px solid var(--green);
  display: inline-grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  counter-increment: num;
  gap: calc(24 * var(--rem));
  position: relative;
  padding-inline-end: calc(16 * var(--rem));
  font-size: calc(18 * var(--rem));
  background-color: var(--white);
}

.list1__item::before {
  content: counter(num, decimal-leading);
  width: calc(57 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--green);
  padding: calc(10 * var(--rem));
  color: var(--white);
  font-size: calc(22 * var(--rem));
  font-family: var(--roboto);
  display: grid;
  place-content: center;
}

.list1__item::after {
  content: '';
  display: block;
  width: calc(30 * var(--rem));
  aspect-ratio: 1;
  background-color: var(--green);
  clip-path: polygon(0 0, 0% 100%, 58% 50%);
  position: absolute;
  top: 50%;
  left: 12%;
  transform: translate(0%, -50%);
  @media (width < 768px) {
    left: calc(56 * var(--rem));
  }
}

/* *************************************
faq-list
************************************* */
.faq-list {
  display: grid;
  gap: calc(40 * var(--rem));
}

.faq-list__item {
  display: grid;
  gap: calc(16 * var(--rem));
  padding: calc(24 * var(--rem));
  position: relative;
  @media (width < 768px) {
    padding: calc(16 * var(--rem));
  }
}

.faq-list__item::before,
.faq-list__item::after {
  position: absolute;
  width: calc(15 * var(--rem));
  height: calc(40 * var(--rem));
  content: '';
}

.faq-list__item::before {
  border-left: solid 3px var(--green);
  border-top: solid 3px var(--green);
  top: 0;
  left: 0;
}

.faq-list__item::after {
  border-right: solid 3px var(--green);
  border-bottom: solid 3px var(--green);
  bottom: 0;
  right: 0;
}

.faq-list__item dt {
  font-weight: bold;
  display: inline-grid;
  grid-template-columns: auto 1fr;
  gap: calc(8 * var(--rem));
}

.faq-list__item dt::before {
  content: '';
  display: block;
  width: 1.2lh;
  aspect-ratio: 1;
  background: url(../../library/images/common/page-top_img-bg.svg) no-repeat center / contain;
  margin-block-start: calc(-4 * var(--rem));
}

.faq-list__item dd {
  padding-inline-start: calc(28 * var(--rem));
  line-height: 1.8;
  @media (width < 768px) {
    padding-inline-start: 0;
  }
}

/* *************************************
chairman-greeting
************************************* */
.chairman-greeting {
  @media (width < 768px) {
    padding-inline-start: 0;
  }
}

.chairman-greeting__wrap {
}

.chairman-greeting__subtitle {
  font-size: calc(40 * var(--rem));
  color: var(--green);
  font-family: var(--noto-serif);
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
    text-align: center;
    margin-block-start: calc(24 * var(--rem));
  }
}

.chairman-greeting__text {
  margin-block-start: calc(24 * var(--rem));
}

.chairman-greeting__text p {
  margin-block-end: 1em;
  line-height: 1.8;
}

.chairman-greeting__name {
  font-size: calc(18 * var(--rem));
  text-align: right;
  margin-block-start: calc(40 * var(--rem));
   font-family: var(--noto-serif);
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.chairman-greeting__name span {
  font-size: calc(30 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.chairman-greeting__img {
  width: 50%;
  float: right;
  margin-inline-start: calc(16 * var(--rem));
  @media (width < 768px) {
    float: revert;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}

.chairman-greeting__img img {
  aspect-ratio: 3/2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* *************************************
president-greeting
************************************* */
.president-greeting {
  @media (width < 768px) {
    padding-inline-start: 0;
  }
}

.president-greeting__wrap {
  @media (width < 768px) {
    order: 2;
  }
}

.president-greeting__subtitle {
  font-size: calc(40 * var(--rem));
  color: var(--green);
  font-family: var(--noto-serif);
  @media (width < 768px) {
    font-size: calc(22 * var(--rem));
    text-align: center;
    margin-block-start: calc(24 * var(--rem));
  }
}

.president-greeting__text {
  margin-block-start: calc(24 * var(--rem));
}

.president-greeting__text p {
  margin-block-end: 1em;
  line-height: 1.8;
}

.president-greeting__name {
  font-size: calc(18 * var(--rem));
  text-align: right;
  margin-block-start: calc(40 * var(--rem));
   font-family: var(--noto-serif);
  @media (width < 768px) {
    font-size: calc(16 * var(--rem));
  }
}

.president-greeting__name span {
  font-size: calc(30 * var(--rem));
  @media (width < 768px) {
    font-size: calc(24 * var(--rem));
  }
}

.president-greeting__img {
  width: 50%;
  float: left;
  margin-inline-end: calc(16 * var(--rem));
  @media (width < 768px) {
    float: revert;
    width: 100vw;
    margin-inline: calc(50% - 50vw);
  }
}

.president-greeting__img img {
  aspect-ratio: 3 /2;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* *************************************
card2-list
************************************* */
.card2-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(24 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
  }
}

.card2-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: 0;
}

/* *************************************
card2
************************************* */
.card2 {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: calc(8 * var(--rem));
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 0.2);
  padding-block-end: calc(24 * var(--rem));
  background-color: var(--white);
}

.card2__img img {
  aspect-ratio: 3 /2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card2__wrap {
  display: flex;
  gap: calc(16 * var(--rem));
  align-items: center;
  padding-inline: calc(16 * var(--rem));
}

.card2__time {
  font-size: calc(18 * var(--rem));
  font-weight: bold;
  line-height: 1;
  color: var(--green);
}

.card2__cat {
  background-color: var(--green);
  color: var(--white);
  padding: calc(4 * var(--rem)) calc(10 * var(--rem));
}

.card2__title {
  font-size: calc(20 * var(--rem));
  padding-inline: calc(16 * var(--rem));
  min-height: calc(60 * var(--rem));
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

/* *************************************
marker
************************************* */
.marker {
  background: linear-gradient(transparent 60%, #ff6 60%);
}

/* *************************************
video-container
************************************* */
.video-container {
  cursor: pointer;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
  overflow: hidden;
}

.video-container img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: opacity 0.3s;
}

.video-container:hover img {
  opacity: 0.8;
}

.video-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(68 * var(--rem));
  height: calc(48 * var(--rem));
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 12%;
  transition: background-color 0.3s;
  pointer-events: none;
}

.video-container:hover .play-btn {
  background-color: #ff0000;
}

.play-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 55%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: calc(12 * var(--rem)) 0 calc(12 * var(--rem)) calc(20 * var(--rem));
  border-color: transparent transparent transparent #fff;
}

/* *************************************
card3-list
************************************* */
.card3-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: calc(40 * var(--rem));
  @media (width < 768px) {
    grid-template-columns: 1fr;
    gap: calc(64 * var(--rem));
  }
}

.card3-list__item {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
  gap: calc(16 * var(--rem));
  border: 2px solid var(--green);
  padding-block: calc(56 * var(--rem)) calc(40 * var(--rem));
  padding-inline: calc(24 * var(--rem));
  box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 0.2);
  counter-increment: num;
  position: relative;
  background-color: var(--white);
  @media (width < 768px) {
    gap: calc(16 * var(--rem));
    grid-template-rows: revert;
  }
}

.card3-list__item::before {
  content: '';
  display: block;
  width: calc(64 * var(--rem));
  background-color: var(--yellow);
  position: absolute;
  top: 1%;
  left: 51%;
  transform: translate(-50%, -50%);
  aspect-ratio: 0.866 / 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.card3-list__item::after {
  display: grid;
  place-content: center;
  content: counter(num, decimal-leading);
  font-size: calc(30 * var(--rem));
  line-height: 1;
  font-family: var(--roboto);
  color: var(--white);
  width: calc(60 * var(--rem));
  background-color: var(--green);
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  aspect-ratio: 0.866 / 1;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.card3-list__img {
  width: 30%;
  margin-inline: auto;
}

.card3-list__img img {
  aspect-ratio: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.card3-list__title {
  font-size: calc(20 * var(--rem));
  text-align: center;
}

.card3-list__text {
  line-height: 1.8;
  font-size: calc(18 * var(--rem));
}

/* *************************************
our-strengths-list
************************************* */
.our-strengths-list {
  display: grid;
  gap: calc(24 * var(--rem));
}

.our-strengths-list__item {
  padding-block: calc(80 * var(--rem));
  @media (width < 768px) {
    padding-block: calc(40 * var(--rem));
  }
}

.our-strengths-list__container {
  display: flex;
  gap: calc(40 * var(--rem));
  align-items: center;
  @media (width < 768px) {
    flex-direction: column;
    gap: calc(16 * var(--rem));
  }
}

.our-strengths-list__img {
  width: 50%;
  @media (width < 768px) {
    width: 100%;
  }
}

.our-strengths-list__img img {
  aspect-ratio: 564 / 376;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.our-strengths-list__wrap {
  width: 50%;
  @media (width < 768px) {
    width: 100%;
  }
}

.our-strengths-list__title {
  font-size: calc(22 * var(--rem));
  line-height: 1.8;
  padding-inline: calc(8 * var(--rem));
  color: var(--green);
  @media (width < 768px) {
    font-size: calc(18 * var(--rem));
  }
}

.our-strengths-list__text {
  margin-block-start: calc(16 * var(--rem));
  line-height: 1.8;
}

/* 偶数番目 */
.our-strengths-list__item:nth-child(even) {
  background-color: var(--green-bg);

  .our-strengths-list__container {
    flex-direction: row-reverse;
    @media (width < 768px) {
      flex-direction: column;
    }
  }
}
