@charset "UTF-8";
/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

button {
  background: none;
  border: none;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

#root,
#__next {
  isolation: isolate;
}

html {
  width: 100%;
  height: 100%;
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  color: #181818;
  line-height: 1.8;
}

main {
  position: relative;
}

@media screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
}

@media screen and (min-width: 769px) {
  .sp_only {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .mv {
    height: 400px; /* スマホ時のみ高さ固定 */
  }
  .mv-img {
    height: 100%;
    width: auto;
    object-fit: cover; /* 縦横比を保ちつつカバー */
  }
}

.section {
  max-width: 768px;
  width: 100%;
  margin: 0 auto;
}

.fade_in {
  transform: translateY(50px);
  opacity: 0;
  pointer-events: none;
  transition: transform 0.7s ease, opacity 0.7s linear;
}
.fade_in.active {
  transform: translateY(0px);
  opacity: 1;
  pointer-events: auto;
}

.disp_inline {
  display: inline-block;
}

.ta_center {
  text-align: center;
}

body {
  transition: background-color 1.5s linear;
}
body.section_01 {
  background-color: #181818;
}
body.section_02 {
  background-color: #EEEEEE;
}
body.section_03 {
  background-color: #FFFFFF;
}
body.section_04 {
  background-color: #020202;
}
body.section_05 {
  background-color: #181818;
}
body.section_06 {
  background-color: #FFFFFF;
}

.bg-scroll {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.bg-scroll-inner {
  height: 15.625vw;
  aspect-ratio: 150/13;
  display: flex;
  animation: horizontalScroll 12s infinite linear;
}
@media screen and (min-width: 769px) {
  .bg-scroll-inner {
    height: 120px;
  }
}
.bg-scroll-inner img {
  width: auto;
  height: 100%;
}

@keyframes horizontalScroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
.mv {
  position: relative;
  width: 100%;
  /*aspect-ratio: 768/992;*/
  background-color: #181818;
}
@media screen and (min-width: 769px) {
  .mv {
    height: 850px;
  }
}
.mv-img {
  width: 100%;
  object-fit: cover;
}
.mv-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 13.0208333333vw;
  z-index: 10;
  background-color: #ffffff;
}
.mv-logo img {
  width: 48.4375vw;
}
@media screen and (min-width: 769px) {
  .mv-logo img {
    width: 372px;
  }
}
@media screen and (min-width: 769px) {
  .mv-logo {
    height: 100px;
  }
}
.mv-content {
  position: absolute;
  bottom: 0; 
  left: 50%;
  transform: translateX(-50%);
  width: 80.7291666667vw;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .mv-content {
    bottom: 70px; 
    width: 620px;
  }
}
.mv-content-price {
  display: block;
  width: 72.9166666667vw;
  margin: 0 auto 3.90625vw;
}
@media screen and (min-width: 769px) {
  .mv-content-price {
    width: 560px;
    margin: 25px auto 30px;
  }
}
.mv-content-head {
  display: flex;
  justify-content: space-between;
}
.mv-content-head p {
  font-size: 3.515625vw;
  padding: 0.1302083333vw 2.0833333333vw 0.6510416667vw;
  color: #ffffff;
  background-color: #CC606D;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .mv-content-head p {
    font-size: 28px;
    padding: 1px 16px 5px;
  }
}
.mv-content-body {
  background-color: rgba(239, 206, 212, 0.2);
  width: 100%;
  border: solid 1px #CC606D;
  padding: 5.2083333333vw 5.2083333333vw 3.90625vw;
}
@media screen and (min-width: 769px) {
  .mv-content-body {
    padding: 40px 40px 30px;
  }
}
.mv-content-body-txt {
  font-size: 4.4270833333vw;
  text-align: center;
  color: #ffffff;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .mv-content-body-txt {
    font-size: 34px;
  }
}
.mv-content-body-txt span {
  font-size: 7.2916666667vw;
}
@media screen and (min-width: 769px) {
  .mv-content-body-txt span {
    font-size: 56px;
  }
}
.mv-content-body-access {
  display: flex;
  align-items: flex-start;
  margin-top: 2.6041666667vw;
  border-top: solid 1px #CC606D;
}
@media screen and (min-width: 769px) {
  .mv-content-body-access {
    margin-top: 20px;
  }
}
.mv-content-body-access-head {
  display: inline-flex;
  padding: 0.1302083333vw 5.2083333333vw 0.390625vw;
  font-size: 3.125vw;
  color: #ffffff;
  letter-spacing: 0.05em;
  background-color: #CC606D;
}
@media screen and (min-width: 769px) {
  .mv-content-body-access-head {
    padding: 1px 40px 3px;
    font-size: 24px;
  }
}
.mv-content-body-access-address {
  padding: 1.3020833333vw 5.46875vw 0;
  font-size: 1.5625vw;
  color: #ffffff;
  font-weight: 300;
  line-height: 1.8;
}
@media screen and (min-width: 769px) {
  .mv-content-body-access-address {
    padding: 10px 42px 0;
    font-size: 12px;
  }
}

.campaign {
  position: relative;
  width: 100%;
  background-color: #181818;
  padding-top: 37.7604166667vw;
}
@media screen and (min-width: 769px) {
  .campaign {
    padding-top: 290px;
  }
}
.campaign_container {
  padding: 0.5em 1em;
    border: double 5px #ffffff;
}
.campaign .bg-scroll {
  position: absolute;
  top: 3.90625vw;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .campaign .bg-scroll {
    top: 30px;
  }
}
.campaign-inner {
  position: relative;
  width: 100%;
  z-index: 10;
  margin-bottom: 39px;
}
.campaign-point {
  position: absolute;
  top: -2.6041666667vw;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2.6041666667vw 4.8177083333vw;
  width: 65.1041666667vw;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .campaign-point {
    top: -20px;
    gap: 20px 37px;
    width: 500px;
  }
}
.campaign-point-txt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 17.96875vw;
  height: 17.96875vw;
  background-color: #E2E2E2;
  border: solid 1px #EFCED4;
  border-radius: 50%;
}
@media screen and (min-width: 769px) {
  .campaign-point-txt {
    width: 138px;
    height: 138px;
  }
}
.campaign-point-txt p {
  font-size: 2.34375vw;
  color: #181818;
  text-align: center;
  font-weight: 600;
  line-height: 1.2;
}
@media screen and (min-width: 769px) {
  .campaign-point-txt p {
    font-size: 18px;
  }
}
.campaign-title {
  position: relative;
  width: 55.2083333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  .campaign-title {
    width: 424px;
  }
}
.campaign-title-txt {
  position: absolute;
  top: 41%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  font-size: 2.734375vw;
  color: #181818;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .campaign-title-txt {
    font-size: 21px;
  }
}
.campaign-commission {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-top: 1.3020833333vw;
}
@media screen and (min-width: 769px) {
  .campaign-commission {
    margin-top: 10px;
  }
}
.campaign-commission-title {
  font-size: 1.8229166667vw;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  line-height: 1;
  border: solid 1px #ffffff;
  padding: 1.4322916667vw 5.2083333333vw;
  margin-right: 1.953125vw;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .campaign-commission-title {
    font-size: 14px;
    border: solid 1px #ffffff;
    padding: 11px 40px;
    margin-right: 15px;
  }
}
.campaign-commission-txt {
  position: relative;
  font-size: 3.515625vw;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  padding: 0 1.3020833333vw;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .campaign-commission-txt {
    font-size: 27px;
    padding: 0 10px;
  }
}
.campaign-commission-txt span {
  font-size: 5.2083333333vw;
}
@media screen and (min-width: 769px) {
  .campaign-commission-txt span {
    font-size: 40px;
  }
}
.campaign-commission-txt::after {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  border-top: solid 1px #ffffff;
}
.campaign-free {
  display: block;
  width: 24.7395833333vw;
  height: auto;
  margin: 3.90625vw auto 0;
}
@media screen and (min-width: 769px) {
  .campaign-free {
    width: 190px;
    margin: 30px auto 0;
  }
}
.campaign-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 78.90625vw;
  height: 12.229167vw;
    margin: 3.90625vw auto 0;
  font-size: 3.6458333333vw;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
  background-color: #CC606D;
  border-radius: 9.1145833333vw;
  letter-spacing: 0.15em;
  box-shadow: 0.6510416667vw 0.6510416667vw 1.0416666667vw rgba(73, 73, 73, 0.75);
  animation: btn_pop 3s ease-in-out infinite;
}
@media screen and (min-width: 769px) {
  .campaign-btn {
    width: 606px;
    height: 88px;
    margin: 16px auto 0;
    font-size: 28px;
    border-radius: 70px;
  }
}
.campaign-btn-top {
  position: relative;
  font-size: 2.734375vw;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
  padding: 6.5104166667vw 3.90625vw 0;
}
@media screen and (min-width: 769px) {
  .campaign-btn-top {
    font-size: 21px;
    padding: 50px 30px 0;
  }
}
.campaign-btn-top .large {
  font-size: 3.6458333333vw;
}
@media screen and (min-width: 769px) {
  .campaign-btn-top .large {
    font-size: 28px;
  }
}
.campaign-btn-top .pink {
  color: #CC606D;
}
.campaign-btn-top .decoration {
  font-size: 4.4270833333vw;
  padding: 0 1.3020833333vw;
}
@media screen and (min-width: 769px) {
  .campaign-btn-top .decoration {
    font-size: 34px;
    padding: 0 10px;
  }
}
.campaign-btn-box {
  position: relative;
  padding-bottom: 6.5104166667vw;
  background-color: #181818;
}
@media screen and (min-width: 769px) {
  .campaign-btn-box {
    padding-bottom: 50px;
  }
}
.campaign-btn-box:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 33.8541666667vw;
  z-index: 1;
  background-color: #ffffff;
  clip-path: polygon(0 60%, 142% 0, 100% 100%, 0 100%);}
@media screen and (min-width: 769px) {
  .campaign-btn-box:before {
    height: 260px;
  }
}
.campaign-btn-box-inner {
  position: relative;
  z-index: 10;
}
@keyframes btn_pop {
  0% {
    transform: scale(1);
  }
  70% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
.campaign-note {
  margin-top: 3.90625vw;
  font-size: 1.8229166667vw;
  color: #606060;
  text-align: center;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .campaign-note {
    margin-top: 30px;
    font-size: 14px;
  }
}

.worries {
  background-color: #EEEEEE;
  padding: 7.1614583333vw 0;
}
@media screen and (min-width: 769px) {
  .worries {
    padding: 55px 0;
  }
}
.worries-txt {
  font-size: 1.8229166667vw;
  color: #181818;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 2.6041666667vw;
}
@media screen and (min-width: 769px) {
  .worries-txt {
    font-size: 14px;
    margin-bottom: 20px;
  }
}
.worries-title {
  font-size: 3.90625vw;
  color: #181818;
  text-align: center;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .worries-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.worries-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  width: 58.59375vw;
  margin: 0 auto;
  gap: 2.6041666667vw;
}
@media screen and (min-width: 769px) {
  .worries-list {
    width: 450px;
    gap: 20px;
  }
}
.worries-list-item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 27.4739583333vw;
  height: 8.7239583333vw;
  border: solid 1px #181818;
  background-color: #ffffff;
  box-shadow: 0 0 1.0416666667vw rgba(178, 178, 178, 0.75);
}
@media screen and (min-width: 769px) {
  .worries-list-item {
    width: 211px;
    height: 67px;
    box-shadow: 0 0 8px rgba(178, 178, 178, 0.75);
  }
}
.worries-list-item p {
  font-size: 2.0833333333vw;
  color: #181818;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  .worries-list-item p {
    font-size: 16px;
  }
}

.solution_01 {
  background-color: #ffffff;
  width: 100%;
}
.solution_01-title {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 9.1145833333vw 10.4166666667vw;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .solution_01-title {
    padding: 70px 80px;
  }
}
.solution_01-title .bg-scroll {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: -1;
}
.solution_01-title-txt {
  font-size: 3.90625vw;
  color: #181818;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
}
.solution_01-title-txt:last-child {
  text-align: right;
}
@media screen and (min-width: 769px) {
  .solution_01-title-txt {
    font-size: 30px;
  }
}
.solution_01-title-img {
  margin: 3.90625vw 0;
  padding: 0 2.6041666667vw;
}
@media screen and (min-width: 769px) {
  .solution_01-title-img {
    margin: 30px 0;
    padding: 0 20px;
  }
}
.solution_02 {
  padding: 3.90625vw 0 7.8125vw;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  .solution_02 {
    padding: 30px 0 60px;
  }
}
.solution_02 .solution-list-item {
  margin-bottom: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .solution_02 .solution-list-item {
    margin-bottom: 30px;
  }
}
.solution_02 .solution-list-item:nth-child(odd) {
  flex-direction: row-reverse;
}
.solution-list-item {
  display: flex;
  align-items: center;
}
.solution-list-item.active .solution-list-item-left-title-box {
  width: 100%;
}
.solution-list-item.active .solution-list-item-left-sub-box {
  width: 100%;
}
.solution-list-item-left {
  width: 50%;
  padding: 3.90625vw 2.6041666667vw;
}
@media screen and (min-width: 769px) {
  .solution-list-item-left {
    padding: 30px 20px;
  }
}
.solution-list-item-left-title {
  display: block;
  font-size: 1.953125vw;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.15em;
  padding: 1.3020833333vw 1.3020833333vw;
  white-space: nowrap;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  .solution-list-item-left-title {
    font-size: 15px;
    padding: 10px 10px;
  }
}
.solution-list-item-left-title.small {
  font-size: 1.6927083333vw;
}
@media screen and (min-width: 769px) {
  .solution-list-item-left-title.small {
    font-size: 13px;
  }
}
.solution-list-item-left-title-box {
  display: inline-block;
  background-color: #CC606D;
  width: 0;
  transition: width 0.5s ease-in-out 0.7s;
  margin-bottom: 1.3020833333vw;
}
@media screen and (min-width: 769px) {
  .solution-list-item-left-title-box {
    margin-bottom: 10px;
  }
}
.solution-list-item-left-sub {
  display: block;
  font-size: 2.734375vw;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  padding: 1.3020833333vw 1.0416666667vw;
  letter-spacing: 0.1em;
  white-space: nowrap;
  overflow: hidden;
}
.solution-list-item-left-sub .small {
  font-size: 1.953125vw;
}
@media screen and (min-width: 769px) {
  .solution-list-item-left-sub {
    font-size: 21px;
    padding: 10px 8px;
  }
  .solution-list-item-left-sub .small {
    font-size: 15px;
  }
}
.solution-list-item-left-sub-box {
  display: inline-block;
  background-color: #181818;
  width: 0;
  transition: width 0.5s ease-in-out 0.7s;
  margin-bottom: 0.5208333333vw;
}
@media screen and (min-width: 769px) {
  .solution-list-item-left-sub-box {
    margin-bottom: 4px;
  }
}
.solution-list-item-left-txt {
  margin-top: 3.90625vw;
  font-size: 1.953125vw;
  color: #181818;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .solution-list-item-left-txt {
    margin-top: 30px;
    font-size: 15px;
  }
}
.solution-list-item-right {
  width: 50%;
}

.health {
  position: relative;
  padding: 10.4166666667vw 0 13.0208333333vw;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  .health {
    padding: 80px 0 100px;
  }
}
.health-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
}
.health-inner {
  position: relative;
  z-index: 10;
}
.health-logo {
  display: block;
  width: 28.3854166667vw;
  height: 15.8854166667vw;
  margin: 0 auto;
  fill: #ffffff;
}
@media screen and (min-width: 769px) {
  .health-logo {
    width: 218px;
    height: 122px;
  }
}
.health-title {
  margin-top: 3.90625vw;
  font-size: 3.90625vw;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 769px) {
  .health-title {
    margin-top: 30px;
    font-size: 30px;
  }
}
.health-title span {
  font-size: 5.9895833333vw;
}
@media screen and (min-width: 769px) {
  .health-title span {
    font-size: 46px;
  }
}
.health-sub {
  margin-top: 20.8333333333vw;
  font-size: 3.90625vw;
  color: #181818;
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .health-sub {
    margin-top: 160px;
    font-size: 30px;
  }
}
.health-list {
  margin-top: 7.8125vw;
  display: flex;
  flex-wrap: wrap;
  padding: 0 1.3020833333vw;
}
@media screen and (min-width: 769px) {
  .health-list {
    margin-top: 60px;
    padding: 0 10px;
  }
}
.health-list-item {
  width: 50%;
  padding: 0 3.90625vw;
}
.health-list-item:nth-child(odd) {
  border-right: 0.5px solid #000;
}
.health-list-item:nth-child(-n+2) .health-list-item-inner {
  border-bottom: 0.5px solid #000;
}
@media screen and (min-width: 769px) {
  .health-list-item {
    padding: 0 30px;
  }
}
.health-list-item-inner {
  height: 100%;
  padding: 5.2083333333vw 0;
}
@media screen and (min-width: 769px) {
  .health-list-item-inner {
    padding: 40px 0;
  }
}
.health-list-item-inner img {
  display: block;
  width: 8.203125vw;
  height: 6.5104166667vw;
  margin: 0 auto 3.90625vw;
}
@media screen and (min-width: 769px) {
  .health-list-item-inner img {
    width: 63px;
    height: 50px;
    margin: 0 auto 30px;
  }
}
.health-list-item-inner-title {
  font-size: 1.953125vw;
  color: #181818;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .health-list-item-inner-title {
    font-size: 15px;
    margin-bottom: 30px;
  }
}
.health-list-item-inner-txt {
  padding: 0 2.6041666667vw;
  font-size: 1.953125vw;
  color: #606060;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .health-list-item-inner-txt {
    padding: 0 20px;
    font-size: 15px;
  }
}
.health-list-item-inner-txt li {
  position: relative;
  padding-left: 1em;
}
.health-list-item-inner-txt li:before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.message {
  position: relative;
  padding: 15.625vw 0;
  z-index: 10;
}
.message::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181818;
  z-index: -1;
  clip-path: polygon(0 0, 100% 0, 100% 98%, 0 100%);
}
@media screen and (min-width: 769px) {
  .message {
    padding: 120px 0;
  }
}
.message .bg-scroll {
  position: absolute;
  top: -7.8125vw;
  left: 0;
  z-index: 1;
}
@media screen and (min-width: 769px) {
  .message .bg-scroll {
    top: -60px;
  }
}
.message-inner {
  padding: 0 6.5104166667vw;
}
@media screen and (min-width: 769px) {
  .message-inner {
    padding: 0 50px;
  }
}
.message-ceo {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 7.8125vw;
}
@media screen and (min-width: 769px) {
  .message-ceo {
    margin-bottom: 60px;
  }
}
.message-ceo img {
  width: 52.0833333333vw;
}
@media screen and (min-width: 769px) {
  .message-ceo img {
    width: 400px;
  }
}
.message-ceo-txt {
  position: relative;
  display: inline;
  padding: 2.6041666667vw 1.953125vw 3.2552083333vw 0;
  margin-left: 1.5625vw;
  font-size: 4.9479166667vw;
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
  writing-mode: vertical-rl;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .message-ceo-txt {
    padding: 20px 15px 25px 0;
    margin-left: 12px;
    font-size: 38px;
  }
}
.message-ceo-txt img {
  position: absolute;
  top: 0;
  right: 0;
  width: auto;
  height: 100%;
  z-index: -1;
}
.message-ceo-txt span {
  font-size: 5.46875vw;
  vertical-align: 0.390625vw;
  margin-top: 0.5208333333vw;
}
@media screen and (min-width: 769px) {
  .message-ceo-txt span {
    font-size: 42px;
    padding: 0 10px;
  }
}
.message-ceo-txt-box {
  display: flex;
  align-items: flex-start;
}
.message-txt {
  font-size: 1.953125vw;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .message-txt {
    font-size: 15px;
  }
}
.message-trainer {
  margin-top: 7.8125vw;
}
@media screen and (min-width: 769px) {
  .message-trainer {
    margin-top: 60px;
  }
}
.message-trainer-title {
  margin-bottom: 3.90625vw;
  font-size: 3.90625vw;
  color: #ffffff;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .message-trainer-title {
    margin-bottom: 30px;
    font-size: 30px;
  }
}
.message-trainer-list {
  display: flex;
  gap: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .message-trainer-list {
    gap: 30px;
  }
}
.message-trainer-list-item {
  width: 50%;
}
.message-trainer-list-item img {
  object-fit: cover;
  aspect-ratio: 1/1;
}
.message-trainer-list-item-name {
  margin-top: 1.8229166667vw;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  line-height: 1;
}
.message-trainer-list-item-name .jp {
  display: inline-block;
  font-size: 2.6041666667vw;
  margin-bottom: 1.5625vw;
}
@media screen and (min-width: 769px) {
  .message-trainer-list-item-name .jp {
    font-size: 20px;
    margin-bottom: 12px;
  }
}
.message-trainer-list-item-name .en {
  font-size: 2.0833333333vw;
}
@media screen and (min-width: 769px) {
  .message-trainer-list-item-name .en {
    font-size: 16px;
  }
}
.message-trainer-list-item-career {
  margin-top: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .message-trainer-list-item-career {
    margin-top: 30px;
  }
}
.message-trainer-list-item-career h4 {
  font-size: 2.0833333333vw;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .message-trainer-list-item-career h4 {
    font-size: 16px;
  }
}
.message-trainer-list-item-career .health-list-item-inner-txt {
  margin-top: 1.3020833333vw;
  padding: 0;
  color: #ffffff;
}
@media screen and (min-width: 769px) {
  .message-trainer-list-item-career .health-list-item-inner-txt {
    margin-top: 10px;
  }
}

.reason {
  position: relative;
  margin: -15.625vw 0;
  padding: 20.8333333333vw 6.5104166667vw;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  .reason {
    margin: -120px 0;
    padding: 160px 50px;
  }
}
.reason img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
.reason-title {
  font-size: 3.90625vw;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .reason-title {
    font-size: 30px;
    margin-bottom: 30px;
  }
}
.reason-txt {
  margin-bottom: 7.8125vw;
  font-size: 1.953125vw;
  color: #ffffff;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .reason-txt {
    margin-bottom: 60px;
    font-size: 15px;
  }
}
.reason-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2.6041666667vw;
}
@media screen and (min-width: 769px) {
  .reason-list {
    gap: 20px;
  }
}
.reason-list-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 1.3020833333vw);
  background-color: rgba(255, 255, 255, 0.2);
  border: solid 1px #CC606D;
  padding: 2.6041666667vw 2.6041666667vw 1.953125vw;
}
@media screen and (min-width: 769px) {
  .reason-list-item {
    width: calc(50% - 10px);
    padding: 20px 20px 15px;
  }
}
.reason-list-item-img {
  height: 5.2083333333vw;
  width: 9.1145833333vw;
  margin-bottom: 2.6041666667vw;
  fill: #ffffff;
}
@media screen and (min-width: 769px) {
  .reason-list-item-img {
    height: 30px;
    width: 50px;
    margin-bottom: 30px;
  }
}
.reason-list-item-img.img_01 {
  height: 4.4270833333vw;
  margin-bottom: 3.3854166667vw;
}
@media screen and (min-width: 769px) {
  .reason-list-item-img.img_01 {
    height: 24px;
    margin-bottom: 26px;
  }
}
.reason-list-item p {
  font-size: 1.953125vw;
  color: #ffffff;
  text-align: center;
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (min-width: 769px) {
  .reason-list-item p {
    font-size: 15px;
  }
}

.flow {
  position: relative;
  padding: 20.8333333333vw 0;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .flow {
    padding: 160px 0;
  }
}
.flow-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  z-index: -1;
}
.flow-title {
  margin-bottom: 13.0208333333vw;
  font-size: 3.90625vw;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.15em;
}
@media screen and (min-width: 769px) {
  .flow-title {
    margin-bottom: 100px;
    font-size: 30px;
  }
}
.flow-list {
  padding: 0 6.5104166667vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2.34375vw;
}
@media screen and (min-width: 769px) {
  .flow-list {
    padding: 0 50px;
    gap: 18px;
  }
}
.flow-list-item {
  position: relative;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  padding: 7.8125vw 6.5104166667vw 6.5104166667vw;
}
@media screen and (min-width: 769px) {
  .flow-list-item {
    padding: 60px 50px 50px;
  }
}
.flow-list-item-num {
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: -4.6875vw;
  left: 50%;
  transform: translateX(-50%);
  width: 10.9375vw;
  height: 9.375vw;
  z-index: 10;
}
@media screen and (min-width: 769px) {
  .flow-list-item-num {
    top: -36px;
    width: 84px;
    height: 72px;
  }
}
.flow-list-item-num-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #CC606D;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  z-index: -1;
}
.flow-list-item-num-bg_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.flow-list-item-num-bg_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.flow-list-item-num-txt {
  font-size: 1.8229166667vw;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
  font-style: italic;
  padding-right: 0.6510416667vw;
}
@media screen and (min-width: 769px) {
  .flow-list-item-num-txt {
    font-size: 14px;
    padding-right: 5px;
  }
}
.flow-list-item-num-txt span {
  font-size: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .flow-list-item-num-txt span {
    font-size: 30px;
  }
}
.flow-list-item-title {
  font-size: 2.6041666667vw;
  color: #181818;
  text-align: center;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .flow-list-item-title {
    font-size: 20px;
  }
}
.flow-list-item-txt {
  margin-top: 2.0833333333vw;
  font-size: 1.953125vw;
  text-align: center;
  color: #606060;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .flow-list-item-txt {
    margin-top: 16px;
    font-size: 15px;
  }
}
.flow_02 {
  margin-top: -13.0208333333vw;
  padding-bottom: 18.2291666667vw;
}
@media screen and (min-width: 769px) {
  .flow_02 {
    margin-top: -100px;
    padding-bottom: 140px;
  }
}

.impressions {
  position: relative;
  padding: 9.1145833333vw 0 13.0208333333vw;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  .impressions {
    padding: 70px 0 0;
  }
}
.impressions .bg-scroll {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.impressions-inner {
  position: relative;
  z-index: 10;
  padding: 0 6.5104166667vw;
}
@media screen and (min-width: 769px) {
  .impressions-inner {
    padding: 0 50px;
  }
}
.impressions-title {
  font-size: 3.90625vw;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  padding: 1.3020833333vw 2.6041666667vw;
}
@media screen and (min-width: 769px) {
  .impressions-title {
    font-size: 30px;
    padding: 10px 20px;
  }
}
.impressions-title-box {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 75.9114583333vw;
  height: 8.4635416667vw;
  margin: 0 auto 7.8125vw;
}
@media screen and (min-width: 769px) {
  .impressions-title-box {
    width: 583px;
    height: 65px;
    margin: 0 auto 60px;
  }
}
.impressions-title-box:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #181818;
  clip-path: polygon(5% 0%, 0% 100%, 95% 100%, 100% 0%);
  z-index: -1;
}
.impressions-age {
  font-size: 2.6041666667vw;
  color: #181818;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 1.3020833333vw;
}
@media screen and (min-width: 769px) {
  .impressions-age {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
.impressions-txt {
  margin-bottom: 7.8125vw;
  font-size: 1.953125vw;
  color: #181818;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .impressions-txt {
    margin-bottom: 60px;
    font-size: 15px;
  }
}
.impressions img {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .impressions img {
    margin-bottom: 30px;
  }
}

.link {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #606060;
  z-index: 100;
}
.link-inner {
  max-width: 768px;
  margin: 0 auto;
  padding: 3.6458333333vw 6.5104166667vw 4.6875vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .link-inner {
    padding: 28px 50px 36px;
  }
}
.link-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.6041666667vw;
  width: 41.6666666667vw;
  height: 8.59375vw;
  background-color: #181818;
  box-shadow: 0.6510416667vw 0.6510416667vw 1.0416666667vw rgba(73, 73, 73, 0.75);
}
.link-item:last-child {
  background-color: #CC606D;
}
@media screen and (min-width: 769px) {
  .link-item {
    padding: 0 20px;
    width: 320px;
    height: 66px;
    box-shadow: 5px 5px 8px rgba(73, 73, 73, 0.75);
  }
}
.link-item-inner {
  display: flex;
  align-items: center;
  gap: 6.5104166667vw;
}
.link-item_01{
  padding-left: 10%;
}
@media screen and (min-width: 769px) {
  .link-item-inner {
    gap: 50px;
  }
}
.link-item svg {
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  fill: #ffffff;
}
@media screen and (min-width: 769px) {
  .link-item svg {
    width: 32px;
    height: 32px;
  }
}
.link-item p {
  font-size: 2.34375vw;
  color: #ffffff;
  font-weight: 400;
  line-height: 1;
}
@media screen and (min-width: 769px) {
  .link-item p {
    font-size: 18px;
  }
}
@media screen and (min-width: 769px) {
  .link-item.phone {
    pointer-events: none;
  }
  .link-item.phone p {
    font-size: 22px;
    font-weight: 600;
  }
  .link-item.phone p span {
    margin: 0 5px;
  }
}

.form {
  padding-bottom: 24.7395833333vw;
  background-color: #ffffff;
  height: calc(730px + 24.7395833333vw);
}
@media screen and (min-width: 769px) {
  .form {
    padding-bottom: 190px;
    margin-bottom: -100px;
    height: 920px;
  }
}

iframe {
  width: 100%;
  height: 100%;
}

.reasonable {
  padding: 13.0208333333vw 0;
  background-color: #181818;
}
@media screen and (min-width: 769px) {
  .reasonable {
    padding: 100px 0;
  }
}
.reasonable-inner {
  padding: 0 15px;
}
@media screen and (min-width: 769px) {
  .reasonable-inner {
  }
}
.reasonable-title {
  font-size: 6.7708333333vw;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-bottom: 7.8125vw;
}
@media screen and (min-width: 769px) {
  .reasonable-title {
    font-size: 52px;
    margin-bottom: 60px;
  }
}
.reasonable-title span {
  font-size: 8.8541666667vw;
}
@media screen and (min-width: 769px) {
  .reasonable-title span {
    font-size: 68px;
  }
}
.reasonable-title-img {
  display: block;
  margin: 0 auto;
  width: 46.875vw;
  height: 4.4270833333vw;
  fill: #ffffff;
  margin-bottom: 3.90625vw;
}
@media screen and (min-width: 769px) {
  .reasonable-title-img {
    width: 360px;
    height: 34px;
    margin-bottom: 30px;
  }
}

.faq {
  padding: 13.0208333333vw 0;
  background-color: #ffffff;
}
@media screen and (min-width: 769px) {
  .faq {
    padding: 20px 0;
  }
}
.faq-inner {
  padding: 0 6.5104166667vw;
}
@media screen and (min-width: 769px) {
  .faq-inner {
    padding: 80px 50px;
  }
}
.faq-title {
  font-size: 3.90625vw;
  color: #181818;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 7.8125vw;
}
@media screen and (min-width: 769px) {
  .faq-title {
    font-size: 30px;
    margin-bottom: 60px;
  }
}

.accordion-button {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 2.6041666667vw 2.6041666667vw 2.6041666667vw 0;
  border-bottom: solid 1px #000;
}
@media screen and (min-width: 769px) {
  .accordion-button {
    padding: 20px 20px 20px 0;
  }
}
.accordion-button-title {
  font-size: 3.125vw;
  font-weight: 600;
  color: #181818;
  letter-spacing: 0.05em;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .accordion-button-title {
    font-size: 24px;
  }
}
.accordion-button .plus {
  position: relative;
  width: 2.6041666667vw;
  height: 2.6041666667vw;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  .accordion-button .plus {
    width: 20px;
    height: 20px;
  }
}
.accordion-button .plus:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  border-bottom: solid 1px #181818;
}
.accordion-button .plus:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 100%;
  border-left: solid 1px #181818;
  transition: height 0.3s;
}
.accordion-button.active .plus:after {
  height: 0;
}

.accordion-content {
  overflow: hidden;
  height: 0;
}
.accordion-content-inner {
  padding: 2.6041666667vw 0;
  display: flex;
  align-items: flex-start;
}
@media screen and (min-width: 769px) {
  .accordion-content-inner {
    padding: 20px 0;
  }
}
.accordion-content-inner p {
  font-size: 1.953125vw;
  color: #181818;
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (min-width: 769px) {
  .accordion-content-inner p {
    font-size: 15px;
  }
}/*# sourceMappingURL=style.css.map */
.accordion {
  margin-bottom: 100px;
}
.course {

}
.course_content {
  background-color: #FFFFFF;
    border-radius: 7px;
    margin: 0 15px 15px;
    padding-bottom: 20px;
}
.course_content-title {
  font-size: 2.4rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
  background-color: #CC606D;
  padding: 5px 10px;
  border-radius: 7px 7px 0 0;

}
.course_content-price {
  font-size: 5.2rem;
  font-family: "Oswald", sans-serif;
  padding: 0 15px;

}
.course_content-price span {
  font-size: 1.6rem;
  margin-left: 10px;
    padding: 3px 8px;
}
.course_content-pricetext {
  background-color: #181818;
  color: #ffffff;
}
.course_content-text {
  font-size: 1.6rem;
  margin: 0 15px;
  border-top:dashed 2px;
  padding-top: 16px;
}
.fw {
  margin-top: 100px;
}
.footer {
  margin: 0 auto;
  padding-bottom: 150px;
}
.footer_container {
  display: flex;
justify-content: center;
  gap: 20px;
  align-items: center;
}
.footer_address{
  font-size: 16px;
  font-style: normal;
}
.footer_map {
  width: 40%;
  height: 330px;
}
.footer_address-tel {
  color:#181818;
    text-decoration:none;
}
.map_logo{
margin-bottom: 15px;
width: 75%;
}
small {
  text-align: center;
  display: block;
  margin-top: 25px;
  font-size: 12px;
}
@media screen and (max-width: 769px) {
  .footer_container {
    flex-direction: column;
  }
  .footer_map {
    width: 100%;
}
.fw {
  margin-top: 49px;
}
}
.tit {
  font-size: 18px;
  margin-bottom: 16px;
}

.reason-text {
  font-size: 14px;
}
.reason-box {
  background-color: rgba(255, 255, 255, 0.2);
border: solid 1px #CC606D;
width: calc(100% - 10px);
}
.reason-first {
  gap: 25px;
  display: flex;
  flex-direction: column;
}
.first_tlt {
  padding-top: 63px;
  padding-bottom: 24px;
  color: #ffffff;
  text-align: center;
  font-weight: 600;
  line-height: 1;
  font-size: 24px;
}
.span01 {
  font-size: 18px;
  text-decoration: underline;
  font-weight: 600;
}
.box01 {
  margin-bottom: 32px;
}


.EX-section {
  max-width: 768px;   /* PCでの最大幅 */
  margin: 40px auto;  /* 上下余白・中央寄せ */
  text-align: center; /* 念のため中央揃え */
}

.EX-section img {
  width: 100%;        /* コンテナ幅いっぱいに表示 */
  height: auto;       /* 縦横比維持 */
  display: block;     /* 下に余白を作らない */
  border-radius: 8px; /* 角丸(不要なら削除) */
}

/* スマホ対応 */
@media screen and (max-width: 480px) {
  .EX-section {
    margin: 20px auto;
  }
}