@charset "UTF-8";
.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;
  }
}

@media screen and (max-width: 800px) {
  br.tab_hidden {
    display: none;
  }
}

@media screen and (max-width: 600px) {
  br.sp_LL_hidden {
    display: none;
  }
}

body {
  width: 100%;
  overflow-x: hidden;
  font-family: "noto-sans-cjk-jp", sans-serif;
  color: #2F210B;
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

.header {
  position: absolute;
  width: 100%;
  top: 4%;
  left: 0;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .header {
    top: 3%;
  }
}

.header_wrap {
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1400px) {
  .header_wrap {
    width: 80%;
  }
}
@media screen and (max-width: 1200px) {
  .header_wrap {
    width: 94%;
    justify-content: center;
  }
}

.header_logo {
  width: 300px;
}
@media screen and (max-width: 1000px) {
  .header_logo {
    width: 200px;
  }
}
@media screen and (max-width: 800px) {
  .header_logo {
    width: 160px;
  }
}
@media screen and (max-width: 600px) {
  .header_logo {
    width: 70%;
  }
}

.header_right {
  display: flex;
  align-items: center;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .header_right {
    gap: 8px;
  }
}
@media screen and (max-width: 600px) {
  .header_right {
    display: none;
  }
}

.header_btn {
  display: flex;
  align-items: center;
  height: 48px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 24px;
  border-radius: 4px;
  box-shadow: 0px 5px 3px rgba(47, 33, 11, 0.15);
  transition: all 0.3s;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .header_btn {
    height: 36px;
    padding: 0 16px;
  }
}
@media screen and (max-width: 600px) {
  .header_btn {
    height: 13vw;
    width: 100%;
  }
}
.header_btn:hover {
  opacity: 0.8;
}

.header_btn-mail {
  background-color: #F4A100;
}

.header_btn-tel {
  background-color: #FFC41C;
  position: relative;
}
.header_btn-tel .header_btn_bubble {
  font-weight: 500;
  font-size: 14px;
  width: 100%;
  top: -20px;
  text-align: center;
  left: 0;
  position: absolute;
}
@media screen and (max-width: 1000px) {
  .header_btn-tel .header_btn_bubble {
    font-size: 10px;
    top: -16px;
  }
}
@media screen and (max-width: 600px) {
  .header_btn-tel .header_btn_bubble {
    font-size: 16px;
    top: -24px;
  }
}

.header_btn-line {
  background-color: #06C755;
}

.header_btn_inner {
  display: flex;
  align-items: center;
  gap: 8px;
}
.header_btn_inner img {
  width: 24px;
}
@media screen and (max-width: 1000px) {
  .header_btn_inner img {
    width: 16px;
  }
}
@media screen and (max-width: 600px) {
  .header_btn_inner img {
    width: 6vw;
  }
}
.header_btn_inner span {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .header_btn_inner span {
    font-size: 18px;
  }
}
@media screen and (max-width: 800px) {
  .header_btn_inner span {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .header_btn_inner span {
    font-size: 5.4vw;
  }
}

/*--------------- fv ---------------*/
.fv {
  position: relative;
  height: 52vw;
  background-image: url(../img/fv.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 1400px) {
  .fv {
    height: 60vw;
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 800px) {
  .fv {
    height: 66vw;
  }
}
@media screen and (max-width: 600px) {
  .fv {
    background-image: url(../img/fv_sp.webp);
    height: 216vw;
  }
}

.fv_btn {
  display: none;
}
@media screen and (max-width: 600px) {
  .fv_btn {
    display: block;
    position: absolute;
    bottom: 4vw;
    left: 50%;
    transform: translateX(-50%);
    width: 94%;
  }
}

.fv_bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4vw;
  margin-top: 3vw;
}

/*--------------- attention ---------------*/
.attention {
  background-image: url(../img/attention_bg.webp);
  background-size: cover;
  background-position: center;
  padding: 80px 0 120px;
}
@media screen and (max-width: 600px) {
  .attention {
    padding: 40px 0 80px;
  }
}

.attention_heading {
  width: 790px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1400px) {
  .attention_heading {
    width: 600px;
  }
}
@media screen and (max-width: 1000px) {
  .attention_heading {
    width: 480px;
  }
}
@media screen and (max-width: 600px) {
  .attention_heading {
    max-width: 94%;
    margin: 0 auto 24px;
  }
}

.attention_txt p {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-family: "Noto Serif JP", serif;
}
.attention_txt p:nth-child(1) {
  font-weight: 700;
  line-height: 2;
  font-size: 40px;
  margin: 0 auto 40px;
}
@media screen and (max-width: 1400px) {
  .attention_txt p:nth-child(1) {
    font-size: 32px;
  }
}
@media screen and (max-width: 1000px) {
  .attention_txt p:nth-child(1) {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .attention_txt p:nth-child(1) {
    width: 94%;
    text-align: left;
    font-size: 16px;
    margin: 0 auto 24px;
  }
}
.attention_txt p:nth-child(2) {
  font-weight: 700;
  font-size: 58px;
  color: #FB7E00;
  line-height: 1.8;
}
@media screen and (max-width: 1400px) {
  .attention_txt p:nth-child(2) {
    font-size: 48px;
  }
}
@media screen and (max-width: 1000px) {
  .attention_txt p:nth-child(2) {
    font-size: 28px;
  }
}
@media screen and (max-width: 600px) {
  .attention_txt p:nth-child(2) {
    font-size: 20px;
  }
}

/*--------------- cta ---------------*/
.cta_bubble {
  background-color: #06C755;
  padding: 54px 0;
  position: relative;
  z-index: 5;
}
@media screen and (max-width: 600px) {
  .cta_bubble {
    padding: 24px 0 24px;
  }
}

.cta_bubble_img {
  position: absolute;
  width: 136px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 1400px) {
  .cta_bubble_img {
    width: 120px;
    top: -80px;
  }
}
@media screen and (max-width: 600px) {
  .cta_bubble_img {
    width: 72px;
    top: -64px;
  }
}

.cta_bubble h2 {
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 32px;
  font-weight: 500;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .cta_bubble h2 {
    font-size: 24px;
  }
}
@media screen and (max-width: 800px) {
  .cta_bubble h2 {
    text-align: center;
    line-height: 1.6;
  }
}
@media screen and (max-width: 600px) {
  .cta_bubble h2 {
    font-size: 16px;
  }
}
.cta_bubble h2::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 54px;
  background-color: #fff;
  transform: translateY(-50%) rotate(-32deg);
  top: 56%;
  left: -32px;
}
@media screen and (max-width: 800px) {
  .cta_bubble h2::before {
    left: -16px;
  }
}
@media screen and (max-width: 600px) {
  .cta_bubble h2::before {
    height: 32px;
    left: 0;
    transform: rotate(-32deg);
  }
}
.cta_bubble h2::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 54px;
  background-color: #fff;
  transform: translateY(-50%) rotate(32deg);
  top: 56%;
  right: -32px;
}
@media screen and (max-width: 800px) {
  .cta_bubble h2::after {
    right: -16px;
  }
}
@media screen and (max-width: 600px) {
  .cta_bubble h2::after {
    height: 32px;
    right: 0;
    transform: rotate(32deg);
  }
}
.cta_bubble h2 span {
  font-size: 40px;
}
@media screen and (max-width: 1200px) {
  .cta_bubble h2 span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .cta_bubble h2 span {
    font-size: 22px;
  }
}

.cta_wrap {
  width: 870px;
  margin: 0 auto;
  position: relative;
  padding: 40px 0 80px;
  z-index: 8;
}
@media screen and (max-width: 1000px) {
  .cta_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .cta_wrap {
    width: 94%;
    padding: 24px 0 24px;
  }
}

.cta_img {
  width: 200px;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 5;
}
@media screen and (max-width: 1000px) {
  .cta_img {
    width: 130px;
  }
}
@media screen and (max-width: 600px) {
  .cta_img {
    width: 60px;
    z-index: 2;
    left: -4%;
  }
}

.cta_right {
  width: 664px;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .cta_right {
    width: 400px;
  }
}
@media screen and (max-width: 600px) {
  .cta_right {
    width: 90%;
    margin: 0 auto;
  }
}

.cta_btn {
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0px 5px 3px rgba(47, 33, 11, 0.15);
  transition: all 0.4s;
}
.cta_btn:hover {
  opacity: 0.8;
}

.cta_btn-mail {
  width: 100%;
  padding: 32px 0;
  background: linear-gradient(180deg, #F4A100 0%, #D48C00 100%);
  margin-bottom: 48px;
}
@media screen and (max-width: 1000px) {
  .cta_btn-mail {
    margin-bottom: 32px;
    height: 54px;
    padding: 0;
  }
}
.cta_btn-mail img {
  width: 40px;
}
@media screen and (max-width: 1000px) {
  .cta_btn-mail img {
    width: 20px;
  }
}
.cta_btn-mail span {
  color: #fff;
  font-weight: 700;
  font-size: 40px;
}
@media screen and (max-width: 1000px) {
  .cta_btn-mail span {
    font-size: 20px;
  }
}

.cta_btn_inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

.cta_bottom {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
@media screen and (max-width: 1000px) {
  .cta_bottom {
    display: block;
  }
}
.cta_bottom .cta_btn {
  height: 64px;
}
@media screen and (max-width: 1000px) {
  .cta_bottom .cta_btn {
    height: 54px;
  }
}
.cta_bottom img {
  width: 40px;
}
@media screen and (max-width: 1000px) {
  .cta_bottom img {
    width: 20px;
  }
}
.cta_bottom span {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .cta_bottom span {
    font-size: 20px;
  }
}

.cta_btn-tel {
  background: linear-gradient(180deg, #FFC41C 0%, #E3AE19 100%);
  position: relative;
}
@media screen and (max-width: 1000px) {
  .cta_btn-tel {
    margin-bottom: 16px;
  }
}
.cta_btn-tel .cta_btn_bubble {
  font-weight: 500;
  font-size: 16px;
  width: 100%;
  top: -20px;
  text-align: center;
  left: 0;
  position: absolute;
  color: #2F210B;
}
@media screen and (max-width: 600px) {
  .cta_btn-tel .cta_btn_bubble {
    font-size: 14px;
  }
}

.cta_btn-line {
  background: linear-gradient(180deg, #06C755 0%, #059E43 100%);
}

/*--------------- anxiety ---------------*/
.anxiety {
  background-image: url(../img/anxiety_bg.webp);
  padding-top: 140px;
}
@media screen and (max-width: 1000px) {
  .anxiety {
    padding-top: 80px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety {
    padding-top: 40px;
  }
}

@media screen and (max-width: 600px) {
  .anxiety_wrap {
    padding-bottom: 24px;
  }
}

.anxiety_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .anxiety_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.anxiety_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .anxiety_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 800px) {
  .anxiety_heading {
    line-height: 54px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_heading {
    font-size: 23px;
    line-height: 36px;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 375px) {
  .anxiety_heading {
    font-size: 21px;
  }
}
.anxiety_heading span {
  font-size: 48px;
}
@media screen and (max-width: 1000px) {
  .anxiety_heading span {
    font-size: 40px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_heading span {
    font-size: 28px;
  }
}

.anxiety_img {
  max-width: 1200px;
  margin: 0 auto 60px;
  width: 94%;
}
@media screen and (max-width: 600px) {
  .anxiety_img {
    margin: 0 auto 40px;
    width: 100%;
  }
}

.anxiety_img_pc {
  display: block;
}
@media screen and (max-width: 600px) {
  .anxiety_img_pc {
    display: none;
  }
}

.anxiety_img_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .anxiety_img_sp {
    display: block;
  }
}

.anxiety_txt {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #FB7E00;
  font-size: 40px;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .anxiety_txt {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_txt {
    font-size: 20px;
  }
}

.anxiety_bottom {
  background: linear-gradient(180deg, #FFD14E 0%, #F4A100 100%);
  padding-top: 180px;
  clip-path: polygon(0 0, 50% 120px, 100% 0, 100% 100%, 0 100%);
}
@media screen and (max-width: 1000px) {
  .anxiety_bottom {
    padding-top: 120px;
    clip-path: polygon(0 0, 50% 80px, 100% 0, 100% 100%, 0 100%);
  }
}
@media screen and (max-width: 600px) {
  .anxiety_bottom {
    padding-top: 60px;
    clip-path: polygon(0 0, 50% 32px, 100% 0, 100% 100%, 0 100%);
  }
}

.anxiety_bottom_wrap {
  width: 800px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .anxiety_bottom_wrap {
    width: 540px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_bottom_wrap {
    width: 86%;
  }
}

.anxiety_bottom_inner {
  width: 520px;
  padding-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .anxiety_bottom_inner {
    width: 400px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_bottom_inner {
    width: 100%;
  }
}
.anxiety_bottom_inner img {
  margin-bottom: 60px;
}
@media screen and (max-width: 1000px) {
  .anxiety_bottom_inner img {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_bottom_inner img {
    margin-bottom: 16px;
  }
}
.anxiety_bottom_inner p {
  color: #fff;
  text-align: center;
  line-height: 1.6;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .anxiety_bottom_inner p {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_bottom_inner p {
    font-size: 20px;
  }
}
.anxiety_bottom_inner p span {
  font-size: 48px;
}
@media screen and (max-width: 1000px) {
  .anxiety_bottom_inner p span {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_bottom_inner p span {
    font-size: 28px;
  }
}

.anxiety_bottom_img {
  width: 330px;
  bottom: 0;
  right: 0;
  position: absolute;
}
@media screen and (max-width: 1000px) {
  .anxiety_bottom_img {
    width: 200px;
  }
}
@media screen and (max-width: 600px) {
  .anxiety_bottom_img {
    display: none;
  }
}

/*--------------- reason ---------------*/
.reason {
  background: linear-gradient(140deg, rgba(244, 161, 0, 0.04) 0%, rgba(6, 199, 85, 0.04) 100%);
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .reason {
    padding: 40px 0;
  }
}

.reason_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .reason_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .reason_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.reason_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 80px;
}
@media screen and (max-width: 600px) {
  .reason_heading {
    font-size: 24px;
    margin: 0 auto 54px;
  }
}
.reason_heading span {
  font-size: 100px;
}
@media screen and (max-width: 600px) {
  .reason_heading span {
    font-size: 36px;
  }
}

.reason_wrap {
  max-width: 1200px;
  width: 94%;
  margin: 0 auto;
}

.reason_row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 80px;
}
@media screen and (max-width: 1000px) {
  .reason_row {
    gap: 24px;
  }
}
@media screen and (max-width: 800px) {
  .reason_row {
    grid-template-columns: 1fr;
    margin-bottom: 0;
    gap: 60px;
    margin-bottom: 60px;
  }
}

.reason_item {
  position: relative;
  background-color: #fff;
  border: 2px solid #F4A100;
}

.reason_num {
  width: 130px;
  height: 100px;
  position: absolute;
  background-color: #F4A100;
  border-radius: 50%;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding-top: 24px;
}
@media screen and (max-width: 600px) {
  .reason_num {
    font-size: 16px;
    padding-top: 16px;
    top: -32px;
    height: 80px;
  }
}
.reason_num span {
  position: relative;
  z-index: 3;
}

.reason_ttl {
  background-color: #F4A100;
  font-size: 24px;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  padding: 20px 0;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .reason_ttl {
    font-size: 20px;
  }
}
.reason_ttl h3 {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 600px) {
  .reason_ttl h3 {
    line-height: 1.2;
  }
}

.reason_inner {
  padding: 24px 40px;
}
@media screen and (max-width: 1000px) {
  .reason_inner {
    padding: 24px;
  }
}
@media screen and (max-width: 600px) {
  .reason_inner {
    padding: 20px 16px;
  }
}
.reason_inner img {
  width: 90%;
  margin: 0 auto 16px;
}
@media screen and (max-width: 600px) {
  .reason_inner img {
    width: 100%;
  }
}
.reason_inner p {
  line-height: 1.5;
  text-align: justify;
}

.reason_bottom_inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .reason_bottom_inner {
    grid-template-columns: 1fr;
  }
}

.reason_bottom_list {
  padding: 24px 40px 24px 0;
}
@media screen and (max-width: 800px) {
  .reason_bottom_list {
    padding: 24px;
  }
}

.reason_bottom_item:nth-child(1) {
  margin-bottom: 40px;
}

.reason_bottom_item h4 {
  background-color: #F4A100;
  color: #fff;
  font-size: 18px;
  padding: 4px 0;
  width: 150px;
  border-radius: 100px;
  text-align: center;
  margin: 0 auto 12px;
}

.reason_detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
@media screen and (max-width: 600px) {
  .reason_detail {
    grid-template-columns: 1fr;
  }
}

.reason_detail_item img {
  margin-bottom: 4px;
}
.reason_detail_item span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  line-height: 1.2;
}

.reason_detail_item:nth-child(1) {
  position: relative;
}
.reason_detail_item:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 12px;
  height: 14px;
  background-color: #D9D9D9;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  top: 40%;
  transform: translateX(-50%);
  right: -32px;
}
@media screen and (max-width: 600px) {
  .reason_detail_item:nth-child(1)::after {
    clip-path: polygon(0 0, 100% 0, 50% 100%);
    left: 50%;
    transform: translateX(-50%);
    bottom: -26px;
    top: auto;
    width: 14px;
    height: 12px;
  }
}

/*--------------- relief ---------------*/
.relief {
  background-color: #FFFEED;
  padding: 80px 0;
  position: relative;
}
@media screen and (max-width: 600px) {
  .relief {
    padding: 40px 0 60px;
  }
}

.relief_bg {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #FFFDDE;
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  bottom: 0;
  right: 0;
}

.relief_wrap {
  max-width: 860px;
  margin: 0 auto;
  width: 94%;
  position: relative;
  z-index: 4;
}

.relief_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .relief_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .relief_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.relief_heading {
  margin: 0 auto 80px;
  gap: 4px;
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .relief_heading {
    align-items: center;
    flex-direction: column;
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .relief_heading {
    margin: 0 auto 24px;
    width: 92%;
    transform: translateX(6px);
  }
}

@media screen and (max-width: 600px) {
  .relief_heading_pc {
    display: none;
  }
}

.relief_heading_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .relief_heading_sp {
    display: block;
  }
}

.relief_list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .relief_list {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
  }
}

@media screen and (max-width: 600px) {
  .relief_bubble_pc {
    display: none;
  }
}

.relief_bubble_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .relief_bubble_sp {
    display: block;
  }
}

.relief_bottom {
  background-color: #fff;
  padding: 40px 100px;
  border-radius: 8px;
}
@media screen and (max-width: 800px) {
  .relief_bottom {
    padding: 40px;
  }
}
@media screen and (max-width: 600px) {
  .relief_bottom {
    padding: 32px 16px;
  }
}
.relief_bottom h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 32px;
  font-weight: 700;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .relief_bottom h3 {
    font-size: 20px;
    margin: 0 auto 24px;
  }
}

.relief_bottom_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
@media screen and (max-width: 800px) {
  .relief_bottom_list {
    gap: 16px;
  }
}
@media screen and (max-width: 600px) {
  .relief_bottom_list {
    grid-template-columns: 1fr;
  }
}

.relief_bottom_item h4 {
  color: #fff;
  background-color: #06C755;
  padding: 16px 0;
  font-size: 20px;
  text-align: center;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
@media screen and (max-width: 600px) {
  .relief_bottom_item h4 {
    font-size: 18px;
    padding: 12px 0;
  }
}

.relief_bottom_item img {
  margin-bottom: 8px;
}

.relief_bottom_item p {
  line-height: 1.5;
}

/*--------------- voice ---------------*/
.voice {
  background-color: #FFFBF0;
  padding: 80px 0;
}

.voice_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .voice_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .voice_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.voice_top_txt {
  color: #06C755;
  font-size: 24px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}
@media screen and (max-width: 800px) {
  .voice_top_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .voice_top_txt {
    font-size: 18px;
    margin: 0 auto 16px;
  }
}

.voice_heading {
  max-width: 700px;
  margin: 0 auto 60px;
  width: 94%;
}
@media screen and (max-width: 600px) {
  .voice_heading {
    max-width: 320px;
    margin: 0 auto 40px;
  }
}

@media screen and (max-width: 600px) {
  .voice_heading_pc {
    display: none;
  }
}

.voice_heading_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .voice_heading_sp {
    display: block;
  }
}

.swiper-slide {
  max-width: 840px !important;
  height: auto !important;
}
@media screen and (max-width: 1000px) {
  .swiper-slide {
    max-width: 540px !important;
  }
}
@media screen and (max-width: 600px) {
  .swiper-slide {
    width: 94% !important;
  }
}

.voice_item {
  background-color: #fff;
  padding: 40px 58px;
  border: 2px solid #F4A100;
  height: 100%;
}
@media screen and (max-width: 1000px) {
  .voice_item {
    padding: 32px 24px;
  }
}
@media screen and (max-width: 600px) {
  .voice_item {
    padding: 24px 20px;
  }
}

.voice_inner {
  display: grid;
  grid-template-columns: 164px 1fr;
  gap: 58px;
}
@media screen and (max-width: 1000px) {
  .voice_inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

@media screen and (max-width: 1000px) {
  .voice_prof {
    max-width: 164px;
    margin: 0 auto;
  }
}

.voice_prof img:nth-child(1) {
  margin-bottom: 12px;
}
@media screen and (max-width: 600px) {
  .voice_prof img:nth-child(1) {
    width: 110px;
    margin: 0 auto 12px;
  }
}

.voice_prof span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  font-size: 20px;
  font-weight: 700;
}

.voice_txt h3 {
  font-size: 24px;
  line-height: 1.4;
  color: #FB7E00;
  margin-bottom: 24px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .voice_txt h3 {
    font-size: 20px;
    margin-bottom: 16px;
  }
}

.voice_txt p {
  line-height: 1.7;
  margin-bottom: 24px;
  text-align: justify;
}

.voice_txt span {
  display: block;
  margin-left: auto;
  width: -moz-fit-content;
  width: fit-content;
}

.swiper-button-prev {
  width: 50px !important;
  height: 50px !important;
  left: calc((100% - 840px) / 2 - 64px) !important;
}
@media screen and (max-width: 1000px) {
  .swiper-button-prev {
    left: calc((100% - 540px) / 2 - 64px) !important;
  }
}
@media screen and (max-width: 600px) {
  .swiper-button-prev {
    width: 32px !important;
    height: 32px !important;
    left: 0 !important;
  }
}
.swiper-button-prev .swiper-navigation-icon {
  display: none !important;
}
.swiper-button-prev::after {
  content: "" !important;
  width: 50px !important;
  height: 50px !important;
  background-image: url(../img/prev_btn.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 600px) {
  .swiper-button-prev::after {
    width: 32px !important;
    height: 32px !important;
  }
}

.swiper-button-next {
  width: 50px !important;
  height: 50px !important;
  right: calc((100% - 840px) / 2 - 64px) !important;
}
@media screen and (max-width: 1000px) {
  .swiper-button-next {
    right: calc((100% - 540px) / 2 - 64px) !important;
  }
}
@media screen and (max-width: 600px) {
  .swiper-button-next {
    width: 32px !important;
    height: 32px !important;
    right: 0 !important;
  }
}
.swiper-button-next .swiper-navigation-icon {
  display: none !important;
}
.swiper-button-next::after {
  content: "" !important;
  width: 50px !important;
  height: 50px !important;
  background-image: url(../img/next_btn.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 600px) {
  .swiper-button-next::after {
    width: 32px !important;
    height: 32px !important;
  }
}

/*--------------- compare ---------------*/
.compare {
  background-color: #F5FDF8;
  padding: 80px 0;
}

.compare_wrap {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
}

.compare_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .compare_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .compare_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.compare_top_txt {
  color: #06C755;
  font-size: 24px;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 24px;
}
@media screen and (max-width: 800px) {
  .compare_top_txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .compare_top_txt {
    font-size: 18px;
    margin: 0 auto 16px;
  }
}

.compare_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 32px;
}
@media screen and (max-width: 800px) {
  .compare_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .compare_heading {
    font-size: 24px;
  }
}

.compare_des {
  text-align: center;
  line-height: 1.6;
  font-size: 24px;
  font-weight: 500;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 60px;
}
@media screen and (max-width: 1000px) {
  .compare_des {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .compare_des {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .compare_des {
    font-size: 14px;
  }
}
.compare_des .line_txt {
  position: relative;
  display: inline-block;
  z-index: 1;
}
.compare_des .line_txt::after {
  content: "";
  background-color: #F3FFB8;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  z-index: -1;
  position: absolute;
}
.compare_des .dot_txt {
  position: relative;
  display: inline-block;
}
.compare_des .dot_txt::after {
  content: "";
  width: 4px;
  height: 4px;
  position: absolute;
  background-color: #06C755;
  border-radius: 50%;
  top: -2px;
  left: 50%;
  transform: translateX(-50%);
}

.compare_table {
  margin-bottom: 40px;
}
@media screen and (max-width: 800px) {
  .compare_table {
    overflow-x: scroll;
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 800px) {
  .compare_table img {
    width: 820px;
  }
}
@media screen and (max-width: 600px) {
  .compare_table img {
    width: 760px;
  }
}

.compare_txt {
  margin-bottom: 120px;
}
@media screen and (max-width: 600px) {
  .compare_txt {
    margin-bottom: 60px;
  }
}

.compare_txt h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  padding: 6px 24px 8px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  background: linear-gradient(#F4D300 0%, #FB7E00 100%);
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .compare_txt h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 800px) {
  .compare_txt h3 {
    line-height: 1.4;
  }
}
@media screen and (max-width: 600px) {
  .compare_txt h3 {
    font-size: 20px;
  }
}

.compare_txt p {
  line-height: 2.4;
  font-size: 24px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .compare_txt p {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .compare_txt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 375px) {
  .compare_txt p {
    font-size: 14px;
  }
}
.compare_txt p .color_txt {
  color: #06C755;
  font-size: 32px;
  font-weight: 700;
}
@media screen and (max-width: 1000px) {
  .compare_txt p .color_txt {
    font-size: 24px;
  }
}
@media screen and (max-width: 600px) {
  .compare_txt p .color_txt {
    font-size: 18px;
  }
}
.compare_txt p .bg_txt {
  color: #EAFF00;
  display: inline-block;
  background-color: #E90000;
  padding: 0 12px;
  line-height: 1.8;
  margin: 0 6px;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}

@media screen and (max-width: 600px) {
  .compare_img_pc {
    display: none;
  }
}

.compare_img_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .compare_img_sp {
    display: block;
  }
}

.compare_bottom {
  max-width: 720px;
  margin: 0 auto;
  width: 94%;
}
@media screen and (max-width: 800px) {
  .compare_bottom .compare_table img {
    width: 760px;
  }
}
@media screen and (max-width: 600px) {
  .compare_bottom .compare_table img {
    width: 600px;
  }
}

.compare_note {
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .compare_note {
    font-size: 12px;
  }
}

/*--------------- payment ---------------*/
.payment {
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .payment {
    padding: 40px 0;
  }
}

.payment_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .payment_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .payment_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.payment_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 32px;
}
@media screen and (max-width: 800px) {
  .payment_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .payment_heading {
    font-size: 24px;
  }
}

.payment_txt h3 {
  color: #fff;
  font-size: 24px;
  background-color: #F4A100;
  padding: 8px 16px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 12px;
  font-weight: 500;
}
@media screen and (max-width: 800px) {
  .payment_txt h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 600px) {
  .payment_txt h3 {
    text-align: center;
    line-height: 1.4;
  }
}

.payment_txt p {
  line-height: 1.6;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 40px;
  font-weight: 500;
  font-size: 24px;
}
@media screen and (max-width: 1000px) {
  .payment_txt p {
    font-size: 20px;
  }
}
@media screen and (max-width: 800px) {
  .payment_txt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .payment_txt p {
    margin: 0 auto 24px;
  }
}

.payment_img {
  max-width: 540px;
  margin: 0 auto 40px;
  width: 94%;
}
@media screen and (max-width: 600px) {
  .payment_img {
    margin: 0 auto 24px;
  }
}

.payment_note {
  line-height: 1.5;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .payment_note {
    font-size: 12px;
  }
}

/*--------------- flow ---------------*/
.flow {
  background-color: rgba(255, 255, 241, 0.5);
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .flow {
    padding: 40px 0;
  }
}

.flow_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .flow_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .flow_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.flow_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 32px;
}
@media screen and (max-width: 800px) {
  .flow_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .flow_heading {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 auto 20px;
  }
}

.flow_list {
  width: 94%;
  max-width: 840px;
  margin: 0 auto;
  transform: translateX(6px);
}

.flow_item_pc {
  display: block;
}
@media screen and (max-width: 600px) {
  .flow_item_pc {
    display: none;
  }
}

.flow_item_sp {
  display: none;
}
@media screen and (max-width: 600px) {
  .flow_item_sp {
    display: block;
  }
}

/*--------------- qa ---------------*/
.qa {
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .qa {
    padding: 40px 0;
  }
}

.qa_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .qa_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .qa_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.qa_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 32px;
}
@media screen and (max-width: 800px) {
  .qa_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .qa_heading {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 auto 20px;
  }
}

.qa_content {
  max-width: 840px;
  width: 94%;
  margin: 0 auto;
}

.qa_list {
  border-radius: 10px;
  border: 2px solid #F4A100;
  overflow: hidden;
}

.qa_list:not(:last-child) {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .qa_list:not(:last-child) {
    margin-bottom: 16px;
  }
}

.qa_title {
  background-color: #F4A100;
  cursor: pointer;
  position: relative;
  line-height: 1.4;
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  padding: 12px 48px 12px 24px;
}
@media screen and (max-width: 800px) {
  .qa_title {
    font-size: 18px;
  }
}
@media screen and (max-width: 600px) {
  .qa_title {
    padding: 12px 32px 12px 12px;
  }
}

.qa_title_plus {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  right: 20px;
  width: 14px;
  height: 14px;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
}
@media screen and (max-width: 600px) {
  .qa_title_plus {
    right: 12px;
    width: 12px;
    height: 12px;
  }
}
.qa_title_plus::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.qa_title_plus::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #fff;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.3s ease-in-out;
}

.qa_title.open .qa_title_plus::before {
  transform: translateX(-50%) rotate(-90deg);
}

.qa_title_inner {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .qa_title_inner {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }
}
@media screen and (max-width: 600px) {
  .qa_title_inner {
    gap: 8px;
  }
}

.qa_title_icon {
  width: 52px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 100%;
  background-color: #333;
}
@media screen and (max-width: 800px) {
  .qa_title_icon {
    width: 32px;
  }
}

.qa_answer {
  display: none;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
  padding: 12px 24px;
}
@media screen and (max-width: 800px) {
  .qa_answer {
    font-size: 16px;
  }
}
@media screen and (max-width: 600px) {
  .qa_answer {
    padding: 12px;
  }
}

.qa_answer_inner {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  align-items: flex-start;
}
@media screen and (max-width: 800px) {
  .qa_answer_inner {
    grid-template-columns: 32px 1fr;
    gap: 12px;
  }
}
@media screen and (max-width: 600px) {
  .qa_answer_inner {
    gap: 8px;
  }
}

.qa_answer_icon {
  width: 52px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  border-radius: 100%;
}
@media screen and (max-width: 800px) {
  .qa_answer_icon {
    width: 32px;
  }
}

/*--------------- company ---------------*/
.company {
  background-color: #F5F5F5;
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .company {
    padding: 40px 0;
  }
}

.company_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .company_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .company_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.company_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 32px;
}
@media screen and (max-width: 800px) {
  .company_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .company_heading {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 auto 20px;
  }
}

.company_list {
  max-width: 840px;
  width: 94%;
  margin: 0 auto 40px;
}

.company_item {
  padding: 32px 0;
  font-size: 22px;
  font-weight: 500;
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  line-height: 1.3;
  border-bottom: 1px solid #2F210B;
}
@media screen and (max-width: 1000px) {
  .company_item {
    font-size: 20px;
    grid-template-columns: 200px 1fr;
  }
}
@media screen and (max-width: 800px) {
  .company_item {
    font-size: 18px;
    grid-template-columns: 150px 1fr;
  }
}
@media screen and (max-width: 600px) {
  .company_item {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 20px 0;
  }
}
@media screen and (max-width: 600px) {
  .company_item span {
    font-size: 16px;
    font-weight: 400;
  }
}

.company_img {
  width: 94%;
  max-width: 500px;
  margin: 0 auto;
}

/*---------------  ---------------*/
.message {
  padding: 200px 0 180px;
  background-image: url(../img/message_bg.webp);
  background-size: 100% 100%;
}
@media screen and (max-width: 600px) {
  .message {
    padding: 80px 0 80px;
  }
}

.message_wrap {
  max-width: 1000px;
  width: 94%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 40px;
  align-items: center;
}
@media screen and (max-width: 800px) {
  .message_wrap {
    grid-template-columns: 1fr;
  }
}

.message_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  width: -moz-fit-content;
  width: fit-content;
  line-height: 1.2;
  margin: 0 0 32px;
}
@media screen and (max-width: 800px) {
  .message_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .message_heading {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 0 20px;
  }
}

.message_name {
  font-weight: 700;
  font-size: 24px;
  display: block;
  margin-bottom: 24px;
}
@media screen and (max-width: 600px) {
  .message_name {
    font-size: 18px;
    margin-bottom: 16px;
  }
}

.message_des {
  line-height: 1.8;
  text-align: justify;
}

.message_img {
  box-shadow: 10px 10px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 800px) {
  .message_img {
    order: -1;
    max-width: 240px;
    margin: 0 auto;
  }
}

/*--------------- contact ---------------*/
.contact {
  background-color: rgba(255, 255, 241, 0.5);
  padding: 80px 0;
}
@media screen and (max-width: 600px) {
  .contact {
    padding: 40px 0;
  }
}

.contact_top_img {
  width: 210px;
  margin: 0 auto 24px;
}
@media screen and (max-width: 1000px) {
  .contact_top_img {
    width: 180px;
  }
}
@media screen and (max-width: 600px) {
  .contact_top_img {
    width: 140px;
    margin: 0 auto 8px;
  }
}

.contact_heading {
  background: linear-gradient(90deg, #2F210B 0%, #2F210B 40%, #956923 50%, #2F210B 90%, #2F210B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "Noto Serif JP", serif;
  font-weight: 700;
  font-size: 40px;
  text-align: center;
  line-height: 1.2;
  margin: 0 auto 32px;
}
@media screen and (max-width: 800px) {
  .contact_heading {
    font-size: 32px;
  }
}
@media screen and (max-width: 600px) {
  .contact_heading {
    font-size: 24px;
    line-height: 1.4;
    margin: 0 auto 20px;
  }
}

.contact_wrap {
  max-width: 870px;
  margin: 0 auto;
  width: 94%;
}

.contact_item h3 {
  color: #fff;
  font-size: 20px;
  padding: 8px;
  background-color: #F4A100;
  width: 50%;
  margin-bottom: 2px;
}
@media screen and (max-width: 600px) {
  .contact_item h3 {
    font-size: 16px;
    width: 100%;
  }
}

.contact_item {
  margin-bottom: 40px;
}
@media screen and (max-width: 600px) {
  .contact_item {
    margin-bottom: 24px;
  }
}

.contact_input input,
.contact_input textarea {
  width: 100%;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  background-color: #F4F4F4;
  padding: 12px 16px;
  line-height: 1.4;
}
.contact_input input::-moz-placeholder, .contact_input textarea::-moz-placeholder {
  color: #D9D9D9;
}
.contact_input input::placeholder,
.contact_input textarea::placeholder {
  color: #D9D9D9;
}

.contact_check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  margin: 0;
  cursor: pointer;
}

.contact_check label {
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  padding: 8px 0 8px 40px;
}
@media screen and (max-width: 600px) {
  .contact_check label {
    padding: 6px 0 6px 30px;
  }
}

.contact_check label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid #2F210B;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.2s;
}
@media screen and (max-width: 600px) {
  .contact_check label span::before {
    width: 24px;
    height: 24px;
  }
}

.contact_check input[type=checkbox]:checked + span::before {
  background-color: #06C755;
  border-color: #06C755;
}

.contact_check input[type=checkbox]:checked + span::after {
  content: "✓";
  position: absolute;
  left: 3px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  font-size: 24px;
}
@media screen and (max-width: 600px) {
  .contact_check input[type=checkbox]:checked + span::after {
    font-size: 20px;
    left: 1.5px;
  }
}

.contact_check {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  row-gap: 12px;
  margin-top: 20px;
}
@media screen and (max-width: 800px) {
  .contact_check {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 600px) {
  .contact_check {
    margin-top: 8px;
    row-gap: 6px;
  }
}

.contact_radio {
  display: flex;
  gap: 32px;
  margin-top: 20px;
}
@media screen and (max-width: 600px) {
  .contact_radio {
    margin-top: 8px;
  }
}

.contact_radio input[type=radio] {
  position: absolute;
  opacity: 0;
  width: 20px;
  height: 20px;
  margin: 0;
  cursor: pointer;
}

.contact_radio label {
  position: relative;
  display: inline-block;
  padding: 8px 0 8px 40px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  color: #333;
}
@media screen and (max-width: 600px) {
  .contact_radio label {
    padding: 6px 0 6px 30px;
  }
}

.contact_radio label span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  border: 1px solid #D9D9D9;
  border-radius: 50%;
  background-color: #fff;
  box-sizing: border-box;
  transition: all 0.2s;
}
@media screen and (max-width: 600px) {
  .contact_radio label span::before {
    width: 24px;
    height: 24px;
  }
}

.contact_radio input[type=radio]:checked + span::after {
  content: "";
  position: absolute;
  left: 10px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background-color: #06C755;
  border-radius: 50%;
  transition: all 0.2s;
}
@media screen and (max-width: 600px) {
  .contact_radio input[type=radio]:checked + span::after {
    left: 6px;
  }
}

.contact_note {
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 80px;
  line-height: 1.6;
}
@media screen and (max-width: 600px) {
  .contact_note {
    text-align: left;
    font-size: 12px;
    margin: 0 auto 40px;
  }
}
.contact_note span {
  text-decoration: underline;
  color: #2F210B;
}

.contact_banner {
  display: block;
  margin-bottom: 80px;
}
@media screen and (max-width: 600px) {
  .contact_banner {
    margin-bottom: 40px;
  }
}

.contact_btn {
  background: linear-gradient(140deg, #F4D300 0%, #FB7E00 100%);
  border-radius: 100px;
  width: 360px;
  height: 60px;
  margin: 0 auto;
  position: relative;
  transition: all 0.4s;
}
@media screen and (max-width: 600px) {
  .contact_btn {
    width: 280px;
  }
}
.contact_btn:hover {
  opacity: 0.6;
}
.contact_btn::after {
  content: "";
  position: absolute;
  width: 30px;
  height: 30px;
  background-image: url(../img/contact_icon.webp);
  background-size: 100% 100%;
  top: 50%;
  transform: translateY(-50%);
  right: 80px;
}
@media screen and (max-width: 600px) {
  .contact_btn::after {
    width: 24px;
    height: 24px;
    right: 40px;
  }
}

.contact_btn button {
  display: block;
  width: 100%;
  height: 100%;
  text-align: center;
  color: #fff;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 600px) {
  .contact_btn button {
    font-size: 20px;
  }
}

#formMessage {
  margin-top: 40px;
  text-align: center;
  padding: 12px 20px;
}

/*--------------- footer ---------------*/
.footer {
  background-color: #F4A100;
  padding: 12px 0;
}
@media screen and (max-width: 600px) {
  .footer {
    padding: 24px 0 60px;
  }
}

.footer_wrap {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
  color: #fff;
}
@media screen and (max-width: 600px) {
  .footer_wrap {
    font-size: 12px;
    gap: 12px;
  }
}

.footer_wrap a {
  color: #fff;
  transition: all 0.3s ease-in-out;
}
.footer_wrap a:hover {
  opacity: 0.6;
}/*# sourceMappingURL=index.css.map */