@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box; }

body {
  font-size: 16px;
  font-family: YakuHanJP,"Roboto","Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP";
  color: #333; }

html, body, h1, h2, h3, h4, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td {
  margin: 0;
  padding: 0;
  line-height: 1em;
  border: 0;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  word-wrap: break-word; }

h1, h2, h3, h4, h5, p, ul, ol, li, dl, dt, dd, form, figure {
  margin: 0px;
  padding: 0px;
  font-size: 1em;
  font-weight: normal; }

ul, ol {
  list-style-type: none; }

img {
  border: none; }

/* リンク */
a {
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  color: #333;
  cursor: pointer; }
  a:hover {
    text-decoration: none; }

img {
  width: 100%;
  height: auto; }

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

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

.button, .button--s {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  max-width: 368px;
  height: 64px;
  padding: 0 16px;
  background-color: #00AACB;
  border: 3px solid #fff;
  border-radius: 30px;
  color: #fff;
  font-size: 20px;
  font-weight: 600; }
  .button--s {
    height: 56px;
    width: 300px;
    max-width: 100%; }
  .button:hover, .button--s:hover {
    background-color: #fff;
    border-color: #00AACB;
    color: #00AACB; }
  @media screen and (max-width: 568px) {
    .button, .button--s {
      height: 56px;
      font-size: 18px; } }

h2 {
  position: relative;
  padding-bottom: 16px;
  text-align: center;
  line-height: 1.3;
  color: #00AACB;
  font-size: 24px;
  font-weight: 600; }
  h2::after {
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 64px;
    height: 6px;
    border-radius: 50px;
    background-color: #00AACB;
    content: ""; }

h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3; }

@media screen and (max-width: 568px) {
  h2 {
    padding-bottom: 10px;
    font-size: 20px; }
    h2::after {
      width: 56px;
      height: 4px; }

  h3 {
    font-size: 18px; } }
.base-text {
  line-height: 1.4; }
  @media screen and (max-width: 568px) {
    .base-text {
      font-size: 14px; } }

main {
  display: flex;
  flex-direction: column;
  align-items: center; }

.section {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 80px 16px;
  width: 100%; }
  .section_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    width: 1080px;
    max-width: 100%; }
  @media screen and (max-width: 568px) {
    .section {
      padding: 40px 16px;
      gap: 24px; } }

.hero {
  position: relative;
  height: 600px;
  background-image: url(../images/hero_bg.jpg);
  background-size: cover; }
  .hero__header {
    z-index: 1;
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    width: 100%;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.5); }
    .hero__header_logo {
      width: 400px; }
    .hero__header_cta {
      display: flex;
      align-items: center;
      gap: 16px; }
      .hero__header_cta a {
        width: 100%; }
      .hero__header_cta img {
        width: 320px;
        max-width: 100%; }
  .hero__h1 {
    position: absolute;
    left: 4%;
    top: 20%;
    width: 60%;
    max-width: 896px; }
  @media screen and (max-width: 568px) {
    .hero {
      display: flex;
      justify-content: center;
      padding: 40px 0 200px 0;
      height: auto;
      background-image: url(../images/hero_bg_sp.jpg); }
      .hero__header {
        display: none; }
      .hero__h1 {
        position: static;
        width: 90%; } }

.cta {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  padding: 32px;
  max-width: 100%;
  background-color: #FFEA78;
  border-radius: 10px; }
  .cta_title-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px; }
  .cta_title {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    line-height: 1.2;
    font-size: 40px;
    font-weight: 600; }
    .cta_title span {
      font-size: 32px;
      text-align: center;
      line-height: 1.2; }
  .cta_item {
    display: flex;
    flex-wrap: wrap;
    gap: 32px; }
    .cta_item li {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: center;
      gap: 16px; }
      .cta_item li p {
        font-size: 16px;
        font-weight: 600;
        white-space: nowrap; }
      .cta_item li span {
        font-size: 16px;
        font-weight: 400; }
    .cta_item_inner {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px; }
  .cta-fix {
    display: none; }
    @media screen and (max-width: 568px) {
      .cta-fix {
        z-index: 1;
        position: fixed;
        left: 0;
        bottom: 0;
        display: flex;
        gap: 8px;
        padding: 8px;
        width: 100%;
        background-color: #FFEA78; }
        .cta-fix li {
          flex: 1;
          border-radius: 8px; }
          .cta-fix li a {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 4px;
            padding: 8px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600; }
            .cta-fix li a img {
              width: 16px; }
          .cta-fix li:first-child {
            background-color: #fff; }
            .cta-fix li:first-child a {
              color: #00AACB; }
          .cta-fix li:last-child {
            background-color: #00AACB; }
            .cta-fix li:last-child a {
              color: #fff; } }

.hero .cta {
  position: absolute;
  left: 50%;
  bottom: -50%;
  transform: translateX(-50%); }

@media screen and (max-width: 568px) {
  .cta {
    gap: 24px;
    padding: 24px; }
    .cta_title-wrapper {
      gap: 8px; }
    .cta_title {
      gap: 8px;
      font-size: 20px; }
      .cta_title span {
        font-size: 16px; }
    .cta_item {
      flex-direction: column;
      gap: 24px; }
      .cta_item li {
        flex-direction: column;
        justify-content: flex-start;
        gap: 8px; }
        .cta_item li p {
          font-size: 12px; }
        .cta_item li span {
          font-size: 12px; }

  .hero .cta {
    bottom: -45%;
    width: 90%; } }
.about {
  padding-top: 400px; }
  .about__item {
    display: flex;
    flex-direction: column;
    gap: 24px; }
    .about__item li {
      position: relative;
      display: flex;
      border: 4px solid #00AACB; }
    .about__item_no {
      position: absolute;
      left: -18px;
      top: 8px;
      width: 96px; }
    .about__item_title-wrapper {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 8px;
      padding: 16px;
      width: 240px;
      background-color: #00AACB; }
      .about__item_title-wrapper h3 {
        color: #fff;
        text-align: center; }
    .about__item_icon {
      width: 56px; }
    .about__item .base-text {
      flex: 1;
      display: flex;
      padding: 24px;
      align-items: center; }
  @media screen and (max-width: 568px) {
    .about {
      padding-top: 200px; }
      .about__item {
        gap: 24px; }
        .about__item li {
          flex-direction: column;
          justify-content: flex-start;
          border: 4px solid #00AACB; }
        .about__item_title-wrapper {
          padding: 16px;
          width: 100%; }
          .about__item_title-wrapper h3 {
            color: #fff;
            text-align: center; }
        .about__item_icon {
          width: 56px; }
        .about__item .base-text {
          padding: 16px; } }

.point {
  background-color: rgba(0, 170, 203, 0.1); }
  .point__item {
    display: flex;
    gap: 24px; }
    .point__item li {
      flex: 1;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 16px; }
    .point__item_no {
      width: 40px; }
    .point__item_title-wrapper {
      display: flex;
      align-items: center;
      gap: 8px; }
    .point__item_icon {
      display: block;
      width: auto;
      height: 32px; }
      .point__item_icon img {
        width: auto;
        height: 100%; }
  @media screen and (max-width: 568px) {
    .point__item {
      flex-direction: column;
      justify-content: flex-start;
      gap: 40px; }
      .point__item_icon {
        width: 40px;
        height: auto; }
        .point__item_icon img {
          width: 100%;
          height: auto; } }

.preparation {
  background-image: url(../images/preparation_bg.jpg);
  background-size: cover; }
  .preparation h2 {
    color: #fff; }
    .preparation h2::after {
      background-color: #fff; }
  .preparation__item {
    display: flex;
    flex-direction: column;
    gap: 40px; }
    .preparation__item > li {
      position: relative;
      display: flex;
      flex-direction: column;
      gap: 16px;
      background-color: rgba(51, 51, 51, 0.2);
      padding: 40px; }
      .preparation__item > li * {
        color: #fff; }
      .preparation__item > li ul {
        display: flex;
        flex-direction: column;
        gap: 4px;
        padding-left: 1.5em;
        list-style-type: disc; }
        .preparation__item > li ul li {
          font-size: 14px; }
    .preparation__item_no {
      position: absolute;
      left: -56px;
      top: -48px;
      font-size: 100px;
      opacity: .1; }
  @media screen and (max-width: 568px) {
    .preparation {
      gap: 56px;
      background-image: url(../images/preparation_bg_sp.jpg); }
      .preparation__item {
        gap: 40px; }
        .preparation__item > li {
          padding: 24px; }
        .preparation__item_no {
          left: -16px;
          top: -40px;
          font-size: 60px; } }

.result {
  position: relative;
  padding-top: 160px; }
  .result__item {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%; }
    .result__item::after {
      position: absolute;
      left: 0;
      top: 0;
      width: 100%;
      height: 116px;
      background-image: url(../images/polygon.svg.);
      background-size: 100% auto;
      background-repeat: no-repeat;
      background-position: top center;
      content: ""; }
    .result__item li {
      display: flex;
      gap: 24px; }
      .result__item li:last-child .result__item_photo {
        order: 2; }
      .result__item li:last-child .result__item_content {
        order: 1; }
    .result__item_photo {
      width: 320px;
      max-width: 100%; }
    .result__item_content {
      display: flex;
      flex-direction: column;
      gap: 24px; }
  @media screen and (max-width: 568px) {
    .result {
      padding-top: 20%; }
      .result__item {
        gap: 40px; }
        .result__item li {
          flex-direction: column; }
          .result__item li .result__item_photo {
            order: 2; }
          .result__item li .result__item_content {
            order: 1; }
        .result__item_photo {
          width: 320px; }
        .result__item_content {
          display: flex;
          flex-direction: column;
          gap: 24px; } }

.advice {
  background-color: #00AACB; }
  .advice .section_inner {
    gap: 80px; }
  .advice h2 {
    color: #fff; }
    .advice h2::after {
      background-color: #fff; }
  .advice__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px; }
  .advice__item {
    display: flex;
    flex-direction: column;
    gap: 40px; }
    .advice__item * {
      color: #fff; }
    .advice__item > li {
      display: flex;
      flex-direction: column;
      gap: 16px; }
    .advice__item h3 {
      padding-bottom: 16px;
      border-bottom: 2px solid #fff; }
    .advice__item ul {
      display: flex;
      flex-direction: column;
      gap: 4px; }
      .advice__item ul li {
        display: flex;
        align-items: center;
        gap: 8px; }
        .advice__item ul li img {
          width: 32px; }
        .advice__item ul li span {
          font-weight: 600;
          background: linear-gradient(transparent 50%, rgba(255, 120, 214, 0.7) 50%); }
        .advice__item ul li p {
          flex: 1; }
    .advice__item p {
      line-height: 1.5; }
  .advice__text {
    font-size: 24px;
    font-weight: 600;
    line-height: 2;
    text-align: center;
    color: #fff; }
  @media screen and (max-width: 568px) {
    .advice .section_inner {
      gap: 40px; }
    .advice__item ul {
      gap: 16px; }
      .advice__item ul li img {
        width: 24px; }
    .advice__text {
      font-size: 18px;
      line-height: 1.5; } }

.footer {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 16px 80px 16px; }
  .footer .section_inner {
    flex-direction: row;
    flex-wrap: wrap; }
  .footer__left {
    display: flex;
    flex-direction: column;
    gap: 24px; }
  .footer__logo {
    width: 305px;
    max-width: 100%; }
  .footer__item {
    display: flex;
    flex-direction: column;
    gap: 16px; }
    .footer__item li {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 8px; }
      .footer__item li a {
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 14px; }
      .footer__item li span {
        font-size: 12px; }
      .footer__item li img {
        width: 16px; }
  .footer__right {
    position: relative;
    flex: 1; }
    .footer__right ul {
      display: flex;
      flex-wrap: wrap;
      gap: 16px; }
    .footer__right li {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 4px;
      white-space: nowrap;
      font-size: 14px;
      line-height: 1.5; }
  .footer__copy {
    position: absolute;
    right: 0;
    bottom: -40px;
    font-size: 10px;
    opacity: .7; }
  @media screen and (max-width: 568px) {
    .footer {
      flex-direction: column;
      gap: 24px; }
      .footer__item {
        display: flex;
        flex-direction: column;
        gap: 16px; }
      .footer__right {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 24px; }
        .footer__right ul {
          grid-template-columns: 1fr; }
      .footer__copy {
        position: static; } }
