@charset "UTF-8";

/* font 置き換え */
body{
  font-family: "Noto Sans JP","Helvetica Neue", sans-serif;
}

/* パンくず高さ */
#ptitle {
  height: 40px;
}

/* h1 h2 */
.p-content__heading--01 {
  text-align: center;
  font-size: clamp(1rem, 0.006rem + 4.97vw, 1.5rem);
  font-weight: bold;
  line-height: 1.4;
  color: #222222;
  /* opacity: 0.5; */
  margin-bottom: 60px;
}

/* 元の h4 スタイルを打ち消す */
#article h4.p-text04{
    background: none;
    color: inherit;
    padding: 0;
    margin: 0;
    /* font-size: inherit; */
}

/* p-text04 のスタイル */
#article h4.p-text04{
    /* font-size: 16px; */
    padding-left: 5px;
    margin-bottom: 0.25em;
}

/* ページタイトル画像 */
.page_title {
  max-width: 1000px;
  width: 100%;
  margin:0 auto;
}
.page_title img {
  width: 100%;
  height: auto;
  display: block;
}

/* section */
.p-content--01 {
  background: transparent linear-gradient(180deg, #CCCCCC12 0%, #CCCCCC1A 83%, #CCCCCC62 100%) 0% 0% no-repeat padding-box;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.p-content__inner {
  width: 100%;
  padding:70px 8% 50px;
  box-sizing: border-box;
}

/* blanking */

.p-text_01{
  font-size: 16px;
  padding-left: 5px;
  line-height: 1.6;
  margin-bottom: 1.5em;
}

.p-text02 {
  font-size: 138.5%;
  padding-left: 5px;
  color: #00AAA2; 
  padding-bottom: 1em;
}

.p-text02::before {
  content: "■";
  margin-right: 0.25em;
}

.p-text03 {
  font-size: 16px;
  padding-bottom: 0.25em;
}

.p-text04 {
  font-size: 16px;
  padding-bottom: 0.25em;
}

#article h3 {
  margin-bottom: 0px;
}

/* p-content__box--01 */

.p-content__box--01 .p-content__left,
.p-content__box--01 .p-content__right {
display: flex;
flex-direction: column;
}

.Manual-img,
.Auto-img {
margin-top: auto;
display: flex;
justify-content: center;
align-items: flex-end;
}

.Manual-img img {
max-width: 65%;
height: auto;
}
.Auto-img img {
max-width: 80%;
height: auto;
}

.center-img {
width: 100%;
text-align: center;
margin: 15px 0px 35px;
}

.center-img img {
width: 65%;
}

/* p-content__inner */

.features {
  display: grid;
  grid-template-columns: max-content 1fr;
  /* 2列 */
  margin: 0px 0 30px;
}

.feature {
  display: flex;
  flex-direction: column;
}

.right .feature {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.right .feature img {
  width: 90%;
  height: auto;
}

.pc-br {
  display: block;
}

.image-container {
    display: flex;
    justify-content: space-around;
    align-items: flex-start; /* 画像と説明を上部に揃える */
    margin-top: 10px;
    flex-wrap: nowrap; /* デフォルトでは折り返さない */
    }
.image-container figure {
    text-align: center;
    flex: 1 1 auto; /* 各アイテムの幅を自動調整 */
    margin: 10px; /* アイテム間のスペースを追加 */
  }
.image-container figcaption {
    margin-top: 1em; /* 説明文と画像の間にスペースを追加 */
  }

/* box--01 */
.p-content__box--01 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 30px;
}

/* p-content__btn */
         
.p-content__btn {
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.p-content__btn02 {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 120px;
}
.p-content__btn a,
.p-content__btn02 a {
  display: flex;
  justify-content: center;
  width: 350px;
  align-items: center;
  height: 38px;
  margin: auto;
  /* padding: 1rem 4rem; */
  font-weight: bold;
  background: #00AAA2;
  color: #ffffff;
  transition: 0.5s;
  border-radius: 5px;
  text-decoration: none;
  font-size: 16px;
}

.p-content__btn a:hover,
.p-content__btn02 a:hover {
  opacity: 0.7;
}

.contact-box{
    width: 60%;
    margin: 60px auto 0;
}

.contact-box p{
    text-align: left;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

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

 /* 16-20 */
  #article .p-text02,
  #article .p-text03,
  #article .p-text04 {
  font-size: clamp(1rem, 0.5rem + 2.5vw, 1.25rem);
  }

  .p-content__btn,
  .p-content__btn02 {
    text-align: center;
  }

  .p-content__btn a,
  .p-content__btn02 a {
    width: 60%;
    margin: auto;
    padding: 5px 0px;
    font-size: 14px;
    line-height: 1.3;
  }

  .contact-box{
    width: 80%;
    margin: 30px auto;
  }

  .p-content__btn02 {
    padding-top: 10px;
  }

  .pc-br {
    display: none;
  }
  .features {
    grid-template-columns: 1fr;
    /* スマホでは縦並び */
  }

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

  .left {
    order: 2;
    /* 左側を下に */
  }

  .right {
    order: 1;
  }

  .right .feature img {
    width: 70%;
  }

  .center-img img {
  width: 100%;
  }

  .image-container {
    flex-wrap: wrap; /* レスポンシブ時に折り返す */
    justify-content: space-between; /* アイテムを均等に配置 */
  }
  .image-container figure {
    flex: 1 1 44%; /* 2x2の表示にする */
    margin: 10px; /* アイテム間のスペースを追加 */
  }

  .p-content__heading--01 {
     margin-bottom: 30px;
  }

  .p-content__inner {
    padding: 30px 4%;
  }

  /* ページタイトル画像 */
  .page_title {
    width: 95%;
  }

  /* box--01 */
  .p-content__box--01 {
    display: block;
    margin-top: 0px;
  }

  .Manual-img img{
    width: 70%;
    height: auto;
  }

  .Auto-img img {
    width: 90%;
    height: auto;
  }
}







