@charset "UTF-8";
@import url("csr_common.css");


.section_lead .mcdonald-image {
  width: 100%;
}

.logo-image_wrap {
  --main-image-width: 65.21%;/* 自動計算させるために変数化 */
  
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 0;
  margin: 30px auto 0;
}

.logo-image_wrap .first {
  width: calc(100% - var(--main-image-width));
  display: flex;
  justify-content: center;
  align-items: center;
  
}

.logo-image_wrap .first .logo-image {
  width: 72%;
}

.logo-image_wrap .second {
  width: var(--main-image-width);
}

@media screen and (max-width: 767px) {

  /* sp only */
  .section_lead .csr_sec_title {
    font-size: 22px;
  }

  .logo-image_wrap {
    --main-image-width: 100%;
    display: block;
    margin-top: 15px;
  }

  .logo-image_wrap .first {
    width: 100%;
    
  }

  .logo-image_wrap .first .logo-image {
    width: clamp(130px, 40vw, 180px);
  }

  .logo-image_wrap .second {
    width: var(--main-image-width);
    margin-top: 15px;
  }
}

/* sp only */


/* ==================
* section_house
* ================== */
.section_house {
  background-color: #F2FAFE;
  border-radius: 20px;
  margin-top: 50px;
  padding: 18px 30px 30px;
}

.section_house .head {
  color: #00AEEB;
  font-weight: bold;
  font-size: 35px;
  text-align: center;
}

.section_house .map-image {
  width: calc(100% - 60px);
  margin: 20px auto 0;
}

.section_house .house-list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 9px 1fr 9px 1fr 9px 1fr 9px 1fr;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
  gap: 9px;
  margin-top: 20px;
}

.section_house .house-list .item {
  display: block;
  background-color: #FFF;
  padding: 5px 5px 12px;
}

.section_house .house-list .item .image {
  width: 100%;
}

.section_house .house-list .item .text {
  text-align: center;
  line-height: 1.2;
  margin-top: 10px;
}

.section_house .house-list .item .text .title {
  font-size: 16px;
  font-weight: bold;
  color: #00AEEB;
}

.section_house .house-list .item .text .desc {
  font-size: 14px;
  margin-top: 5px;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .section_house {
    margin-top: 30px;
    padding: 15px 0 20px;
  }

  .section_house .head {
    font-size: 24px;
  }

  .section_house .map-image {
    width: calc(100% - 16px);
  }

  .section_house .house-list {
    -ms-grid-columns: 1fr 1fr;
    grid-template-columns: 1fr 1fr;
    width: calc(100% - 20px);
    margin-inline: auto;
  }

  .section_house .house-list .item {
    padding-bottom: 14px;
  }

  .section_house .house-list .item .text {
    margin-top: 12px;
  }
}

/* sp only */
/* end section_house */




/* ==================
* Slickスライドカスタマイズ
* ================== */
.original-slide .slick-dots {
  bottom: -4rem;
  -webkit-box-pack: center !important;
  -ms-flex-pack: center !important;
  justify-content: center !important;
}

.original-slide .slick-dots li[role=presentation] {
  width: 2rem;
  height: auto;
  aspect-ratio: 1;
}

.original-slide .slick-dots li[role=presentation] button {
  width: 100%;
  height: 100%;
  padding: 0;
  aspect-ratio: 1;
}

.original-slide .slick-dots li[role=presentation] button::before {
  width: 100%;
  height: 100%;
  border-radius: 9999px;
  aspect-ratio: 1;
  background-color: #fff;
  border: 1px solid #00AEEB;
  opacity: 1;
  color: transparent;
}

.original-slide .slick-dots li[role=presentation].slick-active button::before {
  background-color: #00AEEB;
}

/* end Slickスライドカスタマイズ */


/* ==================
* section_voice
* ================== */
.section_voice {
  margin-top: 50px;
}

.section_voice .main-contents {
    background-color: #F2FAFE;
    border-radius: 20px;
    padding: 30px 15px 35px;
}

.section_voice .main-contents .voice-slider .slide_item {
  padding-inline: 15px;
}

.section_voice .main-contents .voice-slider .slide_item .image {
  width: 100%;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .section_voice .csr_sec_title {
    font-size: 22px;
  }

  .section_voice .main-contents {
    padding: 20px 5px 18px;
    margin-top: 10px;
  }

  .section_voice .main-contents .voice-slider .slide_item {
    padding-inline: 5px;
  }
}

/* sp only */
/* end section_voice */


/* ==================
* voice
* ================== */
.voice ul li {
  display:flex;
  align-items: center;
  margin-bottom:1rem;
}
.voice ul li p {
  font-size:18px;
  color:#16aeeb;
  text-align: center;
  width:4em;
  min-width: 4em;
  margin-right:2em;
  line-height: 1.6;
}
.voice ul li div {
  background-color:#e9f6fd;
  font-size:18px;
  padding:1em;
  border-radius: 0.5em;
  width:100%;
  line-height: 1.6;
  position:relative;
}
.voice ul li div:before {
  content:"";
  position:absolute;
  background:url("/images/top/voice_arrow.png") 0 0/contain no-repeat;
  width:1em;
  height: 1em;
  left:-1em;
  top:50%;
  margin-top:-0.5em;
}
/* end voice */


/* ==================
* section_about
* ================== */
.section_about {
  margin-top: 60px;
}

@media screen and (max-width: 767px) {
  /* sp only */
  .section_about {
    margin-top: 40px;
  }
} /* sp only */
/* end section_about */
