@charset "UTF-8";
* {
  box-sizing: border-box;
}

:root {
  font-size: 10px;
  --main-color: #00A63B;
  --shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  font-family: "noto-sans-cjk-jp", sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #3B3B3B;
  line-height: 1.5;
}

h1, h2, h3, h4, h5, h6, ul, li, dl, dt, dd, p {
  margin: 0;
  padding: 0;
}

h3 {
  word-break: auto-phrase;
}

ul, li {
  list-style: none;
}

img {
  max-width: 100%;
}

.wrapper {
  max-width: 1000px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  .wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.contact-area {
  margin-top: 40px;
}
.contact-area ul {
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .contact-area ul {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  .contact-area ul li:last-child {
    margin-top: 15px;
  }
}
.contact-area ul li.request {
  margin-right: 25px;
}
@media screen and (max-width: 767px) {
  .contact-area ul li.request {
    margin-right: 0;
  }
}
.contact-area ul li.request a {
  background-color: #FF9300;
}
.contact-area ul li.experience a {
  background-color: var(--main-color);
}
.contact-area ul li a {
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  display: block;
  width: 300px;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 25px;
  text-decoration: none;
  transition: opacity 0.3s;
}
@media screen and (max-width: 767px) {
  .contact-area ul li a {
    width: auto;
  }
}
.contact-area ul li a:hover {
  opacity: 0.7;
}
.contact-area ul li a::after {
  font-family: "Material Symbols Outlined";
  font-weight: 900;
  content: "\f591";
  margin-left: 0.5em;
  vertical-align: top;
  font-variation-settings: "FILL" 1;
}

header {
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  background-color: rgba(255, 255, 255, 0.75);
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: var(--shadow);
}
header .header-wrapper {
  width: 100%;
  margin-inline: auto;
  padding: 1em;
}
@media screen and (max-width: 1200px) {
  header .header-wrapper {
    max-width: 1200px;
  }
}
header .header-wrapper h1 {
  width: 250px;
}
@media screen and (min-width: 1200px) {
  header .header-wrapper h1 {
    padding-left: 50px;
  }
}
@media screen and (max-width: 767px) {
  header .header-wrapper h1 {
    width: 185px;
  }
}
header .header-wrapper h1 img {
  vertical-align: middle;
}

main {
  overflow-x: hidden;
}
main .main-visual {
  background-color: #fff;
  position: relative;
  padding-bottom: 120px;
  padding-top: calc(70px + 4vh);
}
@media screen and (max-width: 960px) {
  main .main-visual {
    padding-bottom: 35px;
  }
}
@media screen and (max-width: 767px) {
  main .main-visual {
    padding-top: 45px;
  }
}
main .main-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(#EAFFF1, #F0FDD7, #FDF99E);
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 0);
          clip-path: polygon(0 0, 0% 100%, 100% 0);
  z-index: 0;
}
main .main-visual .grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
@media screen and (min-width: 1200px) {
  main .main-visual .grid {
    max-width: 1200px;
    margin-inline: auto;
  }
}
@media screen and (max-width: 960px) {
  main .main-visual .grid {
    grid-template-columns: 1.5fr 1fr;
  }
}
@media screen and (max-width: 767px) {
  main .main-visual .grid {
    grid-template-columns: 1fr;
  }
}
main .main-visual .wrapper {
  max-width: 1200px;
  margin-inline: auto;
  z-index: 2;
}
main .main-visual .wrapper.slideIn {
  animation: slideIn 1s forwards;
}
@keyframes slideIn {
  0% {
    transform: translateX(-180px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
  }
  40%, 100% {
    opacity: 1;
  }
}
@media screen and (max-width: 960px) {
  main .main-visual .wrapper {
    margin-left: 0;
    order: 2;
  }
}
main .main-visual .wrapper .left {
  position: relative;
  width: -moz-max-content;
  width: max-content;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  main .main-visual .wrapper .left {
    width: -moz-fit-content;
    width: fit-content;
    margin-left: 0;
  }
}
main .main-visual .wrapper .left .result-image {
  text-align: center;
}
@media screen and (max-width: 1200px) {
  main .main-visual .wrapper .left .result-image {
    text-align: left;
  }
}
@media screen and (max-width: 767px) {
  main .main-visual .wrapper .left .result-image {
    width: 80%;
    margin-inline: auto;
  }
}
main .main-visual .wrapper .left h2 {
  color: #fff;
  font-size: 5rem;
  width: -moz-fit-content;
  width: fit-content;
  background: linear-gradient(#00A63B, #579F9C);
  padding: 0 0.5em;
  margin-top: 25px;
}
@media screen and (max-width: 1200px) {
  main .main-visual .wrapper .left h2 {
    font-size: 4rem;
    text-align: center;
    width: -moz-max-content;
    width: max-content;
    word-break: auto-phrase;
  }
}
@media screen and (max-width: 760px) {
  main .main-visual .wrapper .left h2 {
    font-size: 2.5rem;
    width: 100%;
    margin-top: 15px;
  }
}
main .main-visual .wrapper .left .result-msg {
  font-size: 2.2rem;
  line-height: 1.8;
  margin-top: 15px;
  background-color: rgba(255, 255, 255, 0.7);
  padding: 0.3em 1em;
  box-shadow: var(--shadow);
}
@media screen and (max-width: 767px) {
  main .main-visual .wrapper .left .result-msg {
    text-align: center;
    font-size: 1.5rem;
    word-break: auto-phrase;
  }
}
main .main-visual .right {
  position: absolute;
  right: 3vw;
  top: calc(70px + 3vh);
  width: 40%;
}
@media screen and (max-width: 1200px) {
  main .main-visual .right {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  main .main-visual .right {
    order: 1;
    position: static;
    width: 100%;
  }
}
main .main-visual .right-image-wrapper {
  position: relative;
}
main .main-visual .right-image-wrapper span[class^=triangle] {
  position: absolute;
  display: block;
  background-color: #fff;
  animation: triangle 0.8s ease-in-out forwards;
}
main .main-visual .right-image-wrapper span[class^=triangle]::before {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  mix-blend-mode: hard-light;
}
main .main-visual .right-image-wrapper .triangle01 {
  bottom: -10vh;
  left: -2vw;
  width: 140px;
  height: 103px;
  -webkit-clip-path: polygon(10% 9%, 95% 0, 94% 94%);
          clip-path: polygon(10% 9%, 95% 0, 94% 94%);
}
@media screen and (max-width: 767px) {
  main .main-visual .right-image-wrapper .triangle01 {
    width: 70px;
    height: 51px;
    bottom: -1vh;
  }
}
main .main-visual .right-image-wrapper .triangle01::before {
  background: linear-gradient(#00A63B, #579F9C);
}
@keyframes triangle {
  0% {
    rotate: 0;
  }
  100% {
    rotate: 360deg;
  }
}
main .main-visual .right-image-wrapper .triangle02 {
  top: 13vh;
  left: 8vw;
  width: 70px;
  height: 52px;
  -webkit-clip-path: polygon(0 0, 14% 100%, 100% 69%);
          clip-path: polygon(0 0, 14% 100%, 100% 69%);
}
main .main-visual .right-image-wrapper .triangle02.delay01 {
  animation-delay: 0.15s;
}
@media screen and (max-width: 1200px) {
  main .main-visual .right-image-wrapper .triangle02 {
    top: 7vh;
    left: 8vw;
  }
}
main .main-visual .right-image-wrapper .triangle02::before {
  background: linear-gradient(#7055FF, #57819F);
}
main .main-visual .right-image-wrapper .triangle03 {
  top: 25vh;
  right: -2vw;
  width: 70px;
  height: 52px;
  -webkit-clip-path: polygon(0 63%, 76% 100%, 100% 0);
          clip-path: polygon(0 63%, 76% 100%, 100% 0);
}
main .main-visual .right-image-wrapper .triangle03.delay02 {
  animation-delay: 0.3s;
}
@media screen and (max-width: 1200px) {
  main .main-visual .right-image-wrapper .triangle03 {
    top: 19vh;
  }
}
@media screen and (max-width: 767px) {
  main .main-visual .right-image-wrapper .triangle03 {
    bottom: -3vh;
    width: 88px;
    height: 72px;
  }
}
main .main-visual .right-image-wrapper .triangle03::before {
  background: linear-gradient(#2DA600, #5F9F57);
}
main .main-visual .right-image-wrapper svg[class^=stick] {
  position: absolute;
  mix-blend-mode: hard-light;
  z-index: 999;
}
main .main-visual .right-image-wrapper .stick01 {
  top: -9vh;
}
@media screen and (max-width: 767px) {
  main .main-visual .right-image-wrapper .stick01 {
    top: -11vh;
  }
}
main .main-visual .right-image-wrapper .stick01 .cls-1 {
  fill: #fff;
  stroke: url(#_名称未設定グラデーション);
  stroke-miterlimit: 10;
  stroke-width: 25px;
  stroke-linecap: round;
  stroke-dasharray: 290;
  stroke-dashoffset: 290;
  animation: lineAnimation01 1s ease forwards;
}
main .main-visual .right-image-wrapper .stick02 {
  bottom: -33px;
  right: -10vw;
}
main .main-visual .right-image-wrapper .stick02 .cls-2 {
  stroke: url(#_名称未設定グラデーション2);
  stroke-dasharray: 694;
  stroke-dashoffset: 694;
  stroke-linecap: round;
  stroke-width: 30px;
  animation: lineAnimation02 1s ease forwards 0.3s;
}
@media screen and (max-width: 1200px) {
  main .main-visual .right-image-wrapper .stick02 {
    bottom: -76px;
  }
}
@media screen and (max-width: 767px) {
  main .main-visual .right-image-wrapper .stick02 {
    bottom: -10vh;
    right: -70vw;
  }
}
@keyframes lineAnimation01 {
  0% {
    stroke-dashoffset: 263;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
@keyframes lineAnimation02 {
  0% {
    stroke-dashoffset: 694;
  }
  100% {
    stroke-dashoffset: 0;
  }
}
main #result {
  padding-top: 65px;
  padding-bottom: 65px;
  background-image: url("../images/result-bg.jpg");
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 767px) {
  main #result {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
main #result h3 {
  background-color: #FF3981;
  text-align: center;
  color: #fff;
  font-weight: 700;
  font-size: 3rem;
  padding: 0.3em;
  max-width: 715px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  main #result h3 {
    font-size: 2rem;
  }
}
main #result .result-content {
  margin-top: 45px;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  main #result .result-content {
    margin-top: 30px;
  }
}
main #result .result-content .result-box {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  main #result .result-content .result-box {
    flex-direction: column;
  }
}
main #result .result-content .result-box:last-of-type {
  flex-direction: row-reverse;
  margin-top: 75px;
}
@media screen and (max-width: 767px) {
  main #result .result-content .result-box:last-of-type {
    flex-direction: column;
    margin-top: 35px;
  }
}
main #result .result-content .result-box .result-img {
  width: 35%;
  max-width: 350px;
}
@media screen and (max-width: 767px) {
  main #result .result-content .result-box .result-img {
    width: 100%;
    margin-inline: auto;
  }
}
main #result .result-content .result-box .result-img img {
  box-shadow: var(--shadow);
}
main #result .result-content .result-box .result-text {
  width: 60%;
}
@media screen and (max-width: 767px) {
  main #result .result-content .result-box .result-text {
    width: 100%;
  }
}
main #result .result-content .result-box .result-text h4 {
  color: #EB0000;
  font-size: 2rem;
  border-bottom: solid 2px;
  padding-bottom: 0.5em;
}
@media screen and (max-width: 767px) {
  main #result .result-content .result-box .result-text h4 {
    margin-top: 20px;
  }
}
main #result .result-content .result-box .result-text ul {
  margin-top: 25px;
}
main #result .result-content .result-box .result-text ul li {
  list-style: none;
}
main #result .result-content .result-box .result-text ul li:last-child {
  margin-top: 2em;
}
main #result .result-content .result-box .result-text ul li dl dt {
  color: #FF3981;
  font-weight: 700;
  font-size: 2rem;
  display: grid;
  grid-template-columns: 25px auto;
  gap: 0.3em;
  align-items: center;
}
main #result .result-content .result-box .result-text ul li dl dt::before {
  content: "";
  background-image: url("../images/result-icon.svg");
  background-repeat: no-repeat;
  width: 25px;
  height: 25px;
  display: inline-block;
  margin-right: 0.3em;
}
main #result .result-content .result-box .result-text ul li dl dd {
  margin-top: 0.3em;
  font-size: 1.6rem;
}
main #about {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 960px) {
  main #about {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
main #about h3 {
  color: var(--main-color);
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  main #about h3 {
    font-size: 2.5rem;
  }
}
main #about .content-box {
  background-color: #FDFFE2;
  border: solid 2px var(--main-color);
  padding: 2%;
  box-shadow: var(--shadow);
}
main #about .content-box:has(.content01) {
  margin-top: 30px;
  position: relative;
}
main #about .content-box:has(.content01)::before {
  position: absolute;
  content: "";
  width: 266px;
  height: 163px;
  background-image: url("../images/seminar_about.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  right: -20px;
  top: -70px;
}
@media screen and (max-width: 960px) {
  main #about .content-box:has(.content01)::before {
    width: 180px;
    top: -40px;
  }
}
@media screen and (max-width: 767px) {
  main #about .content-box:has(.content01)::before {
    width: 110px;
    right: 0;
    top: -25px;
  }
}
main #about .content-box:has(.content02) {
  margin-top: 25px;
}
main #about .content-box h4 {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
}
main #about .content-box .content-wrapper {
  max-width: 840px;
  margin-inline: auto;
}
main #about .content-box .content-wrapper p {
  border-bottom: solid 1px;
  font-size: 2rem;
  font-weight: 700;
  margin-top: 1em;
}
main #about .content-box .content-wrapper .content01 {
  margin-top: 1em;
}
main #about .content-box .content-wrapper .content01 dt:not(:first-of-type) {
  margin-top: 1em;
}
main #about .content-box .content-wrapper .content01 dt ul li {
  color: var(--main-color);
  font-weight: 700;
  font-size: 2rem;
}
main #about .content-box .content-wrapper .content01 dt ul li::before {
  font-family: "Material Symbols Outlined";
  content: "\f88c";
  margin-right: 0.5em;
  vertical-align: bottom;
}
main #about .content-box .content-wrapper .content01 dt ul li .small {
  font-size: 0.7em;
}
main #about .content-box .content-wrapper .content01 dd {
  font-size: 1.6rem;
}
main #about .content-box .content-wrapper .content02 {
  margin-top: 20px;
  display: grid;
  gap: 0.5em;
}
main #about .content-box .content-wrapper .content02 dl {
  display: grid;
  grid-template-columns: 75px auto;
  gap: 1em;
  font-size: 1.6rem;
}
main #about .content-box .content-wrapper .content02 dl dt {
  background-color: var(--main-color);
  color: #fff;
  text-align: center;
  font-weight: 700;
  display: grid;
  place-content: center;
  border-radius: 10px;
  padding: 0.3em;
}
main #measures {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 960px) {
  main #measures {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
main #measures .wrapper02 {
  max-width: 840px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  main #measures .wrapper02 {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  main #measures .wrapper02 {
    padding-left: 15px;
    padding-right: 15px;
  }
}
main #measures .wrapper02 h3 {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  main #measures .wrapper02 h3 {
    font-size: 2.5rem;
  }
}
main #measures .wrapper02 .measures-text01 {
  margin-top: 25px;
  font-size: 1.6rem;
}
main #measures .wrapper02 .measures-text01 span {
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--main-color);
}
main #measures .wrapper02 .measures-subTitle01 {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  margin-top: 15px;
  margin-bottom: 15px;
}
@media screen and (max-width: 767px) {
  main #measures .wrapper02 .measures-subTitle01 {
    font-size: 2rem;
  }
}
main #measures .wrapper02 details:not(:last-child) summary {
  margin-top: 6px;
}
main #measures .wrapper02 details[open] summary::after {
  content: "\e15b";
}
main #measures .wrapper02 details summary {
  position: relative;
  background-color: #FFD67B;
  font-size: 1.8rem;
  font-weight: 700;
  list-style: none;
  padding: 1em;
  border-radius: 5px;
  box-shadow: 0 3px 0 rgba(0, 0, 0, 0.9);
  cursor: pointer;
}
main #measures .wrapper02 details summary::-webkit-details-marker {
  display: none;
}
@media screen and (max-width: 767px) {
  main #measures .wrapper02 details summary {
    font-size: 1.7rem;
    padding: 0.5em 2em 0.5em 0.5em;
  }
}
main #measures .wrapper02 details summary::after {
  position: absolute;
  right: 1em;
  font-family: "Material Symbols Outlined";
  content: "\e145";
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  main #measures .wrapper02 details summary::after {
    right: 0.5em;
  }
}
main #measures .wrapper02 details .content {
  position: relative;
  z-index: -1;
  font-size: 1.6rem;
  background-color: #FDFFE2;
  box-shadow: var(--shadow);
  overflow: hidden;
}
main #measures .wrapper02 details .content .content-inner {
  padding: 1em;
}
main #measures .wrapper02 .measures-subTitle02 {
  text-align: center;
  color: var(--main-color);
  font-size: 2.4rem;
  margin-top: 35px;
}
@media screen and (max-width: 767px) {
  main #measures .wrapper02 .measures-subTitle02 {
    font-size: 2rem;
  }
}
main #measures .wrapper02 .measures-subText {
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  margin-top: 25px;
}
@media screen and (max-width: 767px) {
  main #measures .wrapper02 .measures-subText {
    font-size: 1.5rem;
  }
}
main #measures .wrapper02 .detail-btn {
  margin-top: 20px;
}
main #measures .wrapper02 .detail-btn a {
  background-color: #FC7753;
  color: #fff;
  font-weight: 700;
  font-size: 2rem;
  text-align: center;
  display: block;
  width: 300px;
  margin-inline: auto;
  border-radius: 10px;
  box-shadow: var(--shadow);
  padding: 25px;
  text-decoration: none;
  transition: opacity 0.3s;
}
main #measures .wrapper02 .detail-btn a:hover {
  opacity: 0.7;
}
main #measures .wrapper02 .detail-btn a::after {
  font-family: "Material Symbols Outlined";
  font-weight: 900;
  content: "\f591";
  margin-left: 0.5em;
  vertical-align: top;
}
main #coaching {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 960px) {
  main #coaching {
    padding-top: 30px;
    padding-bottom: 30px;
  }
}
main #coaching h3 {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  color: var(--main-color);
}
@media screen and (max-width: 767px) {
  main #coaching h3 {
    font-size: 2.5rem;
  }
}
main #coaching .content-box {
  position: relative;
  background-color: #FDFFE2;
  border: solid 2px var(--main-color);
  padding-top: 30px;
  padding-bottom: 30px;
  margin-top: 30px;
  box-shadow: var(--shadow);
}
main #coaching .content-box::before {
  position: absolute;
  content: "";
  width: 213px;
  height: 111px;
  background-image: url("../images/seminar_coaching.png");
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  left: 35px;
  top: -35px;
}
@media screen and (max-width: 960px) {
  main #coaching .content-box::before {
    width: 150px;
    left: 0;
    top: -15px;
  }
}
@media screen and (max-width: 767px) {
  main #coaching .content-box::before {
    width: 100px;
    top: -35px;
  }
}
main #coaching .content-box h4 {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
}
main #coaching .content-box .inner-wrapper {
  max-width: 840px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  main #coaching .content-box .inner-wrapper {
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media screen and (max-width: 767px) {
  main #coaching .content-box .inner-wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
main #coaching .content-box .inner-wrapper .course-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 25px;
}
@media screen and (max-width: 960px) {
  main #coaching .content-box .inner-wrapper .course-list {
    gap: 10px;
  }
}
@media screen and (max-width: 767px) {
  main #coaching .content-box .inner-wrapper .course-list {
    grid-template-columns: 1fr;
  }
}
main #coaching .content-box .inner-wrapper .course-list li {
  background-color: #fff;
  border: solid 3px var(--main-color);
  padding: 1em;
}
main #coaching .content-box .inner-wrapper .course-list li h5 {
  text-align: center;
  color: var(--main-color);
  font-size: 1.6rem;
  border-bottom: solid 1px;
  padding-bottom: 0.5em;
}
main #coaching .content-box .inner-wrapper .course-list li h5 span {
  font-weight: 700;
  font-size: 2rem;
}
main #coaching .content-box .inner-wrapper .course-list li p {
  font-size: 1.4rem;
  margin-top: 0.5em;
}
main #coaching .content-box .other-list {
  padding-left: 20px;
  margin-top: 15px;
  margin-bottom: 15px;
}
main #coaching .content-box .other-list li {
  font-weight: 700;
  font-size: 1.8rem;
  list-style-type: disc;
}
main #coaching .content-box .voice {
  border-top: dotted 2px;
}
main #coaching .content-box .voice h5 {
  text-align: center;
  font-size: 2rem;
  margin-top: 1em;
}
main #coaching .content-box .voice .voice-grid-area {
  margin-top: 15px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px 20px;
}
@media screen and (max-width: 767px) {
  main #coaching .content-box .voice .voice-grid-area {
    grid-template-columns: 1fr;
  }
}
main #coaching .content-box .voice .voice-grid-area .voice-gred-box {
  background-color: #fff;
  border: solid 1px;
  border-radius: 15px;
  box-shadow: var(--shadow);
  padding: 15px;
  display: grid;
  grid-template-columns: 92px auto;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  main #coaching .content-box .voice .voice-grid-area .voice-gred-box {
    grid-template-columns: 60px auto;
  }
}
main #coaching .content-box .voice .voice-grid-area .voice-gred-box .voice-grid-text h6 {
  text-align: center;
  font-size: 1.6rem;
  color: #fff;
  background-color: var(--main-color);
  padding: 0.2em;
}
main #coaching .content-box .voice .voice-grid-area .voice-gred-box .voice-grid-text p {
  font-size: 1.4rem;
  margin-top: 10px;
}
main #price h3 {
  text-align: center;
  color: var(--main-color);
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  main #price h3 {
    font-size: 2.5rem;
  }
}
main #price h3 span {
  font-size: 2.4rem;
}
main #price .price-wrapper {
  max-width: 660px;
  margin-inline: auto;
}
main #price .price-wrapper dl {
  display: grid;
  grid-template-columns: repeat(3, auto);
  gap: 0.3em;
  color: var(--main-color);
  font-size: 2.4rem;
  font-weight: 700;
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  main #price .price-wrapper dl {
    grid-template-columns: auto;
  }
}
main #price .price-wrapper dl dt, main #price .price-wrapper dl dd {
  background-color: #ECFFE2;
  border: solid 1px var(--main-color);
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
main #price .price-wrapper dl dd:last-child {
  align-items: baseline;
}
main #price .price-wrapper dl dd .price-number {
  font-family: din-2014, sans-serif;
  font-weight: 700;
  font-style: normal;
  font-size: 3rem;
}
main #price .price-wrapper dl dd .price-small {
  font-size: 1.6rem;
}
main #price .price-wrapper dl dd .price-annotation {
  color: #3B3B3B;
  font-weight: normal;
  font-size: 1.2rem;
}
main #price .price-wrapper p {
  text-align: center;
  font-size: 1.6rem;
  margin-top: 10px;
}

footer {
  background-color: var(--main-color);
  margin-top: 60px;
  padding: 25px;
}
footer p {
  text-align: center;
  color: #fff;
  font-size: 12.5px;
}

.fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.5s, transform 1s;
}

.fade.active {
  opacity: 1;
  transform: translateY(0px);
}

.slideinLeft {
  animation: slideinLeft 1s forwards;
}

@keyframes slideinLeft {
  0% {
    transform: translateX(-150px);
  }
  100% {
    transform: translateX(0);
  }
}/*# sourceMappingURL=style.css.map */