@charset "utf-8";

:root{
    color:#223151 ;
}

/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900 */

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}

section{
  max-width: 1200px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

h1{
  font-size: 24px;
}

h2{
  font-size: 20px;
  margin: 150px auto 100px;
}

h3{
  font-size: 18px;
}

h4{
  font-size: 16px;
}

h2.dot::before,
h2.dot::after {
  content: ""; 
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  background-size: contain; 
  background-repeat: no-repeat; 
  background-position: center; 
  vertical-align: middle; 
  margin-left: auto;
  margin-right: auto;
}

h2.dot::before {
  background-image: url('../img/pentagon.png'); 
  margin-right: 10px; /* h2との隙間 */
}
h2.dot::after {
  background-image: url('../img/pentagon.png'); 
  margin-left: 10px; /* h2との隙間 */
}

.phone_d{
  display: none;
}

.fade-in {
  opacity: 0; /* 初期状態で非表示 */
  transform: scale(0.95); /* 少し小さく */
  transition: opacity 1.5s ease, transform 1.5s ease; /* アニメーション */
}

.fade-in.visible {
  opacity: 1; /* 表示 */
  transform: scale(1); /* 元のサイズに */
}
.slide-in {
  opacity: 0; /* 初期状態で非表示 */
  transform: translateX(100%); /* 画面外の右側に配置 */
  transition: transform 1.5s ease, opacity 1.5s ease; /* アニメーション効果 */
}

.slide-in.visible {
  opacity: 1; /* 表示 */
  transform: translateX(0); /* 元の位置に移動 */
}

.scroll-appear {
  opacity: 0; /* 初期状態で非表示 */
  transform: translateY(20px); /* 下から移動するように設定 */
  transition: opacity 1s ease, transform 1s ease; /* アニメーションの設定 */
}

.scroll-appear.visible {
  opacity: 1; /* 表示 */
  transform: translateY(0); /* 元の位置に移動 */
}

/* top */

header {
  width: 100%;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.top_left {
  width: 45%;
  margin-left: 5%;
}

.top_left img {
  width: 80%;
}

.top_left h1 {
  color: white;
  background-color: #223151;
  margin: 10px;
  padding: 15px 30px;
  display: inline-block;
  position: relative; /* アニメーションに必要 */
  overflow: hidden; /* アニメーションに必要 */
}

.top_right {
  width: 50%;
}

.top_right img {
  width: 90%;
}

/* アニメーションの設定 */
.top_left h1::before {
  animation: none; /* 初期状態ではアニメーションを適用しない */
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
  transform: translateX(0); /* 初期位置 */
}

.top_left h1.animate::before {
  animation: img-wrap 2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

@keyframes img-wrap {
  100% {
    transform: translateX(100%);
  }
}


/* why using VR */
section.why{
  text-align: center;
}

.why p:nth-child(2){
  margin-bottom: 30px;
}

.why p:nth-child(7){
  margin-top: 30px;
}

.why p:nth-child(n+3):nth-child(-n+6){
  margin: 5px;
}


p.why_dot img{
  width: 10px;
}

p.why_dot2 img{
  width: 15px;
}

/* what vr can do */
ul.can_box{
  display: flex;
  list-style-type: none;
  justify-content: space-around;
}

ul.can_box li{
  width: 23%;
}

ul.can_box li img{
  width: 100%;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  margin-bottom: 50px;
}

ul.can_box li p{
  line-height: 1.2;
  margin-top: 20px;
  font-size: 12px;
}

section.point h2.point_cont{
  margin-bottom:10px ;
  margin-top: 0px;
}

.point_box{
  margin-top: 50px;
  color: white;
  background-color: #223151;
  display: inline-block;
  padding: 20px;
  line-height: 1.6;
}

ul.point_3{
  display: flex;
  list-style-type: none;
  justify-content: space-around;
  margin-top: 30px;
  align-items: baseline;
  margin-bottom: 150px;
}

ul.point_3 li{
  width: 25%;
  height: 190px;
  border:1px solid #223151;
}

ul.point_3 li img{
  width: 55%;
}

ul.point_3 li p{
  margin-top: 20px;
  color: white;
  background-color: #223151;
  padding: 10px;
  border:1px solid #223151;
}


/* service step */
.step{
  display: flex;
  justify-content: space-around;
  align-items: center;
}

.step_1_4{
  width: 20%;
}

.step_1_4 img{
  width: 100%;
}

.step_1_4 h3{
  margin-top: 20px;
  margin-bottom: 10px;
}

.step_1_4 p{
  line-height: 1.5;
  font-size: 12px;
}


.triangle{
  width: 2%;
}

/* plan price */
.plan1,
.plan2{
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 30px;
  margin-bottom: 50px;
}

.plan1 p,.plan2 p{
  font-size: 12px;
  line-height: 1.5;
  margin: 10px 0;
}

.plan1 h4,.plan2 h4{
  margin-bottom: 20px;
}

.plan_cont{
  width: 20%;
}

.plan1 img{
  width: 80%;
}

.plan2_cont{
  width: 40%;
}

.plan2 img{
  width: 60%;
}

table{
  width: 80%;
  font-size: 12px;
  
}

.plan_cont table tr{
  width: 100%;
}

table tr td.col1{
  width: 60%;
  padding: 5px 10px 5px 0px;
}

table tr td.col2{
  width: 40%;
  padding: 5px 10px 5px 10px;
}

/* FAQ */
.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
  max-width:800px ;
  margin-right: auto;
  margin-left: auto;
}

.faq-question {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-weight: bold;
  margin: 0;
}

.faq-button {
  width: 20px;
  height: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #333;
  border-radius: 50%;
  margin-right: 10px;
  font-size: 14px;
  line-height: 1;
  user-select: none;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-in-out, padding 0.4s ease-in-out;
  margin: 0;
  padding: 0 0;
}

.faq-answer.open {
  max-height: 200px; /* 回答の高さを指定 */
  padding: 10px 0;
}


/* contact */

form {
  max-width: 600px;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
}

input, textarea, button {
  width: 100%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #223151;
  border-radius: 4px;
  font-size: 14px;
}

textarea {
  height: 100px;
}

button {
  background-color: #223151;
  color: #fff;
  font-weight: bold;
  border: none;
  cursor: pointer;
  transition: background-color 0.3s;
}

button:hover {
  background-color: #223151;
}

.required {
  color: red;
  margin-left: 5px;
}

/* conpany */
.container {
  display: flex;
  flex-direction: column;
  border: 1px solid #223151;
  width: 80%;
  margin: auto;
  font-weight: bold;
}

.row {
  display: flex;
  border-bottom: 1px solid #223151;
}

.row:last-child {
  border-bottom: none; /* 最後の行にはボーダーを適用しない */
}

.label {
  width: 30%;
  padding: 20px 10px 20px 10px;
  font-weight: bold;
  border-right: 1px solid #223151;
}

.value {
  width: 70%;
  padding: 20px 10px 20px 30px;
  text-align: left;
}


/* footer */
footer{
  background-color: #223151;
  color: white;
  text-align: center;
  height: 50px;
  margin-top: 100px;
}

footer p{
  line-height: 50px;
}



/* thanks */
.thanks{
  text-align: center;
}

.thanks_url{
  text-align: center;
}

.thanks_url a{
  color: #223151;
  font-size: 18px;
  font-weight: bold;
}


/* tablet---------------------------- */

@media screen and (max-width: 768px) {

}
/* phone---------------------------- */
@media screen and (max-width: 480px) {
  h2 {
    font-size: 16px;
    margin: 150px auto 100px;
  }
  h3 {
    font-size: 14px;
  }

header{
  flex-direction: column-reverse;
  height: 50vh;
}

.top_left {
  width: 100%;
  margin: 0;
}

.top_left p{
  text-align: center;
}

.top_left p img{
  width: 50%;
  margin: 30px;
}

.top_right {
  width: 25%;
}

section{
  width: 90%;
  margin: auto;
}

section p{
  font-size: 10px;
  line-height: 1.5;
}

.phone_d{
  display: block;
}

ul.can_box{
  display: block;
}

ul.can_box li {
  width: 100%;
}

ul.can_box li img {
  width: 50%;
  box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.35);
  margin-bottom: 15px;
}

ul.can_box li p {
  line-height: 1.2;
  margin-top: 10px;
  font-size: 12px;
  margin-bottom: 50px;
}
ul.point_3 {
  display: block;
  list-style-type: none;
  justify-content: space-around;
  margin-top: 30px;
  align-items: baseline;
}
ul.point_3 li {
  width: 50%;
  height: 190px;
  border: 1px solid #223151;
  margin: 20px auto;
}
ul.point_3 li img {
  width: 72%;
}

.step {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-direction: column;
}
.step_1_4 {
  width: 50%;
}

.step_1_4 h3 {
  margin-top: 10px;
  margin-bottom: 05px;
}

.triangle {
  width: 2%;
  transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform-origin: center;
  display: block;
  margin: 20px auto;
  height: auto; 
}

.plan1, .plan2 {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-left: 0;
}

.plan_cont {
  width: 100%;
}

.plan1 img {
  width: 100%;
}

.plan2_cont {
  width: 100%;
  margin-top: 50px;
}

.plan2 img {
  width: 100%;
}

h4 {
  font-size: 14px;
}
label {
  display: block;
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 14px;
}

.container {
  display: flex;
  flex-direction: column;
  border: .5px solid #223151;
  width: 100%;
  margin: auto;
  font-weight: 400;
  font-size: 12px;
}
.row {
  display: flex;
  border-bottom: .5px solid #223151;
}

.label {
  width: 30%;
  padding: 20px 10px 20px 10px;
  font-weight: bold;
  border-right: .5px solid #223151;
}
}