@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1450px) {
  html {
    font-size: 1.1034482759vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #4A4A4A;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  cursor: pointer;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
dl,
dd,
ul,
ol,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

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

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1450px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .inner {
    max-width: 34.375rem;
    padding-right: 0.625rem;
    padding-left: 0.625rem;
  }
}

.btn1 {
  display: inline-block;
  position: relative;
  border-radius: 0.5rem;
  max-width: 26.25rem;
  width: 100%;
  background-color: #F5A43B;
  -webkit-box-shadow: 0 0.5rem 0 #D67F0E;
          box-shadow: 0 0.5rem 0 #D67F0E;
}
@media screen and (max-width: 767px) {
  .btn1 {
    max-width: 19.0625rem;
  }
}

.btn1::before {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 50%;
  left: 0.75rem;
  translate: 0 -50%;
  border-radius: 50%;
  width: 3.5rem;
  height: 3.5rem;
  background-color: #FFF793;
  content: "無料";
  color: #F5A43B;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .btn1::before {
    left: 0.625rem;
    width: 3rem;
    height: 3rem;
    font-size: 0.9375rem;
  }
}

.btn1::after {
  position: absolute;
  top: 50%;
  right: 1rem;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 0.875rem;
  height: 0.875rem;
  background-image: url(../images/_common/icon-arrow-right01.svg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
@media screen and (max-width: 767px) {
  .btn1::after {
    right: 0.875rem;
    width: 0.625rem;
    height: 0.625rem;
  }
}

.btn1__link {
  display: block;
  position: relative;
  z-index: 1;
  border-radius: 0.5rem;
  width: 100%;
  padding: 1.25rem 5rem;
  color: white;
  font-size: 1.4375rem;
  font-weight: bold;
  line-height: 1.6;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .btn1__link {
    padding: 1rem 3.75rem;
    font-size: 1.25rem;
  }
}

.btn1__link--reflect::before {
  -webkit-animation: reflect 2s ease-in-out infinite;
  animation: reflect 2s ease-in-out infinite;
  display: block;
  position: absolute;
  top: -11.25rem;
  left: 0;
  transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  z-index: 1;
  width: 1.875rem;
  height: 100%;
  background-color: #fff;
  content: "";
  opacity: 0;
}

@-webkit-keyframes reflect {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
  }
  80% {
    opacity: 0.5;
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
  }
  81% {
    opacity: 1;
    -webkit-transform: scale(4) rotate(45deg);
    transform: scale(4) rotate(45deg);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(50) rotate(45deg);
    transform: scale(50) rotate(45deg);
  }
}
@keyframes reflect {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
  }
  80% {
    opacity: 0.5;
    -webkit-transform: scale(0) rotate(45deg);
    transform: scale(0) rotate(45deg);
  }
  81% {
    opacity: 1;
    -webkit-transform: scale(4) rotate(45deg);
    transform: scale(4) rotate(45deg);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(50) rotate(45deg);
    transform: scale(50) rotate(45deg);
  }
}
.btn1__bubble {
  display: inline-block;
  position: absolute;
  top: -1.125rem;
  left: 50%;
  z-index: 2;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  border-radius: 0.9375rem;
  max-width: 13.625rem;
  width: 100%;
  padding: 0.5rem;
  background-color: white;
  color: #F5A43B;
  font-size: 1rem;
  font-weight: bold;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .btn1__bubble {
    top: -0.6875rem;
    max-width: 10.4375rem;
    padding: 0.3125rem 0.625rem;
    font-size: 0.75rem;
  }
}

.btn1__bubble::after {
  position: absolute;
  bottom: -0.4375rem;
  z-index: 2;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.375rem solid transparent;
  border-left: 0.375rem solid transparent;
  border-top: 0.5625rem solid #fff;
  border-bottom: 0;
  content: "";
}

.btn1--push {
  -webkit-animation: push 1.7s ease infinite;
  animation: push 1.7s ease infinite;
}

@-webkit-keyframes push {
  0% {
    -webkit-box-shadow: 0 6px 0 #D67F0E;
    box-shadow: 0 6px 0 #D67F0E;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  60% {
    -webkit-box-shadow: 0 6px 0 #D67F0E;
    box-shadow: 0 6px 0 #D67F0E;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-box-shadow: 0 0 0 #D67F0E;
    box-shadow: 0 0 0 #D67F0E;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  80% {
    -webkit-box-shadow: 0 6px 0 #D67F0E;
    box-shadow: 0 6px 0 #D67F0E;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  90% {
    -webkit-box-shadow: 0 0 0 #D67F0E;
    box-shadow: 0 0 0 #D67F0E;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    -webkit-box-shadow: 0 6px 0 #D67F0E;
    box-shadow: 0 6px 0 #D67F0E;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
@keyframes push {
  0% {
    -webkit-box-shadow: 0 6px 0 #D67F0E;
    box-shadow: 0 6px 0 #D67F0E;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  60% {
    -webkit-box-shadow: 0 6px 0 #D67F0E;
    box-shadow: 0 6px 0 #D67F0E;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-box-shadow: 0 0 0 #D67F0E;
    box-shadow: 0 0 0 #D67F0E;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  80% {
    -webkit-box-shadow: 0 6px 0 #D67F0E;
    box-shadow: 0 6px 0 #D67F0E;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  90% {
    -webkit-box-shadow: 0 0 0 #D67F0E;
    box-shadow: 0 0 0 #D67F0E;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    -webkit-box-shadow: 0 6px 0 #D67F0E;
    box-shadow: 0 6px 0 #D67F0E;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.btn1--sm .btn1__link {
  font-size: 1.1875rem;
  padding: 1.4375rem 1.875rem 1.4375rem 5rem;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .btn1--sp-sm::before {
    left: 0.625rem;
    width: 2rem;
    height: 2rem;
    font-size: 0.6875rem;
  }
}

@media screen and (max-width: 767px) {
  .btn1--sp-sm::after {
    right: 0.375rem;
    width: 0.5rem;
    height: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .btn1--sp-sm .btn1__link {
    padding: 1rem 0.9375rem 1rem 2.75rem;
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .btn1--sp-sm .btn1__bubble {
    top: -0.6875rem;
    max-width: 9.375rem;
    padding: 0.3125rem;
    font-size: 0.6875rem;
  }
}

.btn1--blue {
  background-color: #00a1e9;
  -webkit-box-shadow: 0 0.5rem 0 #0067D5;
          box-shadow: 0 0.5rem 0 #0067D5;
}

.btn1--blue::before {
  color: #00a1e9;
}

.btn1--blue .btn1__bubble {
  color: #00a1e9;
}

.btn1--blue.btn1--push {
  -webkit-animation: push2 1.7s ease infinite;
  animation: push2 1.7s ease infinite;
}

@-webkit-keyframes push2 {
  0% {
    -webkit-box-shadow: 0 6px 0 #0067D5;
    box-shadow: 0 6px 0 #0067D5;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  60% {
    -webkit-box-shadow: 0 6px 0 #0067D5;
    box-shadow: 0 6px 0 #0067D5;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-box-shadow: 0 0 0 #0067D5;
    box-shadow: 0 0 0 #0067D5;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  80% {
    -webkit-box-shadow: 0 6px 0 #0067D5;
    box-shadow: 0 6px 0 #0067D5;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  90% {
    -webkit-box-shadow: 0 0 0 #0067D5;
    box-shadow: 0 0 0 #0067D5;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    -webkit-box-shadow: 0 6px 0 #0067D5;
    box-shadow: 0 6px 0 #0067D5;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

@keyframes push2 {
  0% {
    -webkit-box-shadow: 0 6px 0 #0067D5;
    box-shadow: 0 6px 0 #0067D5;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  60% {
    -webkit-box-shadow: 0 6px 0 #0067D5;
    box-shadow: 0 6px 0 #0067D5;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  70% {
    -webkit-box-shadow: 0 0 0 #0067D5;
    box-shadow: 0 0 0 #0067D5;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  80% {
    -webkit-box-shadow: 0 6px 0 #0067D5;
    box-shadow: 0 6px 0 #0067D5;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  90% {
    -webkit-box-shadow: 0 0 0 #0067D5;
    box-shadow: 0 0 0 #0067D5;
    -webkit-transform: translateY(6px);
    transform: translateY(6px);
  }
  to {
    -webkit-box-shadow: 0 6px 0 #0067D5;
    box-shadow: 0 6px 0 #0067D5;
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}
.title1 {
  color: #4A4A4A;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .title1 {
    font-size: 1.25rem;
  }
}

.banner {
  position: fixed;
  bottom: 1.5625rem;
  left: 0;
  right: 0;
  z-index: 1000;
  translate: 0 300%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .banner {
    bottom: 0.625rem;
  }
}

.banner.is-show {
  translate: 0 0;
}

.banner__wrapper {
  position: relative;
  border-radius: 1.875rem;
  padding-block: 0.875rem;
  background-color: #FFEFD8;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .banner__wrapper {
    padding: 0;
    background-color: transparent;
  }
}

@media screen and (max-width: 767px) {
  .banner__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.25rem;
  }
}

.banner__btn2 {
  display: none;
}
@media screen and (max-width: 767px) {
  .banner__btn2 {
    display: inline-block;
  }
}

.banner__woman {
  position: absolute;
  bottom: 0;
  left: calc(50% + 12.5rem);
  z-index: 2;
  width: 11.4375rem;
}
@media screen and (max-width: 767px) {
  .banner__woman {
    display: none;
  }
}

.banner__bubble {
  position: absolute;
  top: -3.4375rem;
  left: calc(50% + 20.3125rem);
  z-index: 1;
  border-radius: 0.9375rem;
  width: 15.3125rem;
  padding: 0.875rem;
  background-color: #FFF793;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.05em;
  text-align: center;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .banner__bubble {
    display: none;
  }
}

.banner__bubble::before {
  position: absolute;
  bottom: -0.9375rem;
  left: 2.5rem;
  width: 2rem;
  height: 1rem;
  background-color: #FFF89C;
  -webkit-clip-path: polygon(20% 0, 0 100%, 100% 0);
          clip-path: polygon(20% 0, 0 100%, 100% 0);
  content: "";
}

@media screen and (max-width: 767px) {
  .company {
    padding-block: 2.5rem;
    background-color: #F9F5EF;
  }
}

.company__wrapper {
  border-radius: 1.875rem;
  padding: 5.3125rem 1.25rem 6.25rem;
  background-image: url(../images/company/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .company__wrapper {
    border-radius: 0;
    padding: 0;
    background-image: none;
  }
}

.company__list {
  border-radius: 1.875rem;
  margin: 1.875rem auto 0;
  max-width: 62.125rem;
  padding: 0.625rem 3.75rem;
  background-color: #fff;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .company__list {
    border-radius: 0.625rem;
    padding: 0.25rem 1.25rem;
  }
}

.company__item {
  display: grid;
  grid-template-columns: 6.875rem 1fr;
  gap: 1.5rem;
  padding-block: 1.25rem;
}
@media screen and (max-width: 767px) {
  .company__item {
    grid-template-columns: 1fr;
    gap: 0.125rem;
  }
}

.company__item:nth-child(n+2) {
  border-top: 1px solid #eaeaea;
}

.company__term {
  color: #FF769F;
  font-size: 1.125rem;
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .company__term {
    font-size: 1rem;
  }
}

.company__desc {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .company__desc {
    font-size: 0.875rem;
  }
}

.comparison {
  padding-block: 3.75rem;
}
@media screen and (max-width: 767px) {
  .comparison {
    padding-block: 2.5rem;
  }
}

@media screen and (max-width: 767px) {
  .comparison__inner {
    padding-inline: 0;
    max-width: none;
  }
}

.comparison__head {
  text-align: center;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .comparison__head {
    padding-inline: 0.625rem;
  }
}

.comparison__lead {
  display: inline-block;
  position: relative;
  padding-inline: 1.25rem;
  font-size: 1.375rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .comparison__lead {
    padding-inline: 0.9375rem;
    font-size: 0.75rem;
  }
}

.comparison__lead::before {
  position: absolute;
  bottom: 0;
  left: 0;
  rotate: -25deg;
  width: 0.1875rem;
  height: 1.25rem;
  border-radius: 0.625rem;
  background-color: #4A4A4A;
  content: "";
}
@media screen and (max-width: 767px) {
  .comparison__lead::before {
    width: 1px;
    height: 0.875rem;
  }
}

.comparison__lead::after {
  position: absolute;
  bottom: 0;
  right: 0;
  rotate: 25deg;
  width: 0.1875rem;
  height: 1.25rem;
  border-radius: 0.625rem;
  background-color: #4A4A4A;
  content: "";
}
@media screen and (max-width: 767px) {
  .comparison__lead::after {
    width: 1px;
    height: 0.875rem;
  }
}

.comparison__title {
  margin-top: 5px;
}

.comparison__main {
  position: relative;
  margin-top: 8.125rem;
  border-radius: 1.875rem;
  padding: 24.6875rem 2.5rem 2.5rem;
  background-color: #F9F5EF;
  background-image: url(../images/comparison/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .comparison__main {
    margin-top: 3.5rem;
    border-radius: 0;
    padding: 16.25rem 0.625rem 3.125rem;
    background-image: none;
  }
}

.comparison__main::after {
  position: absolute;
  bottom: -2.4375rem;
  left: 50%;
  translate: -50% 0;
  width: 5.625rem;
  height: 2.5rem;
  background-color: #F9F5EF;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
@media screen and (max-width: 767px) {
  .comparison__main::after {
    bottom: -2.125rem;
    width: 4.6875rem;
    height: 2.1875rem;
  }
}

.comparison__img {
  position: absolute;
  top: -6.5625rem;
  left: 50%;
  translate: -50% 0;
  width: 49.375rem;
}
@media screen and (max-width: 767px) {
  .comparison__img {
    top: -2.8125rem;
    width: 22.1875rem;
  }
}

.comparison__woman {
  position: absolute;
  bottom: 0;
  right: 3.75rem;
  width: 18.75rem;
}
@media screen and (max-width: 767px) {
  .comparison__woman {
    top: 8.625rem;
    right: auto;
    left: 50%;
    bottom: auto;
    translate: -50% 0;
    width: 6.5rem;
  }
}

.comparison__text {
  margin-inline: auto;
  width: 49.375rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .comparison__text {
    max-width: 33.125rem;
    width: 100%;
    font-size: 0.875rem;
  }
}

.comparison__bottom {
  position: relative;
  margin-top: 5.9375rem;
}
@media screen and (max-width: 767px) {
  .comparison__bottom {
    margin-top: 3.875rem;
  }
}

.comparison__bottom::before {
  position: absolute;
  top: -1.875rem;
  left: calc(50% - 21.875rem);
  width: 7.8125rem;
  height: 4.5rem;
  background-image: url(../images/comparison/star-left-pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
@media screen and (max-width: 767px) {
  .comparison__bottom::before {
    top: -1.75rem;
    left: calc(50% - 10.3125rem);
    width: 3rem;
    height: 3.9375rem;
    background-image: url(../images/comparison/star-left-sp.png);
  }
}

.comparison__bottom::after {
  position: absolute;
  top: 0;
  left: calc(50% + 15rem);
  width: 1.75rem;
  height: 1.75rem;
  background-image: url(../images/comparison/star.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
@media screen and (max-width: 767px) {
  .comparison__bottom::after {
    top: 1.5625rem;
    left: calc(50% + 7.5rem);
  }
}

.comparison__text2 {
  color: #FF769F;
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
  text-shadow: 3px 3px 0 white, -3px -3px 0 white, -3px 3px 0 white, 3px -3px 0 white, 3px 0 0 white, -3px 0 0 white, 0 3px 0 white, 0 -3px 0 white;
  -webkit-filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, .1));
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="4" /><feOffset dx="1" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .1));
          filter: drop-shadow(0 4px 4px rgba(0, 0, 0, .1));
}
@media screen and (max-width: 767px) {
  .comparison__text2 {
    font-size: 1.25rem;
  }
}

.cta {
  position: relative;
  overflow: clip;
}

.cta__wrapper {
  position: relative;
  border-radius: 1.875rem;
  padding-block: 3.125rem 3.75rem;
  background-color: #FFEED3;
}
@media screen and (max-width: 767px) {
  .cta__wrapper {
    border-radius: 0.625rem;
    padding: 2rem 1.5625rem 2.5rem;
  }
}

.cta__content {
  position: relative;
  z-index: 2;
  text-align: center;
  rotate: 0.03deg;
}

.cta__lead {
  display: inline-block;
  position: relative;
  padding-inline: 1.25rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .cta__lead {
    padding-inline: 0.75rem;
    font-size: 0.625rem;
  }
}

.cta__lead::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 1rem;
  background-color: #4A4A4A;
  -webkit-transform: rotate(-25deg);
          transform: rotate(-25deg);
  content: "";
}
@media screen and (max-width: 767px) {
  .cta__lead::before {
    bottom: -0.25rem;
  }
}

.cta__lead::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 1px;
  height: 1rem;
  background-color: #4A4A4A;
  -webkit-transform: rotate(25deg);
          transform: rotate(25deg);
  content: "";
}
@media screen and (max-width: 767px) {
  .cta__lead::after {
    bottom: -0.25rem;
  }
}

.cta__title {
  margin-top: 4px;
  font-size: 1.9375rem;
  font-weight: 800;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .cta__title {
    font-size: 1.25rem;
    line-height: 1.4;
  }
}

.cta__btn {
  margin-top: 1.5rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .cta__btn {
    margin-top: 1.75rem;
  }
}

.cta__btn2 {
  display: none;
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .cta__btn2 {
    display: inline-block;
  }
}

.cta__men {
  position: absolute;
  bottom: 0;
  left: calc(50% - 30rem);
  width: 18rem;
}
@media screen and (max-width: 767px) {
  .cta__men {
    top: 4.1875rem;
    bottom: auto;
    left: calc(50% + 5.625rem);
    width: 5.625rem;
  }
}

.cta__graph-right {
  position: absolute;
  top: 4.875rem;
  left: calc(50% + 15rem);
  width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .cta__graph-right {
    top: 3.875rem;
    left: calc(50% - 9.625rem);
    width: 3.75rem;
  }
}

.cta__graph-left {
  position: absolute;
  top: 5.375rem;
  left: calc(50% - 30rem);
  width: 13.75rem;
}
@media screen and (max-width: 767px) {
  .cta__graph-left {
    top: 3.875rem;
    left: calc(50% - 9.625rem);
    width: 3.75rem;
  }
}

.cta__woman {
  position: absolute;
  bottom: 0;
  left: calc(50% + 16.875rem);
  width: 19.375rem;
}
@media screen and (max-width: 767px) {
  .cta__woman {
    top: 4rem;
    bottom: auto;
    left: calc(50% + 5.5625rem);
    width: 5.75rem;
  }
}

.feature {
  padding-block: 4.375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .feature {
    padding-block: 2.5rem;
  }
}

.feature__inner {
  max-width: 78.125rem;
}
@media screen and (max-width: 767px) {
  .feature__inner {
    max-width: 34.375rem;
  }
}

.feature__wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .feature__wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-top: 1.25rem;
  }
}

.feature__content {
  position: relative;
  background-color: #FFF2F6;
  border-radius: 1.875rem;
  padding: 12.8125rem 2.5rem 2.5rem;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .feature__content {
    border-radius: 0.625rem;
    padding: 7.8125rem 1.25rem 2.5rem;
  }
}

.feature__number {
  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: 0.125rem;
  position: absolute;
  top: 1.25rem;
  left: 1.25rem;
  z-index: 2;
  border-radius: 50%;
  width: 6rem;
  height: 6rem;
  background-color: #FF769F;
  color: #fff;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__number {
    top: 1.25rem;
    left: 1rem;
    width: 3rem;
    height: 3rem;
    font-size: 0.625rem;
  }
}

.feature__number span {
  font-size: 2.4375rem;
}
@media screen and (max-width: 767px) {
  .feature__number span {
    font-size: 1.1875rem;
  }
}

.feature__img1 {
  position: absolute;
  top: -4.0625rem;
  left: 50%;
  translate: -50% 0;
  width: 23.75rem;
}
@media screen and (max-width: 767px) {
  .feature__img1 {
    top: -3rem;
    width: 15.75rem;
  }
}

.feature__body {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .feature__body {
    gap: 1rem;
  }
}

.feature__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .feature__text {
    font-size: 0.875rem;
  }
}

.feature__box {
  position: relative;
  border: 1px solid #FFA9C3;
  border-radius: 0.5rem;
  min-height: 6.25rem;
  padding: 0.9375rem 2.5rem 0.9375rem 0.875rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .feature__box {
    min-height: auto;
    padding: 1rem 1rem 1.875rem 1rem;
  }
}

.feature__item {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .feature__item {
    font-size: 0.75rem;
  }
}

.feature__etc {
  position: absolute;
  bottom: 1.375rem;
  right: 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .feature__etc {
    bottom: 0.625rem;
    right: 1rem;
    font-size: 0.75rem;
  }
}

.feature__content--sec {
  padding: 17.8125rem 2.5rem 2.5rem;
  background-color: #E8F3FC;
}
@media screen and (max-width: 767px) {
  .feature__content--sec {
    padding: 7.8125rem 1.25rem 2.5rem;
  }
}

.feature__content--sec .feature__number {
  background-color: #80BBE7;
}

.feature__img2 {
  position: absolute;
  top: -2.1875rem;
  right: 0;
  width: 31.6875rem;
}
@media screen and (max-width: 767px) {
  .feature__img2 {
    top: -1.875rem;
    right: auto;
    left: 50%;
    translate: -50% 0;
    width: 16rem;
  }
}

.feature__content--sec .feature__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-color: #80BBE7;
}
@media screen and (max-width: 767px) {
  .feature__content--sec .feature__box {
    padding: 0.875rem;
  }
}

.feature__achievement {
  color: #579ED2;
  font-size: 1.625rem;
  font-weight: 800;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .feature__achievement {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 767px) {
  .flow {
    padding-block: 2.5rem;
    background-color: #F9F5EF;
  }
}

.flow__wrapper {
  border-radius: 1.875rem;
  padding: 5.3125rem 1.25rem 6.25rem;
  background-image: url(../images/flow/bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (max-width: 767px) {
  .flow__wrapper {
    border-radius: 0;
    background-image: none;
    padding: 0;
  }
}

.flow__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0.625rem;
  margin: 1.875rem auto 0;
  max-width: 75rem;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .flow__list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 1rem;
  }
}

.flow__item {
  position: relative;
  border-radius: 1.25rem;
  padding: 2.5rem 1.25rem 2.25rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .flow__item {
    display: grid;
    grid-template-columns: 4.5rem 1fr;
    gap: 1rem;
    border-radius: 0.625rem;
    padding: 1.25rem;
  }
}

.flow__item-number {
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  color: #FF769F;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .flow__item-number {
    top: 0.5rem;
    left: 0.625rem;
    z-index: 2;
    font-size: 1.5rem;
  }
}

.flow__item-img {
  display: block;
  border-radius: 50%;
  margin-inline: auto;
  width: 7.5rem;
}
@media screen and (max-width: 767px) {
  .flow__item-img {
    width: 4.5rem;
  }
}

.flow__item-body {
  margin-top: 1.25rem;
}
@media screen and (max-width: 767px) {
  .flow__item-body {
    margin-top: 0;
  }
}

.flow__item-title {
  color: #FF769F;
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .flow__item-title {
    font-size: 1rem;
    text-align: left;
  }
}

.flow__item-text {
  margin-top: 6px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .flow__item-text {
    font-size: 0.875rem;
  }
}

.footer {
  padding-block: 3.75rem 9.6875rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-block: 2.5rem 6.25rem;
  }
}

.footer__copy {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-align: center;
  rotate: 0.03deg;
}

.form__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.8125rem;
}

.form__group {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.1875rem;
}

.form__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.form__label--required::after {
  display: inline-block;
  border-radius: 0.125rem;
  padding: 0.25rem 0.4375rem;
  background-color: #EC5D5D;
  color: #fff;
  content: "必須";
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
  text-align: center;
}

.form__input input[type=text],
.form__input input[type=email] {
  width: 100%;
  padding: 0.75rem 0.9375rem;
  border: none;
  border-radius: 0.25rem;
  background-color: #f4f4f4;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form__input input::-webkit-input-placeholder {
  color: #A8A8A8;
}

.form__input input::-moz-placeholder {
  color: #A8A8A8;
}

.form__input input::-ms-input-placeholder {
  color: #A8A8A8;
}

.form__input input::placeholder {
  color: #A8A8A8;
}

.form__radio {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
}

.form__radio input {
  position: absolute;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.form__radio-label {
  position: relative;
  padding-left: 1.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  cursor: pointer;
}

.form__radio-label::before {
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #bbb;
  border-radius: 50%;
  width: 1rem;
  height: 1rem;
  content: "";
}

.form__radio-label::after {
  display: none;
  position: absolute;
  top: 0.25rem;
  left: 0.25rem;
  border-radius: 50%;
  width: 0.5rem;
  height: 0.5rem;
  background-color: #bbb;
  content: "";
}

.form__radio input:checked + .form__radio-label::after {
  display: block;
}

.form__btn {
  margin-top: 1rem;
  text-align: center;
}

.header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 1000;
  height: 4.5rem;
  background-color: white;
}
@media screen and (max-width: 767px) {
  .header {
    height: 4rem;
  }
}

.header__logo {
  width: 13.3125rem;
}
@media screen and (max-width: 767px) {
  .header__logo {
    width: 10.625rem;
  }
}

.header__logo-link {
  display: block;
}

.intro {
  position: relative;
  z-index: 2;
}

.intro__wrapper {
  position: relative;
  border-radius: 1.875rem;
  background-color: #F9F5EF;
  padding: 4rem 2.5rem 12.5rem;
}
@media screen and (max-width: 767px) {
  .intro__wrapper {
    border-radius: 0.625rem;
    padding: 2.5rem 0.9375rem 9.375rem;
  }
}

.intro__title {
  position: relative;
}

.intro__title::after {
  position: absolute;
  top: -0.625rem;
  left: calc(50% + 10rem);
  width: 5.375rem;
  height: 5.5rem;
  background-image: url(../images/intro/vortex.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
}
@media screen and (max-width: 767px) {
  .intro__title::after {
    top: 0;
    left: calc(50% + 6.5625rem);
    width: 3.125rem;
    height: 3.25rem;
  }
}

.intro__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 75rem;
  margin: 1.25rem auto 0;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .intro__list {
    grid-template-columns: 1fr;
    gap: 0.625rem;
  }
}

.intro__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  border-radius: 1.25rem;
  padding: 1.875rem 0.625rem;
  background-color: #FFCFDE;
}
@media screen and (max-width: 767px) {
  .intro__item {
    border-radius: 0.625rem;
    padding: 1.5rem 1.25rem;
    min-height: 7.125rem;
  }
}

.intro__item::before {
  position: absolute;
  bottom: -1.6875rem;
  right: 5.9375rem;
  width: 4.5rem;
  height: 1.875rem;
  background-color: #FFCFDE;
  -webkit-clip-path: polygon(0 0, 100% 100%, 80% 0);
          clip-path: polygon(0 0, 100% 100%, 80% 0);
  content: "";
}
@media screen and (max-width: 767px) {
  .intro__item::before {
    display: none;
  }
}

.intro__item:nth-child(2) {
  background-color: #C9E8FF;
}

.intro__item:nth-child(2)::before {
  bottom: -2.5rem;
  left: 50%;
  right: auto;
  translate: -50% 0;
  width: 2.625rem;
  height: 2.625rem;
  background-color: #C9E8FF;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: "";
}
@media screen and (max-width: 767px) {
  .intro__item:nth-child(2)::before {
    display: none;
  }
}

.intro__item:nth-child(3) {
  background-color: #FFF89C;
}

.intro__item:nth-child(3)::before {
  left: 5.9375rem;
  right: auto;
  background-color: #FFF89C;
  -webkit-clip-path: polygon(20% 0, 0 100%, 100% 0);
          clip-path: polygon(20% 0, 0 100%, 100% 0);
  content: "";
}
@media screen and (max-width: 767px) {
  .intro__item:nth-child(3)::before {
    display: none;
  }
}

.intro__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .intro__text {
    font-size: 0.875rem;
  }
}

.intro__human {
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  width: 26.0625rem;
}
@media screen and (max-width: 767px) {
  .intro__human {
    width: 16.6875rem;
  }
}

.logos {
  position: relative;
  padding-block: 1rem 2.875rem;
}
@media screen and (max-width: 767px) {
  .logos {
    padding-block: 0.75rem 5rem;
  }
}

.logos__swiper {
  margin-left: 15.3125rem;
  width: 46.5rem;
}
@media screen and (max-width: 1023px) {
  .logos__swiper {
    width: calc(100% - 15.3125rem);
  }
}
@media screen and (max-width: 767px) {
  .logos__swiper {
    margin-left: 0;
    width: 100%;
  }
}

.logos__wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}

.logos__slide {
  width: 11.25rem;
}
@media screen and (max-width: 767px) {
  .logos__slide {
    width: 7.8125rem;
  }
}

.logos__woman {
  position: absolute;
  bottom: 0;
  left: calc(50% - 41.5625rem);
  width: 18.875rem;
}
@media screen and (max-width: 767px) {
  .logos__woman {
    bottom: -3.25rem;
    left: 50%;
    translate: -50% 0;
    width: 20.4375rem;
  }
}

.mv {
  position: relative;
}

.mv_wrapper {
  position: relative;
  border-radius: 1.875rem;
  height: 37.875rem;
  background-image: url(../images/mv/bg-pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv_wrapper {
    border-radius: 1.25rem;
    background-image: url(../images/mv/bg-sp.png);
    height: 28.75rem;
  }
}

.mv__content {
  position: absolute;
  top: 6.5rem;
  left: calc(50% - 26.875rem);
  z-index: 2;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  rotate: 0.03deg;
}
@media screen and (max-width: 1023px) {
  .mv__content {
    left: calc(50% - 14.375rem);
  }
}
@media screen and (max-width: 767px) {
  .mv__content {
    position: relative;
    top: auto;
    left: auto;
    margin: 5.5rem auto 0;
  }
}

.mv__bubble {
  max-width: 32.375rem;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .mv__bubble {
    max-width: 20.5625rem;
  }
}

.mv__lead {
  margin-top: 0.5rem;
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__lead {
    margin-top: 0.3125rem;
    font-size: 0.9375rem;
  }
}

.mv__title {
  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: 0.625rem;
  margin-top: 0.5rem;
  color: #FF769F;
  font-size: 2.8125rem;
  font-weight: 800;
  line-height: 1.4;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .mv__title {
    gap: 0.3125rem;
    font-size: 1.375rem;
  }
}

.mv__title .line {
  display: inline-block;
  border-bottom: 0.1875rem dashed #FF769F;
}
@media screen and (max-width: 767px) {
  .mv__title .line {
    border-bottom: 0.125rem dashed #FF769F;
  }
}

.mv__title .text {
  text-shadow: 4px 4px 0 white, -4px -4px 0 white, -4px 4px 0 white, 4px -4px 0 white, 4px 0 0 white, -4px 0 0 white, 0 4px 0 white, 0 -4px 0 white;
  -webkit-filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, .1));
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="5" dy="5" result="offsetblur" /><feFlood flood-color="rgba(0,0,0,0.05)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, .05));
          filter: drop-shadow(4px 4px 0 rgba(0, 0, 0, .05));
}

.mv__title .text.lg {
  font-size: 3.5rem;
}
@media screen and (max-width: 767px) {
  .mv__title .text.lg {
    font-size: 2.25rem;
  }
}

.mv__circle1 {
  position: absolute;
  top: 6.875rem;
  left: -7.5rem;
  width: 29.0625rem;
}
@media screen and (max-width: 1023px) {
  .mv__circle1 {
    left: 4.375rem;
  }
}
@media screen and (max-width: 767px) {
  .mv__circle1 {
    top: auto;
    bottom: -3.4375rem;
    left: -3.125rem;
    width: 13.75rem;
  }
}

.mv__circle2 {
  position: absolute;
  top: -3.125rem;
  left: calc(50% - 0.625rem);
  width: 29.1875rem;
}
@media screen and (max-width: 1023px) {
  .mv__circle2 {
    left: calc(50% + 11.875rem);
  }
}
@media screen and (max-width: 767px) {
  .mv__circle2 {
    top: -3.4375rem;
    left: -3.125rem;
    width: 12.5rem;
  }
}

.mv__circle3 {
  position: absolute;
  bottom: -2.5rem;
  left: calc(50% - 3.125rem);
  width: 19.75rem;
}
@media screen and (max-width: 1023px) {
  .mv__circle3 {
    left: calc(50% + 9.375rem);
  }
}
@media screen and (max-width: 767px) {
  .mv__circle3 {
    bottom: 0;
    left: auto;
    right: -3.4375rem;
    width: 12.5rem;
  }
}

.qa {
  padding-block: 4.375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .qa {
    padding-block: 2.5rem;
  }
}

.qa__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2rem auto 0;
  max-width: 62.125rem;
  rotate: 0.03deg;
}

.qa__item {
  border-radius: 1.875rem;
  background-color: #FFF2F6;
}
@media screen and (max-width: 767px) {
  .qa__item {
    border-radius: 0.625rem;
  }
}

.qa__question {
  position: relative;
  padding: 2rem 4.375rem;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.6;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .qa__question {
    padding: 0.9375rem 2.75rem;
    font-size: 0.875rem;
  }
}

.qa__question:before {
  position: absolute;
  top: 1.875rem;
  left: 1.75rem;
  content: "Q";
  font-size: 2rem;
  font-weight: 800;
  color: #FF769F;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .qa__question:before {
    top: 0.875rem;
    left: 0.75rem;
    font-size: 1.5rem;
  }
}

.qa__question::after {
  position: absolute;
  top: 1.75rem;
  right: 1.75rem;
  width: 2.5rem;
  height: 2.5rem;
  background-image: url(../images/_common/icon-plus.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  content: "";
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
@media screen and (max-width: 767px) {
  .qa__question::after {
    top: 0.625rem;
    right: 0.625rem;
    width: 2rem;
    height: 2rem;
  }
}

.qa__question.is-open::after {
  background-image: url(../images/_common/icon-minus.svg);
}

.qa__answer {
  padding: 0 4.375rem 2rem 4.375rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .qa__answer {
    padding: 0 2.75rem 0.9375rem 2.75rem;
    font-size: 0.75rem;
  }
}

.structure {
  padding-block: 4.375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .structure {
    padding-block: 2.5rem;
  }
}

.structure__inner {
  max-width: 53.125rem;
}
@media screen and (max-width: 767px) {
  .structure__inner {
    max-width: 34.375rem;
  }
}

.structure__lead {
  margin-top: 1.5rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: center;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .structure__lead {
    margin-top: 1.25rem;
    font-size: 0.875rem;
  }
}

.structure__img {
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .structure__img {
    margin-top: 1.25rem;
  }
}

.top-form {
  position: absolute;
  top: 7.625rem;
  left: calc(50% + 21.25rem);
  z-index: 3;
  border-radius: 0.625rem;
  -webkit-box-shadow: 0.25rem 0.25rem 0.875rem rgba(0, 0, 0, .11);
          box-shadow: 0.25rem 0.25rem 0.875rem rgba(0, 0, 0, .11);
  width: 20.125rem;
  overflow: hidden;
  rotate: 0.03deg;
}
@media screen and (max-width: 1023px) {
  .top-form {
    display: none;
  }
}

.top-form__head {
  padding: 1.25rem;
  background-color: #FF769F;
  text-align: center;
}

.top-form__title {
  color: #fff;
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.05em;
}

.top-form__title span {
  color: #FFF793;
}

.top-form__body {
  padding: 1.25rem 1.25rem 1.625rem;
  background-color: #fff;
}

.voice {
  padding-block: 4.375rem 6.25rem;
}
@media screen and (max-width: 767px) {
  .voice {
    padding-block: 2.5rem;
  }
}

.voice__inner {
  max-width: 65.25rem;
}
@media screen and (max-width: 767px) {
  .voice__inner {
    max-width: 34.375rem;
  }
}

.voice__wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-top: 2rem;
}

.voice__content {
  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: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative;
  padding: 2.5rem 3.125rem 2.5rem 18.75rem;
  border-radius: 1.875rem;
  min-height: 16.875rem;
  rotate: 0.03deg;
}
@media screen and (max-width: 767px) {
  .voice__content {
    display: block;
    border-radius: 0.625rem;
    padding: 7.75rem 1.25rem 2rem;
    min-height: auto;
  }
}

.voice__content:nth-child(1) {
  background-color: #FFF2F6;
}

.voice__content:nth-child(2) {
  background-color: #E8F3FC;
}

.voice__content img {
  position: absolute;
  top: -0.75rem;
  left: 0.75rem;
  width: 16rem;
}
@media screen and (max-width: 767px) {
  .voice__content img {
    top: -1rem;
    width: 8.75rem;
    left: 50%;
    translate: -50% 0;
  }
}

.voice__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 767px) {
  .voice__text {
    font-size: 0.875rem;
  }
}

.voice__name {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: right;
}
@media screen and (max-width: 767px) {
  .voice__name {
    margin-top: 0.5rem;
    font-size: 0.875rem;
  }
}

@media screen and (max-width: 767px) {
  .desktop {
    display: none;
  }
}

.mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .mobile {
    display: inline-block;
  }
}
/*# sourceMappingURL=styles.css.map */

/*# form_css */
.form .must {
  display: inline-block;
  background: #DD4848;
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-left: 7px;
}

.form .ok_span {
  display: none;
  background: #1FA232;
  color: #fff;
  font-size: 12px;
  width: 36px;
  height: 19px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border-radius: 3px;
  margin-left: 7px;
}

.form .ok_span.ok {
  display: inline-flex;
}
.form__input input {
  background-color: #f4f4f4; /* 初期状態の背景色 */
  transition: background-color 0.3s ease; /* 背景色変更のアニメーション */
}

.form__input input:focus {
  background-color: #f4f4f4; /* フォーカス時の背景色 */
}
.form__input input[type="date"] {
  background-color: #f8f8f8;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 0.5rem;
  font-size: 0.75rem;
  transition: background-color 0.3s ease;
}

.form__input input[type="date"]:focus {
  background-color: #f4f4f4;
  border-color: #007BFF;
  outline: none;
}
.email-suggestions {
  list-style: none;
  margin: 0;
  padding: 0;
  border: 1px solid #f4f4f4;
  background-color: #fff;
  position: absolute;
  z-index: 1000;
  width: 100%;
  max-width: 300px;
  display: none;
}

.email-suggestions li {
  padding: 0.5rem;
  cursor: pointer;
}

.email-suggestions li:hover {
  background-color: #f0f0f0;
}
.email-suggestions li.selected {
  background-color: #007BFF;
  color: #fff;
}
#tel {
  width: 100%;
  max-width: 200px;
  padding: 0.5rem;
  font-size: 0.75rem;
  border-radius: 4px;
  transition: border-color 0.3s ease;
}

#tel:focus {
  border-color: #007BFF;
  outline: none;
}

.button_wrap{
  margin-top: 10px;
}
/* .tacのスタイル修正 */
.tac {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto; /* 中央揃え */
  position: relative;
  background: #fc612d;
  border-radius: 10px;
  box-shadow: 0 0 8px rgba(0,0,0,0.15);
  overflow: hidden;
  width: auto; /* 幅を適切に設定 */
  height: 50px; /* 高さを設定 */
  
}

/* .muryoのスタイル調整 */
.muryo {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fd952d;
  color: #fff;
  font-size: 12px;
  padding: 0 10px; /* パディングを追加 */
  height: 50px; /* 高さをボタンに合わせる */
  border-radius: 10px 0 0 10px; /* 角丸を左側にのみ適用 */
  writing-mode: vertical-rl; /* 縦書き */
  letter-spacing: 5px; /* 文字間隔 */
}

.disabled-button {
  background-color: #cccccc; /* 灰色 */
  color: #666666; /* 濃い灰色の文字 */
  pointer-events: none;
  opacity: 0.5;
}

.disabled-text {
  color: #cccccc; /* 灰色のテキスト */
  cursor: not-allowed;
}

/* tac と muryo を灰色にする */
.disabled-tac {
  background-color: #cccccc; /* tac の背景を灰色に */
  color: #666666; /* テキストを濃い灰色に */
}

.disabled-muryo {
  background-color:#cccccc; /* muryo の背景を灰色に */
  color: #666666; /* テキストを濃い灰色に */
}

/* ボタンスタイルの調整 */
.t_form_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: auto; /* 中央揃え */
  width: 100%; /* 幅を親要素に合わせる */
  max-width: 300px; /* 最大幅を設定 */
  height: 50px; /* 高さを固定 */
  font-size: 14px; /* フォントサイズを調整 */
  font-weight: bold;
  color: #fff;
  background-color: #fc612d; /* 背景色 */
  border: none;
  border-radius: 10px; /* 角丸 */
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.15); /* ボックスシャドウ */
  overflow: hidden;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
}
/* 全体的なスタイリング */
.disabled-button, .disabled-text {
  opacity: 1; /* 透明度を通常に戻す */
  color: #aaa; /* テキスト色を灰色に */
  cursor: not-allowed; /* カーソルを禁止マークに */
  pointer-events: none; /* クリック操作を無効に */
  background-color: #ccc; /* 背景色を灰色に設定 */
}

/* t_form_btnが無効化されたときのスタイル */
.t_form_btn.disabled-button {
  background-color: #ccc; /* 背景色を灰色に設定 */
  color: #666; /* テキスト色を暗めの灰色に */
  pointer-events: none; /* クリック操作を無効に */
  box-shadow: none; /* ボックスシャドウを削除 */
}

/* テキスト固有のスタイリング（.muryoを含む） */
.muryo.disabled-text span {
  background-color: #ccc; /* 背景色を灰色に設定 */
  color: #666; /* テキスト色を暗めの灰色に */
  padding: 2px 5px; /* パディングを設定 */
  border-radius: 4px; /* 角を丸く */
}

button.t_form_btn::before {
  position: absolute;
  background-color: #fff;
  content: "";
  width: 30px;
  height: 100%;
  left: 0;
  opacity: 0;
  top: -180px;
  transform: rotate(45deg);
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
	  0% { transform: scale(0) rotate(45deg); opacity: 0; }
	 80% { transform: scale(0) rotate(45deg); opacity: 0.5; }
	 81% { transform: scale(4) rotate(45deg); opacity: 1; }
	100% { transform: scale(50) rotate(45deg); opacity: 0; }
}

/* 追加 */
.t_form_btn.disabled-button::before {
  animation: none;
}
.privacy_link {
	font-size: 13px;
	text-align: center;
	padding: .5em 0 0;
	margin: 0;
	text-decoration: underline;
}
.privacy_link a[target="_blank"] {
	position: relative;
}
.privacy_link a[target="_blank"]::after {
	position: absolute;
	content: '';
	display: inline-block;
	background: url('../images/form/external-link.svg') center center no-repeat;
	background-size: contain;
	width: 16px;
	height: 16px;
	top: -1px;
	right: -20px;
	margin-left: 5px;
	/* padding: 20px 5px 0; */
}

/* アクサ生命のロゴを中央揃え */
.logos__slide--axa {
  display: flex;
  justify-content: center;
  align-items: center;
}
/* アクサ生命のロゴのサイズを小さく */
.logo--small {
  width: 60%; /* 必要に応じて調整（例：50%、80%） */
  height: auto;
}
.logos__heading{
  text-align: center
}

.company-privacy__box {
  border: 1px solid #ccc;
  background-color: #f9f9f9;
  padding: 1.5em;
  border-radius: 6px;
  font-size: 1rem;
  line-height: 1.6;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  width: 90%;
  max-width: 900px;
  margin: 2rem auto; /* Center horizontally with margin */
  text-align: center; /* Center text */
}

/* スマホでは表示（デフォルト） */
.cta__btn2,
.banner__btn2 {
  display: block;
}

/* PCでは非表示 */
@media screen and (min-width: 768px) {
  .cta__btn2,
  .banner__btn2 {
    display: none !important;
  }
}