@charset "UTF-8";

/*
XR Service Page Styles
Author: Gemini
Description: Styles for the new XR solution page, designed to integrate with the existing 'solutions.css'.
*/

/* 既存の .contents, .block, h2 スタイルは solutions.css を継承 */


main.contents{
  margin-bottom: 10em;
}
/* ページタイトル下のメインビジュアル */
.main-visual {
  margin-bottom: 20px; /* or any value that matches the other pages */
}
.main-visual > div[id^="gid_"] {
  width: 100%;
  height: auto;
  max-width: 100%;
  border-radius: 8px;
}

/* 課題提起リスト */
.problem h2{
  /* text-align: center;
  background-image:none !important; */
}
.problem-list {
  list-style: none;
  padding-left: 0;
  margin-top: 40px;
}
.problem-list li {
  background-color: #f7f7f7;
  padding: 20px;
  margin-bottom: 15px;
  border-radius: 5px;
  font-size: 2rem;
  font-weight: normal;
  position: relative;
  padding-left: 40px;
  text-align: left;
}
.problem-list li b{
  font-weight: bold;
  color:#950306;
}
.problem-list li::before {
  content: "✔";
  color: #950006;
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .contents h2:not(.bg_none){
    font-size:2.2rem;
  }
  .problem-list li {
    font-weight: normal;
    font-size: 1.6rem;
  }
}


/* ソリューショングリッド */
.solution-grid2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 40px;
}
.solution-grid3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .solution-grid3 {
      grid-template-columns: repeat(1, 1fr);
  }
  .solution-grid3 img{
     width: 100%;
  }
}
.solution-item {
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
      margin-bottom: 5em;
}
.solution-item:nth-of-type(even){
  flex-direction: row-reverse;
}
.solution-item .image{
  width: 47%;
}
.solution-item .text-bloc{
  width: 48%;
}
@media screen and (max-width: 768px) {
  .solution-item .image{
  width: 100%;
}
 .solution-item .image img{
    width: 100%;
}
.solution-item .text-bloc{
  width: 100%;
}
}
.solution-item h3 {
  font-size: 2.2rem;
  font-weight: 900;
  margin-bottom: 10px;
  line-height: 1;
}
.solution-image-xr {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 8px;
}
.solution-image-xr > div[id^="gid_"] {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
    .solution-item h3 {
      font-size: 1.8rem;
      font-weight: 300;
      line-height: 1.6;
    }
}


/* 既存の .layout-2col を活用しつつ、微調整 */
.h3-style-blue {
  font-size: 2.2rem;
  font-weight: 900;
  padding-left: 15px;
  border-left: 4px solid #005bac; /* h2と同じ青い線 */
  margin-bottom: 20px;
}
.layout-2col-item h4 {
  font-size: 2.0rem; /* ← 変更 */
  font-weight: 700;
  text-align: left; /* ← 変更 */
  margin-top: 15px;
  margin-bottom: 10px;
  border-left: 4px solid #005bac; /* ← 追加 */
  padding-left: 15px; /* ← 追加 */
}
.layout-2col-item .img-box {
  margin-bottom: 15px;
}
.layout-2col-item .img-box > div[id^="gid_"] {
   border-radius: 8px;
}

/*ボタン*/
.btn_site{
  margin-top:1em;
}
.btn_site a{
  background-color: #000;
  padding: .8em 3em;
  color:#FFF;
  display: inline-block;
  text-decoration: none;
  text-align: center;
  position: relative;
}
.btn_site a::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
  width: 9px;
  height: 9px;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  box-sizing: border-box;
}

@media screen and (max-width: 768px) {
  .solution-grid2 {
      grid-template-columns: 1fr;
      gap: 40px;
  }
  .btn_site a{
    width:100%;
    margin-bottom:2em;
  }





  
}




/* ============================================= */
/* 選ばれる理由 - OUR STRENGTH
/* ============================================= */
.layout-2col {
  display: flex;
  align-items: center; /* 画像とテキストを上下中央揃え */
  gap: 50px; /* カラム間の余白 */
  margin-bottom: 40px;
}

.layout-2col-item {
  flex: 1; /* 2つのカラムが均等な幅になるように設定 */
  min-width: 0; /* flexアイテムの縮小を許可 */
}

/* 画像を囲むボックスのスタイル */
.layout-2col-item .img-box {
  border-radius: 8px;
  overflow: hidden;
}

.layout-2col-item .img-box img {
  width: 100%;
  height: auto;
  display: block; /* 余白をなくす */
}

/* カラムの順番を反転させる */
.layout-2col.reverse {
  flex-direction: row-reverse;
}


/* ============================================= */
/* 提供する価値と活用シーン
/* ============================================= */
.value-item {
  display: flex;
  align-items: center;
  gap: 30px; /* テキストと画像の間の余白 */
  padding: 30px 0;
  border-bottom: 1px solid #eee;
}
.value-item:last-child {
  border-bottom: none;
}

.value-item-text {
  flex-grow: 1; /* テキストエリアが残りのスペースをすべて使う */
}

.value-item-text h4 {
    font-size: 2.5rem; /* h4のサイズを調整 */
    font-weight: 900;
    margin: 0 0 10px 0;
}

.value-item-image {
  flex-shrink: 0; /* 画像が縮まないように設定 */
  width: 200px; /* 画像の幅を小さく固定 */
  border-radius: 8px;
  overflow: hidden;
}

.value-item-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* ============================================= */
/* レスポンシブ対応 (スマートフォンなど)
/* ============================================= */
@media screen and (max-width: 768px) {
  /* 「選ばれる理由」を縦並びにする */
  .layout-2col,
  .layout-2col.reverse {
    flex-direction: column; /* カラムを縦に積む */
    gap: 25px;
  }

  /* 「提供する価値と活用シーン」を縦並びにする */
  .value-item {
    flex-direction: column; /* テキストと画像を縦に積む */
  }

  .value-item-image {
    width: 100%; /* スマホでは画像の幅を100%に */
    margin-top: 20px;
  }
}

/* ============================================= */
/* デモンストレーションのご案内 (改)
/* ============================================= */

/* 画像の上下に余白を設定 */
.demo-image {
  margin-top: 40px;
  margin-bottom: 40px;
  border-radius: 8px;
  overflow: hidden; /* 角丸を画像に適用 */
}
.demo-image img {
  width: 100%;
  height: auto;
  display: block;
}

/* 説明テキストのスタイル */
.demo-text {
  max-width: 800px; /* 横幅が広くなりすぎないように調整 */
  margin-left: auto;
  margin-right: auto;
  text-align: center; /* テキストを中央揃えに */
  line-height: 1.9;
  margin-bottom: 40px;
}




