@charset "UTF-8";
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  scroll-behavior: smooth; /* CSSだけでスムーススクロールを有効にする */
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
main,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

@media screen and (max-width: 1179px) and (min-width: 768px) {
  html {
    font-size: calc(16 / 1180 * 100vw);
  }
}
@media screen and (max-width: 389px) {
  html {
    font-size: calc(16 / 390 * 100vw);
  }
}

body {
  color: #382D2D;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

em {
  font-style: normal;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.l-inner {
  position: relative;
  width: 100%;
  max-width: 1180px;
  height: inherit;
  padding: 0 2.5rem;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: 100%;
    max-width: 390px;
    padding: 0 0.75rem;
  }
}

.l-inner__narrow {
  max-width: 60.6875rem;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-inner__narrow {
    width: 100%;
    max-width: 390px;
    padding: 0 0.75rem;
  }
}

.p-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 20px;
  background: white;
}

.header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-block: 5px;
  height: 100px;
}

.header__logo {
  width: 209px;
  height: auto;
}
@media (max-width: 768px) {
  .header__logo {
    width: 170px;
  }
}

.header__nav {
  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-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: end;
  -webkit-column-gap: 1.25rem;
     -moz-column-gap: 1.25rem;
          column-gap: 1.25rem;
}
@media screen and (max-width: 767px) {
  .header__nav {
    display: none;
  }
}

.header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 2rem;
     -moz-column-gap: 2rem;
          column-gap: 2rem;
}
.header__list li a p {
  font-size: max(1.125rem, 14.4px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.0555555556em;
  font-family: "Zen Maru Gothic", serif;
}
@media screen and (max-width: 767px) {
  .header__list li a p {
    font-size: 1.125rem;
  }
}
.header__list li a p:hover {
  color: #039CD4;
}
.header__list img {
  height: auto;
  width: 2.5rem;
}

.header__btn {
  padding: 0.5625rem 1.625rem;
  background: #fff;
  border: 1px solid #fff;
  color: #001A75;
  font-size: 1.25rem;
  border-radius: 100vmax;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .header__btn:hover {
    background: transparent;
    color: #fff;
  }
}

.header_open {
  width: 48px;
  height: 40px;
  position: relative;
}
@media (min-width: 768px) {
  .header_open {
    display: none;
  }
}

.drawer-icon_bar {
  position: absolute;
  top: 0;
  left: 0;
  width: 56px;
  height: 8px;
  border-radius: 6px;
  background: #0097D0;
}
.drawer-icon_bar:nth-of-type(2) {
  top: 20px;
}
.drawer-icon_bar:nth-of-type(3) {
  top: 40px;
}

.drower_content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #FFFFFF;
  z-index: 50;
  padding: 122px 60px 0px 42px;
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  -webkit-transition: -webkit-transform 0.3s linear;
  transition: -webkit-transform 0.3s linear;
  transition: transform 0.3s linear;
  transition: transform 0.3s linear, -webkit-transform 0.3s linear;
}
.drower_content.is-checked {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

.drower_content_link {
  display: block;
  padding-top: 18px;
  padding-bottom: 18px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.48px;
  position: relative;
  font-size: 18px;
}
.drower_content_link::before {
  position: absolute;
  content: "";
  background: url(../img/lp/Vector.png) no-repeat center center/contain;
  width: 17px;
  height: 17px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: -24px;
}

.drawer-icon_lp {
  width: 64px;
  height: 45px;
  position: relative;
  z-index: 51;
}
.drawer-icon_lp.is-checked .drawer-icon_bar:nth-of-type(2) {
  display: none;
}
.drawer-icon_lp.is-checked .drawer-icon_bar:nth-of-type(1) {
  -webkit-transform: rotate(40deg);
          transform: rotate(40deg);
  top: 10px;
}
.drawer-icon_lp.is-checked .drawer-icon_bar:nth-of-type(3) {
  -webkit-transform: rotate(-40deg);
          transform: rotate(-40deg);
  top: 10px;
}

.p-fv_lp {
  margin-top: 70px;
  height: 740px;
  width: auto;
  background: url(../img/lp/fv-bg.png) no-repeat center center/cover;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv_lp {
    height: 744px;
    margin-top: 0;
  }
}

.p-fv__content {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 66%;
  height: 100%;
  background: url(../img/lp/fv-jinbutu.png) no-repeat center center/contain;
  font-family: "Zen Maru Gothic", serif;
  color: #19579A;
}
@media screen and (max-width: 767px) {
  .p-fv__content {
    background: url(../img/lp/fv-jinbutu_sp.png) no-repeat center center/contain;
    top: 43%;
    width: 88%;
  }
}
@media screen and (min-width: 600px) and (max-width: 699px) {
  .p-fv__content {
    max-width: 63%;
  }
}
@media screen and (min-width: 451px) and (max-width: 599px) {
  .p-fv__content {
    max-width: 70%;
  }
}
@media screen and (min-width: 400px) and (max-width: 450px) {
  .p-fv__content {
    max-width: 88%;
  }
}
@media screen and (min-width: 700px) and (max-width: 767px) {
  .p-fv__content {
    width: 56%;
  }
}

.p-fv__titles {
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
}

.p-fv__subtitle {
  font-size: max(1.5rem, 19.2px);
  font-weight: 900;
  line-height: 1.5625;
  letter-spacing: 0.0416666667em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #0097D1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-fv__subtitle {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__subtitle {
    font-size: 0.78125rem;
  }
}
.p-fv__subtitle em {
  font-size: max(1.875rem, 24px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.0333333333em;
}
@media screen and (max-width: 767px) {
  .p-fv__subtitle em {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-fv__subtitle em {
    font-size: 0.98125rem;
  }
}
.p-fv__subtitle::after {
  border-right: solid 3px;
  content: "";
  height: 4.6875rem;
  position: absolute;
  right: -10px;
  top: 0;
  -webkit-transform: rotate(30deg);
          transform: rotate(30deg);
}
@media screen and (max-width: 767px) {
  .p-fv__subtitle::after {
    height: 2.5rem;
  }
}
.p-fv__subtitle::before {
  border-right: solid 3px;
  content: "";
  height: 4.6875rem;
  position: absolute;
  left: -10px;
  top: 0;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}
@media screen and (max-width: 767px) {
  .p-fv__subtitle::before {
    height: 2.5rem;
  }
}

.p-fv__title {
  position: relative;
  font-size: max(3.575rem, 45.76px);
  font-weight: 900;
  line-height: 1.6328671329;
  letter-spacing: 0.040034965em;
  color: #0097D1;
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: 3.575rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 1200px) {
  .p-fv__title {
    font-size: 3.178125rem;
  }
}
.p-fv__title strong {
  border-bottom: 0.625rem dotted #0097D1;
}
@media screen and (max-width: 767px) {
  .p-fv__title strong {
    border-bottom: 0.3125rem dotted #0097D1;
  }
}
.p-fv__title em {
  color: #38A36C;
  font-style: normal;
}
.p-fv__title::after {
  content: "";
  position: absolute;
  top: -172px;
  -webkit-transform: translateX(-36%);
          transform: translateX(-36%);
  width: 18.4375rem;
  height: 14.4375rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: url(../img/lp/mv-omakase_pc.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-fv__title::after {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .p-fv__title::after {
    -webkit-transform: translateX(-28%);
            transform: translateX(-28%);
  }
}
@media screen and (max-width: 767px) {
  .p-fv__title {
    font-size: 1.875rem;
  }
}

.p-fv_sp_button {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fv_sp_button {
    display: block;
    position: absolute;
    bottom: 109px;
    width: 340px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  .p-fv_sp_button {
    bottom: 80px;
  }
}

.p-fv_sp_button_img img {
  display: block;
}

.p-fv__btn {
  position: absolute;
  right: 0;
  bottom: 60px;
  width: 15.1rem;
  height: auto;
}
@media screen and (max-width: 767px) {
  .p-fv__btn {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .p-fv__btn {
    width: 18.1rem;
  }
}

.p-fv__btn_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-fv__btn_sp {
    display: block;
    width: 16.45rem;
    bottom: 32px;
  }
}
@media screen and (min-width: 600px) and (max-width: 767px) {
  .p-fv__btn_sp {
    bottom: 10px;
  }
}

@media (min-width: 768px) {
  .p-cta_inner {
    padding-left: 11.8055555556%;
    padding-right: 11.8055555556%;
  }
}

.p-cta__body {
  margin-inline: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  border-block: 5px solid #0097D1;
}
@media screen and (max-width: 767px) {
  .p-cta__body {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.p-cta__text_lp {
  background-color: #0097D1;
  color: white;
  width: 50%;
  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;
  position: relative;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
  padding-right: 33px;
}
@media screen and (max-width: 767px) {
  .p-cta__text_lp {
    width: 100%;
    padding-right: 0px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-top: 18px;
  }
}
@media screen and (min-width: 800px) and (max-width: 1000px) {
  .p-cta__text_lp {
    padding-right: 10px;
  }
}
@media screen and (min-width: 768px) and (max-width: 800px) {
  .p-cta__text_lp {
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__text_lp::after {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 50vw solid transparent;
    border-left: 50vw solid transparent;
    border-top: 35px solid #0097D1;
    border-bottom: 0;
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 99%);
            transform: translate(-50%, 99%);
  }
}

.p-cta__heading {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding-left: 60px;
  font-family: "Zen Maru Gothic", serif;
  font-size: max(2.5rem, 32px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-cta__heading {
    font-size: 2.5rem;
  }
}
.p-cta__heading span {
  border-bottom: 0.45rem dotted white;
}
@media screen and (max-width: 767px) {
  .p-cta__heading {
    font-size: max(1.5rem, 19.2px);
    font-weight: 900;
    line-height: 1.6666666667;
    letter-spacing: 0.0416666667em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-cta__heading {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__heading span {
    border-bottom: 0.25rem dotted white;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-cta__heading {
    font-size: 2.4rem;
  }
}
.p-cta__heading::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 55px;
  height: 55px;
  background: url(../img/lp/check-blue.png) no-repeat center center/contain;
}
@media screen and (max-width: 767px) {
  .p-cta__heading::before {
    width: 44px;
    height: 44px;
    left: 7px;
  }
}

.p-cta__description {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(1.125rem, 14.4px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.0555555556em;
  padding-top: 24px;
}
@media screen and (max-width: 767px) {
  .p-cta__description {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-cta__description {
    font-size: max(0.875rem, 11.2px);
    font-weight: 500;
    line-height: 1;
    letter-spacing: 0.0714285714em;
    padding-block: 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-cta__description {
    font-size: 0.875rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 800px) {
  .p-cta__description {
    padding-left: 30px;
  }
}

.c-btn_lp {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-btn_lp img {
  width: 30.6875rem;
  height: auto;
  margin-left: 32px;
}
@media screen and (max-width: 767px) {
  .c-btn_lp img {
    width: 20.575rem;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .c-btn_lp img {
    max-width: 310px;
  }
}
@media screen and (min-width: 800px) and (max-width: 900px) {
  .c-btn_lp img {
    margin-left: 15px;
  }
}
@media screen and (max-width: 767px) {
  .c-btn_lp {
    width: 100%;
    max-width: 310px;
    margin: 0 auto;
    margin-top: 40px;
    margin-bottom: 22px;
  }
}

.p-cta__triangle {
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 103px solid transparent;
  border-bottom: 103px solid transparent;
  border-left: 86px solid #0097d1;
  border-right: 0;
}
@media screen and (max-width: 767px) {
  .p-cta__triangle {
    display: none;
  }
}

.p-matter {
  background-color: #E8F9FF;
  padding-top: 94px;
  padding-bottom: 32px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-matter {
    padding-top: 30px;
    padding-bottom: 0;
  }
}
.p-matter::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50vw solid transparent;
  border-left: 50vw solid transparent;
  border-top: 96px solid #E8F9FF;
  border-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translate(-50%, 99%);
          transform: translate(-50%, 99%);
  background-color: #fffeee;
}

.p-matter__body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-matter__body {
    gap: 7px;
  }
}

.p-matter-title {
  font-size: max(3.5rem, 44.8px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.0178571429em;
  font-family: "Zen Maru Gothic", serif;
  color: #0097D1;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-matter-title {
    font-size: 3.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-matter-title {
    font-size: max(2rem, 25.6px);
    font-weight: 900;
    line-height: 1.75;
    letter-spacing: 0.03125em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-matter-title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 800px) {
  .p-matter-title {
    line-height: 1.4;
  }
}
.p-matter-title em {
  color: #38A36C;
  background-image: radial-gradient(circle at center, #38A36C, transparent 20%); /* 点の色とサイズ調整 */
  background-position: top right; /* 点の位置 */
  background-repeat: repeat-x; /* 横方向に繰り返し */
  background-size: 1em 0.8em; /* 点の間隔とサイズ調整 */
  padding-top: 0.4em; /* 縦方向の位置調整 */
}

.c-circles {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 3rem;
  margin-top: 18px;
}
.c-circle {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.333% - 1.5rem);
          flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 330px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .c-circle {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 100%;
            flex: 1 1 100%;
    max-width: 236px;
  }
}

.p-matter__boxes .p-matter__box {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, left bottom, from(rgb(4, 137, 207)), to(rgb(252, 243, 67)));
  background: linear-gradient(to bottom, rgb(4, 137, 207), rgb(252, 243, 67));
}
@media screen and (max-width: 767px) {
  .p-matter__boxes .p-matter__box {
    gap: 8px;
  }
}
.p-matter__boxes .p-matter__box::before {
  content: "";
  position: absolute;
  top: 6px;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: white;
  border-radius: 9999px;
  z-index: 0;
  pointer-events: none;
}
.p-matter__boxes .p-matter__box .p-image {
  width: 130px;
  height: 119px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-matter__boxes .p-matter__box .p-image {
    width: 80px;
    height: auto;
  }
}
.p-matter__boxes .p-matter__box .p-text {
  text-align: center;
  position: relative;
  z-index: 2;
  font-size: max(1.5rem, 19.2px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.0416666667em;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-matter__boxes .p-matter__box .p-text {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-matter__boxes .p-matter__box .p-text {
    font-size: 1rem;
  }
}
.p-matter__boxes .p-matter__box .p-text em {
  font-size: max(1.5rem, 19.2px);
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: 0.0416666667em;
  color: #0097D1;
}
@media screen and (max-width: 767px) {
  .p-matter__boxes .p-matter__box .p-text em {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-matter__boxes .p-matter__box .p-text em {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  .p-matter__boxes {
    gap: 0.5em;
  }
}

.p-merit {
  background-color: #fffeee;
}

.p-merit-title {
  padding-top: 134px;
  text-align: left;
  color: #0097D1;
  font-family: "Zen Maru Gothic", serif;
  margin-left: 8.6875rem;
  font-size: max(2.8291875rem, 36.2136px);
  font-weight: 900;
  line-height: 1.4285682727;
  letter-spacing: 0.0220911481em;
}
@media screen and (max-width: 767px) {
  .p-merit-title {
    font-size: 2.8291875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-merit-title {
    font-size: max(1.9375rem, 24.8px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.0322580645em;
    margin-left: 0;
    text-align: center;
    display: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-merit-title {
    font-size: 1.9375rem;
  }
}
.p-merit-title em {
  color: #38A36C;
}
.p-merit-title .second {
  border-bottom: 0.4rem dotted #0097D1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(4.809625rem, 61.5632px);
  font-weight: 900;
  line-height: 1.4285677158;
  letter-spacing: 0.0129947761em;
}
@media screen and (max-width: 767px) {
  .p-merit-title .second {
    font-size: 4.809625rem;
  }
}
@media screen and (max-width: 767px) {
  .p-merit-title .second {
    font-size: max(2.5rem, 32px);
    font-weight: 900;
    line-height: 2.1;
    letter-spacing: 0.025em;
    margin-left: auto;
    margin-right: auto;
    line-height: 0.6;
    margin-top: 28px;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-merit-title .second {
    font-size: 2.5rem;
  }
}
.p-merit-title .second strong {
  color: #38A36C;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-merit-title .second strong {
    font-size: max(3.5rem, 44.8px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.0178571429em;
    line-height: 0.5;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-merit-title .second strong {
    font-size: 3.5rem;
  }
}
.p-merit-title .second strong::after {
  content: "";
  position: absolute;
  top: 28%;
  left: 60%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background: url(../img/lp/0.png) no-repeat center center/contain;
  height: 230px;
  width: 200px;
  z-index: -1;
}

.small {
  font-size: 4.1225rem;
}
@media screen and (max-width: 767px) {
  .small {
    font-size: 2rem;
  }
}

.strong {
  font-size: 6.870625rem;
  line-height: 5rem;
}

.p-merit-title-dot {
  border-bottom: 0.4rem dotted #0097D1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-merit-title-dot2 {
  border-bottom: 0.4rem dotted #0097D1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding-bottom: 22px;
}

.p-merit-title_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-merit-title_sp {
    display: block;
    padding-top: 111px;
    max-width: 322px;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-merit-subtitle {
  font-size: max(3rem, 38.4px);
  font-weight: 900;
  line-height: 1.1666666667;
  letter-spacing: 0.0208333333em;
  color: #ffffff;
  background-color: #0489cf;
  font-family: "Zen Maru Gothic", serif;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 91.4px;
  padding: 16px 40px 24px;
  border-radius: 9999px;
  text-align: center;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 767px) {
  .p-merit-subtitle {
    font-size: 3rem;
  }
}
@media screen and (max-width: 767px) {
  .p-merit-subtitle {
    font-size: max(1.5rem, 19.2px);
    font-weight: 900;
    line-height: 0.9958333333;
    letter-spacing: 0.0416666667em;
    margin-top: 37.4px;
    padding: 16px 55px 16px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-merit-subtitle {
    font-size: 1.4rem;
    white-space: nowrap;
  }
}
.p-merit-subtitle em {
  font-size: max(6rem, 76.8px);
  font-weight: 900;
  line-height: 0.5833333333;
  letter-spacing: 0.0104166667em;
  color: #FFFA7C;
}
@media screen and (max-width: 767px) {
  .p-merit-subtitle em {
    font-size: 6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-merit-subtitle em {
    font-size: max(3rem, 38.4px);
    font-weight: 900;
    line-height: 0.4979166667;
    letter-spacing: 0.0208333333em;
    line-height: inherit;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-merit-subtitle em {
    font-size: 3rem;
  }
}

.p-merit__boxes {
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-merit__boxes {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-top: 27px;
    gap: 1.3rem;
  }
}

.p-merit__box {
  border: 8px solid #0097D1;
  font-family: "Zen Maru Gothic", serif;
  font-size: max(2rem, 25.6px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.03125em;
  color: #ffffff;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 calc(33.333% - 1.5rem);
          flex: 1 1 calc(33.333% - 1.5rem);
  max-width: 330px;
  aspect-ratio: 1/1;
  border-radius: 9999px;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: -webkit-gradient(linear, left top, left bottom, from(#0489cf), color-stop(30%, #0489cf), color-stop(30%, white), to(white));
  background: linear-gradient(to bottom, #0489cf 0%, #0489cf 30%, white 30%, white 100%);
  display: flex;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-merit__box {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-merit__box {
    margin-left: auto;
    margin-right: auto;
    max-width: 232px;
    border: 4px solid #0097D1;
  }
}
@media screen and (max-width: 767px) {
  .p-merit__box .c-merit__title {
    font-size: 1.5rem;
    margin-top: 8px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .p-merit__box .c-merit__title {
    margin-top: 10px;
  }
}
.p-merit__box .c-merit__title em {
  color: #FFFA7C;
  font-size: max(5rem, 64px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.0125em;
}
@media screen and (max-width: 767px) {
  .p-merit__box .c-merit__title em {
    font-size: 5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-merit__box .c-merit__title em {
    font-size: 3.5rem;
  }
}
.p-merit__box .c-merit__text {
  color: #000000;
  padding-top: 35px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
}
@media screen and (max-width: 767px) {
  .p-merit__box .c-merit__text {
    padding-top: 30px;
    font-size: 1.5rem;
  }
}
@media screen and (min-width: 1000px) and (max-width: 1100px) {
  .p-merit__box .c-merit__text {
    padding-top: 47px;
  }
}
@media screen and (min-width: 900px) and (max-width: 1000px) {
  .p-merit__box .c-merit__text {
    padding-top: 55px;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-merit__box .c-merit__text {
    padding-top: 61px;
  }
}

.p-how {
  background-color: #fffeee;
  padding-top: 73px;
  padding-bottom: 128px;
}
@media screen and (max-width: 767px) {
  .p-how {
    padding-top: 34px;
    padding-bottom: 34px;
  }
}

.p-how__body {
  border: 5px solid transparent;
  -o-border-image: linear-gradient(to bottom, rgb(4, 137, 207), rgb(252, 243, 67));
     border-image: -webkit-gradient(linear, left top, left bottom, from(rgb(4, 137, 207)), to(rgb(252, 243, 67)));
     border-image: linear-gradient(to bottom, rgb(4, 137, 207), rgb(252, 243, 67));
  border-image-slice: 1;
  background-color: white;
  padding: 64px;
}
@media screen and (max-width: 767px) {
  .p-how__body {
    padding: 32px;
  }
}

.p-how__content {
  margin-block: 64px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-how__content {
    margin-block: 32px;
  }
}
.p-how__content .p-title {
  left: 2.5em;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-how__content .p-title {
    margin-top: 20px;
    left: 0 !important;
    white-space: nowrap;
    margin-left: 12px;
  }
}
.p-how__content .p-title::before {
  content: "";
  position: absolute;
  left: -3.5em;
  top: 0;
  width: 3.826875rem;
  height: 3.826875rem;
  background: url(../img/lp/light.png) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-how__content .p-title::before {
    left: -2em;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 2rem;
    height: 2rem;
  }
}
.p-how__content .p-title strong {
  position: relative;
  color: #0097D1;
  font-size: max(2.5rem, 32px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-how__content .p-title strong {
    z-index: 1;
  }
}
.p-how__content .p-title strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11em;
  height: 16px;
  background: #fff100;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-how__content .p-title strong::after {
    width: 11.5em;
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  .p-how__content .p-title strong {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-how__content .p-title strong {
    font-size: max(1.125rem, 14.4px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.0555555556em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-how__content .p-title strong {
    font-size: 1.125rem;
  }
}
.p-how__content .p-title em {
  font-size: max(2rem, 25.6px);
  font-weight: 900;
  line-height: 2.25;
  letter-spacing: 0.03125em;
}
@media screen and (max-width: 767px) {
  .p-how__content .p-title em {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-how__content .p-title em {
    font-size: max(1rem, 12.8px);
    font-weight: 900;
    line-height: 1.6875;
    letter-spacing: 0.0625em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-how__content .p-title em {
    font-size: 1rem;
  }
}
@media (min-width: 768px) {
  .p-how__content .p-title.pc-no {
    display: none;
  }
}

.l-inner__narrow2 {
  padding: 0;
}

.p-how__maintitle {
  font-size: max(3.575rem, 45.76px);
  font-weight: 900;
  line-height: 1.6328671329;
  letter-spacing: 0.040034965em;
  color: #0097D1;
  font-family: "Zen Maru Gothic", serif;
}
@media screen and (max-width: 767px) {
  .p-how__maintitle {
    font-size: 3.575rem;
  }
}

.p-how-subtitle {
  font-size: max(1.5rem, 19.2px);
  font-weight: 900;
  line-height: 1.5625;
  letter-spacing: 0.0416666667em;
  font-size: 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #0097D1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-how-subtitle {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-how-subtitle {
    font-size: 1.125rem;
    display: none;
  }
}

.p-how-subtitle_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-how-subtitle_sp {
    display: block;
    margin-top: -75px;
    width: 243px;
    margin-left: auto;
    margin-right: auto;
  }
}

.small2 {
  font-size: 1.5rem;
}

.p-how-title {
  text-align: center;
  font-size: 4.5rem;
  margin-top: -20px;
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-how-title {
    margin-top: -10px;
  }
}
.p-how-title strong {
  border-bottom: 0.4rem dotted #0097D1;
}
@media screen and (max-width: 767px) {
  .p-how-title strong {
    border-bottom: 0.3125rem dotted #0097D1;
  }
}
@media screen and (max-width: 767px) {
  .p-how-title {
    font-size: 2.5rem;
    margin-top: 2px;
  }
}

.small5 {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .small5 {
    font-size: 2rem;
  }
}

.p-how__answer-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 2.125rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-how__answer-content {
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: end;
    gap: 1.1rem;
    margin-top: -31px;
  }
}

.p-how__image {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-top: 62px;
}
.p-how__image img {
  max-height: 225px;
  height: auto;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-title__wrapper {
  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;
  margin-top: 47px;
}
.p-title__wrapper .p-title {
  left: 6em;
  position: relative;
  z-index: 1;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .p-title__wrapper .p-title {
    left: 4rem;
  }
}
.p-title__wrapper .p-title::before {
  content: "";
  position: absolute;
  left: -4.8em;
  top: 0;
  width: 4.526875rem;
  height: 4.526875rem;
  background: url(../img/lp/light.png) no-repeat center center/cover;
}
.p-title__wrapper .p-title strong {
  position: relative;
  color: #0097D1;
  font-size: max(2.5rem, 32px);
  font-weight: 900;
  line-height: 0.9;
  letter-spacing: 0.025em;
}
.p-title__wrapper .p-title strong::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 11.2em;
  height: 16px;
  background: #fff100;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-title strong {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-title strong {
    font-size: max(1.125rem, 14.4px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.0555555556em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-title__wrapper .p-title strong {
    font-size: 1.125rem;
  }
}
.p-title__wrapper .p-title em {
  font-size: max(2rem, 25.6px);
  font-weight: 900;
  line-height: 2.25;
  letter-spacing: 0.03125em;
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-title em {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-title em {
    font-size: max(1rem, 12.8px);
    font-weight: 900;
    line-height: 1.6875;
    letter-spacing: 0.0625em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-title__wrapper .p-title em {
    font-size: 1rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-title__wrapper .p-title em {
    line-height: 1.9;
  }
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-title.sp-no {
    display: none;
  }
}
.p-title__wrapper .p-detail {
  padding: 1.5rem;
  background-color: #e8f8ff;
  border-radius: 20px;
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.0416666667em;
  letter-spacing: -0.1rem;
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-detail {
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-detail {
    font-size: max(1rem, 12.8px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.0625em;
    padding: 1rem;
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-title__wrapper .p-detail {
    font-size: 1rem;
  }
}
.p-title__wrapper .p-detail em {
  color: #0097D1;
  font-size: max(2rem, 25.6px);
  font-weight: 900;
  line-height: 1.125;
  letter-spacing: 0.03125em;
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-detail em {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-title__wrapper .p-detail em {
    font-size: max(1rem, 12.8px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.0625em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-title__wrapper .p-detail em {
    font-size: 1rem;
  }
}

.p-how__checkboxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 25px;
  margin-top: 48px;
}
@media screen and (max-width: 767px) {
  .p-how__checkboxes {
    margin-top: 32px;
    gap: 7px;
  }
}

.p-how__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border: 5px solid #0097D1;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .p-how__checkbox {
    border: 3px solid #0097D1;
    border-radius: 10px;
    height: auto;
  }
}

.p-how__check {
  display: inline-block;
  vertical-align: middle;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  max-width: 100px;
  padding: 8px;
  background: url(../img/lp/check-white.png) no-repeat center center;
  background-size: 65%;
  background-color: #0097D1;
}
@media screen and (max-width: 767px) {
  .p-how__check {
    max-width: 66px;
    background-size: 48%;
  }
}

.p-how__text {
  padding: 32px 29px;
  font-size: max(2rem, 25.6px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.03125em;
}
@media screen and (max-width: 767px) {
  .p-how__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .p-how__text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.0555555556em;
    padding: 24px 24px 24px 17px;
    letter-spacing: 0.001555556em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-how__text {
    font-size: 1.125rem;
  }
}
.p-how__text strong {
  color: #0097D1;
}

.p-strength {
  background: linear-gradient(105deg, #DBF5FF 2.86%, #FFFBAF 95.23%);
  font-family: "Zen Maru Gothic", serif;
  padding-top: 128px;
  padding-bottom: 128px;
}
@media screen and (max-width: 767px) {
  .p-strength {
    padding-top: 32px;
    padding-bottom: 32px;
  }
}
.p-strength h3.p-title {
  text-align: center;
  color: #333;
  margin-top: 59px;
  font-size: max(2.5rem, 32px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.025em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .p-strength h3.p-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strength h3.p-title {
    margin-top: 32px;
    font-size: max(1.5rem, 19.2px);
    font-weight: 900;
    line-height: 2;
    letter-spacing: 0.0416666667em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-strength h3.p-title {
    font-size: 1.5rem;
  }
}
.p-strength h3.p-title em {
  font-size: max(2.5rem, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.025em;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .p-strength h3.p-title em {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strength h3.p-title em {
    font-size: 2rem;
  }
}
.p-strength h3.p-title em.blue {
  color: #0097D1;
}

.small3 {
  font-size: 4rem;
}
@media screen and (max-width: 767px) {
  .small3 {
    font-size: 2rem;
  }
}

.p-strength__body .p-title {
  color: #0097D1;
  border-bottom: 0.4rem dotted #0097D1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: max(4rem, 51.2px);
  font-weight: 900;
  line-height: 1.6875;
  letter-spacing: 0.015625em;
}
@media screen and (max-width: 767px) {
  .p-strength__body .p-title {
    font-size: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strength__body .p-title {
    font-size: max(2rem, 25.6px);
    font-weight: 900;
    line-height: 2.25;
    letter-spacing: 0.03125em;
    text-align: center;
    line-height: 0.8;
    margin-left: auto;
    margin-right: auto;
    border-bottom: none !important;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-strength__body .p-title {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 900px) {
  .p-strength__body .p-title {
    white-space: nowrap;
  }
}
@media screen and (max-width: 767px) {
  .p-strength__body .p-title strong {
    border-bottom: 0.3125rem dotted #0097D1;
    padding-bottom: 8px;
  }
}
.p-strength__body .p-title em {
  font-size: max(4.5rem, 57.6px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.0138888889em;
}
@media screen and (max-width: 767px) {
  .p-strength__body .p-title em {
    font-size: 4.5rem;
  }
}
.p-strength__body .p-title em.green {
  color: #38A36C;
}
@media screen and (max-width: 767px) {
  .p-strength__body .p-title em {
    font-size: max(2.5rem, 32px);
    font-weight: 900;
    line-height: 1.8;
    letter-spacing: 0.025em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-strength__body .p-title em {
    font-size: 2.5rem;
  }
}
@media screen and (min-width: 768px) and (max-width: 800px) {
  .p-strength__body .p-title em {
    font-size: 4.5rem;
  }
}

.p-strength__about {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 64px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-strength__about {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    margin-top: 42px;
    gap: 17px;
  }
}

@media screen and (max-width: 767px) {
  .p-strength__images {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-strength__images .p-image {
  width: 13.125rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-strength__images .p-image {
    width: 7.5rem;
  }
}
.p-strength__images .p-text {
  text-align: center;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 2rem;
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-strength__images .p-text {
    text-align: left;
    font-size: 0.875rem;
    line-height: 1.5rem;
    margin-top: 0;
  }
}

.p-strength_hukidasi_pc {
  display: none;
}
@media (min-width: 768px) {
  .p-strength_hukidasi_pc {
    display: block;
  }
}

.p-strength_hukidasi_sp {
  background: #FFFFFF;
  border: 4px solid #7ABEE6;
  padding: 24px;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .p-strength_hukidasi_sp {
    display: none;
  }
}

.p-hukidasi__title {
  text-align: center;
  position: relative;
  color: #0097D1;
  font-size: max(2.5rem, 32px);
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: 0.025em;
  padding-left: 60px;
}
@media screen and (max-width: 767px) {
  .p-hukidasi__title {
    font-size: 2.5rem;
  }
}
.p-hukidasi__title em {
  position: relative;
  z-index: 1;
}
.p-hukidasi__title em::after {
  background: #fff100;
  bottom: 0;
  content: "";
  height: 16px;
  position: absolute;
  right: 20px;
  width: 8.7em;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-hukidasi__title em::after {
    height: 10px;
    width: 8.5em;
  }
}
@media screen and (max-width: 767px) {
  .p-hukidasi__title {
    font-size: max(1.125rem, 14.4px);
    font-weight: 900;
    line-height: 1.5;
    letter-spacing: 0.0555555556em;
    padding-left: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-hukidasi__title {
    font-size: 1.025rem;
  }
}

.p-hukidasi__text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  color: #333;
  margin-top: 37px;
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.0416666667em;
  padding-left: 36px;
}
@media screen and (max-width: 767px) {
  .p-hukidasi__text {
    font-size: 1.5rem;
  }
}
.p-hukidasi__text em {
  color: #0097D1;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-hukidasi__text {
    margin-top: 17px;
    padding-left: 0;
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-size: 1rem;
  }
}

.p-strength__boxes {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 30px;
  margin-top: 56px;
}
@media screen and (max-width: 767px) {
  .p-strength__boxes {
    gap: 16px;
    margin-top: 32px;
  }
}

.p-strength__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 40px;
  gap: 43px;
  background-color: #FFFEEE;
  border: 6px solid transparent;
  border-radius: 30px;
  background-origin: border-box;
  background-clip: padding-box, border-box;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#FFFEEE), to(#FFFEEE)), -webkit-gradient(linear, left top, left bottom, from(rgb(4, 137, 207)), to(rgb(252, 243, 67)));
  background-image: linear-gradient(#FFFEEE, #FFFEEE), linear-gradient(to bottom, rgb(4, 137, 207), rgb(252, 243, 67));
  /* 外側のボーダー風 */
}
@media screen and (max-width: 767px) {
  .p-strength__box {
    -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;
    gap: 16px;
    padding: 24px;
  }
}
.p-strength__box .p-circle img {
  width: auto;
  height: auto;
  max-width: 10rem;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-strength__box .p-circle img {
    max-width: 5rem;
  }
}
.p-strength__box .p-title__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .p-strength__box .p-title__wrap {
    -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;
    gap: 16px;
  }
}
.p-strength__box .p-title__wrap .p-title {
  color: #0097D1;
  font-size: max(2.5rem, 32px);
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0.025em;
}
@media screen and (max-width: 767px) {
  .p-strength__box .p-title__wrap .p-title {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-strength__box .p-title__wrap .p-title {
    text-align: center;
    font-size: max(1.5rem, 19.2px);
    font-weight: 900;
    line-height: 1.6666666667;
    letter-spacing: 0.0416666667em;
    line-height: 2.3rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-strength__box .p-title__wrap .p-title {
    font-size: 1.5rem;
  }
}
.p-strength__box .p-title__wrap .p-text {
  font-size: max(1.5rem, 19.2px);
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.0416666667em;
}
@media screen and (max-width: 767px) {
  .p-strength__box .p-title__wrap .p-text {
    font-size: 1.5rem;
  }
}
.p-strength__box .p-title__wrap .p-text em {
  color: #0097D1;
  font-weight: 900;
}
@media screen and (max-width: 767px) {
  .p-strength__box .p-title__wrap .p-text {
    font-size: max(1.125rem, 14.4px);
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.0555555556em;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-strength__box .p-title__wrap .p-text {
    font-size: 1.125rem;
  }
}

.p-title_01 {
  margin-left: auto;
  margin-right: auto;
  border-bottom: none !important;
}

.p-title_02 {
  border-bottom: none !important;
}

.small4 {
  font-size: 2.5rem;
}
@media screen and (max-width: 767px) {
  .small4 {
    font-size: 1.5rem;
  }
}

.faq {
  padding-top: 32px;
  padding-bottom: 32px;
  background-color: #DBF5FF;
}
@media (min-width: 768px) {
  .faq {
    padding-top: 128px;
    padding-bottom: 130px;
  }
}

.faq_inner {
  padding-left: 2.7272727273%;
  padding-right: 2.7272727273%;
}
@media (min-width: 768px) {
  .faq_inner {
    padding-left: 16.4583333333%;
    padding-right: 16.875%;
  }
}

.faq_box {
  margin-left: auto;
  margin-right: auto;
  max-width: 366px;
  width: 100%;
}
@media (min-width: 768px) {
  .faq_box {
    max-width: 966px;
  }
}

.faq_title {
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 2.5rem;
  color: #039CD4;
  font-family: "Zen Maru Gothic", serif;
}
@media (min-width: 768px) {
  .faq_title {
    font-size: 56px;
  }
}

.qa_boxes {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .qa_boxes {
    margin-top: 48px;
    gap: 32px;
  }
}

.qa_box.is-open .qa_box_head::after {
  background: url(../img/lp/minus.png) no-repeat center center/cover;
  height: 2px;
  cursor: pointer;
}

.qa_box_head {
  padding: 16px 48px 16px 52px;
  position: relative;
  display: block;
  width: 100%;
  background-color: #039CD4;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .qa_box_head {
    padding: 18px 55px 18px 86px;
  }
}
.qa_box_head::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 24px;
  height: 24px;
  background: url(../img/lp/plus.png) no-repeat center center/cover;
  margin-top: 3px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  cursor: pointer;
}
@media (min-width: 768px) {
  .qa_box_head::after {
    right: 18px;
    margin-top: 2px;
  }
}

.qa_box_head_icon {
  color: #FFFFFF;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  position: absolute;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .qa_box_head_icon {
    left: 28px;
  }
}

.qa_box_head_text {
  display: block;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 1.12px;
  text-align: left;
  color: #FFFFFF;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .qa_box_head_text {
    font-size: 24px;
    line-height: 27px;
    letter-spacing: 1.28px;
  }
}

.qa_box_body {
  padding: 16px 16px 16px 52px;
  display: none;
  position: relative;
  background: #FFFFFF;
  border-radius: 10px;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .qa_box_body {
    padding: 42px 30px 42px 86px;
  }
}

.qa_box_a_icon {
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  color: #039CD4;
  top: 50%;
  left: 12px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (min-width: 768px) {
  .qa_box_a_icon {
    top: 50%;
    left: 28px;
  }
}

.qa_box_a_text {
  display: block;
  font-size: 14px;
  letter-spacing: 1.12px;
  padding-top: 10px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 1.3rem;
}
@media (min-width: 768px) {
  .qa_box_a_text {
    font-size: 18px;
    line-height: 170%; /* 27.2px */
    letter-spacing: 1.28px;
    padding-top: 0px;
  }
}

.flow {
  padding-top: 35px;
  padding-bottom: 32px;
}
@media (min-width: 768px) {
  .flow {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

.flow_inner {
  padding-left: 2.7272727273%;
  padding-right: 2.7272727273%;
}
@media (min-width: 768px) {
  .flow_inner {
    padding-left: 11.8055555556%;
    padding-right: 11.8055555556%;
  }
}

.flow_box {
  margin-left: auto;
  margin-right: auto;
  max-width: 366px;
  width: 100%;
}
@media (min-width: 768px) {
  .flow_box {
    max-width: 1100px;
  }
}

.flow_container_border {
  padding: 4px; /* ボーダーの幅 */
  background: -webkit-gradient(linear, left top, left bottom, from(#0489CF), to(#FCF343));
  background: linear-gradient(to bottom, #0489CF, #FCF343);
}

.flow_container_border .content {
  background: #FFFFFF; /* 中の背景色 */
  padding: 24px; /* 内側の角丸調整 */
}
@media (min-width: 768px) {
  .flow_container_border .content {
    padding: 64px;
  }
}

.flow_title {
  color: #039CD4;
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  line-height: 2.3rem;
  font-family: "Zen Maru Gothic", serif;
}
@media (min-width: 768px) {
  .flow_title {
    font-size: 64px;
    margin-top: 65px;
    position: relative;
  }
  .flow_title::before {
    position: absolute;
    content: "";
    background: url(../img/lp/flow_title01.png) no-repeat center center/cover;
    width: 12.3125rem;
    height: 12.5625rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    left: -60px;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .flow_title::before {
    left: -30px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .flow_title::before {
    left: 30px;
  }
}
@media (min-width: 768px) {
  .flow_title::after {
    position: absolute;
    content: "";
    background: url(../img/lp/flow_title02.png) no-repeat center center/cover;
    width: 12.3125rem;
    height: 9.9375rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    right: -60px;
  }
}
@media (min-width: 768px) and (min-width: 1300px) {
  .flow_title::after {
    right: -30px;
  }
}
@media (min-width: 768px) and (min-width: 1400px) {
  .flow_title::after {
    right: 30px;
  }
}

.flow_title01 {
  border-bottom: 0.3125rem dotted #0097D1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .flow_title01 {
    border-bottom: 0.4rem dotted #0097D1;
    padding-bottom: 25px;
  }
}

.flow_title02 {
  border-bottom: 0.3125rem dotted #0097D1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .flow_title02 {
    margin-top: 32px;
    border-bottom: 0.4rem dotted #0097D1;
    padding-bottom: 25px;
  }
}

.flow_title_big {
  font-size: 2rem;
}
@media (min-width: 768px) {
  .flow_title_big {
    font-size: 4.5rem;
  }
}

.flow_list {
  margin-top: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 66px;
}
@media (min-width: 768px) {
  .flow_list {
    margin-top: 64px;
    gap: 104px;
  }
}

.flow_step {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  border: 3px solid #039CD4;
  border-radius: 10px;
  position: relative;
}
@media (min-width: 768px) {
  .flow_step {
    border: 5px solid #039CD4;
  }
}
.flow_step::after {
  position: absolute;
  content: "";
  background: url(../img/lp/Polygon.png) no-repeat center center/cover;
  bottom: -57px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 100px;
  height: 40px;
}
@media (min-width: 768px) {
  .flow_step::after {
    width: 160px;
    height: 70px;
    bottom: -93px;
  }
}
.flow_step:last-child::after {
  display: none;
}

.flow_step_number {
  vertical-align: middle;
  width: 100%;
  max-width: 67px;
  padding: 16px;
  background-color: #039CD4;
  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-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (min-width: 768px) {
  .flow_step_number {
    max-width: 143px;
  }
}

.flow_step_number_top {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
}
@media (min-width: 768px) {
  .flow_step_number_top {
    font-size: 32px;
  }
}

.flow_step_number_bottom {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 2rem;
}
@media (min-width: 768px) {
  .flow_step_number_bottom {
    font-size: 4.5rem;
  }
}

.flow_step_bottom {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  padding: 16px 23px 16px 16px;
}
@media (min-width: 768px) {
  .flow_step_bottom {
    padding: 32px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 31px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    width: 100%;
  }
}

.flow_step_text {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: #333333;
  font-size: 18px;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .flow_step_text {
    font-size: 1.5rem;
  }
}

.text_blue {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 600;
  color: #039CD4;
  font-size: 18px;
}
@media (min-width: 768px) {
  .text_blue {
    font-size: 1.5rem;
  }
}

.flow_step_illust img {
  display: block;
  width: 120px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .flow_step_illust img {
    width: 11.25rem;
  }
}

.contact {
  padding-top: 32px;
  padding-bottom: 32px;
  background: #FFFFFF;
}
@media (min-width: 768px) {
  .contact {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

.contact_inner {
  padding-left: 5.6818181818%;
  padding-right: 5.6818181818%;
}
@media (min-width: 768px) {
  .contact_inner {
    padding-left: 13.8888888889%;
    padding-right: 13.8888888889%;
  }
}

.contact_box {
  margin-left: auto;
  margin-right: auto;
  max-width: 340px;
  width: 100%;
}
@media (min-width: 768px) {
  .contact_box {
    max-width: 728px;
  }
}

.contact_header {
  text-align: center;
}

.main_lp {
  font-size: 1.5rem;
  color: #039CD4;
  font-weight: 700;
  font-family: "Zen Maru Gothic", serif;
}
@media (min-width: 768px) {
  .main_lp {
    font-size: 3.5rem;
    white-space: nowrap;
  }
}

.contact_fields {
  margin-top: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
}
@media (min-width: 768px) {
  .contact_fields {
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 64px;
    gap: 38px;
  }
}
@media (min-width: 1000px) {
  .contact_fields {
    max-width: 583px;
    margin-top: 37px;
    margin-top: 58px;
  }
}

@media (min-width: 768px) {
  .contact_field {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 90px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media (min-width: 1200px) {
  .contact_field {
    gap: 138px;
  }
}

.contact_head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (min-width: 768px) {
  .contact_head {
    width: 144px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
  }
}

.contact_name_text02{
  margin-top: 8px;
}

@media (min-width: 768px) {
  .contact_name_text02 {
    margin-top: 0;
  }
}

.contact_head_text{
font-size: 0.875rem;
    padding-left: 10px;
    }

@media (min-width: 768px) {
.contact_head_text{
line-height: 1.4rem;
    text-align: left;
     padding-left: 0px;
    }
}

.contact_head_name {
  font-size: 0.875rem;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .contact_head_name {
    font-size: 1.125rem;
    margin-top: 7px;
  }
}

.contact_name_text {
  margin-top: 8px;
  width: 100%;
  height: 34px;
  border: 1px solid #E1E1E1;
  background: #FFF;
  line-height: 170%; /* 27.2px */
  padding: 1px 15px;
  -webkit-transition: border-color 0.3s;
  transition: border-color 0.3s;
  font-family: "Noto Sans JP", sans-serif;
}
@media (min-width: 768px) {
  .contact_name_text {
    margin-top: 0;
  }
}
.contact_name_text:hover, .contact_name_text:focus {
  border-color: #333333;
  outline: none;
}
.contact_name_text .contact_name_text::-webkit-input-placeholder {
  color: #B3B3B3; /* 任意の色に変更 */
}
.contact_name_text .contact_name_text::-moz-placeholder {
  color: #B3B3B3; /* 任意の色に変更 */
}
.contact_name_text .contact_name_text:-ms-input-placeholder {
  color: #B3B3B3; /* 任意の色に変更 */
}
.contact_name_text .contact_name_text::-ms-input-placeholder {
  color: #B3B3B3; /* 任意の色に変更 */
}
.contact_name_text .contact_name_text::placeholder {
  color: #B3B3B3; /* 任意の色に変更 */
}

.contact_text {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  margin-top: 13px;
}
@media (min-width: 768px) {
  .contact_text {
    margin-top: 0;
  }
}

.contact_textarea {
  width: 100%;
  height: 120px;
  border: 1px solid #E1E1E1;
  background: #FFF;
  padding: 16px;
}
.contact_textarea:hover, .contact_textarea:focus {
  border-color: #333333;
  outline: none;
}

.contact_button {
  text-align: center;
  margin-top: 24px;
}
@media (min-width: 768px) {
  .contact_button {
    margin-top: 45px;
  }
}

.contact_button_input {
  text-align: center;
  font-weight: 700;
  font-size: 1.125rem;
  letter-spacing: 0.48px;
  color: #FFFFFF;
  background-color: #039CD4;
  display: inline-block;
  border-radius: 10px;
  padding: 14px 84px;
  border: none;
}
@media (min-width: 768px) {
  .contact_button_input {
    padding: 24px 124px;
  }
}

.about {
  padding-top: 32px;
  padding-bottom: 32px;
  background: #039CD4;
}
@media (min-width: 768px) {
  .about {
    padding-top: 128px;
    padding-bottom: 128px;
  }
}

.about_inner {
  padding-left: 2.7272727273%;
  padding-right: 2.7272727273%;
}
@media (min-width: 768px) {
  .about_inner {
    padding-left: 11.8055555556%;
    padding-right: 11.8055555556%;
  }
}

.about_box {
  margin-left: auto;
  margin-right: auto;
  max-width: 366px;
  width: 100%;
}
@media (min-width: 768px) {
  .about_box {
    max-width: 1100px;
  }
}

.about_container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #FFFFFF;
  border-radius: 20px;
  gap: 32px;
  padding: 24px 23px 32px 23px;
}
@media (min-width: 1000px) {
  .about_container {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 56px;
    gap: 56px;
    border-radius: 40px;
  }
}

.about_left {
  text-align: center;
}
@media (min-width: 768px) {
  .about_left {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    margin-left: auto;
    margin-right: auto;
  }
}

.about_logo img {
  display: block;
  width: 220px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 768px) {
  .about_logo img {
    width: 286px;
  }
}

.about_table {
  margin-top: 24px;
}
@media (min-width: 768px) {
  .about_table {
    margin-top: 40px;
  }
}
.about_table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media (min-width: 768px) {
  .about_table tr {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
@media (min-width: 768px) and (min-width: 1000px) {
  .about_table tr {
    gap: 40px;
  }
}
.about_table tbody tr {
  border-bottom: 1px solid #E4E4E4;
}
@media (min-width: 768px) {
  .about_table tbody tr {
    padding-bottom: 22px;
  }
}
.about_table tbody tr:nth-child(n+2) {
  margin-top: 16px;
}
.about_table td {
  font-family: "Zen Kaku Gothic New", sans-serif;
  text-align: left;
  font-weight: 500;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .about_table td {
    font-size: 1.125rem;
  }
}
@media (min-width: 768px) {
  .about_table td:nth-child(1) {
    width: 72px;
    white-space: nowrap;
  }
}
.about_table td:nth-child(2) {
  margin-top: 8px;
  margin-bottom: 16px;
  line-height: 1.5rem;
}
@media (min-width: 768px) {
  .about_table td:nth-child(2) {
    margin-top: 0;
    margin-bottom: 0;
  }
}

.about_right {
  border-radius: 20px;
  background: -webkit-gradient(linear, left top, right top, from(#DBF5FF), to(#FFFBAF));
  background: linear-gradient(to right, #DBF5FF, #FFFBAF);
  padding: 24px;
}
@media (min-width: 768px) {
  .about_right {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    padding: 40px;
    border-radius: 30px;
  }
}

.about_right_title {
  color: #039CD4;
  font-size: 1.3rem;
  font-weight: 600;
  font-family: "Zen Maru Gothic", serif;
}
@media (min-width: 768px) {
  .about_right_title {
    font-size: 1.8rem;
  }
}

.about_right_text {
  margin-top: 16px;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  line-height: 1.3rem;
  font-size: 0.875rem;
}
@media (min-width: 768px) {
  .about_right_text {
    font-size: 1.125rem;
    margin-top: 24px;
    line-height: 1.8rem;
  }
}

.about_right_text02{
 margin-top: 10px;
}

.copyright_box {
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 768px) {
  .copyright_box {
    margin-top: 26px;
  }
}

.copyrihgt {
  color: #FFFFFF;
  font-size: 0.75rem;
}
@media (min-width: 768px) {
  .copyrihgt {
    font-size: 0.875rem;
  }
}

@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pc {
    display: none !important;
  }
}