* {
  letter-spacing: 0.1em;
}

.toggle {
  display: none;
}

.Label {
  /*タイトル*/
  padding: 1em;
  display: block;
  color: #000;
  background: #fff;
}

.Label::before {
  /*タイトル横の矢印*/
  content: "";
  width: 12px;
  height: 12px;
  border-top: 3px solid #000;
  border-right: 3px solid #000;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 7px);
  right: 20px;
  transform: rotate(135deg);
}

.Label,
.content {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.content {
  /*本文*/
  height: 0;
  margin-bottom: 16px;
  padding: 0 20px;
  overflow: hidden;
}

.toggle:checked + .Label + .content {
  /*開閉時*/
  height: auto;
  padding: 20px;
  transition: all 0.3s;
  border-top: 1px solid #f8f5f2;
}

.toggle:checked + .Label::before {
  transform: rotate(-45deg) !important;
}

/* common */
.t_center {
  text-align: center;
}

.m_center {
  margin-right: auto;
  margin-left: auto;
}

.w_600 {
  width: 100%;
  max-width: 600px;
}

.mrT30 {
  margin-top: 30px;
}

.mrT50 {
  margin-top: 50px;
}

.mrT90 {
  margin-top: 90px;
}

.mrT100 {
  margin-top: 100px;
}

.mrB20 {
  margin-bottom: 20px;
}

.mrB30 {
  margin-bottom: 30px;
}

.mrB40 {
  margin-bottom: 40px;
}

.mrB100 {
  margin-bottom: 100px;
}

.mrB130 {
  margin-bottom: 130px;
}

.pdT100 {
  padding-top: 100px;
}

.pdB130 {
  padding-bottom: 130px;
}

.pdB100 {
  padding-bottom: 100px;
}

.pdB50 {
  padding-bottom: 50px;
}

.pdB30 {
  padding-bottom: 30px;
}

.pdB20 {
  padding-bottom: 20px;
}

.border_t {
  border-top: #000 1px solid;
}

.d_none {
  display: none;
}

.flex,
.flex_p {
  display: flex;
  justify-content: space-between;
}

.flex_r {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
}

.main_frame {
  width: 100%;
  max-width: 1100px;
  margin-top: 100px;
  line-height: 1.4;
}

.respon {
  width: 100%;
}

.btn01 {
  width: 90%;
}

.cw_img {
  width: 54%;
}

.cw_txt {
  width: 42%;
}

.f_16 {
  font-size: 16px;
}

.f_18 {
  font-size: 18px;
}

.f_20 {
  font-size: clamp(1.6rem, 2vw, 2rem);
}

.f_24 {
  font-size: 24px;
}

.f_24b {
  font-size: 24px;
}

.f_30 {
  font-size: 30px;
}

.f_40 {
  font-size: 40px;
}

.f_40b {
  font-size: 40px;
}

.f_50 {
  font-size: clamp(3rem, 3vw, 4rem);
}

.ttl_pd {
  padding-top: 30px;
  padding-bottom: 30px;
}

.l_h3 {
  line-height: 3 !important;
}

.l_h24 {
  line-height: 2.4 !important;
}
.l_h22 {
  line-height: 2.2 !important;
}
.l_h2 {
  line-height: 2 !important;
}

.l_h17 {
  line-height: 1.7 !important;
}

.ls_2 {
  letter-spacing: 0.2em;
}

.sub_n {
  width: 80%;
}

.text_l {
  text-align: left;
}

.text_r {
  text-align: right;
}

.max75 {
  max-width: 75%;
}
.max80 {
  max-width: 80%;
}

.max90 {
  max-width: 90%;
}

.max440 {
  max-width: 440px;
}

.max750 {
  max-width: 750px;
}

.gap70 {
  gap: 70px;
}

.flex_div {
  width: calc(100% / 3);
}

.block {
  display: block;
}

.bg01 {
  background-color: #f8f5f2;
}

.bg_white {
  background-color: #fff;
}

.icon {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
  margin-top: 4px;
}

.qa_row {
  display: flex;
  align-items: center;
  gap: 16px;
}

.flew1 {
  flex: 1;
}

.p_all20 {
  padding: 20px;
}

.rela {
  position: relative;
}

.copy {
  position: absolute;
  max-width: 520px;
  bottom: 23%;
  left: 18%;
  z-index: 999;
  color: #fff;
  letter-spacing: 0.1em;
}

.mv-image {
  width: 100%;
  height: 70vh;
  object-fit: cover;
  object-position: center bottom;
}

.bread ul li span {
  letter-spacing: 0;
}

.ls0 {
  letter-spacing: 0;
}

@media screen and (max-width: 1020px) {
  .main_frame {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gap70 {
    gap: 50px;
  }
}

@media screen and (max-width: 960px) {
  .gap70 {
    gap: 30px;
  }
}

@media screen and (max-width: 900px) {
  .f_24b {
    font-size: 20px;
  }
}

@media screen and (max-width: 767px) {
  .flex,
  .flex_r {
    flex-direction: column-reverse;
  }

  .flex_p {
    flex-direction: column;
  }

  .cw_img {
    width: 100%;
  }

  .cw_txt {
    width: 100%;
  }

  .main_frame {
    margin-top: 50px;
  }

  .flex_div {
    width: 100%;
  }

  .pc-only {
    display: none;
  }

  .mrB130 {
    margin-bottom: 100px;
  }

  .gap70 {
    gap: 70px;
  }

  .f_24b {
    font-size: 24px;
  }

  .copy {
    left: 5%;
  }

  .mv-image {
    height: 70vh;
    width: auto;
    object-position: left bottom;
  }
  .max90 {
    max-width: 100%;
  }
  .max75 {
    max-width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .Label::before {
    right: 10px;
  }
}

@media screen and (max-width: 500px) {
  .mrB130 {
    margin-bottom: 70px;
  }

  .f_40 {
    font-size: 32px;
  }

  .f_24 {
    font-size: 20px;
  }

  .main_frame {
    margin-top: 30px;
  }

  .copy {
    width: 90%;
  }

  .l_h3 {
    line-height: 2.4 !important;
  }
}

@media screen and (max-width: 400px) {
  .mrB130 {
    margin-bottom: 70px;
  }
  .copy {
    bottom: 10%;
  }
  .sp_none {
    display: none;
  }
}
