@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: #FFF7F6;
  border-radius: 20px;
  margin-top: 50px;
  padding: 18px 30px 30px;
}

.section_house .head {
  color: #F685BE;
  font-weight: bold;
  font-size: 35px;
  text-align: center;
}

.section_house .map-image {
  width: calc(100% - 60px);
  margin: 20px auto 0;
}

.section_house .house-head {
  align-items: center;
  color: #F685BE;
  display: flex;
  font-size: 26px;
  font-weight: bold;
  justify-content: center;
  margin-block: 20px -10px;
}
.section_house .house-head::before,
.section_house .house-head::after {
  background: #F685BE;
  content: '';
  display: block;
  height: 38px;
  width: 2px;
}
.section_house .house-head::before {
  margin-right: 16px;
  transform: rotate(-30deg);
}
.section_house .house-head::after {
  margin-left: 16px;
  transform: rotate(30deg);
}

.section_house + p {
  font-size: 14px;
  margin-top: 10px;
}

@media screen and (max-width: 767px) {

  /* sp only */
  .section_house {
    margin-top: 30px;
    padding: 15px 0 20px;
  }

  .section_house .head {
    font-size: 24px;
    line-height: 1.4;
  }

  .section_house .map-image {
    width: calc(100% - 16px);
  }

  .section_house .house-head {
    align-items: center;
    font-size: 16px;
  }
  .section_house .house-head::before,
  .section_house .house-head::after {
    height: 24px;
  }
  .section_house .house-head::before {
    margin-right: 8px;
  }
  .section_house .house-head::after {
    margin-left: 8px;
  }
}

/* sp only */
/* end section_house */


/* ==================
* section_voice
* ================== */
.section_voice {
  margin-top: 100px;
}

.main-contents {
  background: #FFFEEB;
  border-radius: 10px;
  padding: 20px;
}
.main-contents p {
  font-size: 16px;
  line-height: 1.8;
}
.main-contents .first-image {
  margin-bottom: 20px;
}
.main-contents .item {
  align-items: stretch;
  display: flex;
}
.main-contents .item-odd {
  margin-bottom: 20px;
  margin-top: 30px;
}
.main-contents .item .item-image {
  flex-shrink: 0;
  margin-right: 20px;
  width: 380px;
}
.main-contents .item-odd .item-image {
  margin-left: 20px;
  margin-right: 0;
}
.main-contents .item .item-text {
  align-items: stretch;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.main-contents .item .voice-head {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.6;
}
.main-contents .item p {
  flex-grow: 1;
}
.main-contents .item .voice-name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}

.voice-list li {
  background: #FFFEEB;
  border-radius: 10px;
  display: grid;
  grid-template-columns: 200px 1fr;
  grid-template-rows: 1fr 1fr;
  margin-bottom: 20px;
  padding: 20px;
}
.voice-list li img {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
  padding-right: 20px;
}
.voice-list li p {
  font-size: 16px;
  line-height: 1.8;
  grid-column: 2 / 3;
  grid-row: 1 / 2;
  margin-top: 1.5em;
}
.voice-list li .name {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.8;
  grid-column: 2 / 3;
  grid-row: 2 / 3;
}
.voice-list li .name small {
  font-size: 18px;
}

@media screen and (min-width: 768px) {
  .main-contents .item-odd .item-text {
    order: 0;
  }
  .main-contents .item-odd .item-image {
    order: 1;
  }
}

@media screen and (max-width: 767px) {
  /* sp only */
  .section_voice {
    margin-top: 50px;
  }
  .section_voice .csr_sec_title {
    font-size: 22px;
  }

  .main-contents {
    padding: 10px;
  }
  .main-contents .first-image {
    margin-bottom: 10px;
  }
  .main-contents .item {
    display: block;
    margin-bottom: 10px;
  }
  .main-contents .item-odd {
    margin-bottom: 10px;
    margin-top: 10px;
  }
  .main-contents .item .item-image {
    margin-bottom: 10px;
    margin-right: 0;
    width: 100%;
  }
  .main-contents .item-odd .item-image {
    margin-left: 0;
    margin-right: 0;
  }

  .voice-list li {
    grid-template-columns: 110px 1fr;
    grid-template-rows: auto auto;
    margin-bottom: 15px;
    padding: 10px;
  }
  .voice-list li img {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
    padding-right: 10px;
  }
  .voice-list li p {
    grid-column: 1 / 3;
    grid-row: 1 / 2;
    margin-bottom: 15px;
    margin-top: 0;
  }
  .voice-list li .name {
    align-items: flex-start;
    font-size: 16px;
    display: flex;
    flex-direction: column;
    grid-column: 2 / 3;
    grid-row: 2 / 3;
    justify-content: center;
    line-height: 1.6;
    margin-top: -.25em;
  }
  .voice-list li .name small {
    font-size: 14px;
  }
}

/* sp only */
/* end section_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 */
