@charset "UTF-8";
.btn2 a:hover {
  color: #000;
}

.btn {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.8em 5em;
  color: #000;
  border: 2px solid #000;
  border-radius: 0;
  background: #fff;
  text-decoration: none;
}

.btn span {
  font-size: 1.2em;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  pointer-events: none; /* ホバーイベントを無効にする */
}

.btn::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #0080ff;
  /* -webkit-transition: all 0.5s ease-in-out; */
  transition: all 0.5s ease-in-out;
  /* -webkit-transform: translateX(-96%); */
  transform: translateX(-96%);
  z-index: 0;
}

.btn:hover::before {
  /* -webkit-transform: translateX(0%); */
  transform: translateX(0%);
}

.btn::after {
  position: absolute;
  right: 1em;
  content: ">";
  font-size: 1.2em;
  font-weight: 900;
}

/* btn2 -------------------------------------------------------------------------------- */
.btn2 {
  position: relative;
  display: inline-block;
  overflow: hidden;
  padding: 0.8em 2em;
  color: #000;
  border: 1px solid #000;
  border-radius: 0;
  background: #fff;
  text-decoration: none;
  border-radius: 5px;
}

.btn2 span {
  font-size: 1.2em;
  font-weight: 600;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  pointer-events: none; /* ホバーイベントを無効にする */
}

.btn2::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: #0080ff;
  opacity: 0; /* 初期状態は透明 */
  transition: opacity 0.5s ease-in-out;
  z-index: 0;
}

.btn2:hover::before {
  opacity: 1; /* ホバー時にフェードイン */
}

/* ナビゲーションpill関係 -------------------------------------------------------------------------------- */
.nav-pills .nav-link.active {
  border: 1px solid #000;
  background-color: #0080ff;
  color: #000;
  pointer-events: none; /* ホバーイベントを無効にする */
}

.nav-pills .nav-link {
  position: relative;
  border: 1px solid #000;
  background-color: #ffffff;
  color: #000;
}

.nav-pills .nav-link::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  border: 1px solid rgba(0, 0, 0, 0);
  border-radius: 2px;
  background: #0080ff;
  opacity: 0; /* 初期状態は透明 */
  transition: opacity 0.3s ease-in-out;
  z-index: 0;
}

.nav-pills .nav-link:hover::before {
  opacity: 1; /* ホバー時にフェードイン */
}

.nav-pills .nav-link span {
  font-size: 1em;
  font-weight: 500;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  pointer-events: none; /* ホバーイベントを無効にする */
}

.html-saneban .h1 {
  font-size: calc(1.5em + 1.2vw) !important;
}
.html-saneban .h2 {
  font-size: calc(1.325em + 0.9vw) !important;
}
.html-saneban .h3 {
  font-size: calc(1.3em + 0.6vw) !important;
}
.html-saneban .h4 {
  font-size: calc(1.2em + 0.3vw) !important;
}
.html-saneban .h5 {
  font-size: calc(1.2em + 0.1vw) !important;
}
.html-saneban .h6 {
  font-size: calc(1em + 0.05vw) !important;
}

body,
html {
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
}

.h1,
.h2,
.h3,
.h4 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: bold;
}

.h5,
.h6 {
  color: #000;
  font-family: "Noto Sans JP", sans-serif !important;
  font-weight: 700;
}

.bg-gray {
  background-color: #f5f6f8;
}

.p-global-header-logo,
.p-global-header-logo-item,
.p-global-header-description {
  margin-bottom: 0;
  padding-bottom: 0;
}

.headline {
  padding-top: 180px;
}

.text-black {
  color: #000 !important;
}

@media screen and (max-width: 1199px) {
  .headline {
    padding-top: 100px;
  }
}
.subject-en {
  display: block;
  font-family: "Crimson Pro", sans-serif;
  font-size: 4.25em;
  color: black;
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  .subject-en {
    font-size: 3em;
  }
}

.subject-ja {
  display: block;
  font-family: "Noto Serif JP", "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.125em;
  color: black;
  letter-spacing: 0.25em;
  line-height: 1.1;
  margin-bottom: 0;
}

.point-num {
  position: absolute;
  top: -7.5em;
  left: 0px;
  z-index: -1;
  color: rgba(0, 0, 0, 0);
  font-weight: 900;
  font-size: 6em;
  transform: rotate(-10deg);
  font-weight: bold;
  -webkit-text-stroke: 2px #000;
}

.text-red {
  font-size: 1.2em;
  color: #e73c3c;
}

.card-date {
  font-size: 0.9em;
  font-weight: 500;
  color: #4b4b4b;
}

.highlight {
  background: linear-gradient(to bottom, transparent 70%, #ffff80 30%);
}

.bg-img-cover {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-img-contain {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.bg-img-repeat {
  background-repeat: repeat;
  background-size: auto;
}

.zoom {
  transition: transform 0.2s ease-in-out;
}

.zoom:hover {
  transform: scale(1.03);
}

.white-filter {
  transition: filter 0.3s ease-in-out;
}

.white-filter:hover {
  filter: brightness(1.2);
}

.price-text-small {
  font-size: 1.3em;
  font-weight: 500;
  color: #da2028;
  letter-spacing: -0.9;
  text-align: right;
}

.zoom-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.zoom-target {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1);
}

.zoom-animate {
  animation: zoomInOnly 15s ease-out forwards;
  will-change: transform;
}

@keyframes zoomInOnly {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* 50%の暗さ */
  z-index: 1;
}

.text-compact {
  display: -webkit-box;
  display: box; /* 古い仕様向け（念のため） */
  overflow: hidden;
  text-overflow: ellipsis;
  /* 行制限 */
  -webkit-line-clamp: 3;
  line-clamp: 3; /* 将来の標準に備えて */
  -webkit-box-orient: vertical;
  box-orient: vertical;
  flex-grow: 1;
}

.maincatch {
  font-size: 1.6rem;
}
.maincatch * {
  font-size: 1em;
}
.maincatch .catch {
  width: 90%;
  display: block;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.5rem !important;
  font-weight: 800;
  letter-spacing: 0.15em;
  line-height: 1.3 !important;
}
@media screen and (min-width: 1701px) {
  .maincatch .catch {
    font-size: 2.5vw !important;
  }
}
@media screen and (max-width: 768px) {
  .maincatch .catch {
    padding: 0 15px;
    font-size: 3rem !important;
    letter-spacing: 0.1em !important;
    line-height: 1.3 !important;
  }
}
.maincatch .catch .catch-sub {
  font-size: 2.5rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  line-height: 1.5;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .maincatch .catch .catch-sub {
    font-size: 1.6rem;
    line-height: 1.2;
  }
}

.subcatch {
  font-size: 1.6rem;
}
.subcatch * {
  font-size: 1em;
}
.subcatch .catch {
  width: 90%;
  display: block;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 4.5rem !important;
  font-weight: 800;
  letter-spacing: 0em;
  line-height: 1.3 !important;
}
@media screen and (min-width: 1701px) {
  .subcatch .catch {
    font-size: 2.5vw !important;
  }
}
@media screen and (max-width: 768px) {
  .subcatch .catch {
    padding: 0 15px;
    font-size: 3rem !important;
    letter-spacing: 0em !important;
  }
}
.subcatch .catch .catch-sub {
  font-size: 2.5rem !important;
  font-weight: 300;
  letter-spacing: 0.03em;
  line-height: 1.5 !important;
  margin-top: 0.5em;
}
@media screen and (max-width: 768px) {
  .subcatch .catch .catch-sub {
    font-size: 1.6rem !important;
    line-height: 1.2;
  }
}

.feature-icon {
  font-size: 2rem;
  color: #007bff;
}

.benefit-card {
  border: none;
  border-radius: 0;
}
.benefit-card .img {
  border-radius: 0;
}

.testimonial {
  background: #f8f9fa;
  padding: 1.5rem;
  border-left: 4px solid #007bff;
  margin-bottom: 1.5rem;
}

.testimonial img {
  max-width: 100px;
  border-radius: 50%;
}

.maintitle {
  font-weight: bold !important;
}

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