@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+Antique:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap");
/* mixins */
/* functions */
* {
  box-sizing: border-box; /*余白や線を幅や高さに含める*/
}

body {
  width: 100%;
  font-family: YakuhanMP, "Noto Serif JP", sans-serif;
  color: #222;
  font-weight: 500;
  font-size: 4.2vw;
  font-feature-settings: "palt";
  line-height: 1.8;
  letter-spacing: 0.1em;
  overflow-x: hidden;
  -moz-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 18px;
    width: 100%;
    position: relative;
  }
}

.serif {
  font-family: "Noto Serif JP", serif;
}

.zenkaku {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
.smp-block {
  display: block;
}
@media screen and (min-width: 768px) {
  .smp-block {
    display: none;
  }
}

.tab-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-block {
    display: block;
  }
}
@media screen and (min-width: 1000px) {
  .tab-block {
    display: none;
  }
}

.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-block {
    display: block;
  }
}

.pc-middle-block {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-block {
    display: block;
  }
}

.pc-middle02-block {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-block {
    display: block;
  }
}

.pc-large-block {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-block {
    display: block;
  }
}

.smp-inline {
  display: inline;
}
@media screen and (min-width: 768px) {
  .smp-inline {
    display: none;
  }
}

.pc-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc-inline {
    display: inline;
  }
}

.tab-inline {
  display: none;
}
@media screen and (min-width: 768px) {
  .tab-inline {
    display: inline;
  }
}
@media screen and (min-width: 1000px) {
  .tab-inline {
    display: none;
  }
}

.pc-middle-inline {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-middle-inline {
    display: inline;
  }
}

.pc-middle02-inline {
  display: none;
}
@media screen and (min-width: 1100px) {
  .pc-middle02-inline {
    display: inline;
  }
}

.pc-large-inline {
  display: none;
}
@media screen and (min-width: 1280px) {
  .pc-large-inline {
    display: inline;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
}

a, button {
  color: var(--base-text-color);
  text-decoration: none;
  transition: all var(--base-transition-time);
}

a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}

span.inline-block {
  display: inline-block;
}

:root {
  --base-width: 1000px;
  --base-width-sp: 82%;
  --max-width-sp: 94%;
  --base-inline-sp: 9%;
  --base-color: #000000;
  --base-text-color: #000000;
  --c-red: #e60012;
  --c-blue: #005299;
  --c-dark-blue: #002444;
  --base-font-size: 17px;
  --base-font-size-sp: vw(17);
  --font-zenkaku: 'Zen Kaku Gothic New', sans-serif;
}

/*======================================================================================*/
.l-header {
  position: absolute;
  top: 2%;
  left: 50%;
  width: 52%;
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .l-header {
    width: 21%;
    max-width: 285px;
    top: 25px;
    left: 40px;
    translate: 0;
  }
}

.l-footer {
  width: 65%;
  margin-inline: auto;
  padding-block: 9.3333333333vw 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-footer {
    max-width: 480px;
    padding-block: 80px 90px;
  }
}

a.application-fix {
  position: fixed;
  bottom: 5vw;
  left: 0;
  right: 0;
  margin: auto;
  display: block;
  border: 1px solid #FFFFFF;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 10;
  border-radius: 50em;
  text-align: center;
  color: #fff;
  width: 88%;
  font-size: 5.3333333333vw;
  letter-spacing: 0.06em;
  padding: 0.9em 0;
  transition: all 0.3s;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  a.application-fix {
    width: 136px;
    height: 136px;
    margin: 0;
    font-size: 20px;
    bottom: 30px;
    left: auto;
    right: 30px;
  }
  a.application-fix:hover::after {
    transform: translate(-50%, -50%) scale(0.88);
  }
  a.application-fix:hover span {
    transform: scale(0.88);
  }
}
@media screen and (min-width: 1000px) {
  a.application-fix {
    bottom: 50px;
    right: 50px;
  }
}
a.application-fix.fix-btn-none {
  opacity: 0;
  pointer-events: none;
}
a.application-fix::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50em;
  transition: all 0.3s;
  border: solid 1px #fff;
  transition: all 0.3s;
  background: linear-gradient(0deg, #692340 1%, #771D36 6%, #9F0D1E 14%, #C20009 21%, #E7290F 76%);
}
a.application-fix::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: solid 2px #fff;
  border-radius: 50em;
  transition: all 0.3s;
  box-sizing: border-box;
}
a.application-fix span {
  position: relative;
  z-index: 1;
  transition: all 0.3s;
}

body {
  background-image: url(../myimg/main-bg02_sp.webp);
  background-size: contain;
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1000px) {
  body {
    background-image: none;
  }
}

@media screen and (min-width: 768px) {
  .content-wrap {
    position: relative;
    z-index: 1;
    background-image: url(../myimg/main-bg.webp);
    background-size: cover;
    background-position: center top;
    margin-top: -15%;
  }
}

@media (height <= 630px) and (width <= 768px) {
  .content-wrap {
    padding-bottom: 16vw;
  }
}
.target {
  position: relative;
  margin-top: -23%;
  background-image: url(../myimg/main-bg01_sp.webp);
  background-size: cover;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .target {
    width: 57vw;
    margin-inline: auto;
    margin-top: 3.9%;
    background-image: none;
    background-color: transparent;
  }
}

.target-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2vw;
  width: var(--base-width-sp);
  margin-inline: auto;
  padding-top: 20%;
}
@media screen and (min-width: 768px) {
  .target-list {
    width: 100%;
    gap: 2%;
    padding-top: 0;
  }
}
.target-list li {
  position: relative;
  width: 48%;
  overflow: clip;
}
@media screen and (min-width: 768px) {
  .target-list li {
    width: 23%;
  }
}

.event-button {
  margin-top: 8vw;
  max-width: 81.3333333333vw;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .event-button {
    margin-top: 50px;
  }
}
@media screen and (min-width: 1000px) {
  .event-button {
    margin-top: 85px;
  }
}
.event-button a.event-button-link {
  display: block;
  text-align: center;
  color: #fff;
  border-radius: 50em;
  padding: 0.5em 0;
  box-sizing: border-box;
  font-size: 5.3333333333vw;
  line-height: 1.3;
  letter-spacing: 0.06em;
  position: relative;
}
@media screen and (min-width: 768px) {
  .event-button a.event-button-link {
    max-width: 750px;
    margin-inline: auto;
    padding: 0.6em 0;
    font-size: 32px;
    transition: all 0.4s;
    background-position: bottom;
  }
  .event-button a.event-button-link:hover::after {
    width: calc(100% - 18px);
    height: calc(100% - 15px);
  }
  .event-button a.event-button-link:hover span {
    transform: scale(0.94);
  }
}
.event-button a.event-button-link > span {
  position: relative;
  display: block;
  z-index: 1;
  transition: all 0.3s;
}
.event-button a.event-button-link::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50em;
  transition: all 0.3s;
  border: solid 1px #fff;
  background: linear-gradient(0deg, #692340 1%, #771D36 6%, #9F0D1E 14%, #C20009 21%, #E7290F 76%);
}
.event-button a.event-button-link::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border: solid 2px #fff;
  border-radius: 50em;
  box-sizing: border-box;
  transition: all 0.3s;
}
.event-button a.event-button-link span {
  position: relative;
  display: block;
  z-index: 1;
  transition: all 0.3s;
}
.event-button .event-note {
  margin-top: 4vw;
  font-size: 2.9333333333vw;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .event-button .event-note {
    margin-top: 30px;
    font-size: 12px;
  }
}

.main__lead {
  margin-top: 5.3333333333vw;
  font-size: 4.2666666667vw;
  letter-spacing: 0.025em;
  text-indent: -0.025em;
  line-height: 2;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .main__lead {
    margin-top: 35px;
    font-size: 18px;
    line-height: 2.5;
  }
}
@media screen and (min-width: 1000px) {
  .main__lead {
    margin-top: 65px;
  }
}

.problems {
  width: 93%;
  max-width: 1100px;
  margin-top: 6.6666666667vw;
  margin-inline: auto;
  padding: 9.3333333333vw 9.3333333333vw 10.6666666667vw;
  background-color: #efecd6;
}
@media screen and (min-width: 768px) {
  .problems {
    margin-top: 70px;
    padding: 35px 45px;
  }
}
@media screen and (min-width: 1000px) {
  .problems {
    margin-top: 50px;
    padding: 70px 140px;
  }
}

.problems-header .problems__title {
  font-size: 4.8vw;
  letter-spacing: 0.1em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .problems-header .problems__title {
    font-size: 23px;
  }
}

.problems-container {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .problems-container {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    margin-top: 55px;
  }
}
@media screen and (min-width: 1000px) {
  .problems-container {
    gap: 30px;
  }
}

.problems-content {
  width: 93%;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .problems-content {
    width: 100%;
  }
}
.problems-content + .problems-content {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .problems-content + .problems-content {
    margin-top: 0;
  }
}
.problems-content:nth-child(even) .problems-character {
  flex-direction: row;
}
@media screen and (min-width: 768px) {
  .problems-content:nth-child(even) .problems-character {
    flex-direction: column;
  }
}
.problems-content:nth-child(even) .problems-character .problems-content__voice {
  margin-left: 0;
  margin-right: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .problems-content:nth-child(even) .problems-character .problems-content__voice {
    margin-right: 0;
  }
}
.problems-content:nth-child(even) .problems-character .problems-content__voice::after {
  left: calc(100% - 1px);
  right: auto;
  border-width: 1.7333333333vw 0px 1.7333333333vw 3.4666666667vw;
  border-color: transparent transparent transparent #665d06;
}
@media screen and (min-width: 768px) {
  .problems-content:nth-child(even) .problems-character .problems-content__voice::after {
    top: 100%;
    left: 50%;
    border-width: 20px 10px 0px 10px;
    border-color: #665d06 transparent transparent transparent;
  }
}

.problems-character {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  .problems-character {
    flex-direction: column;
    align-items: center;
  }
}
.problems-character .problems-content__voice {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 53%;
  height: 5.7em;
  margin-top: 1.5em;
  margin-left: 2.6666666667vw;
  padding: 0.8em;
  border-radius: 15px;
  background-color: #665d06;
  color: #fff;
  font-size: 3.4666666667vw;
  letter-spacing: 0.085em;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .problems-character .problems-content__voice {
    width: 165px;
    font-size: 15px;
    margin-left: 0;
  }
}
.problems-character .problems-content__voice::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(100% - 1px);
  translate: 0 -50%;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 1.7333333333vw 3.4666666667vw 1.7333333333vw 0px;
  border-color: transparent #665d06 transparent transparent;
}
@media screen and (min-width: 768px) {
  .problems-character .problems-content__voice::after {
    top: 100%;
    left: 50%;
    translate: -50% 0;
    border-width: 20px 10px 0px 10px;
    border-color: #665d06 transparent transparent transparent;
  }
}
.problems-character .problems-content-image {
  width: 41%;
}
@media screen and (min-width: 768px) {
  .problems-character .problems-content-image {
    width: 160px;
    margin-top: 10px;
  }
}

.problems-content-point {
  margin-top: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .problems-content-point {
    margin-top: 30px;
  }
}
.problems-content-point .problems-content__lead {
  padding: 1.2em 0.8em;
  background-color: #fff;
  border-top-right-radius: 14.6666666667vw;
  font-size: 4vw;
  letter-spacing: 0.085em;
  line-height: 1.45;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .problems-content-point .problems-content__lead {
    border-top-right-radius: 50px;
    font-size: 15px;
  }
}
.problems-content-point .problems-content__lead + .problems-content__lead {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .problems-content-point .problems-content__lead + .problems-content__lead {
    margin-top: 30px;
  }
}

.problems__beginning {
  margin-top: 13.3333333333vw;
  padding: 0.5em;
  background-color: #d3cd95;
  font-size: 4.2666666667vw;
  letter-spacing: 0;
  line-height: 1.3;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .problems__beginning {
    margin-top: 50px;
    font-size: 23px;
    letter-spacing: 0.15em;
  }
}

.consultation {
  width: 93%;
  max-width: 1100px;
  margin-top: 8vw;
  margin-inline: auto;
  padding: 10.6666666667vw 6.6666666667vw 12vw;
  background-color: #d8d1a2;
}
@media screen and (min-width: 768px) {
  .consultation {
    margin-top: 50px;
    padding: 35px 50px 50px;
  }
}
@media screen and (min-width: 1000px) {
  .consultation {
    margin-top: 85px;
    padding: 70px 100px 100px;
  }
}

.consultation-wrapper {
  color: #36495f;
}

.consultation-header {
  padding: 0.35em 1em;
  border-radius: 2.1333333333vw;
  background-color: #36495f;
  color: #fff;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .consultation-header {
    width: 565px;
    margin-inline: auto;
    padding: 0.45em 1em;
    border-radius: 8px;
  }
}

.consultation__txt {
  margin: 0;
  font-size: 4.2666666667vw;
  letter-spacing: 0.08em;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .consultation__txt {
    font-size: 18px;
  }
}

.consultation-content {
  padding-top: 6.6666666667vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .consultation-content {
    padding-top: 35px;
  }
}
@media screen and (min-width: 1000px) {
  .consultation-content {
    padding-top: 50px;
  }
}

.consultation-inner {
  margin-bottom: 5.8666666667vw;
  border-bottom: 1px solid rgba(54, 73, 95, 0.38);
  padding-bottom: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  .consultation-inner {
    width: 565px;
    margin-bottom: 35px;
    margin-inline: auto;
    padding-bottom: 35px;
  }
}

.consultation__title {
  margin: 0;
  font-size: 4.8vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .consultation__title {
    font-size: 33px;
  }
}

.consultation__lead {
  margin: 2.6666666667vw 0 0;
  font-size: 4.2666666667vw;
  letter-spacing: 0.04em;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .consultation__lead {
    margin-top: 15px;
    font-size: 18px;
  }
}
.consultation__lead sup {
  font-size: 0.6em;
  vertical-align: super;
}

.consultation-divider {
  height: 1px;
  margin: 5.8666666667vw 0 3.7333333333vw;
  background-color: rgba(54, 73, 95, 0.38);
}
@media screen and (min-width: 768px) {
  .consultation-divider {
    margin: 35px 0 25px;
  }
}

.consultation__heading {
  margin: 0;
  font-size: 4.5333333333vw;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .consultation__heading {
    font-size: 18px;
  }
}

.consultation__description {
  margin: 2.6666666667vw 0 0;
  font-size: 3.7333333333vw;
  letter-spacing: 0.05em;
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 768px) {
  .consultation__description {
    max-width: 780px;
    margin: 18px auto 0;
    font-size: 16px;
  }
}

.consultation-image {
  overflow-x: auto;
}
@media screen and (min-width: 768px) {
  .consultation-image {
    overflow-x: visible;
  }
}
.consultation-image img {
  max-width: none;
  width: 780px;
}
@media screen and (min-width: 768px) {
  .consultation-image img {
    max-width: 100%;
    width: 100%;
  }
}

.consultation-note {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .consultation-note {
    margin-top: 50px;
  }
}
.consultation-note .consultation-note__lead {
  padding-left: 2.1em;
  color: #000;
  font-size: 3.2vw;
  letter-spacing: 0.06em;
  line-height: 1.67;
  text-align: left;
  text-indent: -2.1em;
}
@media screen and (min-width: 768px) {
  .consultation-note .consultation-note__lead {
    font-size: 12px;
    line-height: 1.5;
    letter-spacing: 0.035em;
  }
}/*# sourceMappingURL=style.css.map */