@charset "UTF-8";
/*==================================================================

  共通

==================================================================*/
/* アニメ */
@media not print {
  .inView {
    transition-property: opacity, transform;
    transition-timing-function: ease-out;
    transition-duration: 0.6s;
    opacity: 0;
    transform: translateY(30px);
  }
  .inView.inView-left {
    transform: translateX(-30px);
  }
  .inView.inView-delay {
    transition-delay: 0.2s;
  }
  .inView.inView-on {
    opacity: 1;
    transform: none;
  }
}

main {
  background: none;
}

/*==================================================================

  メインビジュアル

==================================================================*/
.home_mv {
  display: block;
  position: relative;
}

.home_mv_con {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
}

.home_mv_catch {
  width: 54.7%;
  max-width: 1050px;
  border: 10px solid rgb(221 201 193 / 0.3);
  font-family: "A1 Mincho";
  font-size: clamp(25px, 2.1vw, 40px);
  letter-spacing: 0.05em;
  line-height: 1.3;
  text-align: center;
  padding: 3.4% 0 2.9%;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 0.5);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home_mv_catch::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 0.9);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.home_mv_catch > * {
  position: relative;
}

.home_mv_catch_text2 {
  font-size: 113%;
  margin-top: 2.9%;
}

.home_mv_catch_text3 {
  max-width: 910px;
  width: 88%;
  font-size: 90%;
  background: rgb(109 82 72 / 0.3);
  padding: 2.7% 0;
  margin-inline: auto;
  margin-top: 4.9%;
}

/* メインスライド */
.home_mv_slide {
  overflow: hidden;
}

.home_mv_slide img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

@media screen and (max-width: 640px) {
  .home_mv_catch {
    width: 100%;
    border-width: 5px 0;
    font-size: clamp(13px, 4vw, 30px);
    letter-spacing: 0;
    padding: 10px 0;
  }
  .home_mv_catch::before {
    background: #fff;
  }
  .home_mv_catch_text2 {
    margin-top: 10px;
  }
  .home_mv_catch_text3 {
    width: 96%;
    font-size: 100%;
    padding: 5px 0;
    margin-top: 10px;
  }
}

/*==================================================================

  message

==================================================================*/
.message {
  padding-top: 200px;
  padding-bottom: 155px;
  background: url(../images/home/message_bg.jpg) center top no-repeat;
  position: relative;
  overflow: hidden;
}

.message::before {
  display: block;
  content: "";
  width: 36.5%;
  height: 100%;
  background: #f6f1eb;
  pointer-events: none;
  position: absolute;
  right: 0;
  top: 0;
}

.message .inner2 {
  position: relative;
}

.message_en {
  margin-bottom: 35px;
}

.message_tit {
  font-size: 50px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 50px;
}

.message_text {
  line-height: 2.1;
}

.message_text p:not(:last-child) {
  margin-bottom: 2.1em;
}

.message_text_end {
  font-size: 176%;
  font-family: "A1 Mincho";
  line-height: 1.6;
  margin-top: 110px;
}

@media print, screen and (min-width: 641px) {
  .message_flex {
    display: flex;
    justify-content: space-between;
  }
  .message_text {
    width: 57.4%;
    font-size: 17px;
  }
  .message_img {
    max-width: 760px;
    width: 54.3%;
    margin-right: -18.6%;
  }
}

@media print, screen and (min-width: 641px) and (max-width: 1760px) {
  .message_img {
    width: 39.6%;
    margin-right: 0;
  }
}

@media screen and (max-width: 640px) {
  .message {
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: 100% auto;
  }
  .message::before {
    width: 30%;
  }
  .message_en {
    margin-bottom: 20px;
  }
  .message_en img {
    width: auto;
    max-height: 40px;
  }
  .message_tit {
    font-size: clamp(16px, 5.3vw, 30px);
    margin-bottom: 40px;
  }
  .message_text_end {
    font-size: 143%;
    margin-top: 30px;
  }
  .message_img {
    margin-top: 20px;
  }
}

/*==================================================================

  trouble

==================================================================*/
.trouble {
  padding-top: 230px;
  padding-bottom: 140px;
  background: url(../images/home/trouble_bg.jpg) center top/cover no-repeat;
  text-align: center;
  color: #fff;
}

.trouble_en {
  margin-bottom: 40px;
}

.trouble_tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 54px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 0 auto 30px;
}

.trouble_tit span {
  display: block;
  font-size: 60%;
}

.trouble_tit::after {
  display: block;
  content: "";
  width: 100%;
  height: 10px;
  border-width: 1px 0;
  border-color: currentColor;
  border-style: solid;
}

.trouble_text {
  line-height: 1.7;
  padding: 25px 0 40px;
  background: rgb(35 46 54 / 0.2);
  margin-bottom: 40px;
}

.trouble_check_tit {
  display: flex;
  align-items: center;
  gap: 0 65px;
  max-width: 1028px;
  font-size: 24px;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 0 auto 45px;
}

.trouble_check_tit::before,
.trouble_check_tit::after {
  display: block;
  content: "";
  flex: 2;
  height: 1px;
  background: #fff;
}

.trouble_check {
  border: 1px solid #fff;
  line-height: 1.5;
  text-align: left;
  padding: 70px 65px 40px;
}

.trouble_check li {
  display: flex;
  align-items: center;
  gap: 0 8px;
}

.trouble_check li::before {
  display: block;
  content: "";
  flex-shrink: 0;
  width: 1.75em;
  height: 1.75em;
  background: url(../images/home/check.png) center/100% auto no-repeat;
}

@media print, screen and (min-width: 641px) {
  .trouble_text {
    font-size: 19px;
  }
  .trouble_check {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 0;
    font-size: 20px;
  }
  .trouble_check li {
    width: 413px;
  }
  .trouble_check li:nth-child(odd) {
    width: 655px;
    padding-right: 2em;
  }
}

@media screen and (max-width: 640px) {
  .trouble {
    padding-top: 60px;
    padding-bottom: 60px;
    background-image: url(../images/home/trouble_bg_sp.jpg);
  }
  .trouble_en {
    margin-bottom: 25px;
  }
  .trouble_en img {
    width: auto;
    max-height: 40px;
  }
  .trouble_tit {
    font-size: clamp(20px, 6.4vw, 30px);
  }
  .trouble_tit::after {
    margin-top: 5px;
  }
  .trouble_text {
    padding: 20px 3%;
    letter-spacing: 0.05em;
    margin-bottom: 30px;
  }
  .trouble_check_tit {
    gap: 0 10px;
    font-size: clamp(14px, 4.8vw, 18px);
    margin-bottom: 30px;
  }
  .trouble_check {
    padding: 6%;
  }
  .trouble_check li:not(:last-child) {
    margin-bottom: 15px;
  }
}

/*==================================================================

  whatis

==================================================================*/
.whatis {
  background: url(../images/home/whatis_bg.jpg) center top no-repeat;
  padding-top: 75px;
  padding-bottom: 180px;
  text-align: center;
}
.whatis_tit_dec {
  margin-bottom: 15px;
}
.whatis_tit_dec img {
  width: 84px;
}
.whatis_tit {
  font-size: 54px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 10px;
}
.whatis_en {
  color: #c29559;
  font-size: 24px;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 60px;
}
.whatis_text {
  font-size: 30px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.whatis_text_arrow {
  font-size: 133%;
  color: #c29559;
}
.whatis_text_marker {
  display: inline-block;
  background: linear-gradient(transparent 60%, #fbcead 60%);
  margin-bottom: 10px;
  padding-left: 24px;
}
.whatis_indication {
  margin-top: 65px;
}
.whatis_indication_tit {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 30px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding-bottom: 48px;
  background: url(../images/home/whatis_indication_tit.png) center bottom/auto 28px no-repeat;
  margin: 0 auto 20px;
  position: relative;
}
.whatis_indication_tit::before, .whatis_indication_tit::after {
  display: block;
  content: "";
  width: calc(50% - 16px);
  height: 2px;
  background: #d1c9c6;
  position: absolute;
  bottom: 26px;
}
.whatis_indication_tit::before {
  left: 0;
}
.whatis_indication_tit::after {
  right: 0;
}
.whatis_indication_text {
  display: flex;
  justify-content: center;
  gap: 0 20px;
  font-size: 14px;
}
.whatis_indication_text img {
  display: block;
  margin-bottom: 10px;
}
.whatis_flow {
  margin-top: 55px;
}
.whatis_flow_tit {
  font-size: 30px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 60px;
}
.whatis_flow_item {
  line-height: 1.8;
  box-shadow: 0px 0px 20px 0px rgb(0 0 0 / 0.15);
  padding: 20px 50px 45px;
}
.whatis_flow_item:not(:last-child) {
  margin-bottom: 45px;
}
.whatis_flow_item_tit {
  font-size: 50px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-bottom: 5px;
}
.whatis_flow_item_box {
  background: #f6f1eb;
  padding: 10px 15px 30px;
  margin-top: 40px;
}
.whatis_flow_item_img {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 154px;
}

@media print, screen and (min-width: 641px) {
  .whatis_flow_item {
    font-size: 17px;
  }
  .whatis_flow_item_box {
    min-height: 250px;
  }
  .whatis_flow_item:last-child .whatis_flow_item_box {
    padding-top: 30px;
  }
}

@media screen and (max-width: 640px) {
  .whatis {
    background-image: url(../images/home/whatis_bg_sp.jpg);
    background-size: 100% auto;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .whatis_tit_dec img {
    width: 56px;
  }
  .whatis_tit {
    font-size: clamp(20px, 6.4vw, 30px);
  }
  .whatis_en {
    font-size: clamp(14px, 4.8vw, 18px);
    margin-bottom: 40px;
  }
  .whatis_text {
    font-size: clamp(16px, 5.3vw, 20px);
  }
  .whatis_text_marker {
    padding-left: 1em;
  }
  .whatis_indication {
    margin-top: 40px;
  }
  .whatis_indication_tit {
    font-size: clamp(16px, 5.3vw, 20px);
    padding-bottom: 43px;
    margin-bottom: 0;
  }
  .whatis_indication_text {
    font-size: clamp(12px, 3.4vw, 14px);
  }
  .whatis_flow {
    margin-top: 40px;
  }
  .whatis_flow_tit {
    font-size: clamp(16px, 5.3vw, 20px);
    margin-bottom: 30px;
  }
  .whatis_flow_item {
    padding: 20px 3% 30px;
  }
  .whatis_flow_item:not(:last-child) {
    margin-bottom: 30px;
  }
  .whatis_flow_item_num img {
    width: 54px;
  }
  .whatis_flow_item_tit {
    font-size: clamp(24px, 8vw, 30px);
  }
  .whatis_flow_item_box {
    margin-top: 30px;
  }
  .whatis_flow_item_img {
    gap: 0 10px;
  }
  .whatis_flow_item_img:not(:last-child),
.whatis_flow_item_img p img {
    margin-bottom: 1em;
  }
  .whatis_flow_item_img p:not(:last-child) {
    margin-bottom: 25px;
  }
}

/*==================================================================

  fact

==================================================================*/
.fact {
  background: url(../images/home/fact_bg.jpg) center top/cover no-repeat;
  padding-top: 160px;
  padding-bottom: 220px;
  text-align: center;
  color: #fff;
  line-height: 2.1;
}
.fact_en {
  margin-bottom: 65px;
}
.fact_tit {
  font-size: 45px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.fact_text {
  font-size: 50px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.4;
  margin-top: 30px;
  margin-bottom: 70px;
}
.fact_text_strong {
  color: #f4d8bc;
  font-size: 140%;
}
.fact_text2 {
  display: block;
  font-size: 108%;
  line-height: 1;
  margin-top: 30px;
}
.fact_text2 img {
  vertical-align: bottom;
  margin-right: 0.7em;
}
.fact_text2_fsL {
  font-size: 167%;
}
.fact_con {
  background: #fff;
  padding: 95px 78px;
  color: var(--text-color);
  text-align: left;
  margin-top: 50px;
}
.fact_con_tit {
  font-size: 32px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  margin-bottom: 20px;
}
.fact_con_tit:not(:first-child) {
  padding-top: 50px;
  border-top: 1px solid #ddcebd;
  margin-top: 20px;
}
.fact_con > p {
  padding-inline: 32px;
}
.fact_con img {
  display: block;
  margin: 0 auto 20px;
}

@media print, screen and (min-width: 641px) {
  .fact {
    font-size: 19px;
  }
}

@media screen and (max-width: 640px) {
  .fact {
    background-image: url(../images/home/fact_bg_sp.jpg);
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .fact_en {
    margin-bottom: 30px;
  }
  .fact_en img {
    width: auto;
    max-height: 40px;
  }
  .fact_tit {
    font-size: clamp(18px, 5.3vw, 30px);
  }
  .fact_text {
    font-size: clamp(20px, 6.4vw, 30px);
    margin-top: 20px;
    margin-bottom: 30px;
  }
  .fact_text_strong {
    color: #f4d8bc;
    font-size: 140%;
  }
  .fact_text2 {
    line-height: 1.4;
    margin-top: 20px;
  }
  .fact_text2 img {
    vertical-align: baseline;
    margin-right: 0.1em;
    width: auto;
    max-height: 2em;
  }
  .fact_con {
    padding: 40px 3%;
    margin-top: 30px;
  }
  .fact_con_tit {
    font-size: clamp(16px, 4.8vw, 24px);
  }
  .fact_con_tit:not(:first-child) {
    padding-top: 30px;
  }
  .fact_con > p {
    padding-inline: 0;
  }
}

/*==================================================================

  treatment

==================================================================*/
.treatment {
  padding-top: 165px;
  background: url(../images/home/treatment_bg_c.png) right bottom 486px/41.6% auto no-repeat, url(../images/home/treatment_bg_t.jpg) center top no-repeat, url(../images/home/treatment_bg_b.jpg) center bottom no-repeat;
  overflow: hidden;
}
.treatment_head {
  text-align: center;
}
.treatment_en {
  margin-bottom: 40px;
  position: relative;
}
.treatment_tit {
  font-size: 50px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.7;
}
.treatment_tit span {
  display: block;
}
.treatment_tit_strong {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 80%;
  border: 1px solid currentColor;
  border-radius: 40px;
  margin: 0.6em auto 0;
}
.treatment_tit_fsL {
  font-size: 140%;
}
.treatment_tit_fsS {
  font-size: 90%;
  margin-top: -0.2em;
}
.treatment_tit_en {
  display: flex;
  align-items: center;
  gap: 0 60px;
  max-width: 730px;
  color: #c29559;
  font-size: 24px;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin: 12px auto 0;
}
.treatment_tit_en::before, .treatment_tit_en::after {
  display: block;
  content: "";
  flex: 2;
  height: 1px;
  background: currentColor;
}
.treatment_flex {
  padding-bottom: 90px;
}
.treatment_textArea {
  line-height: 2.1;
}
.treatment_text-fsL {
  font-family: "A1 Mincho";
  font-size: 158%;
  letter-spacing: 0.1em;
  line-height: 2;
  margin-bottom: 1.5em;
}
.treatment_btm {
  text-align: center;
}

@media print, screen and (min-width: 641px) {
  .treatment_head {
    padding-bottom: 5%;
    position: relative;
    z-index: 0;
  }
  .treatment_tit_strong {
    min-width: 498px;
  }
  .treatment_head_img {
    max-width: 614px;
    width: 32%;
    pointer-events: none;
    position: absolute;
    right: 0;
    bottom: 0;
    z-index: -1;
  }
  .treatment_flex {
    display: flex;
    justify-content: space-between;
    margin-top: -2.3%;
  }
  .treatment_imgArea {
    max-width: 742px;
    width: 53%;
    margin-left: -18.6%;
  }
  .treatment_imgArea img:first-child {
    max-width: 722px;
    width: 97.4%;
  }
  .treatment_imgArea img:nth-child(2) {
    max-width: 618px;
    display: block;
    width: 83.3%;
    margin-left: auto;
    margin-top: -6.5%;
  }
  .treatment_textArea {
    width: 62.9%;
    padding-top: 12%;
    font-size: 19px;
  }
}

@media print, screen and (min-width: 641px) and (max-width: 1560px) {
  .treatment_imgArea {
    width: calc(37.1% - 30px);
    margin-left: 0;
  }
}

@media screen and (max-width: 640px) {
  .treatment {
    background: url(../images/home/treatment_bg_b_sp.jpg) center bottom/100% auto no-repeat;
    padding-top: 0;
  }
  .treatment_head {
    background: url(../images/home/treatment_bg_t_sp.png) left -8% bottom 14%/40% auto no-repeat;
    padding-inline: 5%;
    margin-bottom: 30px;
  }
  .treatment_en {
    margin-top: -20px;
    margin-bottom: 20px;
  }
  .treatment_en img {
    width: auto;
    max-height: 38px;
  }
  .treatment_tit {
    font-size: clamp(18px, 5.3vw, 30px);
  }
  .treatment_tit_strong {
    padding: 3px 20px;
  }
  .treatment_tit_en {
    gap: 0 10px;
    font-size: clamp(14px, 4.8vw, 18px);
  }
  .treatment_head_img {
    text-align: right;
    margin-right: -6%;
  }
  .treatment_head_img img {
    width: 60%;
  }
  .treatment_flex {
    padding: 0 0 40px;
    background: url(../images/home/treatment_bg_c.png) right bottom/70% auto no-repeat;
  }
  .treatment_imgArea {
    text-align: center;
    margin-bottom: 30px;
  }
  .treatment_text {
    padding-inline: 5%;
  }
  .treatment_text-fsL {
    font-size: clamp(16px, 4.8vw, 18px);
  }
}

/*==================================================================

  home_links

==================================================================*/
.home_links {
  background: #f6f1eb;
  padding-top: 115px;
  padding-bottom: 115px;
}
.home_links a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 450px;
  min-height: 120px;
  color: #fff;
  font-size: 26px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  border: 10px solid #cca776;
  outline: 1px solid #fff;
  outline-offset: -10px;
  background-color: #c29559;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  padding: 10px;
}

@media (hover: hover) {
  .home_links a {
    transition: outline-offset 0.2s ease-in;
  }
  .home_links a:hover {
    outline-offset: -16px;
  }
}
.home_links a:nth-child(2) {
  background-image: url(../images/home/btn_bg1.jpg);
}
.home_links a:nth-child(3) {
  background-image: url(../images/home/btn_bg2.jpg);
}

@media print, screen and (min-width: 641px) {
  .home_links .inner2 {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    justify-content: center;
    gap: 20px;
  }
  .home_links a {
    width: 32.2%;
  }
}

@media screen and (max-width: 640px) {
  .home_links {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  .home_links a {
    max-width: 225px;
    min-height: 70px;
    font-size: 20px;
    border-width: 6px;
    outline-offset: -6px;
    margin-inline: auto;
  }
  .home_links a:not(:last-child) {
    margin-bottom: 15px;
  }
}

@media screen and (max-width: 640px) and (hover: hover) {
  .home_links a:hover {
    outline-offset: -10px;
  }
}

/*==================================================================

  counseling

==================================================================*/
.counseling {
  text-align: center;
  background-color: #f3f3f3;
  position: relative;
}
.counseling::before, .counseling::after {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
}
.counseling::before {
  background: linear-gradient(90deg, #9b7947 0%, #dfd3c3 100%);
  top: 0;
}
.counseling::after {
  background: linear-gradient(90deg, #dfd3c3 0%, #9b7947 100%);
  bottom: 0;
}
.counseling .inner2 {
  padding-block: 30px;
}
.counseling_en {
  margin-bottom: 25px;
}
.counseling_tit {
  font-size: 26px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.counseling_btnWrap {
  margin-top: 35px;
}
.counseling a {
  color: #fff;
}
.counseling_btn {
  display: block;
  font-size: 36px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  background: #f29b5b;
  border: 7px solid #eea671;
  padding: 14px 14px 10px;
  width: 100%;
  color: white;
}
.counseling_btn.counseling_btn-brown {
  border-color: #ddc1a5;
  background: url(../images/home/counseling_btn_bg2.jpg) center top no-repeat;
}
@media (hover: hover) {
  .counseling_btn:not([href^=tel]) {
    transition: opacity 0.3s ease-in;
  }
  .counseling_btn:not([href^=tel]):hover {
    opacity: 0.8;
  }
}
.counseling_btn > * {
  display: block;
}
.counseling_btn_text {
  font-size: 16px;
  letter-spacing: 0;
  background: rgb(168 78 0 / 0.3);
  padding: 12px 0;
}
.counseling_btn_tel {
  font-size: 46px;
  font-family: "meno-banner", serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.12em;
  line-height: 1;
  margin-top: 15px;
}
.counseling_btn_tel span {
  font-size: 60%;
}
.counseling_btn2 {
  display: flex;
  flex-flow: column;
  justify-content: center;
  max-width: 500px;
  min-height: 130px;
  color: #fff;
  font-size: 36px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  border: 7px solid #efb58b;
  background: url(../images/home/counseling_btn_bg.jpg) center;
  padding: 10px 14px;
  margin: 45px auto 0;
}
@media (hover: hover) {
  .counseling_btn2 {
    transition: opacity 0.3s ease-in;
  }
  .counseling_btn2:hover {
    opacity: 0.8;
  }
}

@media print, screen and (min-width: 641px) {
  .counseling {
    background-image: url(../images/home/counseling_bg.jpg), url(../images/home/counseling_bg2.jpg);
    background-position: left top, right top;
    background-repeat: no-repeat;
    background-size: contain;
  }
  .counseling.counseling-pattern2 {
    background-image: url(../images/home/counseling_bg.jpg), url(../images/home/counseling_bg3.jpg);
  }
  .counseling .inner2 {
    min-height: 500px;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .counseling .inner2 > * {
    width: 100%;
  }
  .counseling_btnWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
  }
  .counseling_btnWrap .counseling_btn {
    width: 450px;
  }
}

@media print, screen and (min-width: 641px) and (max-width: 1480px) {
  .counseling {
    background-position: left -100px top, right -170px top;
  }
}

@media screen and (max-width: 640px) {
  .counseling .inner2 {
    margin-top: -26%;
    margin-bottom: -12%;
    position: relative;
  }
  .counseling_en {
    margin-bottom: 20px;
  }
  .counseling_en img {
    width: auto;
    max-height: 42px;
  }
  .counseling_tit {
    font-size: clamp(18px, 5.3vw, 26px);
  }
  .counseling_btnWrap {
    margin-top: 20px;
  }
  .counseling_btn {
    font-size: clamp(22px, 5.8vw, 36px);
    padding: 10px;
  }
  .counseling_btn.counseling_btn-brown {
    background-size: cover;
  }
  .counseling_btn:not(:last-child) {
    margin-bottom: 15px;
  }
  .counseling_btn_text {
    font-size: clamp(14px, 4vw, 20px);
    letter-spacing: 0.1em;
    padding: 10px;
  }
  .counseling_btn_tel {
    font-size: clamp(24px, 8.5vw, 46px);
    margin-top: 10px;
  }
  .counseling_btn2 {
    max-width: 250px;
    min-height: 80px;
    font-size: 20px;
    background-size: cover;
    margin-top: 20px;
  }
}

/*==================================================================

  counseling2

==================================================================*/
.counseling2 {
  text-align: center;
  background: url(../images/home/counseling2_bg.jpg) #f3f3f3 center top 5px no-repeat;
  position: relative;
}
.counseling2::before, .counseling2::after {
  display: block;
  content: "";
  width: 100%;
  height: 5px;
  position: absolute;
  left: 0;
}
.counseling2::before {
  background: linear-gradient(90deg, #9b7947 0%, #dfd3c3 100%);
  top: 0;
}
.counseling2::after {
  background: linear-gradient(90deg, #dfd3c3 0%, #9b7947 100%);
  bottom: 0;
}
.counseling2 .inner2 {
  padding-block: 30px;
}
.counseling2_en {
  margin-bottom: 40px;
}
.counseling2_tit {
  font-size: 36px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.counseling2_btnWrap {
  margin-top: 50px;
}
.counseling2 a {
  color: #fff;
}
.counseling2_btn {
  display: block;
  font-size: clamp(30px, 1.8vw, 36px);
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.3;
  background: url(../images/home/counseling2_btn_bg.jpg) center top no-repeat;
  border: 7px solid #eea671;
  padding: 14px 30px 15px;
  width: 100%;
  color: white;
}
@media (hover: hover) {
  .counseling2_btn:not([href^=tel]) {
    transition: opacity 0.3s ease-in;
  }
  .counseling2_btn:not([href^=tel]):hover {
    opacity: 0.8;
  }
}
.counseling2_btn.counseling2_btn-brown {
  border-color: #ddc1a5;
  background: #bda685;
}
.counseling2_btn > * {
  display: block;
}
.counseling2_btn_text {
  font-size: clamp(18px, 1vw, 20px);
  letter-spacing: 0.1em;
  line-height: 1.6;
  background: rgb(168 78 0 / 0.3);
  padding: 9px 0;
  margin-bottom: 15px;
}
.counseling2_btn_tel > * {
  display: block;
}
.counseling2_btn_tel_tit {
  font-size: clamp(17px, 1vw, 20px);
  line-height: 1.3;
  text-align: left;
}
.counseling2_btn_tel_num {
  font-size: clamp(42px, 2.6vw, 50px);
  font-family: "meno-banner", serif;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0.12em;
  line-height: 1;
}
.counseling2_btn_tel_num span {
  font-size: 60%;
}

@media print, screen and (min-width: 641px) {
  .counseling2 .inner2 {
    min-height: 575px;
    display: flex;
    flex-flow: column;
    justify-content: center;
  }
  .counseling2 .inner2 > * {
    width: 100%;
  }
  .counseling2_btnWrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  .counseling2_btnWrap .counseling2_btn {
    width: 46.4%;
  }
  .counseling2_btn_tel {
    display: flex;
    justify-content: space-between;
  }
}

@media screen and (max-width: 640px) {
  .counseling2 {
    background-size: 960px auto;
  }
  .counseling2 .inner2 {
    padding-block: 60px;
  }
  .counseling2_en {
    margin-bottom: 20px;
  }
  .counseling2_en img {
    width: auto;
    max-height: 42px;
  }
  .counseling2_tit {
    font-size: clamp(16px, 4.8vw, 26px);
  }
  .counseling2_btnWrap {
    margin-top: 20px;
  }
  .counseling2_btn {
    font-size: clamp(22px, 5.8vw, 36px);
    padding: 10px;
    background-size: cover;
  }
  .counseling2_btn:not(:last-child) {
    margin-bottom: 15px;
  }
  .counseling2_btn_text {
    font-size: clamp(14px, 4vw, 20px);
    letter-spacing: 0.1em;
    padding: 10px;
    margin-bottom: 10px;
  }
  .counseling2_btn_tel_tit {
    font-size: clamp(14px, 4vw, 20px);
    text-align: center;
    margin-bottom: 10px;
  }
  .counseling2_btn_tel_num {
    font-size: clamp(24px, 8.5vw, 46px);
  }
}

/*==================================================================

  feature

==================================================================*/
.feature {
  padding-top: 90px;
  padding-bottom: 230px;
  text-align: center;
}
.feature_en {
  margin-bottom: 35px;
}
.feature_tit_head {
  max-width: 645px;
  font-size: 40px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  border: 1px solid currentColor;
  border-radius: 40px;
  padding: 7px 20px;
  margin: 0 auto 10px;
}
.feature_tit {
  font-size: 70px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.3;
  margin-bottom: 20px;
}
.feature_tit_en {
  display: flex;
  align-items: center;
  gap: 0 70px;
  max-width: 630px;
  color: #c29559;
  font-size: 24px;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-inline: auto;
}
.feature_tit_en::before, .feature_tit_en::after {
  display: block;
  content: "";
  flex: 2;
  height: 1px;
  background: currentColor;
}
.feature_list {
  max-width: 1820px;
  margin: 230px auto 0;
}
.feature_item {
  line-height: 2.1;
  padding: 1px 30px 4.1%;
  position: relative;
}
.feature_item:not(:last-child) {
  margin-bottom: 150px;
}
.feature_item_bg {
  background: #f4f1ec;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
.feature_item_bg img {
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  top: 0;
}
.feature_item_bg img:first-child {
  -o-object-position: left top;
     object-position: left top;
  left: 0;
}
.feature_item_bg img:last-child {
  -o-object-position: right top;
     object-position: right top;
  right: 0;
}
.feature_item_num {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -112px auto 3.1%;
}
.feature_item_num::before {
  display: block;
  content: "Point";
  color: #604d46;
  font-size: 30px;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.2em;
  line-height: 1;
  margin-bottom: 12px;
}
.feature_item_tit {
  font-size: 50px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.2;
  margin-bottom: 35px;
}
.feature_item_tit::after {
  display: block;
  content: "";
  max-width: 630px;
  width: 100%;
  height: 1px;
  background: currentColor;
  margin: 25px auto 0;
}
.feature_item_tit span span {
  font-size: 68%;
}
.feature_item_btn {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-width: 280px;
  min-height: 60px;
  border: 1px solid currentColor;
  font-size: 15px;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1.6;
  padding: 10px 20px;
  margin: 45px auto 0;
  position: relative;
  overflow: hidden;
}
.feature_item_btn, .feature_item_btn:hover {
  color: var(--text-color);
}
.feature_item_btn::before {
  display: block;
  content: "";
  width: 16px;
  aspect-ratio: 1;
  background: #f2914a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (hover: hover) {
  .feature_item_btn {
    transition: color 0.4s ease-out;
  }
  .feature_item_btn:hover {
    color: #fff;
  }
  .feature_item_btn::before {
    transition: 0.4s ease-out;
  }
  .feature_item_btn:hover::before {
    width: 100%;
    transform: translate(0, -50%);
    border-radius: 0;
  }
}

@media print, screen and (min-width: 641px) {
  .feature_item {
    min-height: 647px;
    font-size: 19px;
  }
  .feature_item_tit {
    display: flex;
    flex-flow: column;
    justify-content: flex-end;
    min-height: calc(2.4em + 25px);
  }
}

@media print, screen and (min-width: 641px) and (max-width: 1600px) {
  .feature_item {
    min-height: auto;
    font-size: clamp(16px, 1vw, 19px);
  }
  .feature_item_tit {
    font-size: clamp(36px, 2.6vw, 50px);
  }
}

@media screen and (max-width: 640px) {
  .feature {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .feature_en {
    margin-bottom: 20px;
  }
  .feature_en img {
    width: auto;
    max-height: 40px;
  }
  .feature_tit_head {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: clamp(16px, 4.8vw, 24px);
    padding: 3px 20px;
  }
  .feature_tit {
    font-size: clamp(24px, 7.4vw, 42px);
  }
  .feature_tit_en {
    gap: 0 10px;
    font-size: clamp(14px, 4.8vw, 18px);
  }
  .feature_list {
    margin-top: 40px;
  }
  .feature_item {
    padding: 72% 5% 52%;
  }
  .feature_item:not(:last-child) {
    margin-bottom: 5px;
  }
  .feature_item_bg::before, .feature_item_bg::after {
    display: block;
    content: "";
    width: 100%;
    position: absolute;
    left: 0;
    z-index: 1;
  }
  .feature_item_bg::before {
    aspect-ratio: 768/600;
    background: linear-gradient(0deg, #f4f1ec 0%, transparent 50%, transparent 100%);
    top: 0;
  }
  .feature_item_bg::after {
    aspect-ratio: 768/500;
    background: linear-gradient(0deg, transparent 0%, transparent 50%, #f4f1ec 100%);
    bottom: 0;
  }
  .feature_item_bg img {
    width: 100%;
    height: auto;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .feature_item_bg img:first-child {
    top: auto;
    bottom: 0;
  }
  .feature_item_num {
    margin-top: -60px;
    margin-bottom: 25px;
  }
  .feature_item_num::before {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .feature_item_num img {
    width: 82px;
  }
  .feature_item_tit {
    font-size: clamp(16px, 5.3vw, 20px);
    margin-bottom: 20px;
  }
  .feature_item_tit::after {
    margin-top: 15px;
  }
  .feature_item_btn {
    min-width: auto;
    padding: 10px 40px;
    margin-top: 30px;
  }
}

/*==================================================================

  case

==================================================================*/
.case {
  padding-top: 90px;
  padding-bottom: 165px;
  background: url(../images/home/case_bg.jpg) #c29559 center top no-repeat;
  text-align: center;
}
.case_en {
  margin-bottom: 25px;
}
.case_tit {
  color: #fff;
  font-size: 40px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
  margin-bottom: 70px;
}
.case_tit span {
  display: block;
  font-size: 175%;
}
.case_item {
  line-height: 1.8;
  background: #fff;
  padding: 75px 7.1% 130px;
}
.case_item:not(:last-child) {
  margin-bottom: 50px;
}
.case_item_tit {
  flex-shrink: 0;
  font-size: 70px;
  color: #f5c58f;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.case_item_head {
  display: flex;
  justify-content: space-between;
  margin-bottom: 70px;
}
.case_item_head_illust {
  max-width: 220px;
  width: 19%;
  padding-top: 10px;
}
.case_item_head_text {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: 55%;
  background: #e9dccc;
  padding: 20px 45px;
  text-align: left;
}
.case_item_flow {
  counter-reset: case_num 0;
}
.case_item_flow li {
  counter-increment: case_num;
}
.case_item_flow li:not(:last-child) {
  margin-bottom: 55px;
}
.case_item_flow li::before {
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  content: counter(case_num, decimal-leading-zero);
  width: 60px;
  height: 60px;
  font-size: 32px;
  color: #fff;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1;
  background: #c29559;
  margin: 0 auto 25px;
}
.case_item_flow_row {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px 15px;
}
.case_item_flow_row:not(:first-child) {
  margin-top: 20px;
}
.case_item_flow_row.case_item_flow_row-arrow {
  gap: 20px 60px;
}
.case_item_flow_row.case_item_flow_row-arrow > * {
  display: block;
}
.case_item_flow_row.case_item_flow_row-arrow > *:not(:last-child) {
  position: relative;
}
.case_item_flow_row.case_item_flow_row-arrow > *:not(:last-child)::before {
  display: block;
  content: "";
  width: 18px;
  height: 20px;
  background: #c29559;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: -30px;
  top: calc(50% - 20px);
  transform: translate(50%, -50%);
}
.case_item_flow_text {
  margin-top: 30px;
}
.case_item_detail {
  line-height: 1.7;
  text-align: left;
  border: 1px solid currentColor;
  margin-top: 95px;
}
.case_item_detail > * {
  padding: 19px 55px 19px 30px;
}
.case_item_detail > *:not(:last-of-type) {
  border-bottom: 1px solid currentColor;
}
.case_item_detail dt {
  background: #e9dccc;
}
.case_btn {
  margin-top: 75px;
}
.case_btn a {
  display: flex;
  flex-flow: column;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  min-height: 140px;
  font-size: 26px;
  color: var(--text-color);
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.4;
  background: url(../images/home/case_btn_arrow.png) right 22px center/14px auto no-repeat;
  background-color: #fff;
  border: 10px solid #f3eade;
  outline: 1px solid #c59556;
  outline-offset: -10px;
  padding: 10px 36px;
  margin-inline: auto;
}
@media (hover: hover) {
  .case_btn a {
    transition: outline-offset 0.2s ease-in;
  }
  .case_btn a:hover {
    outline-offset: -16px;
  }
}
.case_btn_en {
  display: block;
  font-size: 16px;
  color: #f2914a;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.2em;
  line-height: 1.6;
  margin-top: 5px;
}

@media print, screen and (min-width: 641px) {
  .case_item {
    font-size: 20px;
  }
  .case_item_detail {
    display: flex;
    flex-wrap: wrap;
    font-size: 18px;
  }
  .case_item_detail dt {
    width: 400px;
  }
  .case_item_detail dd {
    width: calc(100% - 400px);
  }
  .case_btn a {
    min-width: 550px;
  }
}

@media screen and (max-width: 640px) {
  .case {
    padding-top: 60px;
    padding-bottom: 60px;
    background-size: 100% auto;
  }
  .case_en {
    margin-bottom: 20px;
  }
  .case_en img {
    width: auto;
    max-height: 40px;
  }
  .case_tit {
    font-size: clamp(18px, 5.3vw, 30px);
    margin-bottom: 40px;
  }
  .case_tit span {
    font-size: 140%;
  }
  .case_item {
    padding: 30px 6%;
  }
  .case_item:not(:last-child) {
    margin-bottom: 40px;
  }
  .case_item_tit {
    font-size: clamp(40px, 10.6vw, 50px);
  }
  .case_item_head {
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 0 15px;
    margin-bottom: 40px;
  }
  .case_item_head_illust {
    width: 80px;
    padding-top: 0;
  }
  .case_item_head_text {
    width: 100%;
    padding: 20px;
  }
  .case_item_flow li:not(:last-child) {
    margin-bottom: 40px;
  }
  .case_item_flow_row {
    flex-wrap: wrap;
    gap: 15px;
  }
  .case_item_flow_row.case_item_flow_row-arrow {
    gap: 50px 15px;
  }
  .case_item_flow_row.case_item_flow_row-arrow > *:not(:last-child)::before {
    width: 20px;
    height: 18px;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
    right: auto;
    left: 50%;
    top: auto;
    bottom: -25px;
    transform: translate(-50%, 50%);
  }
  .case_item_flow_text {
    margin-top: 15px;
  }
  .case_item_detail {
    margin-top: 40px;
  }
  .case_item_detail > * {
    padding: 10px 15px;
  }
  .case_btn {
    margin-top: 40px;
  }
  .case_btn a {
    min-height: 120px;
    font-size: 20px;
    background-position: right 15px center;
    padding: 10px 40px;
  }
}

/*==================================================================

  topics

==================================================================*/
.topics {
  padding-top: 95px;
  padding-bottom: 115px;
}
.topics_head {
  margin-bottom: 45px;
}
.topics_tit_jp {
  font-size: 26px;
  font-family: "A1 Mincho";
  letter-spacing: 0.1em;
  line-height: 1.6;
}
.topics_btn a {
  color: var(--text-color);
  font-size: 15px;
  font-family: "meno-banner", serif;
  font-weight: 400;
  font-style: italic;
  letter-spacing: 0.1em;
  line-height: 1.3;
  padding-left: 1em;
  position: relative;
}
.topics_btn a::before {
  display: block;
  content: "";
  width: 6px;
  aspect-ratio: 1;
  background: #f2914a;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media (hover: hover) {
  .topics_btn a::before {
    transition: 0.2s ease-in;
  }
  .topics_btn a:hover::before {
    width: 1em;
    left: -5px;
  }
}
.topics_list {
  border-top: 1px solid #daccbe;
}
.topics_list li {
  display: flex;
  flex-wrap: wrap;
  gap: 0 25px;
  border-bottom: 1px solid #daccbe;
  font-size: 14px;
  line-height: 1.4;
  padding-block: 30px;
}
.topics_list li > * {
  display: block;
}
.topics_list li > span {
  color: #9a9a9a;
}
.topics_list li > em {
  display: flex;
  align-items: center;
  color: #f2914a !important;
  font-weight: bold;
  background: none !important;
}
.topics_list li > em::before {
  display: block;
  content: "";
  width: 20px;
  height: 1px;
  background: #bda685;
  margin-right: 25px;
}
.topics_list li > a {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  color: var(--text-color);
  font-size: 18px;
  margin-top: 30px;
}
@media (hover: hover) {
  .topics_list li > a {
    transition: color 0.3s;
  }
  .topics_list li > a:hover {
    color: var(--main-color);
  }
}

@media print, screen and (min-width: 641px) {
  .topics {
    padding-inline: 100px;
  }
  .topics_head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
  }
  .topics_tit {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
  }
  .topics_tit_jp {
    margin-left: 60px;
  }
  .topics_tit_jp::before {
    content: "/";
    font-size: 77%;
    padding-right: 60px;
  }
}

@media screen and (max-width: 640px) {
  .topics {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .topics_head {
    margin-bottom: 10px;
  }
  .topics_tit_en {
    margin-bottom: 10px;
  }
  .topics_tit_en img {
    width: auto;
    max-height: 34px;
  }
  .topics_tit_jp {
    font-size: 20px;
  }
  .topics_btn {
    text-align: right;
    margin-top: 30px;
  }
  .topics_list li {
    gap: 0 10px;
    padding-block: 20px;
  }
  .topics_list li > em::before {
    margin-right: 10px;
  }
  .topics_list li > a {
    font-size: 100%;
    margin-top: 10px;
  }
}
