@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Kaku+Gothic+New:wght@400;500;700&display=swap');

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

:root {
  --semi-fontsize: 0.78rem;
  --normal-fontsize: 0.86rem;
  --middle-fontsize: 1.08rem;
  --big-fontsize: 1.25rem;
  --line-height: 1.6;
}

@media screen and (min-width: 600px) {
  :root {
    --semi-fontsize: 0.82rem;
    --normal-fontsize: 0.95rem;
    --middle-fontsize: 1.12rem;
    --big-fontsize: 1.33rem;
    --line-height: 1.7;
  }
}

@media screen and (min-width: 1024px) {
  :root {
    --semi-fontsize: 0.88rem;
    --normal-fontsize: 1.02rem;
    --middle-fontsize: 1.2rem;
    --big-fontsize: 1.4rem;
    --line-height: 1.8;
  }
}

@media screen and (min-width: 1440px) {
  :root {
    --semi-fontsize: 0.92rem;
    --normal-fontsize: 1.1rem;
    --middle-fontsize: 1.3rem;
    --big-fontsize: 1.6rem;
    --line-height: 1.9;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: var(--normal-fontsize);
  font-style: normal;
  color: #231815;
  line-height: var(--line-height);
  font-feature-settings: 'palt';
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
  background-color: #FFF;
}

p {
  word-break: break-word;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}

@media screen and (min-width: 1024px) {
  p{
    font-weight: 500;
  }
}

a {
  text-decoration: none;
  color: #000;
  font-size: var(--normal-fontsize);
  line-height: var(--line-height);
}
img {
  max-width: 100%;
  height: auto;
  border: 0;
  line-height: 0;
}
table {
  border-collapse: collapse;
}
ol, ul {
    list-style: none;
}
button{
  outline: none;
  border: 0;
}
a:link, a:visited, a:active, a:hover {
  overflow: hidden;
  outline: none;
}

.sp-only {
  display: block;
}
.tb-only{
  display: none;
}
.pc-only {
  display: none;
}

@media screen and (min-width: 599px) {
  .sp-only {
    display: none;
  }
  .tb-only {
    display: block;
  }
}

@media screen and (min-width: 1024px) {
  .pc-only {
    display: block;
  }
}
/*-- ここからHEADER --*/

.site-header {
  position: absolute;
  inset: 0 auto auto 0;
  width: 100%;
  z-index: 100;
  /* background: rgba(255,255,255,0.01);
  box-shadow: 0 3px 15px rgba(0,0,0,0.2); */
}

.header-inner {
  display: flex;
  align-items: center;
  padding-inline: 1rem;
  min-height: 64px;
}

@media screen and (min-width: 600px) {
  .header-inner {
    padding-inline: 1.8rem;
  }
}

.site-logo {
  margin: 0;
}
.site-logo img {
  width: 130px;
}

.hamburger {
  margin-inline-start: auto;
  width: 28px;
  height: 24px;
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  position: absolute;
  inset-inline-start: 0;
  width: 100%;
  height: 1px;
  background: #444;
  transition: transform .3s ease, opacity .3s ease;
}

.hamburger span:nth-child(1) { inset-block-start: 0; }
.hamburger span:nth-child(2) { inset-block-start: 11px; }
.hamburger span:nth-child(3) { inset-block-start: 22px; }

.hamburger.is-open span:nth-child(1) {
  transform: translateY(11px) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translateY(-11px) rotate(-45deg);
}

.global-nav {
  position: fixed;
  inset: 0;
  background: rgba(10,10,10,.92);
  display: grid;
  place-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.global-nav.is-open {
  opacity: 1;
  pointer-events: auto;
}

.global-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}

.global-nav li {
  margin-block: 1.5rem;
}

.global-nav a {
  font-size: 1rem;
  letter-spacing: .15em;
  color: #fff;
  text-decoration: none;
}


@media (min-width: 1280px) {
  .site-logo img {
    width: 160px;
  }
  .header-inner {
    padding-inline: 2rem;
  }

  .hamburger {
    display: none;
  }

  .global-nav {
    position: static;
    opacity: 1;
    pointer-events: auto;
    background: none;
    margin-inline-start: auto;
    display: block;
  }

  .global-nav ul {
    display: flex;
    gap: 2rem;
  }

  .global-nav li {
    margin: 0;
    font-size: .85rem;
  }

  .global-nav a {
    color: #232323;
    position: relative;
    font-size: 0.9rem;
    font-weight: 600;
  }

  .global-nav a::after {
    content: "";
    position: absolute;
    inset-inline-start: 0;
    inset-block-end: -6px;
    width: 100%;
    height: 1px;
    background: #C9A24D;
    opacity: 0;
    transform: translateY(4px);
    transition: .3s;
  }

  .global-nav a:hover::after {
    opacity: 1;
    transform: translateY(0);
  }
}
/*-- ここまでHEADER --*/

/* ここから fixed nav */
.scroll-nav {
  display: none;
}

@media screen and (min-width: 1024px) {
  .scroll-nav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    background-color: rgba(245, 202, 209, 0.88);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.6);
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    visibility: hidden;
  }

  .scroll-nav.is-fixed {
    transform: translateY(0);
    visibility: visible;
  }

  .scroll-nav ul {
    display: flex;
    justify-content: center;
    white-space: nowrap;
    list-style: none;
    padding: 10px 0 12px;
    -webkit-overflow-scrolling: touch;
  }
  .scroll-nav li {
    padding: 0 15px;
  }

  .scroll-nav a {
    color: #484041;
    text-decoration: none;
    font-size: 11px;
    font-weight: bold;
    transition: color 0.3s;
  }

  .scroll-nav a:hover {
    color: #e27c8d;
  }
}

@media screen and (min-width: 1280px) {
  .scroll-nav a {
    font-size: var(--semi-fontsize);
  }
}
/* ここまで fixed nav */

/* ここからMAIN VISUAL */
.kv {
  position: relative;
  overflow: hidden;
  padding: 90px 0 200px;
  color: #f6ffff;
}

.kv__bg {
  position: absolute;
  inset: 0;
  background: url("../images/kv_bg.jpg") center / cover no-repeat;
  z-index: 0;
}

.kv__grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    rgba(255,255,255,0.9) 0%,
    rgba(255,255,255,0.35) 25%,
    rgba(255,255,255,0) 100%
  );
  z-index: 1;
}

.kv__person {
  position: absolute;
  left: 20px;
  bottom: 0;
  width: 40%;
  z-index: 2;
}

.kv__person img {
  width: 100%;
  height: auto;
  display: block;
  filter: brightness(1.04) saturate(1.1) drop-shadow(0 20px 40px rgba(0,0,0,0.15));
}

.kv__pc{
  position: absolute;
  right: 20px;
  bottom: 90px;
  width: 50%;
  z-index: 2;
}

.kv__pc img {
  width: 100%;
  height: auto;
  display: block;
}

.kv__inner {
  position: relative;
  z-index: 3;
}

.kv__content {
  position: relative;
  padding: 0 6%;
}

.kv__titleimg{
  margin-bottom: 20px;
}

.kv__titleimg img{
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 15px 35px rgba(0,0,0,0.18));
}

.kv__frame {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  line-height: 0;
  pointer-events: none;
  z-index: 1;
}

.kv__frame img {
  width: 100%;
  height: auto;
  display: block;
}

@media (min-width: 768px) {

  .kv {
    padding: 100px 0 140px;
  }

  .kv__person {
    width: 34%;
    left: 6%;
  }

  .kv__pc{
    right: 10px;
    bottom: 30px;
    width: 270px;
  }

  .kv__inner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .kv__content {
    width: 58%;
    padding: 0 6% 0 0;
  }

  .kv__titleimg{
    max-width: 900px;
  }

  .kv__frame {
    bottom: -10px;
  }

}

@media (min-width: 1280px) {

  .kv {
    padding: 140px 0 160px;
  }

  .kv__person {
    width: 30%;
    left: 8%;
  }

  .kv__pc {
    right: 20px;
    bottom: 50px;
  }

  .kv__content {
    width: 58%;
    padding: 0 8% 0 0;
  }

  .kv__frame {
    bottom: -10px;
  }

}

@media (min-width: 1900px) {
  .kv__person {
    width: 500px;
  }

  .kv__pc {
    right: 6%;
    bottom: 8%;
  }
}
/* ここまでMAIN VISUAL */

/* ここから fade up */
.js-fade {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), 
              transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: opacity, transform;
}

.js-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-fade-group .js-fade:nth-child(1) { transition-delay: 0.1s; }
.js-fade-group .js-fade:nth-child(2) { transition-delay: 0.25s; }
.js-fade-group .js-fade:nth-child(3) { transition-delay: 0.4s; }
.js-fade-group .js-fade:nth-child(4) { transition-delay: 0.55s; }
.js-fade-group .js-fade:nth-child(5) { transition-delay: 0.7s; }
/* ここまで fade up */

/* ここから intro */
.osusume__contents {
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
  background-color: #fff9fa;
  background-image: 
    radial-gradient(at 0% 0%, rgba(255, 235, 59, 0.2) 0px, transparent 50%),
    radial-gradient(at 100% 0%, rgba(255, 64, 129, 0.15) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(0, 212, 255, 0.1) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(255, 0, 102, 0.1) 0px, transparent 50%);
  background-attachment: fixed;
  z-index: 1;
  padding: 0 0 60px;
}

.osusume__contents::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-image: radial-gradient(rgba(0, 0, 0, 0.05) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
  z-index: -1;
}

.bg-decoration {
  position: absolute;
  color: rgba(255, 64, 129, 0.15);
  font-weight: 900;
  z-index: -1;
  pointer-events: none;
  user-select: none;
}

.intro-section {
  padding: 60px 20px 0;
}

@media (min-width: 1024px) {
  .osusume__contents {
    padding: 0 0 100px;
  }
}

@media (min-width: 1440px) {
  .intro-section {
    padding: 120px 40px 0;
  }
}

.intro-text {
  text-align: center;
  line-height: 2.0;
  color: #333;
  font-weight: 700;
  font-size: var(--middle-fontsize);
}

.intro-title-wrapper {
  display: flex;
  justify-content: center;
  margin: 30px 0 20px;
}

.intro-title {
  background: #fff;
  border: 4px solid #000;
  box-shadow: 12px 12px 0px #ffeb3b;
  padding: 18px 32px;
  border-radius: 12px;
  font-size: var(--big-fontsize);
  font-weight: 900;
  position: relative;
  line-height: 1.2;
}

.intro-title::after {
  content: "★";
  position: absolute;
  top: -28px;
  right: -20px;
  color: #ff0066;
  font-size: 40px;
  text-shadow: 2px 2px 0px #000;
  transform: rotate(15deg);
}

@media (min-width: 768px) {
  .intro-title-wrapper {
    margin: 30px 0;
  }
}

@media (min-width: 1440px) {
  .intro-title-wrapper {
    margin: 60px 0;
  }
}

.reason-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  padding: 40px 20px 20px;
}

.reason-card {
  position: relative;
  background: #fff;
  border: 4px solid #000;
  border-radius: 24px;
  box-shadow: 12px 12px 0px #ffcada;
  padding: 40px 25px 30px 30px;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  min-height: 160px;
}

.reason-card-num {
  position: absolute;
  top: -35px;
  left: 15px;
  font-size: 4.5rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  -webkit-text-stroke: 1px #ff4081;
  filter: drop-shadow(4px 4px 0px #ffeb3b);
  z-index: 10;
  pointer-events: none;
  line-height: 0.8;
}

.reason-content {
  position: relative;
  z-index: 2;
  flex-grow: 1;
}

.reason-title {
  font-size: var(--big-fontsize);
  color: #000;
  margin-bottom: 18px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.4;
}

.reason-desc {
  color: #444;
  font-weight: 700;
  line-height: 1.8;
}

.highlight {
  color: #ff0066;
  position: relative;
  z-index: 1;
}

.highlight::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -2px;
  width: calc(100% + 4px);
  height: 45%;
  background: #ffeb3b;
  z-index: -1;
  opacity: 0.7;
}

@media (min-width: 768px) {

  .reason-container {
    flex-direction: row;
    max-width: 1200px;
    margin: 0 auto;
    gap: 30px;
    align-items: stretch;
  }

  .reason-card {
    flex: 1;
    padding: 40px 25px 30px;
    min-height: 220px;
  }

  .reason-card-num {
    left: -20px;
  }

}

@media (min-width: 1024px) {

  .reason-container {
    padding: 40px 0 20px;
  }

  .reason-card-num {
    font-size: 5.5rem;
    top: -50px;
    left: -20px;
  }

}

.content_section {
  padding: 60px 0 0;
  position: relative;
  overflow: visible; 
}

.contentWrapper {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
}

@media (min-width: 768px) {
  .content_section {
    padding: 60px 20px 0;
  }
}

.introContent {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 4px solid #000;
  border-radius: 24px;
  position: relative;
  overflow: visible; 
  isolation: isolate; 
  box-shadow: 15px 15px 0px rgba(0, 0, 0, 0.08);
  z-index: 1;
}

.osusume_img {
  width: 100%;
  height: 300px;
  border-bottom: 4px solid #000;
  overflow: hidden; 
  position: relative;
  border-radius: 20px 20px 0 0;
  z-index: 1;
}

.osusume_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.osusume_text{
  font-weight: 700;
}

.osusume_inner {
  padding: 60px 25px 40px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: visible; 
}

.osusume_card-num {
  position: absolute;
  top: -40px;
  left: -20px;
  font-size: 6.2rem;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  -webkit-text-stroke: 2px #ff4081;
  paint-order: stroke fill;
  filter: drop-shadow(6px 6px 0px #ffeb3b);
  z-index: 999; 
  pointer-events: none;
  line-height: 0.8;
  opacity: 1;
}

.osusume_title {
  font-size: 1.5rem;
  font-weight: 900;
  color: #000;
  margin-bottom: 1.3rem;
  line-height: 1.4;
  position: relative;
  z-index: 2; 
}

.text_area {
  flex-grow: 1;
  margin-bottom: 35px;
}

.osusume_note {
  font-size: var(--semi-fontsize);
  color: #777;
  line-height: 1.4;
  margin-top: 20px;
  border-left: 4px solid #ff4081;
  padding-left: 12px;
}

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

@media (min-width: 1024px) {
  .content_section {
    padding: 120px 0 0;
  }

 .introContent {
    flex-direction: row;
    min-height: 520px;
    align-items: stretch;
  }

  .content_1 .osusume_img,
  .content_3 .osusume_img {
    width: 40%;
    height: auto;
    border-bottom: none;
    border-right: 4px solid #000;
    border-radius: 20px 0 0 20px;
  }

  .content_2 .introContent {
    flex-direction: row-reverse;
  }

  .content_2 .osusume_img {
    width: 40%;
    height: auto;
    border-bottom: none;
    border-left: 4px solid #000;
    border-radius: 0 20px 20px 0;
  }

  .osusume-content {
    padding: 0;
  }

  .osusume_inner {
    width: 60%;
    padding: 80px 60px;
  }

  .osusume_title {
    font-size: 2.2rem;
  }

  .osusume_card-num {
    font-size: 7.8rem;
    top: -40px;
    left: -30px;
  }

  .content_2 .osusume_card-num {
    left: auto;
    right: -10px;
  }
}

@media (min-width: 1900px) {
  .content_section {
    padding: 120px 0 40px;
  }

  .osusume_title {
    font-size: 2.8rem;
  }

}

.z-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 340px;
  height: 58px;
  text-decoration: none;
}

.z-btn-base {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background: #000;
  border-radius: 14px;
  z-index: 1;
}

.z-btn-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  background: #fff;
  color: #000;
  font-weight: 900;
  font-size: var(--middle-fontsize);
  border: 4px solid #000;
  border-radius: 14px;
  z-index: 2;
  transition: 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.z-btn:active .z-btn-content {
  transform: translate(8px, 8px);
}

.z-btn:hover .z-btn-content {
  background: #ffeb3b;
}

.z-btn-icon {
  width: 24px;
  height: 24px;
  fill: #ff4081;
}
/* ここまで intro */

/* ここから price down */
.section-bridge {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 0 0;
}

.bridge-line {
  width: 4px;
  height: 140px;
  background-color: #000000;
}

.bridge-text {
  display: block;
  font-weight: 900;
  color: #ffffff;
  background-color: #ff0066;
  padding: 15px 45px;
  border: 4px solid #000000;
  border-radius: 100px;
  margin-bottom: 50px;
  box-shadow: 8px 8px 0px #000000;
}


@media (min-width: 1024px) {
  .section-bridge {
    padding: 20px 0;
  }
  .bridge-text {
    font-size: 1.6rem;
  }
}

.shop-discovery {
  background: linear-gradient(to bottom, #ffffff, #fff9fa);
  position: relative;
  overflow: hidden;
}

.discovery-header {
  text-align: center;
  padding: 0 20px 80px;
}

.discovery-header__sub {
  font-weight: 900;
  letter-spacing: 0.6em;
  color: #ff0066;
  margin-bottom: 15px;
}

.discovery-header__title {
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 30px;
}

.discovery-header__text {
  font-weight: 700;
  line-height: 1.8;
  color: #444444;
}

@media (min-width: 768px) {
  .discovery-header {
    padding: 0 20px 40px;
  }
}

@media (min-width: 1280px) {
  .discovery-header {
    padding: 0 20px 60px;
  }

  .discovery-header__title {
    font-size: 2.6rem;
    margin-bottom: 30px;
  }

  .discovery-header__text {
    line-height: 2.1;
    font-size: 1.1rem;
  }

  .discovery-header__sub {
    margin-bottom: 20px;
  }
}

@media (min-width: 1900px) {
  .discovery-header__title {
    font-size: 3.2rem;
  }
}

.content-tag {
  display: inline-flex;
  align-items: center;
  background-color: #000;
  padding: 8px 24px;
  border-radius: 4px;
  margin-bottom: 15px;
  transform: skewX(-12deg);
}

.tag-label {
  color: #ffeb3b;
  font-weight: 900;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  transform: skewX(12deg);
  font-style: italic;
}

.discovery-item {
  display: flex;
  flex-direction: column-reverse;
  margin-bottom: 40px;
}

.discovery-item:nth-child(2n) {
  flex-direction: column;
}

.discovery-item__img {
  display: flex;
  align-items: flex-end;
  padding: 0 25px;
  margin: 20px 0 45px;
  width: 100%;
}

.img-wrapper {
  border: 4px solid #000;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  background-color: #fff;
}

.main-image {
  width: 70%;
  aspect-ratio: 3 / 2;
  z-index: 1;
}

.sub-image {
  width: 50%;
  aspect-ratio: 16 / 9;
  z-index: 2;
  border-width: 2px;
}

.item-price .discovery-item__img {
  justify-content: flex-start;
}

.item-price .sub-image {
  margin-left: -20%;
  margin-bottom: -10%;
  box-shadow: -10px 10px 0px rgba(0,0,0,0.08);
}

.item-support .discovery-item__img {
  justify-content: flex-end;
}

.item-support .main-image {
  order: 2;
}

.item-support .sub-image {
  order: 1;
  margin-right: -20%;
  margin-bottom: -5%;
  box-shadow: 10px 10px 0px rgba(0,0,0,0.08);
}

.img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.discovery-item__content {
  padding: 0 25px;
}

.content-title {
  font-weight: 900;
  line-height: 1.45;
  margin-bottom: 20px;
  font-size: 1.5rem;
}

.content-text {
  font-weight: 500;
  color: #333;
}

@media (min-width: 1280px) {
  .discovery-item {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 150px;
    padding: 0 40px;
    gap: 40px;
  }

  .discovery-item:nth-child(2n) {
    flex-direction: row;
  }

  .discovery-item__img {
    width: 45%;
    position: relative;
    padding: 0;
    margin-bottom: 0;
    display: block;
    min-height: 420px;
  }

  .img-wrapper {
    position: absolute;
    max-width: 800px;
    border-width: 4px;
  }

  .main-image {
    width: 80%;
    top: 0;
    left: 0;
  }

  .sub-image {
    width: 60%;
    aspect-ratio: 3 / 2;
    bottom: 0;
    right: 20px;
    margin: 0;
    box-shadow: -25px 25px 0px rgba(0, 0, 0, 0.08);
  }

  .item-support .discovery-item__img {
    justify-content: flex-start;
  }

  .item-support .main-image {
    top: 0;
    right: 0;
    order: 0;
  }

  .item-support .sub-image {
    bottom: 0;
    right: 20px;
    order: 0;
    margin: 0;
    box-shadow: 25px 25px 0px rgba(0, 0, 0, 0.08);
  }

  .discovery-item__content {
    width: 55%;
    padding: 0;
  }

  .item-support .discovery-item__content {
    order: -1;
  }

  .content-tag {
    margin-bottom: 25px;
  }

  .content-title {
    font-size: 2.2rem;
  }

}

@media (min-width: 1900px) {
  .discovery-item {
    margin-bottom: 220px;
    padding: 0 60px;
    gap: 0;
  }

  .discovery-item__img {
    width: 55%;
    min-height: 540px;
  }

  .discovery-item__content {
    width: 45%;
    padding: 0 80px;
  }

  .sub-image {
    width: 50%;
    aspect-ratio: 3 / 2;
  }

  .discovery-item .main-image{
    left: 40px;
  }

  .item-support .sub-image {
    bottom: -80px;
    right: 40px;
  }

  .content-title {
    font-size: 2.8rem;
  }

  .content-text {
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 2;
  }

}
/* ここまで price down */

/* ここから student warranty */
.item-warranty-u22-ultra {
  background: linear-gradient(
    145deg, 
    #ffffff 0%, 
    #fcfcfc 40%, 
    #f4f7f9 100%
  );
  padding-bottom: 120px;
  color: #000000;
  overflow: hidden;
  font-family: sans-serif;
}

.u22-hero-combined {
  padding: 0 20px 60px;
  margin: 0 auto;
}

.u22-hero-combined__inner {
  background-color: #FFF074;
  border: 4px solid #000000;
  box-shadow: 10px 10px 0px #eeeeee;
  padding: 40px 20px;
  text-align: center;
}

.u22-hero-combined__body {
  text-align: left;
}

.u22-hero-combined__body p {
  margin-bottom: 15px;
  line-height: 1.7;
  font-weight: 700;
}

.u22-hero-combined__body p:last-child {
  margin-bottom: 0;
}

.u22-hero-combined__text{
  color: #ff0066;
  font-weight: 500;
}

@media (min-width: 768px) {
  .u22-hero-combined {
    max-width: 1200px;
    padding-bottom: 140px;
  }

  .u22-hero-combined__inner {
    border-width: 6px;
    box-shadow: 20px 20px 0px #eeeeee;
    padding: 60px 40px;
  }

  .u22-hero-combined__body {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
  }

}

@media (min-width: 1024px) {
  .u22-hero-combined__body p {
    font-weight: 800;
    font-size: 1.3rem;
  }
}

.warranty-content-wrapper {
  padding: 0 20px;
}

.u22-header-center {
  text-align: center;
  width: 100%;
}

.u22-section-label {
  font-weight: 900;
  background-color: #000000;
  color: #ffffff;
  display: inline-block;
  padding: 10px 45px;
  margin-bottom: 55px;
  clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
  font-size: var(--big-fontsize);
}

.service-comparison-table-wrap {
  margin: 0 auto 60px;
}

.u22-responsive-table {
  overflow-x: auto;
  border: 5px solid #000000;
  margin-bottom: 20px;
  box-shadow: 15px 15px 0px #f0f0f0;
}

.u22-full-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 1000px;
}

.u22-full-table th {
  background-color: #000000;
  color: #ffffff;
  padding: 25px;
  font-weight: 900;
}

.u22-full-table td {
  padding: 25px;
  border-bottom: 2px solid #000000;
  text-align: center;
  font-weight: 800;
}

.service-name {
  background-color: #f9f9f9;
  font-weight: 900;
}

.u22-highlight-row {
  background-color: #FFF074;
}

.u22-highlight-row .service-name {
  background-color: #FFe000;
}

.recommend-mini {
  display: block;
  font-size: 0.75rem;
  background-color: #ff0066;
  color: #ffffff;
  padding: 3px 8px;
  margin-top: 8px;
  border: 2px solid #000000;
}

.check {
  font-size: 1.8rem;
}

.highlight-gold {
  color: #ff0066;
  font-size: 1.6rem;
}

.u22-note {
  font-weight: 800;
  margin-bottom: 60px;
}

.u22-deep-info {
  max-width: 1000px;
  margin: 100px auto 0;
  display: flex;
  flex-direction: column;
  gap: 120px;
}

.u22-big-title {
  font-weight: 900;
  line-height: 1;
  margin-bottom: 25px;

  text-align: center;
}

.u22-big-lead {
  font-weight: 800;
  margin-bottom: 10px;
  text-align: center;
}

.u22-big-period {
  font-weight: 900;
  color: #ff0066;
  font-size: 1.4rem;
  margin-bottom: 40px;
  text-align: center;
}

.u22-example-panel {
  background-color: #000000;
  color: #ffffff;
  padding: 50px 140px;
  border-radius: 30px;
  position: relative;
}

.example-tag {
  background-color: #ff0066;
  padding: 5px 25px;
  font-weight: 900;
  margin-bottom: 30px;
  display: inline-block;
  transform: skewX(-15deg);
}

.example-list {
  list-style: none;
  padding: 0;
}

.example-list li {
  margin-bottom: 20px;
  padding-left: 60px;
  position: relative;
  font-weight: 700;
  line-height: 1.6;
}

.example-list li::before {
  content: 'CHECK';
  position: absolute;
  left: 0;
  color: #00ffcc;
  font-weight: 900;
  font-size: 0.7rem;
  border: 1px solid #00ffcc;
  padding: 2px 4px;
  top: 4px;
}

.ranking-stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 800px;
  margin: auto;
}

.rank-row {
  display: flex;
  align-items: center;
  border-bottom: 5px solid #000000;
  padding: 20px 0;
}

.rank-num {
  font-weight: 900;
  margin-right: 40px;
  font-size: 2rem;
  font-style: italic;
  color: #ff0066;
}

.rank-name {
  font-weight: 900;
  flex: 1;
  font-size: 1.2rem;
}

.rank-price {
  font-weight: 800;
  background: #f0f0f0;
  padding: 5px 15px;
}

.dousan-protection-area {
  margin: 120px auto 0;
  background-color: #00ffcc;
  padding: 80px 20px;
  border-top: 6px solid #000000;
  border-bottom: 6px solid #000000;
  text-align: center;
}

.dousan-title {
  font-weight: 900;
  margin-bottom: 15px;
}

.dousan-lead{
  font-weight: 700;
}

.dousan-plan-name {
  font-weight: 900;
  background-color: #000000;
  color: #ffffff;
  display: inline-block;
  padding: 10px 30px;
  margin-bottom: 30px;
  font-size: 1.4rem;
}

.dousan-visual-title{
  text-align: center;
  padding: 30px 0 20px;
  font-weight: bold;
  font-size: 1.3rem;
}

.dousan-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.dousan-item {
  background-color: #ffffff;
  border: 4px solid #000000;
  padding: 30px;
  box-shadow: 10px 10px 0px #000000;
}

.dousan-item img {
  width: 100px;
  height: 100px;
  margin-bottom: 15px;
}

.dousan-item p {
  font-weight: 900;
  font-size: 1.1rem;
}

.legal-info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  max-width: 1000px;
  margin: 100px auto 0;
}

.legal-card {
  border-top: 12px solid #000000;
  padding-top: 30px;
}

.legal-card__title {
  font-weight: 900;
  font-size: 1.3rem;
  margin-bottom: 20px;
  color: #ff0066;
}

.legal-card__text {
  line-height: 1.8;
  font-weight: 600;
}

.legal-card__image{
  padding: 0 0 20px;
}

.exclusion-section-ultra {
  max-width: 1000px;
  margin: 40px auto;
}

.u22-footer-notices {
  background-color: #000000;
  color: #ffffff;
  padding: 60px;
  border-radius: 40px;
}

.notice-label {
  font-weight: 900;
  color: #ff0066;
  margin-bottom: 25px;
  font-size: 1.2rem;
}

.notice-list {
  list-style: none;
  padding: 0;
  font-size: var(--semi-fontsize);
}

.notice-list li {
  margin-bottom: 15px;
  opacity: 0.9;
  line-height: 1.6;
}

@media (min-width: 1024px) {
  .u22-deep-info {
    flex-direction: column;
  }

  .exclusion-flex {
    flex-direction: column;
  }

  .discovery-header__title {
    font-size: 3rem;
  }

  .dousan-visual-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dousan-item img {
    width: 140px;
    height: 140px;
    margin-bottom: 15px;
  }
}

@media (min-width: 1900px) {
  .item-warranty-u22-ultra {
    padding-left: 8%;
    padding-right: 8%;
  }

  .warranty-content-wrapper {
    padding: 0;
    max-width: none;
    margin: 0 auto;
  }

  .u22-hero-combined__title {
    font-size: 3rem;
  }

  .u22-big-title {
    font-size: 4rem;
  }

  .u22-full-table th, 
  .u22-full-table td {
    font-size: 1.3rem;
  }
}

.u22-full-logic-visualizer {
  background-color: #f9f9f9;
  border: 4px solid #000000;
  padding: 40px 20px;
  margin: 40px auto 0;
  font-family: sans-serif;
}

.u22-logic-header {
  text-align: center;
  margin-bottom: 20px;
}

.u22-logic-title {
  font-weight: 900;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.u22-logic-subtitle {
  font-weight: 900;
  color: #ff0066;
  font-size: 1.1rem;
  margin-bottom: 20px;
}

.u22-logic-main-rule {
  font-weight: 800;
  line-height: 1.6;
}

.u22-logic-main-rule strong {
  color: #ff0066;
  font-size: 1.2rem;
  background: linear-gradient(transparent 70%, #ff006633 70%);
}

.u22-logic-text{
  text-align: center;
  padding: 0 0 0.5rem;
  font-weight: 500;
  font-size: var(--semi-fontsize);
}

.u22-logic-timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.u22-logic-card {
  background: #fff;
  border: 4px solid #000;
}

.u22-card-head {
  background: #000;
  color: #fff;
  font-weight: 900;
  text-align: center;
  padding: 10px;
  font-size: 0.9rem;
}

.u22-card-body {
  padding: 20px;
}

.u22-mini-chart {
  height: 120px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 12px;
  margin-bottom: 15px;
  border-bottom: 2px solid #ddd;
}

.u22-m-bar {
  width: 45px;
  position: relative;
  font-size: 0.7rem;
  font-weight: 900;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  text-align: center;
  line-height: 1.4;
}

.p80 { height: 80px; }
.p70 { height: 70px; }
.p60 { height: 60px; }
.p55 { height: 55px; }
.p40 { height: 40px; }

.is-repair .u22-m-bar {
  background: #ff0066; 
}
.u22-m-used { 
  background: #000; 
  color: #fff; 
  height: 30px; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 0.6rem; 
}

.u22-m-remain { 
  border: 2px dashed #000; 
  flex: 1; 
  display: flex; 
  align-items: center; 
  justify-content: center; 
  font-size: 0.6rem; 
}

.is-active {
   background: #ff0066; 
   color: #fff; 
   padding-bottom: 5px; 
}
.is-ghost { 
  background: #eeeeee; 
  color: #999; 
  padding-bottom: 5px; 
  border: 1px solid #ddd; 
}

.u22-card-text {
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.5;
}

@media (min-width: 1024px) {
  .u22-logic-timeline {
    flex-direction: row;
    align-items: stretch;
  }

  .u22-logic-card {
    flex: 1;
  }

  .u22-card-text {
    height: 5.5em;
  }
}
/* ここまで student warranty */

/* ここから premium u */
/* --- Support System Base --- */
.premium_u_contents {
  padding-bottom: 100px;
}

/* Header Area */
.discovery-header {
  text-align: center;
  padding: 0 8%;
  margin-bottom: 60px;
}

.discovery-header__sub {
  font-weight: 900;
  letter-spacing: 0.2em;
  color: #ff0066;
  margin-bottom: 10px;
}

.discovery-header__title {
  font-size: 1.8rem;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 25px;
}

.discovery-header__text {
  font-weight: 700;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

.support_inner {
  padding: 0 8%;
}

.support_title {
  background: #00ffcc;
  color: #000;
  text-align: center;
  padding: 15px;
  font-weight: 900;
  font-size: 1.2rem;
  margin-bottom: 30px;
  border-top: 6px solid #000000;
  border-bottom: 6px solid #000000;
}

.support_title span{
  font-size: 1.4rem;
}

.support_main_grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.support_item_card {
  background: #ffffff;
  border: 4px solid #000000;
  padding: 30px 20px;
  position: relative;
  box-shadow: 10px 10px 0px #eeeeee;
  margin-bottom: 30px;
}

.support_case_header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
  border-bottom: 2px solid #f0f0f0;
  padding-bottom: 15px;
}

.case_label {
  display: inline-block;
  background: #ff0066;
  color: #ffffff;
  font-weight: 900;
  font-size: 0.75rem;
  padding: 2px 12px;
  width: fit-content;
  letter-spacing: 0.1em;
}

.support_item_head {
  font-weight: 900;
  font-size: 1.25rem;
  line-height: 1.4;
  color: #000000;
  display: flex;
  align-items: center;
}

.support_item_head::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  background: #ff0066;
  margin-right: 12px;
  border-radius: 50%;
}

@media (min-width: 768px) {
  .support_item_card {
    padding: 40px;
    box-shadow: 15px 15px 0px #eeeeee;
  }

  .support_case_header {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .support_item_head {
    font-size: 1.5rem;
    border-bottom: none;
    padding-bottom: 0;
  }
}

@media (min-width: 1900px) {
  .support_title {
    padding: 30px;
    font-size: 1.8rem;
  }
  
  .support_title span{
    font-size: 2.8rem;
    border-bottom: 8px solid #FFF074;
  }
}

.support_step {
  display: flex;
  gap: 15px;
  margin-bottom: 15px;
  align-items: flex-start;
}

.step_num {
  background: #ff0066;
  color: #fff;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 900;
  font-size: 0.8rem;
}

.step_txt {
  font-weight: 700;
  line-height: 1.6;
}

.remote_service_banner {
  background: #f7f7f7;
  border: 4px solid #000;
  padding: 40px 20px;
}

.remote_header {
  text-align: center;
  margin-bottom: 30px;
}

.remote_catch {
  font-weight: 900;
  color: #ff0066;
  margin-bottom: 15px;
}

.remote_title h3 {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 5px;
}

.remote_sub {
  font-weight: 800;
  font-size: 0.9rem;
}

.remote_body {
  position: relative;
  margin-bottom: 40px;
}

.remote_copy_main {
  font-weight: 900;
  font-size: 1.1rem;
  margin-bottom: 15px;
  text-align: center;
}

.remote_copy_sub {
  font-weight: 600;
  line-height: 1.7;
}

.limitless_badge {
  background: #ff0066;
  color: #fff;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-weight: 900;
  margin: 20px auto;
  border: 4px solid #000;
  line-height: 1.2;
}

.limitless_badge span {
  font-size: 1.2rem;
}

.trouble_example_grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 20px;
}

.example_card {
  background: #fff;
  border: 2px solid #000;
  padding: 10px;
  text-align: center;
}

.example_card img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}

.example_card p {
  font-size: 0.8rem;
  font-weight: 800;
  line-height: 1.4;
}

.example_footer_text {
  text-align: center;
  font-weight: 900;
  margin-bottom: 60px;
}

.remote-support-section {
  border-top: 2px solid #000;
  padding-top: 40px;
}

.remote-title {
  text-align: center;
  font-weight: 900;
  margin-bottom: 30px;
}

.remote-flow-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.remote-flow-item {
  text-align: center;
}

.remote-flow-label {
  display: inline-block;
  background: #000;
  color: #fff;
  padding: 4px 15px;
  font-weight: 800;
  margin-bottom: 10px;
}

.remote-flow-image img {
  width: 100%;
  max-width: 240px;
  border: 4px solid #000;
  margin-bottom: 15px;
}

.remote-flow-text {
  font-weight: 700;
  font-size: 0.9rem;
  text-align: left;
}

.remote-hours {
  margin-top: 40px;
  background: #fff;
  padding: 15px;
  border: 2px solid #000;
  font-weight: 800;
  font-size: 0.85rem;
  text-align: center;
}

@media (min-width: 1024px) {
  .discovery-header__title {
    font-size: 3rem;
  }

  .support_main_grid {
    flex-direction: row;
    margin-bottom: 100px;
  }

  .support_item_card {
    flex: 1;
  }

  .remote_service_banner {
    padding: 60px 40px;
  }

  .remote_body {
    display: flex;
    align-items: center;
    gap: 40px;
  }

  .remote_copy_area {
    flex: 1;
    text-align: left;
  }

  .remote_copy_main {
    text-align: left;
    font-size: 1.5rem;
  }

  .remote_catch {
    margin-bottom: 0;
  }

  .remote_title h3 {
    font-size: 2.8rem;
  }

  .remote_sub {
    font-size: 1.2rem;
  }

  .limitless_badge {
    margin: 0;
    width: 140px;
    height: 140px;
    font-size: 1.2rem;
    line-height: 0;
  }

  .limitless_badge span {
    font-size: 1.4rem;
    line-height: 0;
  }

  .trouble_example_grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .remote-flow-container {
    flex-direction: row;
    align-items: flex-start;
  }

  .remote-flow-item {
    flex: 1;
  }
  
  .remote-flow-arrow {
    align-self: center;
    width: 30px;
    height: 30px;
    border-top: 4px solid #ff0066;
    border-right: 4px solid #ff0066;
    transform: rotate(45deg);
  }

  .remote-flow-text {
    padding: 0 3em;
  }
}

@media (min-width: 1024px) {
  .remote_service_banner {
    padding: 60px 120px;
  }
}

.u22-price-footer {
  padding: 60px 8%;
  background: transparent;
}

.u22-price-card {
  background: #ffffff;
  border: 4px solid #000000;
  box-shadow: 15px 15px 0px #f0f0f0;
  overflow: hidden;
}

.u22-price-card__header {
  background: #000000;
  color: #ffffff;
  padding: 25px 20px;
  text-align: center;
}

.u22-price-card__sub {
  font-size: 0.85rem;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: 0.05em;
}

.u22-price-card__title {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.u22-price-card__body {
  padding: 40px 20px;
  text-align: center;
  background-color: #FFF074;
}

.u22-price-card__desc {
  font-weight: 800;
  line-height: 1.6;
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.u22-price-display {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.u22-price-main {
  font-weight: 900;
}

.u22-price-main .label {
  font-size: 1rem;
  display: block;
  margin-bottom: 5px;
}

.u22-price-main .amount {
  font-size: 3.5rem;
  line-height: 1;
  color: #ff0066;
}

.u22-price-main .unit {
  font-size: 1.2rem;
  color: #ff0066;
}

.u22-price-benefit {
  background: #ff0066;
  color: #ffffff;
  padding: 15px 30px;
  transform: rotate(-1deg);
  border: 4px solid #000;
}

.benefit-text {
  font-weight: 900;
  font-size: 1.2rem;
}

.benefit-text .big {
  font-size: 2.2rem;
  margin: 0 5px;
  text-decoration: underline;
}

@media (min-width: 1024px) {
  .u22-price-footer {
    padding: 100px 8%;
  }

  .u22-price-card {
    max-width: 900px;
    margin: 0 auto;
  }

  .u22-price-card__sub {
    font-size: 1.1rem;
  }

  .u22-price-card__title {
    font-size: 3rem;
  }

  .u22-price-card__desc {
    font-size: 1.4rem;
  }

  .u22-price-display {
    flex-direction: row;
    justify-content: center;
    gap: 50px;
  }

  .u22-price-main .label {
    display: inline;
    margin-right: 10px;
  }

  .u22-price-main .amount {
    font-size: 4.5rem;
  }

  .benefit-text {
    font-size: 1.5rem;
  }
}


/* ここまで premium u */

/* ここから to all parents */
.univ_promotion {
  padding: 2rem;
  background-color: #eff5fb; 
}

/* .univ_inner {
  max-width: 1200px;
  margin: 0 auto;
} */

.pr_univ_title {
  font-size: var(--big-fontsize);
  font-weight: bold;
  color: #333;
  margin-bottom: 20px;
  padding-left: 15px;
  border-left: 5px solid #ff0066;
  line-height: 1.2;
}

.univ_row {
  margin-bottom: 40px;
}

.univ_img {
  width: 80%;
  margin: 20px auto;
}

.univ_img img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  display: block;
}

.univ_text p {
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .univ_promotion {
    padding: 60px 0 0;
  }

  .pr_univ_title {
    text-align: center;
    border-left: none;
    padding-left: 0;
    margin-bottom: 60px;
  }
  
  .pr_univ_title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: #ff0066;
    margin: 15px auto 0;
  }

  .univ_row {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 80px;
    padding: 0 2rem;
  }

  .univ_row:last-child {
    margin-bottom: 0;
  }

  .univ_row:nth-child(2) {
    flex-direction: row-reverse;
  }

  .univ_text {
    flex: 1;
  }

  .univ_img {
    flex: 1;
    margin-top: 0;
  }

}

@media (min-width: 1280px) {
  .univ_row {
    max-width: 1200px;
    margin: 0 auto 6rem;
    padding: 0;
    gap: 80px;
  }
  .univ_promotion {
    padding: 6rem 0 0;
  }
  .univ_text p {
    line-height: 1.8;
  }
}
/* ここまで to all parents */


/* ここから Case Studies */
.case-study-section {
  padding: 0 2rem;
  background-color: #eff5fb; 
}

.case-study-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.case-study-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 64, 152, 0.08);
  display: flex;
  flex-direction: column;
}

.case-study-image {
  width: 100%;
  height: 250px;
}

.case-study-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-study-content {
  padding: 30px 20px;
}

.case-study-badge {
  display: inline-block;
  width: fit-content; /* 文字の幅に強制的に合わせる */
  background: #ff0066;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  margin-bottom: 15px;
  letter-spacing: 0.05em;
  line-height: 1.5;
  /* 2026年トレンド：少しの鮮やかさと、背景への馴染み */
  box-shadow: 0 2px 8px rgba(23, 163, 175, 0.3);
}

.case-study-title {
  font-size: var(--big-fontsize);
  color: #003366;
  margin: 0 0 20px 0;
  font-weight: bold;
}

.case-study-lead {
  line-height: 1.6;
  color: #333;
  margin-bottom: 20px;
}

.case-study-details {
  margin-bottom: 25px;
  border-top: 1px solid #eee;
  padding-top: 20px;
}

.detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  line-height: 1.5;
}

.detail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 6px;
}

.case-study-note {
  font-size: 0.85rem;
  font-weight: bold;
  background: #fdf2f4;
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

.case-study-summary {
  font-size: var(--middle-fontsize);
  color: #003366;
  font-weight: bold;
  border-left: 4px solid #003366;
  padding-left: 15px;
  line-height: 1.5;
}

@media (min-width: 768px) {
  .case-study-section {
    padding: 8rem 2rem;
  }

  .case-study-card {
    flex-direction: row;
    min-height: 450px;
  }

  .case-study-badge {
    font-size: var(--normal-fontsize);
    padding: 10px 25px;
    margin-bottom: 22px;
  }

  .case-study-image {
    width: 45%;
    height: auto;
  }

  .case-study-content {
    width: 55%;
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

}

@media (min-width: 1024px) {
  .case-study-note {
    font-size: var(--normal-fontsize);
  }
  .case-study-content {
    padding: 40px;
  }
}

@media (min-width: 1900px) {
  .case-study-content {
    padding: 80px;
  }

  .case-study-title {
    margin: 0 0 30px 0;
  }
}

/* ここまで Case Studies */

/* ここから kodawari bnr */
.kodawari__bnr__contents{
  background: #f8f6fb;
  background: linear-gradient(90deg, rgba(248, 246, 251, 1) 0%, rgba(235, 235, 235, 1) 100%);
  padding: 6% 2rem 8%;
}
.kodawari__bnr__wrap{
  max-width: 1300px;
  margin: auto;
}
.kodawari__bnr__wrap h2{
  font-size: var(--middle-fontsize);
  text-align: center;
  padding: 0 0 1rem;
}
.kodawari__bnr{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

.kodawari__bnr a{
  position: relative;
  display: block;
  overflow: hidden;
}

.kodawari__bnr img{
  width: 100%;
  height: auto;
  display: block;
  transition:
    transform .6s cubic-bezier(.22,.61,.36,1),
    filter .6s ease;
  will-change: transform;
}

.kodawari__bnr a::after{
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(
    90deg,
    #d6001c,
    #d9101e
  );
  transition: width .5s ease;
  z-index: 2;
}

@media (hover: hover){
  .kodawari__bnr a:hover img{
    transform: scale(1.03);
    filter: brightness(1.05) contrast(1.05);
  }

  .kodawari__bnr a:hover::before{
    opacity: .85;
  }

  .kodawari__bnr a:hover::after{
    width: 100%;
  }
}

.kodawari__bnr a:focus-visible{
  outline: 2px solid #111;
  outline-offset: 4px;
}

.kodawari__bnr{
  align-items: stretch;
}

@media (max-width: 767px){
  .kodawari__bnr a::after{
    height: 3px;
  }
}

@media (min-width: 1024px) {
  .kodawari__bnr__wrap h2{
    padding: 0 0 2rem;
  }
  .kodawari__bnr{
    gap: 1rem;
  }
}

@media (min-width: 1400px) {
  .kodawari__bnr__wrap h2{
    padding: 0 0 3rem;
    font-size: 1.4rem;
  }
  .kodawari__bnr{
    gap: 2rem 1.8rem;
  }
}

@media (min-width: 1900px) {
  .kodawari__bnr__wrap{
    max-width: 1400px;
  }
}
/* ここまで kodawari bnr */

/* ここから shop info */
.shop__infowrap {
  margin: 0 auto;
  background: #fffcf7;
  padding: 40px 20px;
}

.shop__list__title {
  font-size: var(--big-fontsize);
  text-align: center;
  margin-bottom: 0.7rem;
  border-bottom: 2px solid #093781;
  padding-bottom: 10px;
}

.shop__list_title span {
  background: linear-gradient(90deg, #1485cc 0%, #093781 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: bold;
}

.shop__open {
  text-align: center;
  font-size: var(--semi-fontsize);
  margin-bottom: 30px;
}

.shop__adress__contents{
    max-width: 580px;
    margin: auto;
}
.shop__adress_wrap {
  margin-bottom: 40px;
  font-size: var(--semi-fontsize);
}

.shop__adress_wrap h3 {
  font-size: var(--middle-fontsize);
  border-left: 5px solid #093781;
  padding-left: 10px;
  margin-bottom: 15px;
  color: #093781;
}

.shop__adress_wrap h3 span{
  color: #FF2323;
}

.shop__table {
  width: 100%;
  border-collapse: collapse;
}

.shop__table th,
.shop__table td {
  padding: 7px 15px;
  border-bottom: 1px solid #555;
  text-align: left;
}

.shop_table tbody tr:last-child th,
.shop_table tbody tr:last-child td {
  border-bottom: none;
}

.shop__table th.tenpo {
  font-weight: bold;
  white-space: nowrap;
  width: 20%;
}

.shop__table td.adress {
  width: 75%;
}

.shop__table td.detail{
  width: 15%;
}

.shop__table td.detail a {
  color: #093781;
  text-decoration: none;
  border-bottom: 1px dashed #1485cc;
  transition: all 0.3s ease;
  font-size: var(--semi-fontsize);
}

.shop__table td.detail a:hover {
  color: #1485cc;
  border-bottom: 1px solid #fff;
}

@media screen and (min-width: 1024px) {
  .shop__infowrap {
    padding: 6rem 2%;
  }
  .shop__list__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }
  .shop__adress__contents {
    max-width: 900px;
    margin: 4rem auto 0;
  }
  .shop__table tbody{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 3rem;
  }
  .shop__table th.tenpo {
    width: 20%;
  }
  .shop__adress_wrap h3 {
    font-size: var(--normal-fontsize);
  }
}

@media screen and (min-width: 1440px) {
  .shop__adress__contents {
    max-width: 1000px;
  }
  .shop__table tbody{
    gap: 0 4rem;
  }
}
/* ここまで shop info */

/* ここから フッター */
.p-footer {
  padding: 20px 60px 10px;
  background-color: #3D3E4A;
}
.p-footer__inner {
  display: block;
}
.p-footer__nav {
  font-size: 0.65rem;
}
.p-footer__navList {
  max-width: 280px;
  margin: 18px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.p-footer__navItem {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:nth-child(3n) {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
.p-footer__logo {
  width: 100%;
  height: auto;
  max-width: 160px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 24px;
}
.p-footer__navItem a {
  color: #FFF;
  font-size: 0.8rem;
}
.p-footer__copyLight {
  text-align: center;
  display: block;
  margin-top: 30px;
  font-size: 0.7rem;
  color: #FFF;
}

@media screen and (min-width: 599px) {
  .p-footer__navList {
    max-width: 100%;
}
.p-footer__navItem:nth-child(3n) {
  padding-right: 10px;
  margin-right: 10px;
  border-right: 1px solid #75706f;
}
.p-footer__navItem:last-child {
  border-right: transparent;
  margin-right: 0;
  padding-right: 0;
}
}

@media screen and (min-width: 768px) {
  .p-footer__inner {
    max-width: 1000px;
    display: flex;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }
}
/* ここまで フッター */

/* go to TOP */
#pagetop {
  position: fixed;
  right: 10px;
  bottom: 10px;
  margin: 0;
}

#pagetop a {
  position: relative;
  display: flex;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  background: #F5CAD1;
  color: #fff;
  text-decoration: none;
  font-size: 40px;
  border-radius: 100%;
  transition: opacity .6s ease;
}

#pagetop a:hover {
  opacity: .6;
}

@media screen and (max-width: 1024px) {
  #pagetop a {
    width: 40px;
    height: 40px;
    font-size: 20px;
  }
}

/* go to TOP */
