@charset "UTF-8";

body {
  background: #FCF7ED;
}

/*--------------------------------------------
kv
--------------------------------------------*/
.d-kv {
  width: 100%;
  padding: 64px 0;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-kv {
    padding: 26.2vw 0 0 0;
  }
}

.d-kv h1 {
  font-size: 123px;
  color: #191919;
  text-align: center;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-kv h1 {
    font-size: 14.933vw;
    line-height: 1.2em;
  }
}

.d-kv__cnt {
  width: 100%;
  max-width: 900px;
  margin: 49px auto 0;
  display: flex;
  justify-content: space-between;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-kv__cnt {
    margin: 2vw auto 4.4vw auto;
    display: block;
    width: 92vw;
  }
}

.d-kv__catch {
  width: 33.333%;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-kv__catch {
    width: 100%;
    text-align: center;
  }
}

.d-kv__catch span {
  display: block;
  font-size: 28px;
  color: #191919;
  line-height: 2em;
  padding-bottom: 32px;
  position: relative;
  font-weight: 700;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-kv__catch span {
    font-size: 5.866vw;
    padding-bottom: 6.266vw;
    line-height: 1.8em;
  }
}

.d-kv__catch span::before {
  content: "";
  background: #191919;
  width: 44px;
  height: 5px;
  position: absolute;
  bottom: 0;
  left: 0;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-kv__catch span::before {
    width: 9.866vw;
    height: 1.6vw;
    right: 0;
    margin: auto;
  }
}

.d-kv__txt {
  width: 63.111%;
  font-size: 17px;
  color: #191919;
  line-height: 2em;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-kv__txt {
    width: 92vw;
    font-size: 4vw;
    margin: 6.666vw auto 0 auto;
    font-weight: 400;
  }
}


/*--------------------------------------------
member
--------------------------------------------*/
.d-member {
  width: 100%;
  padding: 64px 0 0;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-member {
    padding: 17.066vw 0 0 0;
  }
}

.d-member__heading_h2 {
  font-size: 32px;
  color: #191919;
  text-align: center;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-member__heading_h2 {
    font-size: 8.533vw;
  }
}

.d-member__cnt {
  width: 100%;
  max-width: 900px;
  margin: 27px auto 0;
  display: flex;
  justify-content: space-between;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-member__cnt {
    width: 72.533vw;
    margin: 12.8vw auto 0 auto;
    flex-wrap: wrap;
    gap: 8.533vw 0;
  }
}

.d-member__cnt li {
  width: 21.6%;
  display: flex;
  justify-content: space-between;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-member__cnt li {
    width: 32vw;
    display: block;
  }
}

.d-member__ph {
  width: 41.025%;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-member__ph {
    width: 25.6vw;
    margin: 0 auto;
  }
}

.d-member__txt {
  width: 49.23%;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.4em;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-member__txt {
    margin-top: 4.266vw;
    width: 100%;
    font-size: 3.2vw;
  }
}

.d-member__txt__name {
  display: block;
  font-size: 15px;
  margin-bottom: 6px;
  font-weight: 700;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-member__txt__name {
    margin-top: 4.266vw;
    font-size: 4vw;
    font-weight: 700;
    text-align: center;
  }

.d-member__txt__profile {
  display: block;
  text-align: center;
  line-height: 1.4em;
  margin-top: 2.133vw;
  }
}

.d-member__txt__profile {
  display: block;
  line-height: 1.4em;
  margin-top: 10px;
  }
/********* sp *********/
@media only screen and (max-width:750px) {
.d-member__txt__profile {
  text-align: center;
  margin-top: 2.133vw;
  }
}



/*--------------------------------------------
content
--------------------------------------------*/
.d-contents {
  width: 100%;
  position: relative;
  margin-top: 120px;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents {
    margin-top: 25.6vw;
  }
}

.d-contents.-bg_right::after {
  content: "";
  position: absolute;
  width: 50%;
  height: calc(100% - 120px);
  background-color: #fff;
  bottom: 120px;
  right: 0;
  z-index: -1;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents.-bg_right::after {
    width: 100%;
  }
}

.d-contents.-bg_left::after {
  content: "";
  position: absolute;
  width: 50%;
  height: calc(100% - 120px);
  background-color: #fff;
  bottom: 120px;
  left: 0;
  z-index: -1;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents.-bg_left::after {
    width: 100%;
  }
}

.-brown {
  padding-bottom: 120px;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .-brown {
    padding-bottom: 17.066vw;
  }
}

.d-contents.-brown::after {
  content: "";
  position: absolute;
  width: 100%;
  height: calc(100% - 120px);
  background-color: #005944;
  bottom: 0;
  right: 0;
  z-index: -1;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents.-brown::after {
    height: calc(100% - 17.066vw);
  }
}

.d-contents__cnt {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 64px 0 120px;
  background-color: #fff;
  position: relative;
  z-index: 10;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__cnt {
    padding: 17.066vw 0;
  }
}

.d-contents__ttl {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__ttl {
    width: 92.533vw;
    margin: 0 auto;
    display: block;
  }
}

.d-contents__ttl h2 {
  width: 20%;
  font-size: 33px;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__ttl h2 {
    width: 92.533vw;
    font-size: 4.8vw;
    text-align: center;
  }
}

.d-contents__ttl h2 span {
  font-size: 59px;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__ttl h2 span {
    font-size: 6.666vw;
    margin-left: 0.15em;
  }
}

.d-contents__ttl__txt {
  width: 80%;
  font-size: 24px;
  line-height: 2em;
  letter-spacing: 0.2em;
  font-weight: 700;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__ttl__txt {
    width: 92.533vw;
    font-size: 5.333vw;
    font-weight: 700;
    text-align: center;
    margin-top: 1.933vw;
    position: relative;
    padding-bottom: 8vw;
  }

  .d-contents__ttl__txt::after {
    content: "";
    width: 9.866vw;
    height: 1.6vw;
    background: #191919;
    position: absolute;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
  }
}

.d-contents__talk {
  width: 100%;
  max-width: 900px;
  display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
  margin: 64px auto 0;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__talk {
    width: 92vw;
    margin: 17.066vw auto 0 auto;
  }
}

.d-contents__talk.-img_right {
  flex-direction: row-reverse;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__talk.-img_right {
    flex-direction: row;
  }
}

.d-contents__talk dt {
  width: 10.6%;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__talk dt {
    width: 12.8vw;
  }
}

.d-contents__talk__name {
  margin-top: 7px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-align: center;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__talk__name {
    margin-top: 2.3vw;
    font-size: 3.466vw;
    font-weight: 700;
  }
}

.d-contents__talk dd {
  width: 80%;
  padding-bottom: 37px;
  line-height: 2em;
  letter-spacing: 0.1em;
  font-weight: 400;
  text-align: justify;
  text-justify: inter-ideograph; /* IE用 */
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__talk dd {
    width: 73.333vw;
    padding-bottom: 8.533vw;
    font-size: 4vw;
    line-height: 1.8em;
  }
}

.d-contents__talk dd:last-child {
  padding-bottom: 0;
}

.d-contents__img01 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__img01 {
    max-width: none;
  }
}

.d-contents__img01__pic {
  max-width: 1088px;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__img01__pic {
    width: 96vw;
  }
}

.d-contents__img01__box {
  max-width: 1088px;
  display: flex;
  justify-content: space-between;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__img01__box {
    width: 96vw;
    display: block;
  }
}

.d-contents__img01__box__pic {
  width: 47.794%;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__img01__box__pic {
    width: 100%;
  }

  .d-contents__img01__box__pic:nth-of-type(2) {
    margin-top: 6.4vw;
  }
}

.d-contents__img02 {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.d-contents__img02__pic {
  max-width: 1088px;
  margin-left: auto;
  margin-right: 0;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__img02__pic {
    width: 96vw;
  }
}

.d-contents__img02__box {
  max-width: 1088px;
  margin-left: auto;
  margin-right: 0;
  display: flex;
  justify-content: space-between;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__img02__box {
    width: 96vw;
    display: block;
  }
}

.d-contents__img02__box__pic {
  width: 47.794%;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__img02__box__pic {
    width: 100%;
  }

  .d-contents__img02__box__pic:nth-of-type(2) {
    margin-top: 6.4vw;
  }
}

.d-contents__img03 {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto 0;
}
/********* sp *********/
@media only screen and (max-width:750px) {
  .d-contents__img03 {
    width: 84vw;
    margin: 0 auto 0;
  }
}

.d-contents__img04 {
  width: 100%;
}
