@charset "UTF-8";


/* layout_side-by */
.layout_side-by {
  max-width: 960px;
}
.layout_side-by li {
  display: flex;
  justify-content: space-between;
  list-style: none;
  margin-bottom: 70px;
}
.side-b-style {
  flex-direction: row-reverse;
}

.side-txt {
  width: 450px;
}
.side-txt .tit {
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: 40px;
}
.side-txt .num {
  font-size: 1.4em;/* 数字の文字サイズ変更 */
  font-weight: bold;
  margin-top: 0;
}
.side-txt .num span {
  display: inline-block;
}
.side-txt .num span:after {
  display: block;
  content: '';
  width: 100%;
  height: 3px;
  background: #118BD9;/* 数字下のラインカラー変更 */
  margin: 0;
}

.side-img {
  width: 450px;
}
.side-a-style .side-img {
  text-align: left;
}
.side-b-style .side-img {
  text-align: right;
}

@media screen and (max-width: 959px) {
  .layout_side-by li {
    display: block;
    margin-bottom: 30px;
  }
  .layout_side-by {
    width: 98%;
    margin: 0 auto;
  }
  .side-txt,
  .side-img {
    width: 100%;
  }
  .layout_side-by img {
    max-width: 100%;
  }
  .side-txt .tit {
    font-size: 16px;
    margin: 20px 0 0;
  }
  .side-txt .txt {
    margin: 20px 0 0;
  }
  .side-txt .num {
    font-size: 18px;
  }
  .side-a-style .side-img,
  .side-b-style .side-img {
    text-align: center;
    margin-top: 20px;
  }
}



/* layout_three-col */
.layout_three-col {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  list-style: none;
}
.layout_three-col > li {
  width: 300px;
}
.layout_three-col .img {
  text-align: center;
}
.layout_three-col .img img {
  width: auto;
  max-width: 100%;
  object-fit: cover;
}
.layout_three-col .tit {
  display: flex;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2em;
  text-align: center;
}
.layout_three-col .txt {
  font-size: 16px;
}
@media screen and (max-width: 959px) {
  .layout_three-col {
    width: 98%;
    flex-direction: column;
    margin: 0 auto 40px;
  }
  .layout_three-col > li {
    width: 100%;
  }
}

/* layout_slide */
.thumbnail {
  max-width: 960px;
  margin: 0 auto 5px;
  padding: 0;
}
.thumbnail img,
.thumbnail-thumb img{
  width: 100%;
 display: block;
 margin-left: auto;
 margin-right: auto;
}
}
.thumbnail-thumb {
  max-width: 960px;
  margin: 0 auto -15px;
  z-index: 8;
}
.thumbnail-thumb .slick-slide {
  margin: 5px;
  text-align: center;
  padding: 25px 15px;
  border: 1px solid #FFF;
  width: auto !important;
}
.thumbnail-thumb .slick-slide:hover,
.thumbnail-thumb .slick-current {
  box-shadow: 0 0 30px #CCC;
  border: none;
  position: relative;
  outline: none;
}
.thumbnail-thumb .slick-slide:hover::after,
.thumbnail-thumb .slick-current::after {
  position: absolute;
  z-index: 0;
  display: block;
  bottom: -14px;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  margin: auto;
  padding: 0;
  border-top: 14px solid #fff;
  border-right: 9px solid transparent;
  border-left: 9px solid transparent;
  background: transparent;
  content: "";
}
.thumbnial-thumb .slick-next {
  right: 20px;
  z-index: 100;
}
.thumbnail-thumb .slick-prev {
  left: 15px;
  z-index: 100;
}
.thumbnail-thumb div div div {
  cursor: pointer;
}
.thumbnail-thumb .slick-track {
  padding: 40px 0 50px;
  margin-bottom: -40px;
  display: flex;
  justify-content: space-between;
  width: 100% !important;
  flex-wrap: nowrap;
  overflow-x: auto;
}
@media screen and (max-width: 959px) {
  .thumbnail-thumb {
    margin-top: -50px;
  }
  .thumbnail-thumb .slick-slide {
    padding: 10px 5px;
    word-break: keep-all;
    font-size: 13px;
  }
  .thumbnail {
    margin-bottom: 40px;
  }
}

/* layout_number-list */
.layout_number-list {
  counter-reset: number 0; 
  list-style-type: none;
  position: relative;
  margin: 30px 0 100px;
}
.layout_number-list::before {
  content: " ";
  display: block;
  position: absolute;
  width: 1px;
  height: 100%;
  background: #666;/* 数字背景のカラー変更 */
  top: 0;
  left: 50px;
}
.layout_number-list li {
  position: relative;
  padding: 1px 0 0 140px;
  margin-bottom: 80px;
}
.layout_number-list li:last-of-type {
  margin-bottom: 0;
}
.layout_number-list li .tit {
  font-weight: bold;
  font-size: 1.4em;
  margin: 10px 0 10px;
}
.layout_number-list li .txt {
  margin: 0;
}
.layout_number-list li::before {
  counter-increment: number 1; 
  content: "0" counter(number) ;
  width: 100px;
  height: 100px;
  background: #999;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  text-align: center;
  line-height: 100px;
  color: #FFF;
  font-size: 2.2em;
}
.layout_number-list li.li-green::before {
  background: #5EA776;/* 数字背景のカラー変更（緑） */
}
@media screen and (max-width: 959px) {
  .layout_number-list {
    margin: 0px 0 40px;
  }
  .layout_number-list::before {
    left: 30px;
  }
  .layout_number-list li {
    padding: 1px 0 0 80px;
    margin-bottom: 40px;
  }
  .layout_number-list li .tit {
    font-size: 16px;
    margin: 0px 0 5px;
  }
  .layout_number-list li::before {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 1.4em;
  }
}


.layout_arrow-list li {
  display: flex;
  justify-content: space-between;
}

.layout_arrow-list .tit {
  width: 20%;
  position: relative;
  background-color: #ccc;
  padding: 2.5em 10px 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}
.layout_arrow-list li:first-child .tit {
  padding: 0px 10px 0;
}
.title-txt {
  text-align: center;
  margin-top: 0;
}
.layout_arrow-list .tit .icon01 svg {
  width: 100%;
  left: 0;
  position: absolute;
  top: 100%;
  z-index: 2;
  fill:#CCC;
}
.layout_arrow-list .tit .icon02 svg {
  width: 100%;
  fill:#FFF;
  left: 0;
  top:100%;
  position: absolute;
  z-index: 1;
}


/* 矢印カラー変更1 */
.layout_arrow-list li.bg_green .tit {
  background-color: #009d91;
  color: #FFF;
}
.layout_arrow-list li.bg_green .tit .icon01 svg {
  fill:#009d91;
} 
/* 矢印カラー変更2 */
.layout_arrow-list li.bg_orange .tit {
  background-color: #F90;
  color: #FFF;
}
.layout_arrow-list li.bg_orange .tit .icon01 svg {
  fill:#F90;
}
/* 矢印カラー変更3 */
.layout_arrow-list li.bg_blue .tit {
  background-color: #0a72c7;
  color: #FFF;
}
.layout_arrow-list li.bg_blue .tit .icon01 svg {
  fill:#0a72c7;
}
/* 矢印カラー変更4 */
.layout_arrow-list li.bg_red .tit {
  background-color: #e62727;
  color: #FFF;
}
.layout_arrow-list li.bg_red .tit .icon01 svg {
  fill:#e62727;
} 


.layout_arrow-list .txt {
  width: 80%;
  box-sizing: border-box;
  padding: 2.5em 2em 1em;
  font-size: 14px;/* フォントサイズ変更 */
  line-height: 1.7;
  margin: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.layout_arrow-list li:first-child .txt {
  padding: 0 2em 1em;
}
.layout_arrow-list .txt p {
  margin:  1em 0;
}

@media screen and (max-width: 414px) {
  .layout_arrow-list .tit {
    width: 40%;
  }
  .layout_arrow-list .txt {
    width: 60%;
    padding: 2.5em 0 1em 1em;
  }
  .layout_arrow-list li:first-child .txt {
    padding: 0 0 1em 1em;
  }
  .layout_arrow-list .tit .icon01 svg {
    width: 102%;
    left: -1%;
  }
  .layout_arrow-list .tit .icon02 svg {
    width: 102%;
    left: -1%;
  }
}