@charset "utf-8";

.heading .title{
  font-size: 16px;
  font-weight: 700;
  margin: 50px auto 30px;
}
.heading .text{
  margin: 30px auto 50px;
}
@media screen and (min-width: 768px){
  .heading .title{
    font-size: 18px;
  }
}

.features{
  display: flex;
	flex-wrap: wrap;
  column-gap: 10px;
}
.features .col{
	background-color: #f2f7fd;
	border-radius: 4px;
	margin-bottom: 20px;
  padding: 20px;
}
.features .col:nth-child(-n+3) .text{
  margin: 20px auto;
}
.features .col picture{
  display: flex;
  justify-content: center;
  margin: 20px auto;
}

@media screen and (max-width: 767px) {
  .features .col{
    width: 100%;
    flex-direction: column;
  }
  .features .col:nth-child(-n+3) picture{
    display: flex;
    justify-content: center;
  }
  .features img{
    max-width: 305px;
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .features .col{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    column-gap: 30px;
    padding: 30px;
  }  
  .features .col:nth-child(-n+3){
    width: 100%;
  }
  .features .col:nth-child(-n+3) img{
    max-width: 320px;
  }
	.features .col:nth-last-child(-n+2){
		width: calc( (100% - 10px) / 2 );
  }
}


.color{
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  column-gap: 15px;
}
.color .col{
  display: flex;
  flex-direction: column;
}
.color:not(:last-child) .col{
  margin-bottom: 50px;
}
.color_name{
  order: 2;
  display: flex;
  align-items: center;
  column-gap: 15px;
  margin-top: 20px;
}
.color_name picture{
  order: 1;
}
.color_name h4{
  order: 2;
}
.color_name img{
  width: 57px;
}
.color_img{
  order: 1;
}
@media screen and (max-width: 767px) {
  .color_img img{
    max-width: 345px;
    width: 100%;
  }
}
@media screen and (min-width: 600px)  and (max-width: 767px) {
  .color .col{
    width: calc( (100% - 15px) / 2 );
    max-width: 320px;
  }
}
@media screen and (min-width: 768px) {
  .color .col{
    width: calc( (100% - 15px * 3) / 4 );
  }
}

.service{
  color: #152C81;
  font-weight: 700;
  margin: 30px auto 50px;
}
.service .title{
  font-size: 16px;
  text-align: center;
  margin-bottom: 20px;
}
.service .text{
  margin-top: 0;
}
.service .flexbox{
  display: flex;
  column-gap: 20px;
}
.service .flexbox .col{
  border: 1px solid #C7CAD5;
  border-radius: 4px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
  line-height: 1.2;
}

@media screen and (max-width: 767px) {
  .service .flexbox{
    flex-direction: column;
    align-items: center;
  }
  .service .flexbox .col{
    max-width: 345px;
    width: 100%;
  }
  .service .flexbox .col:not(:last-of-type){
    margin-bottom: 20px;
  }
  .service .img.hisago-kobo img{
    width: 262px;
  }
  .service .img.new_template img{
    width: 100px;
  }
}
@media screen and (min-width: 768px) {
  .service .title{
    font-size: 18px;
  }
  .service .flexbox{
    flex-wrap: wrap;
    justify-content: center;
  }
  .service .flexbox .col{
    width: 315px;
  }
}


.youto .inner{
  display: flex;
  column-gap: 30px;
}
.youto .col{
  column-gap: 30px;
}
.youto .col img{
  max-width: 345px;
}
.youto .label{
  display: inline-block;
  background-color: #e3ebfa;
  color: #152c81;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: 14px;
  padding: 6px 14px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  .shiyou{
    display: flex;
    justify-content: center;
  }
  .youto .inner{
    flex-direction: column;
    align-items: center;
  }
  .youto .col{
    flex-direction: column;
    align-items: center;
  }
  .youto .col:not(:last-child){
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 768px) {
  .youto .col{
		width: calc( (100% - 10px) / 2 );
  }
  .youto .col img{
    max-width: 520px;
    width: 100%
  }
  .youto .col .text{
    width: calc( 100% - 160px);
  }
}


@media screen and (max-width: 599px) {
  .display_sp{
    display: block;
  }
}
@media screen and (min-width: 600px) {
  .display_sp{
    display: none;
  }
}