@charset "UTF-8";
@font-face {
  font-display: swap;
  font-family: "LINE Seed JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/LINESeedJP_OTF_Bd.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Bd.woff") format("woff"), url("../fonts/LINESeedJP_TTF_Bd.ttf") format("truetype");
}
@font-face {
  font-display: swap;
  font-family: "LINE Seed JP";
  font-style: normal;
  font-weight: 800;
  src: url("../fonts/LINESeedJP_OTF_Eb.woff2") format("woff2"), url("../fonts/LINESeedJP_OTF_Eb.woff") format("woff"), url("../fonts/LINESeedJP_TTF_Eb.ttf") format("truetype");
}
@-webkit-keyframes bounce {
  0% {
    -webkit-transform: scale(0) translateY(100px);
            transform: scale(0) translateY(100px);
  }
  10% {
    -webkit-transform: scale(0) translateY(100px);
            transform: scale(0) translateY(100px);
  }
  20% {
    -webkit-transform: scale(0) translateY(100px);
            transform: scale(0) translateY(100px);
  }
  30% {
    -webkit-transform: scale(1.3) translateY(-30px);
            transform: scale(1.3) translateY(-30px);
  }
  45% {
    -webkit-transform: scale(0.8) translateY(15px);
            transform: scale(0.8) translateY(15px);
  }
  55% {
    -webkit-transform: scale(1.1) translateY(-10px);
            transform: scale(1.1) translateY(-10px);
  }
  65% {
    -webkit-transform: scale(0.95) translateY(5px);
            transform: scale(0.95) translateY(5px);
  }
  75% {
    -webkit-transform: scale(1.05) translateY(-3px);
            transform: scale(1.05) translateY(-3px);
  }
  85% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@keyframes bounce {
  0% {
    -webkit-transform: scale(0) translateY(100px);
            transform: scale(0) translateY(100px);
  }
  10% {
    -webkit-transform: scale(0) translateY(100px);
            transform: scale(0) translateY(100px);
  }
  20% {
    -webkit-transform: scale(0) translateY(100px);
            transform: scale(0) translateY(100px);
  }
  30% {
    -webkit-transform: scale(1.3) translateY(-30px);
            transform: scale(1.3) translateY(-30px);
  }
  45% {
    -webkit-transform: scale(0.8) translateY(15px);
            transform: scale(0.8) translateY(15px);
  }
  55% {
    -webkit-transform: scale(1.1) translateY(-10px);
            transform: scale(1.1) translateY(-10px);
  }
  65% {
    -webkit-transform: scale(0.95) translateY(5px);
            transform: scale(0.95) translateY(5px);
  }
  75% {
    -webkit-transform: scale(1.05) translateY(-3px);
            transform: scale(1.05) translateY(-3px);
  }
  85% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
  100% {
    -webkit-transform: scale(1) translateY(0);
            transform: scale(1) translateY(0);
  }
}
@-webkit-keyframes drop {
  from {
    -webkit-transform: translateY(-400px);
            transform: translateY(-400px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes drop {
  from {
    -webkit-transform: translateY(-400px);
            transform: translateY(-400px);
  }
  to {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@-webkit-keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeUp {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
/*------------------------------
reset
------------------------------*/
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*:focus {
  outline-color: #fabd3e;
}
*:focus-visible {
  outline-color: #fabd3e;
}
*:focus-within {
  outline-color: #fabd3e;
}

html {
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  font-size: 62.5%;
}

body {
  width: 100%;
  min-width: 375px;
  height: 100%;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  color: #00345a;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  vertical-align: middle;
}

input,
button,
textarea,
select {
  margin: 0;
  padding: 0;
  font-family: inherit;
  color: inherit;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select::-ms-expand {
  display: none;
}

/*------------------------------
reset end
------------------------------*/
/*------------------------------
header
------------------------------*/
.header {
  position: relative;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (max-width: 767px) {
  .header {
    pointer-events: none;
    opacity: 0;
  }
}
@media (max-width: 767px) {
  .header.visible {
    pointer-events: auto;
    opacity: 1;
  }
}
.header__contents {
  position: fixed;
  z-index: 3;
  width: 100%;
  padding: 30px;
  text-align: center;
  background-color: #fff;
  -webkit-transform: translateY(-100%);
          transform: translateY(-100%);
  opacity: 0;
}
@media (min-width: 768px) {
  .header__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-inline: auto;
    padding: 0 50px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
            box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  }
}
@media (max-width: 767px) {
  .header__contents.is-open {
    height: 100%;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    opacity: 1;
    -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  }
}
.header__title {
  margin-bottom: 36px;
}
@media (min-width: 768px) {
  .header__title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    margin-bottom: 0;
  }
}
.header__title-link {
  display: block;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.header__title-link:hover {
  opacity: 0.5;
}
.header__nav {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .header__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.header__item {
  margin-bottom: 12px;
}
.header__item:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .header__item {
    position: relative;
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  .header__item + .header__item::before {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    display: inline-block;
    content: "";
    width: 1px;
    height: 20px;
    margin: auto;
    background-color: #00345a;
  }
}
@media (max-width: 767px) {
  .header__item + .header__list {
    margin-top: 36px;
  }
}
@media (min-width: 768px) {
  .header__item + .header__list {
    margin-left: 10px;
  }
}
@media (min-width: 768px) {
  .header__item + .header__list li + li {
    margin-left: 20px;
  }
}
@media (min-width: 768px) {
  .header__item + .header__list li + li::before {
    display: none;
  }
}
.header__item-link {
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  padding: 12px;
  font-size: 2rem;
  font-weight: bold;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.header__item-link:hover {
  opacity: 0.5;
}
@media (min-width: 768px) {
  .header__item-link {
    min-width: 150px;
    padding: 28px 20px;
  }
}
.header__item--contact {
  margin-bottom: 24px;
}
@media (min-width: 768px) {
  .header__item--contact {
    margin-bottom: 0;
  }
}
.header__item--contact > .header__item-link {
  width: min(100%, 150px);
  margin-inline: auto;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #ff0076;
  border-radius: 100px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  opacity: 1;
}
.header__item--contact > .header__item-link:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
@media (min-width: 768px) {
  .header__item--contact > .header__item-link {
    padding: 10px 20px;
  }
}
.header__item--request > .header__item-link {
  width: min(100%, 150px);
  margin-inline: auto;
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  background-color: #00345a;
  border-radius: 1000px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  opacity: 1;
}
.header__item--request > .header__item-link:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
@media (min-width: 768px) {
  .header__item--request > .header__item-link {
    padding: 10px 20px;
  }
}
.header__menu {
  position: fixed;
  z-index: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  inset: 20px 20px auto auto;
  width: 50px;
  height: 50px;
  background-color: #ff0076;
  border: 2px solid #fff;
  border-radius: 25px;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
@media (min-width: 768px) {
  .header__menu {
    display: none;
  }
}
.header__menu--border {
  position: absolute;
  width: 20px;
  height: 3px;
  background-color: white;
  border-radius: 1px;
  -webkit-transition: top 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out;
  transition: top 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out 0.2s;
  transition: transform 0.2s ease-in-out, top 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.header__menu--border:nth-of-type(1) {
  top: calc(50% - 4px);
}
.header__menu--border:nth-of-type(2) {
  top: calc(50% + 4px);
}
.header__menu.is-open .header__menu--border:nth-of-type(1) {
  top: 50%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out 0.2s;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out 0.2s;
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s;
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out 0.2s;
}
.header__menu.is-open .header__menu--border:nth-of-type(2) {
  top: 50%;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out 0.2s;
  transition: top 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out 0.2s;
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s;
  transition: top 0.2s ease-in-out, transform 0.2s ease-in-out 0.2s, -webkit-transform 0.2s ease-in-out 0.2s;
}

/*------------------------------
header end
------------------------------*/
/*------------------------------
main
------------------------------*/
main {
  display: block;
}
@media (min-width: 768px) {
  main {
    padding-top: 86px;
  }
}
@media (min-width: 768px) {
  main.privacy {
    padding-top: 186px;
  }
}

.mv {
  background: url(../img/mv-bg--sp.png) center center/cover no-repeat;
}
@media (min-width: 768px) {
  .mv__contents {
    padding-top: 54.56px;
  }
}
.mv__picture {
  overflow: hidden;
  display: block;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__picture {
    margin-bottom: -8px;
  }
}
@media (max-width: 767px) {
  .mv__image {
    width: 100%;
  }
}
@media (min-width: 768px) {
  .mv__image {
    -webkit-transform: translate(31px, 0) scale(1.092);
            transform: translate(31px, 0) scale(1.092);
    -webkit-transform-origin: bottom center;
            transform-origin: bottom center;
  }
}

.cv-top {
  position: relative;
}
.cv-top::before {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 0, 100% 7.5px, 100% 15px, 0 20px);
          clip-path: polygon(0 0, 100% 7.5px, 100% 15px, 0 20px);
}
.cv-top::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 7.5px, 100% 0, 100% 100%, 0 15px);
          clip-path: polygon(0 7.5px, 100% 0, 100% 100%, 0 15px);
}
.cv-top__contents {
  padding: 30px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff023), to(#ffd800));
  background-image: linear-gradient(180deg, #fff023, #ffd800);
}
.cv-top__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cv-top__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cv-top__item {
  width: min(100%, 330px);
  margin-inline: auto;
  margin-bottom: 10px;
}
.cv-top__item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .cv-top__item {
    margin-inline: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1040px) {
  .cv-top__item {
    width: min(100%, 420px);
  }
}
@media screen and (min-width: 768px) {
  .cv-top__item + .cv-top__item {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1040px) {
  .cv-top__item + .cv-top__item {
    margin-left: 40px;
  }
}
.cv-top__link {
  position: relative;
  display: block;
  padding: 20px 50px 20px 20px;
  font-family: LINE Seed JP, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  background-color: #ff0076;
  border-radius: 1000px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 1040px) {
  .cv-top__link {
    padding: 30px 63px 30px 30px;
    font-size: 2.9rem;
  }
}
.cv-top__link:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.cv-top__link::before {
  position: absolute;
  inset: 0 20px 0 auto;
  content: "";
  width: 30px;
  height: 30px;
  margin: auto;
  background: url(../img/btn-icon--white.svg) left top/contain no-repeat;
}
@media (min-width: 1040px) {
  .cv-top__link::before {
    width: 43px;
    height: 43px;
  }
}
.cv-top__link--pink {
  background-color: #ff0076;
}
.cv-top__link--navy {
  background-color: #00345a;
}
.cv-top__link--navy .cv-top__label {
  -webkit-transform: translate(0, 12px);
          transform: translate(0, 12px);
}
@media screen and (min-width: 1040px) {
  .cv-top__link--navy .cv-top__label {
    -webkit-transform: translate(0, 16px);
            transform: translate(0, 16px);
  }
}
.cv-top__label {
  display: block;
  text-align: center;
}
.cv-top__cta {
  position: absolute;
  inset: 12px 0 auto 0;
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  text-indent: -30px;
  line-height: 1;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 1040px) {
  .cv-top__cta {
    inset: 20px 0 auto 0;
    font-size: 2rem;
  }
}
.cv-top__cta-letter {
  position: relative;
  padding: 0 10px;
}
@media (min-width: 1040px) {
  .cv-top__cta-letter {
    padding: 0 20px;
  }
}
.cv-top__cta-letter::before {
  position: absolute;
  top: 4px;
  left: -12px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 21px;
  margin: auto;
  background: url(../img/btn-callout--white.svg) left top/contain no-repeat;
}
@media (min-width: 1040px) {
  .cv-top__cta-letter::before {
    width: 19px;
    height: 26px;
  }
}
.cv-top__cta-letter::after {
  position: absolute;
  top: 4px;
  right: -12px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 21px;
  margin: auto;
  background: url(../img/btn-callout--white.svg) left top/contain no-repeat;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (min-width: 1040px) {
  .cv-top__cta-letter::after {
    width: 19px;
    height: 26px;
  }
}

.section-problem {
  background-color: #fff;
  background-image: radial-gradient(rgba(35, 81, 154, 0.09) 5.5px, transparent 5.5px);
  background-size: 30px 30px;
}
.section-problem__contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 80px 30px;
}
@media screen and (min-width: 768px) {
  .section-problem__contents {
    padding: 100px 30px;
  }
}
.section-problem__headline {
  position: relative;
  width: min(100%, 330px);
  margin-inline: auto;
  margin-bottom: 35px;
  padding: 12px;
  line-height: 1.3;
  letter-spacing: 0.05em;
  text-align: center;
  overflow-wrap: break-word;
  word-break: keep-all;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  background-color: #00345a;
  border-radius: 1000px;
}
@media screen and (min-width: 768px) {
  .section-problem__headline {
    width: min(100%, 1270px);
    margin-bottom: 56px;
    padding: 20px;
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1040px) {
  .section-problem__headline {
    padding: 20px 48px;
    font-size: 3.6rem;
  }
}
@media screen and (min-width: 1270px) {
  .section-problem__headline {
    width: calc(100% + 230px);
    font-size: 4.8rem;
    translate: -115px 0;
  }
}
.section-problem__headline::before {
  position: absolute;
  inset: 99.5% auto auto 50%;
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .section-problem__headline::before {
    width: 40px;
    height: 26px;
  }
}
.section-problem__headline--yellow {
  display: block;
  color: #fff023;
}
@media screen and (min-width: 768px) {
  .section-problem__headline--yellow {
    display: inline-block;
  }
}
.section-problem__message {
  width: min(100%, 800px);
  margin-inline: auto;
  margin-bottom: 30px;
  border: 5px solid #00345a;
  border-radius: 30px;
}
.section-problem__message-headline {
  padding: 20px 30px;
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  background-color: #fff023;
  border-bottom: 5px solid #00345a;
  border-radius: 25px 25px 0 0;
}
@media screen and (min-width: 768px) {
  .section-problem__message-headline {
    font-size: 3rem;
  }
}
@media screen and (min-width: 768px) {
  .section-problem__message-headline br {
    display: none;
  }
}
.section-problem__message-headline--pink {
  color: #ff0076;
}
.section-problem__message-text {
  position: relative;
  padding: 20px 30px;
  line-height: 1.7;
  font-weight: 700;
  background-color: #fff;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: bold;
  border-radius: 0 0 25px 25px;
}
@media (min-width: 768px) {
  .section-problem__message-text {
    text-align: center;
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .section-problem__message-text::before {
    position: absolute;
    left: -88px;
    bottom: 11px;
    display: inline-block;
    content: "";
    width: 175px;
    height: 201px;
    margin: auto;
    background: url(../img/character-01.svg) left top/contain no-repeat;
  }
}
@media (min-width: 768px) {
  .section-problem__message-text::after {
    position: absolute;
    right: -91px;
    bottom: 20px;
    display: inline-block;
    content: "";
    width: 180px;
    height: 160px;
    margin: auto;
    background: url(../img/character-02.svg) left top/contain no-repeat;
  }
}
.section-problem__text--pink {
  color: #ff0076;
}
.section-problem__impression {
  width: calc(100% + 30px);
  padding: 60px 30px;
  text-align: center;
  line-height: 1.3;
  overflow-wrap: break-word;
  word-break: keep-all;
  color: #fff;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.66)), to(rgba(0, 0, 0, 0.66))), url(../img/sec01-bg.png) center top/cover no-repeat;
  background: linear-gradient(rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.66)), url(../img/sec01-bg.png) center top/cover no-repeat;
  border-radius: 30px;
  translate: -15px 0;
}
@media screen and (min-width: 768px) {
  .section-problem__impression {
    width: 100%;
    background-position: center center;
    translate: 0;
  }
}
.section-problem__impression-text {
  margin-bottom: 16px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3rem;
  font-weight: 800;
}
.section-problem__impression-text--small {
  margin-bottom: 32px;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .section-problem__impression-text--small br {
    display: none;
  }
}
.section-problem__impression-text--yellow {
  margin-bottom: 16px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #fff023;
}
@media screen and (min-width: 768px) {
  .section-problem__impression-text--yellow {
    margin-bottom: 8px;
    font-size: 4rem;
  }
}
.section-problem__impression-text--yellow-large {
  font-family: LINE Seed JP, sans-serif;
  font-size: 4rem;
  font-weight: 800;
  color: #fff023;
}
@media screen and (min-width: 768px) {
  .section-problem__impression-text--yellow-large {
    margin-bottom: 0;
    font-size: 6rem;
  }
}

.section-survey {
  position: relative;
  background: #fff023 url(../img/sec02-bg.svg) center center/cover no-repeat;
}
.section-survey::before {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 0, 100% 7.5px, 100% 15px, 0 20px);
          clip-path: polygon(0 0, 100% 7.5px, 100% 15px, 0 20px);
}
.section-survey::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 7.5px, 100% 0, 100% 100%, 0 15px);
          clip-path: polygon(0 7.5px, 100% 0, 100% 100%, 0 15px);
}
.section-survey__contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 80px 30px;
}
@media screen and (min-width: 768px) {
  .section-survey__contents {
    padding: 100px 30px;
  }
}
.section-survey__headline {
  margin-bottom: 36px;
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  overflow-wrap: break-word;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .section-survey__headline {
    font-size: 6rem;
  }
}
.section-survey__letter--small {
  display: block;
  margin-bottom: 8px;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .section-survey__letter--small {
    margin-bottom: 0;
    font-size: 3.6rem;
  }
}
.section-survey__letter--pink {
  line-height: 1.25;
  color: #ff0076;
}
.section-survey__letter {
  display: block;
  line-height: 1.25;
}
.section-survey__survey {
  position: relative;
  padding: 20px;
  background-color: #fff;
  width: min(100%, 1040px);
  margin-inline: auto;
  margin-bottom: 30px;
  border: 5px solid #00345a;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .section-survey__survey {
    padding: 40px 72px;
  }
}
.section-survey__survey::before {
  position: absolute;
  left: -18px;
  bottom: 75px;
  display: inline-block;
  content: "";
  width: 64px;
  height: 74px;
  margin: auto;
  background: url(../img/character-03.svg) left top/contain no-repeat;
  -webkit-transform: rotate(-12deg);
          transform: rotate(-12deg);
}
@media (min-width: 1040px) {
  .section-survey__survey::before {
    top: 0;
    left: -75px;
    bottom: 0;
    width: 170px;
    height: 197px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.section-survey__survey::after {
  position: absolute;
  right: -25px;
  bottom: 75px;
  display: inline-block;
  content: "";
  width: 56px;
  height: 75px;
  margin: auto;
  background: url(../img/character-04.svg) left top/contain no-repeat;
  -webkit-transform: rotate(5deg);
          transform: rotate(5deg);
}
@media (min-width: 1040px) {
  .section-survey__survey::after {
    top: 0;
    right: -55px;
    bottom: 0;
    width: 147px;
    height: 197px;
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
}
.section-survey__survey-text {
  margin-bottom: 20px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  overflow-wrap: break-word;
  word-break: keep-all;
  text-align: center;
  line-height: 2;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .section-survey__survey-text {
    text-align: center;
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .section-survey__survey-text {
    margin-bottom: 10px;
  }
}
@media (min-width: 768px) {
  .section-survey__survey-text br {
    display: none;
  }
}
.section-survey__survey-phrase {
  display: inline-block;
  margin-bottom: 20px;
}
.section-survey__survey-phrase:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .section-survey__survey-phrase {
    margin-bottom: 0;
  }
}
.section-survey__survey-phrase ~ .section-survey__survey-phrase {
  margin-bottom: 0;
}
.section-survey__survey-text--pink-large {
  line-height: 1.3;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #ff0076;
}
.section-survey__survey-text--pink {
  color: #ff0076;
}
.section-survey__survey-source {
  text-align: center;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .section-survey__survey-source {
    text-align: center;
  }
}
.section-survey__survey-link {
  line-height: 1.3;
  word-break: break-all;
  font-size: 1.2rem;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.section-survey__survey-link:hover {
  opacity: 0.5;
}
.section-survey__survey-list {
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .section-survey__survey-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    gap: 30px;
  }
}
.section-survey__survey-item {
  width: min(100%, 1040px);
  margin-inline: auto;
  margin-bottom: 30px;
  border: 5px solid #00345a;
  border-radius: 30px;
  background-color: #00345a;
}
@media (min-width: 768px) {
  .section-survey__survey-item {
    width: calc(50% - 15px);
    margin-bottom: 0;
  }
}
.section-survey__survey-headline {
  padding: 10px;
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  background-color: #00345a;
  border-radius: 25px 25px 0 0;
}
@media (min-width: 768px) {
  .section-survey__survey-headline {
    padding: 12px;
    font-size: 2rem;
  }
}
.section-survey__survey-graph {
  padding: 10px 20px 20px;
  text-align: center;
  background-color: #fff;
  border-radius: 0 0 25px 25px;
}
@media (min-width: 768px) {
  .section-survey__survey-graph {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: calc(100% - 54px);
    padding: 20px 60px 30px;
  }
}
.section-survey__survey-image {
  width: 100%;
}
.section-survey__survey-result {
  width: min(100%, 824px);
  margin-inline: auto;
  padding: 20px;
  text-align: center;
  background-color: #00345a;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .section-survey__survey-result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    padding: 20px 40px;
  }
}
.section-survey__survey-result-text-group {
  text-align: center;
}
@media (min-width: 768px) {
  .section-survey__survey-result-text-group {
    text-align: left;
  }
}
.section-survey__survey-result-text {
  position: relative;
  display: inline-block;
  margin-bottom: 12px;
  padding-right: 44px;
  white-space: nowrap;
  font-family: LINE Seed JP, sans-serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fff;
}
@media (min-width: 768px) {
  .section-survey__survey-result-text {
    font-size: 2.4rem;
  }
}
.section-survey__survey-result-text::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 44px;
  height: 38px;
  margin: auto;
  background: url(../img/character-05.svg) left top/contain no-repeat;
}
.section-survey__survey-result-text--yellow {
  color: #fff023;
}
.section-survey__survey-result-text--yellow-large {
  margin-bottom: 12px;
  line-height: 1.25;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff023;
}
@media (min-width: 768px) {
  .section-survey__survey-result-text--yellow-large {
    text-align: left;
    font-size: 3.6rem;
  }
}
@media (min-width: 768px) {
  .section-survey__survey-result-image {
    width: 100%;
  }
}

.section-manufacturing-issues {
  background: url(../img/sec03-bg--sp.svg) calc(50% - 28px) 84px/612px no-repeat;
}
@media (min-width: 768px) {
  .section-manufacturing-issues {
    background: url(../img/sec03-bg--pc.svg) center -58px/1685px repeat-x;
  }
}
.section-manufacturing-issues__top-contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 80px 30px 160px;
}
@media screen and (min-width: 768px) {
  .section-manufacturing-issues__top-contents {
    padding: 100px 30px 110px;
  }
}
.section-manufacturing-issues__top-headline {
  margin-bottom: 36px;
  text-align: center;
  line-height: 1.25;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__top-headline {
    margin-bottom: 60px;
    font-size: 6rem;
  }
}
.section-manufacturing-issues__top-letter--small {
  display: block;
  font-size: 2.4rem;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__top-letter--small {
    font-size: 4.8rem;
  }
}
.section-manufacturing-issues__top-letter {
  display: block;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__top-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.section-manufacturing-issues__top-item {
  position: relative;
  z-index: 1;
  margin-bottom: 48px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__top-item {
    width: calc(33.33% - 10px);
    margin-bottom: 0;
  }
}
.section-manufacturing-issues__top-item:nth-of-type(1) .section-manufacturing-issues__top-thumbnail .section-manufacturing-issues__top-image {
  width: 86px;
  height: 125px;
  translate: 0 10px;
}
.section-manufacturing-issues__top-item:nth-of-type(2) .section-manufacturing-issues__top-thumbnail {
  background-color: #fddffb;
}
.section-manufacturing-issues__top-item:nth-of-type(2) .section-manufacturing-issues__top-thumbnail .section-manufacturing-issues__top-image {
  width: 99px;
  height: 139px;
  translate: 0 5px;
}
.section-manufacturing-issues__top-item:nth-of-type(3) .section-manufacturing-issues__top-thumbnail {
  background-color: #d7f4dc;
}
.section-manufacturing-issues__top-item:nth-of-type(3) .section-manufacturing-issues__top-thumbnail .section-manufacturing-issues__top-image {
  width: 104px;
  height: 125px;
  translate: 0 2px;
}
.section-manufacturing-issues__top-item:last-of-type {
  margin-bottom: 0;
}
.section-manufacturing-issues__top-thumbnail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 180px;
  height: 180px;
  margin-inline: auto;
  margin-bottom: 46px;
  background-color: #f1faff;
  border: 7px solid #00345a;
  border-radius: 1000px;
}
.section-manufacturing-issues__top-balloon {
  position: relative;
  padding: 23px 44px;
  text-align: left;
  background-color: #fff;
  border: 7px solid #00345a;
  border-radius: 18px;
}
.section-manufacturing-issues__top-balloon::before {
  position: absolute;
  z-index: 1;
  display: inline-block;
  inset: auto 0 calc(100% - 11px);
  content: "";
  width: 62px;
  height: 37px;
  margin: auto;
  background: #fff;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.section-manufacturing-issues__top-balloon::after {
  position: absolute;
  display: inline-block;
  inset: auto 0 100%;
  content: "";
  width: 62px;
  height: 37px;
  margin: auto;
  background: #00345a;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
.section-manufacturing-issues__top-text {
  font-size: 2rem;
  font-weight: 700;
}
.section-manufacturing-issues__top-text--pink {
  color: #ff0076;
}
.section-manufacturing-issues__middle-contents {
  position: relative;
  background-color: #fff;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__middle-contents {
    border-top: none;
  }
}
.section-manufacturing-issues__middle-contents::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 131px;
  background-color: #00345a;
  -webkit-clip-path: polygon(100% 11px, 50% 100%, 0 11px, 0 0, 50% 0, 100% 0);
          clip-path: polygon(100% 11px, 50% 100%, 0 11px, 0 0, 50% 0, 100% 0);
}
.section-manufacturing-issues__middle-contents::after {
  position: absolute;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 120px;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
}
.section-manufacturing-issues__middle-box {
  position: relative;
  padding: 0 30px;
  background-image: -webkit-gradient(linear, left bottom, left top, from(#7b90a0), to(#00345a));
  background-image: linear-gradient(0deg, #7b90a0, #00345a);
}
@media (min-width: 768px) {
  .section-manufacturing-issues__middle-box {
    overflow: hidden;
    padding: 26px 30px 0;
  }
}
.section-manufacturing-issues__middle-box::before {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 100%;
  height: 571px;
  margin: auto;
  background: url(../img/sec03-line.png) center top/1270px 571px repeat-x;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__middle-box::before {
    padding-top: 0;
    background: url(../img/sec03-line.png) center top/1381px 621px repeat-x;
  }
}
.section-manufacturing-issues__middle-headline {
  position: relative;
  z-index: 2;
  margin-bottom: 150px;
  text-align: center;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__middle-headline {
    margin-bottom: 52px;
  }
}
.section-manufacturing-issues__middle-image--sp {
  margin-top: -90px;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__middle-image--sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-manufacturing-issues__middle-image--pc {
    display: none;
  }
}
.section-manufacturing-issues__middle-failure {
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .section-manufacturing-issues #features {
    scroll-margin-top: 86px;
  }
}
.section-manufacturing-issues__bottom-contents {
  position: relative;
  padding: 30px 30px 0;
  background: #ff0076 url(../img/sec03-bg-logo--sp.svg) left top/360px no-repeat;
}
.section-manufacturing-issues__bottom-contents::before {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 0, 100% 7.5px, 100% 15px, 0 20px);
          clip-path: polygon(0 0, 100% 7.5px, 100% 15px, 0 20px);
}
.section-manufacturing-issues__bottom-contents::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 7.5px, 100% 0, 100% 100%, 0 15px);
          clip-path: polygon(0 7.5px, 100% 0, 100% 100%, 0 15px);
}
@media (min-width: 768px) {
  .section-manufacturing-issues__bottom-contents {
    padding: 68px 30px;
    background: #ff0076 url(../img/sec03-bg-logo--pc.svg) left top/449px no-repeat;
  }
}
.section-manufacturing-issues__bottom-figure-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  position: relative;
}
@media (min-width: 1366px) {
  .section-manufacturing-issues__bottom-figure-box {
    width: min(100%, 1366px);
    margin: 0 auto;
  }
}
.section-manufacturing-issues__bottom-trust {
  position: relative;
  width: 100%;
  text-align: center;
}
@media (min-width: 768px) {
  .section-manufacturing-issues__bottom-trust {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
    width: auto;
  }
}
@media (min-width: 1366px) {
  .section-manufacturing-issues__bottom-trust {
    translate: 32px 0;
  }
}
@media (min-width: 768px) {
  .section-manufacturing-issues__bottom-image--sp {
    display: none;
  }
}
@media (max-width: 767px) {
  .section-manufacturing-issues__bottom-image--pc {
    display: none;
  }
}
.section-manufacturing-issues__bottom-character--left {
  width: 170px;
}
@media (min-width: 768px) and (max-width: 1425px) {
  .section-manufacturing-issues__bottom-character--left {
    display: none;
  }
}
@media (min-width: 1426px) {
  .section-manufacturing-issues__bottom-character--left {
    display: block;
    position: absolute;
    bottom: -68px;
    left: 5px;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
    width: 247px;
    height: 230px;
  }
}
.section-manufacturing-issues__bottom-character--right {
  width: 71px;
}
@media (min-width: 768px) and (max-width: 1425px) {
  .section-manufacturing-issues__bottom-character--right {
    display: none;
  }
}
@media (min-width: 1426px) {
  .section-manufacturing-issues__bottom-character--right {
    display: block;
    position: absolute;
    right: 39px;
    bottom: -68px;
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
    width: 110px;
    height: 152px;
  }
}

.features {
  position: relative;
  background: url(../img/sec04-bg.svg) center top/contain no-repeat;
}
.features__contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 80px 30px;
}
@media screen and (min-width: 768px) {
  .features__contents {
    padding: 100px 30px;
  }
}
@media (min-width: 768px) {
  .features__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 60px;
  }
}
@media (min-width: 768px) {
  .features__item:nth-of-type(odd) .features__content {
    margin-right: min(5.3%, 55px);
    padding-left: 40px;
  }
}
@media (min-width: 768px) {
  .features__item:nth-of-type(even) .features__content {
    margin-left: min(5.3%, 55px);
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media (min-width: 768px) {
  .features__item:nth-of-type(even) .features__thumbnail {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
.features__item:nth-of-type(1) .features__thumbnail {
  position: relative;
}
.features__item:nth-of-type(1) .features__thumbnail::before {
  position: absolute;
  right: -15px;
  bottom: -15px;
  display: inline-block;
  content: "";
  width: 80px;
  height: 80px;
  margin: auto;
  background: url(../img/character-13.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .features__item:nth-of-type(1) .features__thumbnail::before {
    right: -35px;
    bottom: 25px;
    width: 173px;
    height: 171px;
  }
}
.features__item:nth-of-type(2) .features__thumbnail {
  position: relative;
}
.features__item:nth-of-type(2) .features__thumbnail::before {
  position: absolute;
  left: -15px;
  bottom: -15px;
  display: inline-block;
  content: "";
  width: 80px;
  height: 117px;
  margin: auto;
  background: url(../img/character-14.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .features__item:nth-of-type(2) .features__thumbnail::before {
    left: -55px;
    bottom: 35px;
    width: 122px;
    height: 178px;
  }
}
.features__item:nth-of-type(3) .features__thumbnail {
  position: relative;
}
.features__item:nth-of-type(3) .features__thumbnail::before {
  position: absolute;
  right: -15px;
  bottom: -15px;
  display: inline-block;
  content: "";
  width: 80px;
  height: 98px;
  margin: auto;
  background: url(../img/character-15.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .features__item:nth-of-type(3) .features__thumbnail::before {
    right: -60px;
    bottom: 35px;
    width: 143px;
    height: 175px;
  }
}
.features__item:nth-of-type(4) .features__thumbnail {
  position: relative;
}
.features__item:nth-of-type(4) .features__thumbnail::before {
  position: absolute;
  left: -15px;
  bottom: -15px;
  display: inline-block;
  content: "";
  width: 80px;
  height: 92px;
  margin: auto;
  background: url(../img/character-16.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .features__item:nth-of-type(4) .features__thumbnail::before {
    left: -75px;
    bottom: 25px;
    width: 169px;
    height: 195px;
  }
}
@media (min-width: 768px) {
  .features__content {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
    width: calc(100% - 487px);
    padding-left: 70px;
  }
}
.features__problem {
  margin-bottom: 20px;
  padding: 10px 15px;
  font-size: 1.4rem;
  color: #fff;
  background-color: #00345a;
  border-radius: 0 1000px 1000px 0;
  overflow-wrap: break-word;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .features__problem {
    font-size: 1.8rem;
  }
}
.features__solution-title {
  position: relative;
  margin-bottom: 16px;
  line-height: 1.17;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  overflow-wrap: break-word;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .features__solution-title {
    font-size: 3.7rem;
  }
}
.features__solution-title::before {
  display: block;
  content: "";
  width: 64px;
  height: 37px;
  margin-bottom: 4px;
  background: url(../img/sec04-solution--sp.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .features__solution-title::before {
    position: absolute;
    top: -45px;
    left: -70px;
    width: 61px;
    height: 126px;
    background: url(../img/sec04-solution--pc.svg) left top/contain no-repeat;
  }
}
.features__highlight--pink {
  color: #ff0076;
}
.features__solution-text {
  margin-bottom: 20px;
  text-align: left;
  line-height: 1.5;
  font-size: 1.6rem;
  font-weight: bold;
}
@media (min-width: 768px) {
  .features__solution-text {
    text-align: left;
    font-size: 1.8rem;
  }
}
@media (min-width: 768px) {
  .features__solution-text {
    margin-bottom: 0;
    line-height: 1.8;
    font-size: 1.8rem;
  }
}
.features__thumbnail {
  margin-bottom: 40px;
  border: 5px solid #00345a;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .features__thumbnail {
    width: min(41.5%, 432px);
    margin-bottom: 0;
  }
}
.features__image {
  width: 100%;
  border-radius: 19px;
}
.features .comparison__contents {
  position: relative;
  margin-bottom: 60px;
  padding: 30px;
  background-color: #f1faff;
  border-radius: 24px;
}
.features .comparison__contents::before {
  position: absolute;
  inset: auto 0 100%;
  display: inline-block;
  content: "";
  width: 60px;
  height: 30px;
  margin: auto;
  background-color: #f1faff;
  -webkit-clip-path: polygon(0 100%, 50% 0, 100% 100%);
          clip-path: polygon(0 100%, 50% 0, 100% 100%);
}
@media (min-width: 768px) {
  .features .comparison__contents::before {
    margin-right: 21%;
  }
}
.features .comparison__group--sp {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 18px;
  margin-bottom: 10px;
}
@media (min-width: 768px) {
  .features .comparison__group--sp {
    display: none;
  }
}
.features .comparison__illustration {
  margin-bottom: 4px;
}
@media (min-width: 768px) {
  .features .comparison__illustration {
    margin-bottom: 15px;
  }
}
@media (min-width: 768px) {
  .features .comparison__image--sp {
    display: none;
  }
}
.features .comparison__image--pc {
  display: none;
}
@media (min-width: 768px) {
  .features .comparison__image--pc {
    display: block;
  }
}
.features .comparison__group--pc {
  padding: 10px 15px;
  background-color: #fff;
  border-radius: 12px;
}
@media (min-width: 768px) {
  .features .comparison__group--pc {
    padding: 0;
    background-color: transparent;
  }
}
.features .comparison__text {
  margin-bottom: 10px;
  font-size: 1.4rem;
}
@media (min-width: 768px) {
  .features .comparison__text {
    width: 85%;
    margin: 0 0 27px auto;
  }
}
.features .comparison__text--bold {
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .features .comparison__text--bold {
    width: 85%;
    margin: 0 0 0 auto;
    font-size: 1.8rem;
  }
}
.features .comparison__text--pink {
  color: #ff0076;
}
.features .works__list {
  margin-bottom: 40px;
}
@media (min-width: 768px) {
  .features .works__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 18px;
    padding: 0 30px;
  }
}
.features .works__picture {
  margin-bottom: 15px;
  border: 5px solid #00345a;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .features .works__picture {
    margin-bottom: 0;
  }
}
.features .works__image {
  width: 100%;
  border-radius: 19px;
}
.features .works .btn__link {
  position: relative;
  display: block;
  width: min(100%, 330px);
  margin-inline: auto;
  padding: 20px 50px 20px 20px;
  font-family: LINE Seed JP, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #00345a;
  background-color: #fff023;
  border: 4px solid #00345a;
  border-radius: 1000px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 1040px) {
  .features .works .btn__link {
    width: min(100%, 495px);
    padding: 30.5px 80px 30.5px 40px;
    font-size: 3.6rem;
  }
}
.features .works .btn__link:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.features .works .btn__link::before {
  position: absolute;
  inset: 0 20px 0 auto;
  content: "";
  width: 30px;
  height: 30px;
  margin: auto;
  background: url(../img/btn-icon--navy.svg) left top/30px no-repeat;
}
@media (min-width: 1040px) {
  .features .works .btn__link::before {
    inset: 0 30px 0 auto;
    width: 50px;
    height: 50px;
    background: url(../img/btn-icon--navy.svg) left top/50px no-repeat;
  }
}
.features .works .btn__link--pink {
  background-color: #ff0076;
}
.features .works .btn__link--navy {
  background-color: #00345a;
}
.features .works .btn__link--navy .cv-top__label {
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}
@media screen and (min-width: 1040px) {
  .features .works .btn__link--navy .cv-top__label {
    -webkit-transform: translate(0, 18px);
            transform: translate(0, 18px);
  }
}
.features .works .btn__label {
  display: block;
  text-align: center;
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}
@media screen and (min-width: 1040px) {
  .features .works .btn__label {
    -webkit-transform: translate(0, 18px);
            transform: translate(0, 18px);
  }
}
.features .works .btn__cta {
  position: absolute;
  inset: 10px 0 auto 0;
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  text-indent: -30px;
  line-height: 1;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 1040px) {
  .features .works .btn__cta {
    inset: 20px 0 auto 0;
    text-indent: -50px;
    font-size: 2.5rem;
  }
}
.features .works .btn__cta-letter {
  position: relative;
  padding: 0 10px;
}
@media (min-width: 1040px) {
  .features .works .btn__cta-letter {
    padding: 0 20px;
  }
}
.features .works .btn__cta-letter::before {
  position: absolute;
  top: 2px;
  left: -10px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 21px;
  margin: auto;
  background: url(../img/btn-callout--navy.svg) left top/contain no-repeat;
}
@media (min-width: 1040px) {
  .features .works .btn__cta-letter::before {
    top: 4px;
    left: -12px;
    width: 22px;
    height: 30px;
  }
}
.features .works .btn__cta-letter::after {
  position: absolute;
  top: 2px;
  right: -10px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 21px;
  margin: auto;
  background: url(../img/btn-callout--navy.svg) left top/contain no-repeat;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (min-width: 1040px) {
  .features .works .btn__cta-letter::after {
    top: 4px;
    right: -12px;
    width: 22px;
    height: 30px;
  }
}

.why-alta {
  background-color: #f1faff;
}
.why-alta__contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 60px 30px 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .why-alta__contents {
    padding: 80px 30px 0;
  }
}
.why-alta__contents:nth-of-type(1) .why-alta__detail::before {
  position: absolute;
  right: -10px;
  bottom: -20px;
  display: inline-block;
  content: "";
  width: 56px;
  height: 80px;
  margin: auto;
  background: url(../img/character-17.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .why-alta__contents:nth-of-type(1) .why-alta__detail::before {
    right: -70px;
    bottom: -53px;
    width: 153px;
    height: 217px;
  }
}
.why-alta__contents:nth-of-type(2) {
  padding: 50px 30px 0;
}
@media screen and (min-width: 768px) {
  .why-alta__contents:nth-of-type(2) {
    width: min(100%, 1172px);
    padding: 90px 66px 100px;
    background: url(../img/sec05-bg.svg) center top/100% no-repeat;
  }
}
.why-alta__contents:nth-of-type(2) .why-alta__detail::before {
  position: absolute;
  left: 3px;
  bottom: -15px;
  display: inline-block;
  content: "";
  width: 54px;
  height: 60px;
  margin: auto;
  background: url(../img/character-18.svg) left top/contain no-repeat;
}
@media (min-width: 768px) {
  .why-alta__contents:nth-of-type(2) .why-alta__detail::before {
    left: -65px;
    bottom: -14px;
    width: 198px;
    height: 219px;
    -webkit-transform: rotate(-6deg);
            transform: rotate(-6deg);
  }
}
.why-alta__balloon {
  position: relative;
  margin-bottom: 22px;
  padding: 12px;
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: #fff;
  background-color: #00345a;
  border-radius: 1000px;
}
@media (min-width: 768px) {
  .why-alta__balloon {
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    margin-inline: auto;
    margin-bottom: 38px;
    padding: 12px 56px;
    font-size: 3.6rem;
  }
}
.why-alta__balloon::before {
  position: absolute;
  inset: calc(100% - 5px) auto auto 50%;
  content: "";
  display: block;
  width: 20px;
  height: 15px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  translate: -50% 0;
}
@media screen and (min-width: 768px) {
  .why-alta__balloon::before {
    width: 40px;
    height: 26px;
  }
}
.why-alta__balloon--highlight {
  color: #fff023;
}
.why-alta__headline {
  margin-bottom: 36px;
  line-height: 1.26;
  overflow-wrap: break-word;
  word-break: keep-all;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .why-alta__headline {
    margin-bottom: 51px;
    font-size: 5.5rem;
  }
}
@media (min-width: 768px) {
  .why-alta__headline br {
    display: none;
  }
}
.why-alta__headline--emphasis {
  color: #ff0076;
}
.why-alta__detail {
  position: relative;
  margin-bottom: 30px;
  padding: 25px 20px;
  background-color: #fff;
  border: 5px solid #00345a;
  border-radius: 24px;
}
@media (min-width: 768px) {
  .why-alta__detail {
    padding: 30px 72px;
  }
}
.why-alta__detail-title {
  margin-bottom: 15px;
  font-size: 2rem;
  color: #ff0076;
}
@media (min-width: 768px) {
  .why-alta__detail-title {
    font-size: 3rem;
  }
}
.why-alta__detail-text {
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-break: keep-all;
  font-size: 1.6rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .why-alta__detail-text {
    margin-bottom: 15px;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.why-alta__detail-text br {
  display: none;
}
@media (min-width: 768px) {
  .why-alta__detail-text br {
    display: inline;
  }
}
.why-alta__headline--small {
  display: block;
  margin-bottom: 8px;
  font-size: 2.4rem;
}
.why-alta__detail-text--emphasis {
  color: #ff0076;
}
@media (min-width: 1040px) {
  .why-alta__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
}
.why-alta__item {
  position: relative;
  margin-bottom: 30px;
}
@media (min-width: 1040px) {
  .why-alta__item {
    width: calc(50% - 32px);
  }
}
.why-alta__item + .why-alta__item::before {
  position: absolute;
  top: -40px;
  left: 0;
  right: 0;
  display: inline-block;
  content: "";
  width: 50px;
  height: 50px;
  margin: auto;
  background: url(../img/sec05-arrow.svg) left top/contain no-repeat;
  -webkit-transform: rotate(90deg) scale(1.13);
          transform: rotate(90deg) scale(1.13);
}
@media (min-width: 1040px) {
  .why-alta__item + .why-alta__item::before {
    top: 0;
    left: -82px;
    right: inherit;
    bottom: 0;
    width: 100px;
    height: 100px;
    -webkit-transform: rotate(0deg) scale(1);
            transform: rotate(0deg) scale(1);
  }
}
.why-alta__thumbnail {
  overflow: hidden;
  border-top: 5px solid #00345a;
  border-left: 5px solid #00345a;
  border-right: 5px solid #00345a;
  border-radius: 15px 15px 0 0;
}
@media (min-width: 768px) {
  .why-alta__image {
    aspect-ratio: 239/114;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.why-alta__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 6px;
  padding: 10px;
  background-color: #fff;
  border: 5px solid #00345a;
}
.why-alta__tag {
  display: inline-block;
  padding: 2px 6px;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  background-color: #00345a;
  border-radius: 4px;
}
@media (min-width: 768px) {
  .why-alta__tag {
    font-size: 1.6rem;
  }
}
.why-alta__text {
  font-size: 1.4rem;
  font-weight: 700;
}
@media (min-width: 768px) {
  .why-alta__text {
    font-size: 2rem;
  }
}
.why-alta__result {
  padding: 14px;
  overflow-wrap: break-word;
  word-break: keep-all;
  font-family: LINE Seed JP, sans-serif;
  font-weight: 800;
  background-color: #fff023;
  border-left: 5px solid #00345a;
  border-right: 5px solid #00345a;
  border-bottom: 5px solid #00345a;
  border-radius: 0 0 15px 15px;
}
@media (min-width: 768px) {
  .why-alta__result {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    min-height: 95.4px;
    font-size: 2.4rem;
    line-height: 1.3;
  }
}
.why-alta__result--highlight {
  color: #ff0076;
}

.cv-section {
  position: relative;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#fff023), to(#ffd800));
  background-image: linear-gradient(180deg, #fff023, #ffd800);
}
.cv-section::before {
  position: absolute;
  top: -10px;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 0, 100% 7.5px, 100% 15px, 0 20px);
          clip-path: polygon(0 0, 100% 7.5px, 100% 15px, 0 20px);
}
.cv-section::after {
  position: absolute;
  bottom: -10px;
  left: 0;
  z-index: 1;
  content: "";
  width: 100%;
  height: 20px;
  background-color: #00345a;
  -webkit-clip-path: polygon(0 7.5px, 100% 0, 100% 100%, 0 15px);
          clip-path: polygon(0 7.5px, 100% 0, 100% 100%, 0 15px);
}
.cv-section__contents {
  padding: 60px 30px;
  text-align: center;
  background: url(../img/cv-bg--sp.svg) left top/cover no-repeat;
}
@media (min-width: 768px) {
  .cv-section__contents {
    background: url(../img/cv-bg--pc.svg) center top/cover no-repeat;
  }
}
.cv-section__area {
  position: relative;
  width: min(100%, 1100px);
  margin-inline: auto;
}
@media (min-width: 1100px) {
  .cv-section__area::before {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    content: "";
    width: 154px;
    height: 180px;
    margin: auto;
    background: url(../img/character-19.svg) left top/contain no-repeat;
  }
}
@media (min-width: 1100px) {
  .cv-section__area::after {
    position: absolute;
    top: 0;
    right: -13px;
    display: inline-block;
    content: "";
    width: 163px;
    height: 205px;
    margin: auto;
    background: url(../img/character-20.svg) left top/contain no-repeat;
  }
}
.cv-section__headline {
  display: inline-block;
  margin-bottom: 20px;
  padding: 6px;
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background-color: #00345a;
}
@media (min-width: 768px) {
  .cv-section__headline {
    margin-bottom: 36px;
    padding: 2px 24px;
    font-size: 4rem;
  }
}
.cv-section__headline--highlight {
  color: #fff023;
}
.cv-section__text {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: keep-all;
}
@media (min-width: 768px) {
  .cv-section__text {
    margin-bottom: 0;
    font-size: 1.8rem;
  }
}
.cv-section__text--emphasis {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .cv-section__text--emphasis {
    margin-bottom: 48px;
    font-size: 3.6rem;
  }
}
.cv-section__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  .cv-section__actions {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.cv-section__action-item {
  width: min(100%, 330px);
  margin-inline: auto;
  margin-bottom: 10px;
}
.cv-section__action-item:last-of-type {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .cv-section__action-item {
    margin-inline: 0;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1040px) {
  .cv-section__action-item {
    width: min(100%, 420px);
  }
}
@media (min-width: 1366px) {
  .cv-section__action-item {
    width: min(100%, 495px);
  }
}
@media screen and (min-width: 768px) {
  .cv-section__action-item + .cv-section__action-item {
    margin-left: 20px;
  }
}
@media screen and (min-width: 1366px) {
  .cv-section__action-item + .cv-section__action-item {
    margin-left: 50px;
  }
}
.cv-section__link {
  position: relative;
  display: block;
  padding: 20px 50px 20px 20px;
  font-family: LINE Seed JP, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  background-color: #ff0076;
  border-radius: 1000px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
@media screen and (min-width: 1366px) {
  .cv-section__link {
    padding: 34.5px 80px 34.5px 40px;
    font-size: 3.6rem;
  }
}
.cv-section__link:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.cv-section__link::before {
  position: absolute;
  inset: 0 20px 0 auto;
  content: "";
  width: 30px;
  height: 30px;
  margin: auto;
  background: url(../img/btn-icon--white.svg) left top/contain no-repeat;
}
@media (min-width: 1366px) {
  .cv-section__link::before {
    inset: 0 30px 0 auto;
    width: 50px;
    height: 50px;
  }
}
.cv-section__link--pink {
  background-color: #ff0076;
}
.cv-section__link--navy {
  background-color: #00345a;
}
.cv-section__link--navy .cv-section__label {
  -webkit-transform: translate(0, 10px);
          transform: translate(0, 10px);
}
@media screen and (min-width: 1366px) {
  .cv-section__link--navy .cv-section__label {
    -webkit-transform: translate(0, 18px);
            transform: translate(0, 18px);
  }
}
.cv-section__label {
  display: block;
  text-align: center;
}
.cv-section__cta {
  position: absolute;
  inset: 10px 0 auto 0;
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  text-indent: -30px;
  line-height: 1;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
@media screen and (min-width: 1366px) {
  .cv-section__cta {
    inset: 22px 0 auto 0;
    font-size: 2.5rem;
  }
}
.cv-section__cta-letter {
  position: relative;
  padding: 0 10px;
}
@media (min-width: 1366px) {
  .cv-section__cta-letter {
    padding: 0 20px;
  }
}
.cv-section__cta-letter::before {
  position: absolute;
  top: 4px;
  left: -10px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 21px;
  margin: auto;
  background: url(../img/btn-callout--white.svg) left top/contain no-repeat;
}
@media (min-width: 1366px) {
  .cv-section__cta-letter::before {
    top: 4px;
    left: -12px;
    width: 22px;
    height: 30px;
  }
}
.cv-section__cta-letter::after {
  position: absolute;
  top: 2px;
  right: -10px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 21px;
  margin: auto;
  background: url(../img/btn-callout--white.svg) left top/contain no-repeat;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
@media (min-width: 1366px) {
  .cv-section__cta-letter::after {
    top: 4px;
    right: -12px;
    width: 22px;
    height: 30px;
  }
}

.pricing__contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  text-align: center;
  padding: 70px 30px;
}
@media (min-width: 768px) {
  .pricing__contents {
    padding: 100px 30px;
  }
}
.pricing__title {
  margin-bottom: 36px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .pricing__title {
    margin-bottom: 60px;
    font-size: 6rem;
  }
}
.pricing__description {
  margin-bottom: 30px;
  font-size: 1.8rem;
  font-weight: 700;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.pricing__plan {
  overflow: hidden;
  margin-bottom: 20px;
  border: 4px solid #00345a;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .pricing__plan {
    display: none;
  }
}
.pricing__plan--premium .pricing__plan-header {
  background-color: #007fd8;
}
.pricing__plan--special .pricing__plan-header {
  background-color: #00c142;
}
.pricing__plan--regular .pricing__plan-header {
  background-color: #fa0d68;
}
.pricing__plan-header {
  padding: 16px 12px 12px;
  color: #fff;
}
.pricing__plan-title {
  margin-bottom: 10px;
  line-height: 1;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
}
.pricing__plan-title--small {
  margin-right: 20px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2rem;
  font-weight: 700;
}
.pricing__plan-subtitle {
  font-size: 1.4rem;
}
.pricing__table--sp {
  display: block;
  border-collapse: collapse;
}
@media (min-width: 768px) {
  .pricing__table--sp {
    display: none;
  }
}
.pricing__table--sp tbody {
  display: block;
}
.pricing__table--sp tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pricing__table--sp th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 46%;
  padding: 10px;
  font-family: LINE Seed JP, sans-serif;
  font-weight: 800;
  background-color: #fff023;
  border-top: 1px solid #00345a;
  border-right: 1px solid #00345a;
}
.pricing__table--sp td {
  width: 54%;
  padding: 10px;
  text-align: left;
  font-size: 1.4rem;
  border-top: 1px solid #00345a;
  border-left: 1px solid #00345a;
}
.pricing__table--sp td small {
  font-size: 1.2rem;
}
.pricing__table--sp td.pricing__td--premium {
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #007fd8;
}
.pricing__table--sp td.pricing__td--special {
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00c142;
}
.pricing__table--sp td.pricing__td--regular {
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fa0d68;
}
.pricing__options--sp {
  overflow: hidden;
  padding: 20px;
  color: #fff023;
  background-color: #00345a;
  border-radius: 20px;
}
@media (min-width: 768px) {
  .pricing__options--sp {
    display: none;
  }
}
.pricing__options-title {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #fff023;
}
.pricing__option-item--exception {
  text-indent: -0.5em;
}
.pricing__table-wrapper {
  display: none;
}
@media (min-width: 768px) {
  .pricing__table-wrapper {
    overflow: hidden;
    display: block;
    margin-bottom: 40px;
    background-color: #00345a;
    border: 4px solid #00345a;
    border-radius: 20px;
  }
}
.pricing__table--pc {
  width: 100%;
  border-collapse: collapse;
}
.pricing__table--pc tbody {
  display: block;
}
.pricing__table--pc tbody tr {
  background-color: #fff;
}
.pricing__table--pc tbody tr:nth-of-type(even) {
  background-color: #fffef0;
}
.pricing__table--pc tbody td {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.pricing__table--pc tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.pricing__table--pc th {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 46%;
  padding: 10px;
  font-family: LINE Seed JP, sans-serif;
  font-weight: 800;
  background-color: #fff023;
  border-right: 2px solid #00345a;
}
.pricing__table--pc th:last-of-type {
  border-right: none;
}
.pricing__table--pc td {
  width: 100%;
  padding: 10px;
  text-align: left;
  font-size: 1.4rem;
  border-top: 2px solid #00345a;
  border-right: 2px solid #00345a;
}
.pricing__table--pc td:last-of-type {
  border-right: none;
}
.pricing__table--pc td small {
  font-size: 1.2rem;
}
.pricing__table--pc td.pricing__td--premium {
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #007fd8;
}
.pricing__table--pc td.pricing__td--special {
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #00c142;
}
.pricing__table--pc td.pricing__td--regular {
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fa0d68;
}
.pricing__table--pc tfoot tr {
  color: #fff023;
}
.pricing__table--pc tfoot tr td {
  text-align: center;
}
.pricing__table--pc tfoot tr td .pricing__td--symbol {
  margin: 0 16px;
}
.pricing__description-list {
  display: none;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin-inline: auto;
  padding: 20px 25px;
  background-color: #f1faff;
  border-radius: 17px;
}
@media (min-width: 768px) {
  .pricing__description-list {
    display: block;
  }
}
.pricing__description-item {
  position: relative;
  padding-left: 36px;
  margin-bottom: 12px;
  text-align: left;
  font-size: 2rem;
  font-weight: 700;
}
.pricing__description-item:last-of-type {
  margin-bottom: 0;
}
.pricing__description-item::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: inline-block;
  width: 30px;
  height: 30px;
  margin: auto;
  text-align: center;
  line-height: 30px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #fff;
}
.pricing__description-item--premium::before {
  content: "松";
  background-color: #007fd8;
  border-radius: 15px;
}
.pricing__description-item--special::before {
  content: "竹";
  background-color: #00c142;
  border-radius: 15px;
}
.pricing__description-item--regular::before {
  content: "梅";
  background-color: #fa0d68;
  border-radius: 15px;
}

.faq-section {
  background: url(../img/faq-bg--sp.svg) center top 50px/612px repeat-x;
}
@media (min-width: 768px) {
  .faq-section {
    background: url(../img/faq-bg--pc.svg) center top -308px/1630px repeat-x;
  }
}
.faq-section__contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 80px 30px;
}
@media (min-width: 768px) {
  .faq-section__contents {
    padding: 100px 30px;
  }
}
.faq-section__title {
  margin-bottom: 36px;
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .faq-section__title {
    margin-bottom: 60px;
    font-size: 6rem;
  }
}
.faq-section .faq-item {
  margin-bottom: 20px;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.faq-section .faq-item:last-of-type {
  margin-bottom: 0;
}
.faq-section .faq-item__details {
  padding: 20px;
  background-color: #fff;
  border: 4px solid #00345a;
  border-radius: 20px;
}
.faq-section .faq-item__question {
  position: relative;
  margin-bottom: 10px;
  padding-left: 37px;
  padding-bottom: 10px;
  line-height: 1.75;
  list-style: none;
  font-size: 1.6rem;
  font-weight: 700;
  border-bottom: 1px solid rgba(0, 0, 0, 0.26);
  pointer-events: none;
}
.faq-section .faq-item__question::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-block;
  content: "Q";
  width: 27px;
  height: 27px;
  margin: auto;
  text-align: center;
  line-height: 27px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #fff;
  background-color: #00345a;
  border-radius: 13.5px;
}
.faq-section .faq-item__answer {
  position: relative;
  padding-left: 37px;
  line-height: 1.75;
  font-size: 1.6rem;
  font-weight: 700;
}
.faq-section .faq-item__answer::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: inline-block;
  content: "A";
  width: 27px;
  height: 27px;
  margin: auto;
  text-align: center;
  line-height: 27px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #00345a;
  background-color: #fff023;
  border-radius: 13.5px;
}
.faq-section .faq-item__link {
  text-decoration: underline;
  color: #ff0076;
}

.contact-section {
  background-color: #f1faff;
}
.contact-section__contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 80px 15px;
}
@media (min-width: 768px) {
  .contact-section__contents {
    padding: 100px 30px;
  }
}
.contact-section .contact-form {
  padding: 60px 35px;
  background-color: #fff;
  border: 4px solid #00345a;
  border-radius: 20px;
  /*------------------------------

  ------------------------------*/
  /*------------------------------

  ------------------------------*/
}
.contact-section .contact-form__title {
  margin-bottom: 48px;
  text-align: center;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: break-word;
  word-break: keep-all;
}
.contact-section .contact-form__title ~ .danger {
  margin-bottom: 20px;
  font-size: 1.2rem;
  color: #ff0076;
}
@media (min-width: 768px) {
  .contact-section .contact-form__title ~ .danger {
    text-align: center;
  }
}
.contact-section .contact-form__thanks-text {
  line-height: 1.77;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .contact-section .contact-form__thanks-text {
    text-align: center;
    font-size: 1.8rem;
  }
}
.contact-section .contact-form .satori__custom_form {
  width: min(100%, 768px);
  margin-inline: auto;
}
.contact-section .contact-form .satori__custom_form .satori__input_group {
  margin-bottom: 30px;
  padding: 0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group label {
  display: block;
  margin-bottom: 15px;
  padding: 0;
  font-size: 1.6rem;
  font-weight: 700;
  color: #00345a;
}
.contact-section .contact-form .satori__custom_form .satori__input_group label .satori__require {
  margin: 0 0 0 10px;
  padding: 0 8px;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: 700;
  color: #00345a;
  background-color: #fff023;
  border-radius: 4px;
}
.contact-section .contact-form .satori__custom_form .satori__input_group label .satori__not_require {
  margin: 0 0 0 10px;
  padding: 0 8px;
  line-height: 1.5;
  font-size: 1.2rem;
  font-weight: 700;
  color: #00345a;
  background-color: #e0e6eb;
  border-radius: 4px;
}
.contact-section .contact-form .satori__custom_form .satori__input_group label .satori__system_notes {
  display: block;
  font-size: 1.2rem;
  font-weight: normal;
  color: #00345a;
}
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=text],
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=email],
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=tel] {
  width: 100%;
  padding: 12px 20px;
  line-height: 1.5;
  font-size: 1.6rem;
  background-color: #f8f8f8;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=text]::-webkit-input-placeholder, .contact-section .contact-form .satori__custom_form .satori__input_group input[type=email]::-webkit-input-placeholder, .contact-section .contact-form .satori__custom_form .satori__input_group input[type=tel]::-webkit-input-placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=text]::-moz-placeholder, .contact-section .contact-form .satori__custom_form .satori__input_group input[type=email]::-moz-placeholder, .contact-section .contact-form .satori__custom_form .satori__input_group input[type=tel]::-moz-placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=text]:-ms-input-placeholder, .contact-section .contact-form .satori__custom_form .satori__input_group input[type=email]:-ms-input-placeholder, .contact-section .contact-form .satori__custom_form .satori__input_group input[type=tel]:-ms-input-placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=text]::-ms-input-placeholder, .contact-section .contact-form .satori__custom_form .satori__input_group input[type=email]::-ms-input-placeholder, .contact-section .contact-form .satori__custom_form .satori__input_group input[type=tel]::-ms-input-placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=text]::placeholder,
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=email]::placeholder,
.contact-section .contact-form .satori__custom_form .satori__input_group input[type=tel]::placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group textarea {
  width: 100%;
  min-height: 160px;
  line-height: 1.5;
  font-size: 1.6rem;
  background-color: #f8f8f8;
  border: none;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.contact-section .contact-form .satori__custom_form .satori__input_group textarea::-webkit-input-placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group textarea::-moz-placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group textarea:-ms-input-placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group textarea::-ms-input-placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group textarea::placeholder {
  color: #b6bbc0;
}
.contact-section .contact-form .satori__custom_form .satori__input_group .satori__error_messages {
  margin-top: 10px;
  line-height: 1.5;
  font-size: 1.2rem;
  color: #ff0076;
}
.contact-section .contact-form .satori__custom_form .satori__horiz_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 20px;
}
.contact-section .contact-form .satori__custom_form .satori__horiz_group .satori__customer_last_name label {
  width: 60%;
}
.contact-section .contact-form .satori__custom_form .satori__horiz_group .satori__customer_first_name label {
  width: 60%;
}
.contact-section .contact-form .satori__custom_form .satori__message {
  font-weight: bold;
  color: #00345a;
}
.contact-section .contact-form .satori__custom_form .satori__message a {
  text-decoration: underline;
  color: #ff0076;
}
.contact-section .contact-form .satori__custom_form .satori__message a:hover {
  text-decoration: none;
}
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__message.satori__privacy_policy_url {
  margin-bottom: 30px;
  font-size: 1.2rem;
}
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group #satori__privacy_policy_agreement {
  position: relative;
  display: block;
  width: 18px;
  height: 18px;
  padding: 0;
  cursor: pointer;
}
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group #satori__privacy_policy_agreement:checked::after {
  opacity: 1;
  -webkit-transform: rotate(-45deg) scale(1);
          transform: rotate(-45deg) scale(1);
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group #satori__privacy_policy_agreement::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 3px;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group #satori__privacy_policy_agreement::after {
  position: absolute;
  content: "";
  top: 4px;
  left: 3.5px;
  width: 8px;
  height: 4px;
  border-left: 3px solid #ff0076;
  border-bottom: 3px solid #ff0076;
  -webkit-transform: rotate(-45deg) scale(0);
          transform: rotate(-45deg) scale(0);
  opacity: 0;
  -webkit-transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group #satori__privacy_policy_agreement_5658e6afb54c4979,
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group #satori__privacy_policy_agreement_c0adb10b2589ed37 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group #satori__privacy_policy_agreement_5658e6afb54c4979 .satori__require,
.contact-section .contact-form .satori__custom_form #satori__privacy_policy_agreement_wrapper .satori__input_group #satori__privacy_policy_agreement_c0adb10b2589ed37 .satori__require {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin: 0;
}
.contact-section .contact-form .satori__custom_form .satori__submit_group {
  margin: 0;
}
.contact-section .contact-form .satori__custom_form .satori__submit_group input[type=button] {
  position: relative;
  width: min(100%, 200px);
  margin: 20px;
  padding: 18px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2rem;
  font-weight: 800;
  color: #fff;
  background-color: #ff0076;
  border-radius: 1000px;
  cursor: pointer;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
}
.contact-section .contact-form .satori__custom_form .satori__submit_group input[type=button]:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.contact-section .contact-form .satori__custom_form .satori__submit_group input[type=button]:hover {
  opacity: 1;
}
.contact-section .contact-form .satori__custom_form .satori__submit_group input[value=訂正する] {
  background-color: #808080;
}
.contact-section .contact-form #satori__finish_panel {
  width: 100%;
  text-align: center;
}
.contact-section .contact-form #satori__finish_panel .satori__message {
  line-height: 2;
}

.privacy {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 90px 30px;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
}
@media (min-width: 768px) {
  .privacy {
    padding: 100px 30px;
  }
}
.privacy__title {
  margin-bottom: 36px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 3.6rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .privacy__title {
    margin-bottom: 75px;
    font-size: 4.8rem;
  }
}
.privacy__contents {
  width: min(100%, 1040px);
  margin-inline: auto;
  padding: 30px 15px;
  border: 4px solid #00345a;
  border-radius: 40px;
}
@media (min-width: 768px) {
  .privacy__contents {
    padding: 80px 120px;
  }
}
.privacy__section {
  margin-bottom: 72px;
}
.privacy__section:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .privacy__section {
    margin-bottom: 100px;
  }
}
.privacy__section-title {
  position: relative;
  margin-bottom: 24px;
  padding-left: 34px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
}
@media (min-width: 768px) {
  .privacy__section-title {
    margin-bottom: 60px;
    font-size: 3.6rem;
  }
}
.privacy__section-title::before {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 20px;
  height: 20px;
  margin: auto 14px auto 0;
  background-color: #00345a;
  border-radius: 10px;
}
.privacy__block {
  margin-bottom: 48px;
}
.privacy__block:last-of-type {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .privacy__block {
    margin-bottom: 60px;
  }
}
.privacy__headline {
  margin-bottom: 12px;
  padding-bottom: 12px;
  font-family: LINE Seed JP, sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  border-bottom: 1px solid #00345a;
}
@media (min-width: 768px) {
  .privacy__headline {
    margin-bottom: 30px;
    padding-bottom: 25px;
    font-size: 2.4rem;
  }
}
.privacy__text {
  margin-bottom: 24px;
  line-height: 1.77;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .privacy__text {
    margin-bottom: 30px;
    font-size: 1.8rem;
  }
}
.privacy__text--exception {
  margin-bottom: 0;
}
.privacy__subheadline {
  line-height: 1.77;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .privacy__subheadline {
    font-size: 1.8rem;
  }
}
.privacy__list {
  margin-bottom: 30px;
}
.privacy__list--exception {
  margin-bottom: 0;
}
.privacy__item {
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.77;
  font-size: 1.6rem;
}
@media (min-width: 768px) {
  .privacy__item {
    font-size: 1.8rem;
  }
}
.privacy__link {
  word-break: break-all;
  -webkit-transition: opacity 0.2s ease-in-out;
  transition: opacity 0.2s ease-in-out;
}
.privacy__link:hover {
  opacity: 0.5;
}

.element-bounce {
  -webkit-transform: scale(0) translateY(100px);
          transform: scale(0) translateY(100px);
  -webkit-transition: opacity 1.2s ease-in-out;
  transition: opacity 1.2s ease-in-out;
}
.element-bounce.animate-bounce {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.pseudo-bounce::before, .pseudo-bounce::after {
  -webkit-transform: scale(0) translateY(100px);
          transform: scale(0) translateY(100px);
  -webkit-transition: opacity 1.2s ease-in-out;
  transition: opacity 1.2s ease-in-out;
}
.pseudo-bounce.animate-bounce::before {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}
.pseudo-bounce.animate-bounce::after {
  -webkit-animation-name: bounce;
          animation-name: bounce;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.pseudo-drop::before {
  -webkit-transform: translateY(-400px);
          transform: translateY(-400px);
}
.pseudo-drop.animate-drop::before {
  -webkit-animation-name: drop;
          animation-name: drop;
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

.element-fadeup {
  opacity: 0;
}
.element-fadeup.animate-fadeup {
  -webkit-animation-name: fadeUp;
          animation-name: fadeUp;
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
}

/*------------------------------
main end
------------------------------*/
/*------------------------------
footer
------------------------------*/
.footer {
  background-color: #00345a;
}
.footer__contents {
  width: min(100%, 1100px);
  margin-inline: auto;
  padding: 40px 30px 170px;
  color: #fff;
}
@media (min-width: 768px) {
  .footer__contents {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 60px 30px 0;
  }
}
.footer__company {
  margin-bottom: 30px;
  font-style: normal;
}
@media (min-width: 768px) {
  .footer__company {
    margin-right: 20px;
    margin-bottom: 40px;
  }
}
.footer__title {
  margin-bottom: 30px;
}
.footer__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.footer__logo {
  margin-right: 10px;
}
.footer__caption {
  line-height: 1;
  font-size: 2rem;
  font-weight: 700;
}
.footer__address {
  margin-bottom: 20px;
}
.footer__fax {
  margin-bottom: 10px;
}
.footer__corporate-link {
  text-decoration: underline;
}
.footer__corporate-link:hover {
  text-decoration: none;
}
.footer__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 30px;
}
@media (min-width: 768px) {
  .footer__list {
    margin-bottom: 0;
  }
}
.footer__item {
  width: 280px;
  margin-inline: auto;
  margin-bottom: 20px;
}
.footer__item:last-of-type {
  margin-bottom: 0;
}
.footer__nav-link {
  position: relative;
  display: block;
  padding: 20px;
  font-family: LINE Seed JP, sans-serif;
  font-weight: 800;
  font-size: 2rem;
  color: #fff;
  background-color: #ff0076;
  border-radius: 1000px;
  -webkit-transition: -webkit-transform 0.2s ease-in-out;
  transition: -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out, -webkit-transform 0.2s ease-in-out;
  transition: transform 0.2s ease-in-out;
}
.footer__nav-link:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}
.footer__nav-link--pink {
  background-color: #ff0076;
}
.footer__nav-link--yellow {
  color: #00345a;
  background-color: #fff023;
}
.footer__nav-link--yellow::before {
  background: url(../img/btn-icon--navy.svg) left top/contain no-repeat;
}
.footer__nav-link--yellow .footer__label {
  -webkit-transform: translate(0, 12px);
          transform: translate(0, 12px);
}
.footer__label {
  display: block;
  text-align: center;
}
.footer__cta {
  position: absolute;
  inset: 12px 0 auto 0;
  display: block;
  width: 100%;
  margin-inline: auto;
  text-align: center;
  line-height: 1;
  font-family: Noto Sans JP, sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
}
.footer__cta-letter {
  position: relative;
  padding: 0 10px;
}
.footer__cta-letter::before {
  position: absolute;
  top: 4px;
  left: -12px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 21px;
  margin: auto;
  background: url(../img/btn-callout--navy.svg) left top/contain no-repeat;
}
.footer__cta-letter::after {
  position: absolute;
  top: 4px;
  right: -12px;
  bottom: 0;
  display: inline-block;
  content: "";
  width: 15px;
  height: 21px;
  margin: auto;
  background: url(../img/btn-callout--navy.svg) left top/contain no-repeat;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}
.footer__copy {
  width: 100%;
  padding: 20px;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
  font-size: 1.6rem;
  color: #fff;
}
.footer .fixed-bnr {
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 2;
  width: 100%;
  padding: 20px 30px;
  background-color: #fff;
  pointer-events: none;
  opacity: 0;
}
@media (min-width: 768px) {
  .footer .fixed-bnr {
    display: none !important;
  }
}
.footer .fixed-bnr.visible {
  pointer-events: auto;
  opacity: 1;
}
.footer .fixed-bnr .cv-section__link {
  width: min(100%, 330px);
  margin-inline: auto;
}

/*------------------------------
footer end
------------------------------*/