@charset "utf-8";

/*-----------------------------------------------------
大見出し
-------------------------------------------------------*/

/* 中見出し
------------------------------------------------*/

/* 小見出し/コメント */
p{
  margin-bottom: 0;
}
/* スマホ */
@media only screen and (max-width: 991px) {
  p{
   font-size: 14px;
  }
}

/* スマホ */
@media only screen and (max-width: 767px) {
  p{
   font-size: 12px;
  }
}


/* 1400px以下 */
@media only screen and (max-width: 1399px) {
}

/* 1200px以下 */
@media only screen and (max-width: 1199px) {
}

/* タブレット以下 */
@media only screen and (max-width: 991px) {
}

/* スマホ */
@media only screen and (max-width: 767px) {
}
figure{
  margin-bottom: 0;
}

/*-----------------------------------------------------
header
-------------------------------------------------------*/
/* タブレット以下 */
@media only screen and (max-width: 991px) {
  .col-virue{
    flex-direction: column;
    }
}

.h_slogan{
    margin-bottom: 0;
    margin-top: 0.3rem;
    margin-left: 1rem;
    }
@media only screen and (max-width: 1399px) {
  .h_slogan{
    font-size: 13px;
    margin-left: 0.5rem;
    }
}

/* 1400px以下 */
@media only screen and (max-width: 1399px) {
  .h_p{
    font-size: 12px;
  }
}

.h_tl{
  font-size: 26px;
}
@media only screen and (max-width: 1399px) {
  .h_tl{
    font-size: 19px;
    }
}

/*-----------------------------------------------------
fv
-------------------------------------------------------*/
.fv_pc{
  overflow: hidden;
}
.fv_img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block; /* 确保图片是块级元素，避免多余的空白 */
  margin: 0 auto; /* 居中对齐 */
}

/* 屏幕宽度小于 991px 时 */
@media (max-width: 991px) {
  .fv_img {
    width: 170%; /* 放大图片为原来的120% */
    max-width: none; /* 取消最大宽度限制 */
    position: relative;
    left: 50%; /* 向右移动50% */
    transform: translateX(-50%); /* 向左平移50%确保居中 */
  }
}
.fvimg_sp{
  margin-bottom: 1rem;
}

/*-----------------------------------------------------
cta
-------------------------------------------------------*/
.cta{
  background-color: #01864b;
}
.cta_text{
  padding: 10px;
}
.cta_img{
  padding: 0;
}
.cta-black{
  font-size: 16px;
  color: #fff;
  background-color: black;
  display: inline-block;
  padding: 0.5rem 1rem;
  border-radius: 100vh;
  position: relative;
  text-align: center;
  }
.cta-black:after{
  position: absolute;
  content: '';
  top: 100%;
  left: 50%;
  border: 12px solid transparent;
  border-top: 12px solid black;
  }
/* スマホ */
@media only screen and (max-width:991px) {
  .cta-black{
  font-size: 12px;
  }
}
/* スマホ */
@media only screen and (max-width: 767px) {
  .cta-black{
  font-size: 12px;
  }
}

/* スマホ */
@media only screen and (max-width: 575px) {
  .cta-black{
  font-size: 8px;
  }
}

.cta-white{
  color: #fff;
  font-size: 30px;
  }

/* スマホ */
@media only screen and (max-width: 1220px) {
  .cta-white{
  font-size: 24px;
  }
}
/* スマホ */
@media only screen and (max-width: 991px) {
  .cta-white{
  font-size: 17px;
  }
}
/* スマホ */
@media only screen and (max-width: 767px) {
  .cta-white{
  font-size: 20px;
  }
}
/* スマホ */
@media only screen and (max-width: 575px) {
  .cta-white{
  font-size: 14px;
  }
}

/*-----------------------------------------------------
施工可能な地域一覧
-------------------------------------------------------*/
.area{
  background-color: #fffae1;
  }
.ttl{
  background: linear-gradient(transparent 70%, #fff601 70%);
  font-weight: bold;
}

.a_ttl{
  background-color: #fff601;
  padding: 0 3rem;
  border-radius: 10vh;
}
.area_bg{
  width: 100%;
}
/*-----------------------------------------------------
こんな方にオススメ！
-------------------------------------------------------*/
.osusume_list{
  list-style-type: none;
  border: 2px solid #01864b;
  padding: 1rem 1rem;
  border-radius: 10px;
}
.osusume_list li{
  margin-top: 0.8rem;
  font-weight: bold;
  font-size: 16px;
  position: relative;
  padding-left: 24px;
}
.osusume_i{
  position: absolute;
  left: 0;
}
/* スマホ */
@media only screen and (max-width: 991px) {
  .osusume_list li{
  margin-top: 0.3rem;
  font-size: 12px;
}
}

/*-----------------------------------------------------
プリントSTUDIOの3つの強み
-------------------------------------------------------*/
.features{
  background-image: url(../images/features_bg.png);
  background-size: cover;
  position: relative;
  color: white; /* 设置文字为白色，以确保在深色背景上可见 */
 } 
.container_features{
  background-color: #01864b;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;   
  padding: 20px;
  border-radius: 20px 10px;
 }

/* スマホ */
@media only screen and (max-width: 767px) {
  .container_features{
  padding: 10px;
}
}

 /*.container_features::before{
  content: url(../images/features_t.png);
  position: absolute;
  top: ;
  left: ;
}
 .container_features::afte {
  content: '';
  position: absolute;
}*/

.features-item{
    background-color: #fff;
    color: black;
    border-radius: 8px;
    overflow: hidden;
    padding: 20px;
    width: 95%;
    margin: 20px auto;
 }
 /* スマホ */
@media only screen and (max-width: 767px) {
  .features-item{
  padding: 10px;
}
}
.f_ttl{
  color: #fff601;
  font-weight: bold;
}
/* スマホ */
@media only screen and (max-width: 767px) {
  .f_ttl{
  font-size: 20px;
}
}
.f_sttl{
  color: #01864b;
  font-size: 24px;
  font-weight: bold;
  background: linear-gradient(transparent 70%, #fff601 70%);
}
/* スマホ */
@media only screen and (max-width: 991px) {
  .f_sttl{
    font-size: 18px;
    line-height: 1;
}
}
/* スマホ */
@media only screen and (max-width: 767px) {
  .f_sttl{
    font-size: 16px;
    line-height: 1;
}
}
/* スマホ */
@media only screen and (max-width: 991px) {
  .f_s{
  font-size: 10px;
}
}
/* スマホ */
@media only screen and (max-width: 767px) {
  .f_s{
  font-size: 8px;
}
}
/* 991 */
@media only screen and (max-width: 991px) {
  .f_i{
    margin-bottom: 0;
    margin-top: 10px;
    width: 20%;
}
}
.decorate01 {
  width: 50%;
  margin: auto;
  }
/* 991 */
@media only screen and (max-width: 991px) {
  .decorate01 {
    width: 75%;
    margin: auto;
  }
}
.decorate02 {
  position: absolute;
    left: 28rem;
    bottom: 0;
    z-index: 999;
  }
 .decorate03 {
  position: absolute;
    right: 28rem;
    bottom: 0;
    z-index: 999;
  }
  /* 1920 */
@media only screen and (min-width: 1920px) {
  .decorate02 {
    left: 40rem;
  }
  .decorate03 {
    right: 40rem;
  }
}
/* 1440 */
@media only screen and (max-width: 1440px) {
  .decorate02 {
    left: 15rem;
  }
}
/* 1220 */
@media only screen and (max-width: 1220px) {
  .decorate02 {
    left: 10rem;
  }
}
/* 991 */
@media only screen and (max-width: 991px) {
  .decorate02 {
    left: 5rem;
  }
}
@media only screen and (max-width: 991px) {
  .decorate02 {
    left: 3rem;
    width: 25%;
  }
}
@media only screen and (max-width: 1440px) {
  .decorate03 {
    right: 15rem;
  }
}
@media only screen and (max-width: 1220px) {
  .decorate03 {
    right: 10rem;
  }
}
@media only screen and (max-width: 991px) {
  .decorate03 {
    right: 5rem;
    width: 22%;
  }
}
@media only screen and (max-width: 767px) {
  .decorate03 {
    right: 3rem;
    width: 25%;
  }
}
@media only screen and (max-width: 767px) {
  .decorate04 {
  width: 10%;
  margin: auto;
}
}

/*-----------------------------------------------------
施工事例
-------------------------------------------------------*/
.ep{
  background-color: #fffae1;
}

/*-----------------------------------------------------
step
-------------------------------------------------------*/
.step{
  background-image: url(../images/step_bg.png);
}
.step_item{
  display: flex;
  justify-content: center;
}
.step_num{
  height: auto;
  width: 10vh;
  font-weight: bold;
  color: #fff601;
  background: #01864b;
  padding: 20px 10px;
}
/* スマホ */
@media only screen and (max-width: 1440px) {
  .step_num{
  width: 8vh;
}
}
.step_text{
  background: #fff;
  height: auto;
  width: 80vh;
  background: #fff;
  padding: 20px;
}
/* スマホ */
@media only screen and (max-width: 1440px) {
  .step_text{
  padding: 20px;
}
}
/* スマホ */
@media only screen and (max-width: 591px) {
  .step_text{
  width: 42vh;
}
}
.step_t{
  color: #01864b;
  font-weight: bold;
}
/* スマホ */
@media only screen and (max-width: 767px) {
  .step_t{
  font-size: 16px;
}
}
.s_triangle{
  position: relative;
}

.s_triangle::after{
  content: '';
  position: absolute;
  top: 100%;
  left: 40%;
  width: 3vw;
  height: 1vw;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background: #01864b;
}
@media only screen and (max-width: 1440px) {
  .s_triangle::after{
  width: 5vw;
  height: 2vw;
}
}
@media only screen and (max-width: 767px) {
  .s_triangle::after{
  width: 10vw;
  height: 4vw;
}
}


ol {
    text-align: left; 
    margin: auto;
}
/*-----------------------------------------------------
FAQ
-------------------------------------------------------*/
.faq{
  background-color: #fffae1;
}

@media only screen and (max-width: 591px) {
  .accordion{
  width: auto;
  margin: auto;
}
}
/* inputのチェックボックスを非表示 */
.accordion-hidden {
  display: none;
}

/* 見出しボタン部分 */
.accordion-open {
  display: block;
  padding: 10px 60px 10px 10px;
  color: #fff;
  background: #01864b;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
}

/* ＋アイコン */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  background-color: #fff601;
}

/* アイコンのー */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたらーに */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* アコーディオン中身部分 */
.accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px;
}
/* ↑ここまで共通 */


/* Q&A追加 */
.accordion_qa .Q,
.accordion_qa .A {
  position: relative;
}

.accordion_qa .Q::before,
.accordion_qa .A::before {
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: -.4em;
  left: -1.3em;
}

.accordion_qa .Q::before {
  content: 'Q.';
  color: #fff601;
  font-weight: bold;
}

.accordion_qa .A::before {
  content: 'A.';
  color: #01864b;
  font-weight: bold;
}

.accordion_qa .accordion-open {
  padding-left: 4em;
}
@media only screen and (max-width: 767px) {
  .accordion_qa .accordion-open {
  padding-left: 2.5em;
}
}
.accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px 10px 10px 4em;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  .accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
   padding: 10px 10px 10px 2.5em;
}
}
/* Q&A追加ここまで */

/*-----------------------------------------------------
cta02
-------------------------------------------------------*/

.cta02{
  background-image: url(../images/cta02_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.row_cta02{
  background-image: url(../images/row_bg.png);
  background-position: center;
  background-repeat: no-repeat;
}
.cta-green{
  color: #01864b;
  font-size: 1.7rem;
  font-weight: bold;
}
@media only screen and (max-width: 1199px) {
  .cta-green{
    font-size: 1.4rem;
  }}
@media only screen and (max-width: 991px) {
  .cta-green{
    font-size: 1.2rem;
  }}
@media only screen and (max-width: 767px) {
  .col-cta02{
    padding: 10px;}
  }



.price{
  background-color: #fffae1;
}



footer{
  padding-top: 20px;
  padding-bottom: 30px;
  background: #fffae1;
}
.footer_t{
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  font-weight: bold;
  font-size: 21px;
}
.f_p{
  font-size: 16px;
}
@media only screen and (max-width: 767px) {
  .footer_t{
    flex-direction: column;
    align-items: normal;
  }
  .footer_text{
    font-size: 16px;
  }
  .footer_tell{
    padding-top: 10px;
}}
.tell_text{
  font-size: 30px;
}
@media only screen and (max-width: 991px) {
  .tell_text{
  font-size: 21px;}
  .f_p{
    font-size: 12px;
  }
}

@media only screen and (max-width: 1199px) {
  .f_text{
    font-size: 12px;
  }
}


.fix-navi{
  position: fixed;
  z-index: 9999;
  bottom: 0;
  width: 100%;
  text-align: center;
  background-color: #02950180;
  padding: 0.7em 0 0.7em;
}
.fix-navi p{
  margin-bottom: 0;
}
.navi_cta{
  width: 95%;
}
@media only screen and (max-width: 767px){
  .scroll-up{
    bottom: 125px;
}}
.scroll-up a{
  background-color: #01864b;
}
.fa-chevron-up:before{
  color: #fff;
}
/*-----------------------------------------------------
iframeリンク無効化
-------------------------------------------------------*/

.snapwidget-widget{
  pointer-events:none;
}