@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700;900&display=swap");
:root {
  --sans-serif: "Noto Sans JP", "ヒラギノ角ゴシック", "Hiragino Sans", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",sans-serif;
  --color-blue: #00518E;
  --color-orange: #FF6B00;
  --color-light-orange: #FFCF70;
  --color-yellow: #FFF3B2;
  --base-font-size: 16;
  --container-w: 100%;
  --container-space: calc((50/var(--base-font-size)) * 1rem);
  --header-h: calc((58/var(--base-font-size)) * 1rem);
}
@media screen and (min-width: 768px) {
  :root {
    --container-w: 768px;
    --container-space: 80px;
  }
}

html {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: inherit;
}

h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  border: 0;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
}

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

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

code, kbd, pre, samp {
  font-family: monospace, sans-serif;
  font-size: inherit;
}

blockquote, q {
  quotes: none;
}

blockquote::after, blockquote::before, q::after, q::before {
  content: "";
  content: none;
}

address {
  font-style: normal;
}

/**font-family*********/
/**カラー*********/
body {
  font-family: var(--sans-serif);
  color: #25445b;
  line-height: 1;
  font-size: clamp(14px, 3.3333333333vw, 16px);
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  color: #25445b;
  display: inline-block;
  transition: 0.4s;
}
a:hover {
  opacity: 0.8;
}

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

*,
::before,
::after {
  box-sizing: border-box;
}

.sp {
  display: block;
}
@media screen and (min-width: 750px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 750px) {
  .pc {
    display: block;
  }
}

/*****************************************
 * 数値から単位を取り除く
 * 参考
 * https: //css-tricks.com/snippets/sass/
******************************************/
/*****************************************
 * px→remの計算
******************************************/
/*****************************************
 * vwの計算
******************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  margin: 0 auto;
  padding: 0 4%;
  height: var(--header-h);
  z-index: 999;
}

@media screen and (min-width: 768px) {
  .l-header {
    display: none;
  }
}
.l-header.is-active {
  display: block;
}
.l-header.is-active .l-header__bg {
  background: rgba(255, 255, 255, 0.5);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
}
.l-header__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-h);
  background-color: #fff;
}
.l-header__inner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.l-header__logo {
  position: relative;
  z-index: 2;
}
.l-header__logo img {
  height: 1.3125rem;
}

.l-footer {
  background-color: var(--color-blue);
  clip-path: polygon(0 calc(0% + 20.8vw), 100% 0, 100% 100%, 0 100%);
  padding: 26.6666666667vw 0 4.37rem !important;
}
@media screen and (min-width: 768px) {
  .l-footer {
    clip-path: polygon(0 calc(0% + 11.484375vw), 100% 0, 100% 100%, 0 100%);
    padding: 14.0625vw 0 6.37rem !important;
  }
}
.l-footer__logo {
  margin: 0 auto 1.875rem;
  width: 92%;
  max-width: 800px;
}
.l-footer__logo-img {
  height: 1.875rem;
}
.l-footer__inner {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
@media screen and (min-width: 420px) {
  .l-footer__inner {
    gap: 4rem;
    flex-direction: row;
    justify-content: center;
  }
}
.l-footer__navlist {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.l-footer__navitem-link {
  color: #fff;
  font-weight: 600;
}

.l-footer {
  color: #fff;
  padding: 48px 0 85px;
}

@media screen and (min-width: 768px) {
  .l-footer {
    padding: 48px 0 100px;
  }
}
.l-footer__inner {
  max-width: 1440px;
  width: 89%;
  margin: 0 auto 30px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

@media screen and (min-width: 1180px) {
  .l-footer__inner {
    flex-direction: row;
  }
}
.l-footer__left {
  justify-content: space-between;
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

@media screen and (min-width: 768px) {
  .l-footer__left {
    flex-direction: row;
    margin-right: 0;
    gap: 60px;
    justify-content: flex-start;
  }
}
@media screen and (min-width: 1180px) {
  .l-footer__left {
    margin-right: 56px;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    justify-content: flex-start;
    margin-bottom: 0;
  }
}
.l-footer__logo {
  width: 160px;
  margin: 0;
}

.l-footer__logo img {
  vertical-align: bottom;
}

.l-footer__sns {
  display: flex;
  align-items: center;
}

.l-footer__sns-ttl {
  display: none;
}

@media screen and (min-width: 1180px) {
  .l-footer__sns-ttl {
    font-size: 12px;
    margin-right: 26px;
    display: block;
  }
}
.l-footer__sns-link {
  width: 16px;
}

.l-footer__sns-link--twitter {
  margin-right: 20px;
}

@media screen and (min-width: 1180px) {
  .l-footer__sns-link--twitter {
    margin-right: 10px;
  }
}
.l-footer__nav {
  flex-direction: column;
  gap: 20px;
  display: flex;
}

@media screen and (min-width: 680px) {
  .l-footer__nav {
    gap: 40px;
    flex-direction: row;
  }
}
.l-footer__navlist {
  gap: 12px;
}

.l-footer__navitem-link {
  font-size: 14px;
}

@media screen and (min-width: 768px) {
  .l-footer__navitem-link {
    font-size: 16px;
  }
}
.l-footer__sub-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 10px;
}

.l-footer__sub-list .l-footer__navitem-link {
  font-size: 12px;
}

@media screen and (min-width: 768px) {
  .l-footer__sub-list .l-footer__navitem-link {
    font-size: 16px;
  }
}
.l-footer-copy {
  font-size: clamp(10px, 1.5625vw, 12px);
  text-align: center;
}

.l-main {
  padding-top: var(--header-h);
}
@media screen and (min-width: 768px) {
  .l-main {
    padding-top: 0;
  }
}

.l-page {
  overflow: hidden;
}

.c-btn {
  display: inline-block;
  position: relative;
  border: 0;
  line-height: 1.1;
  text-decoration: none;
  user-select: none;
  cursor: pointer;
}

.c-bg-corder {
  position: relative;
  background-color: var(--color-blue);
  clip-path: polygon(0 calc(0% + 20.8vw), 100% 0, 100% calc(100% - 20.8vw), 0 100%);
  margin-top: -20.8vw;
  margin-bottom: -20.8vw;
  padding-top: 20.8vw;
  padding-bottom: 20.8vw;
}
@media screen and (min-width: 768px) {
  .c-bg-corder {
    clip-path: polygon(0 calc(0% + 11.484375vw), 100% 0, 100% calc(100% - 11.484375vw), 0 100%);
    margin-top: -11.484375vw;
    margin-bottom: -11.484375vw;
    padding-top: 11.484375vw;
    padding-bottom: 14.484375vw;
  }
}
.c-bg-corder::before, .c-bg-corder::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../img/lp/004/bg_corder_sp.svg) 50%/contain no-repeat;
  width: 25.4375rem;
  height: 9.375rem;
}
@media screen and (min-width: 768px) {
  .c-bg-corder::before, .c-bg-corder::after {
    background-image: url(../img/lp/004/bg_corder_pc.svg);
    width: 50.6875rem;
    height: 15.0625rem;
  }
}
.c-bg-corder::before {
  top: -0.9375rem;
  right: -5.5rem;
}
@media screen and (min-width: 768px) {
  .c-bg-corder::before {
    top: -1.25rem;
    right: -8.4375rem;
  }
}
.c-bg-corder::after {
  bottom: -0.75rem;
  left: -5.625rem;
}
@media screen and (min-width: 768px) {
  .c-bg-corder::after {
    bottom: -1.25rem;
    left: -10.6rem;
  }
}
.c-bg-corder__content {
  position: relative;
  z-index: 2;
}

.c-container {
  width: min(100% - var(--container-space), var(--container-w));
  margin-inline: auto;
}

.c-section {
  padding: 2.8rem 0 3.75rem;
}
.c-section__inner {
  margin: 0 auto;
  max-width: 750px;
}
.c-section__inner--l {
  width: 89.7%;
}
.c-section__inner--m {
  width: 84.6%;
}

.c-section-ttl {
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: 600;
  text-align: center;
}

.c-ttl-wave {
  position: relative;
  background: url(../img/lp/004/wave_yellow_02_sp.svg) bottom center/7.8125rem 0.5625rem no-repeat;
  padding-bottom: 1.25rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: 0;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .c-ttl-wave {
    background: url(../img/lp/004/wave_yellow_02_pc.svg) bottom center/13.5rem 0.9375rem no-repeat;
    padding-bottom: 1.875rem;
    font-size: 2rem;
  }
}

.c-link {
  max-width: 41.25rem;
  width: 100%;
  margin: 0 auto;
  position: relative;
}
.c-link__btn {
  border-radius: 1.875rem;
  width: 100%;
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
  color: #fff;
  position: relative;
  font-weight: 600;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 420px) {
  .c-link__btn {
    border-radius: 2.25rem;
    justify-content: center;
  }
}
.c-link__btn--cta {
  background-color: #e99d23;
  padding-left: 1.2rem;
  padding-right: 1.6rem;
  font-size: clamp(14px, 4.2666666667vw, 16px);
  box-shadow: 0.1rem 0.31rem 0 0 #666;
  border: 1px solid #ffffff;
}
@media screen and (min-width: 375px) {
  .c-link__btn--cta {
    padding-left: 2rem;
    padding-right: 2.5rem;
    font-size: clamp(16px, 2.6041666667vw, 20px);
  }
}
.c-link__btn--more {
  background-color: var(--color-orange);
  font-size: clamp(20px, 5vw, 24px);
  justify-content: center;
}
.c-link__btn-icon {
  width: clamp(14px, 5vw, 24px);
  position: absolute;
  right: 1.125rem;
  top: 34%;
}
@media screen and (min-width: 420px) {
  .c-link__btn-icon {
    right: 1.6rem;
  }
}
@media screen and (min-width: 620px) {
  .c-link__btn-icon {
    right: 4rem;
  }
}

.c-line {
  background: linear-gradient(transparent 60%, #fff100 60%);
  padding-bottom: 0.25rem;
}

.c-list__unit-imgbox {
  margin-bottom: 1.25rem;
}
.c-list__unit-ttl {
  font-size: clamp(16px, 2.6041666667vw, 20px);
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-bottom: 1.25rem;
}
.c-list__unit-txt {
  line-height: 1.71;
}

.p-fv {
  position: relative;
  background: url(../img/lp/004/fv_sp.jpg) 50%/cover no-repeat;
  min-height: 84.2666666667vw;
}
@media screen and (min-width: 768px) {
  .p-fv {
    background-image: url(../img/lp/004/fv_pc.jpg);
    min-height: 49.28125vw;
  }
}
@media screen and (min-width: 1080px) {
  .p-fv {
    min-height: 38.28125vw;
  }
}
.p-fv__ttl {
  position: absolute;
  top: 4.625rem;
  right: 1.8666666667vw;
  bottom: 0;
  width: 13.75rem;
  height: 4.5625rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-fv__ttl {
    top: 6.875rem;
    right: 0;
    bottom: 0;
    left: 26.875rem;
    width: 22.5625rem;
    height: 7.25rem;
  }
}
@media screen and (min-width: 768px) {
  .p-fv__ttl {
    top: 6.875rem;
    right: 0;
    bottom: 0;
    width: 22.5625rem;
    height: 7.25rem;
  }
}
.p-present {
  padding-bottom: 1.25rem;
}
.p-present__inner {
  padding: 0.3125rem 0;
}
@media screen and (min-width: 768px) {
  .p-present__inner {
    padding: 0;
  }
}
.p-present__ttl {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.6;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-present__ttl {
    font-size: 1.75rem;
  }
}
.p-present__ttl .text1 {
  background-image: linear-gradient(transparent 60%, var(--color-orange) 60%);
}
@media screen and (min-width: 768px) {
  .p-present__ttl .text2 {
    margin: 0 -0.3125rem;
    font-size: 1.5rem;
  }
}
.p-present__ttl .text3 {
  display: block;
}
@media screen and (min-width: 768px) {
  .p-present__ttl .text3 {
    display: inline;
  }
}
.p-present__bnr {
  position: relative;
  margin-top: 0.3125rem;
  text-align: center;
  background-color: #fff;
  color: #00518E;
  font-weight: 700;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.25rem 1rem;
  border-radius: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-present__bnr {
    margin-top: 1.875rem;
    padding: 1.5625rem 7.5rem 2.2rem;
    border-radius: 1rem;
    font-size:1.5rem;
    line-height: 160%;

  }
}
.p-present__bnr .text-sm {
  font-size: 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-present__bnr .text-sm {
    font-size: 1.25rem;
  }
}

.p-present__bnr p {
  margin: 0 0 0.8rem;
}
@media screen and (min-width: 768px) {
  .p-present__bnr p {
    background-image: linear-gradient(transparent 60%, var(--color-light-orange) 60%);
    margin: 0 0 1.16rem;
  }
}

.p-present__bnr .p-present__bnr-line {
  background-image: linear-gradient(transparent 60%, var(--color-light-orange) 60%);
}
@media screen and (min-width: 768px) {
  .p-present__bnr p-present__bnr-line {
    background-image: none;
    margin: 0 0 1.16rem;
  }
}


.p-present__btn-wrap {
  position: absolute;
  bottom: -1.3rem;
  width: 100%;
  margin: auto;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-present__btn-wrap {
    bottom: -2.7rem;
  }
}

.p-service__inner {
  --container-w: 684px;
  padding-top: 26.6666666667vw;
  padding-bottom: 26.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-service__inner {
    padding-top: 12.734375vw;
    padding-bottom: 13.515625vw;
  }
}
.p-service__ttl {
  position: relative;
  text-align: center;
  padding-bottom: 1rem;
  font-size: 1.5rem;
  font-weight: 900;
  line-height: 1.6;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-service__ttl {
    padding-bottom: 1.25rem;
    font-size: 2rem;
    letter-spacing: 0.06em;
  }
}
.p-service__ttl::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  background: url(../img/lp/004/wave_yellow.svg) 50%/contain no-repeat;
  aspect-ratio: 426/15;
  width: 15.0625rem;
  margin: auto;
}
@media screen and (min-width: 768px) {
  .p-service__ttl::after {
    width: 26.625rem;
    height: 0.9375rem;
  }
}
.p-service__ttl .text-sm {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-service__ttl .text-sm {
    font-size: 1.5rem;
  }
}

.p-service-module1 {
  margin-top: 1.625rem;
}
@media screen and (min-width: 768px) {
  .p-service-module1 {
    max-width: 416px;
    margin-top: 3rem;
    margin-inline: auto;
  }
}
.p-service-module1__ttl-wrap {
  text-align: center;
}
.p-service-module1__ttl {
  display: inline-block;
  background-image: linear-gradient(transparent 60%, #eee 60%);
  text-align: center;
  font-size: min(5.0666666667vw, 1.25rem);
  font-weight: 900;
  line-height: 1.6;
  letter-spacing: 0.05em;
  color: #3F3F3F;
}
@media screen and (min-width: 768px) {
  .p-service-module1__ttl {
    font-size: 1.5rem;
  }
}
.p-service-module1__content {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0 0.25rem;
  justify-content: center;
  margin-top: 1.25rem;
  padding: 0 1.5rem 0 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-module1__content {
    gap: 0 1rem;
    margin-top: 1.5rem;
    padding: 0;
  }
}
.p-service-module1__body {
  border-radius: 4px;
  background-color: #eee;
  padding: 0.9375rem 0.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-module1__body {
    padding: 1.25rem;
  }
}
.p-service-module1__list li {
  position: relative;
  padding-left: 1em;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-service-module1__list li {
    font-size: 1rem;
  }
}
.p-service-module1__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-service-module1__img img {
  width: 5.5rem;
  height: 5.5rem;
}
@media screen and (min-width: 768px) {
  .p-service-module1__img img {
    width: 7.375rem;
    height: 7.375rem;
  }
}
.p-service-module1__text {
  grid-column: span 2;
  background: url(../img/lp/004/wave_gray_sp.svg) bottom left/100% 0.3125rem repeat-x;
  margin-top: 0.4375rem;
  padding-bottom: 0.375rem;
  text-align: center;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.6;
  color: #68757E;
}
@media screen and (min-width: 768px) {
  .p-service-module1__text {
    background-image: url(../img/lp/004/wave_gray_pc.svg);
    background-size: 100% 0.6875rem;
    margin-top: 1.125rem;
    padding-bottom: 0.75rem;
    font-size: 1.25rem;
  }
}

.p-service-module2 {
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .p-service-module2 {
    margin-top: 3rem;
  }
}
.p-service-module2__ttl {
  text-align: center;
}
.p-service-module2__ttl img {
  width: 18.9375rem;
  height: 5.375rem;
}
@media screen and (min-width: 768px) {
  .p-service-module2__ttl img {
    width: 36.25rem;
    height: 5.375rem;
  }
}
.p-service-module2__text {
  margin-top: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-module2__text {
    margin-top: 1.25rem;
  }
}
.p-service-module2__text img {
  width: 19rem;
  height: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-service-module2__text img {
    width: 32.3125rem;
    height: 8.375rem;
  }
}
.p-service-module2__bubble {
  margin: 0.625rem -0.625rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service-module2__bubble {
    margin: 0;
  }
}
.p-service-module2__bubble img {
  aspect-ratio: 670/286;
  width: 20.9375rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-service-module2__bubble img {
    aspect-ratio: 890/394;
    width: 27.8125rem;
  }
}

.p-average__inner {
  --container-w: 454px;
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-average__inner {
    padding-top: 1.953125vw;
    padding-bottom: 5.078125vw;
  }
}
.p-average__lead {
  text-align: center;
}
.p-average__lead p {
  display: inline-block;
  position: relative;
  padding-left: 1em;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-average__lead p {
    font-size: 1.25rem;
  }
}
.p-average__lead p::before {
  content: "・";
  position: absolute;
  top: 0.3em;
  left: 0;
}
.p-average__lead p .text-lg {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-average__lead p .text-lg {
    font-size: 1.5rem;
  }
}
.p-average__lead p .line {
  background-image: linear-gradient(transparent 70%, var(--color-orange) 70%);
}
.p-average__num {
  margin-top: 1.375rem;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 900;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-average__num {
    font-size: 2rem;
  }
}
.p-average__num .text-lg {
  font-size: 2.25rem;
}
@media screen and (min-width: 768px) {
  .p-average__num .text-lg {
    font-size: 3.625rem;
  }
}
.p-average__info {
  margin-top: 1.25rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-average__info {
    margin-top: 2.5rem;
  }
}
.p-average__info img {
  width: 19.375rem;
  height: 5.125rem;
}
@media screen and (min-width: 768px) {
  .p-average__info img {
    width: 23.4375rem;
    height: 6.1875rem;
  }
}
.p-average__table {
  margin: 1.25rem -0.3125rem 0;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-average__table {
    margin: 1.5625rem 0 0;
  }
}
.p-average__table img {
  aspect-ratio: 674/578;
  width: 20.9375rem;
  height: auto;
}
@media screen and (min-width: 768px) {
  .p-average__table img {
    aspect-ratio: 450/392;
    width: 28.125rem;
  }
}
.p-average__text {
  margin-top: 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  line-height: 1.4;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-average__text {
    margin-top: 1.5rem;
    font-size: 1rem;
  }
}

.p-about {
  position: relative;
  background: url(../img/lp/004/about_ellipse_sp.svg) top center/130.9333333333vw 86.4vw no-repeat, url(../img/lp/004/about_ellipse_sp.svg) bottom center/130.9333333333vw 86.4vw no-repeat, linear-gradient(transparent 43.2vw, #fff 43.2vw, #fff calc(100% - 43.2vw), transparent calc(100% - 43.2vw), transparent 100%);
}
@media (min-width: 1280px) {
  .p-about {
    background-size: 120%;
  }
}
@media screen and (min-width: 768px) {
  .p-about {
    background: url(../img/lp/004/about_ellipse_pc.svg) top center/109.375vw 33.59375vw no-repeat, url(../img/lp/004/about_ellipse_pc.svg) bottom center/109.375vw 33.59375vw no-repeat, linear-gradient(transparent 16.796875vw, #fff 16.796875vw, #fff calc(100% - 16.796875vw), transparent calc(100% - 16.796875vw), transparent 100%);
  }
}
.p-about__inner {
  --container-w: 702px;
  padding-top: 16.5333333333vw;
  padding-bottom: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-about__inner {
    padding-top: 8.984375vw;
    padding-bottom: 14.453125vw;
  }
}
.p-about__ttl {
  text-align: center;
}
.p-about__ttl img {
  width: 20.25rem;
  height: 1.875rem;
}
@media screen and (min-width: 768px) {
  .p-about__ttl img {
    width: 34.5rem;
    height: 3.4375rem;
  }
}
.p-about__head {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  margin-top: 0.625rem;
  padding: 0 0.4375rem;
}
@media screen and (min-width: 768px) {
  .p-about__head {
    max-width: 600px;
    margin-top: 1.25rem;
    margin-inline: auto;
    padding: 0;
  }
}
.p-about__text-wrap {
  letter-spacing: 0;
  color: var(--color-blue);
}
.p-about__categorys {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: max-content;
  gap: 0.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__categorys {
    gap: 0.4375rem;
  }
}
.p-about__category {
  border-radius: 4px;
  background-color: var(--color-light-orange);
  padding: 0.25rem 0.5625rem;
  font-size: 0.75rem;
  font-weight: 900;
}
@media screen and (min-width: 768px) {
  .p-about__category {
    padding: 0.5rem 0.9375rem;
    font-size: 1.3125rem;
  }
}
.p-about__text1 {
  display: inline-block;
  background-image: linear-gradient(transparent 70%, var(--color-light-orange) 70%);
  margin-top: 0.3125rem;
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.4;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-about__text1 {
    background-image: linear-gradient(transparent 60%, var(--color-light-orange) 60%);
    margin-top: 0.625rem;
    font-size: 1.75rem;
  }
}
.p-about__text2 {
  font-size: 0.75rem;
  font-weight: 900;
  line-height: 1.6;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-about__text2 {
    font-size: 1.5rem;
  }
}
.p-about__note {
  position: relative;
  margin-top: 0.3125rem;
  padding-left: 1em;
  font-size: 0.5rem;
  font-weight: 500;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-about__note {
    margin-top: 0.625rem;
    font-size: 1rem;
  }
}
.p-about__note::before {
  content: "※";
  position: absolute;
  left: 0;
}
.p-about__illust {
  align-self: end;
}
.p-about__illust img {
  width: 6.625rem;
  height: 6.25rem;
}
@media screen and (min-width: 768px) {
  .p-about__illust img {
    width: 12.5rem;
    height: 11.8125rem;
  }
}
.p-about__box {
  border-radius: 10px;
  background-color: #eee;
  margin: 1.25rem -0.3125rem 0;
  padding: 1.625rem 0.75rem;
}
@media screen and (min-width: 768px) {
  .p-about__box {
    margin: 2.3125rem 0 0;
    padding: 2rem 1.5rem 2rem;
  }
}

.p-about-module1__ttl {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-about-module1__ttl {
    font-size: 1.75rem;
  }
}
.p-about-module1__dl {
  margin-top: 1.375rem;
}
@media screen and (min-width: 768px) {
  .p-about-module1__dl {
    margin-top: 1.875rem;
  }
}
.p-about-module1__dl > div {
  display: grid;
  grid-template-columns: 5.5rem 1fr;
  gap: 0.625rem;
  border-radius: 10px;
  background-color: #fff;
  padding: 1rem 0.625rem 1rem 0;
}
@media screen and (min-width: 768px) {
  .p-about-module1__dl > div {
    grid-template-columns: 8.125rem 1fr;
    padding: 1.0625rem 1.25rem 1.0625rem 0;
  }
}
.p-about-module1__dl > div + div {
  margin-top: 0.5rem;
}
.p-about-module1__dl > div dt, .p-about-module1__dl > div dd {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-about-module1__dl > div dt, .p-about-module1__dl > div dd {
    font-size: 0.875rem;
  }
}
.p-about-module1__dl > div dt {
  align-self: center;
  text-align: center;
}
.p-about-module1__dl > div dt sup {
  position: relative;
  top: 0.35em;
}
.p-about-module1__dl > div dd {
  position: relative;
  line-height: 1.4;
}
.p-about-module1__dl > div dd::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: -0.625rem;
  background-color: #eee;
  width: 0.25rem;
  height: 100%;
  margin-right: 0.625rem;
}
.p-about-module1__note-wrap {
  text-align: center;
  margin-top: 0.625rem;
}
@media screen and (min-width: 768px) {
  .p-about-module1__note-wrap {
    margin-top: 15px;
  }
}
.p-about-module1__num-note {
  display: inline-block;
  position: relative;
  counter-increment: number;
  padding-left: 2em;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-about-module1__num-note {
    font-size: 0.875rem;
  }
}
.p-about-module1__num-note::before {
  content: "※" counter(number);
  position: absolute;
  left: 0;
}
.p-about-module1__note {
  display: inline-block;
  position: relative;
  padding-left: 1em;
  font-size: 0.625rem;
  line-height: 1.4;
  letter-spacing: 0;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-about-module1__note {
    font-size: 0.875rem;
  }
}
.p-about-module1__note::before {
  content: "・";
  position: absolute;
  left: 0;
}
.p-about-module1 + .p-about-module2 {
  position: relative;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .p-about-module1 + .p-about-module2 {
    margin-top: 2.8125rem;
  }
}
.p-about-module1 + .p-about-module2::before {
  content: "";
  display: block;
  position: absolute;
  top: -1.875rem;
  right: 0;
  left: 0;
  margin: auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 1.875rem solid transparent;
  border-left: 1.875rem solid transparent;
  border-top: 1.375rem solid var(--color-blue);
  border-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-about-module1 + .p-about-module2::before {
    top: -1.75rem;
    border-width: 1.375rem 1.875rem 0 1.875rem;
  }
}

.p-about-module2 {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  gap: 0.25rem;
  justify-content: center;
  max-width: 395px;
  margin-inline: auto;
}
.p-about-module2__text {
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8;
  color: var(--color-blue);
}
@media screen and (min-width: 768px) {
  .p-about-module2__text {
    font-size: 1.125rem;
  }
}
.p-about-module2__text .text-lg {
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .p-about-module2__text .text-lg {
    font-size: 1.5rem;
  }
}
.p-about-module2__text .line {
  background-image: linear-gradient(transparent 60%, var(--color-light-orange) 60%);
}
.p-about-module2__illust img {
  width: 7.25rem;
  height: 5.375rem;
}
@media screen and (min-width: 768px) {
  .p-about-module2__illust img {
    width: 9.0625rem;
    height: 6.6875rem;
  }
}

.p-image {
  padding-top: 17.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-image {
    padding-top: 8rem;
  }
}
.p-image__inner {
  background-color: #eaf0ef;
  border-radius: 1.25rem;
  padding: 1.56rem 1.56rem 2.18rem;
}
.p-image__ttl {
  text-align: center;
  font-weight: 600;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  line-height: 1.3;
  margin-bottom: 1.43rem;
  font-feature-settings: "palt";
}
.p-image__ttl-lg {
  font-size: clamp(24px, 3.6458333333vw, 28px);
}
.p-image__content {
  margin-bottom: 1.43rem;
  color: #fff;
  position: relative;
}
.p-image__content-top {
  background-color: #e99d23;
  color: #fff;
  padding: 1.6rem;
  text-align: center;
  border-radius: 0.75rem;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  font-weight: 600;
  margin: 0 auto 1.87rem;
  max-width: 31.2rem;
  width: 100%;
}
.p-image__content-arrow {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
}
.p-image__content-arrow--top {
  top: 4.1rem;
}
.p-image__content-arrow img {
  width: 1.85rem;
}
.p-image__content-arrow--bottom {
  top: 57%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}
@media screen and (min-width: 390px) {
  .p-image__content-arrow--bottom {
    top: 14.2rem;
  }
}
.p-image__content-arrow--bottom .p-image__content-img:nth-child(1),
.p-image__content-arrow--bottom .p-image__content-img:nth-child(3) {
  width: 2.56rem;
}
.p-image__content-md {
  background-color: #e99d23;
  color: #fff;
  padding: 2.2rem 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  font-weight: 600;
  max-width: 31.2rem;
  width: 100%;
  margin: 0 auto 4.25rem;
}
@media screen and (min-width: 375px) {
  .p-image__content-md {
    gap: 0.875rem;
  }
}
.p-image__content-corder {
  width: clamp(90px, 29.6vw, 111px);
  background-color: #ffffff;
  padding: 0.375rem 0.5rem;
}
.p-image__content-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: clamp(12px, 3.7333333333vw, 14px);
}
@media screen and (min-width: 375px) {
  .p-image__content-list {
    font-size: clamp(14px, 2.0833333333vw, 16px);
  }
}
.p-image__content-bottom {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.85%;
  max-width: 31.2rem;
  width: 100%;
  margin: 0 auto;
}
.p-image__content-per {
  width: 32.1%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5rem;
  align-items: center;
}
.p-image__content-per img {
  width: 62.2%;
  margin: 0 auto;
}
.p-image__content-nm {
  font-size: clamp(10px, 3.2vw, 12px);
  font-weight: 600;
  background-color: #25445b;
  border-radius: 0.188rem;
  padding: 0.188rem 0;
  width: 100%;
  text-align: center;
  letter-spacing: 0;
  font-feature-settings: "palt";
}
@media screen and (min-width: 375px) {
  .p-image__content-nm {
    font-size: clamp(12px, 2.0833333333vw, 16px);
    padding: 0.5rem 0.188rem;
  }
}
.p-image__txt {
  font-size: clamp(12px, 3.0769230769vw, 16px);
  font-weight: 600;
  text-align: center;
  line-height: 1.66;
  font-feature-settings: "palt";
}
@media screen and (min-width: 375px) {
  .p-image__txt .br {
    display: none;
  }
}

.p-flow {
  padding-top: 14.4vw;
  padding-bottom: 33.6vw;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-flow {
    padding-top: 9.6875vw;
    padding-bottom: 7.65625vw;
  }
}
@media screen and (max-width: 768px) {
  .p-flow .c-ttl-wave {
    margin-bottom: 1.06rem;
  }
}
.p-flow__ttl {
  font-size: clamp(18px, 2.8645833333vw, 22px);
  font-weight: 600;
  text-align: center;
  margin-bottom: 1.25rem;
}
.p-flow__ttl img {
  width: clamp(120px, 20.8333333333vw, 160px);
}
.p-flow__txt {
  text-align: center;
  font-weight: 600;
  font-size: clamp(16px, 2.6041666667vw, 20px);
  line-height: 1.31;
  margin-bottom: 0.75rem;
}
.p-flow__unit {
  margin-bottom: 1.5rem;
}
@media screen and (min-width: 340px) {
  .p-flow__unit:nth-child(5) .br {
    display: none;
  }
}
@media screen and (min-width: 420px) {
  .p-flow__unit:nth-child(1) .br {
    display: none;
  }
}
.p-flow__unit:last-child {
  margin: 0;
}
.p-flow__unit-imgbox {
  position: relative;
  padding-top: clamp(30px, 8.3333333333vw, 40px);
}
.p-flow__unit-num {
  border-radius: 50%;
  background-color: #e99d23;
  color: #fff;
  width: clamp(60px, 16.6666666667vw, 80px);
  height: clamp(60px, 16.6666666667vw, 80px);
  font-family: "Arial", "sans-serif";
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.25rem;
  font-size: clamp(24px, 3.6458333333vw, 28px);
  font-weight: bold;
  position: absolute;
  top: 0;
  left: -5.1%;
}
.p-flow__unit-step {
  font-size: clamp(12px, 2.0833333333vw, 16px);
}
@media screen and (min-width: 750px) {
  .p-flow__unit-ttl .br {
    display: none;
  }
}

.p-voice {
  background-color: #fff;
  padding-top: 28vw;
  padding-bottom: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  .p-voice {
    padding-top: 17.03125vw;
    padding-bottom: 7.65625vw;
  }
}
@media screen and (max-width: 767px) {
  .p-voice__inner {
    --container-space: 0;
  }
}
.p-voice__ttl {
  margin-bottom: 2rem;
}
@media screen and (min-width: 767px) {
  .p-voice__ttl {
    margin-bottom: 4.7rem;
  }
}
.p-voice__ttlbox {
  position: relative;
  padding-top: 6.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-voice__ttlbox {
    padding-top: clamp(125px, 33.3333333333vw, 256px);
  }
}
.p-voice__ttlbox::before {
  content: "";
  width: 87%;
  height: 90.7%;
  position: absolute;
  top: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center top;
}
@media screen and (min-width: 420px) {
  .p-voice__ttlbox::before {
    height: 94.7%;
  }
}
.p-voice__ttlbox-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.43rem;
  position: relative;
  width: 89.7%;
  max-width: 750px;
  margin: 0 auto;
}
.p-voice__ttlbox-la {
  display: inline-block;
  color: #fff;
  background-color: var(--color-blue);
  padding: 0.5rem 1rem;
  letter-spacing: 0.025em;
  font-size: clamp(18px, 2.8645833333vw, 22px);
  font-weight: 600;
}
.p-voice__txt {
  position: relative;
  width: 83.5%;
  max-width: 720px;
  margin: 0 auto 1.5rem;
  line-height: 1.71;
}
.p-voice__link {
  width: 84.6%;
}
.p-voice__unit {
  padding-bottom: 3.12rem;
  margin-bottom: 2.25rem;
  position: relative;
}
.p-voice__unit::before {
  content: "";
  width: 87.1%;
  height: 88.9%;
  background-color: #ffffff;
  position: absolute;
  bottom: 0;
}
.p-voice__unit--odd::before {
  left: 0;
  border-radius: 0 0 2.5rem 0;
}
.p-voice__unit--odd .p-voice__ttlbox::before {
  right: 0;
  border-radius: 2.5rem 0 0 0;
}
.p-voice__unit--even::before {
  right: 0;
  border-radius: 0 0 0 2.5rem;
}
.p-voice__unit--even .p-voice__ttlbox::before {
  left: 0;
  border-radius: 0 2.5rem 0 0;
}
.p-voice__unit--even .p-voice__ttlbox-ttl {
  align-items: flex-end;
}
.p-voice__unit01 .p-voice__ttlbox::before {
  background-image: url(../img/lp/004/img_voice01.jpg);
}
.p-voice__unit02 .p-voice__ttlbox::before {
  background-image: url(../img/lp/004/img_voice02.jpg);
}
.p-voice__unit03 .p-voice__ttlbox::before {
  background-image: url(../img/lp/004/img_voice03.jpg);
}

.p-modal {
  display: none;
}
.p-modal__ttl {
  margin-bottom: 1.87rem;
}
.p-modal__ttlbox {
  position: relative;
  padding-top: 6.5rem;
  margin-bottom: 1.25rem;
}
@media screen and (min-width: 375px) {
  .p-modal__ttlbox {
    padding-top: clamp(125px, 33.3333333333vw, 256px);
  }
}
.p-modal__ttlbox-img {
  position: absolute;
  top: 0;
  max-width: 860px;
  width: 93%;
  height: 90%;
  overflow: hidden;
  right: 0;
  border-radius: 2.5rem 0 0 0;
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}
@media screen and (min-width: 375px) {
  .p-modal__ttlbox-img {
    height: 94%;
  }
}
.p-modal__ttlbox-img img {
  object-fit: cover;
}
.p-modal__ttlbox-img01 {
  background-image: url(../img/lp/004/img_voice01.jpg);
}
.p-modal__ttlbox-img02 {
  background-image: url(../img/lp/004/img_voice02.jpg);
}
.p-modal__ttlbox-img03 {
  background-image: url(../img/lp/004/img_voice03.jpg);
}
.p-modal__ttlbox-ttl {
  display: flex;
  flex-direction: column;
  gap: 0.43rem;
  position: relative;
  margin: 0 auto;
}
.p-modal__ttlbox-la {
  display: inline-block;
  color: #fff;
  background-color: var(--color-blue);
  padding: 0.5rem;
  letter-spacing: 0.025em;
  font-size: clamp(16px, 4.7619047619vw, 20px);
  font-weight: 600;
}
.p-modal__txt {
  position: relative;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #666;
  margin: 0 auto 1.5rem;
  line-height: 1.5;
  font-weight: 600;
}
.p-modal__content-txt {
  margin-bottom: 1rem;
  line-height: 1.5;
}
.p-modal__content-txt:last-child {
  margin: 0;
}

.modaal-container {
  max-width: 600px;
  width: 94%;
  border-radius: 0.75rem;
}

.modaal-content-container {
  padding: 30px 20px;
}

.modaal-overlay {
  background-color: rgba(37, 68, 91, 0.8);
}

.modaal-close {
  border: 1px solid #25445b;
}

.modaal-close:after,
.modaal-close:before {
  background: #eaf0ef;
}

.modaal-close:focus:after, .modaal-close:focus:before, .modaal-close:hover:after, .modaal-close:hover:before {
  background: #ee9e28;
}

.p-work {
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-work {
    padding-top: 5.46875vw;
    padding-bottom: 9.375vw;
  }
}
.p-work__inner {
  max-width: none;
}
.p-work__ttl {
  color: #fff;
  margin-bottom: 1.56rem;
}
@media screen and (min-width: 768px) {
  .p-work__ttl {
    margin-bottom: 4.375rem;
  }
}
.p-work__area {
  scrollbar-width: none;
  -ms-text-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.p-work__area::-webkit-scrollbar {
  display: none;
}
.p-work__list {
  overflow-x: scroll;
  display: flex;
  align-items: center;
  justify-content: space-between;
  scrollbar-width: none;
  -ms-text-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
  margin: 0 -0.625rem;
}
.p-work__list::-webkit-scrollbar {
  display: none;
}
.p-work__unit {
  padding: 2.18rem 1.56rem 1.75rem;
  background-color: #e8f4f6;
  border-radius: 1.25rem;
  display: inline-block;
  flex-grow: 1;
  flex-shrink: 0;
  flex-basis: calc(20% - 1.25rem - 0.062rem);
  margin: 0 0.625rem;
  font-feature-settings: "palt";
}
.p-work__content {
  margin-bottom: 1.56rem;
  padding: 0 0.31rem;
}
.p-work__desc {
  display: flex;
  letter-spacing: 0.025em;
  line-height: 1.75;
  font-size: 16px;
}
.p-work__desc-ttl {
  width: 5.6rem;
  font-weight: 600;
}
.p-work__desc-txt {
  width: calc(100% - 5.6rem);
}
.p-work__img {
  width: 15.6rem;
}

.p-faq {
  padding-top: 28vw;
  padding-bottom: 29.3333333333vw;
  color: #00518E;
}
@media screen and (min-width: 768px) {
  .p-faq {
    padding-top: 13.046875vw;
    padding-bottom: 5.46875vw;
  }
}
.p-faq__ttl {
  margin-bottom: 2.18rem;
}
.p-faq__area {
  margin-bottom: 2.8rem;
}
.p-faq__area:last-child {
  margin: 0;
}
.p-faq__area-ttlbox {
  font-weight: 600;
  font-size: clamp(16px, 2.6041666667vw, 20px);
  margin-bottom: 20px;
  border-bottom: 1px solid #b3b3b3;
  position: relative;
}
.p-faq__area-ttl {
  padding-bottom: 16px;
  display: inline-block;
  border-bottom: 5px solid var(--color-orange);
}
.p-faq__term {
  display: flex;
  align-items: center;
  cursor: pointer;
  padding: 0 1.8rem 0.75rem 1.25rem;
  position: relative;
  font-weight: 600;
  line-height: 1.5;
}
.p-faq__term::before {
  content: "Q.";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}
.p-faq__term-bar {
  width: clamp(18px, 5vw, 24px);
  height: clamp(18px, 5vw, 24px);
  background-color: var(--color-orange);
  position: absolute;
  right: 0;
}
.p-faq__term-bar::before, .p-faq__term-bar::after {
  content: "";
  width: clamp(8.6px, 3.0416666667vw, 14.6px);
  height: 0.09rem;
  display: inline-block;
  background-color: #ffffff;
  position: absolute;
  right: 20%;
  top: 50%;
  transform: translateY(-50%);
}
.p-faq__term-bar::after {
  transform: rotate(90deg);
  transition: 0.3s transform;
}
.p-faq__term-bar.is-open::after {
  transform: rotate(0);
}
.p-faq__term .br {
  display: none;
}
@media screen and (min-width: 375px) {
  .p-faq__term .br {
    display: block;
  }
}
@media screen and (min-width: 750px) {
  .p-faq__term .br {
    display: none;
  }
}
.p-faq__desc {
  display: none;
  line-height: 1.33;
  padding: 0 2.5rem 1.25rem 1.25rem;
  position: relative;
  text-align: left;
  line-height: 1.71;
}
@media screen and (min-width: 420px) {
  .p-faq__desc {
    padding-right: 2.8rem;
  }
}
.p-faq__desc::before {
  content: "A.";
  display: inline-block;
  left: 0;
  position: absolute;
  top: 0;
}

.p-totop {
  margin: 0 auto;
  z-index: 99;
}
.p-totop__btn {
  width: 3.125rem;
  height: 3.125rem;
  background-color: var(--color-blue);
  border-radius: 50%;
  border: 1px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .p-totop__btn {
    width: 4.375rem;
    height: 4.375rem;
  }
}
.p-totop__btn-img {
  width: 1.5rem;
}
@media screen and (min-width: 768px) {
  .p-totop__btn-img {
    width: 2.625rem;
  }
}

.p-cta {
  padding: 0.5rem 0;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  max-width: 1080px;
  width: 100%;
  margin: 0 auto;
  border-left: 1px solid rgba(179, 179, 179, 0.2);
  border-right: 1px solid rgba(179, 179, 179, 0.2);
}
.p-cta__inner {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.p-btn {
  display: inline-grid;
  place-items: center;
  border-radius: 100vmax;
  border: 1px solid var(--color-orange);
  background-color: var(--color-orange);
  width: 15.3125rem;
  height: 2.625rem;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .p-btn {
    border-width: 2px;
    width: 27.1875rem;
    height: 4.375rem;
    font-size: 1.5rem;
  }
}
@media (hover: hover) {
  .p-btn {
    transition-duration: 0.3s;
    transition-property: background, color;
  }
  .p-btn:hover {
    background-color: #fff;
    opacity: 1;
    color: var(--color-orange);
  }
}
.p-btn.p-btn--arrow span:after {
  content: "";
  display: inline-block;
  margin-left: 0.5rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 0.4375rem solid transparent;
  border-bottom: 0.4375rem solid transparent;
  border-left: 0.625rem solid #fff;
  border-right: 0;
}
@media screen and (min-width: 768px) {
  .p-btn.p-btn--arrow span:after {
    border-width: 0.625rem 0 0.625rem 1.0625rem;
  }
}

.u-color-blue {
  color: var(--color-blue);
}

.u-color-yellow {
  color: var(--color-yellow);
}

.u-color-orange {
  color: var(--color-orange);
}

.u-color-orange-02 {
  color: #E99D23;
}

.u-color-light-orange {
  color: var(--color-light-orange);
}


/* ===== Section: Header ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: transparent;
    padding: 24px 0 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1216px;
    margin: 0 auto;
    padding: 0 32px;
}



.logo-img {
    width: 110px;
    height: 23px;
    object-fit: contain;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 32px;
    background: #FFFFFF;
    border-radius: 30px;
    padding: 0 48px;
    height: 60px;
    width: 80%;
        justify-content: center;
    align-items: center;
}

.nav-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 16px 8px ;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0;
}

.nav-item.active {
    background: #20508A;
}

.nav-item.active span {
    color: #FFFFFF;
}

.nav-item span {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    font-size: 12px;
    line-height: 1.5;
    color: #252525;
}



/* Mobile Hamburger Menu */
.hamburger-menu {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
}

.hamburger-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 6px;
    position: relative;
    width: 16px;
    height: 14px;
}

.hamburger-lines span {
    position: absolute;
    width: 16px;
    height: 2px;
    background: #252525;
    border-radius: 1px;
    transition: all 0.3s ease;
}

.hamburger-lines span:first-child {
    top: 0;
}

.hamburger-lines span:last-child {
    bottom: 0;
}

.hamburger-menu.active .hamburger-lines span:first-child {
    transform: rotate(45deg);
    top: 6px;
}

.hamburger-menu.active .hamburger-lines span:last-child {
    transform: rotate(-45deg);
    bottom: 6px;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #fff;
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding-top: 80px;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    border-radius: 20px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 280px;
    width: 90%;
}

.mobile-nav-item {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #252525;
    padding: 12px 16px;
    border-radius: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-align: center;
}

.mobile-nav-item:first-child,
.mobile-nav-item:nth-child(2) {
    background: #20508A;
    color: #FFFFFF;
}

.mobile-nav-item:hover {
    background: rgba(32, 80, 138, 0.1);
}

.mobile-nav-item:first-child:hover,
.mobile-nav-item:nth-child(2):hover {
    background: #1a4070;
}


/* ===== Section: Footer ===== */
.footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 64px;
    padding: 80px 0;
    background: #F5F5F5;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 32px;
    width: 100%;
    max-width: 980px;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
    width: 271px;
}

.footer-logo {
    width: 193px;
    height: 40px;
}

.footer-logo-img {
    width: 193px;
    height: 40px;
    object-fit: contain;
}

.footer-address {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-address p {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    color: #666666;
    margin: 0;
}

.footer-phone {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.2;
    color: #666666;
}

.footer-navigation {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.footer-section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 160px;
    flex-shrink: 0;
}

.footer-section h4 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 900;
    font-size: 14px;
    line-height: 1.6;
    color: #B5B5B5;
    margin: 0;
}

.footer-line {
    width: 100%;
    height: 1px;
    background: #B5B5B5;
}

.footer-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
}

.footer-section li a {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    font-size: 12px;
    line-height: 1.6;
    color: #252525;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section li a:hover {
    color: #666666;
}

@media (max-width: 768px) {
.desktop-nav {
        display: none;
    }

    .hamburger-menu {
        display: block;
    }

    .logo {
        z-index: 1001;
        position: relative;
    }

    .nav-list {
        display: none;
    }


    .feature-btn {
        padding : 0 20px;
    }
    .feature-btn a{
        font-size: 16px;
        height: 46px;
        line-height: 46px;
        max-width: 330px;
    }
   
    .footer-nav {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-brand-title {
        font-size: 120px;
    }
    .footer-left,
    .footer-content {
        display: block;
    }
    .footer-left{
        text-align: center;
        width: 100%;
    }
    .footer-logo img {
        margin: 0 auto 20px;
    }
    .footer-logo{
        width: auto;
        height: auto;
    }
    .footer-address{
        margin-bottom: 40px;
    }
    .footer-navigation{
        padding: 0 20px;
    }
}

/*# sourceMappingURL=style.css.map */