@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet portrait
900 - 1200px:   Tablet landscape
[1200 - 1800] is where our normal styles apply
1800px + :      Big desktop

$breakpoint arguement choices:
- phone
- tab-port
- tab-land
- big-desktop

ORDER: Base + typography > general layout + grid > page layout > components

1em = 16px
*/
@keyframes moveInLeft {
  0% {
    opacity: 0;
    transform: translateX(-10rem);
  }
  80% {
    transform: translateX(1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInRight {
  0% {
    opacity: 0;
    transform: translateX(10rem);
  }
  80% {
    transform: translateX(-1rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInBottom {
  0% {
    opacity: 0;
    transform: translateY(3rem);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
*,
*::before,
*::after {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
}

::-moz-selection {
  background-color: pink;
}

::selection {
  background-color: pink;
}

html {
  font-size: 62.5%;
  overflow-x: auto;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  box-sizing: border-box;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -o-object-fit: cover;
     object-fit: cover;
}

a:link,
a:visited {
  color: inherit;
  text-decoration: none;
}

ul {
  padding-left: 0;
}

li {
  list-style: none;
}

textarea {
  resize: none;
}

main {
  background-color: #fff;
}

body {
  font-family: "Zen Kaku Gothic Antique", sans-serif;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.5;
  color: #000;
  max-width: 375px;
  width: 100%;
  margin: 0 auto;
  background-color: #fffdf2;
}

.container {
  width: 100%;
  padding-right: 1.5rem;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}

.container-main {
  width: 100%;
  padding-right: 0.8rem;
  padding-left: 0.8rem;
  margin-right: auto;
  margin-left: auto;
}

.is-md-hide {
  display: block;
}
@media screen and (max-width: 760px) {
  .is-md-hide {
    display: none;
  }
}

.is-md-show {
  display: none;
}
@media screen and (max-width: 760px) {
  .is-md-show {
    display: block;
  }
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #942d2f;
  border-radius: 5px;
  width: 60px;
  height: 60px;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 1.2rem;
  transition: all 0.3s;
}

#page-top a:hover {
  background: #777;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/*　上に上がる動き　*/
#page-top.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*　下に下がる動き　*/
#page-top.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.c-button {
  background: linear-gradient(to right bottom, #e63a77 25%, #ff679d 50%, #e63a77 75%);
  width: 100%;
  height: 41px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  transition: all 0.3s;
  box-shadow: 4px 4px 0 #eb92b1;
  border: 2px solid #fff;
}
.c-button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.c-button--special {
  height: 70px;
}
.c-button--59 {
  height: 59px;
}
.c-button__text {
  color: #fff;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.c-button-2 {
  background-color: #fff;
  margin-bottom: 48px;
  color: #e63a77;
  width: 100%;
  height: 41px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  -moz-column-gap: 24px;
       column-gap: 24px;
  transition: all 0.3s;
  box-shadow: 4px 4px 0 #e63a77;
  border: 2px solid #e63a77;
}
.c-button-2:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.c-button-2--special {
  height: 70px;
}
.c-button-2--59 {
  height: 59px;
}
.c-button-2--78 {
  height: 78px;
}
.c-button-2--none {
  margin-bottom: 0;
}
.c-button-2__text {
  color: #e63a77;
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}
.l-footer {
  padding: 43px 45px 15px;
  background-color: #00a0bb;
  text-align: center;
}
.l-footer__ul {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  row-gap: 16px;
  margin-bottom: 63px;
}
.l-footer__a {
  color: #fff !important;
  transition: all 0.3s;
  font-size: 16px;
  font-weight: 400;
}
.l-footer__a:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.l-footer__copy {
  color: #fff;
  font-size: 14px;
}

.p-header {
  height: 36px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: #00a0bb;
}
.p-header__title-img {
  width: 136px;
}

.p-menu__svg {
  position: fixed;
  right: 100px;
  top: 50%;
  transform: translateY(-50%);
  width: 287px;
}
@media screen and (max-width: 1100px) {
  .p-menu__svg {
    display: none;
  }
}
.p-menu__left {
  position: fixed;
  left: 100px;
  top: 50%;
  transform: translateY(-50%);
  max-width: 330px;
  width: 100%;
}
@media screen and (min-width: 2000px) {
  .p-menu__left {
    left: 20%;
  }
}
@media screen and (max-width: 2000px) {
  .p-menu__left {
    left: 350px;
  }
}
@media screen and (max-width: 1800px) {
  .p-menu__left {
    left: 260px;
  }
}
@media screen and (max-width: 1600px) {
  .p-menu__left {
    left: 170px;
  }
}
@media screen and (max-width: 1500px) {
  .p-menu__left {
    left: 100px;
  }
}
@media screen and (max-width: 1300px) {
  .p-menu__left {
    left: 30px;
  }
}
@media screen and (max-width: 1100px) {
  .p-menu__left {
    display: none;
  }
}
.p-menu__pika {
  width: 38px;
  position: absolute;
  left: -21px;
  top: -30px;
}
.p-menu__titles {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 8px;
  margin-bottom: 20px;
}
.p-menu__h2 {
  font-size: 32px;
  color: #00a0bb;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}
.p-menu__sub {
  color: #ffdf00;
  font-weight: 700;
  font-size: 24px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
  text-shadow: -0.5px -0.5px 0 #00a0bb, 0px -0.5px 0 #00a0bb, 0.5px -0.5px 0 #00a0bb, -0.5px 0px 0 #00a0bb, 0.5px 0px 0 #00a0bb, -0.5px 0.5px 0 #00a0bb, 0px 0.5px 0 #00a0bb, 0.5px 0.5px 0 #00a0bb;
}
.p-menu__content {
  display: flex;
  flex-direction: column;
  row-gap: 5px;
}
.p-menu__child {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.p-menu__rank-group {
  width: 45px;
  background-color: #e63a77;
  height: 69.5px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.p-menu__rank-group--other {
  background-color: #00a0bb;
}
.p-menu__king {
  width: 20px;
}
.p-menu__rank {
  font-size: 22px;
  color: #fff;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.p-menu__rank span {
  font-size: 16px;
}
.p-menu__right {
  background-color: #fff;
  padding: 8px 16px 8px 24px;
  display: flex;
  flex-direction: row;
  -moz-column-gap: 24px;
       column-gap: 24px;
  justify-content: center;
  align-items: center;
}
.p-menu__name-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 5px;
}
.p-menu__star {
  width: 102px;
}
.p-menu__logo {
  width: 102px;
}
.p-menu__button {
  width: 115px;
  height: 41px;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding-left: 16px;
  background: linear-gradient(to right bottom, #e63a77, #fa70a1, #e63a77);
  border: 1px solid #fff;
  box-shadow: 3px 3px 0 #eb92b1;
  position: relative;
  transition: all 0.3s;
}
.p-menu__button:hover {
  opacity: 0.7;
  transition: all 0.3s;
}
.p-menu__button--other {
  border: 1px solid #e63a77;
  background: #fff;
}
.p-menu__button-text {
  color: #fff;
  font-weight: 600;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
}
.p-menu__button-text--other {
  color: #e63a77;
}
.p-menu__arrow {
  width: 15px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 19px;
}

.p-graph {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 32px;
  background-color: #ebf0f4;
  position: relative;
}
.p-graph__h2 {
  font-weight: 600;
  font-size: 28px;
  margin-bottom: 28px;
  color: #00a0bb;
}
.p-graph__container {
  width: 100%;
  padding-left: 1.5rem;
  margin-right: auto;
  margin-left: auto;
}
.p-graph__english {
  color: rgba(118, 181, 189, 0.1);
  font-size: 72px;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-32px);
  position: absolute;
  letter-spacing: 0.1em;
}
.p-graph__red {
  color: #ff0000;
  font-weight: 700;
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  margin-top: 9px;
}
.p-graph__img {
  width: 100%;
}
.p-graph__content {
  width: 800px;
  padding-right: 15px;
  position: relative;
}
.p-graph__button-img {
  width: 100%;
}
.p-graph__button {
  position: absolute;
  width: 86px;
  height: 30px;
}
.p-graph__button--1 {
  bottom: 10px;
  height: 41px;
  width: 114px;
  left: 117px;
}
.p-graph__button--2 {
  bottom: 16px;
  left: 253px;
}
.p-graph__button--3 {
  bottom: 16px;
  left: 362px;
}
.p-graph__button--4 {
  bottom: 16px;
  left: 471px;
}
.p-graph__button--5 {
  bottom: 16px;
  left: 580px;
}
.p-graph__button--6 {
  bottom: 16px;
  left: 689px;
}
.p-graph__button--7 {
  top: 107px;
  left: 131px;
}

.scroll-hint-icon-white {
  background-color: rgba(123, 156, 161, 0.8);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #fff;
}

.p-fv {
  padding-top: 51px;
  padding-bottom: 49px;
  background-image: url(../img/fv/bg.webp);
  background-position: center;
  background-size: cover;
}
.p-fv__wrap {
  text-align: center;
}
.p-fv__up {
  width: 340px;
  margin: 0 auto;
  margin-bottom: 32px;
}
.p-fv__agent {
  width: 343px;
  margin: 0 auto;
}
.p-fv__sub {
  font-size: 27px;
  font-weight: 900;
  padding: 12px 8px;
  border: 1px solid #fff;
  color: #fff;
  line-height: 1;
  max-width: 350px;
  width: 100%;
  margin: 0 auto;
  margin-bottom: 8px;
  font-weight: 700;
  font-family: "Noto Sans JP";
}
.p-fv__h1 {
  text-shadow: 0px 0px 8px rgba(18, 55, 69, 0.8);
  color: #ffdf00;
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  font-family: "Noto Sans JP";
  margin: 0 auto;
}

.p-sub {
  background-color: #fff;
  text-align: center;
  position: relative;
  padding-top: 48px;
  padding-bottom: 48px;
}
.p-sub__bird {
  position: absolute;
  top: 19px;
  left: 28px;
  width: 40px;
}
.p-sub__h2 {
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 24px;
}
.p-sub__or {
  font-size: 32px;
  font-family: "Montserrat", sans-serif;
  color: #76b5bd;
  margin-top: 16px;
  line-height: 1;
  margin-bottom: 16px;
}
.p-sub__box--1 {
  border: 2px solid #048292;
}
.p-sub__box--2 {
  border: 2px solid #04927f;
}
.p-sub__upper {
  padding: 9px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  -moz-column-gap: 9px;
       column-gap: 9px;
  position: relative;
}
.p-sub__upper--1 {
  background-color: #048292;
}
.p-sub__upper--2 {
  background-color: #04927f;
}
.p-sub__main {
  padding: 32px 16px 24px;
  text-align: left;
}
.p-sub__main--1 {
  background-color: #e9f9ff;
}
.p-sub__main--2 {
  background-color: #e9fffc;
}
.p-sub__text {
  font-size: 17.5px;
  line-height: 1.6;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  margin-bottom: 16px;
}
.p-sub__text span {
  background: linear-gradient(180deg, transparent 60%, #ffdf00 60%, #ffdf00 90%, transparent 90%);
}
.p-sub__banner {
  width: 216px;
  margin-bottom: 8px;
  text-align: left;
}
.p-sub__icon {
  width: 38px;
  height: 38px;
}
.p-sub__difi {
  text-align: center;
  font-size: 19px;
  font-weight: 700;
  color: #00a0bb;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}
.p-sub__button--up {
  margin-bottom: 17px;
}
.p-sub__down {
  padding-top: 24px;
  border-top: 1px dotted #00a0bb;
}
.p-sub__logo {
  width: 116px;
  margin-bottom: 16px;
}
.p-sub__red {
  color: #e63a77;
}
.p-sub__small {
  font-size: 18px;
}
.p-sub__h3 {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
}
.p-sub__h3 span {
  font-weight: 400;
  font-size: 18px;
}
.p-sub__graph {
  width: 100%;
  margin-bottom: 8px;
}
.p-sub__person {
  position: absolute;
}
.p-sub__person--1 {
  width: 88px;
  bottom: -2px;
  right: 10px;
}
.p-sub__person--2 {
  width: 88px;
  bottom: -2px;
  right: 10px;
}

.p-main {
  position: relative;
  background-color: #fff;
}
.p-main:not(:last-child) {
  margin-bottom: 48px;
}
.p-main--first {
  padding-top: 68px;
}
.p-main__upper {
  height: 64px;
  background-color: #00a0bb;
  display: flex;
  flex-direction: row;
  align-items: center;
  padding: 8px 32px;
}
.p-main__ou {
  position: absolute;
  top: 30px;
  left: 20px;
}
.p-main__rank {
  font-size: 48px;
  color: #fff;
  margin-right: 40px;
  font-weight: 700;
}
.p-main__rank span {
  font-size: 20px;
}
.p-main__name {
  color: #fff;
  font-size: 28px;
}
.p-main__content {
  text-align: center;
  padding: 20px 16px 32px;
  border: 2px solid #00a0bb;
  background-color: #fff;
}
.p-main__content--1 {
  background-color: #ebf0f4;
}
.p-main__rank-number {
  font-size: 35px !important;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  color: #ff0000;
  margin-left: 5px;
}
.p-main__rank-number--yellow {
  color: #ffb700;
}
.p-main__google {
  font-size: 24px;
  margin-bottom: -2px;
}
.p-main__google span {
  font-size: 20px;
}
.p-main__hosi-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 4px;
       column-gap: 4px;
  justify-content: center;
  margin-bottom: 16px;
}
.p-main__hosi {
  width: 100px;
}
.p-main__hosi-number {
  font-size: 12px;
}
.p-main__hosi-number span {
  font-size: 18px;
  font-weight: 700;
}
.p-main__img {
  width: 100%;
  margin-bottom: 48px;
}
.p-main__img--none {
  margin-bottom: 0;
}
.p-main__img--first {
  margin-bottom: 16px;
}
.p-main__img--16 {
  margin-bottom: 16px;
}
.p-main__img--32 {
  margin-bottom: 32px;
}
.p-main__diagram {
  border-radius: 8px;
  border: 1px solid #00a0bb;
}
.p-main__diagram-title {
  font-weight: 600;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  background-color: #76b5bd;
  height: 39px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.p-main__diagram-wrap {
  padding: 8px 16px;
  background-color: #fff;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}
.p-main__diagram-img {
  margin-bottom: 10px;
  width: 100%;
}
.p-main__diagram-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  row-gap: 8px;
}
.p-main__diagram-text {
  text-align: left;
  color: #000;
}
.p-main__diagram-text span {
  font-weight: 700;
}
.p-main__diagram-text span.red {
  color: #ff0000;
  font-weight: 700;
}
.p-main__kind {
  text-align: center;
  width: 286px;
  margin-bottom: 48px;
}
.p-main__before-btn {
  text-align: center;
  width: 303px;
}
.p-main__before-btn--2 {
  width: 240px;
  margin-bottom: 3px;
}
.p-main__before-btn--3 {
  margin-top: 20px;
  width: 220px;
  margin-bottom: 5px;
}
.p-main__support-group {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 25px;
  position: relative;
}
.p-main__support-group--2 {
  margin-bottom: 51px;
}
.p-main__support-child {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 10;
}
.p-main__support-icon {
  position: absolute;
}
.p-main__support-icon .book {
  width: 66px;
}
.p-main__support-icon .tree {
  width: 50px;
}
.p-main__support-icon .airplane {
  width: 38px;
}
.p-main__support-icon .bag {
  width: 41px;
}
.p-main__support-icon--1 {
  bottom: 20px;
  right: 20px;
}
.p-main__support-icon--2 {
  top: 70px;
  right: 30px;
}
.p-main__support-icon--3 {
  right: 15px;
  bottom: 5px;
}
.p-main__support-icon--4 {
  right: 8px;
  top: 65px;
}
.p-main__support-icon--5 {
  bottom: 20px;
  right: 30px;
}
.p-main__support-icon--6 {
  bottom: 13px;
  right: 20px;
  width: 38px !important;
}
.p-main__support-icon--7 {
  bottom: 56px;
  right: 15px;
}
.p-main__support-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -25px;
  z-index: 0;
  height: 792px;
}
.p-main__support-up {
  height: 56px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: #76b5bd;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.p-main__support-up--first {
  background-color: #00a0bb;
}
.p-main__support-step {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 16px;
  width: 40px;
  height: 40px;
}
.p-main__support-h3 {
  color: #fff;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}
.p-main__support-content {
  background-color: #fff;
  padding: 16px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  border: 2px solid #76b5bd;
}
.p-main__support-content--first {
  border: 2px solid #00a0bb;
}
.p-main__support-check {
  width: 17px;
  transform: translateY(5px);
}
.p-main__support-ul {
  display: flex;
  flex-direction: column;
  row-gap: 12px;
}
.p-main__support-li {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  -moz-column-gap: 8px;
       column-gap: 8px;
  text-align: left;
}
.p-main__support-text {
  font-size: 16px;
  font-weight: 500;
}
.p-main__support-text span {
  font-weight: 700;
  background: linear-gradient(180deg, transparent 60%, #ffdf00 60%, #ffdf00 90%, transparent 90%);
}
.p-main__first-button {
  margin-bottom: 48px;
}
.p-main__big-letter {
  font-size: 40px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  color: #00a0bb;
}
.p-main__child {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
}
.p-main__child:not(:last-child) {
  margin-bottom: 48px;
}
.p-main__child--up {
  margin-top: 20px;
}
.p-main__child--border {
  border: 1px solid #00a0bb;
  border-radius: 15px;
}
.p-main__child-upper {
  border-top-left-radius: 15px;
  border-top-right-radius: 15px;
  background-color: #00a0bb;
  padding-top: 12px;
  padding-bottom: 12px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.p-main__child-upper span {
  font-size: 18px;
  display: block;
}
.p-main__line-height {
  line-height: 1.4;
}
.p-main__child-content {
  position: relative;
  padding-top: 24px;
  padding-right: 8px;
  padding-left: 8px;
  background-color: #fff;
}
.p-main__child-content--special {
  background-color: #ebf0f4;
}
.p-main__wrapping {
  background-color: #fff;
  margin-bottom: 15px;
  padding-top: 25px;
  padding-bottom: 10px;
}
.p-main__child-text-group {
  display: flex;
  flex-direction: row;
  align-content: center;
  justify-content: flex-start;
  -moz-column-gap: 3px;
       column-gap: 3px;
}
.p-main__point {
  width: 51px;
  height: 51px;
}
.p-main__child-text {
  font-size: 18px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
  color: #000;
  text-align: left;
  margin-bottom: 16px;
}
.p-main__child-text span {
  color: #00a0bb;
  background: linear-gradient(180deg, transparent 10%, #ffee76 10%, #ffee76 90%, transparent 90%);
}
.p-main__child-text-parent {
  margin-bottom: 32px;
}
.p-main__child-the-cost {
  font-size: 18px;
  margin-bottom: 2px;
}
.p-main__first-box {
  margin-bottom: 40px;
}
.p-main__first-up {
  background-color: #76b5bd;
  padding: 16px 8px;
  font-size: 16px;
  color: #fff;
  font-weight: 700;
}
.p-main__first-up span {
  font-size: 20px;
  color: #ffdf00;
}
.p-main__first-down {
  text-align: left;
  background-color: #fff;
  padding: 16px 10px;
  line-height: 1.65;
}
.p-main__first-down span {
  color: #00a0bb;
  background: linear-gradient(180deg, transparent 10%, #ffdf00 10%, #ffdf00 90%, transparent 90%);
}
.p-main__support-h2 {
  font-size: 18px;
  padding-bottom: 4px;
  border-bottom: 1px solid #76b5bd;
  margin-bottom: 30px;
}
.p-main__support-h2 span {
  font-size: 28px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.p-main__support-img {
  width: 100%;
}
.p-main__voice {
  margin-bottom: 48px;
}
.p-main__voice--none {
  margin-bottom: 0 !important;
}
.p-main__voice-title {
  width: 328px;
  margin-top: 24px;
  margin-bottom: 23px;
}
.p-main__swiper {
  position: relative;
  padding-bottom: 20px;
}
.p-main__support-h2-ir {
  font-size: 18px;
}
.p-main__support-h2-ir span {
  font-size: 28px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
.p-main__downss {
  width: 100%;
}
.p-main__normal-text {
  text-align: center;
  margin-bottom: 16px;
}
.p-main__normal-text--margin {
  margin-bottom: 0;
}
.p-main__pika {
  position: absolute;
  right: 80px;
  top: 50px;
}
.p-main__pika--2 {
  top: 40px;
  right: 35px;
}

.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.popup-overlay.show {
  opacity: 1;
  visibility: visible;
}

.popup-banner {
  position: relative;
  width: 303px;
  background: #fff;
  border-radius: 10px;
  overflow: visible;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  transform: scale(0.8);
  transition: transform 0.3s ease;
}
.popup-overlay.show .popup-banner {
  transform: scale(1);
}

.popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  z-index: 10000;
  transition: background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
.popup-close:hover {
  background: rgb(0, 0, 0);
  transform: scale(1.1);
}

.popup-content {
  width: 100%;
}

.popup-image {
  width: 100%;
  height: auto;
  display: block;
  cursor: pointer;
  transition: transform 0.2s ease;
}
.popup-image:hover {
  transform: scale(1.02);
}

.p-chase {
  position: fixed;
  background-color: #fff;
  padding: 10px 20px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 375px;
  z-index: 100;
  transition: transform 0.5s ease, opacity 0.5s ease;
  opacity: 0;
}
.p-chase.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}
.p-chase__button {
  height: 45px;
}
@media (max-width: 767px) {
  .p-chase {
    width: calc(100% - 40px);
    max-width: 375px;
  }
}

.l-sub-page {
  padding-top: 36px;
}
.l-sub-page__header {
  background-color: #e63a77;
  color: #fff;
  display: flex;
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 8px;
       column-gap: 8px;
  height: 56px;
  padding-left: 15px;
  width: 100%;
  margin-bottom: 34px;
}
.l-sub-page__icon {
  width: 16px;
}
.l-sub-page__title {
  color: #fff;
  font-size: 16px;
}
.l-sub-page__content {
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 58px;
}
.l-sub-page__content p {
  font-size: 12px;
  color: #777777;
}
.l-sub-page__content h3 {
  font-size: 12px;
  color: #777777;
}
.l-sub-page__content--special {
  padding-left: 15px;
  padding-right: 15px;
}
.l-sub-page__dl {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.l-sub-page__dl:not(:last-child) {
  border-bottom: 1px solid #fff;
}
.l-sub-page__dl--2 {
  height: 56px;
}
.l-sub-page__dd {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 60%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #fffdf3;
  color: #777777;
  height: 100%;
}
.l-sub-page__dt {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  background-color: #00a0bb;
  color: #fff;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.c-card {
  padding-top: 24px;
  padding-bottom: 16px;
  background-color: #fff;
  border: 2px solid #00a0bb;
  height: auto;
  border-radius: 7px;
}
.c-card__title {
  color: #fff;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 18px;
  text-align: left;
  font-size: 18px;
}
.c-card__title p {
  padding-top: 2px;
  padding-bottom: 2px;
  padding-left: 2px;
  background-color: #00a0bb;
}
.c-card__title p:first-child {
  margin-bottom: 4px;
}
.c-card__text {
  margin: 0 auto;
  margin-bottom: 20px;
  width: 90%;
  font-size: 15px;
  color: #000;
  text-align: left;
}
.c-card__text span {
  background: linear-gradient(180deg, transparent 60%, #ffdf00 60%, #ffdf00 90%, transparent 90%);
}
.c-card__down {
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding-left: 10px;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.c-card__person {
  width: 64px;
  height: 64px;
}
.c-card__detail {
  text-align: left;
  color: #b3bec0;
  font-size: 14px;
}/*# sourceMappingURL=style.css.map */