/*
  var関数で呼び出す（以下例）
  .button {
  background-color: var(--Black);
  }
  */

@font-face {
  font-family: "MOBO";
  src: url("../font/MOBO-Regular.woff2") format("woff2"), url("../font/MOBO-Regular.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MOBO";
  src: url("../font/MOBO-Bold.woff2") format("woff2"), url("../font/MOBO-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "MOBO";
  src: url("../font/MOBO-SemiBold.woff2") format("woff2"), url("../font/MOBO-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

html {
  scroll-behavior: smooth;
}
.mobo-regular {
  font-family: "MOBO", sans-serif;
  font-weight: 400;
}

.mobo-semi-bold {
  font-family: "MOBO", sans-serif;
  font-weight: 600;
}
.mobo-bold {
  font-family: "MOBO", sans-serif;
  font-weight: 700;
}

.noto-sans-jp-100 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 100;
}
.noto-sans-jp-regular {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.noto-sans-jp-bold {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
.zen-old-mincho-regular {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.font-brandon {
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
}

.brandon-thin {
  font-weight: 100;
}

.brandon-regular {
  font-weight: 400;
}

.brandon-bold {
  font-weight: 700;
}

.font-helvetica {
  font-family: "helvetica-lt-pro", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.font-helvetica-neue {
  font-family: "helvetica-neue-lt-pro", sans-serif;
  font-weight: 300;
  font-style: normal;
}
.helvetica-neue-thin {
  font-weight: 300;
}
.helvetica-neue-regular {
  font-weight: 400;
}
.font-minion-pro {
  font-family: "minion-pro", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-regular {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}

.shippori-mincho-medium {
  font-family: "Shippori Mincho", serif;
  font-weight: 500;
  font-style: normal;
}

.shippori-mincho-semibold {
  font-family: "Shippori Mincho", serif;
  font-weight: 600;
  font-style: normal;
}

.shippori-mincho-bold {
  font-family: "Shippori Mincho", serif;
  font-weight: 700;
  font-style: normal;
}

.shippori-mincho-extrabold {
  font-family: "Shippori Mincho", serif;
  font-weight: 800;
  font-style: normal;
}

.pattern-dot-bg {
  background-image: url("../assets/svg/dot_bg.svg");
  background-repeat: repeat;
  background-size: 15.5px auto;
  background-position: 0 31px;
}
@media (min-width: 768px) {
  .pattern-dot-bg {
    background-size: 31px auto;
    background-position: 0 62px;
  }
  .pattern-dot-bg.study {
    background-image: none !important;
    background-repeat: initial !important;
    background-size: auto !important;
    background-position: initial !important;
  }
}

.pc-br-display,
.image-pc,
.pc-display {
  display: none;
}
.sp-br-display,
.image-sp,
.sp-display {
  display: block;
}

@media (min-width: 768px) {
  .pc-br-display,
  .image-pc,
  .pc-display {
    display: block;
  }
  .sp-br-display,
  .image-sp,
  .sp-display {
    display: none;
  }
}
/*-------------------------------readmore----------------------------------------*/
.read-more-block {
  margin: 2em 0;
  position: relative;
}

.read-more-content {
  height: 550px; /* 初期表示の高さ */
  overflow: hidden;
  transition: height 0.4s ease;
  position: relative;
}
@media (min-width: 768px) {
  .read-more-content {
    height: 500px; /* 初期表示の高さ */
  }
}
/* グラデーションのフェードアウト効果 */
.read-more-content::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background: linear-gradient(rgba(255, 255, 255, 0), #fff);
  pointer-events: none;
  transition: opacity 0.3s;
}

/* is_openのときグラデーションを非表示に */
.read-more-content.is_open::after {
  opacity: 0;
}

.read-more-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 164px;
  height: 21px;
  color: #514f4f;
  border: 1px solid #857878;
  font-size: 9px;
  text-decoration: none;
  margin: 24px auto 0;
  font-family: "Open Sans Condensed";
  transition: background-color 0.3s;
  letter-spacing: 2.3px;
}
@media (min-width: 768px) {
  .read-more-toggle {
    width: 220px;
    height: 50px;
    font-size: 13px;
    margin: 64px auto 320px;
    border-radius: 25px;
    color: #0087a5;
    border: 1px solid #0087a5;
    font-family: brandon-grotesque, sans-serif;
    font-style: normal;
    font-weight: 700;
  }
}

.return {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 8px;
  bottom: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease, transform 0.5s ease;
  transform: translateY(20px);
  z-index: 1001;
}

.return-top {
  width: 39px;
  height: auto;
  display: grid;
  place-content: center;
}
@media (min-width: 768px) {
  .return {
    right: 10px;
    bottom: 48px;
    width: 200px;
  }
  .return-top {
    width: 78px;
  }
}
.return.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.allitem-view {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 6px;
  bottom: 56px;
  width: 43px;
  z-index: 1001;
}

@media (min-width: 768px) {
  .allitem-view {
    right: 10px;
    bottom: 185px;
    width: 200px;
  }
}

.return-top img {
  width: 100%;
  height: auto;
}

.allitem-view img {
  width: 78px;
}

/*-------------------------------readmore----------------------------------------*/

.wrapper,
.product-wrapper {
  margin-top: 50px;
  width: 100%;
  position: relative;
}
.product-wrapper {
  background-image: url("../assets/svg/dot_bg.svg");
  background-repeat: repeat;
  background-size: 15.5px auto;
  background-position: 0 31px;
}

@media (min-width: 768px) {
  .wrapper,
  .product-wrapper {
    margin: 100px auto 0;
    /* max-width: 1260px; */
    /* width: 1260px; */
    background: none;
  }
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;
  -webkit-transition: -webkit-transform 0.4s ease;
  transition: -webkit-transform 0.4s ease;
  transition: transform 0.4s ease;
  transition: transform 0.4s ease, -webkit-transform 0.4s ease;
}

.fixed-header.fixed-header--unpinned {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}

.gradient-blue-bg {
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.2) 0px, rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(to bottom, transparent 0px, transparent 9px, rgba(255, 255, 255, 0.2) 9px, rgba(255, 255, 255, 0.2) 10px), linear-gradient(to bottom, #00395e 0%, #0066a1 20%, #008dd3 50%, #029de4 75%, #00a7ec 100%);
}

.gradient-box {
  width: 100%;
}

@media (min-width: 768px) {
  .gradient-box {
    position: relative; /* ← これが必要！ */
    max-width: 1260px;
    margin: 0 auto;
  }
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  height: 100%;
  padding: 0 16px;
  height: 50px;
  position: relative;
}

@media (min-width: 768px) {
  .header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    height: 100%;
    padding: 0 50px;
    height: 100px;
  }
}
.spacer {
  flex: 1;
}
.header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper svg {
  width: 105px;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .logo-wrapper svg {
    width: 166px;
    height: auto;
    display: block;
  }
}

.icons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 32px;
}

.cart-wrapper {
  display: none;
}

@media (min-width: 768px) {
  .cart-wrapper {
    display: block;
  }
}

.cart-wrapper svg {
  width: 36px;
  height: auto;
  display: block;
}

.menu-wrapper svg {
  width: 32px;
  height: auto;
  display: block;
}
@media (min-width: 768px) {
  .menu-wrapper svg {
    width: 52px;
    height: auto;
    display: block;
  }
}

/*---------------------- menu ----------------------*/
/* 共通スタイル */
.slide-menu {
  background: rgba(0, 102, 161, 0.9);
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  padding: 20px 0;
  position: absolute;
  top: 50px;
  right: 0;
  height: auto;
  z-index: 1000;
  transform: translateX(100%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s ease, opacity 0.4s ease, visibility 0.4s ease;
}
.slide-menu.active {
  transform: translateX(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu-item {
  display: flex;
  align-items: center;
  position: relative;
  height: 80px;
}

.menu-item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 2px;
  width: 100%;
  background-image: radial-gradient(circle, rgba(0, 0, 0, 0.8) 1px, transparent 1px);
  background-size: 4px 2px;
  background-repeat: repeat-x;
  background-position: bottom center;
}

.icon-circle {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-circle svg {
  width: 20px;
  height: 20px;
  fill: #192b5f;
}

.menu-en {
  font-family: "brandon-grotesque", sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #273756;
}

.menu-ja {
  font-weight: 700;
  color: #fff;
}

/* モバイル（〜766px） */
@media screen and (max-width: 766px) {
  .slide-menu {
    width: 50%;
  }

  .menu-item {
    padding: 10px;
  }

  .icon-circle {
    margin-right: 10px;
  }

  .menu-text a {
    display: flex;
    flex-direction: column;
    color: #fff;
    text-decoration: none;
  }

  .menu-en {
    font-size: clamp(14px, 2vw, 18px);
  }

  .menu-ja {
    font-size: clamp(12px, 1.5vw, 14px);
  }
}

/* PC（767px〜） */
@media screen and (min-width: 767px) {
  .slide-menu {
    width: 420px;
    top: 100px;
    position: absolute;
    right: 0;
  }

  .menu-item {
    padding: 20px;
  }

  .icon-circle {
    margin-right: 20px;
  }

  .menu-text a {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 10px; /* オプション: 横並び時の間隔 */
    text-decoration: none;
  }

  .menu-en {
    font-size: 18px;
    width: 140px;
  }

  .menu-ja {
    font-size: 14px;
  }
}

/*---------------------- main ----------------------*/

.catchphrase-main {
  font-family: "MOBO", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #fff;
}

.description-vertical,
.description-vertical svg {
  width: auto;
  height: 195px;
  fill: #fff;
}
.brand-logo-area {
  display: none;
}

.brand-logo-area svg {
  fill: #fff;
}

.hero-section {
  width: 100%;
  position: relative;
  /* height: 680px; */
  margin-bottom: 15px;
}
.hero-section-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 450px;
  text-align: center;
  gap: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  pointer-events: none;
}

.visual-slider .swiper-slide {
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
}

.visual-slider {
  height: 450px;
}
.visual-slider .swiper-pagination {
  display: none;
}

.video {
  margin: 94px auto 0;
  width: calc(100% - 50px);
  height: auto;
}

#play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 1rem;
  padding: 0.5em 1em;
  background: rgba(243, 5, 5, 0.6);
  color: #fff;
  border: none;
  border-radius: 10%;
  cursor: pointer;
  z-index: 10;
}

.responsive {
  width: 100%;
  aspect-ratio: 16/9;
  position: relative;
}
#background-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@media screen and (max-width: 767px) {
  .visual-slider .swiper-slide {
    aspect-ratio: 5 / 6;
    background-image: url("../assets/image/visual01_sp.png");
  }
  .visual-slider .swiper-slide:nth-child(2) {
    background-image: url("https://placehold.jp/afb0bb/ffffff/750x900.png?text=image02");
  }
}

/*PC*/
@media screen and (min-width: 767px) {
  .hero-section {
    width: 100%;
    position: relative;
    height: 645px;
  }

  .hero-section-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 645px;
    text-align: center;
    gap: 60px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
  }
  .visual-slider {
    height: 645px;
  }

  .visual-slider .swiper-slide {
    width: 1260px;
    height: 600px;
    margin: 0 auto; /* 中央寄せ */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("../assets/image/visual01.png");
  }

  .visual-slider .swiper-slide:nth-child(2) {
    background-image: url("https://placehold.jp/afb0bb/ffffff/1260x600.png?text=image02");
  }

  .visual-slider .swiper-pagination {
    display: block;
    margin: 0;
    padding: 0;
    line-height: 1;
    position: relative;
    height: auto;
    bottom: 29px !important; /* 下からの位置調整。必要に応じて */
    z-index: 20;
    pointer-events: auto;
  }

  /* ドットの共通サイズと色 */
  .visual-slider .swiper-pagination-bullet {
    width: 13px;
    height: 13px;
    margin: 0 6px !important;
    background-color: #cdcece;
    opacity: 1; /* デフォルトの半透明を無効に */
    border-radius: 50%; /* 丸く */
    transition: background-color 0.3s ease;
  }

  /* アクティブ（選択中）状態のドット */
  .visual-slider .swiper-pagination-bullet-active {
    background-color: #231815;
  }

  .catchphrase-main {
    font-size: 51px;
    font-size: clamp(40px, 5vw, 51px);
  }

  .description-vertical,
  .description-vertical svg {
    width: 33px;
    height: auto;
  }

  .brand-logo-area {
    display: block;
  }
  .brand-logo-area,
  .brand-logo-area svg {
    width: 425px;
    height: auto;
  }
  .video {
    position: absolute;
    left: 30px;
    bottom: 30px;
    width: 360px;
    height: auto;
    z-index: 30;
    background-color: #fff;
    box-shadow: 5.44px 5.44px 13.6px rgba(42, 30, 28, 0.74);
  }
}

/*---------------------- news-section ----------------------*/

/*初期化*/
.news-section .swiper-button-prev::after,
.news-section .swiper-button-next::after {
  font-family: inherit !important;
  content: "" !important;
}
.news-section {
  width: 100%;
  display: flex;
  align-items: center;
  position: relative;
}

.news-slider {
  background: transparent;
}

.news-section .swiper-button-prev,
.news-section .swiper-button-next {
  width: 24px;
  height: 42px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  margin-top: 0;
}

.news-section .swiper-button-prev::after,
.news-section .swiper-button-next::after {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-top: 2px solid #007a8d;
  border-right: 2px solid #007a8d;
  position: relative;
}

.news-section .swiper-button-prev::before,
.news-section .swiper-button-next::before {
  display: none !important;
}

.news-section .swiper-button-prev::after {
  transform: rotate(-135deg);
  left: 5px;
}

.news-section .swiper-button-next::after {
  transform: rotate(45deg);
  right: 5px;
}
.badge {
  display: inline-block;
  border: 2px solid #1d3557;
  padding: 2px 15px;
  margin-right: 5px;
  border-radius: 20px;
  font-weight: bold;
  color: #1d3557;
  font-size: 14px;
  letter-spacing: 0.05em;
}
.date {
  display: inline-block;
  font-size: 15px;
  color: #1d3557;
  margin-top: 8px;
  margin-bottom: 12px;
  font-weight: bold;
}
.description a {
  font-size: 14px;
  line-height: 1.8;
  color: #1d3557;
  text-decoration: none;
}

/*PC*/
@media screen and (min-width: 767px) {
  .news-section {
    height: 250px;
    background-image: linear-gradient(rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8)), url("../assets/svg/logoiconpattern.svg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
  }

  .news-section .swiper-button-prev,
  .news-section .swiper-button-next {
    width: 42px;
  }

  .news-section .swiper-button-prev::after,
  .news-section .swiper-button-next::after {
    width: 28px;
    height: 28px;
  }

  .news-section .swiper-button-prev::after {
    left: 10px;
  }

  .news-section .swiper-button-next::after {
    right: 10px;
  }
  .badge {
    padding: 4px 30px;
    margin-right: 10px;
  }
  .date {
    letter-spacing: 0.2em;
  }
}

@media screen and (max-width: 767px) {
  .news-slider .swiper-slide {
    box-sizing: border-box;
    padding: 0 50px;
  }
}

/* === 768px〜1259px: 中間サイズ === */
@media (min-width: 768px) and (max-width: 1024px) {
  .news-slider .swiper-wrapper {
    width: 660px;
  }
  .news-section .swiper-button-prev {
    left: 5px;
  }
  .news-section .swiper-button-next {
    right: 5px;
  }
}
/* === 1024px〜1259px: 中間サイズ === */
@media screen and (min-width: 1024px) and (max-width: 1259px) {
  .news-slider .swiper-wrapper {
    width: 800px;
  }
  .news-section .swiper-button-prev {
    left: 60px;
  }
  .news-section .swiper-button-next {
    right: 60px;
  }
}
/* === 1260px以上: 大画面サイズ === */
@media screen and (min-width: 1260px) {
  .news-slider .swiper-wrapper {
    width: 860px;
  }

  .news-section .swiper-button-prev {
    left: 120px;
  }
  .news-section .swiper-button-next {
    right: 120px;
  }
}

.sns-icon {
  display: none;
}
.sns-icon a svg {
  fill: #000 !important;
}

@media (min-width: 768px) {
  .sns-icon {
    position: absolute;
    bottom: 10px;
    right: 30px;
    z-index: 6;
    display: block;
  }

  .sns-icon ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
  }
  .sns-icon ul li {
    margin: 0 8px;
  }
  .sns-icon ul li:nth-child(1) {
    margin: 0 4px;
  }
  .sns-icon ul li:nth-child(1) svg {
    width: 30px;
  }
  .sns-icon ul li:nth-child(2) svg {
    width: 36px;
  }
  .sns-icon ul li:nth-child(3) svg {
    width: 28px;
  }
  .sns-icon ul li:nth-child(4) svg {
    width: 16px;
  }
}

/*--------------- TECHNOLOGY --------------------*/

.technology-section {
  margin-top: 36px;
  margin-bottom: 36px;
  padding: 50px 0 0;
  background-image: url("../assets/svg/line_sp_bg.svg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.text-19 {
  font-size: 9.5px;
}
.text-21 {
  font-size: 10.5px;
}
.text-22 {
  font-size: 11px;
}
.text-23 {
  font-size: 11.5px;
}
.text-41 {
  font-size: 20.5px;
}

.area-name-wrap,
.technology-area-inner {
  display: none;
}

.technology-area {
  background-image: url("../assets/image/technology_sp_bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  aspect-ratio: 750 / 210;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.technology-logo-area {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  gap: 50px;
}
.tech-logo {
  width: 110px;
  height: auto;
}
.tech-logo-under {
  width: 200px;
  height: auto;
}

.technology-catch-area {
  padding: 22px 0;
}
.technology-catch {
  position: relative;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 22px 0;
  font-size: 18px;
}
.technology-catch::before {
  content: "";
  position: absolute;
  width: calc(153px / 2);
  height: calc(156px / 2);
  background-image: url("../assets/svg/tech_catch_bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.21;
}

@media (min-width: 768px) {
  .technology-section {
    background-image: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }
  .text-19 {
    font-size: 19px;
  }
  .text-21 {
    font-size: 21px;
  }
  .text-22 {
    font-size: 22px;
  }
  .text-23 {
    font-size: 23px;
  }
  .text-41 {
    font-size: 41px;
  }
  .technology-area {
    background-image: url("../assets/image/model_woman.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* height: 400px;*/
    aspect-ratio: 3.6 / 1;
    position: relative;
    display: flex;
  }

  .area-name-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 14;
    display: block;
    pointer-events: none;
  }
  .technology-area-inner {
    width: 900px;
    margin: 0 auto;
    padding: 60px 0;
    box-sizing: border-box;
    display: block;
  }

  .area-name {
    font-size: 122px;
    line-height: 0.7;
    color: rgba(0, 0, 0, 0.19);
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }
  .tech-point1 {
    width: 189px;
    height: auto;
    margin-bottom: 30px;
  }
  .technology-logo-area {
    position: absolute;
    bottom: 32px;
    right: 45px;
    z-index: 15;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 40px;
  }
  .tech-logo {
    width: 226px;
    height: auto;
  }
  .tech-logo-under {
    width: 301px;
    height: auto;
  }

  .technology-catch-area {
    padding: 45px 0;
  }
  .technology-catch {
    position: relative;
    text-align: center;
    letter-spacing: 0.2em;
    line-height: 39px;
    padding: 45px 0;
    font-size: 23px;
  }
  .technology-catch::before {
    content: "";
    position: absolute;
    width: 153px;
    height: 156px;
    background-image: url("../assets/svg/tech_catch_bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.21;
  }
}

/*------------------------------------------------------------------------------------------*/

.ultrafine-vibration-section {
  width: 100%;
  height: 350px;
  position: relative;
  padding-top: 36px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  overflow: hidden;
}
.ultrafine-vibration-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 330px;
  background-color: #f4f5f3;
  clip-path: polygon(100% 0, 100% 85%, 50% 100%, 0 85%, 0 0);
  z-index: -1;
}

.ultrafine-vibration {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.ultrafine-vibration-inner {
  width: 100%;
  text-align: center;
  position: relative;
}

.ultrafine-title {
  color: #223268;
  position: relative;
  margin-bottom: 12px;
}
.ultrafine-title:before {
  background-color: #009de5;
  bottom: -4px;
  content: "";
  height: 2.36px;
  left: 50%;
  position: absolute;
  transform: translateX(-50%);
  width: 204px;
  display: block;
}
.ultrafine-vibration-catch {
  margin: 48px 0 16px;
  display: none;
}
.ultrafine-vibration-text {
  margin: 36px 0;
  font-size: 14px;
  line-height: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}

sup {
  font-size: 0.6em;
  vertical-align: super;
  line-height: 1;
}
.ultrafine-vibration-catch,
.huron-tech-iconlogo {
  display: none;
}
.untrafine-turning,
.untrafine-relax {
  position: absolute;
  pointer-events: none;
  z-index: 3;
  top: 190px;
}
.untrafine-turning {
  width: 108px;
  left: 5px;
}
.untrafine-relax {
  width: 118px;
  right: -5px;
}
sup {
  display: none;
}

@media (min-width: 768px) {
  .ultrafine-vibration-section {
    padding-top: 110px;
    height: 700px;
    position: relative;
  }
  .ultrafine-vibration-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 620px;
    background-color: #f4f5f3;
    clip-path: polygon(100% 0, 100% 70%, 50% 100%, 0 70%, 0 0);
    z-index: -1;
  }

  .ultrafine-vibration-inner {
    width: 900px;
  }
  .ultrafine-title {
    margin-bottom: 24px;
  }
  .ultrafine-title:before {
    bottom: -12px;
    height: 2.36px;
    width: 408px;
  }
  .ultrafine-vibration-catch {
    margin: 36px 0 16px;
    display: block;
    font-family: "Shippori Mincho", serif;
    font-weight: 700;
    font-style: normal;
    font-size: 22px;
  }
  .ultrafine-vibration-text {
    font-family: "Zen Old Mincho", serif;
    font-weight: 400;
    font-style: normal;
    line-height: 36px;
    margin: 0 0 36px;
    font-size: 21px;
  }
  .huron-tech-iconlogo {
    width: 158px;
    margin: 0 auto;
    pointer-events: none;
    display: block;
  }
  .untrafine-turning {
    width: 216px;
    height: auto;
    top: -31px;
    left: -40px;
  }
  .untrafine-relax {
    width: 236px;
    height: auto;
    top: -39px;
    right: -40px;
  }
  sup {
    font-size: 0.6em;
    display: inline-block;
  }
}

.more-info-section {
  background-color: #f4f5f3;
  padding: 30px 0 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.more-info-section-inner .read-more-block .read-more-content {
  height: 36px;
}

.more-info-section-inner .read-more-block .read-more-content::after {
  background: none;
}
.more-info-section-inner .read-more-block .read-more-toggle {
  width: 110px;
  height: 28px;
  font-size: 12px;
  margin: 16px auto 20px;
  border-radius: 25px;
  color: #0087a5;
  border: 1px solid #0087a5;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
}

.more-info-title {
  width: 195px;
  margin: 0 auto 24px;
}

.grid-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 56px 16px;
}

.grid {
  display: flex;
  justify-content: center;
  align-items: center;
  /* width: 148px; */
  flex: 0 0 180px;
  box-sizing: border-box;
}

.info-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 7px;
  padding: 0 10px;
  position: relative;
  height: 36px;
  width: 100%;
  border: 1px solid #1a2b61;
  border-radius: 9999px;
  text-decoration: none;
  font-size: 15px;
  font-weight: bold;
  color: #231815;
  background-color: #fff;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.grid:nth-of-type(6) .info-button {
  gap: 6px;
}

.grid .info-button::before {
  content: " ";
  font-size: 11px;
  position: absolute;
  top: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
}
.grid .info-button::after {
  content: " ";
  font-size: 11px;
  position: absolute;
  bottom: -22px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8;
  white-space: nowrap;
}
.grid:nth-of-type(n + 4) .info-button:before {
  content: "エビデンス";
}
.grid:nth-of-type(4) .info-button:after {
  content: "横浜桐蔭大学";
}
.grid:nth-of-type(5) .info-button:after {
  content: "ヒーリングミュージック";
}

.grid:nth-of-type(6) .info-button__text {
  font-size: 0.8em;
}
.info-button:hover {
  background-color: #3794ca;
  color: #ffffff;
}
.info-button:hover:before,
.info-button:hover:after {
  color: #231815;
}

.info-button__icon {
  width: 13px;
  height: 13px;
  background-color: #1a2b61;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-button__icon svg {
  width: 9px;
  height: 9px;
}

.info-button__text {
  white-space: nowrap;
}

.info-button__note {
  font-size: 10px;
  vertical-align: super;
  line-height: 1;
  margin-left: 4px;
  color: #2b2b2b;
  display: inline-block;
}

@media (min-width: 768px) {
  .more-info-section {
    background-color: unset;
    padding: 30px 0 160px;
  }
  .more-info-title {
    width: 342px;
    margin-bottom: 64px;
  }

  .more-info-section-inner .read-more-block .read-more-content {
    height: 203px;
  }
  .more-info-section-inner .read-more-block {
    margin: 0;
  }

  .more-info-section-inner .read-more-block .read-more-toggle {
    display: none;
  }

  .grid-wrap {
    width: 900px;
    align-items: center;
    gap: 100px 20px;
  }
  .grid {
    flex: 0 1 calc((100% - 40px) / 3);
  }

  .info-button {
    height: 40px;
    width: 260px;
    font-size: 16px;
    padding: 0 16px;
  }
  .grid .info-button:before {
    font-size: 13px;
    top: -24px;
  }
  .grid .info-button:after {
    font-size: 11px;
    bottom: -24px;
  }

  .info-button__icon {
    width: 15px;
    height: 15px;
    background-color: #1a2b61;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .info-button__icon svg {
    width: 9px;
    height: 9px;
  }
  .info-button__note {
    font-size: 12px;
  }

  .grid.hidden {
    display: flex !important;
  }
  .grid.expandable {
    max-height: none !important;
    opacity: 1 !important;
    overflow: visible !important;
    pointer-events: auto !important;
    transition: none !important;
  }
}
/*--------------------------------recommend--------------------------------------*/
.recommend-section {
  /* margin-top: 36px; */
  /* margin-bottom: 36px; */
  padding: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  overflow: hidden;
}
.recommend-area {
  display: none;
}
.recommend-catch-area {
  padding: 13px 0;
}
.recommend-catch {
  position: relative;
  text-align: center;
  letter-spacing: 0.2em;
  padding: 48px 0 13px;
  font-size: 18px;
}
.recommend-catch::before {
  content: "";
  position: absolute;
  width: calc(153px / 2);
  height: calc(156px / 2);
  background-image: url("../assets/svg/tech_catch_bg.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  opacity: 0.21;
}

.recommend-pattern-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
}
.recommend-pattern {
  aspect-ratio: 1 / 1;
}
.recommend-pattern:nth-of-type(2),
.recommend-pattern:nth-of-type(6) {
  background-color: rgba(137, 193, 197, 0.5);
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend-pattern:nth-of-type(3) {
  background-color: rgba(206, 211, 217, 0.5);
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.recommend-pattern:nth-of-type(1),
.recommend-pattern:nth-of-type(4),
.recommend-pattern:nth-of-type(5) {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: left top;
  display: flex;
  justify-content: center;
  align-items: center;
}
.recommend-pattern:nth-of-type(1) img {
  width: 78px;
  height: auto;
}
.recommend-pattern:nth-of-type(4) img {
  width: 84.5px;
  height: auto;
}
.recommend-pattern:nth-of-type(5) img {
  width: 96.5px;
  height: auto;
}
.recommend-pattern:nth-of-type(1) {
  background-image: url("../assets/image/recommend_pattern_sp_bg1.jpg");
}
.recommend-pattern:nth-of-type(4) {
  background-image: url("../assets/image/recommend_pattern_sp_bg2.jpg");
}
.recommend-pattern:nth-of-type(5) {
  background-image: url("../assets/image/recommend_pattern_sp_bg3.jpg");
}

.recommend-pattern:nth-of-type(2) .recommend-title:before,
.recommend-pattern:nth-of-type(3) .recommend-title:before,
.recommend-pattern:nth-of-type(6) .recommend-title:before {
  position: absolute;
  width: 56px;
  top: -20px;
  left: 2;
  z-index: 9;
}

.recommend-pattern:nth-of-type(2) .recommend-title:before {
  content: url("../assets/svg/targetuser.svg");
}
.recommend-pattern:nth-of-type(3) .recommend-title:before {
  content: url("../assets/svg/originality02.svg");
}
.recommend-pattern:nth-of-type(6) .recommend-title:before {
  content: url("../assets/svg/originality03.svg");
}

.recommend-title {
  font-size: 16px;
  position: relative;
}
.recommend-sub-title {
  font-size: 10px;
  margin-bottom: 4px;
}
.recommend-eng {
  font-size: 10px;
}

.huron_breathe {
  width: 360px;
  margin: 40px auto 40px;
}
.huron_breathe img {
  width: 100%;
  height: auto;
}

@media (min-width: 768px) {
  .recommend-section {
    background-image: none;
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
  }
  .recommend-area {
    background-image: url("../assets/image/3_woman.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    /* height: 400px; */
    aspect-ratio: 3.6 / 1;
    position: relative;
    display: flex;
  }

  .recommend-area-inner {
    width: 900px;
    margin: 0 auto;
    padding: 60px 0;
    box-sizing: border-box;
    display: block;
  }
  .recommend-point1 {
    width: 224px;
    height: auto;
    margin-bottom: 30px;
  }

  .recommend-catch-area {
    padding: 72px 0 0;
  }
  .recommend-catch {
    position: relative;
    text-align: center;
    letter-spacing: 0.2em;
    line-height: 39px;
    padding: 45px 0;
    font-size: 28px;
  }
  .recommend-catch:before {
    content: "";
    position: absolute;
    width: 153px;
    height: 156px;
    background-image: url("../assets/svg/tech_catch_bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: -48px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.21;
  }

  .recommend-pattern-wrap {
    display: grid;
    grid-template-columns: 50% 50%;
    grid-template-rows: 33.33% 33.33% 33.33%;
    width: 100%;
  }
  .recommend-pattern {
    aspect-ratio: 21 / 10;
  }
  .recommend-pattern:nth-of-type(2),
  .recommend-pattern:nth-of-type(6) {
    background-color: rgba(137, 193, 197, 0.5);
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 0 0 36px 36px;
  }

  .recommend-pattern:nth-of-type(3) {
    background-color: rgba(206, 211, 217, 0.5);
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 0 48px 48px 0;
  }

  .recommend-pattern:nth-of-type(1) {
    background-image: url("../assets/image/recommend_pattern_bg1.jpg");
  }
  .recommend-pattern:nth-of-type(4) {
    background-image: url("../assets/image/recommend_pattern_bg2.jpg");
  }
  .recommend-pattern:nth-of-type(5) {
    background-image: url("../assets/image/recommend_pattern_bg3.jpg");
  }

  .recommend-pattern:nth-of-type(2) .recommend-title:before,
  .recommend-pattern:nth-of-type(3) .recommend-title:before,
  .recommend-pattern:nth-of-type(6) .recommend-title:before {
    position: absolute;
    width: 73px;
    /* height: 15px; */
    top: -30px;
    left: 0;
    z-index: 9;
  }

  .recommend-pattern:nth-of-type(1) img {
    width: 131px;
    height: auto;
  }
  .recommend-pattern:nth-of-type(4) img {
    width: 141px;
    height: auto;
  }
  .recommend-pattern:nth-of-type(5) img {
    width: 161px;
    height: auto;
  }

  .recommend-pattern:nth-of-type(2) {
    background-image: url("../assets/svg/rest.svg");
    background-size: 294px 175px;
    background-position: calc(100% - 72px) center;
  }
  .recommend-pattern:nth-of-type(3) {
    background-image: url("../assets/svg/sleep.svg");
    background-size: 172px 172px;
    background-position: 72px center;
  }
  .recommend-pattern:nth-of-type(6) {
    background-image: url("../assets/svg/health.svg");
    background-size: 171px 172px;
    background-position: calc(100% - 72px) center;
  }

  .recommend-title {
    font-size: 24px;
  }
  .recommend-sub-title {
    font-size: 12.6px;
  }
  .recommend-eng {
    font-size: 12px;
  }

  .huron_breathe {
    width: 451px;
    margin: 100px auto 120px;
  }
}

@media (min-width: 1261px) {
  .recommend-pattern:nth-of-type(2),
  .recommend-pattern:nth-of-type(6) {
    background-color: rgba(137, 193, 197, 0.5);
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 0 0 96px;
  }
  .recommend-pattern:nth-of-type(3) {
    background-color: rgba(206, 211, 217, 0.5);
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding: 0 96px 0 0;
  }

  .recommend-pattern:nth-of-type(2) {
    background-size: 40%;
    background-position: 70% center;
  }
  .recommend-pattern:nth-of-type(6) {
    background-size: 24%;
    background-position: 70% center;
  }
  .recommend-pattern:nth-of-type(3) {
    background-size: 24%;
    background-position: 30% center;
  }
}

.product-area {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 575px;
  position: relative;
  display: flex;
}
.product-area .area-name-wrap {
  position: absolute;
  top: 205px;
  left: 0;
  z-index: 10;
  pointer-events: none;
}

.product-area .area-name-wrap .area-name {
  position: relative;
}
.product-area .area-name-wrap .area-name::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -170px;
  z-index: 12;
  width: 154px;
  height: 15px;
  background-image: url("../assets/svg/products_list.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
.products-brand {
  position: absolute;
  left: 50%;
  top: 120px;
  width: 380px;
  transform: translateX(-50%);
  height: auto;
  margin: 0 auto;
  z-index: 12;
  mix-blend-mode: multiply;
}

.products-brand img {
  width: 100%;
  height: auto;
}

.product-area .area-name-wrap {
  top: 40px;
  left: 0;
  z-index: 12;
  display: block;
  pointer-events: none;
}
.products-model-pc-wrap {
  display: none;
}

.products-model {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 11;
}

.product-area .area-name-wrap .area-name {
  position: relative;
  font-size: 50px;
  letter-spacing: 2.3px;
}
.product-area .area-name-wrap .area-name::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -110px;
  z-index: 12;
  width: 106px;
  background-image: url("../assets/svg/products_list.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.products-list-wrap {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.products-list-wrap::before {
  content: "";
  position: absolute;
  width: 200.5px;
  height: 36.5px;
  background-image: url("../assets/svg/product-lineup.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -24px;
  right: 18px;
  /* transform: translateX(-50%); */
  /* z-index: -1; */
  /* opacity: 0.21; */
}

.products-list-catch {
  display: none;
}
.products-list {
  width: calc(100% - 30px);
}

.products-list ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.products-list img {
  width: 100%;
  height: auto;
}

.product-item-name-eng {
  display: none;
}

.product-item-name span:nth-of-type(1) {
  display: none;
}

.product-item-name span:nth-of-type(2) {
  font-size: 12.5px;
}
.product-item-price {
  font-size: 14px;
}

.product-item-price span {
  font-size: 8px;
}

@media (min-width: 768px) {
  .product-area {
    background-image: url("../assets/image/model_left.png"), url("../assets/image/model_right.png");
    background-position: left top, right top;
    background-repeat: no-repeat, no-repeat;
    background-size: 295px auto, 295px auto;
    /* background-attachment: fixed; */
    height: 600px;
    position: relative;
    display: flex;
    margin-bottom: 400px;
  }

  .product-area .area-name-wrap {
    top: 116px;
    left: 0;
    z-index: -1;
    pointer-events: none;
  }
  .product-area .area-name-wrap .area-name {
    position: relative;
    font-size: 122px;
    letter-spacing: 2.3px;
  }
  .product-area .area-name-wrap .area-name::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: -170px;
    z-index: 12;
    width: 154px;
    background-image: url("../assets/svg/products_list.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .products-brand {
    position: absolute;
    left: 50%;
    top: 244px;
    transform: translateX(-50%);
    width: 800px;
    height: auto;
    margin: 0 auto;
    z-index: 12;
    mix-blend-mode: multiply;
    overflow: visible;
  }
  .product-area::before {
    content: "";
    position: absolute;
    top: 250px; /* はみ出し調整 */
    left: 50%;
    transform: translateX(-50%);
    width: 1400px;
    height: 710px;
    background-image: url("../assets/svg/contact-section_bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: -1;
    pointer-events: none;
  }

  .products-model-pc-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
  .products-model {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 11;
    display: none;
  }

  .products-list-wrap::before {
    content: "";
    position: absolute;
    width: 153px;
    height: 156px;
    background-image: url("../assets/svg/tech_catch_bg.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    opacity: 0.21;
  }

  .products-list-catch {
    display: block;
    margin: 16px auto 86px;
    font-size: 28px;
  }
  .products-list {
    width: 940px;
  }
  .products-list ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 0 0 0 0;
  }
  .products-list ul li {
    position: relative;
    overflow: hidden;
  }

  /* 黒いオーバーレイ */
  .products-list ul li::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 19;
    pointer-events: none;
  }

  .products-list ul li:hover::before {
    opacity: 1;
  }

  .products-item-wrap {
    position: absolute;
    bottom: 12%;
    left: 10%;
    /* transform: translate(-50%, -50%); */
    /* -webkit-transform: translate(-50%, -50%); */
    /* -ms-transform: translate(-50%, -50%); */
    z-index: 20;
    pointer-events: none;
  }

  .product-item-name-eng {
    display: block;
    font-size: 27px;
    line-height: 28px;
    color: #bdbdbd;
  }
  .product-item-name {
    font-size: 8px;
    display: inline-block;
    color: #fff;
    background-color: #bdbdbd;
    padding: 0 4px;
  }
  .product-item-name span:nth-of-type(1) {
    display: inline-block;
  }
  .product-item-name span:nth-of-type(2) {
    font-size: 8px;
  }

  .product-item-price {
    display: none;
  }
  .product-item-price span {
    font-size: 8px;
  }
}

@media (min-width: 1401px) {
  .product-area::before {
    background: none;
  }
}

.sns-media-section .heading-band {
  letter-spacing: 1.4rem;
}

.sns-media-area {
  background-image: url("../assets/image/sns_media_sp_bg.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  height: 150px;
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
}
.sns-media-area .area-name-wrap {
  display: block;
}
.sns-media-area .area-name-wrap .area-name {
  font-size: 50px;
  line-height: 0.7;
}

.sns-icons ul {
  display: none;
}

.sns-icons a svg {
  fill: #000;
}

.sns-media-section > .sns-icons ul {
  margin: 0 auto;
  padding: 0 0 75px 0;
  list-style: none;
  display: flex;
  align-items: center;
  width: calc(100% - 56%);
}

.sns-media-section > .sns-icons ul li {
  margin: 0 8px;
}
.sns-media-section > .sns-icons ul li:nth-child(1) {
  margin: 0 4px;
}
.sns-media-section > .sns-icons ul li:nth-child(1) svg {
  width: 30px;
}
.sns-media-section > .sns-icons ul li:nth-child(2) svg {
  width: 36px;
}
.sns-media-section > .sns-icons ul li:nth-child(3) svg {
  width: 28px;
}
.sns-media-section > .sns-icons ul li:nth-child(4) svg {
  width: 16px;
}

.news {
  display: none;
}

.sns-media-grid-wrap {
  background-size: 630px 65px;
  background-position: center 20px;
}

.sns-media-grid {
  /* display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  padding: 70px 20px 48px; */
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  padding: 70px 10px 48px;
}
.sns-media-grid-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  aspect-ratio: 16/9;
  /* overflow: hidden; */
}
.play-button {
  position: absolute;
  width: 19px;
  height: 19px;
  cursor: pointer;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  border: 1px solid #0087a5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}
.play-button img {
  width: 4px;
}

.ambassador {
  background-color: rgba(70, 70, 70, 0.2);
}

.sns-media-grid-item img.ambassador_txt {
  width: 110px;
  height: auto;
  display: block;
}

.sns-media-grid-item.tiktok::before,
.sns-media-grid-item.sns-media-grid-item.instagram::before {
  position: absolute;
  z-index: 30;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

.sns-media-grid-item.tiktok::before {
  width: 61px;
  height: 16.5px;
  top: -30px;
  background-image: url("../assets/svg/tiktok_logo.svg");
}
.sns-media-grid-item.instagram::before {
  width: 77.5px;
  height: 22.5px;
  top: -31px;
  background-image: url("../assets/svg/instagram_logo.svg");
}

@media (min-width: 768px) {
  .sns-media-section .heading-band {
    letter-spacing: 2rem;
  }
  .sns-media-section > .sns-icons {
    display: none;
  }
  .sns-media-area {
    background-image: url("../assets/image/foot.jpg");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    /* background-attachment: fixed; */
    height: auto;
    aspect-ratio: 3.6 / 1;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    overflow: hidden;
  }

  .sns-logo-area {
    width: 900px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 16px 0;
    margin-bottom: 20px;
  }

  .sns-media-area .area-name-wrap .area-name {
    font-size: 124px;
    line-height: 0.7;
  }

  .sns-icons ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    align-items: center;
  }
  .sns-icons ul li {
    margin: 0 8px;
  }
  .sns-icons ul li:nth-child(1) {
    margin: 0 4px;
  }
  .sns-icons ul li:nth-child(1) svg {
    width: 30px;
  }
  .sns-icons ul li:nth-child(2) svg {
    width: 36px;
  }
  .sns-icons ul li:nth-child(3) svg {
    width: 28px;
  }
  .sns-icons ul li:nth-child(4) svg {
    width: 16px;
  }

  .news {
    width: 186px;
    height: auto;
    display: block;
  }
  .sns-media-grid-wrap {
    background-image: url("../assets/svg/logo_pattern.svg");
    background-size: 1260px 130px;
    background-position: center 20px;
  }
  .sns-media-grid {
    gap: 44px;
    place-content: center;
    width: 900px;
    margin: 0 auto;
    padding: 140px 0 250px;
  }
  .sns-media-grid-item {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    aspect-ratio: 16/9;
    /* overflow: hidden; */
  }

  .sns-media-grid-item.tiktok::before,
  .sns-media-grid-item.sns-media-grid-item.instagram::before {
    position: absolute;
    z-index: 30;
    content: "";
    display: block;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
  }

  .sns-media-grid-item.tiktok::before {
    width: 144px;
    height: 39px;
    top: -60px;
    background-image: url("../assets/svg/tiktok_logo.svg");
  }
  .sns-media-grid-item.instagram::before {
    width: 183px;
    height: 54px;
    top: -66px;
    background-image: url("../assets/svg/instagram_logo.svg");
  }

  .ambassador {
    background-color: rgba(70, 70, 70, 0.2);
  }

  .sns-media-grid-item img {
    width: 100%;
    height: auto;
    display: block;
  }

  .sns-media-grid-item img.ambassador_txt {
    width: 222px;
    height: auto;
    display: block;
  }

  .play-button {
    position: absolute;
    width: 45px;
    height: 45px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    border: 1px solid #0087a5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
  }
  .play-button img {
    width: 9px;
  }

  .play-button:hover {
    transform: scale(1.1);
    background-color: rgba(255, 255, 255, 1);
  }
}

@media (min-width: 768px) {
  .contact-section {
    background-image: url("../assets/svg/contact-section_bg.svg");
    background-repeat: no-repeat;
    background-size: 100%;
    background-position: center 60%;
  }
}
.heading-band {
  background-color: #6bc4e8;
  font-size: 13px;
  letter-spacing: 2rem;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 15px;
  width: 100%;
}
.heading-band div {
  vertical-align: bottom;
  line-height: 0.7;
}
@media (min-width: 768px) {
  .heading-band {
    font-size: 21px;
    height: 20px;
  }
}

.section-name {
  font-size: 62px;
  color: #c2c2c2;
  letter-spacing: 0.183em;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (min-width: 768px) {
  .section-name {
    font-size: 122px;
    justify-content: flex-start;
    margin-top: 64px;
    position: relative;
    line-height: 0.7;
  }
  .section-name::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 200px;
    z-index: 25;
    width: 172px;
    height: 14px;
    background-image: url("../assets/svg/contact.svg");
    background-repeat: no-repeat;
  }
}

.width-900 {
  width: calc(100% - 40px);
  margin: 0 auto;
}
.contact-section .width-900 .between-block {
  margin-bottom: 35px;
}
@media (min-width: 768px) {
  .width-900 {
    width: 900px;
    margin: 0 auto;
  }
  .contact-section .width-900 {
    padding: 92px 0 92px;
  }
  .contact-section .width-900 .between-block {
    margin-bottom: 67px;
  }
}

@media (min-width: 768px) {
  .contact-accordion {
    width: 650px;
  }
}

.centered-block {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 30px;
}

@media (min-width: 768px) {
  .centered-block {
    margin-bottom: 40px;
  }
}

.between-block {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
.contact-menu {
  display: none;
}
@media (min-width: 768px) {
  .contact-menu {
    display: flex;
    flex-direction: column;
    gap: 40px 0;
  }
}
.q-a {
  font-size: 15px;
  display: flex;
  align-items: center;
}

.feedback {
  width: 320px;
  height: auto;
}
@media (min-width: 768px) {
  .feedback {
    width: 395px;
    height: auto;
  }
}

.feedback-copy {
  font-size: 12px;
  font-family: "adobe-caslon-pro", serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .feedback-copy {
    display: none;
  }
}

@media (min-width: 768px) {
  .q-a_arrow {
    width: 15px;
    height: 15px;
    background-color: #1a2b61;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
  }
}

.contact-form-bluebg {
  margin-bottom: 30px;
}

.contact-form-logo {
  display: none;
}

.contact-form {
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}
.contact-form ul {
  list-style-type: none;
  margin-bottom: 20px;
}
.contact-form input,
.contact-form textarea {
  box-sizing: border-box;
}

.contact-form .wpcf7-form-control {
  width: 100% !important;
  max-width: 100%;
  box-sizing: border-box;
}
.contact-form .wpcf7-form-control::placeholder {
  font-size: 1rem;
  padding: 0 0 0 4px;
}

.contact-form .wpcf7-not-valid-tip {
  color: #dc3232;
  font-size: 0.8em;
  font-weight: normal;
  display: block;
}
.contact-form ul li p > label {
  margin-bottom: 8px;
  display: inline-block;
}
.contact-form ul li p {
  margin-bottom: 8px;
}

.contact-form ul li input {
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.4em 1em;
  font-size: 16px;
}
.contact-form ul li input[type="submit"] {
  background-color: #6bc4e8;
  border: none;
}
.contact-form ul li textarea {
  height: 120px;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0.4em 1em;
  font-size: 16px;
}
.contact-note {
  font-size: 0.8rem;
}
.contact-note ul {
  margin: 5px 10px;
  padding: 0;
}
.contact-note ul li {
  margin: 0;
  padding: 0;
  line-height: 1.6;
}
.contact-info {
  display: none;
}

@media (min-width: 768px) {
  .contact-form-bluebg {
    background: linear-gradient(to right, #b4e4fa 0%, #a4cfe9 100%);
    background-position: left top;
    padding: 60px 85px;
    display: flex;
    flex-direction: column;
    gap: 36px 0;
  }
  .contact-form-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
  }
  .contact-form {
    width: 420px;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
  .contact-form input,
  .contact-form textarea {
    box-sizing: border-box;
  }

  .contact-form .wpcf7-form-control {
    width: 100% !important;
    max-width: 100%;
    box-sizing: border-box;
  }
  .contact-form .wpcf7-form-control::placeholder {
    font-size: 12px;
    padding: 0 0 0 4px;
  }

  .contact-form .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 0.8em;
    font-weight: normal;
    display: block;
  }

  .contact-form .wpcf7 form .wpcf7-response-output {
    margin: 0 !important;
    padding: 0 !important;
    border: none !important;
    color: #333;
    border-bottom: 1px solid #333 !important;
    margin-bottom: 1em !important;
    padding-bottom: 0.5em !important;
    font-size: 16px;
    text-align: center;
  }

  .contact-form-logo {
    width: 191px;
    display: block;
  }
  .contact-form-logo img {
    width: 100%;
  }

  .contact-form ul {
    list-style-type: none;
    margin-bottom: 20px;
  }
  .contact-form ul li {
    padding: 1px 0;
  }
  .contact-form ul li p {
    display: grid;
    grid-template-columns: 100px 1fr;
    align-items: center;
    margin-bottom: 4px;
    gap: 0 8px;
  }
  .contact-form ul li label {
    font-size: 10px;
    text-align: left;
    color: #1a445f;
  }
  .contact-form ul li input {
    /* height: 30px; */
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.4em 1em;
    font-size: 14px;
  }
  .contact-form ul li input.submit-button {
    border: none;
    border-radius: 0;
  }
  .contact-form ul li input.wpcf7-submit {
    background: url("../assets/svg/mail_send_btn.svg") no-repeat center center;
    background-size: contain;
    width: 48px;
    height: 48px;
    border: none;
    font-size: 0;
    padding: 0;
    cursor: pointer;
    background-color: transparent;
  }

  .contact-form ul li textarea {
    height: 120px;
    border: 1px solid #ddd;
    border-radius: 6px;
    padding: 0.4em 1em;
    font-size: 14px;
  }
  .submit-button-wrap {
    width: 40px;
    margin: 0 45% 0 55%;
  }
  .submit-button svg {
    width: 40px;
    height: 35px;
    fill: #fff;
  }

  .contact-note-wrap {
    display: grid;
    grid-template-columns: 360px 90px;
    justify-content: space-between;
    align-items: flex-end;
  }
  .contact-note {
    color: #1a445f;
    font-size: 12px;
    line-height: 1.6;
    width: 450px;
  }
  .contact-note ul {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    margin: 5px 10px;
    padding: 0;
  }
  .contact-note ul li {
    margin: 0;
    padding: 0;
    line-height: 1.6;
  }
  .contact-info {
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 12px;
    color: #fff;
    display: block;
  }
  .contact-info ul {
    list-style-type: none;
  }
  .contact-info ul li {
    /* margin-bottom: 25px; */
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
  }

  .contact-info ul li:nth-child(1)::before,
  .contact-info ul li:nth-child(2)::before {
    content: "";
    position: absolute;
    top: 5px;
    left: -30px;
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 40;
  }
  .contact-info ul li:nth-child(1)::before {
    width: 13px;
    height: 21px;
    background-image: url("../assets/svg/icon_phone.svg");
  }
}

.contact-accordion .read-more-block {
  margin: 0;
}

.contact-accordion .read-more-content {
  height: 350px;
}

@media (min-width: 768px) {
  .contact-accordion .read-more-content {
    height: 400px;
  }
}

.contact-accordion .read-more-toggle {
  width: 110px;
  height: 30px;
  font-size: 12px;
  margin: 16px auto 20px;
  border-radius: 25px;
  color: #0087a5;
  border: 1px solid #0087a5;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 2px;
}

@media (min-width: 768px) {
  .contact-accordion .read-more-toggle {
    width: 220px;
    height: 50px;
    font-size: 13px;
    margin: 64px 0 64px auto;
    border-radius: 25px;
  }
}

.accordion {
  width: 100%;
  max-width: 660px;
  padding: 0;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: bold;
  font-style: normal;
}
@media (min-width: 768px) {
  .accordion {
    width: 100%;
    max-width: 660px;
    padding: 0;
  }
}

.accordion-item {
  border-top: 1px solid #d4ccc8;
}
.accordion-item:last-child {
  border-bottom: 1px solid #d4ccc8;
}

.accordion-header button {
  all: unset;
  width: calc(100% - 2em);
  padding: 1em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  transition: background 0.3s ease;
}

@media (min-width: 768px) {
  .accordion-header button {
    width: calc(100% - 48px);
    padding: 24px;
  }
}

.accordion-title,
.accordion-icon,
.accordion-content {
  font-size: 12.5px;
}
@media (min-width: 768px) {
  .accordion-title,
  .accordion-icon,
  .accordion-content {
    font-size: 14px;
  }
}
.accordion-title {
  display: flex;
  flex-direction: column;
  gap: 4px 0;
}
@media (min-width: 768px) {
  .accordion-title {
    display: flex;
    flex-direction: row;
    gap: 0 8px;
  }
}

.accordion-icon {
  color: #7e736c;
}

.accordion-icon {
  transition: transform 0.3s ease;
  display: inline-block;
  font-size: 1.2em;
}

.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 12px;
  background-color: #fff;
  font-weight: 400;
}

@media (min-width: 768px) {
  .accordion-content {
    padding: 0 24px;
  }
}

.accordion-content p {
  margin: 1em 0;
}
@media (min-width: 768px) {
  .accordion-content p {
    margin: 1em;
  }
}

/* 展開状態 */
.accordion-item.active .accordion-content {
  max-height: 800px;
  padding: 8px 12px;
}
@media (min-width: 768px) {
  .accordion-item.active .accordion-content {
    max-height: 500px;
    padding: 8px 24px;
  }
}
.accordion-item.active .accordion-icon {
  transform: rotate(45deg);
}

.footer-nav {
  background-color: #f0e8d8;
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 1) 0px, rgba(0, 0, 0, 0.05) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(to bottom, transparent 0px, transparent 9px, rgba(255, 255, 255, 1) 9px, rgba(0, 0, 0, 0.05) 10px);
  height: 32px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.footer-nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style-type: none;
  gap: 0 6px;
  padding: 0 20px;
  font-size: 1em;
}
.footer-nav ul li a {
  font-size: 9px;
  display: flex;
  align-items: center;
  position: relative;
  padding-right: 20px;
  border-right: 1px solid #000;
  color: #000;
  text-decoration: none;
}
.footer-nav ul li:last-child a {
  border-right: none;
}
.footer-nav ul li a::before {
  content: "";
  position: absolute;
  right: 8px;
  width: 6px;
  height: 6px;
  background-image: url("../assets/svg/link_blank.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  z-index: 41;
}

@media (min-width: 768px) {
  .footer-nav {
    height: 57px;
    justify-content: flex-start;
    /* padding-left: 64px; */
    margin: 0;
    background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.2) 0px, rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 10px),
      repeating-linear-gradient(to bottom, transparent 0px, transparent 9px, rgba(255, 255, 255, 0.2) 9px, rgba(255, 255, 255, 0.2) 10px), linear-gradient(to bottom, #efe7d7 0%, #efe7d7 80%, #586f82 98%, #01284b 100%);
  }
  .footer-nav-inner {
    width: 1260px;
    margin: 0 auto;
  }
  .footer-nav ul {
    gap: 0 12px;
    padding: 0;
  }
  .footer-nav ul li a {
    font-size: 13px;
    padding-right: 32px;
    border-right: 1px solid #000;
  }
  .footer-nav ul li a::before {
    width: 13px;
    height: 13px;
    right: 12px;
  }
}
.footer-info {
  background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.2) 0px, rgba(255, 255, 255, 0.2) 1px, transparent 1px, transparent 10px),
    repeating-linear-gradient(to bottom, transparent 0px, transparent 9px, rgba(255, 255, 255, 0.2) 9px, rgba(255, 255, 255, 0.2) 10px), linear-gradient(to bottom, #00395e 0%, #0066a1 5%, #008dd3 30%, #029de4 75%, #00a7ec 100%);
}

.footer-info-inner {
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .footer-info-inner {
    width: 1260px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
    /* background-image: repeating-linear-gradient(to right, rgba(255, 255, 255, 0.4) 0px, rgba(255, 255, 255, 0.4) 1px, transparent 1px, transparent 10px),
      repeating-linear-gradient(to bottom, transparent 0px, transparent 9px, rgba(255, 255, 255, 0.4) 9px, rgba(255, 255, 255, 0.4) 10px), linear-gradient(to bottom, #00395e 0%, #0066a1 5%, #008dd3 30%, #029de4 75%, #00a7ec 100%); */
  }
}

.footer-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  /* grid-template-rows: 1fr 1fr 1fr; */
  grid-auto-rows: auto;
  padding: 40px 20px;
  gap: 30px 0;
}
@media (min-width: 768px) {
  .footer-column {
    grid-template-columns: 150px 150px 150px 150px 150px;
    grid-template-rows: none;
    padding: 30px 30px 0 30px;
  }
}

.footer-column-title {
  font-size: 16px;
  color: #1b2c62;
  position: relative;
  margin-bottom: 8px;
}

.footer-column-title::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: -6px;
  left: 0;
  z-index: 50;
}

@media (min-width: 768px) {
  .footer-column-title {
    font-size: 13px;
    margin-bottom: 16px;
  }
  .footer-column-title::before {
    width: 19px;
    height: 1.5px;
    bottom: -8px;
    left: 0;
  }
}

.footer-column-inner ul {
  list-style-type: none;
}

.footer-column-inner ul li {
  margin: 0;
  padding: 0;
  line-height: 1.8;
}
@media (min-width: 768px) {
  .footer-column-inner ul li {
    margin: 0 0 8px 0;
    line-height: 1;
  }
}

.footer-column-inner ul li a {
  font-size: 14px;
  color: #e3e3e3;
  text-decoration: none;
  font-family: "MOBO", sans-serif;
  font-weight: 700;
}

@media (min-width: 768px) {
  .footer-column-inner ul li a {
    font-size: 12px;
  }
}

.company {
  display: grid;
  place-content: center;
  place-items: center;
  gap: 15px 0;
}

@media (min-width: 768px) {
  .company {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
    padding: 40px 10px 0 0;
    gap: 50px 0;
    place-content: unset;
    place-items: unset;
  }
}

.brand {
  width: 141px;
  height: auto;
}
.brand img {
  width: 100%;
}
@media (min-width: 768px) {
  .brand {
    width: 132px;
  }
}

.brand {
  display: flex;
  justify-content: center;
}

.copyright {
  display: flex;
  flex-direction: column-reverse;
  text-align: center;
  padding-bottom: 24px;
}
@media (min-width: 768px) {
  .copyright {
    text-align: left;
  }
}
.copyright p {
  font-size: 8px;
}

.copyright p:nth-of-type(2) {
  font-size: 8px;
  color: #fff;
  margin-bottom: 6px;
}

@media (min-width: 768px) {
  .copyright p:nth-of-type(2) {
    font-size: 9px;
    color: #000;
    margin-bottom: 0;
  }
}

/*--------------------------------------------*/
/* studyページのCSS */
/*--------------------------------------------*/

.study1,
.study2 {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: normal;
}
/* 共通化: study1, study2 の .kv-section */
.study1 .kv-section,
.study2 .kv-section {
  position: relative;
  width: 100%;
  height: 130px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.study1 .kv-section {
  background-image: url("../assets/image/study_main_sp.jpg");
}
.study2 .kv-section {
  background-image: url("../assets/image/study2_main_sp.jpg");
}

/* 共通化: .kv-section-inner */
.study1 .kv-section-inner,
.study2 .kv-section-inner {
  position: absolute;
  top: 17px;
  left: calc(50% - 142.5px);
  width: 284.5px;
  height: auto;
}

@media (min-width: 768px) {
  .study1 .kv-section,
  .study2 .kv-section {
    height: 440px;
    background-size: cover;
  }
  .study1 .kv-section {
    background-image: url("../assets/image/study_main.jpg");
  }
  .study2 .kv-section {
    background-image: url("../assets/image/study2_main.jpg");
  }
  .study1 .kv-section-inner,
  .study2 .kv-section-inner {
    position: absolute;
    top: 50px;
    left: 74px;
    width: 342px;
    height: auto;
  }
}

@media (min-width: 1260px) {
  .study1 .kv-section,
  .study2 .kv-section {
    background-size: 100% auto;
  }
}

/* ---------- topic common ---------- */
.topic-inner {
  position: relative;
}
.topic-description-wrap {
  padding: 0 30px;
  margin-bottom: 30px;
}
.thumbnail {
  position: relative;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.thumbnail::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 160px;
  bottom: -28px;
  left: 0;
  z-index: -1;
  background-image: url("../assets/svg/shadow_sp.svg");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: center bottom;
}
.lead-wrap {
  padding: 32px;
}
.lead-title {
  width: 111px;
  height: auto;
  margin-bottom: 18px;
}
.lead-title svg {
  width: 100%;
  color: #000;
}
.lead-text {
  font-size: 20px;
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
.concept-wrap {
  padding: 0 10px;
  margin-bottom: 32px;
}
.concept {
  background-color: #fdf5ee;
  padding: 17px 27px;
}
.concept-title img {
  width: 100%;
  height: auto;
}
.concept-text {
  font-size: 16px;
  color: #4b5d60;
  letter-spacing: 0.03em;
  line-height: 1.6;
}
svg.icon {
  width: 1em;
  height: 1em;
  fill: #4bd37b;
  vertical-align: middle;
  display: inline;
}
.topic-description-2column ul {
  margin: 0 0 24px 16px;
}
.topic-description-2column ul li {
  margin: 8px 0;
}
.topic-description-2column p {
  font-weight: bold;
  font-size: 16px;
  margin-bottom: 16px;
}

@media (min-width: 768px) {
  .thumbnail::before {
    height: 164px;
    bottom: -50px;
    background-image: url("../assets/svg/shadow.svg");
    background-size: 100% auto;
  }
  .lead-wrap {
    padding: 0;
    position: absolute;
    top: 30px;
    left: 142px;
    z-index: 1;
  }
  .lead-title {
    width: 181px;
  }
  .lead-title svg {
    color: #fff;
  }
  .lead-text {
    font-size: 21px;
    color: #fff;
  }
  .concept-wrap {
    padding: 0;
    position: absolute;
    bottom: -142px;
    left: 50%;
    transform: translateX(-100px);
    width: 735px;
  }
  .concept {
    padding: 54px 74px;
    display: flex;
    justify-content: space-between;
    gap: 0 60px;
  }
  .concept-title {
    margin-bottom: 0;
  }
  .concept-text {
    font-size: 15px;
    line-height: 1.6;
    width: 350px;
  }
  .topic-description-wrap {
    padding: 274px 0 0 0;
    margin-bottom: 80px;
  }
  .topic-description-heading {
    margin-bottom: 32px;
  }
  .topic-description-2column ul {
    margin: 0 0 24px 24px;
  }
  .topic-description-2column ul li {
    margin: 8px 0;
  }
  .topic-description-2column p {
    font-weight: bold;
    font-size: 18px;
    margin-bottom: 8px;
  }
  .topic-description-infographic {
    width: 900px;
    margin-inline: auto;
  }
  .huron-pattern {
    position: relative;
  }
  .huron-pattern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 910px;
    background-image: url("../assets/svg/logo_pattern.svg");
    background-repeat: repeat-y;
    background-position: top;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
  }
}

/* ---------- sync ---------- */

.sync .topic-inner {
  margin-bottom: 30px;
}
.sync .thumbnail {
  height: 137px;
  background-image: url("../assets/image/study_section_1_sp_bg.jpg");
}
.sync .concept-title {
  width: 162px;
  margin-bottom: 18px;
}
.sync .topic-description-wrap {
  padding: 0 30px;
  margin-bottom: 30px;
}

.sync .topic-description-heading {
  margin-bottom: 32px;
}

.sync .topic-description-heading img {
  width: 240px;
  height: auto;
}
.sync .topic-description-text {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: normal;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 30px;
}
.sync .topic-description-note {
  padding: 0 45px;
}
.sync .topic-description-note p:nth-of-type(1) {
  font-size: 15px;
  margin-bottom: 8px;
}
.sync .topic-description-note p:nth-of-type(2) {
  font-size: 6px;
}

@media (min-width: 768px) {
  .sync .concept-wrap {
    bottom: -270px;
    left: 50%;
    transform: translateX(-100px);
  }
  .sync .topic-inner {
    margin-bottom: 145px;
  }
  .sync .concept-title {
    flex-basis: 150px;
  }
  .sync .thumbnail {
    height: 460px;
    background-image: url("../assets/image/study_section_1_bg.jpg");
  }
  .sync .topic-description-wrap {
    padding: 274px 0 0 0;
    margin-bottom: 80px;
  }
  .sync .topic-description-heading,
  .sync .topic-description-text,
  .sync .topic-description-note {
    width: 800px;
    margin-inline: auto;
  }
  .sync .topic-description-note {
    padding: 0;
  }
  .sync .topic-description-text {
    font-size: 16px;
    font-weight: normal;
    line-height: 1.8;
  }
  .sync .topic-description-note p {
    font-size: 12px;
  }
  .sync .topic-description-note p:nth-of-type(2) {
    font-size: 12px;
  }
  .sync .topic-description-infographic {
    width: 830px;
    margin-inline: auto;
  }
  .sync .topic-description-heading img {
    width: 420px;
    height: auto;
  }
}

.title-sync {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 305px;
  height: auto;
}
@media (min-width: 768px) {
  .title-sync {
    position: absolute;
    bottom: 160px;
    right: 0;
    width: 480px;
    height: auto;
  }
}
/* ---------- ray ---------- */

.ray .thumbnail {
  height: 137px;
  background-image: url("../assets/image/study_section_2_sp_bg.jpg");
}

.ray .concept-title {
  width: 160px;
  margin-bottom: 18px;
}

.ray .topic-description-2column {
  display: flex;
  flex-direction: column;
  gap: 35px 0;
}
.ray .topic-description-2column div:nth-of-type(1) {
  color: #4b5d60;
  font-size: 16px;
  letter-spacing: 0.03em;
  line-height: 1.6;
  font-weight: normal;
}
.ray .topic-description-2column div:nth-of-type(2) {
  font-size: 16px;
}

@media (min-width: 768px) {
  .ray .thumbnail {
    height: 360px;
    background-image: url("../assets/image/study_section_2_bg.jpg");
  }
  .ray .concept-title {
    width: 250px;
  }
  .ray .topic-description-wrap {
    padding: 155px 0 0 0;
  }
  .ray .topic-description-2column {
    flex-direction: row;
    gap: 0 64px;
    margin: 0 auto 70px;
    width: 900px;
  }
  .ray .topic-description-2column div {
    flex: 1 1 0%;
    min-width: 0;
  }
  .ray .topic-description-2column div {
    color: #221714;
    font-size: 16px;
    line-height: 1.8;
  }
}

/* ---------- circadian ---------- */

.circadian .concept-title {
  width: 261px;
  margin-bottom: 18px;
}
.circadian-illust {
  display: none;
}
.circadian .thumbnail {
  height: 170px;
  background-image: url("../assets/image/study_section_3_sp_bg.jpg");
}
.circadian .topic-description-wrap {
  padding: 0;
}
.circadian .topic-description-infographic {
  margin-bottom: 50px;
}

.circadian .topic-description-2column div {
  padding: 0 15px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5d60;
  letter-spacing: 0.03em;
  min-width: 0;
  /* flexはPCで指定 */
}
.circadian .topic-description-2column div p {
  padding: 0 15px;
  font-size: 16.5px;
  color: #221714;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  margin-bottom: 20px;
  letter-spacing: 0;
}
@media (min-width: 768px) {
  .circadian {
    position: relative;
  }
  .circadian .thumbnail {
    height: 360px;
    background-image: url("../assets/image/study_section_3_bg.jpg");
  }
  .circadian .concept-title {
    width: 250px;
  }
  .circadian-illust {
    display: block;
    position: absolute;
    top: 430px;
    left: calc(50% + 50px);
    transform: translateX(-50%);
    width: 822px;
    height: auto;
    z-index: 10;
    pointer-events: none;
  }
  .circadian .topic-description-wrap {
    padding: 690px 0 0 0;
  }
  .circadian .topic-description-infographic {
    margin-bottom: 90px;
  }
  .circadian .topic-description-2column {
    display: flex;
    flex-direction: row;
    gap: 0 64px;
    margin: 0 auto 70px;
    width: 900px;
  }
  .circadian .topic-description-2column div {
    flex: 1 1 0%;
  }
  .circadian .topic-description-2column div p {
    font-size: 21px;
  }
  .circadian .topic-description-2column div:nth-of-type(1) {
    color: #221714;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
  }
  .circadian .topic-description-2column div:nth-of-type(2) {
    color: #221714;
    font-size: 13px;
  }
  .circadian .topic-description-2column div span {
    font-size: 14px;
  }
}

/*---------- eyemask ----------*/
.eyemask {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
}
.eyemask h3,
.eyemask h4,
.eyemask p {
  margin-bottom: 1em;
}
.nouha {
  font-family: "Zen Old Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.8em;
  padding: 0;
  margin-bottom: 1rem;
  list-style-type: none;
}
.nouha li {
  line-height: 1.8;
}
.eyemask .topic-inner {
  margin-bottom: 30px;
}
.eyemask .thumbnail {
  height: 137px;
  background-image: url("../assets/image/eyemask_section_1_sp_bg.jpg");
}
.eyemask .topic-description-wrap {
  padding: 0 30px;
  margin-bottom: 30px;
}
.eyemask .topic-description-heading {
  margin-bottom: 1rem;
}
.eyemask .topic-description-heading h2 {
  font-size: 20px;
}
.eyemask .topic-description-infographic {
  margin-bottom: 1rem;
}
@media (min-width: 768px) {
  .eyemask .topic-inner {
    margin-bottom: 100px;
  }
  .eyemask .thumbnail {
    height: 460px;
    background-image: url("../assets/image/eyemask_section_1_bg.jpg");
  }

  .eyemask .topic-description-heading h2 {
    font-size: 20px;
  }
  .eyemask .topic-description-text,
  .eyemask .topic-description-infographic {
    margin-bottom: 1em;
  }

  .eyemask .topic-description-infographic {
    width: 100%;
  }

  .eyemask .topic-description-infographic img {
    width: 100%;
  }

  .eyemask .topic-description-wrap {
    padding: 0;
    margin-bottom: 80px;
    width: 800px;
    margin-inline: auto;
  }
}

/*---------- medical-test ----------*/
.medical-test {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
}
.medical-test h3,
.medical-test h4,
.medical-test p {
  margin-bottom: 1em;
}
.medical-test .topic-inner {
  margin-bottom: 30px;
}
.medical-test .thumbnail {
  height: 137px;
  background-image: url("../assets/image/medical_test_section_1_sp_bg.jpg");
}
.medical-test .topic-description-wrap {
  padding: 0 30px;
  margin-bottom: 30px;
}
.medical-test .topic-description-heading {
  margin-bottom: 1rem;
}
.medical-test .topic-description-heading h2 {
  font-size: 20px;
}

@media (min-width: 768px) {
  .medical-test .topic-inner {
    margin-bottom: 100px;
  }
  .medical-test .thumbnail {
    height: 460px;
    background-image: url("../assets/image/medical_test_section_1_bg.jpg");
  }
  .medical-test .topic-description-text,
  .medical-test .topic-description-infographic {
    margin-bottom: 1em;
  }

  .medical-test .topic-description-infographic {
    width: 100%;
  }

  .medical-test .topic-description-infographic img {
    width: 100%;
  }

  .medical-test .topic-description-wrap {
    padding: 0;
    margin-bottom: 80px;
    width: 800px;
    margin-inline: auto;
  }
  .medical-test .topic-description-heading h2 {
    font-size: 20px;
  }
}

/*---------- certificate ----------*/
.certificate {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 300;
}
.certificate h3,
.certificate h4,
.certificate p {
  margin-bottom: 1em;
}
.certificate .topic-inner {
  margin-bottom: 30px;
}
.certificate .thumbnail {
  height: 137px;
  background-image: url("../assets/image/certificate_section_1_sp_bg.jpg");
}
.certificate .topic-description-wrap {
  padding: 0 30px;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .certificate .topic-inner {
    margin-bottom: 100px;
  }
  .certificate .thumbnail {
    height: 460px;
    background-image: url("../assets/image/certificate_section_1_bg.jpg");
  }
  .certificate .topic-description-text,
  .certificate .topic-description-infographic {
    margin-bottom: 1em;
  }

  .certificate .topic-description-infographic {
    width: 100%;
  }

  .certificate .topic-description-infographic img {
    width: 100%;
  }

  .certificate .topic-description-wrap {
    padding: 0;
    margin-bottom: 80px;
    width: 800px;
    margin-inline: auto;
  }
}

.title-certificate,
.title-medical-test {
  position: absolute;
  bottom: 20px;
  right: 0;
  width: 113px;
  height: auto;
}
@media (min-width: 768px) {
  .title-certificate,
  .title-medical-test {
    position: absolute;
    bottom: 95px;
    right: 180px;
    width: 113px;
    height: auto;
  }
}

.medical-test .topic-description-infographic-wrap,
.certificate .topic-description-infographic-wrap {
  display: grid;
  grid-template-columns: 1fr;
  place-items: center;
  gap: 1rem;
}
/* PCサイズ以上で2カラムに切り替え */
@media (min-width: 768px) {
  .medical-test .topic-description-infographic-wrap,
  .certificate .topic-description-infographic-wrap {
    grid-template-columns: 1fr 1fr;
  }
}

.comment-profile {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  /* padding: 2rem 1rem; */
  max-width: 960px;
  margin: 0 auto;
}

.comment-text {
  order: 1;
}

.comment-title {
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.comment-body {
  font-size: 1rem;
  line-height: 1.6;
  color: #333;
}

.profile-card {
  display: flex;
  /* flex-direction: column; */
  align-items: flex-start;
  gap: 1rem;
  order: 2;
}

.profile-image img {
  width: 120px;
  height: auto;
}

.profile-info {
  flex: 1;
}

.profile-info p.university {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.4;
}

.profile-name-ja {
  font-size: 1.2rem;
  font-weight: bold;
  margin-top: 0.5rem;
}

.profile-name-en {
  font-size: 0.9rem;
  color: #777;
}

/* PC・タブレット表示向け（768px以上） */
@media screen and (min-width: 768px) {
  .comment-profile {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .comment-text {
    flex: 1 1 60%;
    order: 2;
  }

  .profile-card {
    flex: 1 1 35%;
    flex-direction: row;
    align-items: flex-end;
    order: 1;
  }

  .profile-image img {
    width: 100px;
  }
  p.profile-name-en {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
  }
}

/* ---------- 商品ページ ---------- */

.product-cart-wrap {
  padding: 22px;
}
.product-cart-slider {
  margin-bottom: 20px;
}
.product-list-wrapper {
  background: none;
}
@media (min-width: 768px) {
  .product-cart-wrap {
    padding: 0;
  }
  .product-cart-slider {
    margin-bottom: 0;
  }
  .product-list-wrapper {
    background-image: url("../assets/svg/dot_bg.svg");
    background-repeat: repeat;
    background-size: 31px auto;
    background-position: 0 62px;
  }
}

.product-main-visual,
.product-hero {
  display: none;
}

.product-price-icon-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.product-icon-wrap {
  display: flex;
  align-items: center;
}
.price-wrap {
  display: flex;
  align-items: center;
}

@media (min-width: 768px) {
  .product-main-visual {
    /* width: 1260px; */
    width: 100%;
    height: 440px;
    background-image: url("../assets/image/product_mainvisual.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    margin: 0 auto 80px;
    position: relative;
    display: block;
  }
  .product-main-icon-relax,
  .product-main-icon-huron {
    position: absolute;
    z-index: 5;
  }
  .product-main-icon-relax {
    width: 464px;
    height: auto;
    left: 125px;
    top: 50%;
    transform: translateY(-50%);
  }
  .product-main-icon-huron {
    width: 197px;
    height: auto;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
  }
  .product-cart-wrap {
    width: 1260px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 0 65px;
  }
  .product-cart-slider {
    width: 660px;
  }
  .product-cart {
    width: 355px;
  }
}

.product-featured {
  display: none;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px 30px;
  justify-items: center;
  margin-inline: auto;
  position: relative;
  padding: 100px 30px 50px;
}

.product-grid::before {
  display: inline-block;
  position: absolute;
  top: 48px;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
}
.product-grid.product-huronplus::before {
  content: url("../assets/svg/product_logo_huronplus.svg");
  width: 216px;
  height: auto;
}
.product-grid.product-huron::before {
  content: url("../assets/svg/product_logo_huron.svg");
  width: 200px;
  height: 40px;
}
.product-grid.product-setitem::before {
  font-size: 21.5px;
  content: "おすすめ商品";
  font-family: "MOBO", sans-serif;
  font-weight: 700;
}

.product-grid-item {
  width: 100%;
  padding-bottom: 4px;
  border-bottom: 1px solid #000;
}
.product-grid-item a {
  color: #000;
  text-decoration: none;
}

.product-grid-item img {
  width: 100%;
  height: auto;
  margin-bottom: 12px;
}

@media (min-width: 768px) {
  .product-featured {
    margin: 100px auto;
    display: flex;
    align-items: center;
    justify-content: center;
    /* width: 1260px; */
    width: 100%;
    position: relative;
  }
  .product-featured img {
    width: 450px;
  }
  .product-featured::before {
    content: "";
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: 600px;
    background-image: url("../assets/svg/logo_pattern.svg");
    background-repeat: repeat-y;
    background-position: bottom;
    background-size: contain;
    pointer-events: none;
    z-index: -1;
  }

  .product-hero {
    display: block;
    /* width: 1260px; */
    width: 100%;
    margin: 0 auto;
  }
  .product-hero-bg {
    background-image: url("../assets/image/product-hero-bg.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    height: 330px;
    position: relative;
    display: flex;
    margin-bottom: 100px;
  }

  .product-hero-bg .area-name {
    font-size: 124px;
    line-height: 0.7;
    letter-spacing: 0.15em;
    color: rgba(0, 0, 0, 1);
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  .product-hero-bg .area-name::before {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: calc(1260px - 214px);
    z-index: 15;
    width: 154px;
    height: 15px;
    background-image: url("../assets/svg/products_list.svg");
    background-repeat: no-repeat;
    background-size: contain;
  }

  .product-grid {
    grid-template-columns: repeat(4, 260px);
    max-width: 1260px;
    gap: 50px;
    padding: 180px 35px;
  }

  .product-grid::before {
    display: inline-block;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
  }
  .product-grid.product-huronplus::before {
    width: 433px;
    height: auto;
  }
  .product-grid.product-huron::before {
    width: 400px;
    height: auto;
  }
  .product-grid.product-setitem::before {
    font-size: 43px;
  }

  .product-grid-item {
    width: 260px;
    padding: unset;
    border: none;
  }
  .product-grid-item img {
    width: 260px;
    height: 260px;
    object-fit: cover;
    margin-bottom: 25px;
  }
}

.product-brand {
  font-size: 9.5px;
  font-weight: bold;
}
.product-name {
  font-size: 12px;
  padding-bottom: 4px;
  font-family: "MOBO", sans-serif;
  font-weight: 700;
  border: none;
}

.product-icon {
  padding: 2px 6px;
  line-height: 1;
}
.icon-unisex {
  font-size: 5px;
  letter-spacing: 0.2em;
  border-radius: 30px;
  border: 1px solid #000;
}
.icon-soldout {
  font-size: 5px;
  font-weight: bold;
  letter-spacing: 0.1em;
  border-radius: 30px;
  color: #fff;
  background-color: #f17676;
  border: 1px solid #f17676;
}

.icon-medical {
  padding: 2px 6px;
  font-size: 6px;
  font-weight: bold;
  letter-spacing: 0.05em;
  border-radius: 30px;
  border: 1px solid #000;
}
.price {
  color: #000;
  font-weight: bold;
  font-size: 13px;
  text-align: right;
}
.tax {
  font-size: 7.5px;
}
@media (min-width: 768px) {
  .product-name-wrap {
    position: relative;
  }
  .product-huronplus .product-name-wrap::before {
    content: "";
    position: absolute;
    top: -15px;
    right: 0;
    width: 45px;
    height: 45px;
    background-image: url("../assets/svg/huron_plus_mini_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }

  .product-brand {
    font-size: 14px;
  }
  .product-name {
    font-size: 19px;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid #000;
  }
  .product-icon {
    padding: 2px 16px;
  }
  .icon-unisex {
    font-size: 10px;
  }
  .icon-soldout {
    font-size: 10px;
  }
  .icon-medical {
    padding: 4px 16px;
    font-size: 13px;
    letter-spacing: 0.1em;
  }
  .price {
    font-size: 18px;
  }
  .tax {
    font-size: 11px;
  }
}
/*------------------------------- itempage ---------------------------------------*/

.swiper-slide {
  transition-timing-function: ease-in-out;
}
.swiper-slide img {
  width: 100%;
  height: auto;
}
.main-slider {
  width: 100%;
  margin-bottom: 12px;
}
.thumb-slider {
  width: 100%;
}
.thumb-slider .swiper-slide {
  width: 25%;
  opacity: 0.6;
  cursor: pointer;
}
.thumb-slider .swiper-slide-thumb-active {
  opacity: 1;
}
.modal {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
  pointer-events: none;
  display: none;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.8);
  justify-content: center;
  align-items: center;
}

.modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.modal-content {
  position: relative;
  width: 90%;
  max-width: 600px;
}

.modal-content img {
  width: 100%;
  height: auto;
}

.modal .close {
  position: absolute;
  top: 0;
  right: 12px;
  font-size: 42px;
  color: #fff;
  cursor: pointer;
  z-index: 1000;
  margin: 0;
  padding: 0;
  line-height: 1;
  text-shadow: 0 0 6px rgba(0, 0, 0, 0.4);
}
@media (min-width: 768px) {
  .modal .close {
    right: 16px;
    font-size: 56px;
  }
  .thumb-slider .swiper-slide {
    width: 15%;
  }
  .modal-content {
    width: 80%;
    max-width: 800px;
  }
}

.custom-nav {
  position: absolute;
  top: 50%;
  z-index: 10;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.3s ease;
}

.custom-nav svg {
  width: 20px;
  height: 20px;
  color: #333;
}
.main-prev,
.modal-prev {
  left: 10px;
}
.main-next,
.modal-next {
  right: 10px;
}

/* モーダル用は白背景＋ダークアイコンにして見やすく */
.modal .custom-nav {
  background: rgba(0, 0, 0, 0.6);
}
.modal .custom-nav svg {
  color: #fff;
}
@media (min-width: 768px) {
  .custom-nav {
    width: 48px;
    height: 48px;
  }
  .custom-nav svg {
    width: 24px;
    height: 24px;
  }
}

/*youtubeアーカイブ*/
.youtube-thumbnail-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px 0;
  font-family: "MOBO", sans-serif;
  font-weight: 400;
}

ul.youtube-thumbnail {
  display: grid;
  grid-template-columns: 1fr; /* スマホは1カラム */
  gap: 16px;
  list-style-type: none;
  padding: 0;
  margin: 0;
  width: 960px;
  position: relative;
}

ul.youtube-thumbnail::before {
  content: "YouTube Archives";
  position: absolute;
  top: -30px;
  right: 10px;
  z-index: 10;
  color: #192b5f;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 700;
}

.youtube-video {
  padding: 12px;
  aspect-ratio: 16 / 9;
  width: 100%;
  max-width: 100%;
}
.youtube-video iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

ul.youtube-thumbnail li h2 {
  padding: 0 12px;
  font-size: 12px;
}
@media (min-width: 768px) {
  .youtube-thumbnail-wrap {
    padding: 150px 0;
  }
  ul.youtube-thumbnail {
    grid-template-columns: 1fr 1fr; /* PCでは2カラム */
  }
  ul.youtube-thumbnail li h2 {
    font-size: 16px;
  }
}

.newspost {
  font-family: "MOBO", sans-serif;
  font-weight: 400;
}
.news-post-wrap {
  padding: 2em;
}
.news-grid-wrap {
  padding: 1em;
}

.news-title {
  color: #333;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.6rem;
  display: flex;
  position: relative;
  align-items: center;
  margin-bottom: 20px;
}

.news-title::after {
  font-size: 0.6rem;
  content: "新着情報";
  display: inline-block;
  margin-left: 8px;
}

.news-grid {
  display: grid;
  grid-template-columns: 1fr; /* SP: 1カラム */
  gap: 3rem 2rem;
  margin: 2rem 0;
}

.news-grid-item {
  /* border: 1px solid #ddd; */
  /* padding: 0.5rem; */
  background-color: #fff;
}

.news-grid-item a {
  text-decoration: none;
  color: #000;
}

.news-thumbnail {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}

.news-thumbnail img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  display: block;
}

.news-post-date {
  font-size: 0.9rem;
  color: #666;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.news-date {
  font-size: 0.5rem;
  margin-top: 0.8rem;
  margin-bottom: 0.5rem;
  color: #666;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.news-excerpt {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
  font-family: "MOBO", sans-serif;
  font-weight: 400;
}

@media screen and (min-width: 768px) {
  .news-title {
    margin: 1rem 0;
    font-size: 32px;
  }
  .news-grid-wrap {
    width: 1060px;
    margin: 50px auto;
  }
  .news-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-title::after {
    font-size: 0.9rem;
    margin-left: 16px;
  }
}

.newspost h1 {
  font-size: 1.2em;
}
.news-date {
  font-size: 12px;
}
.news-pagenation-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 2em 0;
}
.news-pagenation-wrap a {
  color: #000;
  text-decoration: none;
}

a.news-pagenation-prev,
a.news-pagenation-next {
  width: 1em;
  height: 1em;
  position: relative;
  display: inline-block;
}

a.news-pagenation-prev::before,
a.news-pagenation-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* a要素の大きさに合わせる */
  height: 100%;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}
/* 左矢印（←） */
a.news-pagenation-prev::before {
  background-image: url("../assets/svg/play.svg");
  transform: scaleX(-1); /* 左向きに反転 */
}

/* 右矢印（→） */
a.news-pagenation-next::before {
  background-image: url("../assets/svg/play.svg");
}

a.news-list-link {
  font-size: 0.8em;
}

@media (min-width: 768px) {
  .news-post-wrap {
    width: 760px;
    margin-inline: auto;
    padding: 100px 0;
  }
  .newspost h1 {
    font-size: 36px;
    margin-bottom: 16px;
  }
  .news-date {
    font-size: 14px;
  }
  .news-content {
    margin: 50px 0;
    font-size: 16px;
    line-height: 32px;
  }
  a.news-list-link {
    font-size: 1em;
  }
}

.pagination {
  display: flex;
  justify-content: center;
  margin: 2rem 0;
  font-family: brandon-grotesque, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.pagination .page-numbers li {
  display: inline-flex;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5em;
  height: 2.5em;
  border-radius: 50%;
  background-color: #eee;
  color: #333;
  font-size: 1rem;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s;
}

/* 現在のページ */
.pagination .page-numbers .current {
  background-color: #0073aa;
  color: #fff;
  font-weight: bold;
}

/* ドット（三点リーダ）も正円に */
.pagination .page-numbers .dots {
  background-color: transparent;
  color: #999;
}

/* ホバー効果 */
.pagination .page-numbers a:hover {
  background-color: #0073aa;
  color: #fff;
}

@media (min-width: 768px) {
  .pagination {
    margin-top: 50px;
    margin-bottom: 0;
  }
}

/* 固定ページ用 */
.section-title {
  font-size: 1.5rem;
  border-left: 4px solid #6bc4e8;
  padding-left: 0.6em;
  margin-bottom: 1rem;
}

.company-profile-wrap {
  padding: 2rem 1rem;
  font-family: "MOBO", sans-serif;
  font-weight: 400;
  color: #333;
}

.company-philosophy-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url("../assets/svg/line_sp_bg.svg");
  background-size: contain;
  background-position: center 80%;
  background-repeat: no-repeat;
  overflow: hidden;
}
.company-philosophy {
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .company-philosophy-wrap {
    background-position: center 70%;
    background-size: contain;
  }

  .company-philosophy {
    width: 960px;
    margin: 0 auto;
    padding: 200px 0;
  }
}

.company-table {
  width: 100%;
  border-collapse: collapse;
  background-color: #fff;
  border-radius: 5px;
  overflow: hidden;
  margin: 2rem 0;
}

.company-table th,
.company-table td {
  padding: 1rem;
  font-size: 0.95rem;
  text-align: left;
  border: 1px solid #eee;
}

.company-table th {
  background-color: #f5f7fa;
  font-weight: 600;
  width: 35%;
  color: #222;
}

@media (min-width: 768px) {
  .company-profile-wrap {
    width: 960px;
    margin: 0 auto;
    padding: 2rem 0;
  }

  .section-title {
    font-size: 1.75rem;
  }

  .company-table th,
  .company-table td {
    font-size: 1rem;
    padding: 1.2rem;
  }
}

.policy-list {
  list-style: none;
  padding: 0;
  margin: 1rem 0;
}

.policy-list li {
  padding: 0.3rem 0;
  font-size: 0.95rem;
}

/* レスポンシブ（768px〜） */
@media (min-width: 768px) {
  .policy-list {
    margin: 2rem 0;
  }
  .policy-list li {
    font-size: 1rem;
  }
}

.contact-mailform-wrap {
  padding: 2rem 1rem;
  font-family: "MOBO", sans-serif;
  font-weight: 400;
  color: #333;
}
.contact-mailform {
  padding: 2rem 1rem;
}
@media (min-width: 768px) {
  .contact-mailform-wrap {
    padding: 2rem 1rem;
    font-family: "MOBO", sans-serif;
    font-weight: 400;
    color: #333;
  }
  .contact-mailform {
    width: 660px;
    margin: 0 auto;
    padding: 100px 0;
  }
}

/* ---------- FORM LAYOUT ---------- */
.mail-form {
  margin-top: 40px;
  margin-left: auto;
  margin-right: auto;
  font-family: "MOBO", sans-serif;
  font-weight: 400;
}

.mail-form-item {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 16px 14px;
  border-top: 1px solid #ddd;
}

.mail-form-item:nth-child(5) {
  border-bottom: 1px solid #ddd;
}

.mail-form-item-label {
  width: 100%;
  display: flex;
  align-items: center;
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.mail-form-item-label.isMsg {
  margin-top: 0;
}

.mail-form-item-label-required {
  display: inline-block;
  width: 32px;
  padding: 4px 0;
  margin-right: 16px;
  text-align: center;
  font-size: 10px;
  color: #fff;
  background: #0073aa;
  border-radius: 4px;
}

.mail-form-item-input,
.mail-form-item-textarea {
  width: 100%;
  font-size: 15px;
  background: #eaedf2;
  border: 1px solid #ddd;
  border-radius: 6px;
  padding: 0 1em;
  margin-top: 18px;
  box-sizing: border-box;
}

.mail-form-item-input {
  height: 40px;
}

.mail-form-item-textarea {
  height: 200px;
  padding: 1em;
}

.mail-form-btn {
  display: block;
  width: 280px;
  margin: 24px auto 0;
  padding: 8px 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.05em;
  color: #fff;
  background: #0073aa;
  border-radius: 6px;
  text-align: center;
}

/* ──────────────── PC（幅481px以上）向けスタイル ──────────────── */
@media screen and (min-width: 481px) {
  .mail-form {
    margin-top: 80px;
  }

  .mail-form-item {
    padding: 24px 0;
    flex-wrap: nowrap;
    align-items: flex-start;
  }

  .confirm_area .mail-form-item {
    align-items: center;
  }
  .mail-form-item-label {
    max-width: 248px;
    font-size: 18px;
  }

  .mail-form-item-label.isMsg {
    margin-top: 8px;
    margin-bottom: auto;
  }

  .mail-form-item-label-required {
    width: 48px;
    font-size: 14px;
    padding: 8px 0;
    border-radius: 6px;
  }
  .mail-form-item-input,
  .mail-form-item-textarea {
    margin-top: 0;
  }
  .mail-form-item-input {
    height: 48px;
    font-size: 18px;
    /* margin-left: 40px; */
    /* max-width: 410px; */
    width: 100%;
  }

  .mail-form-item-textarea {
    height: 216px;
    font-size: 18px;
    /* margin-left: 40px; */
    max-width: 410px;
  }

  .mail-form-btn {
    width: 280px;
    padding: 20px 0;
    font-size: 20px;
    margin-top: 32px;
  }
}

.contact-mailform .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}

/* ---------- page テンプレート ---------- */

.wordpress-page-wrap {
  font-family: "MOBO", sans-serif;
  font-weight: 400;
  color: #333;
  padding: 25px;
}
@media (min-width: 768px) {
  .wordpress-page-wrap {
    padding: 56px 0;
  }
}

.wordpress-page {
  width: 100%;
}
@media (min-width: 768px) {
  .wordpress-page {
    max-width: 660px;
    margin: 0 auto;
  }
}

.wordpress-page h1 {
  font-size: 18px;
  margin-bottom: 9px;
  color: #1a2b61;
}
@media (min-width: 768px) {
  .wordpress-page h1 {
    font-size: 28px;
    margin-bottom: 18px;
  }
}

.wordpress-page h2 {
  font-size: 16px;
  padding-bottom: 8px;
  margin: 24px 0;
  border-bottom: 3px solid #f0e8d8;
}
@media (min-width: 768px) {
  .wordpress-page h2 {
    font-size: 25px;
    padding-bottom: 10px;
    margin: 56px 0;
  }
}
.wordpress-page h3 {
  font-size: 16px;
  margin-top: 24px;
  margin-bottom: 8px;
}
@media (min-width: 768px) {
  .wordpress-page h3 {
    font-size: 18px;
    margin-top: 56px;
    margin-bottom: 15px;
  }
}
.wordpress-page h4 {
  font-size: 15px;
  margin-top: 56px;
  margin-bottom: 15px;
}
.wordpress-page p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 1.4em;
}
@media (min-width: 768px) {
  .wordpress-page p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 1.5em;
  }
}

.wordpress-page ul {
  margin: 0 0 1.5em 0;
  padding: 0;
}

.wordpress-page li {
  margin-left: 1em;
  font-size: 14px;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .wordpress-page li {
    margin-left: 1.5em;
    font-size: 15px;
    line-height: 1.7;
  }
}

/* ---------- サイトマップCSS ---------- */

.site-map-info {
  display: flex;
  flex-direction: column;
  margin: 25px 0;
}

@media (min-width: 768px) {
  .site-map-info {
    margin: 56px 0;
  }
}
.site-map-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 25px;
}
@media (min-width: 768px) {
  .site-map-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 50px;
  }
}

.site-map-column-title {
  font-size: 1.1em;
  color: #1b2c62;
  position: relative;
  margin-bottom: 6px;
}

.site-map-column-title::before {
  content: "";
  width: 30px;
  height: 1px;
  background-color: #eee;
  position: absolute;
  bottom: -2px;
  left: 0;
  z-index: 50;
}

@media (min-width: 768px) {
  .site-map-column-title {
    font-size: 24px;
    margin-bottom: 16px;
  }
  .site-map-column-title::before {
    width: 19px;
    height: 1.5px;
    bottom: -4px;
    left: 0;
  }
}

.site-map-column-inner ul {
  list-style-type: none;
}

.site-map-column-inner ul li {
  margin: 0 0 4px 0;
  padding: 0;
  line-height: 1.4;
}
@media (min-width: 768px) {
  .site-map-column-inner ul li {
    margin: 0 0 20px 0;
  }
}

.site-map-column-inner ul li a {
  font-size: 0.8em;
  color: #666;
  text-decoration: none;
  font-family: "MOBO", sans-serif;
  font-weight: 400;
}

@media (min-width: 768px) {
  .site-map-column-inner ul li a {
    font-size: 14px;
  }
}
