@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "Zen Kaku Gothic New", sans-serif;
}

a {
  pointer-events: auto;
  transition: opacity 0.3s;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

/* スタイルを当てやすいように追加 */
picture,
img,
a,
span {
  display: inline-block;
}

a {
  color: inherit;
  text-decoration: none;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

input,
textarea,
select {
  font: inherit;
}

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

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

body {
  color: #293639;
  background: #ffffff;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 16px;
}

html,
body {
  overflow-x: hidden;
}

.inner {
  width: 1280px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .inner {
    padding-inline: 16px;
    width: 100%;
  }
}

.btn {
  display: flex;
  align-items: center;
  -moz-column-gap: 55px;
       column-gap: 55px;
  -webkit-padding-after: 20px;
          padding-block-end: 20px;
  -webkit-border-after: 2px solid #075e72;
          border-block-end: 2px solid #075e72;
  font-size: 15px;
  font-weight: 700;
  line-height: 120%;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #075e72;
  cursor: pointer;
}
.btn img {
  width: 24px;
  height: 24px;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .btn {
    width: 300px;
    justify-content: space-between;
  }
}
@media (any-hover: hover) {
  .btn:hover img {
    scale: 1.33333;
  }
}

.section-title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.section-title-en {
  font-family: "EB Garamond", serif;
  font-size: 120px;
  color: #293639;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 767px) {
  .section-title-en {
    font-size: 58px;
  }
}

.section-title-ja {
  font-family: "Zen Old Mincho", serif;
  color: #293639;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
}
@media (max-width: 767px) {
  .section-title-ja {
    font-size: 16px;
    -webkit-margin-before: 16px;
            margin-block-start: 16px;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
}
.section-title-ja::before {
  content: "";
  display: block;
  width: 80px;
  height: 1px;
  background: #cccccc;
}
@media (max-width: 767px) {
  .section-title-ja::before {
    width: 48px;
  }
}

.animation-fade {
  opacity: 0;
  transition: opacity 0.5s ease;
}
.animation-fade.is-show {
  opacity: 1;
}

.animation-left {
  -webkit-clip-path: inset(0 100% 0 0);
          clip-path: inset(0 100% 0 0);
  opacity: 0;
  transition: opacity 0.8s ease, -webkit-clip-path 0.8s ease;
  transition: clip-path 0.8s ease, opacity 0.8s ease;
  transition: clip-path 0.8s ease, opacity 0.8s ease, -webkit-clip-path 0.8s ease;
  will-change: clip-path, opacity;
}
.animation-left.is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1;
}

.animation-right {
  -webkit-clip-path: inset(0 0 0 100%);
          clip-path: inset(0 0 0 100%);
  opacity: 0;
  transition: opacity 0.8s ease, -webkit-clip-path 0.8s ease;
  transition: clip-path 0.8s ease, opacity 0.8s ease;
  transition: clip-path 0.8s ease, opacity 0.8s ease, -webkit-clip-path 0.8s ease;
  will-change: clip-path, opacity;
}
.animation-right.is-show {
  -webkit-clip-path: inset(0 0 0 0);
          clip-path: inset(0 0 0 0);
  opacity: 1;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  height: auto;
  padding-block: 32px;
  background: #f5f5f5;
  color: #ffffff;
  z-index: 9999;
  transition: all 0.3s ease;
}
@media (max-width: 767px) {
  .header {
    padding-block: 16px;
  }
}

.header.is-scrolled {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0px 4px 20px 0px rgba(41, 54, 57, 0.1);
  padding-block: 24px;
  color: #293639;
}

.header-inner {
  padding-inline: 56px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1100px) {
  .header-inner {
    padding-inline: 40px;
  }
}
@media (max-width: 767px) {
  .header-inner {
    padding-inline: 16px;
  }
}

.header-logo a {
  font-family: "EB Garamond", serif;
  font-size: 32px;
  font-weight: 500;
  color: #293639;
  line-height: 100%;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  .header-logo a:hover :hover {
    opacity: 0.8;
  }
}
@media (any-hover: hover) and (max-width: 1100px) {
  .header-logo a {
    font-size: 24px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (max-width: 1100px) {
  .header-nav {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
@media (max-width: 767px) {
  .header-nav {
    display: none;
  }
}

.header-list {
  display: flex;
  align-items: center;
  -moz-column-gap: 48px;
       column-gap: 48px;
}
@media (max-width: 1100px) {
  .header-list {
    -moz-column-gap: 20px;
         column-gap: 20px;
  }
}
.header-list .header-list li {
  position: relative;
  display: inline-block;
  padding: 5px 0;
}
.header-list li a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #293639;
  line-height: 120%;
  text-decoration: none;
  position: relative;
  display: inline-block;
}

.header-list li a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  width: 0;
  height: 1px;
  background-color: #293639;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease, width 0.3s ease;
}

.header-list li:hover a::after {
  width: 100%;
  transform: translateX(-50%) scaleX(1);
}

.header-contact {
  padding: 15px 32px;
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
  letter-spacing: 0.3px;
  border: 1px solid #293639;
  color: #293639;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header-contact:hover {
    background: #293639;
    color: #ffffff;
  }
}
@media (max-width: 1100px) {
  .header-contact {
    padding: 16px 20px;
  }
}

.header-icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #293639;
  padding: 4px;
}
@media (min-width: 768px) {
  .header-icon {
    display: none;
  }
}
.header-icon .header-icon-bar-wrap {
  width: 100%;
  height: 100%;
  padding-inline: 9px 7px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  row-gap: 2px;
}
.header-icon .header-icon-bar1 {
  width: 8px;
  height: 1px;
  background: #ffffff;
}
.header-icon .header-icon-bar2 {
  width: 8px;
  height: 1px;
  background: #ffffff;
}
.header-icon .header-icon-bar3 {
  width: 6px;
  height: 1px;
  background: #ffffff;
}

@media (max-width: 767px) {
  .header.is-drawer-open {
    background: #ffffff;
    box-shadow: 0px 4px 20px 0px rgba(41, 54, 57, 0.1);
    transition: all 0.3s ease;
  }
  .header.is-drawer-open .header-logo a {
    color: #293639;
  }
  .header.is-drawer-open .header-icon {
    border: 1px solid #ffffff;
  }
  .header.is-drawer-open .header-icon-bar1 {
    width: 8px;
    background: #ffffff;
    rotate: 45deg;
    translate: -1px 1.5px;
  }
  .header.is-drawer-open .header-icon-bar2 {
    display: none;
  }
  .header.is-drawer-open .header-icon-bar3 {
    width: 8px;
    background: #ffffff;
    rotate: -45deg;
    translate: -1px -1.5px;
  }
}
.drawer {
  position: fixed;
  z-index: 9990;
  top: -100%;
  left: 0;
  width: 100%;
  height: 100vh;
  background: #f3f3f3;
  padding-block: 106px 140px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.drawer.is-drawer-open {
  top: 0;
  opacity: 1;
  visibility: visible;
}

.drawer-inner {
  padding-inline: 47.5px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}

.drawer-nav {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
}

.drawer-list {
  display: flex;
  flex-direction: column;
  row-gap: 24px;
}
.drawer-list li a {
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  line-height: 120%;
  -webkit-padding-after: 24px;
          padding-block-end: 24px;
  -webkit-border-after: 1px solid #dddddd;
          border-block-end: 1px solid #dddddd;
}

.drawer-contact {
  padding-block: 20px;
  width: 100%;
  background: #075e72;
  color: #ffffff;
  font-size: 13px;
  font-weight: 500;
  line-height: 120%;
  text-align: center;
  border-radius: 2px;
}

.fv {
  position: relative;
  width: 100%;
  background: #f5f5f5;
  overflow: hidden;
  padding-left: 27.7777777778vw;
}
@media (max-width: 767px) {
  .fv {
    padding-left: 20.5128205128vw;
  }
}

.fv-image {
  width: 100%;
  height: auto;
  aspect-ratio: 1040/640;
  margin-top: 112px;
}
@media (max-width: 767px) {
  .fv-image {
    aspect-ratio: 310/504;
    margin-top: 66px;
  }
}

.fv-swiper-container,
.swiper.fv-swiper,
.fv-swiper-wrapper {
  width: 100%;
  height: 100%;
}

.fv-swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transform: scale(1.1);
  transition: transform 2s ease;
}

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

.swiper-pagination.fv-pagination {
  position: absolute !important;
  top: 60% !important;
  right: 24px !important;
  width: auto !important;
  left: auto !important;
  transform: translateY(-50%) !important;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
  z-index: 10;
}

.swiper-pagination.fv-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #ffffff;
  background: transparent;
  opacity: 1;
  border-radius: 50%;
  transition: border 0.3s;
}

.swiper-pagination.fv-pagination .swiper-pagination-bullet-active {
  background: #ffffff;
}

.fv-inner {
  position: absolute;
  top: 19.0277777778vw;
  left: 0;
  color: #293639;
  z-index: 8000;
}
@media (max-width: 767px) {
  .fv-inner {
    top: 52.8205128205vw;
  }
}

@-webkit-keyframes underline-grow {
  to {
    width: 13.8888888889vw;
  }
}

@keyframes underline-grow {
  to {
    width: 13.8888888889vw;
  }
}
@-webkit-keyframes underline-grow-sp {
  to {
    width: 12.3076923077vw;
  }
}
@keyframes underline-grow-sp {
  to {
    width: 12.3076923077vw;
  }
}
.fv-title {
  position: relative;
  display: inline-block;
  overflow: hidden;
  font-family: "EB Garamond", serif;
  font-weight: 600;
  font-size: 3.3333333333vw;
  line-height: 160%;
  padding-bottom: 1.6666666667vw;
  margin-bottom: 2.2222222222vw;
  padding-left: 9.0277777778vw;
}
.fv-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #293639;
  -webkit-animation: underline-grow 0.8s ease forwards;
          animation: underline-grow 0.8s ease forwards;
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}
@media (max-width: 767px) {
  .fv-title {
    font-size: 6.1538461538vw;
    padding-bottom: 6.1538461538vw;
    margin-bottom: 6.1538461538vw;
    padding-left: 6.1538461538vw;
  }
  .fv-title::after {
    -webkit-animation: underline-grow-sp 0.8s ease forwards;
            animation: underline-grow-sp 0.8s ease forwards;
    -webkit-animation-delay: 0.8s;
            animation-delay: 0.8s;
  }
}

.fv-title .line {
  display: block;
  opacity: 0;
  transform: translateY(30px);
  -webkit-animation: fadeUp 1s ease forwards;
          animation: fadeUp 1s ease forwards;
}
.fv-title .line span {
  color: #ffffff;
}

.fv-title .line:nth-child(1) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.fv-title .line:nth-child(2) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.fv-title .line:nth-child(3) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

@-webkit-keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fv-subtitle {
  font-family: "Zen Old Mincho", serif;
  font-weight: 500;
  font-style: Medium;
  font-size: 1.25vw;
  line-height: 160%;
  -webkit-padding-start: 8.3333333333vw;
          padding-inline-start: 8.3333333333vw;
  opacity: 0;
  transform: translateY(20px);
  -webkit-animation: fadeUp 1s ease 1s forwards;
          animation: fadeUp 1s ease 1s forwards;
}
.fv-subtitle span {
  color: #ffffff;
}
@media (max-width: 767px) {
  .fv-subtitle {
    font-size: 3.3333333333vw;
    -webkit-padding-start: 5.3846153846vw;
            padding-inline-start: 5.3846153846vw;
  }
}

.concept {
  padding-top: 180px;
  background: #f5f5f5;
}
@media (max-width: 767px) {
  .concept {
    padding-top: 120px;
    overflow: hidden;
  }
}

.concept-inner {
  position: relative;
}
@media (max-width: 767px) {
  .concept-inner {
    width: 100%;
    max-width: 500px;
  }
}

.concept-image {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50%;
  width: calc(100% - 80px);
  z-index: 1;
}
.concept-image img {
  display: block;
  width: 100%;
  height: auto;
  transform: scale(1.1);
  transition: transform 2s ease;
}
@media (max-width: 767px) {
  .concept-image {
    width: calc(100% + 24px);
  }
}

.concept-container {
  position: relative;
  z-index: 2;
  padding-block: 160px 86px;
}
@media (max-width: 767px) {
  .concept-container {
    padding-block: 48px 0;
  }
}

.concept-text-wrap {
  padding-left: 120px;
  width: 678px;
}
@media (max-width: 999px) {
  .concept-text-wrap {
    padding-left: 32px;
    width: 500px;
  }
}
@media (max-width: 767px) {
  .concept-text-wrap {
    padding-left: 16px;
    width: 80%;
  }
}

.concept-head {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-style: Bold;
  font-size: 28px;
  line-height: 180%;
  letter-spacing: 0%;
  margin-bottom: 32px;
}
@media (max-width: 767px) {
  .concept-head {
    font-size: 20px;
    margin-bottom: 24px;
  }
}

.concept-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: Regular;
  font-size: 18px;
  line-height: 300%;
  letter-spacing: 0%;
}
@media (max-width: 767px) {
  .concept-text {
    font-size: 15px;
    line-height: 240%;
  }
}

.concept-title {
  position: absolute;
  top: 168px;
  right: 0;
  rotate: 90deg;
}
@media (max-width: 999px) {
  .concept-title {
    right: -80px;
  }
}
@media (max-width: 767px) {
  .concept-title {
    top: 48px;
    right: -50px;
  }
}

.ranking {
  padding-block: 154px 160px;
  background: #f5f5f5;
}
@media (max-width: 999px) {
  .ranking {
    padding-block: 120px 100px;
  }
}

.ranking-inner {
  max-width: 100%;
}

.ranking-title-wrap {
  display: flex;
  gap: 40px;
  margin-left: 120px;
}
@media (max-width: 999px) {
  .ranking-title-wrap {
    margin-left: 16px;
    gap: 16px;
  }
}
@media (max-width: 399px) {
  .ranking-title-wrap {
    gap: 0;
  }
}

.ranking-title {
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 120px;
  line-height: 100%;
  flex-shrink: 0;
}

.ranking-title-side {
  margin-top: 33px;
  font-family: "EB Garamond", serif;
  font-weight: 400;
  font-size: 38px;
  line-height: 100%;
}
@media (max-width: 767px) {
  .ranking-title-side {
    margin-top: 11px;
    font-size: 18px;
  }
}
@media (max-width: 389px) {
  .ranking-title-side {
    font-size: 16px;
    white-space: nowrap;
  }
}

.ranking-items {
  margin-top: 48px;
  display: flex;
  flex-direction: column;
  row-gap: 160px;
}
@media (max-width: 999px) {
  .ranking-items {
    row-gap: 80px;
  }
}

.ranking-item {
  display: flex;
  -moz-column-gap: 64px;
       column-gap: 64px;
  padding-right: 120px;
  cursor: pointer;
}
@media (max-width: 1140px) {
  .ranking-item {
    -moz-column-gap: 32px;
         column-gap: 32px;
  }
}
@media (max-width: 999px) {
  .ranking-item {
    flex-direction: column;
    position: relative;
  }
}
@media (max-width: 767px) {
  .ranking-item {
    padding-right: 16px;
  }
}
.ranking-item:nth-of-type(even) {
  flex-direction: row-reverse;
  padding-right: 0;
  padding-left: 120px;
}
@media (max-width: 999px) {
  .ranking-item:nth-of-type(even) {
    flex-direction: column;
  }
  .ranking-item:nth-of-type(even) .ranking-info-num {
    right: unset;
    left: 0;
  }
}
@media (max-width: 767px) {
  .ranking-item:nth-of-type(even) {
    padding-left: 16px;
  }
}
@media (any-hover: hover) {
  .ranking-item:hover .ranking-image img {
    transform: scale(1.1);
  }
  .ranking-item:hover .ranking-info-inner {
    opacity: 0.8;
  }
}

.ranking-image {
  width: auto;
  height: auto;
  aspect-ratio: 800/540;
}
@media (max-width: 999px) {
  .ranking-image {
    -webkit-margin-after: 24px;
            margin-block-end: 24px;
    aspect-ratio: 358/250;
    order: 2;
  }
}
.ranking-image img {
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0 4px 4px 0;
  transition: transform 0.5s ease;
}

.ranking-item:nth-of-type(2) .ranking-image img {
  border-radius: 4px 0 0 4px;
}

.ranking-info {
  width: 31.6666666667vw;
  height: 37.5vw;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (max-width: 1140px) {
  .ranking-info {
    width: 400px;
  }
}
@media (max-width: 999px) {
  .ranking-info {
    display: contents;
    width: 100%;
    height: auto;
    padding-inline: 16px;
  }
}

.ranking-info-num {
  font-family: "EB Garamond", serif;
  text-align: right;
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}
@media (max-width: 999px) {
  .ranking-info-num {
    font-size: 50px;
    order: 1;
    position: absolute;
    top: -30px;
    right: 125px;
    z-index: 100;
    text-shadow: 2px 2px 2px hsla(0deg, 0%, 100%, 0.5);
  }
}
@media (max-width: 767px) {
  .ranking-info-num {
    font-size: 50px;
    order: 1;
    position: absolute;
    top: -30px;
    right: 18px;
    z-index: 100;
    text-shadow: 2px 2px 2px hsla(0deg, 0%, 100%, 0.5);
  }
}

@media (max-width: 999px) {
  .ranking-item:nth-of-type(even) .ranking-info-num {
    top: -30px;
    left: 125px;
    z-index: 100;
    text-shadow: 2px 2px 2px hsla(0deg, 0%, 100%, 0.5);
  }
}
@media (max-width: 767px) {
  .ranking-item:nth-of-type(even) .ranking-info-num {
    left: 18px;
  }
}

.ranking-info-inner {
  transition: opacity 0.5s ease;
}
@media (max-width: 999px) {
  .ranking-info-inner {
    padding-inline: 16px;
    order: 3;
  }
}

.ranking-info-tag {
  color: #ffffff;
  padding: 8px 12px;
  background: #075e72;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 2px;
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%; /* 13px */
  letter-spacing: 0.52px;
  -webkit-margin-after: 8px;
          margin-block-end: 8px;
}
@media (max-width: 999px) {
  .ranking-info-tag {
    font-size: 12px;
  }
}

.ranking-info-title {
  font-family: "Zen Old Mincho", serif;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
  -webkit-margin-after: 8px;
          margin-block-end: 8px;
}
@media (max-width: 999px) {
  .ranking-info-title {
    font-size: 20px;
  }
}

.ranking-info-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 160%;
  -webkit-margin-after: 40px;
          margin-block-end: 40px;
}
@media (max-width: 999px) {
  .ranking-info-text {
    font-size: 15px;
  }
}

@media (max-width: 999px) {
  .ranking-btn {
    margin-inline: auto;
  }
}

.what {
  -webkit-padding-before: 160px;
          padding-block-start: 160px;
}
@media (max-width: 767px) {
  .what {
    -webkit-padding-before: 100px;
            padding-block-start: 100px;
  }
}

.what-inner {
  -webkit-padding-after: 160px;
          padding-block-end: 160px;
}
@media (max-width: 767px) {
  .what-inner {
    -webkit-padding-after: 100px;
            padding-block-end: 100px;
  }
}

.what-title {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin: 0 auto;
}
.what-title .section-title-ja {
  -webkit-margin-after: 17px;
          margin-block-end: 17px;
}
@media (max-width: 900px) {
  .what-title {
    flex-direction: column;
    align-items: flex-start;
    -webkit-margin-after: 0;
            margin-block-end: 0;
  }
}

.what-swiper-container,
.swiper.what-swiper,
.what-swiper-wrapper {
  width: 100%;
  height: 100%;
}

.what-swiper-container {
  position: relative;
}

.what-swiper .swiper-wrapper {
  position: relative;
  margin-top: 80px;
  display: flex;
  transition-timing-function: ease;
  z-index: 150;
}

.what-swiper .swiper-slide {
  flex-shrink: 0;
  width: auto;
}

.what-swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}

.swiper .what-swiper {
  overflow: visible;
  padding: 0 20px;
}

.what-swiper,
.what-swiper .swiper-wrapper {
  width: 100%;
}

.what-swiper .swiper-slide {
  width: 370px;
  height: 480px;
  flex-shrink: 0;
  background: #f5f5f5;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  z-index: 80;
}
.what-swiper .swiper-slide:hover .what-card-img img {
  transform: scale(1.1);
  transition: transform 0.5s ease;
}
.what-swiper .swiper-slide:hover .what-card-bottom {
  opacity: 0.8;
  transition: opacity 0.3s ease;
}
.what-swiper .swiper-slide:hover .what-card-btn img {
  scale: 1.33333;
}

.what-swiper .swiper-slide:nth-of-type(even) {
  background-color: #ebf3f5;
}

.swiper-pagination.what-pagination {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  left: auto;
  display: flex;
  gap: 8px;
  z-index: 10;
  align-items: flex-end;
  margin-left: 120px;
  z-index: 100;
}

.swiper-pagination.what-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  border: 1px solid #293639;
  background: transparent;
  opacity: 1;
  border-radius: 50%;
  transition: border 0.3s;
}

.swiper-pagination.what-pagination .swiper-pagination-bullet-active {
  background: #293639;
}

@media (max-width: 767px) {
  .what-items {
    margin-top: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    row-gap: 8px;
    padding-inline: 16px;
  }
}

.what-items .what-item:nth-of-type(even) {
  background-color: #ebf3f5;
  border-radius: 4px;
}

.what-item {
  width: 326px;
  padding-inline: 16px;
  margin: 0 auto;
  background-color: #f5f5f5;
  border-radius: 4px;
}
@media (any-hover: hover) {
  .what-item :hover .what-card-img {
    transform: scale(1.1);
  }
  .what-item :hover .what-card-head {
    opacity: 0.8;
  }
  .what-item :hover .what-card-tag-wrap {
    opacity: 0.8;
  }
}
@media (max-width: 767px) {
  .what-item {
    width: 358px;
    padding: 16px;
  }
}

.what-card {
  display: block;
  border-radius: 4px;
}

.what-card-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  transition: opacity 0.3s ease;
}

.what-card-country-en {
  font-family: "EB Garamond", serif;
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
}

.what-card-country-ja {
  color: #075e72;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 160%;
}

.what-card-img {
  -webkit-margin-before: 24px;
          margin-block-start: 24px;
  width: 220px;
  height: 220px;
  margin-inline: auto;
}
.what-card-img img {
  transition: transform 0.5s ease;
  transform: scale(1);
}

.what-card-bottom {
  display: grid;
  grid-template-columns: 1fr 24px;
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: flex-end;
  -webkit-margin-before: 59px;
          margin-block-start: 59px;
}

.what-card-tag-wrap {
  transition: opacity 0.3s ease;
}

.what-card-tag {
  font-size: 13px;
  font-weight: 500;
  line-height: 160%;
}

.what-card-btn {
  width: 24px;
  height: 24px;
  transition: scale 0.3s ease;
}

.what-btn {
  position: relative;
  margin-top: 40px;
  margin-left: auto;
  margin-right: 120px;
  z-index: 150;
}
@media (max-width: 767px) {
  .what-btn {
    margin: 40px auto;
  }
}
@media (any-hover: hover) {
  .what-btn :hover img {
    scale: 1.33333;
  }
}

.what-bottom-bar {
  width: 83.3333333333vw;
  border: 1px solid #cccccc;
  margin: 0 auto;
}

.report {
  padding-block: 160px 240px;
  background: #ffffff;
}
@media (max-width: 999px) {
  .report {
    padding-block: 100px;
  }
}

.report-title {
  display: flex;
  align-items: flex-end;
  -moz-column-gap: 24px;
       column-gap: 24px;
  margin-inline: auto;
}
.report-title .section-title-ja {
  -webkit-margin-after: 17px;
          margin-block-end: 17px;
}
@media (max-width: 999px) {
  .report-title {
    -webkit-margin-start: 0;
            margin-inline-start: 0;
    -moz-column-gap: 12px;
         column-gap: 12px;
  }
  .report-title .section-title-ja {
    -webkit-margin-after: 7px;
            margin-block-end: 7px;
  }
}

.report-item-wrap {
  display: flex;
  gap: 120px;
  margin-top: 48px;
}
@media (max-width: 999px) {
  .report-item-wrap {
    width: 100%;
    flex-direction: column;
  }
}

.report-large {
  position: relative;
  max-width: 520px;
  width: 100%;
}
.report-large::after {
  content: "";
  position: absolute;
  width: 1px;
  height: 575px;
  background: #dadee2;
  top: 0;
  right: -60px;
}
@media (any-hover: hover) {
  .report-large:hover .large-img img {
    scale: 1.1;
  }
}
@media (max-width: 999px) {
  .report-large {
    display: none;
  }
}

.large-img {
  width: 100%;
  height: auto;
  aspect-ratio: 520/390;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 999px) {
  .large-img {
    display: none;
  }
}
.large-img img {
  transition: scale 0.3s ease;
}

.report-info-large {
  margin-top: 24px;
  transition: opacity 0.3s ease;
}

.report-info {
  transition: opacity 0.3s ease;
}
@media (max-width: 999px) {
  .report-info {
    max-width: 700px;
    width: 100%;
    margin-top: 16px;
  }
}

.report-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  -webkit-margin-after: 8px;
          margin-block-end: 8px;
}

.report-tag-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
}

.report-tag {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  text-align: center;
  padding: 6px 10px;
  border-radius: 2px;
  background: #075e72;
  color: #ffffff;
}

.report-date {
  color: #999999;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.report-info-title {
  font-family: "Zen Old Mincho", serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 160%;
  margin-bottom: 8px;
}

.report-info-text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media (max-width: 999px) {
  .report-info-text {
    font-size: 15px;
    -webkit-line-clamp: 3;
  }
}

.report-img {
  max-width: 358px;
  width: 77%;
  height: auto;
  aspect-ratio: 220/165;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 4px;
  overflow: hidden;
}
@media (max-width: 999px) {
  .report-img {
    width: 100%;
    aspect-ratio: 358/240;
  }
}
.report-img img {
  transition: scale 0.3s ease;
}

.report-items {
  max-width: 560px;
  width: 100%;
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin: 0 auto;
}
@media (max-width: 999px) {
  .report-items {
    width: 100%;
    padding-block: 0;
    border: none;
    row-gap: 40px;
  }
}

@media (any-hover: hover) {
  .report-item:hover .report-img img {
    scale: 1.1;
  }
  .report-item:hover .report-info {
    opacity: 0.8;
  }
}

@media (min-width: 999px) {
  .report-items li:first-child {
    display: none;
  }
}
.report-link {
  max-width: 100%;
  width: 38.8888888889vw;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
@media (max-width: 999px) {
  .report-link {
    flex-direction: column;
    width: 100%;
    -moz-column-gap: 16px;
         column-gap: 16px;
  }
}
@media (max-width: 389px) {
  .report-link {
    width: 91.7948717949vw;
  }
}

.report-btn {
  -webkit-margin-before: 80px;
          margin-block-start: 80px;
  margin-inline: auto;
}
@media (max-width: 999px) {
  .report-btn {
    -webkit-margin-before: 48px;
            margin-block-start: 48px;
  }
}

.sns {
  -webkit-padding-before: 132px;
          padding-block-start: 132px;
  background: #ffffff;
}
@media (max-width: 767px) {
  .sns {
    -webkit-padding-before: 60px;
            padding-block-start: 60px;
  }
}

.sns-container {
  position: relative;
}

.sns-title {
  position: absolute;
  z-index: 2;
  top: 34px;
  right: -166px;
  rotate: 90deg;
}
@media (max-width: 767px) {
  .sns-title {
    top: 16px;
    right: -76px;
  }
}

.sns-info {
  -webkit-padding-end: 180px;
          padding-inline-end: 180px;
  position: relative;
}
@media (max-width: 767px) {
  .sns-info {
    -webkit-padding-end: 40px;
            padding-inline-end: 40px;
  }
}

.sns-bg {
  position: relative;
  display: block;
  width: 100%;
}
@media (min-width: 768px) {
  .sns-bg {
    height: 510px;
  }
}
.sns-bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.sns-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 70%, rgb(255, 255, 255) 100%);
}

.sns-icons {
  position: absolute;
  top: 50%;
  translate: 0 -50%;
  left: 161px;
  display: flex;
  align-items: center;
  -moz-column-gap: 100px;
       column-gap: 100px;
}
@media (max-width: 1350px) {
  .sns-icons {
    left: 80px;
    -moz-column-gap: 50px;
         column-gap: 50px;
  }
}
@media (max-width: 1070px) {
  .sns-icons {
    flex-direction: column;
    row-gap: 16px;
    align-items: flex-start;
  }
}
@media (max-width: 767px) {
  .sns-icons {
    left: 32px;
  }
}

.sns-icon {
  display: flex;
  align-items: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 0.72px;
}
.sns-icon img {
  width: 48px;
}
@media (max-width: 767px) {
  .sns-icon {
    font-size: 16px;
    letter-spacing: 0.64px;
  }
  .sns-icon img {
    width: 32px;
  }
}

.faq {
  padding-block: 200px 160px;
  overflow: visible;
  position: relative;
}
@media (max-width: 1260px) {
  .faq {
    padding-block: 120px 100px;
  }
}

.faq-inner {
  width: 1040px;
  max-width: 100%;
  margin-inline: auto;
  padding-inline: 40px;
}
@media (max-width: 767px) {
  .faq-inner {
    padding-inline: 16px;
  }
}

.faq-title {
  display: flex;
  align-items: end;
  -moz-column-gap: 24px;
       column-gap: 24px;
  position: absolute;
  left: -188px;
  top: 380px;
  rotate: 90deg;
}
.faq-title .section-title-ja {
  -webkit-margin-after: 12px;
          margin-block-end: 12px;
}
@media (max-width: 1260px) {
  .faq-title {
    position: relative;
    top: unset;
    left: unset;
    rotate: unset;
    -webkit-margin-after: 72px;
            margin-block-end: 72px;
  }
}
@media (max-width: 767px) {
  .faq-title {
    -webkit-margin-after: 48px;
            margin-block-end: 48px;
  }
}

.faq-items {
  max-width: 960px;
  width: 100%;
  display: flex;
  flex-direction: column;
  -webkit-border-before: 1px solid #cccccc;
          border-block-start: 1px solid #cccccc;
}

.faq-item {
  padding-block: 48px;
  border-bottom: 1px solid #cccccc;
}
.faq-item-question {
  width: calc(100% - 24px);
  position: relative;
  display: block;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 160%;
  color: #293639;
}
.faq-item-question:hover {
  cursor: pointer;
  opacity: 0.8;
}
.faq-item-question .faq-btn {
  position: absolute;
  top: 16%;
  right: -24px;
  width: 18px;
  height: 18px;
  transform-origin: center center;
  transition-duration: 0.2s;
}
@media (max-width: 767px) {
  .faq-item-question .faq-btn {
    right: -24px;
  }
}
.faq-item-question .faq-btn:before, .faq-item-question .faq-btn:after {
  content: "";
  background-color: #293639;
  border-radius: 10px;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 8px;
  left: 0;
  transform-origin: center center;
}
.faq-item-question .faq-btn:before {
  width: 2px;
  height: 18px;
  top: 0;
  left: 8px;
}
.faq-item-question.is-active .faq-btn {
  transform: rotate(180deg);
}
.faq-item-question.is-active .faq-btn:before {
  content: none;
}
@media (max-width: 767px) {
  .faq-item-question {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 16px;
  }
}

.details-summary::-webkit-details-marker {
  display: none;
}

.faq-item-answer {
  width: calc(100% - 42px);
  padding-top: 32px;
}
.faq-item-answer p {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  color: #293639;
}
@media (max-width: 767px) {
  .faq-item-answer p {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 400;
    font-size: 15px;
  }
}

.contact {
  padding-block: 160px;
  background: #ebf3f5;
}
@media (max-width: 767px) {
  .contact {
    padding-block: 100px;
  }
}

.contact-inner {
  width: 830px;
  padding-inline: 40px;
  max-width: 100%;
  margin-inline: auto;
}
@media (max-width: 999px) {
  .contact-inner {
    width: 100%;
  }
}
@media (max-width: 767px) {
  .contact-inner {
    padding-inline: 16px;
  }
}

.contact-title {
  margin-inline: auto;
  text-align: center;
}
.contact-title .section-title-ja {
  justify-content: center;
}
.contact-title .section-title-ja::before {
  display: none;
}

.contact-form {
  -webkit-margin-before: 64px;
          margin-block-start: 64px;
}
@media (max-width: 767px) {
  .contact-form {
    -webkit-margin-before: 48px;
            margin-block-start: 48px;
  }
}

.contact-row {
  display: flex;
}
@media (max-width: 999px) {
  .contact-row {
    flex-direction: column;
  }
}

.contact-row + .contact-row {
  -webkit-margin-before: 32px;
          margin-block-start: 32px;
}

.contact-head {
  width: 320px;
  display: flex;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 160%;
  -webkit-margin-after: 8px;
          margin-block-end: 8px;
}
@media (max-width: 767px) {
  .contact-head {
    font-size: 15px;
  }
}

.contact-must {
  padding: 4px 8px;
  color: #ffffff;
  background: #075e72;
  border-radius: 2px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 10px;
  line-height: 100%;
  vertical-align: middle;
}

.contact-data {
  width: 100%;
}
.contact-data input,
.contact-data select,
.contact-data textarea {
  max-width: 100%;
  width: 525px;
  border: none;
  background: #ffffff;
  padding: 16px;
  border-radius: 2px;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 100%;
}
@media (max-width: 999px) {
  .contact-data input,
.contact-data select,
.contact-data textarea {
    width: 100%;
  }
}
.contact-data input:focus,
.contact-data select:focus,
.contact-data textarea:focus {
  outline: 2px solid #cccccc;
}
.contact-data input::-moz-placeholder, .contact-data select::-moz-placeholder, .contact-data textarea::-moz-placeholder {
  color: #999999;
}
.contact-data input::placeholder,
.contact-data select::placeholder,
.contact-data textarea::placeholder {
  color: #999999;
}

select {
  color: #999999;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.contact-select-wrap {
  position: relative;
}
.contact-select-wrap svg {
  position: absolute;
  top: calc(50% + 2px);
  translate: 0 -50%;
  right: 16px;
  width: 10px;
  height: auto;
  pointer-events: none;
  color: #293639;
}

textarea {
  height: 180px;
  resize: vertical;
}

.contact-acceptance {
  margin-top: 32px;
  text-align: center;
}
.contact-acceptance label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
}
.contact-acceptance span a {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 100%;
  color: #075e72;
  text-decoration: underline;
}

.contact-acceptance input {
  margin: 0;
}

.contact-acceptance.multiline {
  align-items: flex-start;
}

/* デフォルトのチェックボックスは非表示 */
#acceptance {
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #999999;
  background-color: #ffffff;
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

/* チェックマーク */
#acceptance:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 12px;
  border: solid #999999;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type=submit],
input[type=button] {
  border-radius: 0px;
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
  background: transparent;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

.row.jc-center {
  justify-content: center;
}

.contact-submit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  -webkit-margin-before: 56px;
          margin-block-start: 56px;
  display: flex;
  -webkit-border-after: 2px solid #075e72;
          border-block-end: 2px solid #075e72;
  position: relative;
}
@media (any-hover: hover) {
  .contact-submit:hover .contact-submit-icon {
    scale: 1.3;
  }
}

.contact-submit input {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  -webkit-padding-after: 20px;
          padding-block-end: 20px;
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  color: #075e72;
  width: 154px;
  text-align: left;
}
@media (max-width: 767px) {
  .contact-submit input {
    width: 300px;
  }
}

.contact-submit-icon {
  position: absolute;
  right: 0;
  top: -3px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: #075e72;
  transition: all 0.3s ease;
}

.thanks {
  height: 50vh;
}

.thanks-inner {
  margin: 120px auto;
  max-width: 600px;
  padding-inline: 16px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

.thanks-title {
  font-family: EB Garamond;
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
}

.thanks-text {
  font-family: Zen Kaku Gothic New;
  font-weight: 400;
  font-size: 15px;
  line-height: 160%;
  letter-spacing: 0%;
  margin-top: 30px;
}

.btn.thanks-btn {
  margin: 30px auto;
}

.contact-error-message {
  color: #cc1b1b;
  font-size: 13px;
  font-style: normal;
  font-weight: 500;
  line-height: 160%;
  -webkit-margin-before: 8px;
          margin-block-start: 8px;
}

input.invalid,
textarea.invalid {
  outline: 1px solid #cc1b1b;
}

.footer {
  background: #293639;
  padding-block: 80px;
}
@media (max-width: 767px) {
  .footer {
    padding-block: 40px;
  }
}

.copyright {
  text-align: center;
  font-family: "EB Garamond", serif;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  line-height: 160%;
}