@charset "utf-8";

/* ========================================================
benefits-search
======================================================== */
.benefits-search{
  background-color: #F9F9F9;
  padding: 80px 68px;
}
/* benefits-word
----------------------- */
.benefits-word{
    display:flex;
    -ms-flex-pack:distribute;
    justify-content:space-between;
    flex-wrap: wrap;
  margin: 0 auto;
  font-size: 15px;
  max-width: 960px;
}
.benefits-word input{
  background: url("../../images/common/icon_search_gray.svg") 1.3em center #fff no-repeat;
  -moz-background-size: 1.2em auto;
  background-size: 1.2em auto;
  box-shadow: inset 0px 2px 6px #00000029;
  border: 1px solid #EFEFEF;
  border-radius: 2px;
  padding: 0.5em 1em 0.5em 3.2em;
  width: calc(100% - 125px);
}
.benefits-word input::-webkit-input-placeholder{color: #777777;}
.benefits-word input::-moz-placeholder{color: #777777;}
.benefits-word input:-ms-input-placeholder{color: #777777;}
.benefits-word input:-placeholder{color: #777777;}
.benefits-word button{
  background-color: #272727;
  border-radius: 2px;
  color: #fff;
  letter-spacing: 0.3em;
  padding-left: 0.3em;
  width: 120px;
  opacity:1;filter: alpha(opacity=100);-ms-filter: "alpha(opacity=100)";
  transition-property: opacity,filter;
  transition: 0.2s linear;
}
.benefits-word button:hover{
  opacity:.6;filter: alpha(opacity=60);-ms-filter: "alpha(opacity=60)";
}
@media screen and (max-width: 768px){
  .benefits-word{
    font-size: 3.58vw;
  }
  .benefits-word input{
    width: calc(100% - 16vw);
  }
  .benefits-word button{
    width: 15.38vw;
  }
}
/* benefits-subtext
----------------------- */
.benefits-subtext::before{
  content: "";
  display: block;
  margin: 0 auto 0.3em;
  background-color: #0EB7BD;
  height: 2px;
  width: 100%;
}
.benefits-subtext{
  margin: 20px auto 20px;
  width: 80%;
  max-width:600px;
}
/* benefits-select
----------------------- */
.benefits-select{
    display:flex;
    -ms-flex-pack:distribute;
    justify-content:space-between;
    flex-wrap: wrap;
}
.benefits-select__box{
  width: calc((100% - 60px) / 3);
}
.benefits-select__box__inner{
  background-color: #fff;
  padding: 1.2em 0.8em;
  border: 1px solid #DDDDDD;
  margin-top: 1em;
}
@media screen and (max-width: 768px){
  .benefits-search{
    padding: 12.8vw 3vw;
    margin-right: -3vw;
    margin-left: -3vw;
  }
  .benefits-select__box{
    width: 100%;
  }
  .benefits-select__box:not(:first-of-type){
    margin-top: 6vw;
  }
}
/* benefits-select__list
----------------------- */
.benefits-select__item{
  margin-top: 0.8em;
}
.benefits-select__item input{
  display: none;
}
.benefits-select__item label{
  cursor: pointer;
  line-height: 1.4em;
  font-size: 15px;
}
.benefits-select__item label span {
  position: relative;
  vertical-align:-0.2em;
  line-height:1;
  border: solid 1px #DDDDDD;
  width: 1em;
  height: 1em;
  display: inline-block;
  margin-right: 0.6em;
}
.benefits-select__item input:checked + label span{
  background-color: #20C0C5;
}
.benefits-select__item input:checked + label span::before {
  content: "";
  display: block;
  position: absolute;
  border-right:solid 2px #fff;
  border-bottom:solid 2px #fff;
  width: 0.3em;
  height: 0.6em;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  left: 0.3em;
}
.benefits-select__item label p{
  line-height: 1.4em;
  display: inline-block;
  margin: -0.5em 0;
}
@media screen and (max-width: 768px){
  .benefits-select{
    gap: 2.5vw;
    margin-top: 2.5vw;
  }
  .benefits-select__headline{
    font-size: 4.1vw;
    font-weight: bold;
  }
  .benefits-select__headline + .color-red{
    text-align: right;
    margin-top: -1.8em;
    margin-bottom: 0.2em;
  }
  .benefits-select__item label{
    font-size: 3.8vw;
  }
}
/* benefits-radio__list
----------------------- */
.benefits-radio__item{
  margin-top: 0.3em;
}
.benefits-radio__item input{
  display: none;
}
.benefits-radio__item label{
  cursor: pointer;
  display: block;
  line-height: 1.4em;
  font-weight: bold;
  background-color: #EFF9F8;
  padding: 1em 1.4em;
  font-size: 15px;
}
.benefits-radio__item input:checked + label{
  background-color: #00B7BD;
  color: #fff;
}
.benefits-radio__select{
  display: none;
}
@media screen and (max-width: 768px){
  .benefits-radio__list{
    display: none;
  }
  .benefits-radio__select{
    display: block;
    position: relative;
    border: solid 1px #707070;
    width: 100%;
    font-weight: bold;
  }
  .benefits-radio__select::after{
    content: "";
    display: block;
    background: url("../../images/common/icon_arrow_down_black.svg") center 52% no-repeat;
    -moz-background-size: 100% auto;
    background-size: 100% auto;
    width: 0.6em;
    height: 0.6em;
    position: absolute;
    right: 1.2em;
    top: calc(50% - 0.3em);
    pointer-events: none;
    transform: rotate(0deg);
    transition-property: transform;
    transition: 0.2s linear;
  }
  .benefits-radio__select select{
    padding: 0.8em 3em 0.8em 0.5em;
    display: block;
    font-size: 3.8vw;
    width: 100%;
  }
  .benefits-radio__item label{
    font-size: 3.8vw;
  }
}
/* benefits-search__close
----------------------- */
.benefits-search__close{
  text-align: center;
}
.benefits-search__close a{
  display: inline-block;
  position: relative;
  font-size: 14px;
}
.benefits-search__close a::before{
  content: "";
  display: block;
  width: 1.7em;
  height: 1.7em;
  background-color: #00B7BD;
  border-radius: 9999px;
  margin:0 auto 0.5em;
}
.benefits-search__close a::after{
  content: "";
  display: block;
  position: absolute;
  width: 0.7em;
  height: 1px;
  background-color: #fff;
  top: 0.85em;
  left: calc(50% - 0.35em);
}
@media screen and (max-width: 768px){
  .benefits-search__close a{
    font-size: 3.58vw;
  }
}

/* ========================================================
benefits-result
======================================================== */
.benefits-result{
  display: flex;
  justify-content: flex-start;
    flex-wrap: wrap;
  margin: 0 auto;
  gap: 60px 35px;
  max-width: 1160px;
}
.benefits-card{
  position: relative;
  line-height: 1.6em;
  border-radius: 6px;
  padding: 40px;
  width: calc((100% - 35px) / 2);
  font-size: 16px;
}
.benefits-card::before{
  content: "";
  display: block;
  position: absolute;
  background-color: #1FC3C8;
  width: calc(100% - 20px);
  top: 0;
  left: 10px;
  height: 3px;
}
@media screen and (max-width: 768px){
  .benefits-result{
    margin: 0 -3vw;
    gap: 20.5vw 0;
  }
  .benefits-card{
    border-radius: 4.6vw;
    padding: 7.1vw 6.15vw;
    width: 100%;
    font-size: 3.8vw;
  }
  .benefits-card::before{
    width: 100%;
    top: auto;
    bottom: -10.3vw;
    left: 0;
    height: 0.7vw;
  }
}
/* benefits-card__headline
----------------------- */
.benefits-card__headline{
    display:flex;
    -ms-flex-pack:distribute;
    justify-content:space-between;
    flex-wrap: wrap;
    align-items: flex-start;
}
.benefits-card__logo{
  border: solid 1px #DDDDDD;
  aspect-ratio: 1 / 1;
  overflow: hidden;
      display:flex;
    justify-content: center;
    align-items: center;
  border-radius: 5px;
  width: 157px;
}
.benefits-card__headline__txt{
  width: calc(100% - 180px);
}
.benefits-card__headline__txt:first-child{
  width: 100%;
}
.benefits-card__name{
  line-height: 1.4em;
  font-weight: bold;
  margin-top: 0.5em;
  font-size: 20px;
}
.benefits-card__txt{
  margin-top: 0.5em;
}
.benefits-card__facility{
  margin-top: 0.8em;
}
@media screen and (max-width: 768px){
  .benefits-card__logo{
    border-radius: 1.3vw;
    width: 25vw;
  }
  .benefits-card__headline__txt{
    width: calc(100% - 29vw);
  }
  .benefits-card__name{
    font-size: 3.8vw;
  }
  .benefits-card__facility{
    font-size: 3.3vw;
  }
}
/* benefits-card__body
----------------------- */
.benefits-card__body{
  margin-top: 1.3em;
}
.benefits-card__note{
  background-color: #F9F9F9;
  padding: 1.3em;
  margin-top: 0.5em;
}
.benefits-card__image{
  margin-top: 15px;
}

@media screen and (max-width: 768px){
  .benefits-card__note{
    padding: 7.69vw 3vw;
  }
  .benefits-card__image{
    margin-top: 3vw;
  }
}