@charset "UTF-8";

:root {
    /*基本の背景色*/
    --color-bg-alt: #fff;
    --color-bg-base: #f5f6f8;
    --color-bg-list: #f5f5f7;
    
    /*基本の文字色*/
    --color-text-main: #002b47;
    --color-primary: #036eb8;
    --color-line: #b1b1b3;
    --color-footerline: #358bc6;
    
    /*border*/
    --color-border: #bbb;

    --color-accent: #63beff;
    /*Biz*/
    --color-accent-biz: #0ea563;
    /*BTM*/
    --color-accent-btm:#22aed1;
	--color-subaccent-btm:#e5ec26;
    /*OBT*/
    --color-accent-obt:#134ca3;
    /*Group*/
    --color-accent-group: #009199;
    /*Inbound*/
    --color-accent-inbound: #39a05e;
    /*Inboundロゴ*/
    --color-accent-inboundlogo: #f0e62a;
    --color-accent-inboundlogo-primary: #33a761;
    /*Inbound 文字色*/
    --color-accent-inboundlogotext: #3d3a39;
    /*Inbound btn*/
    --color-accent-inboundbnrbtn: #f0be29;
    
    /*Agent*/
    --color-accent-agent: #b71c24;
    --color-accent-agentkv: #fce5e7;
    --color-accent-agentkv-text: #fcfbe5;
    --color-accent-agent-card-odd: #f4faff;
    --color-accent-agent-card-even: #f5f8ff;
    --color-accent-agent-card-even-title: #638fff;
    
    /*form*/
    --color-bg-label:#e5f5ff;
    --color-bg-check:#fafafb;
    --color-link:#0042ff;
	--color-material-text:#d93e14;

    /*詳細ページ用ボタン*/
    --color-btn-detail: #3f7ea6;
    
    /*詳細ページ用ボタン*/
    --color-btn-contact: #e5625e;

    /*詳細ページ用ボタン*/
    --color-subtext: #808080;
    
    /*Bizタイトル*/
    --color-kv__heading: #11428c;

    --font-weight-thin: 100;
    --font-weight-extralight: 200;
    --font-weight-light: 300;
    --font-weight-regular: 400;/* 通常の太さ */
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
}


/*---------------------------
  【BTMアプリリリース】

  1.KV
  2.問い合わせフォーム

---------------------------*/

/* ================================================================
 
   KV

=================================================================== */

.kv{
	background: var(--color-accent-btm);
	
    font-family: "Roboto", "IBM Plex Sans JP", sans-serif;
    font-weight: var(--font-weight-regular);
}

/******************Media Queries******************/
@media (min-width: 1142px) {
    .kv{
		margin-top: 9.0rem;
		min-height: 635px;
    }    
}

.kv__content{
	text-align: center;
	padding-top: 4.0rem;
}

.kv__content-group img{
	vertical-align: bottom;
}

.kv__text{
	text-align: center;
	background:var(--color-subaccent-btm);
	font-size: 2.4rem;
	font-weight: var(--font-weight-medium);
}

.kv__text p{
	text-align: center;
	line-height: 1.2;
	padding: .6rem 0;
}


/******************Media Queries******************/
/* --- 960px: Standard Desktop --- */
@media (min-width: 960px) {
	.kv__content{
		padding-top: 8.0rem;
	}	
	
	.kv__text{
		font-size: 5.0rem;
	}  

	.kv__text p{
		padding: 1.6rem 0;
	}

}

/* ================================================================
 
   メリット

=================================================================== */
.product-comparison{
	background:#fff;
	
    font-family: "Roboto", "IBM Plex Sans JP", sans-serif;
    font-weight: var(--font-weight-regular);
}

.product-comparison__container{
	max-width: 1600px;
	width: 100%; /* これを追加：明示的に幅を100%にする */
	margin: 0 auto;
    padding: 6.4rem 3%;
	margin-inline: auto !important; 
    display: block;
}

/******************Media Queries******************/
/* --- 1920px: 4K Display (200% Scaling) / High-Density Layout --- */
@media (min-width: 1920px) {
	.product-comparison__container{
		padding: 12.8rem 0;
	}
}

.product-comparison__content{
	margin-top: 4.0rem;
}

/******************Media Queries******************/
/* --- 960px: Standard Desktop --- */
@media (min-width: 960px) {
	.product-comparison__content{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
}


/* ----------------------------------------------------------------  
   テーブル（product-comparison__table）
------------------------------------------------------------------- */ 

.product-comparison__table{
	border:1px solid var(--color-border);
	border-radius: 6px;
	padding: 3%;
	font-size: 1.6rem;
	margin-bottom: 2.4rem;
}
/******************Media Queries******************/
/* --- 960px: Standard Desktop --- */
@media (min-width: 960px) {
	.product-comparison__table{
		width: 48%;
		margin-bottom: 0;
		border-radius: 20px;
	}
}


.product-comparison__row{
	border-bottom:1px solid var(--color-border);
	padding: 2.4rem 0;
}

/******************Media Queries******************/
/* --- 1280px: Desktop Standard / Max Content Width --- */
@media (min-width: 1280px) {
	.product-comparison__row{
		display: flex;
		align-items: center;
	}
}


.product-comparison__row:first-of-type{
	padding-top: 0;
}
.product-comparison__row:last-of-type{
	border-bottom:none;
	padding-bottom: 0;
}

/*dt*/
.product-comparison__label{
	width:20.0rem;
	font-weight: var(--font-weight-medium);
}
/*dd*/
.product-comparison__data{
	display: flex;
}

/*before*/
.product-comparison__data .product-comparison__text--before span{
	border:1px solid var(--color-text-main);
	color:var(--color-bg-alt);
	background:var(--color-text-main);
	display: inline-block;
	border-radius: 3px;
	padding: .5rem 1.0rem;
	width:148px;
	font-size: 1.4rem;
	text-align: center;
}

/*after*/
.product-comparison__data .product-comparison__text--after span{
	border:1px solid var(--color-accent-btm);
	color:var(--color-bg-alt);
	background:var(--color-accent-btm);
	display: inline-block;
	border-radius: 3px;
	padding: .5rem 1.0rem;
	width:106px;
	font-size: 1.4rem;
	text-align: center;
}

.product-comparison__text--after::before{
	content: "→";
	color:var(--color-accent-btm);
	margin-right: 2.0rem;
	margin-left: 2.0rem;
}

/******************Media Queries******************/
/* --- 1280px: Desktop Standard / Max Content Width --- */
@media (min-width: 1280px) {
	/*before*/
	.product-comparison__data .product-comparison__text--before span{
		width:auto;
		font-size: 1.6rem;
	}

	/*after*/
	.product-comparison__data .product-comparison__text--after span{
		width:auto;
		font-size: 1.6rem;
	}
}

/* ----------------------------------------------------------------  
   ポイント（product-comparison__list）
------------------------------------------------------------------- */ 

.product-comparison__list{
	font-size: 1.6rem;
}

/******************Media Queries******************/
/* --- 960px: Standard Desktop --- */
@media (min-width: 960px) {
	.product-comparison__list{
		width: 48%;
	}
}

.product-comparison__item{
	margin-bottom: 2.4rem;
	position: relative;
	padding-left: 60px;
}

.product-comparison__item:first-of-type::before{
	content:"";
	background:url(./../images/point01.svg) no-repeat left top;
	width: 50px;
	height: 50px;
	display: inline-block;
	
	
	position: absolute;
	left: 0;
	top: 0;
}

.product-comparison__item:nth-of-type(2)::before{
	content:"";
	background:url(./../images/point02.svg) no-repeat left top;
	width: 50px;
	height: 50px;
	display: inline-block;
	
	
	position: absolute;
	left: 0;
	top: 0;
}


.product-comparison__item:nth-of-type(3)::before{
	content:"";
	background:url(./../images/point03.svg) no-repeat left top;
	width: 50px;
	height: 50px;
	display: inline-block;
	
	
	position: absolute;
	left: 0;
	top: 0;
}

/*dt*/
.product-comparison__title{
	font-weight: var(--font-weight-medium);
}

/* ================================================================
 
   搭載機能

=================================================================== */

/* セクション全体：横スクロール防止 */
.product-features {
    width: 100%;
    overflow: hidden; 
    padding: 6.4rem 3%; /* 元のpaddingを維持 */
    background: #f9f9f9; /* 必要に応じて背景色 */
}
/******************Media Queries******************/
/* --- 1920px: 4K Display (200% Scaling) / High-Density Layout --- */
@media (min-width: 1920px) {
	.product-features {
		padding: 12.8rem 0; /* 元のpaddingを維持 */
	}
}


.product-features__container {
    font-family: "Roboto", "IBM Plex Sans JP", sans-serif;
    font-weight: var(--font-weight-regular);
}

@media (min-width: 1920px) {
	.product-features__container {
		padding-left: calc(50% - 800px);
	}
}

@media screen and (max-width: 767px) {
    .product-features {
        overflow: hidden; 
    }
    .swiper {
        overflow: visible !important;
    }
}

.swiper-clip {
    width: 100%;
    overflow: visible; 
}

.product-features__content {
    margin-top: 4.0rem;
}

/* Swiper基本設定 */
.swiper {
	overflow: hidden; /* 一旦隠す */
    clip-path: inset(0 -100vw 0 0); /* 右側だけクリッピング領域を広げる魔法の1行 */
}


/* スライドアイテムの装飾 */
.product-features__item {
    box-sizing: border-box;
    width: 382px; /* PC時のスライド幅 */
    height: auto;
    padding: 2.4rem;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 6px;
    
    /* 突き抜け部分の演出 */
    opacity: 0.3;
    transition: opacity 0.3s;
	
	position: relative;
}

/* スライダーのラッパーでカウントをリセット */
.swiper-wrapper {
    counter-reset: feature-count; 
}

/* 各アイテム（スライド）の設定 */
.product-features__item {
    position: relative; /* 子要素（::before）の基準にする */
    counter-increment: feature-count; /* カウントを1ずつ進める */
    
    /* 既存のスタイル */
    box-sizing: border-box;
    padding: 3rem 2.4rem 2.4rem; /* 数字が重ならないよう少し上のパディングを増やす */
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 6px;
}

/* 擬似要素で数字を表示・右上配置 */
.product-features__item::before {
    /* カウントを「01」形式で表示 */
    content: counter(feature-count, decimal-leading-zero);
    
    /* 配置設定（右上） */
    position: absolute;
    top: 1.5rem;
    right: 1.2rem;
    
    /* 見た目の設定*/
    font-family: "Roboto", sans-serif;
    z-index: 0;
    font-size: 70px;
    color: #ddd;
    font-weight: 700;
    text-align: right;
    display: block;
    line-height: 1;
}

/* テキストなどが数字の下に隠れないように調整（必要に応じて） */
.product-features__definition {
    position: relative;
    z-index: 1;
}

/* アクティブなスライド（見えている範囲）は不透明に */
.swiper-slide-active,
.swiper-slide-next,
.swiper-slide-next + .swiper-slide,
.swiper-slide-next + .swiper-slide + .swiper-slide {
    opacity: 1;
}

/* 1. まず、すべてのスライドをデフォルトで不透明度 1 にする */
.swiper-slide {
    opacity: 1;
    transition: opacity 0.3s;
}

/* 2. 「画面幅が狭くなって、スライドがはみ出す時」だけ薄くする処理を適用する */
/* 例：1600px ＋ スライドの合計幅などを考慮し、
   「5枚が余裕で収まらない幅」をブレイクポイントにします */

@media screen and (max-width: 1700px) { /* 1600px + 左右余白分くらい */
    .swiper-slide {
        opacity: 0.3; /* 基本は薄く */
    }

    /* 見えている範囲（アクティブから数枚）だけを濃くする */
    .swiper-slide-active,
    .swiper-slide-next,
    .swiper-slide-next + .swiper-slide,
    .swiper-slide-next + .swiper-slide + .swiper-slide,
    .swiper-slide-next + .swiper-slide + .swiper-slide + .swiper-slide {
        opacity: 1;
    }
}

.product-features__img{
	margin-bottom: 2.4rem;
}

.product-features__coming-soon {
	position: absolute;
	top:3rem;
	left: 2.4rem;
    font-size: 1.2rem;
    border: 1px solid var(--color-accent-btm);
	background:var(--color-bg-alt);
    color: var(--color-accent-btm);
    padding: .5rem 1.0rem;
    text-align: center;
    border-radius: 100px;
    margin-bottom: .5rem;
    display: inline-block;
}

.product-features__title {
    font-size: 1.8rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.product-features__text {
    font-size: 1.8rem;
    line-height: 1.6;
}

/* ナビゲーション・ページネーション */
.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0; 
}

/* お問い合わせボタン */
.contact_btn2 {
    padding: 4rem 0 0;
    margin-top: 2rem;
    display: flex;
    justify-content: center;
}

.contact_btn2 a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    max-width: 400px;
    padding: 1rem 1.5rem;
    background: #22aed1;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 6rem;
    font-feature-settings: "palt";
    text-decoration: none;
    transition: opacity 0.3s;
	line-height: 1.2;
}

.contact_btn2 a:hover {
    opacity: 0.8;
}

.contact_btn2 a::before {
    content: "";
    width: 24px;
    height: 24px;
    background: url(../../../images/arrow_btn.svg) no-repeat center / contain;
}

@media (min-width: 769px) {
    .contact_btn2 a {
        font-size: 1.95rem;
        height: 80px;
    }
}