@charset "UTF-8";
/* CSS Document */
/* ========================================
RESET
======================================== */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:
  "Helvetica Neue",
  "Yu Gothic",
  sans-serif;
  
  color:#111;
  background:#fff;
  line-height:1.8;
}

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

a{
  text-decoration:none;
  color:inherit;
}

ul{
  list-style:none;
}
@media screen and (max-width:640px){

.pc_menu{
  display:none;
}

.sp_menu{
  display:block;
}

}
/* ========================================
COMMON
======================================== */

.inner{
  width:92%;
  max-width:1300px;
  margin:0 auto;
}

.section_title{
  text-align:center;
  margin-bottom:70px;
}

.section_title span{
  color:#d7002f;
  font-size:14px;
  letter-spacing:0.2em;
  display:block;
  margin-bottom:10px;
  text-transform:lowercase;
}

.section_title h2{
  font-size:46px;
  font-weight:700;
  line-height:1.4;
}

.section_title.white h2{
  color:#fff;
}

/* ========================================
HEADER
======================================== */

/* ========================================
FV
======================================== */

.fv{
  background:
  linear-gradient(90deg,#02113d 0%,#02113d 40%,#03184f 100%);

  padding-top:90px;
}

.fv_inner{
  display:grid;
  grid-template-columns:38% 62%;
  align-items:center;

  min-height:900px;
}

.fv_text{
  padding-left:7%;
  color:#fff;
}

.fv_text img{
  width:420px;
  margin-bottom:40px;
}

.fv_text h1{
  font-size:60px;
  line-height:1.4;
  margin-bottom:30px;
  font-weight:700;
}

.fv_text p{
  font-size:22px;
  line-height:2;
  margin-bottom:45px;
}

.fv_btns{
  display:flex;
  gap:20px;
}

.btn_red{
  background:#d7002f;
  color:#fff;
  padding:18px 38px;
  border-radius:999px;
  font-weight:700;
}

.btn_border{
  border:2px solid #fff;
  color:#fff;
  padding:16px 36px;
  border-radius:999px;
  font-weight:700;
}

.fv_image img{
  width:100%;
  height:900px;
  object-fit:cover;
}

/* ========================================
ABOUT
======================================== */

.about{
  padding:120px 0;
}

.about_wrap{
  display:grid;
  grid-template-columns:45% 45%;
  gap:10%;
  align-items:center;
}

.about_text p{
  margin-bottom:35px;
  font-size:18px;
  line-height:2.2;
}

.about_image img{
  border-radius:10px;
}

/* ========================================
FEATURE
======================================== */

.feature{
  background:
  linear-gradient(180deg,#02113d 0%,#000814 100%);
  
  padding:120px 0;
}

.feature_grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:30px;
}

.feature_item{
  text-align:center;
  color:#fff;
  position:relative;
}

.feature_item::after{
  content:"";
  width:1px;
  height:180px;
  background:rgba(255,255,255,0.2);

  position:absolute;
  right:-15px;
  top:50%;
  transform:translateY(-50%);
}

.feature_item:last-child::after{
  display:none;
}

.feature_item img{
  width:85px;
  margin:0 auto 25px;
}

.feature_item h3{
  font-size:24px;
  line-height:1.6;
  margin-bottom:20px;
}

.feature_item p{
  font-size:15px;
  line-height:2;
}

/* ========================================
SCENE
======================================== */

.scene{
  padding:120px 0;
}

.scene_grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}

.scene_item img{
  width:100%;
  height:220px;
  object-fit:cover;
  border-radius:8px;
  margin-bottom:20px;
}

.scene_item h3{
  font-size:20px;
  margin-bottom:10px;
}

.scene_item p{
  font-size:15px;
  color:#555;
}

/* ========================================
CASE
======================================== */

.case{
  padding:120px 0;
  background:#FFFFFF;
}

.case_grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:35px;
}

.case_item{
  background:#fff;
  border-radius:10px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.08);
  transition:0.3s;
}

.case_item:hover{
  transform:translateY(-10px);
}

.case_item img{
  width:100%;
  height:260px;
  object-fit:cover;
}

.case_text{
  padding:30px;
}

.case_text span{
  display:inline-block;
  background:#d7002f;
  color:#fff;
  font-size:13px;
  padding:7px 14px;
  border-radius:999px;
  margin-bottom:18px;
}

.case_text h3{
  font-size:24px;
  line-height:1.5;
  margin-bottom:18px;
}

.case_text p{
  color:#555;
}
/*動画で見る*/
.button {
    background-color: #d7002f;
    border: 3px solid #d7002f;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .2);
    color: #fff;
    display: inline-block;
    font-weight: 700;
    padding: 1.25rem 4rem;
    position: relative;
    text-align: center;
margin-left:auto;
margin-right:auto;
    text-decoration: none;
    transition: .3s;	
width: 100%;}

.button:hover {
    background-color: #fff;
    color: #d7002f;
	border: 3px solid #d7002f;
	border-radius: 12px;
}
/* =========================
SP
========================= */

@media screen and (max-width:640px){

.movie-btn{
  width:100%;
  padding:16px 24px;
  font-size:16px;
}

.movie-icon{
  width:36px;
  height:36px;
  font-size:14px;
}

}
/* ========================================
FLOW
======================================== */

.flow{
  padding:120px 0;
  background:#fafafa;
  position:relative;
}

.flow::before{
  content:"";
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:320px;

/*  background:
  linear-gradient(180deg,#02113d 0%,#051a57 100%);*/
}

.flow .inner{
  position:relative;
  z-index:2;
}

.flow .section_title{
  margin-bottom:70px;
}

.flow .section_title h2{
  color:#000;
}

.flow_lead{
  color:#000;
  font-size:18px;
  line-height:2;
  margin-top:25px;
}

.flow_grid{
  display:grid;
  grid-template-columns:repeat(5,1fr);
  gap:25px;
}

.flow_item{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:
  0 15px 40px rgba(0,0,0,0.08);

  position:relative;
  transition:0.3s;
}

.flow_item:hover{
  transform:translateY(-10px);
  box-shadow:
  0 25px 60px rgba(0,0,0,0.12);
}

.flow_item::after{
  content:"›";
  position:absolute;
  right:-18px;
  top:45%;
  transform:translateY(-50%);

  font-size:55px;
  color:#d7002f;
  font-weight:300;
  z-index:5;
}

.flow_item:last-child::after{
  display:none;
}

.flow_number{
  position:absolute;
  top:20px;
  left:20px;

  background:#d7002f;
  color:#fff;

  padding:7px 14px;
  border-radius:999px;

  font-size:12px;
  letter-spacing:0.08em;
  font-weight:700;

  z-index:3;
}

.flow_image{
  height:220px;
  overflow:hidden;
}

.flow_image img{
  width:80%;
  height:100%;
  object-fit:cover;
  transition:0.5s;
	text-align: center;
margin-left:auto;
margin-right:auto;
padding-top: 60px;
}

.flow_item:hover .flow_image img{
  transform:scale(1.08);
}

.flow_content{
  padding:35px 28px;
}

.flow_content h3{
  font-size:20px;
  line-height:1.5;
  margin-bottom:20px;
  font-weight:700;
}

.flow_content p{
  font-size:15px;
  line-height:2;
  color:#555;
  margin-bottom:25px;
}

.flow_content ul{
  list-style:none;
  padding:0;
}

.flow_content ul li{
  position:relative;
  padding-left:20px;
  margin-bottom:12px;

  font-size:14px;
  color:#111;
  line-height:1.8;
}

.flow_content ul li::before{
  content:"";
  width:8px;
  height:8px;
  background:#d7002f;
  border-radius:50%;
  position:absolute;
  left:0;
  top:10px;
}

/* ========================================
TABLET
======================================== */

@media screen and (max-width:1200px){

.flow_grid{
  grid-template-columns:repeat(2,1fr);
}

.flow_item::after{
  display:none;
}

}

/* ========================================
SP
======================================== */

@media screen and (max-width:640px){
	

.flow{
  padding:70px 0;
}

.flow::before{
  height:240px;
}

.flow .section_title{
  margin-bottom:45px;
}

.flow_lead{
  font-size:14px;
  line-height:1.9;
  margin-top:18px;
}

.flow_grid{
  grid-template-columns:1fr;
  gap:25px;
}

.flow_image{
  height:130px;
}
.flow_image img{
  width:130px;
  height:130px;
	padding-top: 20px;
 
}
.flow_content{
  padding:28px 22px;
}

.flow_content h3{
  font-size:24px;
}

.flow_content p{
  font-size:14px;
}

}

/* ========================================
SPEC PRICE
======================================== */

.spec_price{
  padding:120px 0;
}

.spec_wrap{
  display:grid;
  grid-template-columns:48% 48%;
  gap:4%;
}

.spec{
  background:#000;
  color:#fff;
  padding:60px;
	
}

.spec span,
.price span{
  color:#d7002f;
  display:block;
  margin-bottom:10px;
		text-align:center;
}

.spec h2,
.price h2{
  font-size:42px;
  margin-bottom:40px;
	text-align:center; 
}

.spec ul li{
  margin-bottom:20px;
  font-size:18px;
}
  .price-inner {
 display:flex;
  justify-content:center;
	  
  }

.price{
  background:#fff;
  border:1px solid #ddd;
  padding:60px;
  text-align:center;
}

.price_type{
  border:2px solid #111;
  border-radius:999px;
  width:340px;
  margin:0 auto 35px;
  padding:10px;
  font-size:22px;
}
.spec > span,
.price > span{
  color:#d7002f;
  display:block;
  margin-bottom:10px;
}
.price-inner{
  display:flex;
  justify-content:center;
  align-items:flex-end;
}

.price_num{
  display:flex;
  align-items:flex-end;

  font-size:120px;
  color:#d7002f;
  line-height:1;
  font-weight:bold;
  margin-bottom:25px;
}

.price_num span{
  font-size:50px;
  margin-left:8px;
  line-height:1.2;
	  display:inline;
}

.price p{
  font-size:18px;
}

/* ========================================
CONTACT
======================================== */

.contact{
  background:
  linear-gradient(180deg,#02113d 0%,#000814 100%);
  
  padding:120px 20px;
  text-align:center;
  color:#fff;
}

.contact h2{
  font-size:62px;
  margin-bottom:25px;
}

.contact p{
  font-size:26px;
  margin-bottom:45px;
}

.contact a{
  display:inline-block;
  background:#d7002f;
  color:#fff;
  padding:20px 60px;
  border-radius:999px;
  font-size:20px;
  font-weight:700;
}

/* ========================================
FOOTER
======================================== */


/* ========================================
TABLET
======================================== */

@media screen and (max-width:1024px){

.fv_inner,
.about_wrap,
.spec_wrap,
.footer_inner{
  grid-template-columns:1fr;
}
	.spec_wrap{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:30px;
}

.feature_grid,
.case_grid{
  grid-template-columns:repeat(2,1fr);
}

.scene_grid{
  grid-template-columns:repeat(2,1fr);
}

.flow_grid{
  grid-template-columns:repeat(2,1fr);
}

.fv_text{
  padding:60px 30px;

}

.fv_text h1{
  font-size:42px;
	
}

.fv_text p{
  font-size:18px;
}

.contact h2{
  font-size:42px;
}

}

/* ========================================
SP
======================================== */

@media screen and (max-width:640px){

.header{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  z-index:99999;
}
.section_title h2{
  font-size:28px;
}

.fv{
  padding-top:30px;
}

.fv_inner{
  grid-template-columns:1fr;
	
}

.fv_text{
  padding:60px 20px;
}

.fv_text img{
  width:220px;
	text-align: center;
margin-left:auto;
margin-right:auto;}

.fv_text h1{
  font-size:34px;
	text-align: center;	
}

.fv_text p{
  font-size:16px;
	text-align: center;	
}

.fv_btns{
  flex-direction:column;
}

.btn_red,
.btn_border{
  text-align:center;
}

.fv_image img{
  height:auto;
}

.about,
.feature,
.scene,
.case,
.flow,
.spec_price,
.contact{
  padding:70px 0;
}

.about_text p{
  font-size:15px;
}

.feature_grid,
.scene_grid,
.case_grid,
.flow_grid{
  grid-template-columns:1fr;
}

.feature_item::after{
  display:none;
}

.flow_item::after{
  display:none;
}

.price_num{
  font-size:72px;
}

.contact h2{
  font-size:28px;
}

.contact p{
  font-size:16px;
}

.contact a{
  width:94%;
margin-left:auto;
margin-right:auto;
}

.footer_inner{
  grid-template-columns:1fr;
}


}

@media screen and (max-width:768px){

.spec_wrap{
grid-template-columns:1fr;
  gap:20px;
}
.price_type{
  width:240px;
}
	.spec{
  background:#000;
  color:#fff;
  padding:20px;
	
}
}
