.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

.pc_L_display {
  display: none;
}
@media screen and (max-width: 1400px) {
  .pc_L_display {
    display: block;
  }
}

.pc_M_display {
  display: none;
}
@media screen and (max-width: 1200px) {
  .pc_M_display {
    display: block;
  }
}

.pc_S_display {
  display: none;
}
@media screen and (max-width: 1000px) {
  .pc_S_display {
    display: block;
  }
}

.tab_display {
  display: none;
}
@media screen and (max-width: 800px) {
  .tab_display {
    display: block;
  }
}

.sp_LL_display {
  display: none;
}
@media screen and (max-width: 600px) {
  .sp_LL_display {
    display: block;
  }
}

.sp_L_display {
  display: none;
}
@media screen and (max-width: 460px) {
  .sp_L_display {
    display: block;
  }
}

.sp_ML_display {
  display: none;
}
@media screen and (max-width: 400px) {
  .sp_ML_display {
    display: block;
  }
}

.sp_M_display {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp_M_display {
    display: block;
  }
}

.sp_S_display {
  display: none;
}
@media screen and (max-width: 350px) {
  .sp_S_display {
    display: block;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans JP", sans-serif;
  color: #191311;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

html {
  scroll-padding-top: 85px;
}
@media screen and (max-width: 600px) {
  html {
    scroll-padding-top: 60px;
  }
}

/*--------------- header ---------------*/
.header {
  background-color: #fff;
  padding: 0 24px;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 85px;
}
@media screen and (max-width: 600px) {
  .header {
    height: 60px;
    padding: 0 8px;
  }
}

.header_wrap {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
}

.header_txt {
  position: absolute;
  width: 100%;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 1200px) {
  .header_txt {
    display: none;
  }
}
.header_txt span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 8px;
  font-size: 16px;
}
@media screen and (max-width: 1400px) {
  .header_txt span {
    font-size: 14px;
  }
}
.header_txt h2 {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 24px;
  font-weight: 500;
}

.header_logo {
  width: 220px;
}
@media screen and (max-width: 1400px) {
  .header_logo {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .header_logo {
    width: 150px;
  }
}

.header_btn {
  display: block;
  background: -webkit-gradient(linear, left top, left bottom, from(#483830), to(#8b3e02));
  background: -webkit-linear-gradient(top, #483830 0%, #8b3e02 100%);
  background: linear-gradient(180deg, #483830 0%, #8b3e02 100%);
  border-radius: 32px;
  padding: 16px 40px;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1400px) {
  .header_btn {
    padding: 12px 32px;
  }
}
@media screen and (max-width: 600px) {
  .header_btn {
    text-align: center;
    padding: 8px 40px;
  }
}
.header_btn:hover {
  opacity: 0.6;
}
.header_btn span {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 1400px) {
  .header_btn span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .header_btn span {
    display: block;
    font-size: 14px;
  }
}

/*--------------- fv ---------------*/
.fv {
  position: relative;
}

@media screen and (max-width: 600px) {
  .fv_pc.fv_slider {
    display: none;
  }
}

.fv_sp.fv_slider {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_sp.fv_slider {
    display: block;
  }
}

.fv_txt {
  position: absolute;
  width: 50%;
  top: 24%;
  left: 8%;
}
@media screen and (max-width: 600px) {
  .fv_txt {
    width: 96%;
    top: 12%;
    left: 0;
  }
}

@media screen and (max-width: 600px) {
  .fv_txt_pc {
    display: none;
  }
}

.fv_txt_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_txt_sp {
    display: block;
  }
}

.fv_bottom {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_bottom {
    display: block;
    background-image: url(../img/fv_bottom.webp);
    background-size: cover;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    padding: 20px 2%;
  }
}

.fv_bottom p {
  line-height: 1.8;
  margin-bottom: 12px;
}
@media screen and (max-width: 375px) {
  .fv_bottom p {
    font-size: 14px;
  }
}

.fv_bottom h3 {
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.6;
}

/*--------------- problem ---------------*/
.problem {
  position: relative;
  background: -webkit-gradient(linear, left top, left bottom, from(#d9d9d9), to(#a7a7a7));
  background: -webkit-linear-gradient(top, #d9d9d9 0%, #a7a7a7 100%);
  background: linear-gradient(180deg, #d9d9d9 0%, #a7a7a7 100%);
  padding-bottom: 120px;
}

.problem_heading {
  position: relative;
  z-index: 2;
  width: 44%;
  margin: 0 auto 60px;
}
@media screen and (max-width: 1200px) {
  .problem_heading {
    width: 50%;
  }
}
@media screen and (max-width: 600px) {
  .problem_heading {
    width: 86%;
    margin: 0 auto 24px;
  }
}

.problem_content {
  position: relative;
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .problem_content {
    margin-bottom: 0;
    padding-bottom: 58%;
  }
}

.problem_img {
  opacity: 0.5;
  width: 30%;
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 0;
}
@media screen and (max-width: 1200px) {
  .problem_img {
    width: 36%;
  }
}
@media screen and (max-width: 800px) {
  .problem_img {
    width: 40%;
  }
}
@media screen and (max-width: 600px) {
  .problem_img {
    width: 50%;
    top: auto;
    bottom: 0;
  }
}

.problem_bubble {
  width: 68%;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1200px) {
  .problem_bubble {
    width: 84%;
  }
}
@media screen and (max-width: 800px) {
  .problem_bubble {
    width: 100%;
  }
}

@media screen and (max-width: 600px) {
  .problem_bubble_pc {
    display: none;
  }
}

.problem_bubble_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .problem_bubble_sp {
    display: block;
  }
}

.problem_txt {
  text-align: center;
  line-height: 1.8;
  font-size: 32px;
  font-weight: 500;
}
@media screen and (max-width: 1200px) {
  .problem_txt {
    font-size: 28px;
  }
}
@media screen and (max-width: 800px) {
  .problem_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .problem_txt {
    font-size: 16px;
  }
}
.problem_txt span {
  background-color: #fdffc1;
}

/*--------------- hope ---------------*/
.hope {
  position: relative;
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .hope {
    padding: 40px 0;
  }
}

.hope_bg {
  position: absolute;
  background-image: url(../img/hope_bg.webp);
  background-size: 100% 100%;
  width: 100%;
  height: calc(100% + 60px);
  bottom: 0;
  left: 0;
}
@media screen and (max-width: 600px) {
  .hope_bg {
    height: calc(100% + 36px);
  }
}

.hope_heading {
  font-family: "Noto Serif JP", serif;
  text-align: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  font-size: 42px;
  line-height: 1.5;
}
@media screen and (max-width: 1000px) {
  .hope_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .hope_heading {
    font-size: 22px;
    margin: 0 auto 40px;
  }
}
.hope_heading .big_txt {
  font-size: 54px;
}
@media screen and (max-width: 1000px) {
  .hope_heading .big_txt {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .hope_heading .big_txt {
    font-size: 30px;
  }
}
.hope_heading .border_txt {
  display: inline-block;
  position: relative;
}
.hope_heading .border_txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 24px;
  background-image: url(../img/border.webp);
  background-size: 100% 100%;
  z-index: -1;
}

.hope_wrap {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.hope_list {
  margin-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .hope_list {
    margin-bottom: 60px;
  }
}

.hope_item {
  position: relative;
}
.hope_item:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .hope_item:not(:last-child) {
    margin-bottom: 40px;
  }
}

.hope_item_txt {
  position: absolute;
  bottom: 12%;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.hope_item_txt span {
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(rgba(72, 56, 48, 0.8)), to(rgba(139, 62, 2, 0.8)));
  background: -webkit-linear-gradient(left, rgba(72, 56, 48, 0.8) 0%, rgba(139, 62, 2, 0.8) 100%);
  background: linear-gradient(90deg, rgba(72, 56, 48, 0.8) 0%, rgba(139, 62, 2, 0.8) 100%);
  padding: 8px 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 1000px) {
  .hope_item_txt span {
    font-size: 22px;
  }
}
@media screen and (max-width: 600px) {
  .hope_item_txt span {
    font-size: 18px;
    padding: 4px 8px;
  }
}
.hope_item_txt span:nth-child(1) {
  margin-bottom: 16px;
}
@media screen and (max-width: 600px) {
  .hope_item_txt span:nth-child(1) {
    margin-bottom: 8px;
  }
}

.hope_item img {
  width: 60%;
  -webkit-box-shadow: 16px 16px 4px rgba(72, 56, 48, 0.28);
          box-shadow: 16px 16px 4px rgba(72, 56, 48, 0.28);
}
@media screen and (max-width: 600px) {
  .hope_item img {
    width: 80%;
    -webkit-box-shadow: 8px 8px 2px rgba(72, 56, 48, 0.28);
            box-shadow: 8px 8px 2px rgba(72, 56, 48, 0.28);
  }
}

.hope_item:nth-child(even) img {
  margin-left: auto;
}
.hope_item:nth-child(even) .hope_item_txt {
  position: absolute;
  bottom: 12%;
  right: auto;
  left: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.hope_bottom img {
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .hope_bottom img {
    margin: 0 auto 24px;
  }
}
.hope_bottom p {
  font-size: 20px;
  line-height: 1.8;
}
@media screen and (max-width: 600px) {
  .hope_bottom p {
    font-size: 16px;
  }
}

/*--------------- point ---------------*/
.point {
  background-image: url(../img/point_bg.webp);
  background-size: cover;
  padding-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .point {
    padding-bottom: 60px;
  }
}

.point_heading {
  padding: 60px 0 100px;
  background-image: url(../img/point_heading.webp);
  background-size: 100% 100%;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .point_heading {
    padding: 32px 0 60px;
    margin-bottom: 8px;
  }
}
.point_heading h2 {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 48px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 600px) {
  .point_heading h2 {
    font-size: 24px;
  }
}

.point_wrap {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.point_top:nth-child(1) {
  margin-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .point_top:nth-child(1) {
    margin-bottom: 40px;
  }
}
.point_top img {
  margin-bottom: 24px;
}
.point_top span {
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .point_top span {
    font-size: 26px;
  }
}
@media screen and (max-width: 600px) {
  .point_top span {
    font-size: 20px;
  }
}

.point_list {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .point_list {
    margin-bottom: 48px;
  }
}

.point_item {
  display: grid;
  grid-template-columns: 45% 1fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 800px) {
  .point_item {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.point_item:not(:last-child) {
  margin-bottom: 40px;
}

.point_item:nth-child(even) {
  display: grid;
  grid-template-columns: 1fr 45%;
}
@media screen and (max-width: 800px) {
  .point_item:nth-child(even) {
    grid-template-columns: 1fr;
  }
}
.point_item:nth-child(even) .point_img {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
      -ms-flex-order: 2;
          order: 2;
}
@media screen and (max-width: 800px) {
  .point_item:nth-child(even) .point_img {
    -webkit-box-ordinal-group: 0;
    -webkit-order: -1;
        -ms-flex-order: -1;
            order: -1;
  }
}

.point_img {
  -webkit-box-shadow: 12px 12px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 12px 12px 4px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 800px) {
  .point_img {
    max-width: 450px;
    -webkit-box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.16);
            box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.16);
  }
}

.point_num {
  width: 180px;
  margin-left: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 800px) {
  .point_num {
    width: 120px;
  }
}
@media screen and (max-width: 600px) {
  .point_num {
    width: 100px;
  }
}

.point_txt {
  height: 100%;
  padding-top: 6%;
}
@media screen and (max-width: 600px) {
  .point_txt {
    padding-top: 0;
    height: auto;
  }
}

.point_txt_inner {
  height: 60%;
  background-color: #8b3e02;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-left: 24px;
  color: #fff;
  font-weight: 300;
}
@media screen and (max-width: 800px) {
  .point_txt_inner {
    padding: 24px;
  }
}

.point_txt_inner h3 {
  font-size: 22px;
  font-weight: 300;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .point_txt_inner h3 {
    font-size: 18px;
  }
}

.point_txt_inner p {
  font-size: 16px;
  margin-top: 8px;
}
@media screen and (max-width: 1000px) {
  .point_txt_inner p {
    font-size: 14px;
  }
}

/*--------------- why ---------------*/
.why {
  background-image: url(../img/why_bg.webp);
  background-size: cover;
  padding-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .why {
    padding-bottom: 60px;
  }
}

.why_wrap {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.why_heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .why_heading {
    margin-bottom: 24px;
  }
}

.why_txt {
  background-color: #fff;
  padding: 40px;
  line-height: 2;
  font-size: 20px;
  font-weight: 400;
  -webkit-box-shadow: 15px 15px 4px rgba(0, 0, 0, 0.16);
          box-shadow: 15px 15px 4px rgba(0, 0, 0, 0.16);
  margin-bottom: 80px;
}
@media screen and (max-width: 800px) {
  .why_txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .why_txt {
    font-size: 15px;
    padding: 24px 12px;
    -webkit-box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.16);
            box-shadow: 4px 4px 2px rgba(0, 0, 0, 0.16);
    margin-bottom: 48px;
  }
}

.why_table {
  margin-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .why_table {
    margin-bottom: 60px;
    width: 100%;
    overflow-x: scroll;
  }
}
@media screen and (max-width: 600px) {
  .why_table img {
    width: 620px;
  }
}

.why_content {
  background-color: #a89b90;
  padding: 60px;
  border-radius: 40px;
}
@media screen and (max-width: 1000px) {
  .why_content {
    padding: 40px;
  }
}
@media screen and (max-width: 600px) {
  .why_content {
    border-radius: 24px;
    padding: 24px 12px;
  }
}

.why_effect {
  width: 170px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .why_effect {
    width: 100px;
    margin: 0 auto 24px;
  }
}

.why_inner {
  background-color: #fffaef;
  border-radius: 16px;
  padding: 40px;
}
@media screen and (max-width: 600px) {
  .why_inner {
    padding: 20px 12px;
  }
}

.why_ttl {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .why_ttl {
    margin-bottom: 24px;
  }
}

.why_ttl img {
  width: 250px;
  margin: 0 auto 12px;
}
@media screen and (max-width: 600px) {
  .why_ttl img {
    width: 180px;
  }
}

.why_ttl h3 {
  font-size: 32px;
  font-weight: 500;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 800px) {
  .why_ttl h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .why_ttl h3 {
    text-align: center;
    line-height: 1.3;
    font-size: 18px;
  }
}
.why_ttl h3::before {
  content: "";
  position: absolute;
  width: 40px;
  height: 36px;
  background-image: url(../img/why_phone_light.webp);
  background-size: 100% 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -52px;
}
@media screen and (max-width: 800px) {
  .why_ttl h3::before {
    width: 32px;
    height: 28px;
    left: -42px;
  }
}
.why_ttl h3::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 36px;
  background-image: url(../img/why_phone_light.webp);
  background-size: 100% 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -52px;
}
@media screen and (max-width: 800px) {
  .why_ttl h3::after {
    width: 32px;
    height: 28px;
    right: -42px;
  }
}

.why_list {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .why_list {
    gap: 24px;
  }
}

@media screen and (max-width: 600px) {
  .why_list_pc {
    display: none;
  }
}

.why_list_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .why_list_sp {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}

/*--------------- voice ---------------*/
.voice {
  padding-bottom: 200px;
}
@media screen and (max-width: 600px) {
  .voice {
    padding-bottom: 120px;
  }
}

.voice_heading {
  max-width: 700px;
  margin: 0 auto 80px;
  width: 80%;
}
@media screen and (max-width: 600px) {
  .voice_heading {
    margin: 0 auto 40px;
  }
}

.voice_content {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.slider {
  padding-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .slider {
    padding-bottom: 40px;
  }
}

.slick_item img {
  margin-bottom: 16px;
}

.slick_ttl {
  margin-bottom: 16px;
}

.slick_ttl h3 {
  font-size: 24px;
  font-weight: 500;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 4px;
  padding-bottom: 4px;
  border-bottom: 1px solid #191311;
}
@media screen and (max-width: 600px) {
  .slick_ttl h3 {
    font-size: 20px;
  }
}

.slick_ttl span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .slick_ttl span {
    font-size: 16px;
  }
}

.slick_txt p {
  line-height: 1.8;
}

.slick-prev.slick-arrow {
  width: 120px;
  height: 8px;
  position: absolute;
  left: 260px;
  bottom: 0;
  background-image: url(../img/prev-arrow.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 1000px) {
  .slick-prev.slick-arrow {
    left: 100px;
  }
}
@media screen and (max-width: 600px) {
  .slick-prev.slick-arrow {
    width: 80px;
    left: 24px;
  }
}

.slick-next.slick-arrow {
  width: 120px;
  height: 8px;
  position: absolute;
  right: 260px;
  bottom: 0;
  background-image: url(../img/next-arrow.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 1000px) {
  .slick-next.slick-arrow {
    right: 100px;
  }
}
@media screen and (max-width: 600px) {
  .slick-next.slick-arrow {
    width: 80px;
    right: 24px;
  }
}

/*--------------- reason ---------------*/
.reason {
  position: relative;
  padding-top: 90px;
  padding-bottom: 20px;
}
@media screen and (max-width: 600px) {
  .reason {
    padding-top: 60px;
  }
}

.reason_bg {
  background-image: url(../img/reason_bg.webp);
  background-size: 100% 100%;
  width: 100%;
  height: calc(100% + 80px);
  left: 0;
  bottom: 0;
  position: absolute;
}
@media screen and (max-width: 600px) {
  .reason_bg {
    background-size: cover;
    background-position: center;
  }
}

.reason_heading {
  max-width: 520px;
  margin: 0 auto 80px;
  width: 90%;
}
@media screen and (max-width: 600px) {
  .reason_heading {
    margin: 0 auto 40px;
  }
}

.reason_wrap {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.reason_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  row-gap: 40px;
  margin-bottom: 100px;
}
@media screen and (max-width: 800px) {
  .reason_list {
    grid-template-columns: 1fr;
    row-gap: 24px;
  }
}

.reason_num {
  width: 150px;
  margin: 0 auto 8px;
  aspect-ratio: 150/42;
}
@media screen and (max-width: 800px) {
  .reason_num {
    width: 100px;
  }
}

.reason_inner {
  background: -webkit-linear-gradient(310deg, #8b3e02 0%, #483830 100%);
  background: linear-gradient(140deg, #8b3e02 0%, #483830 100%);
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  padding: 1px;
}

.reason_inner h3 {
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 26px;
  padding: 8px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .reason_inner h3 {
    font-size: 20px;
  }
}

.reason_txt {
  background-color: #fff;
  height: 74px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 800px) {
  .reason_txt {
    height: auto;
    padding: 8px;
  }
}
.reason_txt p {
  font-size: 18px;
  text-align: center;
  line-height: 1.6;
}
@media screen and (max-width: 800px) {
  .reason_txt p {
    font-size: 15px;
  }
}
@media screen and (max-width: 375px) {
  .reason_txt br.sp_M_hidden {
    display: none;
  }
}

/*--------------- recommend ---------------*/
.recommend {
  position: relative;
  padding: 120px 0 160px;
}
@media screen and (max-width: 600px) {
  .recommend {
    padding: 40px 0 80px;
  }
}

.recommend_bg {
  background-image: url(../img/recommend.webp);
  background-size: 100% 100%;
  width: 100%;
  height: calc(100% + 128px);
  left: 0;
  bottom: 0;
  position: absolute;
  z-index: 4;
}
@media screen and (max-width: 600px) {
  .recommend_bg {
    height: calc(100% + 80px);
    background-size: cover;
    background-position: center;
  }
}

.recommend_heading {
  max-width: 700px;
  margin: 0 auto 60px;
  width: 90%;
  -webkit-transform: translateX(-5%);
      -ms-transform: translateX(-5%);
          transform: translateX(-5%);
}
@media screen and (max-width: 600px) {
  .recommend_heading {
    margin: 0 auto 40px;
  }
}

.recommend_wrap {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
}

.recommend_content_pc {
  display: block;
}
@media screen and (max-width: 600px) {
  .recommend_content_pc {
    display: none;
  }
}

.recommend_content_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .recommend_content_sp {
    display: block;
  }
}

/*--------------- experience ---------------*/
.experience {
  background-color: rgba(198, 188, 181, 0.45);
  padding: 120px 0 80px;
  position: relative;
}
@media screen and (max-width: 600px) {
  .experience {
    padding: 60px 0 40px;
  }
}

.experience_top {
  position: absolute;
  width: 100%;
  bottom: calc(100% - 3.2vw);
  left: 0;
  z-index: 10;
}

.experience_heading {
  max-width: 980px;
  width: 98%;
  margin: 0 auto 24px;
  position: relative;
  z-index: 3;
}

.experience_des {
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
}
@media screen and (max-width: 800px) {
  .experience_des {
    font-size: 16px;
    margin: 0 auto 40px;
  }
}

.experience_add {
  position: absolute;
  width: 200px;
  top: -32px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 600px) {
  .experience_add {
    width: 120px;
    top: -12px;
  }
}

.experience_content {
  background-color: #fff;
  padding: 60px 16px;
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 800px) {
  .experience_content {
    padding: 40px 16px;
  }
}

.experience_content h3 {
  font-size: 28px;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .experience_content h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .experience_content h3 {
    text-align: center;
    line-height: 1.8;
    margin: 0 auto 16px;
  }
}
.experience_content h3::after {
  content: "";
  position: absolute;
  width: 28px;
  height: 28px;
  left: -24px;
  top: -8px;
  background-image: url(../img/bubble.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 800px) {
  .experience_content h3::after {
    width: 20px;
    height: 20px;
    left: -16px;
  }
}
@media screen and (max-width: 600px) {
  .experience_content h3::after {
    top: 0;
    left: -12px;
  }
}
.experience_content h3 .big_txt {
  font-size: 36px;
}
@media screen and (max-width: 800px) {
  .experience_content h3 .big_txt {
    font-size: 24px;
  }
}
.experience_content h3 .border_txt {
  display: inline-block;
  position: relative;
}
.experience_content h3 .border_txt::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 12px;
  background-image: url(../img/border.webp);
  background-size: 100% 100%;
  z-index: -1;
}

.experience_inner {
  display: grid;
  grid-template-columns: 24fr 45fr;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .experience_inner {
    gap: 0;
  }
}
@media screen and (max-width: 600px) {
  .experience_inner {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 600px) {
  .experience_inner img {
    max-width: 240px;
    margin: 0 auto;
  }
}

.experience_ttl {
  background: -webkit-linear-gradient(310deg, #8b3e02 0%, #483830 100%);
  background: linear-gradient(140deg, #8b3e02 0%, #483830 100%);
  padding: 8px 24px;
  color: #fff;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .experience_ttl {
    margin-bottom: 16px;
  }
}
.experience_ttl h4 {
  font-size: 24px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2px;
}
@media screen and (max-width: 800px) {
  .experience_ttl h4 {
    font-size: 20px;
  }
}
.experience_ttl span {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  .experience_ttl span {
    font-size: 16px;
  }
}

.experience_txt p {
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 800px) {
  .experience_txt p {
    font-size: 16px;
  }
}

/*--------------- contact ---------------*/
.contact {
  background-image: url(../img/contact_bg.webp);
  background-size: 100% 100%;
  padding-bottom: 60px;
}

.contact_heading {
  padding: 60px 0 100px;
  background-image: url(../img/point_heading.webp);
  background-size: 100% 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .contact_heading {
    padding: 32px 0 60px;
    margin-bottom: 24px;
  }
}
.contact_heading h2 {
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 48px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
}
@media screen and (max-width: 600px) {
  .contact_heading h2 {
    font-size: 24px;
  }
}

.contact_wrap {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.contact_top {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .contact_top {
    margin-bottom: 40px;
  }
}

.contact_top img {
  margin-bottom: 40px;
}

.contact_top p {
  font-size: 26px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .contact_top p {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .contact_top p {
    text-align: center;
    line-height: 1.4;
  }
}

.contact_form {
  background-color: #fff;
  padding: 90px 24px 60px;
}
@media screen and (max-width: 600px) {
  .contact_form {
    padding: 80px 12px 40px;
  }
}

.contact_ttl {
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .contact_ttl {
    margin-bottom: 40px;
  }
}

.contact_ttl h3 {
  font-size: 36px;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  padding-bottom: 4px;
  border-bottom: 1px solid #191311;
  position: relative;
}
@media screen and (max-width: 600px) {
  .contact_ttl h3 {
    font-size: 24px;
  }
}
.contact_ttl h3::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 58px;
  background-image: url(../img/contact_bubble.webp);
  background-size: 100% 100%;
  -webkit-transform: rotate(-15deg);
      -ms-transform: rotate(-15deg);
          transform: rotate(-15deg);
  top: -36px;
  left: -160px;
}
@media screen and (max-width: 600px) {
  .contact_ttl h3::after {
    width: 120px;
    height: 34px;
    top: -40px;
    left: -32px;
    -webkit-transform: rotate(-8deg);
        -ms-transform: rotate(-8deg);
            transform: rotate(-8deg);
  }
}

.contact_ttl p {
  text-align: center;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-weight: 500;
  font-size: 20px;
}
@media screen and (max-width: 800px) {
  .contact_ttl p {
    font-size: 16px;
  }
}

.contact_list {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .contact_list {
    margin-bottom: 40px;
  }
}

.contact_item {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  padding: 0 0 24px;
  border-bottom: 1px solid #483830;
}
@media screen and (max-width: 800px) {
  .contact_item {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.contact_item:not(:last-child) {
  margin-bottom: 24px;
}

.contact_item_ttl {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 800px) {
  .contact_item_ttl {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 8px;
  }
}
.contact_item_ttl h4 {
  font-size: 20px;
  font-weight: 500;
}
@media screen and (max-width: 600px) {
  .contact_item_ttl h4 {
    font-size: 18px;
  }
}
.contact_item_ttl span {
  color: #fff;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #ff5b98;
  border-radius: 100px;
  padding: 2px 12px 3px;
}
@media screen and (max-width: 600px) {
  .contact_item_ttl span {
    font-size: 14px;
  }
}

.contact_item_date {
  margin-top: 12px;
}
.contact_item_date span {
  display: block;
  font-weight: 500;
  margin-bottom: 4px;
}

.contact_item_input input,
.contact_item_input textarea,
.contact_item_input select {
  background-color: #f4f2f0;
  width: 100%;
  border: 1px solid #c6bcb5;
  line-height: 1.4;
  padding: 12px;
}

.contact_item_input select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7 10l5 5 5-5z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  background-size: 20px 20px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 40px;
}

.contact_item_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.contact_bottom {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.8;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 90px;
  text-align: center;
}
@media screen and (max-width: 800px) {
  .contact_bottom {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .contact_bottom {
    margin: 0 auto 40px;
  }
}

.contact_btn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
.contact_btn::before {
  content: "";
  position: absolute;
  width: 32px;
  height: 24px;
  background-image: url(../img/contact_icon.webp);
  background-size: 100% 100%;
  top: 50%;
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 40px;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .contact_btn::before {
    width: 24px;
    height: 20px;
    right: 24px;
  }
}
.contact_btn::after {
  content: "";
  width: 100%;
  height: calc(100% + 4px);
  top: 0;
  left: 0;
  position: absolute;
  border-radius: 100px;
  background: -webkit-gradient(linear, left top, left bottom, from(#e27f4d), to(#e24d4d));
  background: -webkit-linear-gradient(top, #e27f4d 0%, #e24d4d 100%);
  background: linear-gradient(180deg, #e27f4d 0%, #e24d4d 100%);
  opacity: 0.28;
}

.contact_btn input {
  background: -webkit-gradient(linear, left top, left bottom, from(#e27f4d), to(#e24d4d));
  background: -webkit-linear-gradient(top, #e27f4d 0%, #e24d4d 100%);
  background: linear-gradient(180deg, #e27f4d 0%, #e24d4d 100%);
  border-radius: 100px;
  padding: 18px 120px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .contact_btn input {
    font-size: 18px;
    padding: 16px 90px;
  }
}

.wpcf7-spinner {
  display: none !important;
}

/*--------------- access ---------------*/
.access {
  padding-bottom: 90px;
}
@media screen and (max-width: 600px) {
  .access {
    padding-bottom: 60px;
  }
}

.access_wrap {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.access_heading {
  margin-bottom: 60px;
}
@media screen and (max-width: 600px) {
  .access_heading {
    margin-bottom: 40px;
  }
}

.access_content {
  max-width: 800px;
  margin: 0 auto;
}

.access_map {
  width: 100%;
  height: 450px;
  margin-bottom: 20px;
}
.access_map iframe {
  width: 100%;
  height: 100%;
}

.access_txt h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .access_txt h3 {
    font-size: 20px;
  }
}

.access_txt p {
  line-height: 1.6;
  font-size: 18px;
}
@media screen and (max-width: 600px) {
  .access_txt p {
    font-size: 16px;
  }
}

/*--------------- cta ---------------*/
.cta {
  background-color: #eeedec;
  padding-bottom: 120px;
}

.cta_wrap {
  max-width: 900px;
  width: 96%;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.cta_heading {
  margin-bottom: 40px;
}

.cta_txt {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
  font-weight: 500;
  font-family: "Noto Serif JP", serif;
  font-size: 20px;
}
@media screen and (max-width: 600px) {
  .cta_txt {
    font-size: 18px;
    text-align: center;
    line-height: 1.4;
    margin: 0 auto 40px;
  }
}

.cta_content h3 {
  font-weight: 500;
  font-size: 20px;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
}
@media screen and (max-width: 600px) {
  .cta_content h3 {
    font-size: 18px;
    margin: 0 auto 24px;
  }
}

.cta_btn {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .cta_btn {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
}

.cta_btn a {
  display: block;
  width: 320px;
  color: #fff;
  padding: 10px 0;
  border-radius: 100px;
  position: relative;
}
@media screen and (max-width: 800px) {
  .cta_btn a {
    width: 260px;
  }
}
.cta_btn a::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #483830;
  opacity: 0.2;
  top: 4px;
  left: 0;
  z-index: -1;
  border-radius: 100px;
}
.cta_btn a:nth-child(1) {
  background-image: url(../img/btn_bg1.webp);
  background-size: 100% 100%;
}
.cta_btn a:nth-child(2) {
  background-image: url(../img/btn_bg2.webp);
  background-size: 100% 100%;
}

.cta_btn_inner {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
}
.cta_btn_inner img {
  width: 48px;
}
@media screen and (max-width: 800px) {
  .cta_btn_inner img {
    width: 32px;
  }
}
.cta_btn_inner span {
  font-size: 28px;
  font-weight: 500;
  text-shadow: 2px 2px 2px rgba(72, 56, 48, 0.8);
}
@media screen and (max-width: 800px) {
  .cta_btn_inner span {
    font-size: 22px;
  }
}

/*---------------  ---------------*/
/*---------------  ---------------*//*# sourceMappingURL=index.css.map */