@charset "UTF-8";

/*////////////////////////////////////////////////////////////////////// */
/*  ---  目次  ---
● 共通パーツ
● Si-Pronto GRANDE（si-pronto-grande）
  ---  目次  ---   */
/*////////////////////////////////////////////////////////////////////// */
/*  --- 共通パーツ ---   */
:root {
  /* font-color */
	--white: #FFFFFF;
	--black: #000000;
	--azure-green: #008483;

  /* other-color */
	--bg-gray: #EFEFEF;
	--bg-light-green: 224,233,233;
	

  /* font-weight */
	--fw-regular :400;
	--fw-medium :500;
	--fw-bold: 700;

  /* font-familiy */
	--ff-zenKakuGothic : 'Zen Kaku Gothic Antique', sans-serif;
	--ff-poppins : 'Poppins', sans-serif;
}

html {
	height: 100%;
	font-size: 62.5%;
	overflow-x: hidden; 
}

p{
  margin-bottom: 0;
}

figure {
  overflow: hidden;
  text-align: center;
}

/* font */
.ff-en {
  font-family: var(--ff-poppins);
}
.ff-ja {
  font-family: var(--ff-zenKakuGothic);
}

.fw-regular {
  font-weight: var(--fw-regular);
}
.fw-medium {
  font-weight: var(--fw-medium);
}
.fw-bold {
  font-weight: var(--fw-bold);
}

/* margin */
.m-side-auto {
  margin: 0 auto;
}

/* background */
.bg-gray {
	background: var(--bg-gray);
}

.bg-light-green {
	background: rgba(var(--bg-light-green), 0.9);
}

.bg-green {
  background: var(--azure-green);
}

.c-lpWrap{
  font-family: var(--ff-zenKakuGothic);
  font-size: 1.6rem;
  font-weight: var(--fw-medium);
  line-height: calc(34 / 16);
  letter-spacing: 0.05em;
  font-feature-settings: "palt";
  color: var(--black);
  margin-bottom: -5.5em;
}
@media (min-width: 992px){
  .c-lpWrap{
    margin-bottom: -6em;
  }
}

/* title */
.content-title {
	font-size: 2.5rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.05em;
	line-height: 2;
	color: var(--azure-green);
	position: relative;
	text-align: center;
	padding-bottom: 3rem;
	margin-bottom: 5rem;
}

.content-title::before {
  content: "";
  height: 1px;
  width: 80px;
  background-color: var(--azure-green);
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
transform: translateX(-50%);
}

.middle-title {
  font-size: 2.5rem;
	font-weight: var(--fw-bold);
	letter-spacing: 0.05em;
	line-height: 1.5;
	color: var(--azure-green);
	margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .content-title {
	font-size: 2.8rem;
  }
}

@media (min-width: 992px) {
  .content-title {
	font-size: 3rem;
  }
  .middle-title {
    font-size: 3rem;
  }
}

/* リードテキスト */
.lead-text {
  text-align: center;
}
.lead-text:has(+*){
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .lead-text:has(+*){
    margin-bottom: 9rem;
  }
}

.lead-text p{
  font-size: 1.7rem;
  font-weight: var(--fw-mediums);
  line-height: 2;
}
@media (min-width: 768px){
  .lead-text p{
    font-size: 1.8rem;
    line-height: 2.3;
  }
}

.lead-text ul{
  display: inline-block;
  text-align: left;
}
.lead-text ul li{
  font-size: 1.7rem;
  font-weight: var(--fw-mediums);
  line-height: 2;
}
@media (min-width: 768px){
  .lead-text ul li{
    font-size: 1.8rem;
    line-height: 2.3;
  }
}

/* 英語フォント */
.ff-en{
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-style: normal;
}

/* border */
.border-green {
  border-bottom: 1px solid var(--azure-green) !important;
}

/* section-padding */
[class^="sec-"] {
    padding: 50px 0;
}

@media (min-width: 768px) {
  [class^="sec-"] {
    padding: 70px 0;
  }
}

@media (min-width: 768px) {
  [class^="sec-"] {
    padding: 100px 0;
  }
}

/* img-wrap */
.img-wrap {
  position: relative;
  width: auto;
  overflow: hidden;
}

.img-wrap::before {
  content: "";
  display: block;
  padding-top: 75%;
}

.img-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover;
}

/* c-pointList */
.c-pointList{
  gap: 3rem 0;
}
.c-pointList .c-pointList__heading{
    font-size: 18px;
    line-height: 1.5;
    font-weight: bold;
    color:var(--azure-green);
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
@media (min-width: 576px){
  .c-pointList .c-pointList__heading{
    font-size: 2rem;
  }
}
.c-pointList .c-pointList__heading .ff-en{
  font-size: 4rem;
  letter-spacing: 0.1em;
  height: 100%;
  display: flex;
  align-items: center;
  min-height: 80px;
  padding-right: 15px;
}
@media (min-width: 576px){
  .c-pointList .c-pointList__heading .ff-en{
    font-size: 5rem;
    min-height: 80px;
  }
}
.c-pointList .c-pointList__heading .ff-en::after{
  content: "";
  height: 60px;
  width: 1px;
  background-color: var(--azure-green);
  display: block;
  margin-left: 15px;
}
.c-pointList img{
  width: 100%;
}

/* c-rowList */
.c-rowList{
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
@media (min-width: 576px){
  .c-rowList{
    gap: 8rem;
  }
}
.c-rowList__item{
  padding-bottom: 5rem;
  border-bottom: 1px solid var(--azure-green);
}
@media (min-width: 576px){
  .c-rowList__item{
    padding-bottom: 8rem;
  }
}
.c-rowList__item .row{
  gap: 2rem 0;
}
.c-rowList__item:last-of-type{
  border-bottom: none;
  padding-bottom: 0;
}
.c-rowList__item:nth-of-type(even) .row{
  flex-direction: column-reverse;
}
@media (min-width: 992px){
  .c-rowList__item:nth-of-type(even) .row{
    flex-direction: row;
  }
}
.c-rowList img{
  width: 100%;
}

/* c-moreList */
.c-moreList{
  gap: 6rem 0;
}
.c-moreList .c-moreList__heading{
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.c-moreList .c-moreList__heading h3{
  font-size: 18px;
  line-height: 1.5;
  font-weight: var(--fw-medium);
}
@media (min-width: 576px){
  .c-moreList .c-moreList__heading h3{
    font-size: 2.4rem;
  }
}
.c-moreList .c-moreList__heading .ff-en{
  font-weight: var(--fw-regular);
  color: var(--white);
  background: var(--azure-green);
  height: 40px;
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}
@media (min-width: 576px){
  .c-moreList .c-moreList__heading .ff-en{
    height: 45px;
    width: 45px;
  }
}

/* table */
.c-specTable{
  font-weight: bold;
  color: var(--azure-green);
}
.c-specTable .c-specTable__wrap{
  overflow-x: auto;
  margin-bottom: 10rem;
}
.c-specTable table {
  width: 800px;
  text-align: left;
  color: var(--azure-green);
}
@media (min-width: 768px){
  .c-specTable table {
    width: 100%;
  }
}
.c-specTable table tr {
  border-bottom: 1px solid var(--azure-green);
}
.c-specTable table tr:first-child {
  border-top: 1px solid var(--azure-green);
}
.c-specTable table tr th:first-of-type{
  width: 300px;
}
.c-specTable table tr th,
.c-specTable table tr td {
  font-size: 16px;
  font-weight: bold;
  padding: 5px 0;
}
.c-specTable table .ff-en.icon-new{
  display: inline-block;
  font-size: 12px;
  color: var(--white);
  background: var(--azure-green);
  padding: 0 7px;
  margin-right: 7px;
}
.c-specTable  .c-specTable__imgRow{
  border-bottom: none;
}
.c-specTable .c-specTable__img{
  padding-top: 10px;
}
.c-specTable .c-specTable__img figcaption{
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
  color: var(--azure-green);
  text-align: center;
}
/*  --- common-parts ---   */
/*////////////////////////////////////////////////////////////////////// */
/*  --- common-parts ---   */

/* main-visual */
.c-mv {
	background: var(--black);
	color: var(--white);
}
@media (min-width: 768px){
  .c-mv {
    height: 610px;
  }
}

.c-mv .c-mv__inner {
	max-width: 1200px;
	width: 100%;
  height: 100%;
	padding: 30px 15px;
	margin: 0 auto;
  align-items: center;
}
.c-mv .c-mv__title{
  font-size: 3.3rem; 
  font-weight: bold;
  line-height: 1;
}
.c-mv .c-mv__title > span{
  display: block;
  font-size: 6rem;
  line-height: 1;
}
@media (min-width: 768px){
  .c-mv .c-mv__title > span{
    font-size: 5.5rem;
  }
}
@media (min-width: 992px){
  .c-mv .c-mv__title > span{
    font-size: 6.7rem;
  }
}
.c-mv .c-mv__prod{ 
  display: flex;
  flex-direction: column-reverse;
  gap: 2rem;
}
@media (min-width: 768px){
  .c-mv .c-mv__prod{
    flex-direction: column;
  }
}
.c-mv .c-mv__prodName .c-mv__prodName__upper{
  margin-bottom: 10px;
}
.c-mv .c-mv__prodName .c-mv__prodName__upperFlex{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px 2rem;
}
@media (min-width: 992px){
  .c-mv .c-mv__prodName .c-mv__prodName__upperFlex{
    flex-direction: row;
  }
}
.c-mv .c-mv__prodName .c-mv__prodName__cat{
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 15px;
  font-weight: 500;
}
.c-mv .c-mv__prodName .c-mv__prodName__cat .icon-new{
  display: inline-block;
  font-size: 1.2rem;
  background: var(--azure-green);
  padding: 0px 6px;
}
.c-mv .c-mv__prodName .c-mv__prodName__model{
  font-size: 20px;
  font-weight: bold;
  margin: 0;
}
@media (min-width: 768px){
  .c-mv .c-mv__prodName .c-mv__prodName__model{
    font-size: 2.5rem;
  }
}


/* mv-img設定 */
.mv-img {
  height: 100%;
  padding: 3rem 15px;
  position: relative;
}
@media (min-width: 768px){
  .mv-img {
    padding: 0 15px;
  }
}

.mv-img figure {
  overflow: hidden;
  text-align: center;
  width: auto;
  height: 100%;
  object-fit: cover;
}

.mv-img img{
  height: 100%;
  max-height:300px
}
@media (min-width: 768px){
  .mv-img img{
    max-height:100%;
  }
}



@media (min-width: 768px) {
  .mv-img figure {
    bottom: unset;
  }
}

@media (min-width: 992px) {
  .mv-img figure {
    bottom: 0;
  }
}

/* about */
.about-point-title {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: var(--fw-medium);
  color: var(--azure-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.about-point-title .ff-en {
    font-size: 4.5rem;
    font-weight: var(--fw-regular);
    letter-spacing: 0.1em;
    height: 100%;
    display: flex;
    align-items: center;
    min-height: 80px;
    padding-right: 15px;
}

.about-point-title .ff-en::after {
  content: "";
  height: 60px;
  width: 1px;
  background-color: var(--azure-green);
  display: block;
  margin-left: 15px;
}

@media (min-width: 1200px) {
  .about-point-title {
  font-size: 2rem;
}

  .about-point-title .ff-en {
    font-size: 5rem;
    min-height: 80px;
  }
}

/* technology */
.tech-list-item {
  padding: 80px 0;
}

.tech-list-item.border-bottom {
  border-bottom: 1px solid var(--azure-green);
}

/* know */
.know-list-title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: var(--fw-medium);
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}

.know-list-title .ff-en {
  display: inline-block;
    font-weight: var(--fw-regular);
    color: var(--white);
    background: var(--azure-green);
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

@media (min-width: 768px) {
  .know-list-item .box-inner {
  display: flex;
}
.know-list-item .box-inner .text-box {
  padding-right: 40px;
}
}

@media (min-width: 992px) {
.know-list-item .box-inner .text-box {
  width: 340px;
}

.know-list-item .box-inner figure {
  width: 170px;
}
}

/* data */
.data-item-title {
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: var(--fw-medium);
  color: var(--azure-green);
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
}

.data-item-title .ff-en {
  display: inline-block;
  font-size: 6rem;
  font-weight: var(--fw-regular);
  height: 100%;
  display: flex;
  align-items: center;
  margin-right: 25px;
}

@media (min-width: 768px) {
.data-item-title {
  font-size: 2.4rem;
}
}

@media (min-width: 992px) {
.data-item-title .ff-en {
  font-size: 8rem;
  margin-right: 30px;
}
}

/* possibility */
.sec-possibility,
.sec-possibility .content-title {
  color: var(--white);
}

.sec-possibility .content-title::before {
  background: var(--white);
}

.possibility-list{
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 10rem;
}

.possibility-item {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}

.possibility-item p {
  color: var(--black);
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}

.possibility-item p span{
  display: inline-block;
  color: var(--azure-green);
  font-weight: var(--fw-bold);
  font-size: 2.8rem;
  margin-top: 10px;
}

.possibility-point-list li{
  font-size: 2.2rem;
  line-height: 1.5;
  font-weight: var(--fw-medium);
  padding: 40px 0 40px 60px;
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: 1px solid var(--white);
}

.possibility-point-list li::before {
  content: "◎";
  position: absolute;
  left: 0;
  font-size: 4rem;
}

.possibility-point-list li:last-child {
  border-bottom: none;
}

@media (min-width: 992px) {
.possibility-point-list li{
  font-size: 2.4rem;
  padding: 40px 0 40px 70px;
}

.possibility-point-list li::before {
  font-size: 5rem;
}
}

/* specification */


.c-specTable p.note{
  color: #000000;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
  text-align: right;
  margin-top: 5px;
}

.product-img {
  width: 1020px;
  display: flex;
  justify-content: flex-end;
}

.product-img .product-img-item {
  width: 360px;
}

.product-img .product-img-item figcaption {
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  font-weight: var(--fw-bold);
  color: var(--azure-green);
  text-align: center;
}

.movie-content {
  width: 100%;
  margin: 0 auto 100px;
}

.movie-wrap {
  position: relative;
  width:100%; 
  height:0; 
  padding-top: 75%; 
}

.movie-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@media (min-width: 768px) {
  .movie-content {
    width: 640px;
  }
}

.c-specTable .lead-text {
  color: var(--azure-green);
  margin-bottom: 30px;
}

.c-specTable .lead-text span {
  font-size: 2.4rem;
}

.warning-area {
  background: var(--white);
  padding: 15px 20px;
  margin: 0 auto 80px;
  max-width: 510px;
}

.warning-area p {
  color: var(--azure-green);
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.warning-area img {
  width: 32px;
  height: auto;
  margin-right: 20px;
}

.precautions-img {
  max-width: 700px;
  margin: 0 auto;
}

footer.lp-footer {
  margin-top: 0;
}

/*////////////////////////////////////////////////////////////////////// */
/*  --- si-pronto-grande ---   */

/* about */
.p-siPronto .p-siPronto__about .p-siPronto__about__list{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  flex-wrap: wrap;
}
.p-siPronto .p-siPronto__about .p-siPronto__about__item{
  max-width: 250px;
  width: 100%;
}

/* feature */
.p-siPronto .p-siPronto__feature .c-rowList__item .row{
  flex-direction: column-reverse;
}
.p-siPronto .p-siPronto__feature .c-rowList__item:nth-of-type(even) .row{
  flex-direction: column;
}
@media (min-width: 992px){
  .p-siPronto .p-siPronto__feature .c-rowList__item .row{
  flex-direction: row;
  }
  .p-siPronto .p-siPronto__feature .c-rowList__item:nth-of-type(even) .row{
    flex-direction: row;
  }
}

/* spec */
.p-siPronto .p-siPronto__spec .p-siPronto__spec__note{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-siPronto .p-siPronto__spec .p-siPronto__spec__note h3{
  font-size: 16px;
  font-weight: bold;
  color: var(--azure-green);
  letter-spacing: 0.05em;
}
.p-siPronto .p-siPronto__spec .p-siPronto__spec__note p{
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.05em;
}

/* mv */
.p-siPronto .p-siPronto__mvCatch{

}
.p-siPronto .p-siPronto__mvInner{
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4rem 9rem;
  margin: 0 auto;
}
@media (min-width: 768px){
  .p-siPronto .p-siPronto__mvInner{
    flex-direction: row;
    gap: 4rem 6rem;
  }
}
@media (min-width: 992px){
  .p-siPronto .p-siPronto__mvInner{
    gap: 4rem 9rem;
  }
}