@charset "utf-8";
/* CSS Document */
/*
/*
============================
ページ表示
============================
*/
html {
  scroll-behavior: smooth;
}

body {
    display: none;
    font-family: "Noto Serif JP", serif!important;
    color: #554241;
}


.fadein {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}


.fadein.show {
  opacity: 1;
  transform: translateY(0);
}


@media (min-width: 769px) {
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none;
    }
}
@media (max-width: 768px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}


/* fadeUp */
.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 1s;
    animation-fill-mode: forwards;
    opacity: 0;
}
@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.fadeUpTrigger {
    opacity: 0;
}
/*



============================
header(NEW global)
============================
*/

@media (min-width: 769px) {
    .pc_only {
        display: block;
    }
    .sp_only {
        display: none;
    }
}
@media (max-width: 768px) {
    .pc_only {
        display: none;
    }
    .sp_only {
        display: block;
    }
}


.header {
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    width: 95vw;
    height: 80px;
    z-index: 200;
    background-color: #ffffff;
    border-radius: 0 0 50px 50px;
    box-shadow: 0 4px 3px rgba(0, 0, 0, 0.2);
}
.header_inner {
    position: relative;
    padding: 20px 15px;
}
.logo {
    position: absolute;
    top: 6%;
    left: 0;
    padding: 15px 15px;
    width: 260px;
}
.logo .title {
    font-size: 2rem;
    color: #fff;
    font-family: 'Roboto', sans-serif;
}
/* header固定のため余白をつける。メニューのCSSには関係ない */
.main {
    margin-top: 60px;
}
.entry-button {
    font-family: "Noto Sans JP", sans-serif!important;
    background-color: #6aa4a4;
    color: #ffffff !important;
    padding: 15px 20px !important;
    border-radius: 25px;
    text-decoration: none;
    font-size: 14px;
    text-align: center !important;
    line-height: 14px;
}
.entry-button:hover {
    background-color: #589393;
}
.nav_item small {
    font-size: 11px;
    color: #999;
}
@media only screen and (max-width: 1200px) {
    header {
        background-color: #fff;
        transition: background-color 0.3s ease;
    }
    body.nav-open header {
        background-color: transparent;
    }
    .nav {
        position: fixed;
        right: -101vw; /* 右から出てくる */
        top: 0;
        width: 101vw; /* スマホに収まるサイズ */
        height: auto;
        padding-top: 60px;
		padding-bottom:30px;
        transition: all .6s;
        z-index: 200;
        overflow-y: auto; /* メニューが多くなったらスクロールできるように */
        border-radius: 0 0 30px 30px;
    }
    .header_inner {
        line-height: 57px;
    }
    .hamburger {
        position: absolute;
        right: 20px;
        top: 0px;
        width: 40px; /* クリックしやすい幅 */
        height: 40px; /* クリックしやすい高さ */
        cursor: pointer;
        z-index: 300;
    }
    .nav_list {
        margin: 0;
        padding: 0 40px;
        list-style: none;
    }
    .nav_item {
        padding: 0;
        position: relative;
        border-bottom: 2px solid #aaa1a0;
    }
    /*.nav_item:last-child {
        border-bottom: 0px solid #aaa1a0
    }*/
    .nav_item a {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding-top: 5px;
        text-decoration: none;
        color: #554241;
        font-family: 'Noto Serif JP', serif;
        font-size: 16px;
        font-weight: 500;
        position: relative;
    }
    .nav_list li a::before {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 20%;
        height: 2px;
        background-color: #554241;
        z-index: 2;
        border-radius: 1px;
    }
    /* タイトル+smallを縦に並べる */
    .nav-text {
        display: flex;
        flex-direction: column;
        line-height: 1.4;
    }
    /* small を下に */
    .nav-text small {
        font-size: 12px;
        color: #554241;
        font-weight: 400;
        margin-top: 4px;
    }
    /* 矢印 */
    .nav_item a::after {
        content: url("../../images/arrow.svg");
        width: 18px;
        color: #64989F;
        margin-left: 8px;
    }
    .nav-btn {
        text-align: center;
        width: 200px;
        margin: 10px auto;
    }
    .nav-btn a {
        font-family: "Noto Sans JP", sans-serif;
        width: 100%;
        display: block;
    }
    .white-btn {
        background-color: #FFFFFF;
        border: 1px solid;
        color: #554241 !important;
    }
    .nav-pp {
        font-family: "Noto Sans JP", sans-serif;
        font-size: 12px;
        padding: 40px;
        padding-bottom: 0px;
    }
    .hamburger_border {
        position: absolute;
        left: 11px;
        width: 18px;
        height: 2px;
        background-color: #555c9f;
        transition: all .6s;
    }
    .hamburger_border_top {
        top: 14px;
    }
    .hamburger_border_center {
        top: 20px;
    }
    .hamburger_border_bottom {
        top: 26px;
    }
    .black_bg {
        position: fixed;
        left: 0;
        top: 0;
        width: 101vw;
        height: 100vh;
        z-index: 100;
        background-color: #fff;
        opacity: 0;
        visibility: hidden;
        transition: all .6s;
        cursor: pointer;
    }
    /* 表示された時用のCSS */
    .nav-open .nav {
        right: 0;
    }
    .nav-open .black_bg {
        visibility: visible;
        height: 100vh;
    }
    .nav-open .hamburger_border_top {
        transform: rotate(45deg);
        top: 20px;
        background-color: #555c9f;
    }
    .nav-open .hamburger_border_center {
        width: 0;
        left: 50%;
        background-color: #555c9f;
    }
    .nav-open .hamburger_border_bottom {
        transform: rotate(-45deg);
        top: 20px;
        background-color: #555c9f;
    }
} /* sp */
@media only screen and (min-width: 1201px) {
	
	
    .header_inner {
        max-width: 1800px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .logo .title {
        width: 12vw;
    }

    .logo {
        padding: 15px 0 15px 40px!important;
        color: #000;
    }
    .nav_list {
        text-align: right;
		padding-right: 20px;
    }
    .nav_list li {
        display: inline-block;
        text-align: right;
        padding-right: 1.5%;
    }
    .nav_list li a {
        color: #000;
        font-family: 'Noto Serif JP', serif;
        position: relative;
        font-size: 14px;
        display: inline-block;
        width: 6.5vw;
        text-align: left;
        padding-bottom: 5px
    }
    .nav_list li:nth-child(5) a {
        width: 10vw;
    }
	
    .nav_list li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 1px;
        background-color: #554241;
        z-index: 1;
    }
    .nav_list li a::before {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 2px;
        background-color: #aaa1a0;
        z-index: 1;
        border-radius: 1px;
    }
    .nav_list li a::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 20%;
        height: 2px;
        background-color: #554241;
        transition: width 0.4s ease;
        z-index: 2;
        border-radius: 1px;
    }
    /* hoverで濃い線が全体に伸びる */
    .nav_list li a:hover::after {
        width: 100%;
    }
}
.nav_item a.entry-button {
    transform: translateY(-6px);
}
/* pc */
@media only screen and (max-width: 768px) {
    .header {
        width: 100vw;
        height: 50px;
    }
    .logo {
        width: 140px;
        top: -10px;
        left: 33px;
        padding: 0;
        z-index: 300;
    }
		    .logo .title img {
        vertical-align: middle;
    }

	
}
@media (max-width: 1520px) and (min-width: 1201px) {
    .nav_list li a {
        font-size: 12px;
    }
    .nav_list li a {
        width: 7vw;
    }
    .nav_list li:nth-child(5) a {
        width: 10vw;
    }
}
@media (max-width: 1200px) and (min-width: 769px) {
	 .hamburger {
			top:10px;
	}
	
	    .header {
        width: 100vw;
        height: 65px;
    }


    .logo {
        top: 18%;
        left: 50px;
        padding: 0;
    }
    .nav {
        right: -104vw;
    }
    .nav-open .nav {
        right: -3vw;
    }
    .nav_list {
        padding: 0 120px;
    }
    .nav_item:last-child a.entry-button {
        display: block;
    }
}


/*
============================
TOP
============================
*/


/* ===== セクション（共通） ===== */
.aboutus {
  position: relative;
  padding: 100px 0px 30px;
 background: linear-gradient(to bottom right, #ffffff 0%, #FAE2E1 100%);
}
.aboutus-stage {
  position: relative;
  width: auto;
  margin: 0 auto;
aspect-ratio: 22 / 9;
	padding: 0 24px;
	overflow: hidden;
}
/* ===== 画像のベーススタイル ===== */
.au-img {
  position: absolute;
  display: block;
  width: 360px;              /* 基準サイズ（各画像で微調整） */
  height: auto;
  opacity: 0;
  transform: scale(0.85);
  animation: zoomIn 1s cubic-bezier(0.25, 0.9, 0.3, 1.2) forwards;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.85);
    filter: blur(4px);
  }
  70% {
    opacity: 1;
    transform: scale(1.03);
    filter: blur(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@-webkit-keyframes zoomIn {
  0%   { opacity: 0; -webkit-transform: scale(0.85); -webkit-filter: blur(4px); }
  70%  { opacity: 1; -webkit-transform: scale(1.03); -webkit-filter: blur(0); }
  100% { opacity: 1; -webkit-transform: scale(1); }
}
/* ====== PCレイアウト（指定どおりの重なり） ======
*/
@media (min-width: 601px){
  .i1 { left: -0.4vw; top: 0; width: 34.6vw; }
  .i2 { left: 23vw; top: 6vw; width:29.2vw; }
  .i3 { right: 20.5vw; top: 10.94vw; width: 25.1vw; }
  .i4 { right: -3.08vw; top: 3vw; width: 34.6vw; }

  .i1 { animation-delay: .5s; }
  .i2 { animation-delay: .8s; }
  .i3 { animation-delay: 1.1s; z-index: 20;}
  .i4 { animation-delay: 1.4s; z-index: 10; }


  .au-title {
    position: absolute;
    left: 5vw;      
    top: 26vw; 
    max-width: 566px;
    color: #112248;

  }
  .au-title h2 {
    font-size: clamp(16px, 5.2083vw, 100px);
    margin: 0 0 10px;
    letter-spacing: .06em;
	  opacity: 0.5;
	}
  .au-title p { margin: 0; color: #112248;font-size: clamp(8px, 1.1458vw, 22px);white-space: nowrap; }
}

/* ====== SPレイアウト ======
*/
@media (max-width: 600px){
	.aboutus {
		padding: 80px 0px 20px;
	}
	
  .aboutus-stage {
	  width:100vw;
    height: clamp(400px, 164vw, 650px);  
    padding: 0 16px 24px;
	  
  }

  /* 上段（1・2）ブロック全体の高さを確保して、子は絶対配置 */
  .aboutus-stage::before { content:""; display:block; height: 235px; }

  .i1 { left: -28px; top: 0; width: clamp(255px, 70vw, 300px); }
  .i2 {
    top: 80px;
    width: clamp(255px, 70vw, 300px);
    right: -24px;       
  }
	
  .au-title {
    position: relative;
    margin: 10vw 0 18px;
	      color: #112248;

  }
  .au-title h2 { font-size: clamp(24px, 13.3333vw, 50px); margin: 0 0 6px;opacity: 0.5; }
  .au-title p  { margin: 0;color: #112248;font-size: clamp(14px, 4.8vw, 18px); }

  .aboutus-stage::after { content:""; display:block; height: 200px; }

  .i3 { left: -8px; top: 410px; width: clamp(200px, 53vw, 360px); z-index: 20;}
  .i4 {
    top: calc(235px + 155px);
    width: clamp(255px, 70vw, 300px);
    right: -24px;
  }

  .i1 { animation-delay: .5s; }
  .i2 { animation-delay: .8s; }
  .au-title { animation: none; } 
  .i3 { animation-delay: 1.1s; }
  .i4 { animation-delay: 1.4s; }


}

.page-links {
  background: #fff;
  border: 2px solid #DC908C;
  border-radius: 76.5px;
  padding: 35px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 0 auto;
	max-width: clamp(800px, 78.125vw, 1500px);


}

.page-links ul {
  display: flex;
	justify-content: center;
	align-items: center;
  flex-wrap: wrap;
row-gap: 1.5625vw;
column-gap: 2.8125vw;
	list-style: none;
  padding: 0;
  margin: 0;
	
}

.page-links a {
  text-decoration: none;
  color: #0b1b3f;
  font-weight: bold;
  transition: color 0.2s;
  position: relative;
  padding-right: 12px; 
	font-size: clamp(14px, 1.0417vw, 20px);

}

.page-links a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-right: 2px solid #0b1b3f;
  border-bottom: 2px solid #0b1b3f;
  transform: rotate(45deg);
  margin-left: 10px;
  transition: border-color 0.2s; 
  pointer-events: none; 
	 vertical-align: 3px;
}

.page-links a:hover {
  color: #f46a6a;
}

.page-links a:hover::after {
  border-color: #f46a6a; /* 矢印の線色を変更 */
}


/* ===== スマホ用レイアウト切替 ===== */
@media (max-width: 600px){
  /* 外枠は消して中のボタンを強調 */
  .page-links{
    background:transparent;
    border:none;
    box-shadow:none;
    padding:0;
    margin-bottom:24px;
	  margin-top: 10vw;
  }
  /* 2列のグリッドに */
  .page-links ul{
    display:grid;
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:12px 8px;
  }
  /* ボタン化（左はテキスト、右に矢印） */
  .page-links a{
    width:167px;
	  height: 50px;
	  display: flex;
	  font-size: 13px;
 align-items: center; 
    background:#DC908C;              /* 好みで調整（画像のピンク系） */
    color:#fff;
    padding:12px 14px 12px 17px;
    border-radius:9999px;            /* ピル型 */
    text-align:left;
	  position: relative;
  }
  .page-links a::after{
    border-right-color:#fff;         /* 矢印は白 */
    border-bottom-color:#fff;
	  width: 7px;
	  height: 7px;
    margin-left:10px;
	  position: absolute;
	  right: 13px;
	  bottom: 50%;
  }
  .page-links a:hover{ opacity:.9; }  /* タッチでも違和感少ない */
  .page-links a:active{
    transform:translateY(1px);
    box-shadow:0 2px 8px rgba(0,0,0,.08), inset 0 1px 0 rgba(255,255,255,.25);
  }
	
	  .page-links a { position: relative; z-index: 1; }   /* 念のため前面に */
  .page-links a::after { pointer-events: none; }      /* ←これが効きます */
}

/* さらに極小端末は1列に */
@media (max-width: 360px){
  .page-links ul{ grid-template-columns:1fr; }
}



/*
============================
私たちの目指す場所
============================
*/

.sticky-hero{
  position: relative;
  display: grid;           /* ← 重ねるためにグリッド化 */
  min-height: 120vh;       /* 好みで。演出時間に応じて */
  overflow: clip;
  color: #fff;
}

.sticky-hero__bg,
.sticky-hero__content{
  grid-area: 1 / 1;        /* ← 同じセルに重ねる */
}

.sticky-hero__bg{
  position: sticky;
  top: 0;
  height: 100vh;           /* 画面に貼り付く */
  background: url('../../images/goal-bg.png') center/cover no-repeat;
  z-index: 0;
  transform: translateZ(0);
}

.sticky-hero__content{
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 40vh 1.5rem 54vh; /* 上を小さく、下は演出用に広め */
	text-align: center;
}

.sticky-hero__content h2{
	font-size: 43px;
	}
.sticky-hero__content p{
	font-size: 28px;
	margin-top: 50px;
	line-height: 40px;
	}

/* 見出しなど最初の要素のデフォマージンを消して“さらに詰める” */
.sticky-hero__content > :first-child { margin-top: 0; }

@media (max-width: 768px){
	
	.sticky-hero__content{
  padding: 50vh 1.5rem 20vh; /* 上を小さく、下は演出用に広め */
	}	
	.sticky-hero__content h2{
	font-size: 24px;
	}
.sticky-hero__content p{
	font-size: 16px;
	margin-top: 30px;
	line-height: 25px;
	}


}

/*
============================
メディカルライナーズの取り組み
============================
*/

.ts-section {
  position: relative;
  background: #fff;
  overflow: hidden;
  min-height: 100vh;
  padding: 0.99vw 0.99vw 7.4vw;
}

.ts-hero-text{
  position:absolute; inset:0 0 auto 0; display:flex; justify-content:center; padding-top:24px;
  line-height:.8; color:#AF9DA233;opacity: 0.5;
  font-size:12vw; pointer-events:none; user-select:none;font-family: "Noto Serif JP", serif;white-space: nowrap;
}

.ts-header{ position:relative; z-index:1; text-align:center; max-width:960px; margin: 4.3vw auto 6vw; padding:0 16px; }
.ts-title{ margin:8px 0 30px; color:#554241; font-size:28px; font-weight:800; }
.ts-lead{ margin:12px auto 0; max-width:720px; color:#554241; line-height:1.8;font-size: 16px; font-family: "Noto Sans JP", sans-serif;}


/* ---- ステージ＆背景（背景は中央配置、薄くしない） ---- */
.ts-stage {
  position: relative;
  --stage-h: 44.4vw; /* 720px */
  height: var(--stage-h);
  overflow: visible;
  opacity: 0;
  transform: translateY(1.85vw);
  transition: opacity 1.5s ease-out, transform 1.5s ease-out;
}

.ts-stage.is-visible{
  opacity: 1;
  transform: translateY(0);
}

.ts-bg {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  max-width: 82.7vw; /* 1340px */
  height: auto;
}

.orbit {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
  --R: 18.5vw; /* 300px */
  --img-scale: 1.1;
  --dur: 3000ms;
  --start-offset: 0turn;
  --timing: cubic-bezier(.37, 0, .63, 1);
}

.ts-circle {
  position: absolute;
  width: clamp(7.4vw, 18vw, 13.6vw);
  transform: translate(-50%, -50%) scale(var(--img-scale));
  transform-origin: center;
  will-change: transform, opacity;
  pointer-events: auto;
  left: 50%;
  top: 50%;
  animation: seed 1ms forwards, spin var(--dur) var(--timing) 1 forwards;
  animation-play-state: paused;
  opacity: 0;
  animation-timing-function: cubic-bezier(.37, 0, .63, 1);
}

/* 初期に一瞬だけ“重ねる＆表示” */
@keyframes seed {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* 円運動（時計回り）。角度は個別の --theta で制御 */
@keyframes spin {
  from {
    transform:
      translate(-50%, -50%)                          
      rotate(calc(-135deg + var(--start-offset)))
      translateX(var(--radius, var(--R)))             
      rotate(calc(135deg - var(--start-offset)))
      scale(var(--img-scale));
  }
  to {
    transform:
      translate(-50%, -50%)                             
      rotate(calc(-135deg + var(--start-offset) + var(--theta)))
      translateX(var(--radius, var(--R)))
      rotate(calc(135deg - var(--start-offset) - var(--theta)))
      scale(var(--img-scale));
  }
	}
/* ---- 停止角（0/5,1/5,2/5,3/5,4/5）＆重なり順を逆（c1が最前面） ---- */
#c1 { --theta: 0turn; z-index: 105; width: 24.7vw; --radius: calc(var(--R) - 1.85vw); }
#c2 { --theta: calc(1turn / 5 + 0.08turn); z-index: 104; width: 21vw; --radius: calc(var(--R) - 0.62vw); }
#c3 { --theta: calc(2turn / 5 + 0.06turn); z-index: 103; width: 17.3vw; --radius: calc(var(--R) + 3.08vw); }
#c4 { --theta: calc(3turn / 5 + 0.015turn); z-index: 102; width: 17.3vw; }
#c5 { --theta: calc(4turn / 5 - 0.02turn); z-index: 101; width: 17.3vw; --radius: calc(var(--R) + 1.23vw); }

/* ---- 「見えたら再生」：JSが .is-visible を付与したら走る ---- */
#ts-stage.is-visible .ts-circle{
  animation-play-state: running; animation-delay: 0s;
}

/* ---- アクセシビリティ：動きを抑制（設定しているユーザー） ---- */
@media (prefers-reduced-motion: reduce){
  .ts-circle{
    animation: none;
    opacity: 1;
    /* 最終停止位置に即配置（spin の to と同等にするには個別に set してください） */
  }
}





@media (max-width: 768px) {
	.ts-section{
		padding-bottom: 20vw;
	}
	
  .ts-hero-text {
    transform: rotate(90deg);
    transform-origin: top right; /* 回転の基準点を右上に */
    right: 70vw;
    top: 43vw;
    bottom: auto;
    font-size: 36vw;
    justify-content: flex-start;
    padding-top: 0;
    padding-right: 8px;
  }
.ts-header{ width:95%; margin:70px auto 40px;text-align: left;}	
	.ts-title{ margin:8px 0 30px;font-size:21px; font-weight:700; }
.ts-lead{ margin:12px auto 0; max-width:720px; color:#554241; line-height:1.8;font-size: 16px; font-family: "Noto Sans JP", sans-serif;}

	.ts-bg{width: 90vw;}
	
  .orbit-wrapper {
    transform: scaleY(0.2);
    transform-origin: center center;
  }	
}

	

	


#mlbiz-stage {
  display: block;
  min-height: 400px;
  position: relative;
  z-index: 2;

}

.mlbiz-stage-wrapper {
  position: relative;
  width: 100%;
  margin: 0 auto;

}

.mlbiz-stage {
  width: 100%;
  display: block;
}

.mlbiz-circles {
  position: absolute;
  inset: 0;
  z-index: 1;
}

#mlbiz-stage .mlbiz-circle {
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translate(-50%, 0) scale(0.75);
  opacity: 0;
	line-height: 4.5vw;
  width: 48vw;
  height: 48vw;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 4vw;
  color: #fff;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
	border: 1.2px solid #ffffff;
}

/* 色 */
.mlbiz-circle--1 { background: linear-gradient(135deg, rgba(255, 175, 189, 0.8), rgba(255, 195, 160, 0.8)); width: 60vw!important; height: 60vw!important; }
.mlbiz-circle--2 { background: linear-gradient(135deg, rgba(151, 150, 240, 0.8), rgba(251, 199, 212, 0.8)); }
.mlbiz-circle--3 { background: linear-gradient(135deg, rgba(33, 147, 176, 0.8), rgba(109, 213, 237, 0.8)); }
.mlbiz-circle--4 { background: linear-gradient(135deg, rgba(255, 226, 89, 0.8), rgba(255, 209, 164, 0.8)); }
.mlbiz-circle--5 { background: linear-gradient(135deg, rgba(17, 153, 142, 0.8), rgba(56, 239, 125, 0.8)); }


/* タイトル */
.mlbiz-title {
	position: relative;
  font-weight: 700;
  margin-bottom: 3vw;
  font-size: clamp(12px, 4vw, 20px);
font-family: "Noto Sans JP", sans-serif!important;
	text-shadow:
    1px 1px 0 #ffffff,
    -1px 1px 0 #ffffff,
    1px -1px 0 #ffffff,
    -1px -1px 0 #ffffff;
}
.mlbiz-title::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -8px;
	transform: translateX(-50%);
  width: 10vw;
  height: 1px;
  background-color: #ffffff;
}


.mlbiz-circle--1 .mlbiz-title{color: #F53778; }
.mlbiz-circle--2 .mlbiz-title{color: #760CB3; }
.mlbiz-circle--3 .mlbiz-title{color: #108EC5; }
.mlbiz-circle--4 .mlbiz-title{color: #817000; }
.mlbiz-circle--5 .mlbiz-title{color: #21A031; }


/* SDGsブロック */
.mlbiz-sdgs {
  display: flex;
  gap: 4px;
  justify-content: center;
  flex-wrap: wrap;
  padding: 4px;
	
}

.mlbiz-sdg {
  width: 11vw;
  height: 11vw;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 3px;
  box-sizing: border-box;
}

.mlbiz-circle p{
font-family: "Noto Sans JP", sans-serif!important;
	font-size: clamp(10px, 3.5vw, 18px);
	font-weight: bold;
}
.mlbiz-circle--1 p{margin-right: auto;margin-left: 12vw;}
.mlbiz-circle--3 p{margin-right: auto;margin-left: 5vw;font-size: clamp(10px, 2.5vw, 18px);text-align: left;}
.mlbiz-circle--3 .mlbiz-sdgs{gap:2px;}
.mlbiz-circle--4 p{color: #817000;font-size: clamp(10px, 4vw, 18px);font-weight: bold;margin-bottom: 5px;}
.mlbiz-circle--5 p{margin-right: auto;margin-left: 3.5vw;text-align: left;font-size: clamp(10px, 3.2vw, 18px);}
.mlbiz-circle--5 .mlbiz-sdgs{gap:2px;}

.mlbiz-border{
	border: 1px solid #ffffff;
	padding: 2px;
	margin-top: 5px;
	border-radius: 4px;
}

.mlbiz-sdg-top { display: flex; gap: 2px; align-items: flex-start; padding-top: 2px;}
.mlbiz-sdg-num { font-size: 8px; font-weight: 800;line-height: 0.5em;font-family: "din-2014-narrow", sans-serif!important; }
.mlbiz-sdg-label { font-size: 0.8vw; line-height: 1.1; text-align: left; font-family: "Noto Sans JP", sans-serif!important;}
.mlbiz-sdg-icon img { width: 10vw; height: auto;padding-top: 3px; }

/* SDGsカラー */
.mlbiz-sdg-1  { background: #E4011E; }
.mlbiz-sdg-2  { background: #D6A600; }
.mlbiz-sdg-3  { background: #1B973A; }
.mlbiz-sdg-4  { background: #C50E28; }
.mlbiz-sdg-8  { background: #970A31; }
.mlbiz-sdg-9  { background: #EC6A06; }
.mlbiz-sdg-10 { background: #DC097B; }
.mlbiz-sdg-11 { background: #F5A20B; }
.mlbiz-sdg-15 { background: #28A838; }
.mlbiz-sdg-17 { background: #19486A; }

/* 目的地を変数で保持（top/leftはここでは書かない） */
.mlbiz-circle--1 { --final-top: 8%;  --final-left: 50%; }
.mlbiz-circle--2 { --final-top: 39%; --final-left: 25%; }
.mlbiz-circle--3 { --final-top: 39%; --final-left: 75%; }
.mlbiz-circle--4 { --final-top: 68%; --final-left: 25%; }
.mlbiz-circle--5 { --final-top: 68%; --final-left: 75%; }

/* アニメーション開始時 */
#mlbiz-stage.mlbiz-animate .mlbiz-circle {
  animation: mlbiz-fly 1.8s cubic-bezier(.22, .75, .18, 1) forwards;
  animation-delay: calc((var(--index, 1) - 1) * 0.45s);
}

/* 中央上→最終配置への移動＋フェード */
@keyframes mlbiz-fly {
  0% {
    top: 10%;
    left: 50%;
    opacity: 0;
    transform: translate(-50%, 0) scale(0.7);
  }
  40% {
    opacity: 1;
  }
  100% {
    top: var(--final-top);
    left: var(--final-left);
    opacity: 1;
    transform: translate(-50%, 0) scale(1);
  }
}

/*
============================
SERVICE01
============================
*/


.service01 {
  padding: 80px 5vw;
  background: #fff;
 background: linear-gradient(to bottom, #FBE8E7 0%, #FFFFFF 50%);
	
}

/* ヘッダー部分 */
.service-header {
  text-align: center;
}

.service-subtitle {
  display: inline-flex;
  align-items: center;
  font-size: 16px;
  color: #112248;
  position: relative;
  padding-left: 15px;
font-family: "Noto Sans JP", sans-serif;
		font-weight: 500;
}

.service-subtitle::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #FFAAAA;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.service-title {
  font-size: 71px;
  margin-top: 8px;
  letter-spacing: 2px;
	color: #112248;
	opacity: 0.5;

}

.point-title {
  position: relative;
  font-weight: bold;
  color: #112248; 
  font-size: 15px;
  letter-spacing: 1px;
  padding-left: 50px;
	margin-bottom: 30px;
}

.point-title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 40px;
  height: 1px;
  background-color: #112248; 
  transform: translateY(-50%);
	opacity: 0.5;
}

.point-heading{
	font-size: 38px;
	color: #112248;
	margin-bottom: 30px;
	line-height: 1.5em;
	width:34vw;
}

.point-text{
	font-size:16px;
font-family: "Noto Sans JP", sans-serif;
	line-height: 24px;
	width: 34vw;
	color: #112248;
}

.point01 .point-text{
	letter-spacing: 0.25em;
}


/* POINT01ブロック */
.point01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  margin-top: 80px;
}

.point01 .text-block {
  width: 45%;
  z-index: 2;
	padding-left: 9vw;
}

.point01 .image-block {
  width: 35.4vw;
  position: relative;
	margin-right: 6vw;
}

.point01 img {
  width: 100%;
  position: relative;
  z-index: 1;
}

.point01 .bg-pink {
  position: absolute;
  left: -19.3vw; 
  bottom: -6.4vw;
 width: 41vw;
  height: 15.9vw;
  background: #FBE8E7;
  z-index: 0;

}

/* POINT02ブロック */
.point02 {
  display: flex;
  align-items: flex-start;
  margin-top: 120px;
  position: relative;
gap: 4vw;
}

.point02 .images-left {
  width: 50%;
  position: relative;
}

.point02 .img2 img {
  position: absolute;
	 width: 23.9vw;
	top: -7.1vw;

}

.point02 .img3 {
  position: absolute;
   left: 21vw;
  top: -1vw;
}

.point02 .img3 img {
  width: 25.0vw;
}

.point02 .text-block {
  width: 40%;
}

/* ボタン */
.button-wrap {
  text-align: center;
  margin-top: 9vw;
}

.btn {
    display: inline-block;
    position: relative;
    padding: 0px 34px 0px 0px; /* 右に余白を取る */
    background-color: #112248;
    color: #ffffff;
    text-decoration: none;
    border-radius: 50px;
    font-size: 14px;
    transition: background-color 0.3s ease;
    overflow: hidden;
    width: 300px;
    height: 50px;
    line-height: 50px;
font-family: "Noto Sans JP", sans-serif;
}
/* 矢印アイコン（疑似要素） */
.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 28px;
    width: 44px;
    height: 16px;
    background: url("../../images/btn-arrow.svg") no-repeat center center / contain;
    transform: translateY(-50%);
    transition: transform 0.3s ease;
}
/* hoverで矢印を右にスライド */
.btn:hover::after {
    transform: translate(4px, -50%);
}
/* 背景も変える */
.btn:hover {
    background-color: #363d4c;
}

/* ---------- SP用 ---------- */
@media (max-width: 900px) {
  .service01 {
 background: linear-gradient(to bottom, #FBE8E7 0%, #FFFFFF 15%);
    padding: 60px 20px;
  }
	.service-title{
		font-size: 40px;
	}
	
	.point-heading{
		font-size: 30px;
		margin-bottom: 20px;
		width:100%;
	}
	.point-title{
	margin: 15px 0;
	}
	.point-text{

	}

  .point01,
  .point02 {
    flex-direction: column;
    align-items: center;
	   position: static;
  }

  .point01 .image-block,
	.point01 .text-block,
  .point02 .images-left,
  .point02 .text-block,
	.point-text{
    width: 100%;
		padding: 0;
  }
	
	  .point01 .text-block {
    order: 2;
		  		position: relative;
			  z-index: 10;

  }
  .point01 .image-block {
    order: 1;
	  margin: 0;
  }
	.point01{
		margin-top:40px;
	}

  .point01 .bg-pink {
    position: absolute;
     top:clamp(300px, 142vw, 861px);
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 325px;
	  box-shadow: 0 0 0 100vmax rgba(251, 232, 231, 1);
	  clip-path: inset(0 -100vmax);
	  z-index: 0;


	  
  }

  .point01 .text-block {
    margin-top: 20px;


  }
	.point01 img{
		position: static;
		border-radius: 50px;
	}
	
	.point02{
		margin-top: 75px;
	}

  .point02 .img2 img {
    position: static;
    width: 100%;
    margin-top: -30px;
	  border-radius: 50px;
  }
	.point02 .img3 {    position: static;
}

  .point02 .img3 img {
    position: static;
    width: 100%;
    margin-top: 20px;
	  border-radius: 50px;
  }

  .point02 .text-block {
    margin-top: 20px;
    width: 100%;
  }

}

/*
============================
SERVICE02
============================
*/
.service02{
	padding: 6vw 0;
}

.service02 .service-subtitle::before {
  background-color: #AAFAFF;
}


.service02 img{
	width: clamp(400px, 46.875vw, 900px);
}

.service02 .text-block{
	padding-left: 1vw;
}
.service02 .note{
	text-align: right;
	font-size: 14px;
	color: #112248;
	font-weight: 500;
font-family: "Noto Sans JP", sans-serif;
		width: clamp(400px, 46.875vw, 900px);
	margin-top: 10px;
}

@media (min-width: 901px) {
	.service02 .point-heading{width:570px;}
	.service02 .point-text{width:550px;}
}

@media (max-width: 900px) {
	.service02{
			padding: 60px 20px ;

	}	
	.service02 img{
	border-radius: 50px;
		width: 100%;
	}	
.service02 .note{
	width:100%;
	font-size: 13px;
	text-align: left;
	}
}


/*
============================
SERVICE03
============================
*/
.service03{
	padding: 80px 5vw;
}

.service03 .service-subtitle::before {
  background-color: #E00BD9;
}


.service03 img{
	width: clamp(300px, 39.06vw, 750px);
}

.service03 .point-text{
 background: linear-gradient(to bottom right, #ffffff 0%, #FAE2E1 100%);

}

.service03 .note{
	text-align: right;
	font-size: 14px;
	color: #112248;
	font-weight: 500;
font-family: "Noto Sans JP", sans-serif;
		width: clamp(300px, 39.06vw, 750px);
	margin-top: 10px;
}

.service03 .point {
  position: relative;
  gap: 20px; 
}

.service03 .text-block {
  position: relative;
  z-index: 1; 
	padding-left: 8vw;
}

.service03 .point-text {
  position: relative;
  z-index: 2;
  background: none; 
	width: 36vw;
	top:-3vw;
}

.service03 .text-block::after {
  content: "";
  position: absolute;
  bottom: clamp(-110px, -5.52vw, -10px); 
  left: clamp(30px, 4.29vw, 70px);;
  width: 120%;   
  height:clamp(400px, calc(750px - 28vw), 700px);
   background: linear-gradient(to bottom right, #ffffff 0%, #FAE2E1 100%);
  z-index: 0; 
  border-radius: 50px;
	opacity: 0.8;
}


@media (max-width: 900px) {
	.service03{
			padding: 60px 20px ;

	}	
	.service03 img{
	border-radius: 50px;
		width: 100%;
	}	
.service03 .note{
	width:100%;
	font-size: 13px;
	text-align: left;
	padding-left:8px;
	}
	
	.service03 .image-block{
		position: relative;
		z-index: 10
	}
	.service03 .text-block{
		padding: 0 7px
	}
	
.service03 .text-block::after {
  content: "";
  position: absolute;
  bottom: -10px; 
  left: 0;
  width: 100%;   
  height:clamp(300px, 116vw, 700px);  
   background: linear-gradient(to bottom right, #ffffff 0%, #FAE2E1 100%);
  z-index: 0; 
  border-radius: 50px;
	opacity: 0.8;
}
	
	.service03 .point-text {
		width:100%;
		letter-spacing:0;
	}
	
	
}

/*
============================
SERVICE04
============================
*/

:root {
  --container: min(1100px, 92vw);
  --cs-radius: 22px;
  --cs-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  --cs-card-w: clamp(320px, 57.29vw, 1100px);
  --cs-card-h: clamp(400px, 83.7vh, 700px);
  --cs-peek: 28%;
}

@media (max-width: 759.98px) {
  :root {
    --cs-card-h: 360px;
    --cs-peek: 16%;
  }
}


/* ========== Showcase Section ========== */
.showcase {
  position: relative;
  isolation: isolate;
  display: grid;
  place-items: center;
  min-height: 90vh;
  overflow: hidden;
  background: #000;
	padding-bottom: 60px;
}

.showcase a{
	color: #554241;
}

.showcase .service-header{
	position: relative;
	z-index: 2;
	margin: 80px 0;
}
.showcase .service-subtitle,.showcase .service-title{
	color: #ffffff;
	opacity: 1;
}

.showcase .service-subtitle::before {
  background-color: #76E642;
}

.showcase__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-position: center;
  background-size: cover;
  opacity: 1;
  transition: opacity .45s ease;
}

.showcase__veil {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-color: rgba(175, 157, 162, 0.8);
}

.container {
  position: relative;
  z-index: 2;
  width: var(--container);
  padding: clamp(14px, 2vw, 24px) 0;
}

.stage {
  position: relative;
  margin: 0 auto;
  width: var(--cs-card-w);
  height: var(--cs-card-h);
}

/* ========== 共通カード（アクティブ/ピーク同一サイズ） ========== */
.card {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  margin: 0 auto;
  outline: none;
  width: var(--cs-card-w);
  height: var(--cs-card-h);
  border-radius: var(--cs-radius);
  overflow: hidden;
  background: rgba(255, 255, 255, .95);
  box-shadow: var(--cs-shadow);
}

.card__media {
  position: relative;
  overflow: hidden;
  height: 48%;
}

.card__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card__body { padding: 22px; }

.card__kicker {
  font-weight: 500;
  font-size: 20px;
	position: relative;
	padding-left: 20px;
    font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 20px;
}

.card__kicker::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #76E642;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


.card__title {
  margin: .2rem 0 .4rem;
  font-size: 1.61vw;
	margin-bottom: 2vw;

}
.acc__subtitle{
	font-size: 1.98vw;
	font-family: "Noto Serif JP", serif!important;
	margin-bottom: 2vw;
	line-height: 1.2em;
}

.card__text {
  overflow: hidden;
  height: auto;
  color: #112248;
	font-size: 1.04vw;
    font-family: "Noto Sans JP", sans-serif;
	margin-bottom: 20px;
	line-height: 1.7em;
}

.card__counter {
  position: absolute;
  right: 18px;
  bottom: 12px;
  font-size: .9rem;
  color: #6b7280;
}

/* 2カラムはmd以上 */
@media (min-width: 760px) {
  .card { grid-template-columns: 1fr 1fr; }
  .card__media { order: 2; height: 100%; }
  .card__body { order: 1; padding: 70px 32px 24px; }
}

/* ========== 端からチラ見せ（同サイズを半分以上画面外に） ========== */
.card--peek {
  position: absolute;
  top: 50%;
  left: 50%;
  pointer-events: none;
  transform: translate(-50%, -50%);
  opacity: .92;
  transition: transform .4s ease;
}

.card--peek-left {
  left: 0;
  transform: translate(calc(-140% + var(--cs-peek)), -50%);
}

.card--peek-right {
  right: 0;
  transform: translate(calc(90% - var(--cs-peek)), -50%);
}


/* ========== スライド（右→左 / 左→右） ========== */
.slide-from-right { animation: slideFromRight .45s ease both; }
.slide-from-left  { animation: slideFromLeft .45s ease both; }

@keyframes slideFromRight {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes slideFromLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ========== コントロール ========== */
.controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 30px;
}

.control {
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: transform .12s ease;
  width: 42px;
  height: 42px;
  border: 1px solid #DC908C;
  border-radius: 50%;
  font-size: 22px;
  background: #fff;
  box-shadow: var(--cs-shadow);
}

.control::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("../../images/arrow_pink.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

#prevBtn::before { transform: rotate(-90deg); } /* ← 左向き */
#nextBtn::before { transform: rotate(90deg); }   /* ← 右向き */


.control:active { transform: scale(.96); }

.indicator {
  font-weight: 600;
  letter-spacing: .2em;
  color: #fff;
}

/* ========== SP表示切り替え ========== */
.mobile-accordion { display: none; }

@media (max-width: 759.98px) {
  .stage, .controls { display: none !important; }
	.showcase .service-header{
		    margin: 90px 0 0;
	}
  .mobile-accordion {
    display: block;
    position: relative;
    z-index: 2;
    margin: 16px auto 24px;
    width: min(92vw, 420px);
  }

  .showcase__bg { display: none !important; }

  #showcase {
    position: relative;
    z-index: 0;
    min-height: 100vh;
    overflow: hidden;
    background-image: url('../../images/service04_1.jpg');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    background-color: #111;
  }

  .showcase::before {
    position: fixed;
    inset: 0;
    z-index: -1;
    content: "";
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .showcase__veil {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background-color: rgba(175, 157, 162, 0.8);
    backdrop-filter: none;
  }

  .container { position: relative; z-index: 2; }

  /* ========== アコーディオン ========== */
  details.acc {
    position: relative;
    z-index: 2;
    margin: 14px 0;
    overflow: hidden;
    border-radius: 22px;
    background: transparent;
    box-shadow: none;
  }

  details[open].acc {
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .18);
  }

  summary.acc__summary {
    display: block;
    position: relative;
    list-style: none;
    cursor: pointer;
    padding: 0;
    outline: none;
    -webkit-tap-highlight-color: transparent;
    touch-action: manipulation;
  }

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

  summary.acc__summary > * { pointer-events: none; }
  .acc__summary * { pointer-events: none; }
  .acc__summary a, .acc__summary button { pointer-events: auto; }

  .acc__media {
    position: relative;
    overflow: hidden;
    height: 275px;
  }

  .acc__media::after {
    position: absolute;
    inset: 0;
    z-index: 1;
    content: "";
    pointer-events: none;
    background: rgba(0, 0, 0, 0.45);
  }

  .acc__media img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .acc__kicker {
    position: absolute;
    top: 36px;
    left: 25px;
    font-size: 14px;
    color: #FFFFFF;
    font-weight: 500;
    letter-spacing: .02em;
    padding: 4px 8px;
    border-radius: 12px;
    z-index: 2;
	  padding-left: 15px;
  }
	
	.acc__kicker::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #76E642;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}


  .acc__avatar {
    position: absolute;
    top: 12px;
    right: 12px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    font-weight: 700;
    background: #fff;
  }

  .acc__chev {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: grid;
    place-items: center;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 50%;
	  border: 1px solid #DC908C;
    background: #ffffffd9;
    box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
    transition: transform .25s ease;
	  
  }
	
.acc__chev::before {
  content: "";
  width: 16px;
  height: 16px;
  display: block;
  background-image: url("../../images/arrow_pink.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
	
	details[open] .acc__chev { transform: rotate(180deg); }

  .acc__title {
    position: absolute;
    top: 52px;
    left: 12px;
    z-index: 2;
    pointer-events: none;
    margin: 0;
    padding: 8px 12px;
    color: #fff;
    font-size: 21px;
    line-height: 1.45;
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, .4);
  }
	
	.acc__subtitle{
		font-size: 23px;
		color:#112248;
		margin: 15px 0;
	}	
	
	.acc__body p{
		font-family: "Noto Sans JP", sans-serif;
		color: #112248;
		font-size: 15px;
		line-height: 24px;
	}
	.acc__body a{
		font-family: "Noto Sans JP", sans-serif!important;
	}
	

  .acc__body {
    padding: 0 16px 14px;
    color: #333;
  }

  .acc__content {
    height: 0;
    overflow: hidden;
    opacity: 0;
    transition: height .28s ease, opacity .28s ease;
  }

  details[open] .acc__content {
    height: auto;
    opacity: 1;
  }

  details.acc .acc__title { transition: transform .25s ease, opacity .25s ease; }
  details[open].acc .acc__title { transform: translateY(0); opacity: 1; }
  details[open] summary.acc__summary { padding-bottom: 12px; }
}

@supports (-webkit-touch-callout: none) {
  .showcase { background-attachment: scroll; }

}

/* =========================
   ギャラリー（既存ベース）
   ========================= */
.gallery{
  position: relative;
  width: min(92vw, 800px);
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
}

.row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10.42vw;;
  margin-bottom: 80px;
  position: relative;
}

.row:not(:first-child){
  margin-top: -50px;
}

.row img{

  object-fit: cover;
  transition: transform 0.4s cubic-bezier(.22,.9,.3,1),
              box-shadow 0.4s ease,
              filter 0.4s ease;
  will-change: transform;
}

/* hover時：軽く浮かせてふわっと光らせる */
.row img:hover{
  transform: translateY(-6px) scale(1.02);
  filter: brightness(1.05) saturate(1.05);

}

/* 縦画像 */
.vertical{ width: clamp(200px, 20.83vw, 600px);}
/* 横画像 */
.horizontal{ width: clamp(300px, 29.69vw, 800px); }

/* ===== スマホ（1列で左右交互） ===== */
@media (max-width: 768px) {

	#Intro{
		padding-bottom: 60px;
	}
  #Intro .ts-header {
    margin: 70px auto 40px;
  }

  .gallery .row {
    display: none;

    flex-direction: column;
    align-items: stretch;
    gap: 24px;
    margin-bottom: 60px;
  }

  .gallery .row:nth-child(-n+2) {
    display: flex;
  }

  .gallery.open .row {
    display: flex;
  }

  .gallery .row img {
    width: 78%;
    height: auto;
    object-fit: cover;
  }

  .gallery .row:nth-child(odd) img:first-child { align-self: flex-start; }
  .gallery .row:nth-child(odd) img:last-child  { align-self: flex-end; }

  .gallery .row:nth-child(even) { flex-direction: column-reverse; }
  .gallery .row:nth-child(even) img:first-child { align-self: flex-end; }
  .gallery .row:nth-child(even) img:last-child  { align-self: flex-start; }
	
	#showMoreBtn{
	 width: 300px;
    margin: 0 auto;
    text-align: center;
    border: 1px solid #112248;
    border-radius: 50px;
    padding: 15px;
    color: #112248;
	font-family: "Noto Sans JP", sans-serif;
	}
	
	
}

/* 初期は非表示（JSが最初のフレームで visibility:visible を付ける） */
.reveal{
  visibility: hidden;
  opacity: 0;
  will-change: transform, opacity;
}

/* 動きを苦手なユーザー配慮 */
@media (prefers-reduced-motion: reduce){
  .reveal{
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;ts-hero-text
  }
	
	
}

/* ===============================
   私たちが実現していくこと
   =============================== */
#realization{
	min-height: auto;
}
#realization .ts-header{
	margin-top: 0;
	margin-bottom: 4vw;
	text-align: center;
}
#realization .ts-hero-text{
  position:absolute; inset:0 0 auto 0; display:flex; justify-content:flex-start; padding-top:50px;
  line-height:.8; color:#FBE8E7;opacity: 0.5;
  font-size:12vw; pointer-events:none; user-select:none;font-family: "Noto Serif JP", serif;white-space: nowrap;
}
#realization .service-subtitle{

	margin-bottom: 15px;
}
	#realization .service-subtitle::before {
  background-color: #76E642;
}

.realization-catch{
	font-size: 38px;
	color: #112248;
	margin-bottom: 50px;
}
#realization .ts-lead{
	color:#112248;
	width: 100%;
	text-align: left;
	max-width: 1100px;
}
#realization .button-wrap{
	margin-top:0px;
	
}


@media (max-width: 768px) {
	#realization{
		padding-bottom: 0;
		min-height: 0;
	}
	
	#realization .ts-header{
		padding-bottom: 30px;
	}

  #realization .ts-hero-text {
    transform: rotate(0deg);
    top: 30px;
    bottom: auto;
    font-size: 14.5vw; /* スマホ用に少し大きめ調整（任意） */
    justify-content: center;
    padding-top: 0;
    padding-right: 8px;
  }
	.realization-catch{
		font-size: 30px;
	}

}


