@charset "utf-8";

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
header,
footer,
div,
p {
   margin: 0;
   padding: 0;
}

* {
   outline: none;
}

*,
*::before,
*::after {
   box-sizing: inherit;
}

body {
   font-family: "Helvetica Neue",
      Arial,
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3",
      "Hiragino Sans",
      "メイリオ", Meiryo,
      sans-serif;
   font-size: 96%;
   line-height: 1.72;
   background: #282c34;
   color: #f0f0f0;
}

a {
   color: #97dae6;
   text-decoration: none;
}

a:hover {
   color: #97a3e6;
}

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

header {
   text-align: center;
   background: #21252b;
   color: #efefef;
   height: 300px;
   min-height: 100%;
   overflow: hidden;
   position: relative;
   /*display: flex;
   align-items: center;
   justify-content: space-between;
   flex-direction: column;*/
}

header h1 {
   font-size: 300%;
   line-height: 1.2;
   /*display: flex;
   justify-content: center;
   flex-direction: column;
   flex-grow: 1;
   z-index: 1;*/
   position:absolute;
   top:50%; left:50%;
   transform:translate(-50%,-50%);
   margin: -10px 0 0;
   text-align:center;
}

header .more-txt {
   font-size: 90%;
   padding: 8px;
   color: #efefef;
   position:absolute;
   left:50%; bottom:0;
   transform:translateX(-50%);
   margin-bottom:1rem;
   text-align:center;
}

.scroll-down-arrow {
   width: 16px;
   height: 16px;
   border-left: 2px solid #eee;
   border-bottom: 2px solid #eee;
   transform: rotate(-45deg);
   margin: 0 auto;
   /*animation: bounce 2s infinite;*/
   margin-top: 50px;
 }
 
 @keyframes bounce {
   0%, 20%, 50%, 80%, 100% {
     transform: translateY(0) rotate(-45deg);
   }
   40% {
     transform: translateY(10px) rotate(-45deg);
   }
   60% {
     transform: translateY(5px) rotate(-45deg);
   }
 }
 

header .header-block{
   font-size: 12px;
	margin-top: 50px;
	letter-spacing: 0.15em;
	color: #fff;
   opacity: 1;
   position:absolute;
  /* top:calc(50% + 2.2rem);*/
   bottom: 70px;
   left:50%;
   transform:translateX(-50%);
   text-align:center;
   margin: -10px 0 0;
}
.header-block .item{
   display: inline-block;
	line-height: 1.4;
   vertical-align: top;
   text-align: center;
   margin: 7px;
   border-radius: 14px;
}
.header-block .item:hover{
   margin-top:2px;
}
.header-block .item div,
.header-block .item a{
   width: 54px;
   height: 54px;
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
}
.header-block .item span{
   margin-top: 4px;
   color: #fff;
   display: inline-block;
}

main section {
   padding: 20px;
}
main section.dark {
   background: #21252b;
}
main section h2 {
   margin-bottom: 30px;
   text-align: center;
}
section .text{
   max-width: 1100px;
}

p + p{
   margin-top: 1.8em;
}


.box-wrap {
   display: grid;
   grid-template-columns: repeat(2, 1fr); /* 2列 */
   gap: 16px;
   max-width: 1100px;
   margin: 0 auto;
 }
 
 /* スマホ用 */
@media screen and (max-width: 767px) {
   .box-wrap {
     grid-template-columns: 1fr;
   }
 }
 
 /* .boxの中で左(画像)と右(テキスト)を並べる */
 .box {
   display: grid;
   grid-template-columns: auto 1fr; /* 左:自動幅、右:残り幅 */
   gap: 20px; /* 左右ブロック間の余白 */
   background: #222; /* サンプルで背景色（任意） */
   padding: 20px;
   border: 1px solid #000; /* カードっぽい枠（任意） */
   border-radius: 4px; /* 角を少し丸める（任意） */
 }
 
 /* 画像アイコン部分（.left） */
 .box .left {
   display: flex; 
   align-items: center; 
   justify-content: center;
   /* 実際には <img> を入れるケースが多いですがサンプルとして */
   /* width/height を仮指定 */
   width: 80px;
   height: 80px;
   background-color: #aaa; /* 画像のダミー背景 */
   border-radius: 4px;
   font-weight: bold;
 }
 .box.vr .left::after{
   content: "VR";
     font-size: 1.2rem;
  }
 
 /* テキスト部分（.right） */
 .box .right {
   display: flex;
   flex-direction: column; /* 見出しとテキストを縦並び */
   justify-content: center; /* 必要に応じて揃える */
 }
 
 /* 見出し（.right h3） */
 .box .right h3 {
   margin: 0 0 8px;
   font-size: 1.2rem;
 }
 
 /* テキスト（.right .text） */
 .box .right .text {
   font-size: 0.95rem;
   line-height: 1.5;
   /*color: #333;*/
 }
 

/* リスト初期スタイルをリセット */
.link-wrap {
   list-style: none;      /* ・(黒点)を消す */
   padding: 0 0 0 36px;
   margin: 0 auto;        /* 中央揃え（親要素次第ですが、autoでブロック要素が中央寄せになる場合も） */
   
   /* PCで最大5列 */
   display: grid;
   grid-template-columns: repeat(5, auto);
   gap: 12px;
   justify-content: center; /* 各列を中央揃えに */
 }
 
 /* スマホ */
 @media screen and (max-width: 767px) {
   .link-wrap {
      padding: 0 0 0 12px;
     grid-template-columns: repeat(3, auto);
   }
 }
 

 .link-wrap li {
   text-align: center;
 }
 
 .link-wrap li a {
   display: inline-block;
   padding: 8px 16px;
   text-decoration: none;
   border: 1px solid #d4f0e0;
   color: #d4f0e0;
   transition: background-color 0.2s, color 0.2s, border-color 0.2s;
 }
 .link-wrap .orange a{
   border-color: #f26f20;
   color: #f26f20;
 }
 .link-wrap li a:hover {
   border-color: #fff;
   color: #fff;
 }
 

/* ----- リスト本体 -------------------------------------------------- */
.lists-wrap {
   list-style: none;          /* ・を消す              */
   margin: 0;
   padding: 0;
   display: grid;             /* グリッド配置          */
   grid-template-columns: repeat(4, 1fr);  /* PC: 4 列 */
   gap: 24px;                 /* アイテム間の余白      */
 }
 
 /* スマホ（～767px）は 2 列に */
 @media (max-width: 767px) {
   .lists-wrap {
     grid-template-columns: repeat(2, 1fr);
   }
 }
 
 .lists-wrap > li {
   display: flex;             /* 中身を縦並びに        */
   flex-direction: column;
   align-items: center;       /* 中央寄せ  */
   background: #222;
 }
 
 .lists-wrap .thumb {
   width: 100%;
   aspect-ratio: 4 / 4;       /* 調整            */
   overflow: hidden;
 }
 
 .lists-wrap .thumb img {
   width: 100%;
   height: 100%;
   object-fit: cover;         /* 余白なくトリミング     */
   display: block;
 }
 
 .lists-wrap .title {
   margin: 6px 0 4px;
   font-size: 1rem; 
   font-weight: 600;
   line-height: 1.3;
   text-align: center;
 }
 
 .lists-wrap .title a {
   color: inherit;
   text-decoration: none;
 }
 
 .lists-wrap .content > .text {          /* 内部の説明用 .content */
   font-size: 0.9rem;
   line-height: 1.5;
   text-align: center;
   color: #a6a6a6;
 }

 
 

footer {
   text-align: center;
   font-size: 80%;
   background: #21252b;
   color: #efefef;
   padding: 10px;
}