@charset "utf-8";

/* <uniquifier>: Use a unique and descriptive class name
<weight>: Use a value from 100 to 900

.noto-sans-jp-<uniquifier> {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
} */

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

html {
  font-size: 62.5%;
}

body {
  background-color: #EFEBE1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  letter-spacing: 0.1rem;
}

a {
  color: #000;
  text-decoration: none;
}

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

.inner {
  width:100%;;
  margin: 0 auto;
  padding-left: 5vw;
  padding-right: 5vw;
}
.green_line {
  background:linear-gradient(transparent 60%, #adff2f 0%);
}
.clear{
  clear: both;
}


/************** ヘッダー ************* */
header {
  background-color: #fff;
  padding: 20px 10px 10px 5%;
  height: 90px;
  /* position: relative; */
/* position:fixed;
top:0; */
width: 100%;
z-index:9;
}

.top_inner {
  display: flex;
  justify-content: space-between;
  width: 100%;
  /* padding-right: 420px; */
}

header h1 {
    display: none;
  /* font-size: 1.2rem;
  font-weight: 400;
  margin: 0 0 20px 0; */
}

div#logo {
  width: 240px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

div#logo p {
  margin: 3px 0 0 -30px;
  font-size: 1.6rem;
  letter-spacing: 0.7rem;
  font-weight: 600;
}

/* グローバルナビゲーション */

nav{
  width:100%;
  position:absolute;
  top:90px;
  left:0;
  z-index:101;
  opacity: 0.9;
  background-color: #000;
}
ul.gnav {
    display: none;
    list-style-type: none;
    width:100%;
    padding-top:30px;
    padding-bottom:30px;
  /* 
  display: flex;
  justify-content: space-between; */
  /* position: relative; */
}

.gnav li {
  /* border:1px solid; */
  /* width:25%; */
  width:100%;
  padding: 20px 30px 20px 30px;
  text-align: center;
  box-sizing: border-box;
  font-size: 1.8rem;
  font-weight: 600;
}
.gnav a{
  color:#fff;
  display: block;
}

.border {
  padding-bottom: 10px;
  position: relative;
  /*::afterにabsoluteをかけるので設定*/
}

.border::after {
  content: '';
  /* コンテンツを追加 */
  width: 100%;
  /* 線の幅 */
  height: 2px;
  /* 線の高さ */
  background-color: #06AD03;
  /* 線の色 */
  position: absolute;
  /* position: relative;からの線の絶対位置 */
  bottom: 0;
  /* 線の位置 */
  left: 0;
  /* 線の位置 */
  transform: scale(0, 1);
  /* 線のx軸の長さを0 */
  transition: .3s;
  /* 要素の変形する時間*/
  transform-origin: left top;
  /* 要素の座標の原点を設定*/
}

.border:hover::after {
  transform: scale(1, 1);
  /* 線のx軸の長さを1 */
}

.gnav_item a {
  display: block;
}

.gnav_wrap {
  /* background-color: #1B813E;
  position: absolute;
  top: 80%;
  left: 0;
  right: 0; */
  margin: auto;
  /* z-index: 9; */
  width: 90vw;
  display: flex;
  flex-wrap: wrap;
  /* border-radius: 24px;
  box-shadow: 8px 8px 8px 0px rgba(56, 56, 56, 0.4); */

}

.gnav_servicemenu {
  opacity: 1;
  visibility: visible;
  transition: opacity .2s ease-out, visibility 0s ease-out .2s;
}

.triangle {
  display: none;
  width: 30px;
  height: 40px;
}

.arrow {
  transition: all 0.5s ease 0s;
}

.s_menu {
  width: 27vw;
  font-size: 1.4rem;
  color: #fff;
  margin: 1.1vw 1.1vw 1.1vw 1.1vw;
  padding: 1.1vw 1.1vw 1.1vw 1.1vw;
  overflow: hidden;
}

.s_menu picture {
  width: 11.95312vw;
  height: 100%;
  overflow: hidden;
}

/* .s_menu picture img{
    max-width:100%;
    height: auto;
  } */
.s_menu p {
  margin: 10px;
}

.s_menu img {
  /* width:100%;
    height:100%; */
  object-fit: cover;
  transition: all 0.5s;
  transform: scale(1.0);
}

.s_menu:hover img {
  transform: scale(1.1);
  transition: all 0.5s;
}


/* .gnav .gnav_item a:hover+.gnav_servicemenu,
.gnav_servicemenu:hover {
  opacity: 1;
  visibility: visible;
  transition: opacity .6s ease-out, visibility 0s ease-out;
} */

@keyframes fade-in {
    from {
        transform: scaleY(0);
      transform-origin: top left;
    }
    to {
        transform: scaleY(100%);
      transform-origin: top left;
    }
  }
  

  .is-openMenu .gnav{
    display: block;
    animation-name: fade-in;
    animation-duration: .3s;
  }
  

 /********* ハンバーガーボタン開閉 ********/
 #header-btn{
    position: absolute;
    top:25px;
    right:30px;
    z-index: 50;
  }
  .header-btn {
    width: 40px;
    height: 30px;
    padding: 0;
    background: none;
    border: 0;
  }
  
  .header-btn span {
    position: relative;
    display: block;
    height: 2px;
    background: #000000;
    transition: .3s;
  }
  
  .header-btn span::before, .header-btn span::after {
    position: absolute;
    left: 0;
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000000;
    transition: .3s;
  }
  
  .header-btn span::before {
    top: -15px;
  }
  
  .header-btn span::after {
    bottom: -15px;
  }
/* スマホナビメニューOPEN時
--------------------*/
.is-openMenu .header-btn span {
    background: transparent;
  }
  
  .is-openMenu .header-btn span::before {
    top: 0;
    transform: rotate(45deg);
  }
  
  .is-openMenu .header-btn span::after {
    top: 0;
    transform: rotate(-45deg);
  }

  

/**************  電話、お問い合わせフォーム ************* */
.contact_area {
  width:100%;
  background-color: #2c0202;
  color: #fff;
  font-size: 1.6rem;
  /* position: absolute; */
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 100;
  display: flex;
  /* overflow: hidden; */
}

.button {
  width:50%;
  display: block;
  color: #fff;
  padding: 3% 5% 3% 12%;
  border-left: 2px dashed #fff;
}

.button:hover {
  color:#2c0202;
  background-color: #FFB11B;
}

.button:nth-child(1) {
  background-image: url(../images/mdi_telephone-in-talk.svg);
  background-repeat: no-repeat;
  /* background-position: 6vw center; */
  background-position: 4% center;
  background-size:15% auto;
  border-left: none;
}

.button:nth-child(2) {
  background-image: url(../images/form_icon.svg);
  background-repeat: no-repeat;
  /* background-position: 5.5vw center; */
  background-position: 7% center;
  background-size:10% auto;
  border-bottom: none;
}

.tel_text {
  font-size: 2vw;
  margin-bottom:6px;
  letter-spacing: 0rem;
}

.number {
  font-size: 4.5vw;
  font-weight: 800;
  letter-spacing: 0rem;
}

.mail_text {
  font-size: 3.1vw;
  font-weight: 600;
  letter-spacing: 0rem;
}

.tel::before {
  content: url(../images/mdi_telephone-in-talk.svg);
  display: block;
}

.mail p::before {
  content: url(../images/form_icon.svg);
  vertical-align: middle;
}
/* header+main{
  margin-top: 130px;
} */

/**************  キービジュアル ************* */
#keyvisual {
  width: 100%;
  /* height:100vh; */
  position: relative;
  z-index: -1;
  /* margin-top: 130px; */
  display: flex;
  flex-direction: column;
}

#keyvisual img {
  width: 100%;
}
.slideshow{
  width:100%;
  object-fit: cover;
  order: 1;
  position: relative;
}
.catchphrase {
  width: 100%;
  /* max-width:1920px; */
  margin: 0 auto;
  order: 2;
  background-color: #0E672C;
  /* display: flex;
  justify-content: space-between; */
  /* position: absolute;
  top: 10%;
  left: 0;
  z-index: 1; */
}

.copy_text {
  color: #fff;
  width: 100%;
  padding: 5%;
  text-align: center;
}

.copy1 {
  margin-bottom: 20px;
  font-size:5.7vw;
  /* font-size: clamp(5rem, 2.429rem + 3.81vw, 7rem); */
  /* font-family: "Noto Serif JP", serif; */
  font-weight: 800;
  text-shadow: 0 0 8px #2c0202;
}

.copy2 {
  font-size:clamp(1rem, 0.316rem + 2.91vw, 2.5rem);
  width: 100%;
  font-weight: 600;
  letter-spacing: 0.2rem;
  line-height: 3rem;
  text-shadow: 0 0 8px #2c0202;
}

.copy_box {
  /* width: 80%; */
  padding:6%;
  margin: 0 auto;
}

.point {
  font-size: clamp(2rem, 1.316rem + 2.91vw, 3.5rem);
  font-weight: 800;
  /* min-width: 445px; */
  /* min-height: 40px;
  line-height: 40px; */
  text-align: center;
  padding: 3vw 2vw 3vw 2vw;
  padding-left: 9vw;
  /* padding-left: 80px; */
  background-color: rgba(255, 255, 255, 0.8);
  background-image: url(../images/icon_check.png);
  background-repeat: no-repeat;
  background-position: 2vw center;
  background-size: 9% auto;
  letter-spacing: 0.3rem;
  border-radius: 12px;
  margin-top:4vw;
  /* margin-left: 10%; */
  margin-bottom: 4vw;
  box-shadow: 8px 8px 0px -3px #ff6905;
}

.strong {
  font-size: clamp(2.5rem, 1.587rem + 3.88vw, 4.5rem);
  color: #06AD03;
}

.logo_area {
  /* position: relative; */
  z-index: 0;
}

.wave {
    display: none;
  /* position: absolute;
  top: 60%;
  z-index: 0;
  width: 100%; */
}

.wave img {
  width: 100%;
}

.bg_base1 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  /* padding: 0 10%;
  padding-bottom: 40px; */
  /* position: absolute;
  top:20%;
  left: 0;
  z-index: 11; */
}

.news {
  background-color: #fff;
  width: 90%;
  min-height: 40px;
  line-height: 40px;
  border-radius: 18px;
  padding-left: 20px;
  position: relative;
  z-index: 99;
  order: 2;
  margin:20px;
  margin-bottom:8vw;
}

/**************  モーダル表示 ************* */
/*全て共通：hideエリアをはじめは非表示*/

.hide-area {
  display: none;
}

.hide-area p {
  padding-top: 10px;
}

.modaal-container .modaal_txt {
  margin-top: 15px;
}

/*全て共通：モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}

/**************  ロゴ、対応エリア ************* */
.logo {
width: 45%;
order:1;
margin-bottom:3%;
position: absolute;
top: 0;
left: 0;
transform: translate(62.5%, 70%);
}

.area {
  width: 50%;
  /* position:absolute;
  bottom:-10%;
  right:0; */
  position: relative;
  order:3;
}

.area_illust {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  order:3;
}

.circle-in {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #fff;
}

.area img {
  width: 70%;
}

.area_txt {
  font-size: 2.2vw;
  font-weight: 800;
  margin-bottom: 10px;
  color: #2c0202;
}

/**************  リード文 ************* */
.lead {
  margin: 10px auto;
  padding: 10px 5% 10px 5%;
  line-height: 2.5rem;
}

.lead h2 {
  font-family: "Noto Serif JP", serif;
  /* font-size:3.5vw; */
  font-size: clamp(2rem, -0.571rem + 3.81vw, 4rem);
  font-weight: bold;
  margin: 5vw 10px 5vw 10px;
  text-align: center;
  color:#2c0202
}

.lead p {
  margin-bottom: 20px;
}

/**************  見積ボタン **************/
.mitsumori_area {
  margin-top: 4vw;
}

.lead .mitsumori_sub {
  font-size: clamp(1.2rem, 0.926rem + 1.17vw, 1.8rem);
  font-weight: 600;
  text-align: center;
  color: #DC0000;
  margin-bottom: 5px;
  letter-spacing: 0rem;
}

.btn_mitsumori {
  width: 70%;
  font-size: 3.5vw;
  /* font-size: clamp(2rem, 0.714rem + 1.9vw, 3rem); */
  font-weight: 600;
  margin: 0px auto 30px;
  padding: 3vw;
  background-color: #2c0202;
  color: #fff;
  text-align: center;
  border-radius: 18px;
  /* background-image: url(../images/form_icon.svg);
    background-repeat: no-repeat;
    background-position: 40px center; */
}

.btn_mitsumori:hover {
  background-color: #FFB11B;
  border-radius: 18px;
  box-shadow: 0px 0px 12px 0px rgba(255, 182, 0, 0.71);
}

/**************  サービス内容 ************* */
.ttl_en {
  font-size: 2.6rem;
  text-align: center;
  margin: 25px 0 5px 0;
}

.ttl_en::after {
  content: "";
  display: block;
  width: 70px;
  height: 3px;
  margin: 0 auto;
  background-color: #10A100;
  margin-top: 10px;
}

.ttl_ja {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 50px;
}

.menu_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  /* max-width:1130px; */
  margin: 0 auto;

}

.btn_menu {
  margin: 10px 0px 10px 0px;
  padding: 5px 10px;
  width: 100%;
  border: 1px solid #999999;
  overflow: hidden;
  position: relative;
  margin-bottom: auto;
}

.pic {
  width: 100%;
  /* height: 250px; */
  overflow: hidden;
  margin-right: 20px;
}

.pic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.5s;
  transform: scale(1.0);
}

.btn_menu:hover img {
  transform: scale(1.2);
  transition: all 0.5s;
}

.btn_menu .ttl {
  margin-top: 20px;
  margin-bottom: 20px;
  font-size: 2rem;
  font-weight: 600;
  text-align: center;
}

.btn_menu .desc {
  font-size: 1.4rem;
  line-height: 2rem;
  letter-spacing: 0;
  margin-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
}

/**************  Instagram ************* */


/**************  よくある質問 ************* */
.qa_set {
  width: 100%;
  margin: 10px auto;
  /* padding:2% 2% 2% 2%; */
  border: 1px solid #10A100;
}

/*アコーディオンタイトル*/
.que {
  position: relative;
  /*+マークの位置基準とするためrelative指定*/
  cursor: pointer;
  padding: 5% 3% 5% 13%;
  transition: all .5s ease;
  line-height: 1.4;
}

.ans {
  display: none;
  /*はじめは非表示*/
  padding: 5% 3% 5% 13%;
  border-top: 1px dashed #10A100;
}

.que span {
  color: #41B718;
  padding-right: 10px;
  font-weight: 800;
}

.ans span {
  color: #DC0000;
  padding-right: 10px;
  font-weight: 800;
}

/*アイコンの＋と-*/
.que::before,
.que::after {
  position: absolute;
  left: 20px;
  content: '';
  width: 15px;
  height: 2px;
  background-color: #10A100;

}

.que::before {
  top: 48%;
  left: 15px;
  transform: rotate(0deg);

}

.que::after {
  top: 48%;
  left: 15px;
  transform: rotate(90deg);
}

/*　closeというクラスがついたら形状変化　*/
.que.close::after {
  display: none;
}
#faq{
  margin-bottom: 100px;
  margin-top: -130px;
  padding-top: 130px;
}

/**************  フッター ************* */
footer {
  background-color: #0E672C;
  color: #fff;
  text-align: center;
  padding: 20px;
  margin-top: 30px;
  padding-bottom:15vw;
}

footer p {
  margin: 20px;
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #FFB11B;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: rgba(255, 174, 0, 0.6);
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 50px;
  z-index: 999;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(150px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.6s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.6s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 1;
    transform: translateY(150px);
  }
}

span.arrow {
  width: 20px;
  height: 20px;
  border-top: 4px solid #fff;
  border-right: 4px solid #fff;
  transform: rotate(-45deg);
  margin-top: 5px;
}

/* 下層ページ */
section h1{
  margin:0;
}

#pagetop_image {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  width: 100%;
  height: 25vw;
  font-size: clamp(2rem, 1.087rem + 3.88vw, 4rem);
  /* font-family: "Noto Serif JP", serif; */
  font-weight: 800;
  color: #fff;
  line-height: 25vw;
  /* padding-left: 15%; */
  text-align: center;
  text-shadow: 0 0 8px #0a0935;
}

#sentei #pagetop_image {
  background-image: url(../images/img_sentei_2.jpg);
  background-position: center 27%;
}

#bassai #pagetop_image {
  background-image: url(../images/img_bassai_2.jpg);
  background-position: center 40%;
}

#syoudoku #pagetop_image {
  background-image: url(../images/img_syoudoku.jpg);
  background-position: center 60%;
}

#jyosou #pagetop_image {
  background-image: url(../images/img_sibakari_2.jpg);
  background-position: bottom center;
}

#uekomi #pagetop_image {
  background-image: url(../images/img_uekomi_3.jpg);
  background-position: center 60%;
}

#kanri #pagetop_image {
  background-image: url(../images/img_kanri.jpg);
  background-position: center 70%;
}

#exteria #pagetop_image {
  background-image: url(../images/img_exteria.jpg);
  background-position: center 70%;
}

h2.service {
  background-color: transparent;
  width: 100%;
  margin: 30px auto 30px auto;
  color: #000;
  font-weight: 600;
  font-size: 2.4rem;
  text-align: center;
}

h2.service::after {
  content: "";
  display: block;
  width: 120px;
  height: 3px;
  margin: 0 auto;
  background-color: #10A100;
  margin-top: 10px;
}


#lead,#timing,#price,#sekoujirei{
  line-height: 1.4;
  margin-top: 5vw;
  text-indent: 1.5rem;
}
/* #lead{
  margin: 3vw 3vw 3vw 3vw;
} */

#lead p{
  margin-bottom: 3.2vw;

}

section h3 {
  margin-top: 30px;
  margin-bottom: 10px;
}
#jyosou #timing .mulching{
  display: block;
  width:75%;
  margin:20px auto;
}
#exteria #timing .exteria{
  display: block;
  width:75%;
  margin:20px auto;
}

#price_list #pagetop_image,
#mail #pagetop_image,
#jirei #pagetop_image {
  background: linear-gradient(190deg, #1a803c 0%, #0E672C 50%, #1a803c 50%, #0E672C 100%);
}

#price_list #lead h1,
#mail #lead h1 {
  position: static;
  font-size: 2.5rem;
  color: #fff;
  margin-top: 20px;
  text-align: center;
}

#about #pagetop_image {
  padding-top: 50px;
  text-align: center;
  height: 300px;
}

#about #pagetop_image img {
  width: 300px;
}

#about #lead h1 {
  position: static;
  font-size: 2.5rem;
  margin-bottom: 40px;
  color: #000;
}

#jyosou #timing .mulching {
  display: block;
  width: 40%;
  margin-right: 15px;
  float: left;
}

#jyosou #timing h3 {
  clear: both;
}

#exteria #timing .exteria {
  display: block;
  width: 45%;
  margin-right: 15px;
  float: left;
}

#exteria #timing h3 {
  padding-top: 10px;
  clear: both;
}

#exteria section#timing {
  margin-bottom: 20px;
}

#exteria section#timing p{
  margin-bottom:20px;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.layout {
  display: flex;
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: center;
}
section#price img {
  width: 80%;
}
section#price .illust_uekomi img {
  width: 80%;
}

/* ------------------------------------------------------ */
/*                         料金表　　     　　　　　　　    */
/* ------------------------------------------------------ */
table.pricelist {
  width: 100%;
  margin: 20px auto 40px auto;
  border: 1px solid #000;
  border-collapse:collapse;
}

table.pricelist td {
  width:50%;
  padding: 10px;
  text-align: center;
  border: 1px solid #000;
  border-collapse:collapse;
}

caption {
  text-align: left;
}

#kanri table.pricelist tr.price td {
  text-align: left;
}

.pricelist .item {
  background-color: rgb(174, 207, 130);
  font-size: 1.8rem;
  line-height: 1.4;
}

table.pricelist caption {
  font-size: 2.0rem;
  font-weight: 600;
}

table.pricelist .item {
  font-size: 1.8rem;
}


section#price p {
  width: 95%;
  padding-left: 20px;
  margin: 0 auto;
  text-align: left;
  text-indent: -20px;
}

section#price p::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background-image: url(../images/icon_check@2x.png);
  background-size: contain;
  vertical-align: middle;
}


/* ------------------------------------------------------ */
/*                         施工事例      　　　　　　　    */
/* ------------------------------------------------------ */
.sekou_list {
  margin: 20px 0px 20px 0px;
  padding: 5px;
  width: 100%;
  border: 1px solid #502c02;
}

.sekou_list>p {
  margin-bottom: 30px;
  padding: 10px 10px 10px 10px;
  font-size: 1.8rem;
  border-bottom: 1px solid #502c02;
  font-weight: 600;
}

.sekou_list>p::before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  background-image: url(../images/icon_boxarrow@2x.png);
  background-size: contain;
  vertical-align: middle;
}

.jirei {
  display: flex;
  justify-content: space-between;
  margin: 20px 10px;
}

.jirei img {
  width: 100%;
}

.jirei .arrow img {
  width: 70%;
  margin: 0 auto;
  display: block;
}

#syoudoku .jirei {
  text-align: center;
}

#syoudoku .jirei img {
  width: 80%;
}
#jirei .jirei {
  text-align: center;
}

#jirei .jirei img{
  width:90%;
}


.arrow {
  display: flex;
  align-items: center;
}

.jirei .before {
  position: relative;
}

.jirei .before p {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 80px; */
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  padding: 1vw;
}
#jirei .jirei .before p{
  left: 11px;
}
.jirei .after {
  position: relative;
}
.jirei .after p {
  position: absolute;
  top: 0;
  left: 0;
  /* width: 80px; */
  background-color: #dc143c;
  color: #fff;
  text-align: center;
  font-size: 1.4rem;
  padding: 1vw;
}

#jirei .jirei .after p{
  left: 11px;
}

.layout_sekou {
  display: block;
  /* justify-content: space-between;
  flex: 1; */
}