@charset "UTF-8";
/*
Theme Name: iwatsu_inet
*/
/*************************************************
common-style
*************************************************/
@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.flex-start {
  display: flex;
  justify-content: flex-start;
}

.flex-center {
  display: flex;
  justify-content: center;
}

.flex-end {
  display: flex;
  justify-content: flex-end;
}

.flex-between {
  display: flex;
  justify-content: space-between;
}

.flex-around {
  display: flex;
  justify-content: space-around;
}

.flex-evenly {
  display: flex;
  justify-content: space-evenly;
}

* {
  box-sizing: border-box;
}

.point-none {
  pointer-events: none;
}

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Noto Sans JP", Meiryo, sans-serif;
  min-height: 100dvh;
  -webkit-font-smoothing: auto;
  background: #EDF2F6;
  margin: 0;
}

.font-en {
  font-family: "{英字フォント名}", sans-serif;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-appearance: button;
  -moz-appearance: button;
       appearance: button;
  border: none;
  box-sizing: border-box;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

div, p, li, dt, dd, th, td, a {
  font-size: 1.5rem;
  line-height: 1.7;
  font-weight: 700;
  letter-spacing: 1px;
}
@media screen and (max-width: 768px) {
  div, p, li, dt, dd, th, td, a {
    font-size: 1.4rem;
  }
}

p {
  margin: 0;
}

.img-box img {
  width: 100%;
}

.obj-fit img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

.h-scale .img-box {
  overflow: hidden;
}
.h-scale img {
  transition: all 0.3s;
}
.h-scale:hover img {
  transform: scale(1.1);
}

.text-ell > * {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.hover_opacity a {
  transition: all 0.3s;
}
.hover_opacity a:hover {
  opacity: 0.7;
}

.pc-m {
  display: block;
}
@media screen and (max-width: 1023px) {
  .pc-m {
    display: none;
  }
}

.sp-m {
  display: none;
}
@media screen and (max-width: 1023px) {
  .sp-m {
    display: block;
  }
}

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

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

a[href="#"] {
  pointer-events: none;
  cursor: default;
}

.center {
  text-align: center;
}

.fadeTrigger {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.fadeLeftTrigger {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-left {
  opacity: 1;
  transform: translateX(0);
}

.fadeRightTrigger {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-right {
  opacity: 1;
  transform: translateX(0);
}

.inner {
  width: 83.3333333333vw;
  max-width: 1200px;
  margin: 0 auto;
  padding: 6.9444444444vw 0;
}
@media screen and (max-width: 1023px) {
  .inner {
    width: 85%;
    padding: 4.1666666667vw 0;
  }
}
@media screen and (max-width: 768px) {
  .inner {
    width: 90%;
    padding: 10.6666666667vw 0vw;
  }
}

h2, h3 {
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.privacy__hero {
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  padding: 4.1666666667vw 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .privacy__hero {
    padding: 12.8vw 0;
  }
}
.privacy__hero-title {
  font-size: 2.8rem;
  color: #fff;
  letter-spacing: 0.1em;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .privacy__hero-title {
    font-size: 2.2rem;
  }
}
.privacy__body {
  background: #fff;
}
.privacy__body .inner {
  padding: 5.5555555556vw 0 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .privacy__body .inner {
    padding: 12.8vw 0 17.0666666667vw;
  }
}
.privacy__lead {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #033064;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .privacy__lead {
    margin-bottom: 3.2rem;
  }
}
.privacy__article {
  margin-bottom: 3.6rem;
}
.privacy__article:last-child {
  margin-bottom: 0;
}
.privacy__article-title {
  font-size: 1.7rem;
  color: #033064;
  border-left: 4px solid #2EB5B1;
  padding-left: 1.2rem;
  margin: 0 0 1.2rem;
}
.privacy__article-text {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 1rem;
}
.privacy__article-text:last-child {
  margin-bottom: 0;
}
.privacy__article-list {
  padding-left: 2rem;
  margin: 0.8rem 0;
}
.privacy__article-list li {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
  margin-bottom: 0.6rem;
}
.privacy__contact-table {
  margin-top: 1.2rem;
  border-collapse: collapse;
  width: 100%;
  margin-right: auto;
}
.privacy__contact-table th, .privacy__contact-table td {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #333;
  padding: 0.6rem 1.2rem 0.6rem 0;
  vertical-align: top;
}
.privacy__contact-table th {
  white-space: nowrap;
  color: #033064;
  font-weight: 700;
  width: 10em;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
}
.header__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 2rem 5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header__inner {
    padding: 1.2rem 1.6rem;
  }
}
.header__logo a {
  display: block;
}
.header__logo img {
  width: 223px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .header__logo img {
    width: 160px;
  }
}
.header__cta-btn {
  display: flex;
  align-items: center;
  gap: 3.6rem;
  padding: 1.6rem 3.6rem 1.6rem 1.6rem;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  border-radius: 5px;
  text-decoration: none;
  position: relative;
}
.header__cta-btn::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .header__cta-btn {
    gap: 1.6rem;
    padding: 1rem 2rem 1rem 1rem;
  }
  .header__cta-btn::before {
    left: 42px;
  }
}
.header__cta-icon {
  width: 26px;
  height: 20px;
}
.header__cta-icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .header__cta-icon {
    width: 20px;
    height: 16px;
  }
}
.header__cta-text {
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .header__cta-text {
    font-size: 1.4rem;
  }
}

.section-heading {
  text-align: center;
}
.section-heading__en {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 1.4rem;
  color: #033064;
  letter-spacing: 0.7px;
  line-height: 1;
}
.section-heading__ja {
  font-weight: 700;
  font-size: 3.6rem;
  color: #033064;
  line-height: 1;
  margin-top: 0.9rem;
}
@media screen and (max-width: 768px) {
  .section-heading__ja {
    font-size: 2.4rem;
  }
}

.fv .inner {
  padding: 9.8rem 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  min-height: 614px;
}
@media screen and (max-width: 768px) {
  .fv .inner {
    flex-direction: column;
    min-height: auto;
  }
}
.fv__content {
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .fv__content {
    padding-top: 2rem;
    text-align: center;
  }
}
.fv__label {
  display: inline-block;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 1.2px;
  padding: 0.5rem 2.4rem;
  border-radius: 26.5px;
  margin-bottom: 3rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv__label {
    width: 100%;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    padding: 0.4rem 1.6rem;
  }
}
.fv__title {
  color: #033064;
  font-weight: 700;
}
.fv__title-line1 {
  display: block;
  font-size: 4.4rem;
  letter-spacing: 4.8px;
  line-height: 1;
}
.fv__title-line1 small {
  font-size: 4rem;
}
@media screen and (max-width: 768px) {
  .fv__title-line1 {
    font-size: 2.8rem;
    letter-spacing: 2px;
  }
  .fv__title-line1 small {
    font-size: 2.4rem;
  }
}
.fv__title-line2 {
  display: block;
  font-size: 6rem;
  letter-spacing: 6px;
  line-height: 1;
  margin-top: 1.6rem;
}
@media screen and (max-width: 768px) {
  .fv__title-line2 {
    font-size: 3.6rem;
    letter-spacing: 3px;
    margin-top: 0.8rem;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    margin-top: 1.6rem;
  }
}
.fv__desc {
  margin-top: 3.2rem;
  margin-bottom: 5rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: #033064;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .fv__desc {
    margin-bottom: 2rem;
  }
}
.fv__desc strong {
  font-weight: 700;
  font-size: 2.2rem;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 768px) {
  .fv__desc {
    margin-top: 2rem;
    font-size: 1.4rem;
  }
  .fv__desc strong {
    font-size: 1.6rem;
  }
}
.fv__badges {
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.fv__badge {
  display: flex;
  align-items: center;
}
.fv__badge-deco {
  width: 230px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv__badge-deco {
    max-width: 150px;
  }
}
.fv__badge-text {
  font-weight: 700;
  color: #a2761f;
  text-align: center;
  line-height: 1.4;
}
.fv__badge-text span {
  font-size: 1.9rem;
  color: #a2761f;
  font-weight: 700;
}
.fv__badge-text small {
  font-size: 1.5rem;
  color: #a2761f;
}
.fv__badge-text p {
  font-size: 1.9rem;
  line-height: 1.4;
  color: #a2761f;
}
.fv__badge-label {
  font-size: 1.9rem !important;
  color: #a2761f !important;
}
.fv__badge-number .num {
  font-size: 3.8rem;
  color: #a2761f;
  font-weight: 700;
  line-height: 1;
}
.fv__badge-number small {
  font-size: 2.1rem;
  color: #a2761f;
}
.fv__image {
  max-width: 680px;
  width: 100%;
}
.fv__image img {
  width: 100%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .fv__image {
    width: 100%;
  }
}

.phs .inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .phs .inner {
    flex-direction: column-reverse;
    gap: 3.2rem;
  }
}
.phs__image {
  max-width: 678px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .phs__image {
    width: 100%;
  }
}
.phs__image img {
  width: 100%;
  height: auto;
}
.phs__content {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .phs__content {
    text-align: center;
  }
}
.phs__label {
  display: inline-block;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  color: #fff;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 1.2px;
  padding: 0.5rem 2.4rem;
  border-radius: 26.5px;
  width: 500px;
  text-align: center;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  .phs__label {
    width: 100%;
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
  }
}
.phs__lead strong {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1.1px;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 768px) {
  .phs__lead strong {
    font-size: 1.8rem;
  }
}
.phs__desc {
  margin-top: 2rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: #033064;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .phs__desc {
    font-size: 1.4rem;
  }
}

.trouble {
  position: relative;
  overflow: visible;
  height: 355px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .trouble {
    height: auto;
    padding: 4rem 0 2rem;
    margin-top: 4rem;
  }
}
.trouble__bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1058px;
  height: 100%;
  background: #fff;
  clip-path: polygon(0% 0%, 100% 0%, 100% 88.7%, 53.3% 88.7%, 50% 100%, 46.7% 88.7%, 0% 88.7%);
}
@media screen and (max-width: 768px) {
  .trouble__bg {
    width: 100%;
    height: 100%;
    clip-path: polygon(0% 0%, 100% 0%, 100% 96%, 55% 96%, 50% 100%, 45% 96%, 0% 96%);
  }
}
.trouble .inner {
  max-width: 838px;
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 0 5rem;
}
@media screen and (max-width: 768px) {
  .trouble .inner {
    padding: 0 1.6rem 4rem;
  }
}
.trouble__accent {
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  border-bottom: 3px solid #2EB5B1;
}
.trouble .section-heading__ja {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
.trouble .section-heading__ja::before, .trouble .section-heading__ja::after {
  content: "";
  display: block;
  flex-shrink: 0;
  width: 40px;
  height: 64px;
  background-image: url("../images/top/quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .trouble .section-heading__ja::before, .trouble .section-heading__ja::after {
    width: 24px;
    height: 38px;
  }
}
.trouble .section-heading__ja::after {
  transform: rotate(180deg);
}
@media screen and (max-width: 768px) {
  .trouble .section-heading__ja-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
  }
}
.trouble__list {
  display: flex;
  gap: 0;
  margin-top: 4.1rem;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .trouble__list {
    flex-direction: column;
    gap: 0;
  }
}
.trouble__col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .trouble__col {
    gap: 1.6rem;
  }
  .trouble__col:last-child {
    margin-top: 1.6rem;
  }
}
.trouble__item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 500;
  font-size: 1.8rem;
  color: #033064;
  line-height: 1.4;
  white-space: nowrap;
  text-align: left;
  letter-spacing: 0.4px;
}
@media screen and (max-width: 768px) {
  .trouble__item {
    font-size: 1.4rem;
    white-space: normal;
  }
}
.trouble__item span:last-child {
  font-size: 1.8rem;
  color: #033064;
}
@media screen and (max-width: 768px) {
  .trouble__item span:last-child {
    font-size: 1.5rem;
  }
}
.trouble__check {
  flex-shrink: 0;
  width: 17px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='17' height='16' viewBox='0 0 17 16' fill='none'%3E%3Cpath d='M7.13598 11.2231C6.84207 11.2231 6.56658 11.1088 6.35862 10.9008L2.94834 7.49052C2.74038 7.28333 2.62604 7.00707 2.62604 6.71316C2.62604 6.41925 2.74038 6.14375 2.94834 5.93579C3.1563 5.7286 3.4318 5.61425 3.72571 5.61425C4.01962 5.61425 4.29511 5.7286 4.50307 5.93656L7.13675 8.57024L15.1237 0.584023C15.3317 0.376061 15.6072 0.261719 15.9011 0.261719C16.195 0.261719 16.4705 0.376061 16.6785 0.584023C16.8864 0.791218 17 1.06748 17 1.36139C17 1.6553 16.8857 1.93079 16.6777 2.13875L7.91411 10.9023C7.70692 11.1103 7.43066 11.2246 7.13675 11.2246L7.13598 11.2231Z' fill='%232EB5B1'/%3E%3Cpath d='M14.0217 6.14755V13.1139C14.0217 13.615 13.6142 14.0225 13.1131 14.0225H2.20164C1.70053 14.0225 1.29305 13.615 1.29305 13.1139V2.20241C1.29305 1.7013 1.70053 1.29382 2.20164 1.29382H13.0579L14.1115 0.240193C13.8115 0.0874827 13.473 0 13.1139 0H2.20164C0.987629 0 0 0.987629 0 2.20164V13.1131C0 14.3271 0.987629 15.3148 2.20164 15.3148H13.1131C14.3271 15.3148 15.3148 14.3271 15.3148 13.1131V4.85373L14.0217 6.14678V6.14755Z' fill='%23033064'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.features {
  position: relative;
  overflow: hidden;
  background-image: url("../images/top/cta_bg.jpg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 8rem 4rem;
  display: flex;
  justify-content: center;
  margin: 8rem 0;
}
@media screen and (max-width: 768px) {
  .features {
    padding: 3rem 1.6rem;
    background-image: none;
    background: linear-gradient(180deg, rgba(18, 188, 154, 0.4) 0%, rgba(57, 178, 186, 0.4) 100%);
    margin: 4rem 0;
  }
}
.features__box {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 0 5rem;
  text-align: center;
  width: 100%;
  max-width: 1058px;
}
@media screen and (max-width: 768px) {
  .features__box {
    padding: 3.2rem 2rem;
  }
}
.features__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .features__head {
    gap: 0.8rem;
  }
}
.features__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .features__title-wrap {
    gap: 1.2rem;
  }
}
.features__hukidashi {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}
.features__hukidashi--right {
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .features__hukidashi {
    width: 24px;
  }
}
.features__title {
  font-weight: 700;
  font-size: 3.2rem;
  color: #033064;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  .features__title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }
}
.features__orange {
  color: #E6856D;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .features__orange {
    font-size: 2.4rem;
  }
}
.features__navy {
  color: #033064;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .features__navy {
    font-size: 2.4rem;
  }
}
.features__green {
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  letter-spacing: 4px;
  font-size: 3.6rem;
}
@media screen and (max-width: 768px) {
  .features__green {
    font-size: 2.4rem;
  }
}
.features__count {
  letter-spacing: 4px;
}
@media screen and (max-width: 768px) {
  .features__count {
    margin-top: 1.2rem;
  }
}
.features__count-body {
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.2rem;
  font-size: clamp(20px, 3vw, 30px);
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .features__count-body {
    font-size: 20px;
    gap: 0;
  }
}

.cta {
  position: relative;
  overflow: hidden;
  background-image: url("../images/top/cta_bg02.jpg");
  background-size: 100% auto;
  background-position: top center;
  background-repeat: no-repeat;
  padding: 8rem 4rem;
  display: flex;
  justify-content: center;
  margin: 8rem 0 0;
}
@media screen and (max-width: 768px) {
  .cta {
    padding: 3rem 1.6rem;
    background-image: none;
    background: linear-gradient(180deg, rgba(18, 188, 154, 0.4) 0%, rgba(57, 178, 186, 0.4) 100%);
    margin: 4rem 0 0;
  }
}
@media screen and (max-width: 768px) {
  .cta .inner {
    padding: 4rem 2rem;
    margin: 4rem 0 0;
  }
}
.cta__box {
  background: #fff;
  border-radius: 20px;
  padding: 3rem 0 5rem;
  text-align: center;
  width: min(838px, 100%);
}
@media screen and (max-width: 768px) {
  .cta__box {
    padding: 3.2rem 2rem;
  }
}
.cta__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .cta__head {
    gap: 0.8rem;
  }
}
.cta__title-wrap {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
@media screen and (max-width: 768px) {
  .cta__title-wrap {
    gap: 0.5rem;
  }
}
.cta__hukidashi {
  width: 32px;
  height: auto;
  flex-shrink: 0;
}
.cta__hukidashi--right {
  transform: scaleX(-1);
}
@media screen and (max-width: 768px) {
  .cta__hukidashi {
    width: 24px;
  }
}
.cta__laurel {
  width: 28px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .cta__laurel {
    width: 20px;
  }
}
.cta__laurel--right {
  transform: scaleX(-1);
}
.cta__title {
  font-weight: 700;
  font-size: 3.2rem;
  color: #033064;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  .cta__title {
    font-size: 1.8rem;
    letter-spacing: 0.5px;
  }
}
.cta__deco {
  width: 40px;
  height: auto;
}
.cta__count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.2rem;
}
@media screen and (max-width: 768px) {
  .cta__count {
    gap: 0.8rem;
  }
}
.cta__count-deco {
  width: 24px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .cta__count-deco {
    width: 16px;
  }
}
.cta__count-body {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
@media screen and (max-width: 768px) {
  .cta__count-body {
    flex-direction: column;
    align-items: center;
    gap: 0;
  }
}
.cta__count-nums {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.cta__count-label {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #e6856d 0%, #e6866d 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 768px) {
  .cta__count-label {
    font-size: 1.4rem;
  }
}
.cta__count-num {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 4.8rem;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .cta__count-num {
    font-size: 3.6rem;
  }
}
.cta__count-unit {
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: 1px;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 768px) {
  .cta__count-unit {
    font-size: 1.4rem;
  }
}
.cta__count-over {
  font-weight: 700;
  font-size: 1.6rem;
  color: #033064;
  letter-spacing: 0.8px;
}
@media screen and (max-width: 768px) {
  .cta__count-over {
    font-size: 1.2rem;
  }
}
.cta__desc {
  font-weight: 500;
  font-size: 1.6rem;
  color: #033064;
  letter-spacing: 0.8px;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .cta__desc {
    font-size: 1.4rem;
  }
  .cta__desc br {
    display: none;
  }
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 7rem;
  padding: 1.9rem 7.2rem 1.9rem 1.6rem;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  border-radius: 5px;
  text-decoration: none;
  margin-top: 1.8rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .cta__btn {
    gap: 2.4rem;
    padding: 1.4rem 3.2rem 1.4rem 1.2rem;
  }
}
.cta__btn::before {
  content: "";
  position: absolute;
  left: 58px;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
}
@media screen and (max-width: 768px) {
  .cta__btn::before {
    left: 42px;
  }
}
.cta__btn-icon {
  width: 26px;
  height: 20px;
}
.cta__btn-icon img {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cta__btn-icon {
    width: 20px;
    height: 16px;
  }
}
.cta__btn span {
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .cta__btn span {
    font-size: 1.4rem;
  }
}

.system {
  padding: 0 4rem;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .system {
    padding: 0 1.6rem;
  }
}
.system__box {
  width: 100%;
  max-width: 1058px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 6rem;
}
@media screen and (max-width: 768px) {
  .system__box {
    gap: 4rem;
  }
}
.system__header {
  display: flex;
  align-items: center;
  justify-content: center;
}
.system__header--green {
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
}
.system__header--orange {
  background: linear-gradient(180deg, #E6856D 0%, #E6866D 100%);
}
.system__header-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: #fff;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  .system__header-title {
    font-size: 1.8rem;
  }
}
.system__content {
  padding: 0 10.9rem 4rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .system__content {
    padding: 0 1.6rem 3.2rem;
    gap: 2.5rem;
  }
}
.system__facilities {
  background: #EDF2F6;
  padding: 3rem 8.1rem 2.4rem;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .system__facilities {
    padding: 2rem 1.6rem;
    margin-top: 3rem;
  }
}
.system__facilities-label {
  display: flex;
  align-items: flex-end;
  gap: 0.7rem;
  margin-bottom: 1.2rem;
}
.system__facilities-icon {
  width: 30px;
  height: 28px;
}
@media screen and (max-width: 768px) {
  .system__facilities-icon {
    width: 25px;
    height: 22px;
  }
}
.system__facilities-icon--orange {
  filter: brightness(0) saturate(100%) invert(66%) sepia(28%) saturate(700%) hue-rotate(318deg) brightness(102%) contrast(92%);
}
.system__facilities-name {
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1.1px;
  line-height: 1;
}
.system__facilities-name--green {
  color: #2EB5B1;
}
.system__facilities-name--orange {
  color: #E6856D;
}
@media screen and (max-width: 768px) {
  .system__facilities-name {
    font-size: 1.6rem;
  }
}
.system__facilities-line {
  height: 1px;
  margin-bottom: 2rem;
}
.system__facilities-line--green {
  background: #2EB5B1;
}
.system__facilities-line--orange {
  background: #E6856D;
}
.system__facilities-cols {
  display: flex;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .system__facilities-cols {
    flex-direction: column;
    gap: 1rem;
  }
}
.system__facilities-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.system__facilities-col p {
  font-weight: 700;
  font-size: 1.8rem;
  color: #033064;
  line-height: normal;
}
@media screen and (max-width: 768px) {
  .system__facilities-col p {
    font-size: 1.4rem;
  }
}
.system__tagline {
  text-align: center;
  width: 100%;
}
.system__tagline p {
  position: relative;
  font-weight: 700;
  font-size: 2.2rem;
  letter-spacing: 1.2px;
  line-height: 1.4;
  padding: 1.4rem 4rem;
  border-radius: 9999px;
  background: #fff;
}
.system__tagline p::before, .system__tagline p::after {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: solid transparent;
  border-right: solid transparent;
  border-top: solid;
}
.system__tagline p::before {
  bottom: -14px;
  border-left-width: 11px;
  border-right-width: 11px;
  border-top-width: 14px;
}
.system__tagline p::after {
  bottom: -11px;
  border-left-width: 9px;
  border-right-width: 9px;
  border-top-width: 11px;
  border-top-color: #fff !important;
}
@media screen and (max-width: 768px) {
  .system__tagline p {
    font-size: 1.5rem;
    padding: 1rem 1.5rem;
    text-align: center;
  }
}
.system__tagline--green p {
  color: #2EB5B1;
  border: 2px solid #2EB5B1;
}
.system__tagline--green p::before {
  border-top-color: #2EB5B1;
}
.system__tagline--orange p {
  color: #E6856D;
  border: 2px solid #E6856D;
}
.system__tagline--orange p::before {
  border-top-color: #E6856D;
}
.system__diagram img {
  width: 100%;
  height: auto;
  display: block;
}

.product-features {
  padding: 0 4rem 0;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .product-features {
    padding: 0 1.6rem 0;
  }
}
.product-features__inner {
  width: 100%;
  max-width: 1058px;
  background: #fff;
  padding: 4rem 6rem 6rem;
}
@media screen and (max-width: 768px) {
  .product-features__inner {
    padding: 2.4rem 1.6rem 4rem;
  }
}
.product-features__grid {
  display: flex;
  gap: 4.7rem;
  margin-top: 4rem;
}
@media screen and (max-width: 768px) {
  .product-features__grid {
    flex-direction: column;
    gap: 4rem;
    margin-top: 2rem;
  }
}
.product-features__item {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-features__head {
  display: flex;
  align-items: baseline;
  gap: 0.4rem;
}
.product-features__num {
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 2.4rem;
  color: #2EB5B1;
  line-height: 1;
}
.product-features__title {
  font-weight: 700;
  font-size: 2.4rem;
  color: #033064;
  letter-spacing: 1.2px;
}
@media screen and (max-width: 768px) {
  .product-features__title {
    font-size: 2rem;
  }
}
.product-features__img img {
  width: 100%;
  height: auto;
  display: block;
}
.product-features__desc {
  font-weight: 500;
  font-size: 1.6rem;
  color: #033064;
  letter-spacing: 0.8px;
  line-height: 1.6;
}
.product-features__models {
  margin-top: 6rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .product-features__models {
    margin-top: 4rem;
  }
}
.product-features__models-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .product-features__models-list {
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
  }
}
.product-features__model {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.2rem;
}
.product-features__model-circle {
  width: 174px;
  height: 174px;
  border-radius: 50%;
  background: #EDF2F6;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .product-features__model-circle {
    width: 140px;
    height: 140px;
  }
}
.product-features__model-circle img {
  max-width: 75%;
  max-height: 75%;
  -o-object-fit: contain;
     object-fit: contain;
}
.product-features__model-name {
  font-weight: 700;
  font-size: 1.6rem;
  color: #033064;
  letter-spacing: 0.8px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .product-features__model-name {
    font-size: 1.4rem;
  }
}
.product-features__models-desc {
  font-weight: 500;
  font-size: 1.8rem;
  color: #033064;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .product-features__models-desc {
    font-size: 1.5rem;
  }
}

.flow .inner {
  max-width: 1057px;
}
.flow__list {
  margin-top: 5.6rem;
}
.flow__list > :nth-child(1) .flow__icon img {
  width: 50%;
}
.flow__list > :nth-child(2) .flow__icon img {
  width: 35%;
}
.flow__list > :nth-child(3) .flow__icon img {
  width: 55%;
}
.flow__list > :nth-child(4) .flow__icon img {
  width: 45%;
}
.flow__icon {
  flex-shrink: 0;
  width: 160px;
  height: 160px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .flow__icon {
    width: 120px;
    height: 120px;
  }
}
.flow__icon img {
  width: 60%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.flow__item {
  display: flex;
  align-items: center;
  gap: 4.8rem;
  width: 100%;
  padding-bottom: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid #2EB5B1;
  position: relative;
}
@media screen and (max-width: 768px) {
  .flow__item {
    flex-direction: column;
    gap: 2rem;
    text-align: center;
    margin-bottom: 4rem;
  }
}
.flow__item ::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .flow__item ::after {
    bottom: -15px;
  }
}
.flow__item ::after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 15px 0 15px;
  border-color: #2EB5B1 transparent transparent transparent;
}
@media screen and (max-width: 768px) {
  .flow__item ::after {
    border-width: 15px 10px 0 10px;
  }
}
.flow__item:last-of-type {
  border-bottom: none;
  margin-bottom: 0;
}
.flow__item:last-of-type ::after {
  display: none;
}
.flow__text {
  flex: 1;
}
.flow__step {
  font-family: "Jost", sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 1.44px;
  line-height: 1;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
@media screen and (max-width: 768px) {
  .flow__step {
    font-size: 1.6rem;
  }
}
.flow__item-title {
  font-weight: 700;
  font-size: 2.4rem;
  color: #033064;
  letter-spacing: 1.2px;
  margin-top: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .flow__item-title {
    font-size: 2rem;
    margin-top: 1.2rem;
  }
}
.flow__item-title small {
  font-size: 1.8rem;
  font-weight: 700;
}
.flow__item-desc {
  font-weight: 500;
  font-size: 1.8rem;
  color: #033064;
  line-height: 1.8;
  margin-top: 2.4rem;
}
@media screen and (max-width: 768px) {
  .flow__item-desc {
    font-size: 1.4rem;
    margin-top: 1.2rem;
    text-align: left;
  }
}

.faq .inner {
  padding: 0;
}
.faq__list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 850px;
  margin: 5.6rem auto 0;
}
.faq__item.is-open .faq__toggle::after {
  transform: rotate(0);
}
.faq__question {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: #fff;
  border-radius: 4px;
  padding: 1.6rem 2.4rem;
  cursor: pointer;
}
.faq__q-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #033064;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.faq__q-text {
  flex: 1;
  font-weight: 500;
  font-size: 1.8rem;
  color: #033064;
  line-height: 1.7;
}
.faq__toggle {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  position: relative;
}
.faq__toggle::before, .faq__toggle::after {
  content: "";
  position: absolute;
  background: #033064;
  transition: transform 0.3s;
}
.faq__toggle::before {
  width: 16px;
  height: 2px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.faq__toggle::after {
  width: 2px;
  height: 16px;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.faq__item.is-open .faq__toggle::after {
  transform: translateX(-50%) rotate(90deg);
}
.faq__answer {
  display: none;
  padding: 2.4rem 2.4rem 0;
  gap: 2.4rem;
}
.is-open .faq__answer {
  display: flex;
}
.faq__a-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Jost", sans-serif;
  font-weight: 500;
  font-size: 1.8rem;
  color: #fff;
  line-height: 1;
}
.faq__a-text {
  flex: 1;
  font-weight: 500;
  font-size: 1.6rem;
  color: #033064;
  letter-spacing: 0.8px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .faq__q-text {
    font-size: 1.5rem;
  }
  .faq__a-text {
    font-size: 1.4rem;
  }
}

.contact__box {
  background: #fff;
  padding: 10.4rem 11rem;
}
@media screen and (max-width: 768px) {
  .contact__box {
    padding: 4rem 2rem;
  }
}
.contact__form {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  max-width: 850px;
  margin: 5.6rem auto 0;
}
@media screen and (max-width: 768px) {
  .contact__form {
    gap: 2rem;
  }
}
.contact__field {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
.contact__label {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.contact__label-text {
  font-weight: 500;
  font-size: 1.6rem;
  color: #033064;
  line-height: 24px;
}
.contact__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 16px;
  background: #2EB5B1;
  font-weight: 500;
  font-size: 1rem;
  color: #fff;
  line-height: 1;
}
.contact__input {
  width: 100%;
  height: 46px;
  border: 1px solid #bdbdbd;
  background: #fff;
  padding: 0 1.2rem;
  font-size: 1.5rem;
}
.contact__input:focus {
  outline: 2px solid #2EB5B1;
  outline-offset: -2px;
}
.contact__textarea {
  width: 100%;
  height: 240px;
  border: 1px solid #bdbdbd;
  background: #fff;
  padding: 1.2rem;
  font-size: 1.5rem;
  resize: vertical;
}
.contact__textarea:focus {
  outline: 2px solid #2EB5B1;
  outline-offset: -2px;
}
.contact__privacy label {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  cursor: pointer;
}
.contact__privacy input[type=checkbox] {
  width: 15px;
  height: 15px;
  border: 1px solid #ddd;
  flex-shrink: 0;
}
.contact__privacy span {
  font-weight: 500;
  font-size: 1.4rem;
  color: #033064;
}
.contact__privacy-link {
  color: #2EB5B1;
  text-decoration: underline;
  font-size: 1.4rem;
}
.contact__error {
  font-size: 1.2rem;
  color: #e05;
  margin-top: 0.4rem;
}
.contact__input.is-error, .contact__textarea.is-error {
  border-color: #e05;
  outline-color: #e05;
}
.contact__submit {
  text-align: center;
  margin-top: 2.4rem;
}
.contact__submit-btn {
  display: inline-block;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  color: #fff;
  font-family: inherit;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 1.8rem 6rem;
  border-radius: 5px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact__submit-btn:hover {
  opacity: 0.8;
}

.footer {
  background: #2EB5B1;
  padding: 3.5rem 0;
}
.footer__inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 8rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.footer__left {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.footer__logo img {
  width: 180px;
  height: auto;
  filter: brightness(0) invert(1);
  cursor: pointer;
  transition: opacity 0.3s;
}
.footer__logo img:hover {
  opacity: 0.8;
}
.footer__company-link {
  font-size: 1.2rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  cursor: pointer;
  transition: opacity 0.3s;
}
.footer__company-link:hover {
  opacity: 0.8;
}
.footer__arrow {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(45deg);
}
.footer__copyright {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0;
  font-weight: 400;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 768px) {
  .footer__inner {
    flex-direction: column;
    gap: 1.6rem;
    padding: 0 2rem;
  }
  .footer__left {
    flex-direction: column;
    gap: 1.2rem;
  }
}

.fv_under {
  position: relative;
  max-height: 300px;
  min-height: 200px;
  width: 100%;
  margin-top: 13.8888888889vw;
}
@media screen and (max-width: 768px) {
  .fv_under {
    max-height: 200px;
    min-height: 100px;
    margin-top: 27.7777777778vw;
  }
}
.fv_under .catch_under {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 6.9444444444vw;
  color: #033064;
}
@media screen and (max-width: 1023px) {
  .fv_under .catch_under {
    padding: 0 8vw;
  }
}
.fv_under .catch_under .sub {
  font-weight: 700;
  font-size: 2rem;
  font-family: "Jost", sans-serif;
}
@media screen and (max-width: 768px) {
  .fv_under .catch_under .sub {
    font-size: 1.6rem;
  }
}
.fv_under .catch_under h1 {
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.9px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .fv_under .catch_under h1 {
    font-size: 2.4rem;
  }
}

.bread .inner {
  padding: 0.6944444444vw 0;
}
@media screen and (max-width: 768px) {
  .bread .inner {
    padding: 2.6666666667vw 0;
  }
}
.bread .breadcrumbs {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  padding: 0;
  margin: 0;
}
.bread .breadcrumbs li {
  white-space: nowrap;
}
.bread .breadcrumbs li:first-child::marker {
  content: none;
}
.bread .breadcrumbs li:nth-child(3) {
  white-space: normal;
}
@media screen and (max-width: 768px) {
  .bread .breadcrumbs li {
    font-size: 1rem;
  }
  .bread .breadcrumbs li:first-child::marker {
    content: none;
  }
}
.bread .breadcrumbs li a {
  position: relative;
  font-size: 1.4rem;
  padding-right: 3rem;
  color: #12BC9A;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .bread .breadcrumbs li a {
    font-size: 1rem;
  }
}
.bread .breadcrumbs li:last-child {
  color: #033064;
}

.ttl_under {
  position: relative;
  text-align: center;
  margin-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .ttl_under {
    margin-bottom: 2rem;
  }
}
.ttl_under .en {
  color: #033064;
  font-weight: 700;
  font-family: "Jost", sans-serif;
  font-size: 1.8rem;
}
@media screen and (max-width: 768px) {
  .ttl_under .en {
    font-size: 1.6rem;
  }
}
.ttl_under h2 {
  color: #033064;
  font-size: 2.8rem;
  font-weight: 600;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .ttl_under h2 {
    font-size: 2rem;
  }
}
.ttl_under h2::after {
  content: none;
}
.ttl_under.--left {
  text-align: left;
}
@media screen and (max-width: 1023px) {
  .ttl_under.--left {
    margin-bottom: 2rem;
  }
}

.privacy__body {
  background: #fff;
}
.privacy__body .inner {
  padding: 5.5555555556vw 0 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .privacy__body .inner {
    padding: 12.8vw 0 17.0666666667vw;
  }
}
.privacy__lead {
  font-size: 1.5rem;
  line-height: 1.9;
  color: #033064;
  margin-bottom: 4rem;
}
@media screen and (max-width: 768px) {
  .privacy__lead {
    margin-bottom: 3.2rem;
  }
}
.privacy__article {
  margin-bottom: 3.6rem;
}
.privacy__article:last-child {
  margin-bottom: 0;
}
.privacy__article-title {
  font-size: 2rem;
  background: linear-gradient(180deg, #12BC9A 0%, #39B2BA 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
  border-left: 4px solid #2EB5B1;
  padding-left: 1.2rem;
  margin: 0 0 1.2rem;
}
.privacy__article-text {
  line-height: 1.9;
  margin-bottom: 1rem;
}
.privacy__article-text:last-child {
  margin-bottom: 0;
}
.privacy__article-text {
  color: #033064;
}
.privacy__article-list {
  padding-left: 2rem;
  margin: 0.8rem 0;
}
.privacy__article-list li {
  line-height: 1.9;
  margin-bottom: 0.6rem;
  color: #033064;
}

.company .inner {
  padding: 5.5555555556vw 0 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .company .inner {
    padding: 12.8vw 0 17.0666666667vw;
  }
}
.company .company_bg {
  width: 1000px;
  margin: 0 auto;
  background: #fff;
  padding: 8rem;
}
@media screen and (max-width: 768px) {
  .company .company_bg {
    width: 100%;
    padding: 4rem;
  }
}
.company .company_bg table {
  width: 100%;
  border-collapse: collapse;
}
.company .company_bg table tr {
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 768px) {
  .company .company_bg table tr {
    display: flex;
    flex-direction: column;
    border-bottom: 0px solid #ddd;
  }
}
.company .company_bg table th, .company .company_bg table td {
  padding: 2rem 2.4rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #033064;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 768px) {
  .company .company_bg table th, .company .company_bg table td {
    padding: 1.2rem 1.6rem;
    font-size: 1.6rem;
  }
}
.company .company_bg table th {
  width: 15%;
  font-weight: 700;
  white-space: nowrap;
  border-bottom: 2px solid #2EB5B1;
}
@media screen and (max-width: 768px) {
  .company .company_bg table th {
    width: 100%;
    white-space: normal;
  }
}

.history .inner {
  padding: 5.5555555556vw 0 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .history .inner {
    padding: 12.8vw 0 17.0666666667vw;
  }
}
.history .history_table {
  width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .history .history_table {
    width: 100%;
  }
}
.history .history_table dl {
  position: relative;
  margin: 0;
  padding: 0;
}
.history .history_table dl::before {
  content: "";
  position: absolute;
  left: 18rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, #2EB5B1 0%, #39B2BA 100%);
}
@media screen and (max-width: 768px) {
  .history .history_table dl::before {
    left: 1.2rem;
  }
}
.history .history_table__row {
  display: flex;
  align-items: flex-start;
  gap: 3rem;
  padding: 2.4rem 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .history .history_table__row {
    flex-direction: column;
    gap: 0.4rem;
    padding: 2rem 0 2rem 3rem;
  }
}
.history .history_table__row::before {
  content: "";
  position: absolute;
  left: 17.2rem;
  top: 3rem;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #2EB5B1;
  border: 3px solid #fff;
  box-shadow: 0 0 0 2px #2EB5B1;
}
@media screen and (max-width: 768px) {
  .history .history_table__row::before {
    left: 0.5rem;
    top: 2.2rem;
  }
}
.history .history_table__row dt {
  width: 20rem;
  flex-shrink: 0;
  font-size: 1.8rem;
  font-weight: 700;
  color: #2EB5B1;
  line-height: 1.6;
  padding-top: 0.2rem;
}
@media screen and (max-width: 768px) {
  .history .history_table__row dt {
    width: auto;
    font-size: 1.4rem;
  }
}
.history .history_table__row dd {
  flex: 1;
  margin: 0;
  padding-left: 5rem;
  font-size: 1.5rem;
  line-height: 1.8;
  color: #033064;
}
@media screen and (max-width: 768px) {
  .history .history_table__row dd {
    padding-left: 0;
    font-size: 1.4rem;
  }
}

.thanks {
  text-align: center;
}
.thanks .inner {
  padding: 6.9444444444vw 0 6.9444444444vw;
}
@media screen and (max-width: 768px) {
  .thanks .inner {
    padding: 26.6666666667vw 0 17.0666666667vw;
  }
}
.thanks .thanks_ttl {
  font-size: 2rem;
  font-weight: 700;
  color: #2EB5B1;
  margin-bottom: 1.6rem;
}
.thanks .thanks_btn {
  display: inline-block;
  margin-top: 4rem;
  padding: 1.4rem 4rem;
  background-color: #2EB5B1;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  border-radius: 4px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.thanks .thanks_btn:hover {
  opacity: 0.75;
}
@media screen and (max-width: 768px) {
  .thanks .thanks_btn {
    margin-top: 3.2rem;
    padding: 1.2rem 3rem;
    font-size: 1.4rem;
  }
}