@charset "UTF-8";
/* ==============================================================
*  base
* ============================================================ */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */

.header .logo a svg{fill: #fff;}

#app .inBox.inBox--sub{
  background: none;
  border: none;
}

@media screen and (min-width: 960px) {
  #app .inBox .detailBox {
    width: calc(100% - 270px)!important;
  }
}

/* --------------------------
        green text 
---------------------------*/

.text_color-green{
  color: #4b7d7c;
  font-weight: 700;
  margin-bottom: 20px;
  font-size: 20px;
}

.text_color-green span{
    display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 30px;
  height: 30px;
  border-radius: 50%;

  background-color: #4b7d7c;
  color: white;

  font-weight: bold;
  font-size: 18px;
  margin: 0 6px;
  transform: translateY(-1px);
}

@media screen and (max-width:960px) {
    .text_color-green{
        font-size: 12px;
    }
    .text_color-green span{
        width: 20px;
        height: 20px;
        font-size: 13px;
    }
}


/* --------------------------
      追加のinboxa--sub 
---------------------------*/
section .inBox.inBox--sub {
    max-width: 1180px;
    width: calc(100% - 80px);
    margin: 0 auto;
    padding: 40px;
}
@media screen and (max-width:960px) {
    section .inBox.inBox--sub {
        width: 86%;
    }
    section .inBox.inBox--sub h5 {
        font-size: 18px;
        margin: 0 auto 15px;
    }

}

/* --------------------------
        gray box 
---------------------------*/
.gray-box{
  background-color: #e6e6e6;
  padding: 40px;
  border-radius: 10px;
}

.gray-box h5 {
  display: flex;
  align-items: center; /* 縦位置を中央揃え */
  gap: 15px; /* アイコンと文字の間 */
  justify-content: center;
}

.gray-box h5 img {
  width: 30px; /* 好きなサイズに調整 */
  height: auto;
  margin-left: -20px;
}

.box-list{
  display: flex; 
  justify-content: space-evenly; 
  gap: 40px;
}
@media screen and (max-width:960px) {
  .box-list{
    display: flex;
    flex-direction: column;
  }
}

#app .inBox.inBox--sub:nth-child(odd) .gray-box {
    width: 100%;
}
#app .inBox.inBox--sub .gray-box .txtBox {
    margin-bottom: 20px;
    padding: 0 0 20px;
    border-bottom: 1px dashed;
}
#app .inBox.inBox--sub .gray-box .txtBox:last-of-type {
    margin-bottom: 0;
    padding: 0;
    border: none;
}
#app .inBox.inBox--sub .gray-box .txtBox p {
    margin-bottom: 5px;
}
#app .inBox.inBox--sub .gray-box .txtBox p:last-child {
    margin-bottom: 0;
}
#app .inBox.inBox--sub .gray-box .txtBox p.note {
    font-size: 13px;
}

.text-align_center{
    text-align: center!important;
}