@charset "UTF-8";
/* A Modern CSS Reset */
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  border-style: solid;
  box-sizing: border-box;
  border-width: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  line-height: 1.5;
  text-rendering: optimizeSpeed;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  background-color: transparent;
  text-decoration: none;
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img {
  width: 100%;
  display: block;
}

input,
button,
select,
textarea {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: none;
  border-radius: 0;
  background: transparent;
  font: inherit;
  outline: none;
}

textarea {
  resize: none;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

body {
  font-family: "Noto Sans JP";
  font-weight: 400;
  color: #000;
}

html {
  font-size: 10px;
}
@media (max-width: 375px) {
  html {
    font-size: 2.6666666667vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 0.7320644217vw;
  }
}
@media (min-width: 1366px) {
  html {
    font-size: 10px;
  }
}

@media screen and (max-width: 768px) {
  a {
    transition: 0.3s;
  }
  a:hover {
    opacity: 0.8;
  }
}

.header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 118px;
  z-index: 999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .header {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .header .inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header-logo {
  width: 58px;
}

.nav-menu a {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 768px) {
  .nav-menu a {
    color: #fff;
  }
}

.nav-menu:nth-child(3) a {
  letter-spacing: 0.5rem;
}

.nav-menu:nth-child(5) a {
  color: #55161F;
  padding: 18px 45px 18px 24px;
  background-color: #FFD83E;
  border-radius: 40px;
  position: relative;
}

.nav-menu:nth-child(5) a::after {
  display: block;
  content: "";
  background-image: url(../img/yazirusi.svg);
  background-position: 0 0;
  background-size: cover;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 42%;
  right: 15%;
}

.nav-menu:nth-child(5):hover a::after {
  right: 10%;
  transition: 0.5s;
}

.nav-menus {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: clamp(20px, 15vw, 53px);
}
@media screen and (max-width: 768px) {
  .nav-menus {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100vh;
  }
}

@media screen and (max-width: 768px) {
  .nav-wrapper {
    width: 120vw;
    height: 120vh;
    position: fixed;
    top: 0;
    left: 120%;
    z-index: 11;
    background-color: #55161F;
    transition: 0.5s;
  }
}

.nav-wrapper.active {
  border-radius: 0;
  top: 0%;
  left: -10%;
}

.hamburger-btn {
  display: none;
}
@media screen and (max-width: 768px) {
  .hamburger-btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 12;
  }
}

.hamburger {
  width: 50px;
  height: 50px;
  position: relative;
}

.hamburger span {
  display: block;
  width: 25px;
  height: 1px;
  background-color: #55161F;
  position: absolute;
  transition: 0.5s;
}

.hamburger span:nth-child(1) {
  top: 30%;
  left: 25%;
}

.hamburger span:nth-child(2) {
  top: 50%;
  left: 25%;
}

.hamburger span:nth-child(3) {
  top: 70%;
  left: 25%;
}

.hamburger.active {
  background-color: initial;
}

.hamburger.active span {
  background-color: #fff;
}

.hamburger.active span:nth-child(1) {
  top: 50%;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  top: 50%;
  transform: rotate(-45deg);
}

.header {
  background-color: transparent;
  transition: background-color 0.3s ease;
}

.header.scrolled {
  background-color: rgba(255, 255, 255, 0.8);
}

/* ======== ▼ プルダウン追加部分 ======== */
/* プルダウン部分 */
.nav-has-dropdown {
  position: relative;
  cursor: pointer;
}

.nav-link-with-arrow {
  display: flex;
  align-items: center;
  gap: 5px;
}

.dropdown-label {
  font-size: 15px;
  font-weight: 600;
  color: #000;
}
@media screen and (max-width: 768px) {
  .dropdown-label {
    color: #fff;
  }
}

/* 矢印アイコン */
.dropdown-arrow {
  width: 12px;
  height: 12px;
  transform: rotate(90deg);
  transition: transform 0.3s ease;
  background-color: #fff;
}

.nav-has-dropdown.open .dropdown-arrow {
  transform: rotate(270deg);
}

.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: -10%;
  background-color: #fff;
  border-radius: 4px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding: 10px 0;
  margin-top: 1rem;
  min-width: 280px;
  z-index: 20;
}
@media screen and (max-width: 768px) {
  .dropdown {
    left: -50%;
  }
}

.dropdown li a {
  display: block;
  padding: 8px 16px;
  color: #000;
  text-decoration: none;
  transition: background 0.3s ease;
}

.dropdown li a:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-has-dropdown.open .dropdown {
  display: block;
}

main {
  overflow: hidden;
}

.footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  background-color: #fff;
  padding: 5.9rem 2.8rem 0;
  max-width: 123rem;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer {
    flex-direction: column;
  }
}

.footer-nav .nav-menus {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5.4rem;
}
@media screen and (max-width: 768px) {
  .footer-nav .nav-menus {
    flex-direction: column;
    height: inherit;
  }
}

.footer-nav .menu-item a {
  font-weight: 600;
  font-size: clamp(14px, 1.8229166667vw, 15px);
  line-height: 1;
  letter-spacing: 0;
}

.footer-nav .menu-item:nth-child(3) a {
  letter-spacing: 7px;
}

.footer .text a {
  display: block;
  color: #A7A7A7;
  font-weight: 500;
  font-size: 13px;
  line-height: 3rem;
  letter-spacing: 0.7px;
  position: relative;
  margin-top: 13.4rem;
  -webkit-text-decoration: revert;
          text-decoration: revert;
}

.right-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .right-content {
    margin-top: 5.6rem;
  }
}

.footer-logo {
  width: 58px;
}

.fooper-text {
  font-weight: 500;
  font-size: 14px;
  line-height: 3rem;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .fooper-text {
    margin-top: 3rem;
  }
}

.footer .yellow-btn {
  margin-top: 1.2rem;
}

.footer .yellow-btn a {
  width: 165px;
}

.footer .footprints {
  position: absolute;
  top: 6.3rem;
  right: 20rem;
  left: auto;
}
@media screen and (max-width: 768px) {
  .footer .footprints {
    display: none;
  }
}

.last-text {
  font-family: "Optima";
  font-weight: 400;
  font-size: 13px;
  line-height: 3rem;
  letter-spacing: 0.15rem;
  text-align: center;
  margin-top: 4.8rem;
}

.pc-block {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc-block {
    display: none;
  }
}

.sp-block {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp-block {
    display: block;
  }
}

.inner {
  width: 100%;
  padding-right: 0.9375rem;
  padding-left: 0.9375rem;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: 1366px;
    padding-right: 1.75rem;
    padding-left: 1.75rem;
  }
}

.title {
  font-size: clamp(32px, 4.1666666667vw, 46px);
  color: black;
}

.text {
  font-size: 1.6rem;
  color: red;
}
@media screen and (max-width: 768px) {
  .text {
    color: green;
  }
}
@media screen and (max-width: 375px) {
  .text {
    color: yellow;
  }
}

.white-btn {
  display: flex;
  justify-content: center;
  margin-top: 3.3rem;
}

.white-btn a {
  width: 234px;
  height: 68px;
  border-radius: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  position: relative;
}

.brown-text {
  color: #55161F;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  line-height: 30px;
  letter-spacing: 0.05rem;
  padding-right: 3.7rem;
}

.white-btn .btn-door {
  width: 25px;
  position: absolute;
  right: 3.5rem;
  transition: 0.5s;
}

.white-btn a:hover .btn-door {
  transform: rotate(30deg);
}

.detail-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 4.7rem;
}

.detail-btn a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #6D3B42;
  border-radius: 40px;
  width: 234px;
  height: 68px;
  position: relative;
  transition: 0.5s;
}

.btn-text {
  color: #fff;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 0.5px;
  letter-spacing: 0.1rem;
  margin-right: 2.3rem;
  transition: 0.5s;
}

.btn-door {
  width: 25px;
  position: absolute;
  right: 4.5rem;
  transition: 0.5s;
}

.door {
  width: 14px;
  height: 14px;
  border: 1px solid #fff;
  border-radius: 50%;
  position: relative;
  transition: 0.5s;
}

.door::before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  height: 1.5px;
  background-color: #fff;
  transition: 0.5s;
}

.detail-btn a:hover {
  background-color: #fff;
}

.detail-btn a:hover .btn-text {
  color: #55161F;
}

.detail-btn a:hover .door {
  border: 1px solid #55161F;
}

.detail-btn a:hover .door::before {
  background-color: #55161F;
  transform: rotate(30deg);
  transform-origin: left;
}

.yellow-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 6.3rem;
}

.yellow-btn a {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background-color: #FFD83E;
  border-radius: 40px;
  width: 198px;
  height: 50px;
  position: relative;
}

.brown-text {
  color: #55161F;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  line-height: 30px;
  letter-spacing: -1px;
  padding-right: 24px;
}

.yellow-btn .btn-yazirusi {
  width: 12px;
  position: absolute;
  right: 2.8rem;
  transition: 0.5s;
}

.yellow-btn a:hover .btn-yazirusi {
  right: 2rem;
}

.fv-screen {
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 948px;
}
@media screen and (max-width: 768px) {
  .fv-screen {
    height: 100vh;
  }
}

.fv-wrapper {
  position: relative;
}

.video-background {
  position: relative;
  width: 100%;
  height: 948px;
  overflow: hidden;
}

.video-background video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translate(-50%, -50%);
  -o-object-fit: cover;
     object-fit: cover; /* 縦横比を維持しながら埋める */
  z-index: -1;
}

.white-screen {
  background-color: rgba(255, 255, 255, 0.84);
  width: 100%;
  height: 948px;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .white-screen {
    height: 100vh;
  }
}

.fv-title {
  width: 65rem;
  margin: 19.6rem auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4.2rem;
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 4.8rem;
  line-height: 100%;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .fv-title {
    width: auto;
    margin-top: 125px;
    font-size: 28px;
  }
}

.fv-title span {
  font-family: "Optima";
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 8%;
  color: #55161F;
  opacity: 70%;
}
@media screen and (max-width: 768px) {
  .fv-title span {
    width: auto;
    font-size: 16px;
  }
}

.fv-text-wrapper {
  max-width: 106.2rem;
  margin: 5.7rem auto 0;
  background-image: url(../img/fv-schedule-bg-img.png);
  background-size: cover;
  border-radius: 20px;
  padding: 4.8rem 4rem 4.2rem;
  position: relative;
  z-index: 12;
}

.fv-text-flex-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .fv-text-flex-wrapper {
    flex-direction: column;
    gap: 3rem;
  }
}

.fv-text-flex-wrapper .title {
  color: #fff;
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 32px;
  line-height: 100%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.fv-text-flex-wrapper .title span {
  font-family: "Optima";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fv-text-wrapper .fv-text-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5.3rem;
}
@media screen and (max-width: 768px) {
  .fv-text-wrapper .fv-text-box {
    flex-direction: column;
    align-items: center;
  }
}

.fv-text {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.2rem;
  color: #FFD83E;
}
@media screen and (max-width: 768px) {
  .fv-text {
    flex-direction: column;
  }
}

.fv-text span {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0;
  padding: 10px 23px;
  border: 1px solid #FFD83E;
  border-radius: 10px;
}

.fv-text-wrapper .fv-text-box .day-lists {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.fv-text-wrapper .fv-text-box .day-list {
  color: #fff;
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}

.fv-text-wrapper .fv-text-box .day-list:nth-child(4) {
  font-size: 14px;
}

.fv-text-wrapper .yellow-btn {
  margin-top: 3rem;
}

.fv-text-wrapper .yellow-btn a {
  width: initial;
  height: initial;
  padding: 1.9rem 4rem;
}

.design-img-wrapper {
  width: 100%;
  height: 94.8rem;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .design-img-wrapper {
    margin-top: 50vh;
  }
}

.fv-circle-top-left {
  width: 13.397rem;
  position: absolute;
  top: 16.1rem;
  left: -5.9rem;
  z-index: 10;
}

.fv-circle-bottom-left {
  width: 26.806rem;
  position: absolute;
  top: 63.09rem;
  left: 8.4rem;
  z-index: 10;
}

.fv-circle-top-right {
  width: 9.803rem;
  position: absolute;
  top: 28.098rem;
  right: -4.9rem;
  z-index: 10;
}

.fv-ribbon {
  width: 31.7rem;
  position: absolute;
  top: 51.505rem;
  right: 0;
  z-index: 10;
}

.fv-scroll-btn {
  width: 3.8rem;
  position: absolute;
  top: 67.1rem;
  left: 48.6%;
  right: 50%;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.fv-scroll-btn::before {
  display: block;
  content: "";
  background-color: #55161F;
  width: 2px;
  height: 0;
  transition: 0.5s;
  position: absolute;
  top: 5.8rem;
  left: 50%;
  right: 50%;
}

.fv-scroll-btn:hover::before {
  height: 68px;
}

.activities {
  background-color: #55161F;
  width: 100%;
  position: relative;
  padding: 0 0 13.3rem;
}

.activities::before {
  display: block;
  content: "";
  width: 100%;
  height: 18.968rem;
  margin: auto;
  background-color: #55161F;
  position: absolute;
  top: -17.968rem;
  left: 0;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}

.activities::after {
  display: block;
  content: "";
  width: 100%;
  height: 18.968rem;
  margin: auto;
  background-color: #55161F;
  position: absolute;
  bottom: -17.968rem;
  left: 0;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
}

.activities .fv-footprints-top {
  width: 19.317rem;
  position: absolute;
  top: -16rem;
  right: 4.6rem;
  z-index: 10;
}

.activities .fv-footprints-bottom {
  width: 19.317rem;
  position: absolute;
  bottom: -9rem;
  right: 16.783rem;
  z-index: 10;
}

.activities .youtube-movie-wrapper {
  width: 74.2rem;
  margin: auto;
  position: relative;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .activities .youtube-movie-wrapper {
    width: 80%;
  }
}

.activities .youtube-movie {
  position: relative;
  width: 100%; /* 親コンテナ幅に合わせる */
  padding-bottom: 56.064690027%; /* 16:9 の比率（9 ÷ 16 × 100） */
  height: 0;
}

.youtube-movie iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.activities .activities-title {
  color: #fff;
  margin-top: 5.9rem;
  font-size: 4.8rem;
  font-weight: 600;
  letter-spacing: 0.4rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.activities .activities-title::after {
  display: block;
  content: "acticities";
  font-size: 15rem;
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1.2rem;
  text-transform: uppercase;
  position: absolute;
  top: -1.8rem;
  opacity: 5%;
}

.activities .activities-lists {
  max-width: 123rem;
  margin: 7rem auto 0;
  padding: 0 2.8rem;
}

.activities .activities-list {
  background-color: white;
  border-radius: 12px;
  margin-top: 10.3rem;
  position: relative;
  padding: 12rem 5.6rem 1.3rem;
}

.activities .list-title {
  background-color: #fff;
  display: inline-flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 2.8rem;
  padding: 4.6rem 7.6rem 3.6rem 5.2rem;
  border-radius: 12px;
  position: absolute;
  top: -3.2rem;
  left: 0;
}

.activities .activities-list .sab-title-ja {
  font-size: clamp(28px, 3.6458333333vw, 32px);
  font-weight: 600;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
  gap: 2.8rem;
  position: relative;
}

.activities .activities-list .sab-title-ja::before {
  display: block;
  content: "01";
  font-size: clamp(36px, 6.7708333333vw, 83px);
  font-weight: 600;
  background: linear-gradient(to bottom, #000 50%, #6D3B42 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: absolute;
  bottom: 30px;
  left: -32px;
}
@media screen and (max-width: 768px) {
  .activities .activities-list .sab-title-ja::before {
    bottom: 70px;
    left: -10px;
  }
}

.activities .activities-list .sab-title-ja::after {
  display: flex;
  content: "";
  width: 6.75rem;
  height: 1px;
  background-color: #000;
  opacity: 12%;
}

.activities-list .sab-title-en {
  font-size: clamp(18px, 2.34375vw, 20px);
  font-weight: 700;
  font-family: "Optima";
  opacity: 12%;
  text-transform: uppercase;
}

.activities .img-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 12rem;
  max-width: 106.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .activities .img-wrapper {
    flex-direction: column;
  }
}

.activities .activities-lists .img-list:nth-child(2) {
  position: relative;
}

.activities .world-img-01 {
  aspect-ratio: 574/365;
}

.activities .world-img-02 {
  aspect-ratio: 368/276;
}

.activities .world-img-03 {
  width: clamp(120px, 15.625vw, 185px);
  position: absolute;
  bottom: 0;
  left: -8.7rem;
}

.activities .activities-list .text {
  color: #000;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08rem;
  line-height: 30px;
  max-width: 106.2rem;
  margin: 3.4rem auto 0;
}

.activities .flex-items {
  display: flex;
  flex-direction: row;
  gap: 4.5rem;
  max-width: 117.4rem;
  margin: 4.6rem auto;
}
@media screen and (max-width: 768px) {
  .activities .flex-items {
    flex-direction: column;
  }
}

.activities .flex-item {
  width: 32.4rem;
  background-size: cover;
  background-position: center;
  border-radius: 12px;
}
@media screen and (max-width: 768px) {
  .activities .flex-item {
    width: 100%;
  }
}

.activities .flex-item:nth-child(1) {
  background-image: url(../img/boston.png);
}

.activities .flex-item:nth-child(2) {
  background-image: url(../img/sanfrancisco.png);
}

.activities .flex-item:nth-child(3) {
  background-image: url(../img/ireland.png);
}

.activities .flex-titles {
  margin: 2.3rem 0 0 2.3rem;
}

.activities .flex-title-ja {
  color: #fff;
  font-size: clamp(20px, 2.6041666667vw, 24px);
  font-weight: 600;
  letter-spacing: 0.14rem;
}

.activities .flex-title-en {
  color: #fff;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 700;
  text-transform: uppercase;
  opacity: 32%;
  letter-spacing: 100%;
}

.activities .door-icon {
  width: 31px;
  margin: 7.8rem 1.4rem 1.5rem auto;
  transition: 0.5s;
}

.activities .flex-item a:hover .door-icon {
  transform: rotate(30deg);
}

.activities .activities-list:nth-child(2) {
  margin-top: 18.3rem;
  padding-bottom: 6.4rem;
}

.activities .activities-list:nth-child(2) .list-title {
  left: inherit;
  right: 0;
  padding: 4.6rem 5.2rem 3.6rem 5.7rem;
}

.activities .activities-list:nth-child(2) .sab-title-ja::before {
  content: "02";
  left: -5px;
}

.activities .content-card {
  max-width: 106.2rem;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .activities .content-card {
    margin: 4rem auto 0;
  }
}

.activities .content-card .global-img {
  display: flex;
  flex-direction: row;
  gap: 4.2rem;
}
@media screen and (max-width: 768px) {
  .activities .content-card .global-img {
    flex-direction: column;
  }
}

.global-content .content-card .text {
  margin-top: 11.7rem;
}

.efforte {
  padding: 25.7rem 2.5rem 8.5rem;
  background-image: url(../img/efforte-bg-img.png);
  background-color: #fff;
}

.efforte .title {
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.efforte .title::before {
  display: flex;
  content: "efforts";
  color: #55161F;
  opacity: 8%;
  font-size: clamp(72px, 9.375vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -1.8rem;
}

.efforte-flex-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 14.5rem;
  max-width: 106.2rem;
  margin: 2.5rem auto 0;
}
@media screen and (max-width: 768px) {
  .efforte-flex-box {
    max-width: initial;
  }
}

.efforte-flex-box .text {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 5%;
}

.efforte-flex-box .text-box {
  width: 69.2rem;
}
@media screen and (max-width: 768px) {
  .efforte-flex-box .text-box {
    width: 100%;
  }
}

.efforte-img {
  width: 4.7rem;
}
@media screen and (max-width: 768px) {
  .efforte-img {
    display: none;
  }
}

.efforte .glid-cards {
  max-width: 117.4rem;
  margin: 5rem auto;
  padding: 0 5.2rem;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 3.9rem;
}
@media screen and (max-width: 768px) {
  .efforte .glid-cards {
    grid-template-columns: 1fr;
  }
}

.efforte .glid-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.efforte .number {
  font-size: clamp(32px, 4.1666666667vw, 46px);
  font-weight: 700;
  text-align: center;
}

.efforte .card-img {
  width: 9.5rem;
}

.efforte .sab-title {
  font-size: clamp(18px, 2.34375vw, 24px);
  font-weight: 700;
  margin-top: 24px;
}

.efforte .text {
  color: #000;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 700;
  letter-spacing: 1.2px;
  line-height: 1.9;
  margin-top: 15px;
}

.message {
  background-color: #55161F;
  padding: 18.8rem 0 9.4rem;
}

.message-inner {
  max-width: 123rem;
  margin: 0 auto;
  padding: 0 2.8rem;
}

.message .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.61rem;
  position: relative;
}

.message .title::before {
  display: flex;
  content: "about";
  color: #fff;
  opacity: 8%;
  font-size: clamp(90px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1.2rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -1.8rem;
}

.message .flex-box {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: end;
  gap: 6.1rem;
  margin-top: 12.7rem;
}
@media screen and (max-width: 768px) {
  .message .flex-box {
    flex-direction: column;
  }
}

.message .message-img {
  aspect-ratio: 473/366;
}

.message .text-box {
  width: 64rem;
}
@media screen and (max-width: 768px) {
  .message .text-box {
    width: 100%;
  }
}

.message .sab-title {
  color: #fff;
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: clamp(32px, 4.1666666667vw, 56px);
  line-height: 100%;
  letter-spacing: 0.06rem;
}

.message .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  line-height: 30px;
  letter-spacing: 0.08rem;
  margin-top: 8.4rem;
}
@media screen and (max-width: 768px) {
  .message .text {
    margin-top: 4.5rem;
  }
}

.message .representative-name {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  line-height: 3rem;
  letter-spacing: 0.8px;
  text-align: right;
  margin-top: 3rem;
}

.voices {
  background-color: #fff;
  padding: 20.8rem 2.8rem 9.4rem;
}

.voices .title {
  color: #000;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.61rem;
  max-width: 117.4rem;
  margin: 0 auto;
  position: relative;
}

.voices .title::before {
  display: flex;
  content: "voices";
  color: #55161F;
  opacity: 8%;
  font-size: clamp(72px, 9.375vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1.2rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -1.8rem;
}

.voices .flex-box-wrapper {
  margin-bottom: 11rem;
}

.voices .flex-box {
  display: flex;
  justify-content: space-between;
  flex-direction: row;
  gap: 6.4rem;
  margin-bottom: 88px;
  flex-wrap: wrap;
  max-width: 1174px;
  margin: 11rem auto;
  padding: 0 5.6rem;
}
@media screen and (max-width: 768px) {
  .voices .flex-box {
    flex-direction: column;
  }
}

.voices .flex-box:nth-child(2) {
  margin-bottom: 0;
}

.voices .img-box {
  width: 56.4rem;
}
@media screen and (max-width: 768px) {
  .voices .img-box {
    width: 100%;
  }
}

/* voices セクションの画像全体 */
.voices-img {
  width: 564px; /* 好きな幅 */
  height: 315px; /* 好きな高さ */
  overflow: hidden; /* はみ出しを隠す */
  border-radius: 8px; /* 角丸など */
}
@media screen and (max-width: 768px) {
  .voices-img {
    width: 100%;
    height: 40vh;
  }
}

/* voices-img内の画像共通 */
.voices-img img,
.voices-img .wp-post-image {
  width: 100%; /* 枠いっぱいに広げる */
  height: 100%; /* 枠いっぱいに広げる */
  -o-object-fit: cover;
     object-fit: cover; /* 枠に合わせてトリミング */
  display: block; /* 余計な隙間を消す */
}

.voices .text {
  color: #000;
  font-size: clamp(18px, 2.34375vw, 20px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 30px;
  letter-spacing: 0;
  text-align: end;
  margin-top: 1.2rem;
}

.voices .text-box {
  width: 43.4rem;
}
@media screen and (max-width: 768px) {
  .voices .text-box {
    width: 100%;
  }
}

.voices .text-box dl {
  display: flex;
  gap: 21px;
  margin-bottom: 19px;
}

.voices .text-box dt {
  color: #55161F;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 30px;
  letter-spacing: 0;
  border: 1px solid #000;
  border-radius: 4rem;
  width: 120px;
  height: 34px;
  text-align: center;
}

.voices .text-box dd {
  color: #000;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 30px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .voices .text-box dd {
    width: 100%;
  }
}

.voices .flex-box .detail-btn {
  justify-content: end;
}
@media screen and (max-width: 768px) {
  .voices .flex-box .detail-btn {
    justify-content: start;
  }
}

.voices-btn {
  margin-top: -3.1rem;
}

.no-voices-message {
  text-align: center;
  padding: 40px 0;
  color: #000;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 30px;
  letter-spacing: 0;
}

.news {
  margin: 8.7rem 0 0;
  padding-bottom: 9.3rem;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .news {
    margin-top: 25rem;
  }
}

.news .title {
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.news .title::before {
  display: flex;
  content: "news";
  color: #55161F;
  opacity: 8%;
  font-size: clamp(90px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -1.8rem;
}

.news .flex-box-wrapper {
  max-width: 123rem;
  margin: 4.4rem auto 0;
  padding: 2.8rem;
  display: flex;
  flex-direction: row;
  gap: 49px;
}
@media screen and (max-width: 768px) {
  .news .flex-box-wrapper {
    flex-direction: column;
  }
}

.news .flex-item {
  width: 27.7rem;
  transition: 0.5s;
  padding: 1rem;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .news .flex-item {
    width: 100%;
  }
}

.news .flex-item:hover {
  box-shadow: 5px 5px 15px #000;
}

.news .item-title {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 1.2rem;
}

.news time {
  font-size: 12px;
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 0.08rem;
}

.news .category {
  color: #55161F;
  font-size: 11px;
  font-weight: 500;
  font-family: "Noto Sans JP";
  letter-spacing: 0.5px;
  width: 80px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #55161F;
  border-radius: 4rem;
}

.news-img {
  width: 257px; /* 親要素の幅（例） */
  height: 169px; /* 高さを固定したい場合（例） */
  overflow: hidden; /* はみ出し防止 */
}
@media screen and (max-width: 768px) {
  .news-img {
    width: 100%;
    height: 40vh;
  }
}

.news-img img {
  width: 100%; /* 親幅に合わせる */
  height: 100%; /* 親高さに合わせる */
  -o-object-fit: cover;
     object-fit: cover; /* 画像をトリミングして埋める */
  display: block; /* 余計な余白を消す */
}

.news .flex-text {
  color: #000;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 30px;
  letter-spacing: 0.6px;
  margin-top: 11px;
}

.donation {
  background-image: url(../img/donation.png);
  background-size: cover;
  background-position: center;
  padding: 6.8rem 2.8rem 10.9rem;
}

.donation .title {
  color: #fff;
  font-size: clamp(24px, 3.125vw, 28px);
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0;
  text-align: center;
}

.donation .text {
  color: #fff;
  font-weight: 600;
  font-size: clamp(14px, 1.8229166667vw, 15px);
  line-height: 2;
  text-align: center;
  max-width: 84.7rem;
  margin: 5.2rem auto 0;
}
@media screen and (max-width: 768px) {
  .donation .text {
    max-width: initial;
  }
}

.supporters-media {
  margin-top: 10.5rem;
}

.supporters-media .title {
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
  color: #55161F;
}

.supporters-media .title::before {
  display: flex;
  justify-content: center;
  content: "supporters & media";
  color: #55161F;
  opacity: 8%;
  font-size: 10rem;
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -6.8rem;
  width: 115%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .supporters-media .title::before {
    font-size: 12rem;
  }
}

.supporters-inner {
  max-width: 106.2rem;
  margin: 10.9rem auto;
}

.supporters-list:nth-child(2) {
  margin-top: 5.3rem;
}

.supporters-flex-box-warapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 4.8rem;
  margin-top: 3.2rem;
}
@media screen and (max-width: 768px) {
  .supporters-flex-box-warapper {
    flex-direction: column;
  }
}

.supporters-flex-box {
  flex: 1;
}

.supporters-flex-img {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3.9rem;
}

.supporters-media .sub-title {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  border-bottom: 1px solid #000;
}

.supporters-text-lists {
  width: 238px;
  margin: 3.2rem auto;
}

.supporters-text-list {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.supporters-text-list::before {
  display: flex;
  content: "";
  width: 10px;
  height: 10px;
  border: 1px solid #000;
  border-radius: 50%;
}

.supporters-grid-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  justify-content: center;
  align-items: center;
  gap: 4.3rem;
  flex-wrap: wrap;
  margin-top: 3.2rem;
}

.supporters-grid-wrapper .glid-img {
  width: 234px;
}

.impact {
  padding: 0 2.5rem;
}

.impact .title {
  font-size: clamp(28px, 42.7083333333vw, 36px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
}

.impact .title::before {
  display: flex;
  justify-content: center;
  content: "impact";
  color: #55161F;
  opacity: 8%;
  font-size: 12rem;
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -9.8rem;
  width: 115%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .impact .title::before {
    font-size: 12rem;
  }
}

.impact-flex-wrapper {
  max-width: 111.2rem;
  padding: 0 2.5rem;
  margin: 4.8rem auto 12.8rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 3.7rem;
}
@media screen and (max-width: 768px) {
  .impact-flex-wrapper {
    flex-direction: column;
  }
}

.impact-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 329px;
  border: 1px solid #55161F;
  border-radius: 20px;
  padding: 24px 0;
}

.impact-img {
  width: 56px;
}

.impact-card .text {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 24px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #000;
}

.impact-card .nambar {
  font-family: "Optima";
  font-weight: 700;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #55161F;
}

.article-fv {
  margin: 12.5rem 0 5rem;
}
@media screen and (max-width: 768px) {
  .article-fv {
    margin-top: 125px;
  }
}

.article-fv .fv-wrapper {
  max-width: 123rem;
  margin: 0 auto;
  padding: 0 2.8rem;
}

.article-fv .title {
  color: #55161F;
  font-family: Optima;
  font-weight: 700;
  font-size: clamp(58px, 7.5520833333vw, 72px);
  line-height: 100%;
  letter-spacing: 0;
  opacity: 8%;
  text-transform: uppercase;
}

.article-fv .sab-title {
  font-weight: 600;
  font-size: clamp(20px, 2.6041666667vw, 24px);
  line-height: 100%;
  letter-spacing: 0.2rem;
  margin-top: 18px;
}

.article-fv .category {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  justify-content: end;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 0.05rem;
  margin-top: 2rem;
}

.article-fv .category a:nth-child(3) {
  color: #55161F;
  -webkit-text-decoration: revert;
          text-decoration: revert;
}

.article-fv .fv-img {
  margin-top: 1.8rem;
}

.issues-wrapper {
  background-color: #55161F;
  padding: 10.7rem 0 8.8rem;
}

.issues .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.issues .title::before {
  display: flex;
  content: "issues";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 9.375vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1.8rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -1.8rem;
}

.issues .glid-items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  max-width: 123rem;
  margin: 14.4rem auto 0;
  padding: 0 2.8rem;
  gap: 7rem;
}
@media screen and (max-width: 768px) {
  .issues .glid-items {
    grid-template-columns: 1fr;
    gap: 16rem;
  }
}

.issues .glid-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 12px;
  position: relative;
  padding: 0 2.8rem 1.9rem;
}

.issues .number {
  font-weight: 600;
  font-size: clamp(72px, 9.375vw, 86px);
  line-height: 100%;
  letter-spacing: 0;
  background: linear-gradient(to bottom, #000 60%, #6D3B42 50%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: absolute;
  top: -16%;
}
@media screen and (max-width: 768px) {
  .issues .number {
    top: -14%;
  }
}

.issues .text {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
}

.issues .service {
  padding: 78px 0 285px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .issues .service {
    padding-bottom: 138px;
  }
}

.issues .service-items {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3rem;
  max-width: 108rem;
  margin: 0 auto;
  padding: 0 2.8rem;
}
@media screen and (max-width: 768px) {
  .issues .service-items {
    flex-direction: column;
  }
}

.issues .service-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.issues .service-img {
  width: 83px;
}

.issues .text-title {
  font-weight: 600;
  font-size: clamp(24px, 3.125vw, 28px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  margin-top: 2.4rem;
  text-transform: uppercase;
}

.issues .glid-title {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 58px;
  display: flex;
  flex-direction: column;
}

.issues .glid-title span {
  font-size: 20px;
}

.issues .text {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(15px, 1.8229166667vw, 16px);
  line-height: 30px;
  letter-spacing: 0.5px;
  margin-top: 16px;
}

.issues .footprints {
  width: 19.32rem;
  position: absolute;
  top: 108px;
  left: 55px;
}

.about-message {
  background-color: #55161F;
  padding: 6.8rem 2.8rem 9.4rem;
  position: relative;
  margin-bottom: -2px;
}

.about-message::before {
  display: block;
  content: "";
  width: 100%;
  height: 18.968rem;
  margin: auto;
  background-color: #55161F;
  position: absolute;
  top: -17.968rem;
  left: 0;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
}

.about-message .flex-box {
  justify-content: space-between;
  margin-top: 4.5rem;
}

.about-message .text-box {
  padding-top: 8px;
  width: 62.2rem;
}
@media screen and (max-width: 768px) {
  .about-message .text-box {
    width: 100%;
  }
}

.about-message .text-title {
  color: #fff;
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 4px;
}

.about-message .text:nth-child(n+2) {
  margin-top: 30px;
}

.members {
  background-color: #55161F;
  padding: 18rem 0 17rem;
  margin-bottom: 19rem;
  position: relative;
}

.members::before {
  display: block;
  content: "";
  width: 100%;
  height: 18.968rem;
  margin: auto;
  background-color: #55161F;
  position: absolute;
  bottom: -17.968rem;
  left: 0;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
}

.members .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.members .title::before {
  display: flex;
  content: "members";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -3.8rem;
}

.members .glid-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 3.9rem;
  max-width: 111.8rem;
  margin: 7.6rem auto 0;
  padding: 0 2.8rem 10px;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  .members .glid-cards {
    grid-template-columns: 1fr;
    gap: 12rem;
  }
}

.members .glid-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.members .name {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(28px, 3.6458333333vw, 32px);
  line-height: 32px;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.members .name-en {
  font-family: "Optima";
  font-weight: 400;
  font-size: clamp(18px, 2.34375vw, 20px);
  letter-spacing: 0;
  opacity: 24%;
  text-transform: uppercase;
  white-space: nowrap;
}

.members .post {
  color: #55161F;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 30px;
  letter-spacing: 0.06rem;
  background-color: #fff;
  border-radius: 8px;
  margin-top: 0.8rem;
  padding: 2px 14px;
  width: 153px;
  text-align: center;
}

.members .members-img {
  margin-top: 1.5rem;
}

.members .text {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  letter-spacing: 0.08rem;
  background-color: #fff;
  border-radius: 11px;
  padding: 12px 17px;
  margin-top: 1.6rem;
}

.members .biography {
  margin-top: 9px;
  width: 100%;
}

.members .biography-list {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 14px;
  line-height: 34px;
  letter-spacing: 0;
  width: 100%;
  display: flex;
  justify-content: initial;
  align-items: initial;
  border-bottom: 1px solid #fff;
  padding-right: 2rem;
}

.members .biography-list:nth-child(n+2) {
  margin-top: 9px;
}

.about-fs {
  max-width: 111.8rem;
  margin: 0 auto;
  padding: 9.2rem 2.8rem 9.2rem;
}

.about-fs .title {
  color: #000;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-fs .title::before {
  display: flex;
  content: "report";
  color: #55161F;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -2.8rem;
}

.about-fs .flex-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  max-width: 82.4rem;
  margin: 8.3rem auto 0;
}
@media screen and (max-width: 768px) {
  .about-fs .flex-box {
    flex-direction: column;
    gap: 4rem;
  }
}

.about-fs .detail-btn {
  margin-top: 0;
}

.about-fs .btn-door {
  right: 2.5rem;
}

.about-report {
  max-width: 111.8rem;
  margin: 0 auto;
  padding: 18.5rem 2.8rem 0;
}

.about-report .title {
  color: #000;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-report .title::before {
  display: flex;
  content: "report";
  color: #55161F;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -2.8rem;
}

.about-report .flex-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 5.9rem;
  margin-top: 8.8rem;
}
@media screen and (max-width: 768px) {
  .about-report .flex-box {
    flex-direction: column;
  }
}

.about-report .report-img {
  flex: 1;
}

.about-report .text-box {
  flex: 1;
}

.about-report .text {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.08rem;
  margin-bottom: -1.1rem;
}

.about-contact {
  padding: 0 2.8rem 0;
  margin: 13.6rem 0 128px;
}

.about-contact .contact-inner {
  background-color: #55161F;
  max-width: 117.4rem;
  margin: 0 auto;
  padding: 16.7rem 0 9.8rem;
  border-radius: 20px;
}

.about-contact .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.about-contact .title::before {
  display: flex;
  content: "contact";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -2.8rem;
}

.about-contact .contact-from {
  width: 57.5rem;
  height: 51.1rem;
  margin: 6.7rem auto 0;
  background-color: gray;
  text-align: center;
}

.about-contact .yellow-btn {
  margin-top: 3.2rem;
}

.about-contact .yellow-btn a {
  width: initial;
  height: initial;
  padding: 1.9rem 4rem;
}

.about-contact .yellow-btn .btn-yazirusi {
  right: 4.3rem;
}

.about-contact .yellow-btn a:hover .btn-yazirusi {
  right: 3.3rem;
}

.about-donation {
  padding: 6.5rem 0 11.4rem;
}

.concept {
  margin-top: 11.2rem;
  padding: 0 2.5rem;
  position: relative;
}

.concept .title {
  font-weight: 500;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  line-height: 100%;
  letter-spacing: 0.5rem;
  text-align: center;
}

.concept-img {
  width: 66.7rem;
  margin: 8rem auto 0;
  padding-left: 8.8rem;
}
@media screen and (max-width: 768px) {
  .concept-img {
    width: 100%;
  }
}

.concept-video {
  width: 74rem;
  height: 41.6rem;
  margin: 33px auto 0;
}
@media screen and (max-width: 768px) {
  .concept-video {
    width: 100%;
    height: auto;
  }
}

.concept-video video {
  width: 100%;
}

.concept .text-box {
  max-width: 106.2em;
  margin: 64px auto 0;
}
@media screen and (max-width: 768px) {
  .concept .text-box {
    max-width: initial;
  }
}

.concept .text {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.08rem;
}

.concept .flex-box-wrapper {
  max-width: 117.4rem;
  margin: 8.6rem auto 0;
}

.concept .flex-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 7.8rem;
  max-width: 121.4rem;
}
@media screen and (max-width: 768px) {
  .concept .flex-item {
    flex-direction: column;
    max-width: initial;
  }
}

.concept .flex-item:nth-child(2) {
  flex-direction: row-reverse;
  margin-top: 7rem;
  margin-right: 0;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .concept .flex-item:nth-child(2) {
    flex-direction: column;
    margin: auto;
  }
}

.concept .flex-item:nth-child(3) {
  margin-top: -6.5rem;
}
@media screen and (max-width: 768px) {
  .concept .flex-item:nth-child(3) {
    margin: auto;
    flex-direction: column;
  }
}

.concept .flex-item .flex-img {
  width: 484px;
  height: 217px;
  border-radius: 20px;
  overflow: hidden; /* はみ出た部分を隠す */
}

.concept .flex-item:nth-child(2) .flex-img {
  width: 489px;
  height: 253px;
}

.concept .flex-item:nth-child(3) .flex-img {
  width: 515px;
  height: 298px;
}

.concept .flex-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover; /* 画像をコンテナに合わせて拡大縮小＋トリミング */
  -o-object-position: center;
     object-position: center; /* 中央を基準にトリミング */
  display: block; /* 余計な隙間をなくす */
}

.concept .flex-item .text-box {
  margin-top: 0;
}

.concept .flex-item .text {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  flex: 1;
}

.features {
  max-width: 106.2rem;
  margin: 8.8rem auto 0;
}

.features .title {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: start;
  border-bottom: 1px solid #000;
}

.features .sab-title {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 24px;
  line-height: 36px;
  letter-spacing: 0;
  text-align: center;
  margin-top: 5.6rem;
}

.features .flex-list-wrapper {
  max-width: 88.9rem;
  margin: 4.5rem auto 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  gap: 6.4rem;
}
@media screen and (max-width: 768px) {
  .features .flex-list-wrapper {
    flex-direction: column;
    gap: 2rem;
  }
}

.features .flex-list-wrapper .flex-item:nth-child(2) {
  margin: initial;
}

.features .features-list {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.features .features-list::before {
  content: "";
  display: inline-block; /* ← flexアイテムのサイズを固定 */
  width: 10px;
  height: 10px;
  border: 2px solid #8b4513; /* $brownの代わり */
  border-radius: 50%;
  flex-shrink: 0; /* ← flexによる伸縮を防ぐ */
}

.features .features-list:nth-child(n+2) {
  margin-top: 2rem;
}

.global-voices {
  padding: 11.8rem 2.8rem 15.9rem;
}

.program {
  background-color: #55161F;
  padding: 16.6rem 2.8rem 8.2rem;
}

.program .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.program .title::before {
  display: flex;
  content: "members";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -3.8rem;
}

.program .program-content {
  max-width: 106.2rem;
  margin: 16rem auto 0;
}

.program .program-list {
  display: flex;
  justify-content: space-between;
  gap: 8.8rem;
  flex-direction: row;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 768px) {
  .program .program-list {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}

.program .program-list:nth-child(1)::before {
  display: block;
  content: "";
  width: 1px;
  height: 310rem;
  background-color: #8B515A;
  position: absolute;
  top: 0;
  left: 5rem;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .program .program-list:nth-child(1)::before {
    display: none;
  }
}

.program .program-list:nth-child(n+2) {
  margin-top: 5.6rem;
}

.program .step-numbar {
  color: #fff;
  font-family: "Optima";
  font-weight: 700;
  font-size: clamp(30px, 3.90625vw, 42px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  align-items: center;
  background-color: #8B515A;
  width: 100px;
  height: 100px;
  border-radius: 50%;
}

.program .step-numbar::after {
  display: block;
  content: "step";
  font-family: "Optima";
  font-weight: 700;
  font-size: clamp(18px, 2.34375vw, 21px);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: uppercase;
}

.program .content-wrapper {
  width: 87.4rem;
  margin: 0 auto;
  background-color: #fff;
  padding: 4.2rem 4.8rem 4.8rem;
  border-radius: 20px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .program .content-wrapper {
    width: 100%;
  }
}

.program .content-title {
  color: #000;
  font-weight: 600;
  font-size: clamp(28px, 3.6458333333vw, 36px);
  line-height: 100%;
  letter-spacing: 0.2rem;
}

.program .date-time {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(20px, 2.6041666667vw, 24px);
  line-height: 30px;
  letter-spacing: 0.1rem;
  margin-top: 1.9rem;
}

.program .date-time span {
  font-family: "Optima";
  font-weight: 400;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0;
}

.program .flex-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  gap: 5rem;
  max-width: 77.8rem;
  margin: 4.1rem auto 0;
}
@media screen and (max-width: 768px) {
  .program .flex-box {
    flex-direction: column;
    max-width: 100%;
  }
}

.program .program-img {
  aspect-ratio: 461/320;
}

.program .text-box {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 26rem;
  padding: 13.2rem 0;
  margin-right: 1.9rem;
}
@media screen and (max-width: 768px) {
  .program .text-box {
    width: 100%;
  }
}

.program .text {
  color: #000;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(20px, 2.6041666667vw, 22px);
  line-height: 100%;
  letter-spacing: 0;
}

.program .text:nth-child(2) {
  font-size: clamp(16px, 2.0833333333vw, 18px);
  letter-spacing: 0;
  margin-top: 1.2rem;
}

.program .program-list:nth-child(3) .date-time:nth-child(4) {
  margin-top: 4.2rem;
}

.program .program-list:nth-child(3) .text {
  font-size: 20px;
}

.overview {
  background-color: #55161F;
  padding: 16.6rem 2.8rem 8.2rem;
  margin-top: -1px;
}

.overview .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.overview .title::before {
  display: flex;
  content: "overview";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -3.8rem;
}

.overview .overview-lists {
  max-width: 106.2rem;
  margin: 15.6rem auto 0;
}

.overview .overview-list {
  border-bottom: 1px solid #fff;
  padding-bottom: 2rem;
  margin-bottom: 44px;
}

.overview .overview-list:nth-child(n+3) {
  padding-bottom: 20px;
}

.overview .overview-list dl {
  display: flex;
  align-items: center;
  gap: 3rem;
}
@media screen and (max-width: 768px) {
  .overview .overview-list dl {
    flex-direction: column;
  }
}

.overview .overview-list dt {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 700;
  font-size: 20px;
  line-height: 30px;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 2;
}
@media screen and (max-width: 768px) {
  .overview .overview-list dt {
    width: 100%;
  }
}

.overview .overview-list dt span {
  font-weight: 500;
  font-size: 14px;
}

.overview .overview-list dd {
  display: flex;
  flex-direction: column;
  gap: 9px;
  flex: 4;
}
@media screen and (max-width: 768px) {
  .overview .overview-list dd {
    width: 100%;
  }
}

.san-overview .overview-list:nth-child(5) dd {
  gap: 25px;
}

.overview .overview-list dd .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0.05rem;
}

.overview .overview-list dd .kome {
  font-size: 14px;
}

.overview .overview-list dd .text-box {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0;
}

.overview .overview-list dd .text-box dt {
  font-weight: 500;
  font-size: 16px;
}

.san-overview .overview-list:nth-child(7) .text:nth-child(5) {
  margin-top: 2rem;
}

.application {
  padding: 8.3rem 2.8rem 14.3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.application .title {
  color: #000;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
}

.application .application-lists {
  margin-top: 9.2rem;
}

.application .application-list {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(20px, 2.6041666667vw, 24px);
  line-height: 30px;
  letter-spacing: 0;
}

.application .yellow-btn {
  margin-top: 3.7rem;
}

.application .yellow-btn a {
  width: initial;
  height: initial;
  padding: 19px 40px 19px 19px;
}

.global-schedule {
  margin-top: 7.2rem;
}

.global-schedule .setumeikai-inner {
  margin-bottom: 0;
}

.global-schedule .setumeikai-bg-img {
  background-image: url(../img/concenpt-schedule-bg-img.png);
}

.global-schedule .setumeikai-lists {
  margin-top: 3rem;
}

.global-schedule .btn-flex-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2.8rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .global-schedule .btn-flex-wrapper {
    flex-direction: column;
  }
}

.global-information {
  margin-top: 7.2rem;
}

.global-information .setumeikai-inner {
  margin-bottom: 0;
}

.global-information .setumeikai-bg-img {
  background-image: url(../img/global-info-bg-img.png);
}

.global-information .setumeikai-lists {
  margin-top: 3rem;
}

.global-information .btn-flex-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.8rem;
  margin-top: 1rem;
}
@media screen and (max-width: 768px) {
  .global-information .btn-flex-wrapper {
    flex-direction: column;
  }
}

.world-concept {
  background-color: #55161F;
  padding: 0 2.8rem 9.4rem;
  position: relative;
  margin-top: 17rem;
}

.world-concept::before {
  display: block;
  content: "";
  width: 100%;
  height: 18.968rem;
  margin: auto;
  background-color: #55161F;
  position: absolute;
  top: -17.968rem;
  left: 0;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  z-index: -1;
}

.world-concept .world-inner {
  max-width: 106.2rem;
  margin: 0 auto;
}

.world-concept .title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  line-height: 100%;
  letter-spacing: 8%;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.world-concept .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  text-align: center;
  margin: 25px auto 0;
  max-width: 86.5rem;
}

.world-concept .flex-box-wrapper {
  max-width: 106.2rem;
  margin: 12.6rem auto 0;
}

.world-concept .flex-list:nth-child(n+2) {
  margin-top: 7.2rem;
}
@media screen and (max-width: 768px) {
  .world-concept .flex-list:nth-child(n+2) {
    margin-top: 12rem;
  }
}

.world-concept .flex-title {
  color: #fff;
  font-weight: 600;
  font-size: 36px;
  line-height: 100%;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.world-concept .flex-box-wrapper .flex-list:nth-of-type(2n+2) .flex-title {
  text-align: end;
}
@media screen and (max-width: 768px) {
  .world-concept .flex-box-wrapper .flex-list:nth-of-type(2n+2) .flex-title {
    text-align: start;
  }
}

.world-concept .flex-box {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: center;
  gap: 7.3rem;
  margin-top: 4.4rem;
}
@media screen and (max-width: 768px) {
  .world-concept .flex-box {
    flex-direction: column;
  }
}

.world-concept .flex-box-wrapper .flex-list:nth-of-type(2n+2) .flex-box {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .world-concept .flex-box-wrapper .flex-list:nth-of-type(2n+2) .flex-box {
    flex-direction: column;
  }
}

.world-concept .flex-box .message-img {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .world-concept .flex-box .message-img {
    width: 100%;
  }
}

.world-concept .flex-box .text-box {
  flex: 1.4;
}
@media screen and (max-width: 768px) {
  .world-concept .flex-box .text-box {
    flex: 1;
  }
}

.world-concept .flex-box .text {
  text-align: start;
  margin-top: 0;
}

.comparison {
  background-color: #55161F;
  padding: 15.3rem 2.8rem 12.2rem;
  margin-bottom: 18rem;
  position: relative;
}

.comparison::before {
  display: block;
  content: "";
  width: 100%;
  height: 18.968rem;
  margin: auto;
  background-color: #55161F;
  position: absolute;
  bottom: -17.968rem;
  left: 0;
  border-radius: 0 0 50% 50%/0 0 100% 100%;
}

.comparison .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.comparison .title::before {
  display: flex;
  content: "comparison";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -3.8rem;
}

.comparison-img {
  max-width: 117.4rem;
  margin: 4rem auto 0;
}

.schecule {
  background-color: #55161F;
  padding: 15.3rem 2.8rem 7.2rem;
}

.schecule .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.schecule .title::before {
  display: flex;
  content: "schecule";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -3.8rem;
}

.schecule .schecule-list-wrapper {
  max-width: 106.2rem;
  margin: 0 auto;
}

.schecule-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 6.9rem;
  padding: 4rem 0.1rem;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  .schecule-list {
    flex-direction: column;
  }
}

.date-day {
  background-color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1.7rem;
  width: 245px;
  padding: 1rem 2.1rem;
  border-radius: 20px;
}

.schecule .date {
  color: #55161F;
  font-family: "Optima";
  font-weight: 700;
  font-style: Bold;
  font-size: clamp(30px, 3.90625vw, 36px);
  line-height: 100%;
  letter-spacing: 0;
}

.schecule .date span {
  font-size: clamp(38px, 4.9479166667vw, 56px);
}

.schecule .day-box {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.schecule .day {
  color: #55161F;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #55161F;
}

.schecule .day-en {
  color: #55161F;
  font-family: "Optima";
  font-weight: 700;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  text-transform: capitalize;
}

.schecule .text-box {
  flex: 1;
}

.schecule .text-title {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(20px, 2.6041666667vw, 26px);
  line-height: 30px;
  letter-spacing: 0;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.schecule .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
}

.schecule .schecule-img {
  flex: 1.5;
}

.schecule .am-box, .pm-box {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
  width: 80.1rem;
  height: 4.6rem;
  border: 1px solid #fff;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.san-francisco-schecule .text {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(20px, 2.6041666667vw, 26px);
  line-height: 30px;
  letter-spacing: 0;
  margin: 1.6rem 0 2.8rem;
}

.faq {
  background-color: #55161F;
  padding: 15.3rem 2.8rem 7.2rem;
}

.faq .title {
  color: #fff;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.faq .title::before {
  display: flex;
  content: "faq";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -3.8rem;
}

.accordion {
  max-width: 119.4rem;
  margin: 4rem auto 0;
  font-family: sans-serif;
}

.accordion-item {
  background: #fff;
  margin-bottom: 2.8rem;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.accordion-question {
  display: flex;
  align-items: center;
  gap: 3.2rem;
  padding: 4rem 5.6rem;
  cursor: pointer;
  position: relative;
}

.accordion-question p {
  flex: 1;
  font-weight: bold;
  font-weight: 600;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0;
}

.accordion-answer {
  display: none;
  padding: 0 5.6rem 4rem;
  align-items: center;
  gap: 3.2rem;
  transition: all 0.3s ease;
}

.accordion-item.active .accordion-answer {
  display: flex;
}

.icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 40px;
  font-weight: bold;
  flex-shrink: 0;
}

.icon-circle.q {
  background-color: #622c2c;
  color: white;
  font-family: "Optima";
  font-weight: 700;
  font-size: clamp(28px, 3.6458333333vw, 36px);
  line-height: 100%;
  letter-spacing: 0;
}

.icon-circle.a {
  border: 1px solid #622c2c;
  color: #622c2c;
  font-family: "Optima";
  font-weight: 700;
  font-size: clamp(28px, 3.6458333333vw, 36px);
  line-height: 100%;
  letter-spacing: 0;
}

.accordion-answer p {
  font-weight: 600;
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.6rem;
}

.arrow {
  width: 12px;
  height: 12px;
  border-right: 2px solid #333;
  border-bottom: 2px solid #333;
  transform: rotate(45deg);
  margin-left: auto;
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-answer {
  display: flex;
}

.accordion-item.active .arrow {
  transform: rotate(-135deg);
}

.world-applicatio {
  padding: 10rem 2.8rem 13.4rem;
}

.world-applicatio .application-wrapper {
  max-width: 117.4rem;
  height: 368px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .world-applicatio .application-wrapper {
    height: 500px;
  }
}

.world-applicatio .application-bgc-img {
  background-image: url(../img/world-boston-applicatio.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}

.world-applicatio .application-bgc-ire-img {
  background-image: url(../img/world-ireland-applicatio.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}

.world-applicatio .application-bgc-san-img {
  background-image: url(../img/world-sanfrancisco-applicatio.png);
  background-position: center;
  background-size: cover;
  border-radius: 20px;
}

.world-applicatio .title {
  color: #fff;
  font-weight: 600;
  font-size: clamp(32px, 4.1666666667vw, 40px);
  line-height: 100%;
  letter-spacing: 0;
}

.world-applicatio .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: clamp(20px, 2.6041666667vw, 24px);
  line-height: 30px;
  letter-spacing: 0;
  margin-top: 2rem;
}

.world-applicatio .btn-flex-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .world-applicatio .btn-flex-wrapper {
    flex-direction: column;
  }
}

.world-applicatio .yellow-btn {
  margin-top: 5rem;
}

.world-applicatio .yellow-btn a {
  width: initial;
  height: initial;
  padding: 19px 24px 19px 19px;
}

.world-applicatio .yellow-btn a span {
  font-size: 20px;
}

.world-applicatio .yellow-btn .btn-yazirusi {
  right: 24px;
}

.world-applicatio .yellow-btn .btn-yazirusi:hover {
  right: 10px;
}

.recruitment {
  padding: 15.3rem 2.8rem 7.2rem;
}

.recruitment .title {
  color: #000;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.41rem;
  display: flex;
  justify-content: center;
  position: relative;
}

.recruitment .title::before {
  display: flex;
  content: "";
  color: #fff;
  opacity: 8%;
  font-size: clamp(72px, 11.71875vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -3.8rem;
}

.btn-flex-warapper {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 2.8rem;
}
@media screen and (max-width: 768px) {
  .btn-flex-warapper {
    flex-direction: column;
  }
}

.recruitment .white-btn {
  margin-top: 4.3rem;
}

.recruitment .white-btn a {
  color: #55161F;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
  padding: 19px 29px;
  border: 1px solid #55161F;
  width: initial;
  transition: 0.5s;
}

.recruitment .white-btn a:hover {
  color: #fff;
  background-color: #55161F;
}

.setumeikai-inner {
  max-width: 106.2rem;
  margin: 0 auto;
  padding: 4.8rem 2.8rem;
}

.setumeikai-bg-img {
  border-radius: 20px;
  background-image: url(../img/setumeikai-bg-img.png);
  background-position: center;
  background-size: cover;
}

.setumeikai .title {
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.setumeikai .title span {
  font-family: "Optima";
  font-weight: 700;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 4px;
  text-transform: uppercase;
}

.setumeikai-lists {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.setumeikai-list {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 25px;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #FFD83E;
}

.komezirusi-text {
  font-family: "DNP ShueiGoGinStd";
  font-weight: 600;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 8%;
  text-align: center;
  color: #FFD83E;
  margin-top: 30px;
}

.setumeikai .yellow-btn {
  margin-top: 28px;
}

.setumeikai .yellow-btn a {
  width: initial;
  height: initial;
  padding: 19px 24px 19px 19px;
}

.setumeikai .yellow-btn .btn-yazirusi {
  right: 24px;
}

.society {
  background-color: #55161F;
  padding: 10rem 2.5rem;
  margin-top: -1px;
}

.society-inner {
  max-width: 106.2rem;
  margin: 0 auto;
}

.society .title {
  color: #fff;
}

.society .text {
  color: #fff;
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0;
}

.coming-contents {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 12px;
  line-height: 30px;
  letter-spacing: 5%;
  text-align: center;
  margin-top: 124px;
  margin-bottom: 100px;
}

.coming-contents .text {
  color: #000;
}

.coming-contents .text:nth-child(2) {
  margin-top: 40px;
}

.contact-form {
  max-width: 106.2rem;
  margin: 10rem auto;
  padding: 0 2.5rem;
}

.contact-form .title {
  display: flex;
  flex-direction: column;
}

.contact-form .title span {
  color: #55161F;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08rem;
  line-height: 30px;
}

.contact-form .text {
  color: #000;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08rem;
  line-height: 30px;
  text-transform: capitalize;
}

.address {
  color: #000;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 300;
  font-family: "Noto Sans JP";
  letter-spacing: 0.08rem;
  line-height: 30px;
}

.flex-item svg {
  width: 24px;
  height: 24px;
}

.flex-item svg path {
  fill: #55161F;
}

.sns-list a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.email {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.flex-box-wrapper {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 4rem;
  flex-wrap: wrap;
}

/* single-voices ページ全体 */
.single-voices {
  background-color: #fff;
  padding: 20.8rem 2.8rem 9.4rem;
}
.single-voices .voices-single {
  max-width: 117.4rem;
  margin: 0 auto;
}

/* タイトル */
.voice-title {
  color: #000;
  font-size: clamp(32px, 4.1666666667vw, 48px);
  font-weight: 550;
  letter-spacing: 0.61rem;
  text-align: center;
  margin-bottom: 4.8rem;
  position: relative;
}
.voice-title::before {
  display: flex;
  content: "voice";
  color: #55161F;
  opacity: 8%;
  font-size: clamp(72px, 9.375vw, 150px);
  font-weight: 700;
  font-family: "Optima";
  letter-spacing: 1.2rem;
  text-transform: uppercase;
  position: absolute;
  bottom: -1.8rem;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}

/* アイキャッチ画像 */
.voice-image {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto 6rem;
  border-radius: 8px;
  overflow: hidden;
}
.voice-image img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* メタ情報（サービス・留学先など） */
.voice-meta {
  max-width: 80rem;
  margin: 0 auto 6rem;
}
.voice-meta dl {
  display: flex;
  gap: 2.1rem;
  margin-bottom: 1.9rem;
  align-items: center;
}
.voice-meta dt {
  color: #55161F;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 30px;
  border: 1px solid #000;
  border-radius: 4rem;
  width: 120px;
  height: 34px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.voice-meta dd {
  color: #000;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-weight: 500;
  font-family: "Noto Sans JP";
  line-height: 30px;
}

/* 本文 */
.voice-content {
  max-width: 80rem;
  margin: 0 auto 6rem;
  color: #000;
  font-size: clamp(16px, 2.0833333333vw, 18px);
  font-family: "Noto Sans JP";
  line-height: 1.8;
}

/* 一覧に戻るボタン */
.back-to-archive {
  text-align: center;
}
.back-to-archive a {
  display: inline-block;
  padding: 1.2rem 3.2rem;
  border: 1px solid #000;
  border-radius: 4rem;
  font-size: clamp(14px, 1.8229166667vw, 16px);
  font-family: "Noto Sans JP";
  font-weight: 500;
  color: #000;
  text-decoration: none;
  transition: all 0.3s ease;
}
.back-to-archive a:hover {
  background-color: #55161F;
  color: #fff;
  border-color: #55161F;
}

.u-desktop {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (max-width: 768px) {
  .u-mobile {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */