/* ==========================================================================
	基本リセット & グローバル設定
========================================================================== */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Urbanist:wght@100..900&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
  overflow: visible;
  font-size: 14px;
}
@media (min-width: 768px) { html { font-size: 15px; } } /* タブレット */
@media (min-width: 1024px) { html { font-size: 16px; } } /* PC */

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-style: normal;
	line-height: 1.6;
  color: #000;
  background: #fff;
}

a{
  color: #000;
  text-decoration: none;
  transition: all 0.3s;
}

a:hover{
  color: var(--color-blue);
}

img{
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
}

ul,li{
  list-style: none;
}

button,
input[type="submit"],
input[type="reset"],
input[type="button"] {
  -webkit-appearance: none;
  appearance: none;  
  background: none;
  border: none;
  padding: 0;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

/* ==========================================================================
	共通レイアウトクラス
========================================================================== */
:root {
  --sp-0: 0;
  --sp-5: 0.375rem;
  --sp-10: 0.75rem;
  --sp-20: 1.25rem;
  --sp-30: 1.875rem;
  --sp-40: 2.5rem;
  --sp-50: 3.125rem;
  --sp-60: 3.75rem;
  --sp-70: 4.375rem;
  --sp-80: 5rem;
  --sp-90: 5.625rem;
  --sp-100: 6.25rem;
  --sp-110: 6.875rem;
  --sp-120: 7.5rem;
  --sp-130: 8.125rem;
  --sp-140: 8.75rem;

  --font-en: "Urbanist", sans-serif;
  --font-12: .75rem;
  --font-14: .875rem;
  --font-16: 1rem;
  --font-18: 1.125rem;
  --font-20: 1.25rem;
  --font-24: 1.5rem;
  --font-26: 1.625rem;
  --font-30: 1.875rem;
  --font-32: 2rem;
  --font-36: 2.25rem;
  --font-40: 2.5rem;
  --font-46: 2.875rem;
  --font-48: 3rem;
  --color-blue: #2B578A;
  --color-paleblue: #95ABC4;
}

/* --- Margin Top --- */
.mt-0 { margin-top: var(--sp-0) !important; }
.mt-5 { margin-top: var(--sp-5) !important; }
.mt-10 { margin-top: var(--sp-10) !important; }
.mt-20 { margin-top: var(--sp-20) !important; }
.mt-30 { margin-top: var(--sp-30) !important; }
.mt-40 { margin-top: var(--sp-40) !important; }
.mt-50 { margin-top: var(--sp-50) !important; }
.mt-55 { margin-top: var(--sp-55) !important; }
.mt-60 { margin-top: var(--sp-60) !important; }
.mt-70 { margin-top: var(--sp-70) !important; }
.mt-80 { margin-top: var(--sp-80) !important; }
.mt-90 { margin-top: var(--sp-90) !important; }
.mt-100 { margin-top: var(--sp-100) !important; }
.mt-110 { margin-top: var(--sp-110) !important; }
.mt-120 { margin-top: var(--sp-120) !important; }
.mt-130 { margin-top: var(--sp-130) !important; }

/* --- Margin Bottom --- */
.mb-0 { margin-bottom: var(--sp-0) !important; }
.mb-5 { margin-bottom: var(--sp-5) !important; }
.mb-10 { margin-bottom: var(--sp-10) !important; }
.mb-20 { margin-bottom: var(--sp-20) !important; }
.mb-30 { margin-bottom: var(--sp-30) !important; }
.mb-40 { margin-bottom: var(--sp-40) !important; }
.mb-50 { margin-bottom: var(--sp-50) !important; }
.mb-55 { margin-bottom: var(--sp-55) !important; }
.mb-60 { margin-bottom: var(--sp-60) !important; }
.mb-70 { margin-bottom: var(--sp-70) !important; }
.mb-80 { margin-bottom: var(--sp-80) !important; }
.mb-90 { margin-bottom: var(--sp-90) !important; }
.mb-100 { margin-bottom: var(--sp-100) !important; }
.mb-110 { margin-bottom: var(--sp-110) !important; }
.mb-120 { margin-bottom: var(--sp-120) !important; }
.mb-130 { margin-bottom: var(--sp-130) !important; }

/* --- Margin Left --- */
.ml-0 { margin-left: var(--sp-0) !important; }
.ml-5 { margin-left: var(--sp-5) !important; }
.ml-10 { margin-left: var(--sp-10) !important; }
.ml-20 { margin-left: var(--sp-20) !important; }
.ml-30 { margin-left: var(--sp-30) !important; }
.ml-40 { margin-left: var(--sp-40) !important; }
.ml-50 { margin-left: var(--sp-50) !important; }
.ml-55 { margin-left: var(--sp-55) !important; }
.ml-60 { margin-left: var(--sp-60) !important; }
.ml-70 { margin-left: var(--sp-70) !important; }
.ml-80 { margin-left: var(--sp-80) !important; }
.ml-90 { margin-left: var(--sp-90) !important; }
.ml-100 { margin-left: var(--sp-100) !important; }
.ml-110 { margin-left: var(--sp-110) !important; }
.ml-120 { margin-left: var(--sp-120) !important; }
.ml-130 { margin-left: var(--sp-130) !important; }

/* --- Margin Right --- */
.mr-0 { margin-right: var(--sp-0) !important; }
.mr-5 { margin-right: var(--sp-5) !important; }
.mr-10 { margin-right: var(--sp-10) !important; }
.mr-20 { margin-right: var(--sp-20) !important; }
.mr-30 { margin-right: var(--sp-30) !important; }
.mr-40 { margin-right: var(--sp-40) !important; }
.mr-50 { margin-right: var(--sp-50) !important; }
.mr-55 { margin-right: var(--sp-55) !important; }
.mr-60 { margin-right: var(--sp-60) !important; }
.mr-70 { margin-right: var(--sp-70) !important; }
.mr-80 { margin-right: var(--sp-80) !important; }
.mr-90 { margin-right: var(--sp-90) !important; }
.mr-100 { margin-right: var(--sp-100) !important; }
.mr-110 { margin-right: var(--sp-110) !important; }
.mr-120 { margin-right: var(--sp-120) !important; }
.mr-130 { margin-right: var(--sp-130) !important; }

.pt-50{ padding-top: var(--sp-50) !important;}
.pb-50{ padding-bottom: var(--sp-50) !important;}
.pt-60{ padding-top: var(--sp-60) !important;}
.pb-60{ padding-bottom: var(--sp-60) !important;}
.pt-90{ padding-top: var(--sp-90) !important;}
.pb-90{ padding-bottom: var(--sp-90) !important;}
.pt-100{ padding-top: var(--sp-100) !important;}
.pb-100{ padding-bottom: var(--sp-100) !important;}

.text-center { text-align: center !important; }
.text-left { text-align: left !important; }
.text-right { text-align: right !important; }

.font-bold { font-weight: 500 !important; }
.font-700 { font-weight: 700 !important;}
.font-en { font-family: var(--font-en) !important; }

.font-12{ font-size: var(--font-12) !important;}
.font-14{ font-size: var(--font-14) !important;}
.font-16{ font-size: var(--font-16) !important;}
.font-18{ font-size: var(--font-18) !important;}
.font-20{ font-size: var(--font-20) !important;}
.font-24{ font-size: var(--font-24) !important;}
.font-26{ font-size: var(--font-26) !important;}
.font-30{ font-size: var(--font-30) !important;}
.font-32{ font-size: var(--font-32) !important;}
.font-36{ font-size: var(--font-36) !important;}
.font-48{ font-size: var(--font-48) !important;}

.text-blue{ color: var(--color-blue);}

.br-50{ border-radius: var(--sp-50);}

.bg-white{ background-color: #fff;}

ul.list-disc li{
  list-style-type: disc;
  margin-left: 1rem;
  margin-bottom: .3rem;
}
ul.list-disc li::marker{
  /* color: var(--color-red); */
}
.list-decimal li{
  list-style-type: decimal;
  margin-left: 1rem;
  margin-bottom: .3rem;
}

/* 改行設定 */
.nobr {
  display: inline-block;
  white-space: nowrap;
}
.sp-only { display: none; }
@media (max-width: 768px) {
  .pc-only { display: none; }
  .sp-only { display: inline; }
}

/* グリッドレイアウト */
.grid {
  display: grid;
}
.grid-1fr {
  grid-template-columns: 1fr 1fr; 
}
.l-container{ position: relative;}
.r-container{ position: relative;}

.gap-40 { gap: var(--sp-40)}
.gap-70 { gap: var(--sp-70)}

/* フレックスレイアウト */
.flex {
  display: flex;
}

.align-start{ align-items: flex-start !important; }
.align-center{ align-items: center !important; }
.align-end{ align-items: flex-end !important; }
.justify-center{ justify-content: center !important;}
.justify-end{ justify-content: flex-end !important;}
.justify-between{ justify-content: space-between !important;}

.box-center{
  display: flex;
  align-items: center;
  flex-direction: column;
}
.box-right{
  display: flex;
  align-items: flex-end;
  flex-direction: column;
}

@media (max-width: 768px) {
  .grid {
    grid-template-columns: 1fr !important;
  }
  .flex {
    flex-direction: column !important;
  }
  .br-50{
    border-radius: var(--sp-30);
  }
  .ml-120{
    margin-left: 0 !important;
  }
}

/* ==========================================================================
	ヘッダー & ナビゲーション
========================================================================== */
.header {
  width: 100%;
  height: 90px;
  border-bottom: 1px solid #E9E9E9;
  background: rgba(255, 255, 255, 0.70);
  backdrop-filter: blur(4.5px);
  transition: all 0.5s ease;
  position: fixed;
  z-index: 1000;
}
header.is-scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header .container{
  width: 96%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header .nav {
	display: flex;
	justify-content: flex-end;
}
.header .nav h1 {
	display: none;
}
.header .nav h1 img{
  width: 171px;
  height: 22px;
}
.header .nav .main-links {
  display: flex;
  align-items: center;
	flex-wrap: nowrap;
  list-style: none;
  gap: var(--sp-30);
  margin-right: var(--sp-30);
}
.header .nav .main-links li a {
  font-size: var(--font-14);
  font-weight: 500;
  line-height: 140%;
  letter-spacing: 1.12px;
}
.header .btn-container {
  margin-top: 0;
}


/* ==========================================================================
	セクション共通
========================================================================== */
.section{
	position: relative;
	overflow: visible;
  margin-top: var(--sp-120);
  line-height: 1.8;
  letter-spacing: 1.2px;
}

.wide-container {
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.container {
  width: 1340px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.narrow-container{
  width: 1200px;
  max-width: 100%;
	margin: 0 auto;
  position: relative;
}

.narrow-container-gap{
      padding-left: 1rem;
    padding-right: 1rem;
}

.container-gap {
  padding-left: var(--sp-50);
  padding-right: var(--sp-50);
}

.line{
  border-bottom: 1px solid var(--color-paleblue);
}

.bnr-container{
  line-height: 0;
}

@media (max-width: 768px) {
  .section{
    margin-top: var(--sp-100);
  }
  .container,.container-gap,.container-gap--sp,.narrow-container {
    padding-right: 3%;
    padding-left: 3%;
  }
}

/* 見出し ============================================================== */
.section h2{
  color: var(--color-blue);
  font-size: var(--font-46);
  font-weight: 500;
  line-height: 144%;
  letter-spacing: 3.6px;
}
.section h2 span,
.section h3 span{
  display: flex;
  align-items: center;
  color: var(--color-paleblue);
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 1.6px;
  margin-bottom: .5rem;
  padding-left: 1rem;
  position: relative;
  &::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--color-paleblue);
    position: absolute;
    left: 0;
  }
}
.section h3{
  font-size: var(--font-26);
  font-weight: 700;
  letter-spacing: 1.3px;
}

@media (max-width: 768px) {
  .section h2{
    font-size: var(--font-30) !important;
  }
}

/* ボタン設定 ============================================================== */
.btn-container{
  margin-top: var(--sp-60);
}
.btn-container--row{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--sp-40);
}
.btn-container--center{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* 基本のボタン設定 */
.btn{
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  font-weight: 500;
  position: relative;
}

/* ヘッダーのコンタクトボタン */
.btn-contact{
  width: 140px;
  height: 40px;
  color: #fff;
  font-size: var(--font-14);
  background-color: var(--color-blue);
  border: 1px solid var(--color-blue);
  &:hover{
    background-color: #fff;
  }
}

/* 汎用ボタン */
.btn-base{
  width: 260px;
  height: 63px;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid var(--color-blue);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 var(--sp-20);
}
.btn-base .icon{
  width: 17px;
  height: 17px;
  border-radius: 17px;
  background-color: #C6D7EA;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all .3s;
  &::after{
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--color-blue);
    position: absolute;
  }
}
.btn-base:hover .icon{
  transform: scale(1.4);
}
.btn-base .text{
  width: 100%;
  text-align: center;
}

@media (max-width: 768px) {
  .btn-container{
    width: 100%;
  }
  .btn-container--row{
    flex-direction: column;
    gap: 1rem;
  }
  .btn-container--row .text-left{
    text-align: center !important;
  }
  .box-center--sp{
    display: flex;
    justify-content: center;
    align-items: center;
  }
}

/* 半透明のボックス ============================================================== */
.box-trans{
  width: 100%;
  padding: var(--sp-50) 0;
  position: relative;
  margin-top: var(--sp-50);
  &::after{
    content: "";
    width: 100%;
    height: 100%;
    opacity: .7;
    border-radius: var(--sp-20);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.00) 0%, #FFF 72.37%);
    position: absolute;
    left: 0;
    top: 0;
  }
}
.box-trans div,.box-trans ul,.box-trans p{
  position: relative;
  z-index: 1;
}

.box-trans--2{
  width: 100%;
  border-radius: var(--sp-30);
  background: rgba(255, 255, 255, 0.50);
  padding: var(--sp-60);
}

@media (max-width: 768px) {
  .box-trans{
    padding: 3% 3% 6%;
  }
  .box-trans--2{
    border-radius: var(--sp-20);
    padding: 8% 3%;
  }
}

/* パンくず ============================================================== */
/* .breadcrumb{
  width: 94%;
  max-width: 1340px;
  margin: 0 auto clamp(5rem, 8vw, 7.5rem);
}
.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}
.breadcrumb-item {
  display: flex;
  align-items: center;
  line-height: 1.8;
}
.breadcrumb-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  background-color: #414141;
  border-radius: 50%;
  margin: 0 15px;
}
.breadcrumb-item a{

} */

/* ==========================================================================
	1.TOP
========================================================================== */
#top main{
  background: url(../images/top/bg.png) center top repeat;
  background-size: 100% auto;
  /* background-attachment: fixed; */
}

/* 共通の飾り */
.icon-circle{
  width: 116px;
  height: 116px;
}
.icon-circle--deco_center{
  position: absolute;
  left: calc(50% - 58px);
  top: -58px;
}
.icon-circle--deco_left{
  position: absolute;
  left: -58px;
  top: -58px;
}
@media (max-width: 768px) {
  .icon-circle--deco_left{
    left: calc(50% - 58px);
  }
}

@media (max-width: 567.8px) {
.icon-circle--deco_sp__left {
    left: 0;
}
}

/* ヒーローエリア ============================================================== */
.hero {
  width: 100%;
  height: 63rem;
  margin: 0 auto;
  position: relative;
  margin-bottom: -10rem;
 }
 .hero .container {
  width: 100%;
  padding-left: 2%;
  padding-right: 2%;
  position: absolute;
  bottom: 0;
  z-index: 10;
}
 .hero h1{
  font-size: 3.25rem; /* 52px */
  font-weight: 500;
  line-height: 144%;
  letter-spacing: 9.36px;
  background: linear-gradient(94deg, #84ACDA -3.2%, #2B578A 19.76%, #071F3B 75.1%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-top: 10px;
}
.hero .hero-catch{
  font-size: 1rem;
  line-height: 215%;
  letter-spacing: 1.28px;
  margin-top: 10px;
 }
 .hero .hero-logo {
  position: absolute;
  top: 136px;
  right: 2%;
  z-index: 20;
}
 .hero .hero-logo img {
  width: 334px;
  height: 55px;
}

/* .hero .hero-photo img {
  position: absolute;
} */
.hero-photo {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 0;
}

.hero-catch-area {
    position: absolute;
    top: 60%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
    width: 90rem;
    max-width: 100%;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* レール */
.hero-photo__track {
  display: flex;
  align-items: flex-start;
  width: max-content;
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* 1セット分 */
.hero-photo__set {
  display: flex;
  align-items: flex-start;
  gap: 2.08vw;
  flex-shrink: 0;
  padding-right: 2.08vw;
  min-width: max-content;
}

/* 共通 */
.hero-photo--item {
  position: relative; /* absolute解除 */
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  opacity: 0.8;
}

.hero-photo--item1 { background-image: url(../images/top/mv_1.jpg); }
.hero-photo--item2 { background-image: url(../images/top/mv_2.jpg); }
.hero-photo--item3 { background-image: url(../images/top/mv_3.jpg); }
.hero-photo--item4 { background-image: url(../images/top/mv_4.jpg); }

/* 既存のサイズ感を活かしつつ横並び化 */
/*
.hero-photo--item1 {
  width: 20.83vw;
  aspect-ratio: 300 / 305;
  margin-top: 9.44vw;
}

.hero-photo--item2 {
  width: 25vw;
  aspect-ratio: 360 / 200;
  margin-top: 32.78vw;
}

.hero-photo--item3 {
  width: 34.72vw;
  aspect-ratio: 500 / 400;
  margin-top: 16.18vw;
}

.hero-photo--item4 {
  width: 16.67vw;
  aspect-ratio: 240 / 290;
  margin-top: 39.58vw;
}*/


.hero-photo--item1 {
  width: 20.83rem;
  aspect-ratio: 300 / 305;
  margin-top: 5.25rem;
}

.hero-photo--item2 {
  width: 25rem;
  aspect-ratio: 360 / 200;
  margin-top: 19.78rem;
}

.hero-photo--item3 {
  width: 34.72rem;
  aspect-ratio: 500 / 400;
  margin-top: 10.18rem;
}

.hero-photo--item4 {
  width: 16.67rem;
  aspect-ratio: 240 / 290;
  margin-top: 39.58rem;
  top: -11rem;
}

/* 端を自然に消す */
.hero-photo {
  -webkit-mask-image: linear-gradient(to left, transparent 0%, #000 10%, #000 90%, transparent 100%);
  mask-image: linear-gradient(to left, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

/* ===== スマホ調整 ===== */
@media (max-width: 768px) {

	.hero {
        width: 100%;
        height: 62rem;
        margin: 0 auto;
        position: relative;
        margin-bottom: -13rem;
}

.hero .hero-logo img {
    width: 234px;
    height: auto;
}

  .hero-photo__set {
    gap: 4vw;
    padding-right: 4vw;
  }

  .hero-photo--item {
    border-radius: 4vw;
  }

  .hero-photo--item1 {

  }

  .hero-photo--item2 {

  }

  .hero-photo--item3 {

  }

  .hero-photo--item4 {

  }
}
/* .hero .hero-photo .hero-photo--item1 {
  width: 300px;
  height: 305px;
  left: 50px;
  top: 136px;
}
.hero .hero-photo .hero-photo--item2 {
  width: 360px;
  height: 200px;
  left: 300px;
  top: 472px;
}
.hero .hero-photo .hero-photo--item3 {
  width: 500px;
  height: 400px;
  right: 263px;
  top: 233px;
}
.hero .hero-photo .hero-photo--item4 {
  width: 240px;
  height: 290px;
  right: 0px;
  top: 570px;
} */

@media (max-width: 768px) {
  .hero h1{
    font-size: 2rem;
  }
}

/* Cases ============================================================== */
.top-case{
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 60px 75px;
  margin-top: 35px;
}
.top-case .top-case--item span{
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  margin: auto auto var(--sp-20);
  background-color: #fff;
  border-radius: 25px;
  font-size: 1rem;
  font-family: var(--font-en);
  color: var(--color-blue);
  font-weight: 500;
  line-height: 1;
}
.top-case .top-case--item dd{
  font-size: var(--font-18);
  font-weight: 500;
  line-height: 160%;
  letter-spacing: 1.08px;
  text-align: center;
  margin-top: var(--sp-20);
}

.top-case--item dt img {
    max-width: 21.875rem;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
  .top-case{
    width: 94%;
    margin-left: auto;
    margin-right: auto;
  }
  .top-case .top-case--item{
    width: 100%;;
  }
}

/* Features ============================================================== */
.top-feature{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-70);
  margin-top: var(--sp-50);
  position: relative;
}

.top-feature--item{
  position: relative;
    &::before{
    content: "";
    width: 128px;
    height: 128px;
    left: 1rem;
    top: -2rem;
    background-repeat: no-repeat;
    position: absolute;
  }
}
.top-feature--item:nth-of-type(1)::before{ background-image: url(../images/top/feature_1.svg); top: -2.8rem;}
.top-feature--item:nth-of-type(2)::before{ background-image: url(../images/top/feature_2.svg);}
.top-feature--item:nth-of-type(3)::before{ background-image: url(../images/top/feature_3.svg);}
.top-feature--item:nth-of-type(4)::before{ background-image: url(../images/top/feature_4.svg);}


.top-feature--item dt{
  font-size: var(--font-26);
  display: flex;
  align-items: center;
  padding-left: 1rem;
  margin-bottom: 1rem;
  position: relative;
  z-index: 10;
  &::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: var(--color-paleblue);
    position: absolute;
    left: 0;
  }
}
.top-feature--item dt span{
  font-family: var(--font-en);
  font-size: var(--font-36);
  color: var(--color-blue);
  font-weight: 600;
  line-height: 140%; /* 50.4px */
  letter-spacing: 3.6px;
  margin-right: var(--sp-20);
}
.top-feature--item dd{
  position: relative;
  z-index: 10;
}


.top-prof{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-100);
  margin-top: var(--sp-40);
  padding: 0 4.5%;
}
.top-prof .flex img{
  width: 150px;
  height: 150px;
}

@media (max-width: 768px) {
  .top-feature{
    grid-template-columns: 1fr;
    gap: var(--sp-30);
  }
  .top-feature dt{
    font-size: var(--font-20);
    /* align-items: flex-start; */
  }
  .top-feature--item dt span{
    font-size: var(--font-24);
    margin-right: 10px;
  }
  .top-prof{
    padding: 0;
    gap: var(--sp-30);
  }
}

/* Case study ============================================================== */
.top-case-container{
  border-radius: var(--sp-50) var(--sp-50) 0 0;
  background: rgba(255, 255, 255, 0.40);
  padding: var(--sp-100) 0;
}
.top-case-container .swiper-slide a{
  position: relative;
}
.top-case-container .swiper-slide .slide-text{
  position: absolute;
  bottom: 1rem;
  left: 1rem;
}
.top-case-container .swiper-slide .slide-text .text-title{
  color: #fff;
  font-size: var(--font-14);
  text-align: center;
  border-radius: 20px;
  background-color: var(--color-blue);
  padding: .2rem .6rem;
  display: block;
}
.top-case-container .swiper-slide .slide-text .text-content{
  color: var(--color-blue);
  font-size: var(--font-26);
  font-weight: 500;
  letter-spacing: 2.08px;
}

.top-case-container .slider-nav {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}
.top-case-container .prev-btn, .top-case-container .next-btn {
  width: 61px;
  height: 35px;
  border: 1px solid var(--color-blue);
  border-radius: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.top-case-container .prev-btn{
  transform: rotate(180deg);
}
.top-case-container .prev-btn::before, .top-case-container .next-btn::before {
  content: "";
  width: 12px;
  height: 8px;
  background: var(--color-blue);
  mask-image: url(../images/common/icon_arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  -webkit-mask-image: url(../images/common/icon_arrow.svg);
}

.top-case-container .prev-btn:hover, .top-case-container .next-btn:hover {
  background-color: var(--color-blue);
}
.top-case-container .prev-btn:hover::before, .top-case-container .next-btn:hover::before {
  background-color: #fff;
}

@media (max-width: 768px) {
  .top-case-container{
    padding-top: var(--sp-50);
    border-radius: var(--sp-30) var(--sp-30) 0 0;
  }
  .top-case-container .slider-nav {
    margin-top: 2rem;
  }
}

/* Service ============================================================== */
.top-grid--service{
  grid-template-columns: 1fr 1.4fr;
  gap: var(--sp-70);
  align-items: center;
  margin-bottom: var(--sp-80);
}

@media (max-width: 768px) {
  .top-grid--service{
    gap: var(--sp-30);
  }
}

/* News ============================================================== */
.top-news {
  display: grid;
  grid-template-columns: 3fr 7fr;
  align-items: top;
  padding-top: var(--sp-130);
  padding-bottom: var(--sp-100);
}
.top-news .news-list li{
  margin-bottom: var(--sp-30);
  padding: 0 var(--sp-20) var(--sp-30);
  border-bottom: 1px solid #ddd;
  cursor: pointer;
}
.top-news .news-list li a{
  display: flex;
  align-items: flex-start;
  gap: var(--sp-20);
  cursor: pointer;
  position: relative;
  &::after{
    content: "";
    width: 8px;
    height: 12px;
    background: var(--color-blue);
    mask-image: url(../images/common/icon_arrow2.svg);
    mask-size: contain;
    mask-repeat: no-repeat;
    -webkit-mask-image: url(../images/common/icon_arrow2.svg);
    position: absolute;
    top: calc(50% - 6px);
    right: -1.25rem;
  }
}
.top-news .news-list .news-meta {
  display: flex;
  align-items: flex-start;
  column-gap: 1.5rem;
}
.top-news .news-list li .date{
  color: var(--color-blue);
  font-family: var(--font-en);
}
.top-news .news-list li .ico{
  color: var(--color-blue);
  font-size: var(--font-14);
  border-radius: 16px;
  background: #E2EBF9;
  padding: 0 var(--sp-30);
}
.top-news .news-list .news-title {
  flex: 1;
}

@media (max-width: 768px) {
  .top-news {
    grid-template-columns: 1fr;
    padding-top: var(--sp-100);
  }
  .top-news .news-list{
    margin-top: var(--sp-20);
  }
  .top-news .news-list li{
    padding-left: 0;
  }
  .top-news .news-list li a{
    flex-direction: column;
  }
}

/* Information ============================================================== */
.top-info-container{
  padding-top: var(--sp-100);
  padding-bottom: var(--sp-100);
  border-radius: var(--sp-50) var(--sp-50) 0 0;
  background: linear-gradient(223deg, #F4F8FF 18.15%, #DFEBF9 30.88%, #FFF 56.05%);
}

.top-company-info div{
  display: grid;
  grid-template-columns: 12.5rem max-content;
  align-items: self-start;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #ddd;
}
.top-company-info div dt{
  color: var(--color-blue);
}

@media (max-width: 768px) {
  .top-info-container{
    border-radius: var(--sp-30) var(--sp-30) 0 0;
  }
  .top-company-info div{
    grid-template-columns: 1fr;
  }
}

/* Contact us ============================================================== */
.contact-container{
  height: 450px;
  background: url(../images/common/bg_contact.jpg) left top no-repeat;
  background-size: cover;
  border-radius: var(--sp-30);
  margin-top: var(--sp-80);
  padding: 0 var(--sp-70);
  display: flex;
  justify-content: center;
  align-items: center;
}
.contact-container .grid{
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  color: #fff;
}
.contact-container p,
.contact-container h2,
.contact-container h2 span{
  color: #fff !important;
}
.contact-container h2 span::before{
  background-color: #fff !important;
}
.contact-container .grid .r-container{
  display: flex;
  justify-content: flex-end;
}
.contact-container .grid .r-container .btn-contact{
  width: 413px;
  height: var(--sp-90)
  &:hover{
    color: var(--color-blue) !important;
  }
}

@media (max-width: 768px) {
  .contact-container{
    border-radius: var(--sp-20);
    padding: 0 var(--sp-30);
  }
  .contact-container .grid{
    grid-template-columns: 1fr;
  }
  .contact-container .grid .r-container .btn-contact{
    width: 100%;
  }
}

/* ==========================================================================
	フッター
========================================================================== */
.footer{
  width: 100%;
  margin-bottom: var(--sp-60);
      padding-top: 5rem;
}

.footer-top{
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: flex-start;
}
.footer-top .footer-logo img{
  width: 200px;
}

.footer-top .r-container{
  display: flex;
  justify-content: flex-end;
}
.footer-top .footer-links{
  display: grid;
  grid-auto-flow: column;
  grid-template-rows: repeat(5, auto);
  gap: 1.5rem 75px;
  margin-top: var(--sp-50);
}
.footer-top .footer-links li{
  font-size: 0.9375rem;
}

.footer-bottom{
  margin-top: var(--sp-120);
}
.footer-bottom .grid{
  display: flex;
  justify-content: space-between;
  padding-top: clamp(1.5rem, 3.5vw, 1.875rem);
  font-size: 12px;
  color: var(--color-paleblue);
}
.footer-bottom a{
  color: var(--color-paleblue);
}
.footer-bottom .footer-copyright{
  font-family: var(--font-en);
  text-align: right;
}

@media (max-width: 768px) {
  .footer .footer-top{
    grid-template-columns: 1fr;
    padding-bottom: 2rem;
  }
  /* .footer-top .l-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
  } */
  .footer-top .r-container {
    justify-content: flex-start;
  }
  .footer .footer-bottom .grid{
    align-items: center;
    flex-direction: column-reverse;
  }
  .footer-bottom{
    margin-top: 0;
  }
}

/* ==========================================================================
	スマートフォン向け調整 (768px以下)
========================================================================== */
/* --- ハンバーガーボタン（PCでは隠す） --- */
.hamburger {
  display: none;
  min-width: 50px;
  height: 50px;
  border: 1px solid #D9D9D9;
  background: #FDFDFD;
  border-radius: 5px;
  position: relative;
  z-index: 1001; /* ナビ背景より常に上 */
  cursor: pointer;
}

.hamburger span {
  display: block;
  position: absolute;
  width: 24px;
  height: 2px;
  background: #414141;
  left: 13px;
  transition: 0.3s;
}
.hamburger span:nth-child(1) { top: 21px; }
.hamburger span:nth-child(2) { top: 27px; }

/* 展開時のアニメーション */
.hamburger.is-active span:nth-child(1) {
  top: 25px; /* 中央に寄せる */
  transform: rotate(45deg);
}
.hamburger.is-active span:nth-child(2) {
  top: 25px; /* 中央に寄せる */
  transform: rotate(-45deg);
}

.is-resize .nav {
  transition: none !important;
}

/* --- スマホ版（768px以下）のスタイル --- */
@media (max-width: 1230px) {
  .header{
    width: 100%;
    /* height: 4.5rem; */
    padding: 0 2%;
  }
  .header .nav h1{
    display: block;
    margin-top: 1.5rem;
    margin-left: 5%;
  }
  .header .container {
    width: 100% !important;
  }
  .hamburger {
    display: block;
    margin-left: auto;
  }
  .nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(2px);
    flex-direction: column;
    justify-content: flex-start !important;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .nav .main-links {
    flex-direction: column;
    align-items: center;
    gap: 1.25rem !important;
    margin-top: 4rem;
    margin-right: 0 !important;
  }
  .nav .main-links li{
    margin-right: 0 !important;
  }
  .nav .main-links li a{
    font-size: var(--font-18) !important;
  }
  .nav.is-active {
    transform: translateX(0);
  }
  .nav .btn-container {
    width: 100%;
  }
  .nav .btn-container .btn,.nav .btn-container .btn-contact{
    width: 250px;
    height: auto;
    margin: 1.25rem auto 0;
    padding: .8rem 0;
    font-size: var(--font-18) !important;
  }
}











.rotating-badge {
  display: block;
}

.rotating-badge__text {
  transform-origin: 58.5px 58.5px;
  animation: badgeRotate 12s linear infinite;
}

@keyframes badgeRotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}



.pointer-none{
    pointer-events: none;
    opacity: 0.4;
    cursor: none;
}