@charset "UTF-8";
:root {
  --viewport-width: min(100vw, 1600px);
  --b: calc(var(--viewport-width) / 160);
}

body {
  background-color: #fff;
  background-image: linear-gradient(to right, #e6e7e7 1px, transparent 1px), linear-gradient(to bottom, #e6e7e7 1px, transparent 1px);
  background-size: max(2rem, 10px) max(2rem, 10px);
}

#front #hero {
  position: relative;
  z-index: 0;
  padding-top: max(8rem, 60px);
}
#front #hero .hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: min(-20rem, -100px);
  opacity: 0;
  padding-bottom: max(3rem, 30px);
  transition: all 0.5s ease-out;
  filter: drop-shadow(0 0 max(4.5rem, 30px) rgba(0, 0, 0, 0.5));
}
#front #hero .hero__bg img {
  width: 100%;
  height: 100%;
  -o-object-position: bottom;
     object-position: bottom;
}
#front #hero .hero__content {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 20px;
  width: 106%;
  padding-left: 5%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #front #hero .hero__content {
    flex-direction: column;
    width: 90%;
    padding-left: 0;
    margin: auto;
  }
}
#front #hero .hero__content .hero__title {
  width: 42.5%;
}
@media screen and (max-width: 768px) {
  #front #hero .hero__content .hero__title {
    width: 100%;
  }
}
#front #hero .hero__content .hero__title h2 {
  opacity: 0;
  transition: all 0.5s ease-out;
}
#front #hero .hero__content .hero__title h2 img {
  aspect-ratio: 27/32;
}
#front #hero .hero__content .hero__imageBox {
  position: relative;
  width: 57.5%;
  aspect-ratio: 16/15;
  opacity: 0;
  transition: opacity 0.3s ease-out;
}
@media screen and (max-width: 768px) {
  #front #hero .hero__content .hero__imageBox {
    width: 120%;
    margin-left: auto;
  }
}
#front #hero .hero__content .hero__imageBox .bubble {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transform: translateY(10%);
  transition: all 0.5s ease-out;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble1 {
  width: 20%;
  top: 34%;
  left: 1%;
  transition-delay: 0.4s;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble1:hover {
  animation: bounce 0.3s ease-in-out backwards;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble2 {
  width: 16.5%;
  top: 14%;
  left: 32%;
  transition-delay: 0.5s;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble2:hover {
  animation: bounce 0.3s ease-in-out forwards;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble3 {
  width: 20%;
  top: 0;
  left: 10%;
  transition-delay: 0.6s;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble3:hover {
  animation: bounce 0.3s ease-in-out forwards;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble4 {
  width: 14.3%;
  top: 12%;
  left: 50%;
  transition-delay: 0.7s;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble4:hover {
  animation: bounce 0.3s ease-in-out forwards;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble5 {
  width: 12.8%;
  top: 29%;
  left: 21%;
  transition-delay: 0.8s;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble5:hover {
  animation: bounce 0.3s ease-in-out forwards;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble6 {
  width: 12.2%;
  top: 19%;
  left: 1%;
  transition-delay: 0.6s;
}
#front #hero .hero__content .hero__imageBox .bubble.bubble6:hover {
  animation: bounce 0.3s ease-in-out forwards;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5%);
  }
}
#front #hero .hero__content .hero__imageBox .cloud {
  position: absolute;
  opacity: 0;
  transition: opacity 1s ease-out;
  animation: float 3s ease-in-out infinite;
}
#front #hero .hero__content .hero__imageBox .cloud.cloud1 {
  width: 15%;
  top: 0;
  left: 40%;
}
#front #hero .hero__content .hero__imageBox .cloud.cloud2 {
  width: 16%;
  bottom: 3%;
  left: 0;
}
#front #hero .hero__content .hero__imageBox .cloud.cloud3 {
  width: 17%;
  top: 20%;
  left: 80%;
}
#front #hero .hero__content .hero__imageBox .cloud.cloud4 {
  width: 16.5%;
  bottom: 10%;
  right: 5%;
}
@keyframes float {
  0%, 100% {
    transform: translateY(-5%);
  }
  50% {
    transform: translateY(5%);
  }
}
#front #hero.loaded .hero__bg {
  opacity: 1;
}
#front #hero.loaded .hero__content .hero__title h2 {
  opacity: 1;
}
#front #hero.loaded .hero__content .hero__imageBox {
  opacity: 1;
}
#front #hero.loaded .hero__content .hero__imageBox .bubble {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
}
#front #hero.loaded .hero__content .hero__imageBox .cloud {
  opacity: 1;
}
#front #recommend {
  margin-top: -2%;
}
@media screen and (max-width: 768px) {
  #front #recommend {
    margin-top: -4%;
  }
}
#front #recommend .recommend__wrapper {
  display: flex;
  margin-bottom: max(9rem, 50px);
  box-shadow: 5px 5px 26px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  #front #recommend .recommend__wrapper {
    flex-direction: column;
  }
}
#front #recommend .recommend__title {
  position: relative;
  display: grid;
  place-items: center;
  text-align: center;
  padding: max(3rem, 15px) max(7rem, 30px);
  border: max(0.3rem, 3px) solid #fff;
  background: #dfb133;
}
#front #recommend .recommend__title::before {
  width: calc(100% - 3vw);
  -webkit-clip-path: polygon(calc(100% - 3vw) 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(calc(100% - 3vw) 0, 100% 0, 100% 100%, 0% 100%);
  background-image: linear-gradient(to right, #d58d2f, #deb033);
}
@media screen and (max-width: 550px) {
  #front #recommend .recommend__title::before {
    width: 55%;
    -webkit-clip-path: polygon(calc(100% - 35vw) 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(calc(100% - 35vw) 0, 100% 0, 100% 100%, 0% 100%);
  }
}
#front #recommend .recommend__title span {
  color: #fff;
  font-size: max(3.2rem, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  #front #recommend .recommend__title span br {
    display: none;
  }
}
@media screen and (max-width: 550px) {
  #front #recommend .recommend__title span {
    font-size: 18px;
  }
}
#front #recommend .recommend__content {
  flex: 1;
  position: relative;
  padding: max(5rem, 30px);
  padding-right: max(12rem, 60px);
  background: #fff;
}
@media screen and (max-width: 768px) {
  #front #recommend .recommend__content {
    padding-bottom: max(5rem, 50px);
  }
}
#front #recommend .recommend__content img.recommend__deco {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: translateX(20%);
  width: max(22rem, 75px);
}
@media screen and (max-width: 768px) {
  #front #recommend .recommend__content img.recommend__deco {
    right: 5%;
  }
}
#front #recommend .recommend__content ul li {
  display: flex;
  align-items: baseline;
  gap: max(1rem, 10px);
}
#front #recommend .recommend__content ul li:not(:last-of-type) {
  margin-bottom: max(2rem, 20px);
}
#front #recommend .recommend__content ul li .imageBox img {
  width: max(2.2rem, 17px);
  vertical-align: sub;
}
#front #recommend .recommend__content ul li h3 {
  flex: 1;
  font-size: max(2.1rem, 14px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
#front #recommend .recommend__content ul li h3 b {
  position: relative;
  color: #dfb133;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
  background: linear-gradient(transparent 65%, rgba(223, 177, 51, 0.2) 65%);
  z-index: 0;
}
#front #guidance .guidance__wrapper {
  margin-top: max(2rem, 20px);
  margin-bottom: max(11rem, 100px);
}
#front #guidance .guidance__content1 {
  margin-bottom: max(4.5rem, 30px);
}
#front #guidance .guidance__content1 .guidance__expert--title {
  background: #35a09c;
}
#front #guidance .guidance__content1 .guidance__expert--title::before {
  background-image: linear-gradient(to right, #07867d, #339f9b);
}
#front #guidance .guidance__content1 .guidance__expert--list {
  position: relative;
  display: flex;
  justify-content: space-between;
  gap: max(6rem, 30px);
  padding: max(5rem, 30px) max(10rem, 50px);
  background: #fff;
  box-shadow: 5px 5px 26px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 1300px) {
  #front #guidance .guidance__content1 .guidance__expert--list {
    gap: 30px;
    padding: max(5rem, 30px) max(4rem, 20px);
  }
}
@media screen and (max-width: 1000px) {
  #front #guidance .guidance__content1 .guidance__expert--list {
    gap: max(10rem, 50px);
    padding: max(10rem, 30px);
    flex-direction: column;
  }
}
#front #guidance .guidance__content1 .guidance__expert--list li {
  flex: 1;
}
@media screen and (max-width: 1000px) {
  #front #guidance .guidance__content1 .guidance__expert--list li {
    display: flex;
    align-items: center;
    gap: max(10rem, 40px);
  }
}
@media screen and (max-width: 768px) {
  #front #guidance .guidance__content1 .guidance__expert--list li {
    gap: 0;
    flex-direction: column;
  }
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--image {
  aspect-ratio: 60/59;
}
@media screen and (max-width: 1000px) {
  #front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--image {
    width: max(40%, 200px);
  }
}
@media screen and (max-width: 768px) {
  #front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--image {
    width: max(60%, 300px);
    margin: auto;
  }
}
@media screen and (max-width: 550px) {
  #front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--image {
    width: 100%;
  }
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail {
  margin-top: max(3rem, 25px);
}
@media screen and (max-width: 1000px) {
  #front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail {
    flex: 1;
  }
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail p {
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05em;
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail span.expert-affiliation {
  position: relative;
  padding-left: calc(max(0.8rem, 8px) * 2);
  font-size: max(2rem, 18px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail span.expert-affiliation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: max(0.8rem, 8px);
  height: 100%;
  background: #35a09c;
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail .expert-intro {
  margin-top: max(2.5rem, 20px);
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail .expert-intro span.occupation {
  display: block;
  font-size: max(2rem, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail .expert-intro b.name {
  font-size: max(3.6rem, 24px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail .expert-intro b.name span {
  font-size: max(2rem, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  padding-left: max(1rem, 10px);
}
#front #guidance .guidance__content1 .guidance__expert--list li .guidance__expert--detail .expert-specialty {
  padding-top: max(1.5rem, 10px);
  margin-top: max(1rem, 5px);
  border-top: max(0.3rem, 3px) solid #35a09c;
}
#front #guidance .guidance__content2 {
  display: flex;
  align-items: start;
  gap: max(4.5rem, 30px);
  margin-top: max(9.5rem, 60px);
}
@media screen and (max-width: 768px) {
  #front #guidance .guidance__content2 {
    gap: 45px;
    flex-direction: column;
  }
}
#front #guidance .guidance__content2 .guidance__date, #front #guidance .guidance__content2 .guidance__times {
  flex: 1;
}
@media screen and (max-width: 768px) {
  #front #guidance .guidance__content2 .guidance__date, #front #guidance .guidance__content2 .guidance__times {
    width: 100%;
  }
}
#front #guidance .guidance__content2 .guidance__date--title, #front #guidance .guidance__content2 .guidance__times--title {
  background: #dfb133;
}
#front #guidance .guidance__content2 .guidance__date--title::before, #front #guidance .guidance__content2 .guidance__times--title::before {
  background-image: linear-gradient(to right, #d58d2f, #deb033);
}
#front #guidance .guidance__content2 .guidance__date--detail, #front #guidance .guidance__content2 .guidance__times--detail {
  margin-top: max(3rem, 20px);
}
#front #guidance .guidance__content2 .guidance__date--detail {
  aspect-ratio: 611/82;
}
#front #guidance .guidance__content2 .guidance__times--detail {
  aspect-ratio: 611/101;
}
#front #guidance .guidance__bottom {
  margin-top: max(7rem, 50px);
  text-align: center;
}
#front #guidance .guidance__bottom strong {
  font-size: max(2.8rem, 20px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
#front #guidance .guidance__bottom .guidance__speech {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: max(1.5rem, 10px);
  margin-top: max(9rem, 60px);
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box {
  position: relative;
  padding: max(1.5rem, 10px) 0;
  width: max(40rem, 250px);
  background: #fff;
  border: max(0.6rem, 4px) solid;
}
@media screen and (max-width: 768px) {
  #front #guidance .guidance__bottom .guidance__speech .guidance__speech-box {
    flex: 1;
  }
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box::before {
  position: absolute;
  content: "";
  left: 50%;
  bottom: calc(-1 * max(3.5rem, 25px));
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: max(2.5rem, 15px) solid transparent;
  border-right: max(2.5rem, 15px) solid transparent;
  border-top: max(3.5rem, 25px) solid;
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box::after {
  position: absolute;
  content: "";
  left: 50%;
  bottom: calc(-1 * max(3.5rem, 25px) * 0.75);
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: calc(max(2.5rem, 15px) * 0.8) solid transparent;
  border-right: calc(max(2.5rem, 15px) * 0.8) solid transparent;
  border-top: calc(max(3.5rem, 25px) * 0.8) solid #fff;
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box span {
  font-size: max(5.2rem, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box--primary {
  border-color: #35a09c;
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box--primary::before {
  border-top-color: #35a09c;
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box--primary span {
  color: #35a09c;
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box--secondary {
  border-color: #dfb133;
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box--secondary::before {
  border-top-color: #dfb133;
}
#front #guidance .guidance__bottom .guidance__speech .guidance__speech-box--secondary span {
  color: #dfb133;
}
#front #venue .venue__wrapper {
  padding: max(11rem, 70px) 0;
}
#front #venue .venue__title {
  text-align: center;
  padding: max(3rem, 20px) 10px;
  background: linear-gradient(to right, #787777, #4c4949);
}
#front #venue .venue__title span {
  color: #fff;
  font-size: max(3rem, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front #venue .venue__content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 9rem;
  margin-top: max(5rem, 30px);
}
@media screen and (max-width: 1300px) {
  #front #venue .venue__content {
    gap: 5.4rem;
  }
}
@media screen and (max-width: 1000px) {
  #front #venue .venue__content {
    gap: 30px;
    align-items: start;
    flex-direction: column;
  }
}
#front #venue .venue__content--image {
  width: max(53rem, 400px);
  aspect-ratio: 53/28;
}
@media screen and (max-width: 1000px) {
  #front #venue .venue__content--image {
    width: 100%;
  }
}
#front #venue .venue__content--detail {
  flex: 1;
}
#front #venue .venue__content--detail > p {
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
#front #venue .venue__content--detail .venue__textBox {
  margin-top: max(2rem, 10px);
}
#front #venue .venue__content--detail .venue__textBox strong {
  font-size: max(3rem, 24px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: max(1rem, 10px);
}
#front #venue .venue__content--detail .venue__textBox span.attention {
  margin-top: max(1rem, 10px);
  font-size: max(1.4rem, 12px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#front #benefit {
  position: relative;
  background: #35a09c;
  z-index: 0;
}
#front #benefit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40%;
  z-index: 0;
  -webkit-clip-path: polygon(calc(100% - 10vw) 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(calc(100% - 10vw) 0, 100% 0, 100% 100%, 0% 100%);
  background: linear-gradient(to right, #07867d, #339f9b);
  z-index: -1;
}
#front #benefit .benefit__wrapper {
  padding-top: max(8rem, 50px);
  padding-bottom: max(7.5rem, 40px);
}
#front #benefit .benefit__title {
  text-align: center;
  background: #89b9b7;
  padding: max(3rem, 20px) 10px;
}
#front #benefit .benefit__title h2 {
  color: #fff;
  font-size: max(3rem, 22px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front #benefit .benefit__content {
  position: relative;
  display: flex;
  gap: max(2rem, 10px);
  margin-top: max(4rem, 30px);
}
@media screen and (max-width: 1000px) {
  #front #benefit .benefit__content {
    flex-direction: column;
  }
}
#front #benefit .benefit__content .benefit__detail {
  flex: 1;
}
#front #benefit .benefit__content .benefit__detail ol {
  list-style: none;
  counter-reset: list-counter;
}
#front #benefit .benefit__content .benefit__detail ol li {
  position: relative;
  padding-left: calc(max(3.3rem, 22px) * 1.5);
  padding-bottom: max(1.5rem, 15px);
  margin-bottom: max(2.5rem, 20px);
}
#front #benefit .benefit__content .benefit__detail ol li::before {
  content: "●";
  position: absolute;
  left: 0;
  top: 0;
  color: #fff;
  font-size: max(3.3rem, 22px);
  line-height: 1.5;
  letter-spacing: 0;
}
#front #benefit .benefit__content .benefit__detail ol li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background-image: linear-gradient(to right, #89b9b7 5px, transparent 3px);
  background-size: 10px 3px;
  background-repeat: repeat-x;
}
#front #benefit .benefit__content .benefit__detail ol li h3 {
  color: #fff;
  font-size: max(2.3rem, 17px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front #benefit .benefit__content .benefit__detail ol li h3 b {
  color: #fff;
  font-size: max(3.3rem, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#front #benefit .benefit__content .benefit__detail ol li h3 b.accent {
  line-height: 1;
}
#front #benefit .benefit__content .benefit__detail ol li h3 img {
  width: max(13.3rem, 70px);
  margin-right: max(0.5rem, 5px);
  vertical-align: sub;
}
#front #benefit .benefit__content .benefit__detail ol li .attention {
  color: #fff;
}
#front #benefit .benefit__content .benefit__image {
  position: relative;
  width: max(57.5rem, 400px);
  margin-top: min(-10rem, -60px);
  padding-bottom: max(10rem, 60px);
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  #front #benefit .benefit__content .benefit__image {
    height: max(45rem, 305px);
    width: max(50%, 420px);
    margin-top: min(-14rem, -80px);
    padding-bottom: 0;
    margin-left: auto;
    margin-right: -10%;
  }
}
@media screen and (max-width: 768px) {
  #front #benefit .benefit__content .benefit__image {
    margin-top: 0;
    margin-right: -5%;
  }
}
@media screen and (max-width: 550px) {
  #front #benefit .benefit__content .benefit__image {
    width: 100%;
    height: 68vw;
    margin: 0;
  }
}
#front #benefit .benefit__content .benefit__image .imageBox {
  position: absolute;
}
#front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(1) {
  top: 50%;
  left: 0;
  width: max(24.5rem, 150px);
  z-index: 10;
}
@media screen and (max-width: 550px) {
  #front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(1) {
    top: 60%;
    width: 35vw;
  }
}
#front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(1) img {
  transform: translate(20%, 50%);
}
#front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(2) {
  top: 0;
  left: 23%;
  width: max(25.5rem, 200px);
  z-index: 1;
}
@media screen and (max-width: 550px) {
  #front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(2) {
    left: 15%;
    width: 50vw;
  }
}
#front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(2) img {
  transform: translate(0, 50%);
  transition-delay: 0.1s;
}
#front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(3) {
  top: 30%;
  right: 0;
  width: max(25rem, 175px);
  z-index: 100;
}
@media screen and (max-width: 550px) {
  #front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(3) {
    top: 35%;
    width: 36vw;
  }
}
#front #benefit .benefit__content .benefit__image .imageBox:nth-of-type(3) img {
  transform: translate(-20%, 50%);
  transition-delay: 0.2s;
}
#front #benefit .benefit__content .benefit__image .imageBox img {
  opacity: 0;
  transition: all 0.5s ease-out;
}
#front #benefit .benefit__content .benefit__image.active .imageBox img {
  opacity: 1;
  transform: translate(0) rotate(0);
}
#front #trend .trend__wrapper {
  margin-top: max(11.5rem, 70px);
  margin-bottom: max(11rem, 50px);
}
#front #trend .trend__title {
  background: #dfb133;
  z-index: 0;
}
#front #trend .trend__title::before {
  background-image: linear-gradient(to right, #d58d2f, #deb033);
  -webkit-clip-path: polygon(calc(100% - 37vw) 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(calc(100% - 37vw) 0, 100% 0, 100% 100%, 0% 100%);
}
@media screen and (min-width: 1600px) {
  #front #trend .trend__title::before {
    -webkit-clip-path: polygon(calc(100% - 750px) 0, 100% 0, 100% 100%, 0% 100%);
            clip-path: polygon(calc(100% - 750px) 0, 100% 0, 100% 100%, 0% 100%);
  }
}
#front #trend .trend__title h2 {
  color: #fff;
  font-size: max(4rem, 22px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.01em;
  text-align: center;
}
#front #trend .trend__title h2 small {
  color: inherit;
  font-size: max(3.4rem, 19px);
  font-weight: inherit;
  line-height: inherit;
  letter-spacing: inherit;
}
#front #trend .trend__title h2 span {
  font-size: max(2.1rem, 15px);
  line-height: 1;
}
#front #trend .trend__title h2 span b {
  color: #fff;
  font-size: 1.5em;
  font-weight: 500;
  line-height: 0;
}
#front #trend .trend__title h2 span img {
  height: 0.9lh;
  width: auto;
  vertical-align: sub;
  padding: 0 calc(max(2.1rem, 15px) / 4);
}
@media screen and (max-width: 768px) {
  #front #trend .trend__title h2 span img {
    height: 0.7lh;
  }
}
#front #trend .trend__title--supplement {
  display: flex;
  align-items: center;
  gap: max(1rem, 10px);
  margin: max(2.5rem, 20px) 0;
}
#front #trend .trend__title--supplement p {
  color: #3e3a39;
  font-size: max(3.3rem, 20px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0;
  max-width: 65%;
  text-align: center;
}
@media screen and (max-width: 550px) {
  #front #trend .trend__title--supplement p {
    line-height: 1.5;
  }
}
#front #trend .trend__title--supplement p img {
  height: 1.1lh;
  width: auto;
  vertical-align: text-bottom;
  padding: 0 calc(max(3.3rem, 20px) / 8);
  margin-bottom: calc(max(3.3rem, 20px) / 4);
}
@media screen and (max-width: 768px) {
  #front #trend .trend__title--supplement p img {
    height: 0.8lh;
  }
}
#front #trend .trend__title--supplement p small {
  font-size: max(2.7rem, 20px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
}
#front #trend .trend__title--supplement span.line {
  flex: 1;
  height: 4px;
  background: repeating-linear-gradient(to right, #3e3a39 0, #3e3a39 8px, transparent 8px, transparent 16px);
}
#front #trend .trend__content h3 {
  color: #fff;
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  background: #3e3a39;
  text-align: center;
  padding: max(2rem, 15px) 0;
  margin-bottom: max(3.5rem, 30px);
}
#front #trend .trend__content h3 img {
  height: 0.8lh;
  width: auto;
  vertical-align: sub;
  padding: 0 calc(max(2.4rem, 18px) / 8);
  margin-bottom: calc(max(2.4rem, 18px) / 8);
}
#front #trend .trend__content h3 small img {
  height: 0.5lh;
}
#front #trend .trend__think .trend__points {
  display: flex;
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__think .trend__points {
    flex-direction: column;
  }
}
#front #trend .trend__think .trend__points .point-title {
  margin-bottom: max(2.5rem, 20px);
}
#front #trend .trend__think .trend__points .point-title h4 {
  display: flex;
  align-items: center;
  font-size: max(2.1rem, 17px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.05em;
}
#front #trend .trend__think .trend__points .point-title img {
  height: 0.8lh;
  width: auto;
  padding: 0 calc(max(2.4rem, 18px) / 8);
}
@media screen and (max-width: 550px) {
  #front #trend .trend__think .trend__points .point-title img {
    align-self: baseline;
  }
}
#front #trend .trend__think .trend__points .point-title span {
  flex: 1;
}
#front #trend .trend__think .trend__points .point-plus {
  position: relative;
  align-self: center;
  width: max(4rem, 20px);
  height: max(4rem, 20px);
  margin: max(2rem, 15px);
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__think .trend__points .point-plus {
    width: max(10rem, 50px);
    height: max(10rem, 50px);
  }
}
@media screen and (max-width: 550px) {
  #front #trend .trend__think .trend__points .point-plus {
    width: 30px;
    height: 30px;
  }
}
#front #trend .trend__think .trend__points .point-plus span {
  position: absolute;
  background: #3e3a39;
}
#front #trend .trend__think .trend__points .point-plus span:nth-of-type(1) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: max(4rem, 20px);
  height: max(0.8rem, 6px);
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__think .trend__points .point-plus span:nth-of-type(1) {
    width: max(10rem, 50px);
  }
}
@media screen and (max-width: 550px) {
  #front #trend .trend__think .trend__points .point-plus span:nth-of-type(1) {
    width: 30px;
  }
}
#front #trend .trend__think .trend__points .point-plus span:nth-of-type(2) {
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: max(0.8rem, 6px);
  height: max(4rem, 20px);
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__think .trend__points .point-plus span:nth-of-type(2) {
    height: max(10rem, 50px);
  }
}
@media screen and (max-width: 550px) {
  #front #trend .trend__think .trend__points .point-plus span:nth-of-type(2) {
    height: 30px;
  }
}
#front #trend .trend__think .trend__points .trend__point1 {
  flex: 1;
}
#front #trend .trend__think .trend__points .trend__point1 .point-content {
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__think .trend__points .trend__point1 .point-content {
    width: 50%;
    margin: auto;
  }
}
@media screen and (max-width: 768px) {
  #front #trend .trend__think .trend__points .trend__point1 .point-content {
    width: 70%;
  }
}
@media screen and (max-width: 550px) {
  #front #trend .trend__think .trend__points .trend__point1 .point-content {
    width: 100%;
  }
}
#front #trend .trend__think .trend__points .trend__point1 .point-content::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(#00a29d, rgba(0, 162, 157, 0) 70%);
  background-size: 70% 70%;
  background-position: top center;
  background-repeat: no-repeat;
  z-index: -1;
  opacity: 0.4;
  transform: translateY(-12%) scale(0.4);
  animation: scale 5s ease-out infinite;
}
@keyframes scale {
  0% {
    transform: translateY(-12%) scale(0.4);
    opacity: 0.7;
  }
  50% {
    transform: translateY(-12%) scale(1);
    opacity: 1;
  }
  90% {
    transform: translateY(-12%) scale(1);
  }
  100% {
    transform: translateY(-12%) scale(1);
    opacity: 0;
  }
}
#front #trend .trend__think .trend__points .trend__point1 .point-content img {
  aspect-ratio: 8/7;
}
#front #trend .trend__think .trend__points .trend__point2 {
  width: calc(72.3% - max(6rem, 35px));
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__think .trend__points .trend__point2 {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #front #trend .trend__think .trend__points .trend__point2 .point__imageBox {
    width: 80%;
    margin: auto;
    aspect-ratio: 152/385;
  }
}
@media screen and (max-width: 550px) {
  #front #trend .trend__think .trend__points .trend__point2 .point__imageBox {
    width: 100%;
  }
}
#front #trend .trend__comparison {
  margin-top: max(5rem, 30px);
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__comparison .trend__content {
    display: flex;
    justify-content: start;
    gap: max(10rem, 20px);
  }
}
@media screen and (max-width: 550px) {
  #front #trend .trend__comparison .trend__content {
    gap: 50px;
    flex-direction: column;
  }
}
#front #trend .trend__comparison .trend__content .comparison__inner h4 {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-size: max(2.4rem, 18px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.05em;
  margin-bottom: max(4rem, 30px);
  row-gap: 10px;
}
#front #trend .trend__comparison .trend__content .comparison__inner h4 span.circle {
  display: inline-block;
  height: 0.7lh;
  width: auto;
  aspect-ratio: 1/1;
  border-radius: 50%;
  margin-right: 5px;
}
#front #trend .trend__comparison .trend__content .comparison__inner h4 img {
  height: 1lh;
  width: auto;
}
@media screen and (max-width: 768px) {
  #front #trend .trend__comparison .trend__content .comparison__inner h4 img {
    height: auto;
    width: 100%;
  }
}
#front #trend .trend__comparison .trend__content .comparison__inner.comparison__before h4 .circle {
  background-color: #00a29d;
}
#front #trend .trend__comparison .trend__content .comparison__inner.comparison__before .comparison__detail {
  aspect-ratio: 320/51;
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__comparison .trend__content .comparison__inner.comparison__before .comparison__detail {
    width: 100%;
    aspect-ratio: 347/982;
  }
}
@media screen and (max-width: 550px) {
  #front #trend .trend__comparison .trend__content .comparison__inner.comparison__before .comparison__detail {
    width: 65%;
    margin: auto;
  }
}
#front #trend .trend__comparison .trend__content .comparison__inner.comparison__after {
  margin-top: max(4rem, 30px);
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__comparison .trend__content .comparison__inner.comparison__after {
    margin-top: 0;
  }
}
#front #trend .trend__comparison .trend__content .comparison__inner.comparison__after h4 .circle {
  background-color: #dfb133;
}
#front #trend .trend__comparison .trend__content .comparison__inner.comparison__after .comparison__detail {
  aspect-ratio: 320/69;
}
@media screen and (max-width: 1000px) {
  #front #trend .trend__comparison .trend__content .comparison__inner.comparison__after .comparison__detail {
    width: 100%;
    aspect-ratio: 185/383;
  }
}
@media screen and (max-width: 550px) {
  #front #trend .trend__comparison .trend__content .comparison__inner.comparison__after .comparison__detail {
    width: 90%;
    margin: auto;
  }
}
#front #guarantee {
  position: relative;
  background: #dfb133;
  z-index: 0;
}
#front #guarantee::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 55%;
  z-index: 0;
  -webkit-clip-path: polygon(calc(100% - 10vw) 0, 100% 0, 100% 100%, 0% 100%);
  clip-path: polygon(calc(100% - 40vw) 0, 100% 0, 100% 100%, 0% 100%);
  background: linear-gradient(to right, #d58d2f, #deb033);
  z-index: -1;
}
#front #guarantee .guarantee__wrapper {
  display: flex;
  align-items: center;
}
#front #guarantee .guarantee__wrapper .guarantee__imageBox1 {
  position: absolute;
  left: 10%;
  top: -5%;
  width: max(28rem, 125px);
}
@media screen and (max-width: 768px) {
  #front #guarantee .guarantee__wrapper .guarantee__imageBox1 {
    left: 0;
  }
}
#front #guarantee .guarantee__wrapper .guarantee__imageBox2 {
  position: absolute;
  right: 10%;
  bottom: 0;
  width: max(24rem, 130px);
}
@media screen and (max-width: 768px) {
  #front #guarantee .guarantee__wrapper .guarantee__imageBox2 {
    right: -20px;
  }
}
#front #guarantee .guarantee__wrapper .guarantee__content {
  position: relative;
  margin: auto;
  max-width: max(55%, 250px);
  padding: max(5.5rem, 50px) 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  #front #guarantee .guarantee__wrapper .guarantee__content {
    max-width: 75%;
  }
}
#front #guarantee .guarantee__wrapper .guarantee__content h2 {
  color: #fff;
  font-size: max(3.2rem, 21px);
  font-weight: 700;
  line-height: 2.2;
  letter-spacing: 0.05em;
}
#front #guarantee .guarantee__wrapper .guarantee__content h2 img {
  height: 1.5lh;
  width: auto;
  vertical-align: sub;
  padding: 0 calc(max(3.2rem, 21px) * 1.5 / 8);
}
#front #guarantee .guarantee__wrapper .guarantee__content h2 sup {
  color: inherit;
  font-size: 0.5em;
  font-weight: inherit;
  line-height: 1;
  letter-spacing: 0;
  padding-left: 0.1em;
}
#front #guarantee .guarantee__wrapper .guarantee__content h2 .line {
  display: block;
  border-bottom: 3px dashed #fff;
  margin: 0.5em 0;
}
#front #guarantee .guarantee__wrapper .guarantee__content span.attention {
  color: #fff;
  font-size: max(1.3rem, 11px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0;
  text-align: left;
  margin-top: max(2rem, 10px);
}
#front .cta {
  background: #dfb133;
}
#front .cta__wrapper {
  padding-top: max(7rem, 50px);
  padding-bottom: max(6.5rem, 40px);
}
#front .cta__wrapper .cta__supplement {
  text-align: center;
  margin-top: max(2.5rem, 20px);
  font-size: max(1.8rem, 16px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front .cta__wrapper a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  -moz-column-gap: max(2rem, 10px);
       column-gap: max(2rem, 10px);
  padding: max(1rem, 10px) max(2rem, 15px);
  width: 100%;
  border: max(0.4rem, 4px) solid #3e3a39;
  border-radius: max(4.5rem, 30px);
  transition: all 0.5s ease-out;
}
#front .cta__wrapper a:not(:first-of-type) {
  margin-top: max(2.5rem, 20px);
}
@media screen and (max-width: 550px) {
  #front .cta__wrapper a {
    justify-content: start;
    -moz-column-gap: 2vw;
         column-gap: 2vw;
  }
}
#front .cta__wrapper a::before {
  content: "";
  position: absolute;
  top: 50%;
  right: max(3rem, 10px);
  transform: translateY(-50%);
  width: max(2rem, 12px);
  height: max(2rem, 12px);
  border-top: max(0.3rem, 2px) solid currentColor;
  border-right: max(0.3rem, 2px) solid currentColor;
  transform: translate(0, -50%) rotate(45deg);
  transition: all 0.5s ease-out;
}
#front .cta__wrapper a h3 {
  display: flex;
  align-items: center;
  -moz-column-gap: max(4.5rem, 20px);
       column-gap: max(4.5rem, 20px);
  font-size: max(2.8rem, 17px);
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 1000px) {
  #front .cta__wrapper a h3 {
    flex-direction: column;
  }
}
@media screen and (max-width: 550px) {
  #front .cta__wrapper a h3 {
    align-items: start;
  }
}
#front .cta__wrapper a span.cta__btn--number {
  display: flex;
  align-items: center;
  gap: max(1rem, 5px) max(3rem, 10px);
}
#front .cta__wrapper a span.cta__btn--number small {
  font-size: max(1.7rem, 13px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
}
#front .cta__wrapper a span.cta__btn--number img {
  flex: 1;
  width: max(27rem, 140px);
}
#front .cta__wrapper a.cta__btn--primary {
  color: #fff;
  background: #3e3a39;
  animation: bounce 3s linear infinite;
  transition: 0.3s transform ease-out;
}
#front .cta__wrapper a.cta__btn--primary > img {
  flex-shrink: 0;
  width: max(4rem, 20px);
}
@media screen and (max-width: 1000px) {
  #front .cta__wrapper a.cta__btn--primary > img {
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width: 550px) {
  #front .cta__wrapper a.cta__btn--primary > img {
    width: 20px;
  }
}
#front .cta__wrapper a.cta__btn--primary h3 {
  color: #fff;
  gap: 0;
}
@media screen and (max-width: 1000px) {
  #front .cta__wrapper a.cta__btn--primary h3 > span {
    display: block;
    line-height: 1.5;
  }
}
#front .cta__wrapper a.cta__btn--primary:hover {
  opacity: 1;
  animation: none;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }
  5% {
    transform: translateY(-15%);
  }
  10% {
    transform: translateY(0%);
  }
  15% {
    transform: translateY(-10%);
  }
  20% {
    transform: translateY(0);
  }
}
#front .cta__wrapper a.cta__btn--secondary {
  color: #3e3a39;
  background: #fff;
}
#front .cta__wrapper a.cta__btn--secondary > img {
  flex-shrink: 0;
  width: max(3rem, 30px);
  transform: translateY(10%);
}
@media screen and (max-width: 1000px) {
  #front .cta__wrapper a.cta__btn--secondary > img {
    width: auto;
    height: 100%;
  }
}
@media screen and (max-width: 550px) {
  #front .cta__wrapper a.cta__btn--secondary > img {
    width: 25px;
  }
}
#front .cta__wrapper a:hover {
  opacity: 0.8;
}
#front .cta__wrapper a:hover::before {
  transform: translate(50%, -50%) rotate(45deg);
}
#front .cta--primary {
  background: #35a09c;
}
#front .cta--primary .cta__supplement {
  color: #fff;
}/*# sourceMappingURL=front.css.map */