@charset "utf-8";
/* CSS Document */

/*----------------------------------
    全体要素
----------------------------------*/

:root {
  scroll-behavior: smooth;
}

.underm_20 {
    margin-bottom: 20px;
	text-align: center;
}

.lp_comment{
	width: 85%;
	margin: 0 auto;
	margin-bottom: 20px;
}

.setup-br-item {
    display: flex;
	flex-direction: row;
    gap: 10px;
	align-items: flex-start;
	width: 100%; 
    margin: 0 auto;
	align-items: center;
}

.setup-br-itembox{
	box-sizing: border-box;
	width: 50%;
	margin-right: 10px;
	text-align: left;
	position: relative;
}

.setup-br_h1{
    text-align: left;
    font-size: 30px;
	font-family: "Arial Nova", Arial, sans-serif;
	font-weight: 700;
	transform   : scale(1, 0.8);   /* 変形 横,縦 */
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding-top: 5px;
	color: #000;
}

.setup-br_h1c{
    text-align: center;
    font-size: 30px;
	font-family: "Arial Nova", Arial, sans-serif;
	font-weight: 700;
	transform   : scale(1, 0.8);   /* 変形 横,縦 */
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding-top: 5px;
	color: #000;
}

.setup-br_h2{
    text-align: center;
    font-size: 26px;
	font-family: "Arial Nova", Arial, sans-serif;
	font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding: 15px 0;
	color: #000;
}

.setup-br-itembox_tx02{
	line-height: 2em;
}

.setup-br_wrapper{
    display: flex;
	flex-direction: column;
    gap: 5px;
    width: 100%;
    margin: 0 auto;
    align-items: flex-start;
}

.setup-br_box {
    display: flex;
    gap: 5px; 
    width: 100%;
}

.con_title{
	width: 100%;
	display: block;
	margin: 0;
}
.con_title h2{
	margin: 0;
	text-align: left;
    font-size: 26px;
	font-family: "Arial Nova", Arial, sans-serif;
	font-weight: 700;
	transform   : scale(1, 0.8);   /* 変形 横,縦 */
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
	color: #000;
	width: auto;
}

/* 左カラム：画像 */
.limage{
	width: 50%;
}
.limage img{
    width: 100%;
    display: block;
}
/* 右カラム：画像 */
.setup-br_list{
	width: 50%;
    display: flex;
    flex-direction: column;
    gap: 20px;
    flex: 1;
}
.setup-br_item{
    display: flex;
    gap: 10px;
}
.setup-br_item img{
    width: 100%; /* 小さい画像サイズ */
    height: auto;
	display: block;
}
.setup-br_item a{
	display: block;
	width: 30%;
	flex-shrink: 0;
}
.no-link{
	display: block;
	width: 30%;
	flex-shrink: 0;
}
.setup-br_tx03{
    text-align: left;
    font-size: 11px;
    line-height: 2em;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
	color: #000;
}
.galli_link{
	display: block;
	width: 100%;
}
.galli_link a{
	width: 100%;
}

/*----------------------------------
    4カラム表示スタイル
----------------------------------*/
.lp_4column {
    display: flex; /* 子要素を横並びにする */
    justify-content: space-between; /* 均等な間隔で配置する */
    gap: 10px; /* アイテム間の隙間 */
    width: 100%;
    margin: 0 auto;
}

.lp_4item {
    width: calc(25% - 7.5px); /* gap: 10pxが3箇所あるので、これを考慮した幅 */
    text-align: center; /* 画像とテキストを中央揃えにする */
}

/*----------------------------------
   2カラム表示スタイル
----------------------------------*/
.lp_4item {
    /* PCの2列表示 */
    width: calc(50% - 5px); /* gap: 10pxが1箇所あるので、これを考慮した幅 */
    text-align: center;
}

.lp_4item img {
    /* 4列表示の幅に合わせて最大幅を制限（約23%） */
    max-width: 200px; /* 例として最大幅を設定 */
    width: 90%; /* 元のCSSの100%は継承させない */
    height: auto;
    display: block; 
    /* 画像をmilanlib_4itemの中で中央に寄せる */
    margin: 0 auto;
}

/* 4列表示のときの画像や、その他の共通の画像スタイル */
.lp_4item img:not(.lp_4item img) {
    width: 100%; /* 親要素（アイテム）の幅いっぱいに表示 */
    height: auto;
    display: block;
}

/*----------------------------------
  アンカーリンク用
----------------------------------*/
.arrow-link {
    /* 矢印を画像の上に重ねる（絶対配置）*/
    position: absolute;
    
    /* 右上隅に配置 */
    bottom: 10px;   /* 上端からの距離を調整 */
    right: 10px; /* 右端からの距離を調整 */

    /* 見た目の調整 */
    font-size: 20px; 
    color: #000; /* 矢印の色（画像によっては見やすい色に変更）*/
    text-decoration: none;
	transform   : scale(1, 0.8);   /* 変形 横,縦 */
    
    /* Z-indexで他の要素より手前に表示させる */
    z-index: 10; 

	background-color: rgba(255, 255, 255, 0.8); /* 白い背景色 */
    border-radius: 5%; /* 完全な円形にする */
	
	/* 矢印（>）の周りに2px程度の隙間を作る (padding) */
    padding: 5px; /* 上下2px、左右10pxで楕円を想定 */
    
    /* 矢印を円の中心に配置するための調整 */
    display: inline-flex; /* Flexboxを使って中央揃えを簡単に */
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
    
    /* 背景のサイズを調整 */
    width: 20px; /* 背景の幅 */
    height: 30px; /* 背景の高さ */
    
}

#jump-MJ, #jump-TL, #jump-VT, #jump-UK, #jump-RM{
	height: 1px;
	scroll-margin-top: 133px;
	margin-top: -1px;
}


/*----------------------------------
    スライド(しない/PC要)
----------------------------------*/

#lp_container {
  width: 100%;
}

#lp_container .swiper-wrapper {
  display: flex;
}

#lp_container .swiper-slide {
  width: 50%;
}

#lp_container .swiper-slide img{
	width: 100%;
}

.swiper-pagination,
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}

/*----------------------------------
    テキスト
----------------------------------*/

.setup-br_tx01{
	text-align: center;
    font-size: 18px;
	font-weight: 600;
    line-height: 2.8em;
    letter-spacing: -0.05em;
    padding-bottom: 5px;
	color: #000;
}

/*----------------------------------
    スマホ
----------------------------------*/

@media (max-width: 768px) {

/* 既存のテキストスタイル */
.setup-br_tx01{
	text-align: center;
    font-size: 11px;
    line-height: 2em;
    letter-spacing: -0.05em;
    padding-bottom: 5px;
	color: #000;
}

/* 既存のアイテムスタイル */
.setup-br-item{
	flex-direction: column; /* 要素を縦に並べる（縦積み） */
}
.setup-br-itembox{
	width: 90%; /* 幅を画面いっぱいに上書き */
	text-align: center;
}
.setup-br-itembox img{
	width: 100%; /* 幅を画面いっぱいに上書き */
}
.setup-br_h1, .setup-br_h1c{
	text-align: center;
    font-size: 26px;
	font-family: "Arial Nova", Arial, sans-serif;
	font-weight: 700;
	transform   : scale(1, 0.8);   /* 変形 横,縦 */
    line-height: 1;
    letter-spacing: 0.1em;
    padding-top: 5px;
	color: #000;
}
.setup-br_h2{
    text-align: center;
    font-size: 14px;
	font-family: "Arial Nova", Arial, sans-serif;
	font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.1em;
    padding-top: 15px;
	color: #000;
}
.con_title h2{
	margin: 0;
	text-align: left;
    font-size: 20px;
	font-family: "Arial Nova", Arial, sans-serif;
	font-weight: 700;
	transform   : scale(1, 0.8);   /* 変形 横,縦 */
    line-height: 1.2;
    letter-spacing: 0.1em;
    padding-bottom: 5px;
	color: #000;
	width: auto;
}

.setup-br_wrapper{
	flex-direction: column;
	width: 100%;
}
.setup-br_box {
	flex-direction: column;
	gap: 20px;
}
.limage{
	width: 100%;
}
.setup-br_list{
    gap: 10px;
	width: 100%;
}
.setup-br_item{
    gap: 5px;
}
.setup-br_item img{
    width: 100%;
}
.setup-br_tx03{
	max-width: none;
	margin: 5px 0 0;
}
.galli_link{
	display: block;
	width: 100%;
}
.galli_link a{
	width: 100%;
}

.lp_4column{
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px 10px;
}

.lp_4column .lp_4item{
	width: 48%;
}

.lp_4item img {
	max-width: 100%;
	width: 100%;
	margin: 0;
}

.lp_tx03 {
	max-width: none;
	margin: 5px 0 0;
}

.arrow-link {
	bottom: 10px;
}
	
#jump-MJ, #jump-TL, #jump-VT, #jump-UK, #jump-RM{
	height: 1px;
	scroll-margin-top: 200px;
	margin-top: -1px;
}

/*----------------------------------
    スライド(する/SP要)
----------------------------------*/
#lp_container {
	width: 90%;
	max-width: 500px;
	height: auto !important;
}

  /* gapを消すだけ。transformは触らない */
#lp_container .swiper-wrapper {
	gap: 0;
}

  /* 1枚ずつスライド */
#lp_container .swiper-slide {
	width: 100%;
}

/* ナビゲーション系を表示 */
.swiper-pagination,
.swiper-button-prev,
.swiper-button-next {
	display: block !important;
}

.swiper-button-prev,
.swiper-button-next {
	color: #000 !important; 
}
.swiper-pagination-bullet-active {
	background-color: #000 !important;
	opacity: 1 !important;
}
.swiper-pagination {
	position: relative !important;
	transform: none !important;
	bottom: auto !important;
	top: auto !important;
	margin-top: 5px; 
}

} /* @media (max-width: 768px) の終了 */


