@charset "UTF-8";
html,
body {
  line-break: strict;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
  line-height: 2;
}
body img {
  vertical-align: bottom;
}

/*** The new CSS Reset - version 1.0.0 (last updated 8.7.2021) ***/
*:where(:not(iframe, canvas, img, svg, video):not(svg *)) {
  all: unset;
  display: revert;
}

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

ol,
ul {
  list-style: none;
}

img {
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 16px 30px;
  z-index: calc(infinity);
}
@media screen and (max-width: 767.99px) {
  .l-header {
    padding: 10px;
  }
}
.l-header__business {
  position: fixed;
  background: -webkit-gradient(linear, left top, right top, from(rgba(244, 106, 0, 0.8)), to(rgba(252, 214, 78, 0.8)));
  background: linear-gradient(to right, rgba(244, 106, 0, 0.8), rgba(252, 214, 78, 0.8));
}
.l-header__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header .l-logo__link {
  width: 126px;
}
.l-header .l-logo__image {
  width: 126px;
}
.l-header__entrance {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.l-header .l-button__new, .l-header .l-button__existing {
  border-radius: 100vmax;
  text-align: center;
  width: 170px;
  height: 40px;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}
.l-header .l-button__new a, .l-header .l-button__existing a {
  display: block;
  line-height: 36px;
}
@media screen and (max-width: 767.99px) {
  .l-header .l-button__existing {
    width: 160px;
  }
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
}

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

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

.l-none {
  display: none;
}

a {
  cursor: pointer;
}

.l-header,
.l-main,
.l-footer {
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "游ゴシック", "Yu Gothic", "Meiryo", sans-serif;
  color: #333333;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
  font-weight: 500;
  line-height: 1.8;
}

.l-inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 767.99px) {
  .l-inner {
    max-width: 100%;
  }
}

.l-section {
  padding: 120px 0 140px;
}
@media screen and (max-width: 767.99px) {
  .l-section {
    padding: 80px 20px;
  }
}
.l-section__odd {
  background-color: #fff;
}
.l-section__even {
  background-color: #F7F5F2;
}

@media (hover: hover) {
  .l-logo {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .l-logo:hover {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.l-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: clamp(0.625rem, 0.331rem + 1.47vw, 1.25rem);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 10px;
}
@media screen and (max-width: 929px) {
  .l-list {
    display: none;
  }
}
.l-list__text {
  color: #fff;
  font-size: clamp(0.625rem, 0.496rem + 0.61vw, 0.875rem);
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .l-list__text:hover {
    color: #F46A00;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.l-button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
@media screen and (max-width: 767.99px) {
  .l-button {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.l-button__text {
  color: #fff;
  text-align: center;
}

.l-button__new, .l-button__existing {
  font-weight: 600;
}

.l-button__new {
  background-color: #E2431F;
  border: 2px solid #fff;
  color: #fff;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .l-button__new:hover {
    background-color: #fff;
    border: 2px solid #E2431F;
    color: #E2431F;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.l-button__existing {
  background-color: #fff;
  border: 2px solid #E2431F;
  color: #E2431F;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media (hover: hover) {
  .l-button__existing:hover {
    background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
    background: linear-gradient(to right, #f46a00, #fcd64e);
    border: 2px solid #fff;
    color: #fff;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.l-headline {
  margin-bottom: 60px;
}
@media screen and (max-width: 767.99px) {
  .l-headline {
    margin-bottom: 40px;
  }
}
.l-headline__en {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px;
  font-size: clamp(1.125rem, 1.061rem + 0.3vw, 1.25rem);
  text-transform: capitalize;
}
.l-headline__en::before {
  content: "";
  height: 3px;
  width: 120px;
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
  margin-right: 16px;
}
@media screen and (max-width: 767.99px) {
  .l-headline__en::before {
    width: 60px;
  }
}
.l-headline__jp {
  font-size: clamp(1.75rem, 1.364rem + 1.82vw, 2.5rem);
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.04em;
}

.l-text {
  position: relative;
}
.l-text__decoration::before, .l-text__decoration::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
}
.l-text__decoration::before {
  height: 3px;
  background-image: linear-gradient(to right, transparent, transparent 6px, #F7F5F2 6px, #F7F5F2 10px);
  background-size: 10px 3px;
  z-index: 1;
}
.l-text__decoration::after {
  height: 2px;
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
}

.l-cta {
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
  padding: 60px 0;
}
.l-cta .l-button {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.l-cta .l-button__text {
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
}
.l-cta .l-button__new, .l-cta .l-button__existing {
  border-radius: 100vmax;
  text-align: center;
  width: 360px;
  height: 70px;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
}
.l-cta .l-button__new a, .l-cta .l-button__existing a {
  display: block;
  line-height: 66px;
}
@media screen and (max-width: 767.99px) {
  .l-cta .l-button__new, .l-cta .l-button__existing {
    width: 100%;
  }
}

.l-fv {
  padding: 90px 0 60px;
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
}
@media screen and (max-width: 767.99px) {
  .l-fv {
    padding: 70px 0 40px;
  }
}
.l-fv .l-inner {
  padding: 0 20px;
}
.l-fv__container {
  position: relative;
  margin-bottom: 30px;
}
@media screen and (max-width: 767.99px) {
  .l-fv__container {
    margin-bottom: 60px;
  }
}
.l-fv__mockup {
  position: absolute;
  top: 60%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767.99px) {
  .l-fv__mockup {
    top: 50%;
  }
}
@media screen and (max-width: 500px) {
  .l-fv__mockup {
    top: 58%;
  }
}
.l-fv__mockup-image {
  max-width: 485px;
  max-height: 300px;
}
@media screen and (max-width: 500px) {
  .l-fv__mockup-image {
    max-width: 280px;
    max-height: 176px;
  }
}
.l-fv__contents {
  position: relative;
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 30px;
  max-width: 620px;
}
@media screen and (max-width: 767.99px) {
  .l-fv__contents {
    max-width: 100%;
  }
}
.l-fv__headline {
  color: #fff;
  font-size: clamp(1.75rem, 1.453rem + 1.4vw, 2.5rem);
  font-weight: 600;
  line-height: 1.4;
}
.l-fv__headline-decoration {
  font-size: clamp(3.375rem, 3.177rem + 0.93vw, 3.875rem);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(80%, rgba(252, 214, 78, 0.7)));
  background: linear-gradient(transparent 80%, rgba(252, 214, 78, 0.7) 80%);
}
.l-fv__message {
  color: #fff;
  font-size: clamp(1.125rem, 1.061rem + 0.3vw, 1.25rem);
}
@media screen and (max-width: 767.99px) {
  .l-fv__message {
    margin-right: 300px;
  }
}
@media screen and (max-width: 500px) {
  .l-fv__message {
    margin: 0;
  }
}
.l-fv__wrapper {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 10px;
}
@media screen and (max-width: 767.99px) {
  .l-fv__wrapper {
    margin-top: 180px;
  }
}
.l-fv .l-button {
  gap: 10px;
}
.l-fv .l-button__new, .l-fv .l-button__existing {
  border-radius: 100vmax;
  text-align: center;
  width: 290px;
  height: 70px;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
}
.l-fv .l-button__new a, .l-fv .l-button__existing a {
  display: block;
  line-height: 66px;
}
@media screen and (max-width: 767.99px) {
  .l-fv .l-button__new, .l-fv .l-button__existing {
    width: 100%;
  }
}
.l-fv__notes {
  color: #fff;
  font-size: clamp(0.875rem, 0.939rem + -0.3vw, 0.75rem);
  text-align: right;
  margin-right: 30px;
}
@media screen and (max-width: 767.99px) {
  .l-fv__notes {
    margin: 0;
  }
}
.l-fv__notes-link {
  text-decoration: underline;
}
.l-fv__instructions-container {
  background-color: #fff;
  padding: 30px clamp(1.875rem, 0.993rem + 4.41vw, 3.75rem);
  border-radius: 10px;
}
.l-fv__instructions-headline {
  margin-bottom: 20px;
  color: #F46A00;
  font-size: clamp(1.375rem, 1.311rem + 0.3vw, 1.5rem);
  font-weight: 600;
  text-align: center;
}
.l-fv__instructions-text {
  text-align: justify;
}

.l-feature {
  padding: 120px 0 100px;
}
@media screen and (max-width: 767.99px) {
  .l-feature {
    padding: 80px 20px;
  }
}
@media screen and (max-width: 767.99px) {
  .l-feature .l-headline {
    margin-bottom: 20px;
  }
}
.l-feature__wrapper {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 60px;
  padding: 0 20px;
}
@media screen and (max-width: 767.99px) {
  .l-feature__wrapper {
    gap: clamp(0rem, -3.571rem + 17.86vw, 5rem);
  }
}
.l-feature__container {
  display: -ms-grid;
  display: grid;
  -ms-grid-rows: auto 0 0 0 0.5fr;
  grid-template-rows: auto 0 0.5fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  max-width: 840px;
  margin: 40px auto;
  gap: 0 20px;
}
@media screen and (max-width: 767.99px) {
  .l-feature__container {
    -ms-grid-rows: 1fr 0 180px 0 1fr;
    grid-template-rows: 1fr 180px 1fr;
    gap: 0;
    margin: 0;
  }
}
.l-feature__container-odd .l-feature__headline {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media screen and (max-width: 767.99px) {
  .l-feature__container-odd .l-feature__headline {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.l-feature__container-odd .l-feature__icon {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
}
@media screen and (max-width: 767.99px) {
  .l-feature__container-odd .l-feature__icon {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin-bottom: 20px;
  }
}
.l-feature__container-odd .l-feature__text {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
@media screen and (max-width: 767.99px) {
  .l-feature__container-odd .l-feature__text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
.l-feature__container-even .l-feature__headline {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 2;
  grid-row: 1/3;
}
@media screen and (max-width: 767.99px) {
  .l-feature__container-even .l-feature__headline {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 1;
    -ms-grid-row-span: 1;
    grid-row: 1/2;
  }
}
.l-feature__container-even .l-feature__icon {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 3;
  grid-row: 1/4;
}
@media screen and (max-width: 767.99px) {
  .l-feature__container-even .l-feature__icon {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    margin-bottom: 30px;
  }
}
.l-feature__container-even .l-feature__text {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 3;
  -ms-grid-row-span: 1;
  grid-row: 3/4;
}
@media screen and (max-width: 767.99px) {
  .l-feature__container-even .l-feature__text {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 3;
    -ms-grid-row-span: 1;
    grid-row: 3/4;
  }
}
.l-feature__headline, .l-feature__text {
  max-width: 560px;
}
@media screen and (max-width: 767.99px) {
  .l-feature__headline, .l-feature__text {
    max-width: 100%;
  }
}
.l-feature__headline {
  position: relative;
  height: clamp(2.5rem, 2.206rem + 1.47vw, 3.125rem);
}
.l-feature__headline-text {
  position: absolute;
  font-size: clamp(1.25rem, 1.121rem + 0.61vw, 1.5rem);
  font-weight: 600;
  z-index: 2;
}
@media screen and (max-width: 767.99px) {
  .l-feature__headline-text {
    width: 100%;
    text-align: right;
  }
}
.l-feature__headline-number {
  position: absolute;
  bottom: -40px;
  background: -webkit-gradient(linear, left top, right top, from(rgba(244, 106, 0, 0.3)), to(rgba(252, 214, 78, 0.3)));
  background: linear-gradient(to right, rgba(244, 106, 0, 0.3), rgba(252, 214, 78, 0.3));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: clamp(5rem, 3.712rem + 6.06vw, 7.5rem);
  font-weight: 900;
  z-index: 1;
}
@media screen and (max-width: 767.99px) {
  .l-feature__headline-number {
    bottom: -50px;
  }
}
.l-feature__icon {
  text-align: center;
}
.l-feature__icon-image {
  max-width: 260px;
  max-height: 260px;
}
@media screen and (max-width: 767.99px) {
  .l-feature__icon-image {
    max-width: 180px;
    max-height: 180px;
  }
}
.l-feature__text {
  text-align: justify;
}

.l-service__wrapper {
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
  padding: 0 20px;
}
@media screen and (max-width: 767.99px) {
  .l-service__wrapper {
    padding: 0;
  }
}
.l-service__container {
  padding: 40px 30px;
  border-radius: 10px;
}
.l-service__container-odd {
  background-color: #fff;
}
.l-service__container-primary {
  background: -webkit-gradient(linear, left top, right top, from(rgba(249, 140, 34, 0.3)), to(rgba(252, 184, 60, 0.3)));
  background: linear-gradient(to right, rgba(249, 140, 34, 0.3), rgba(252, 184, 60, 0.3));
}
@media screen and (max-width: 979px) {
  .l-service__container-primary {
    background: -webkit-gradient(linear, left top, right top, from(rgba(244, 106, 0, 0.3)), to(rgba(252, 214, 78, 0.3)));
    background: linear-gradient(to right, rgba(244, 106, 0, 0.3), rgba(252, 214, 78, 0.3));
  }
}
.l-service__container-secondary {
  background: -webkit-gradient(linear, left top, right top, from(rgba(244, 106, 0, 0.3)), to(rgba(249, 140, 34, 0.3)));
  background: linear-gradient(to right, rgba(244, 106, 0, 0.3), rgba(249, 140, 34, 0.3));
}
@media screen and (max-width: 979px) {
  .l-service__container-secondary {
    background: -webkit-gradient(linear, left top, right top, from(rgba(244, 106, 0, 0.3)), to(rgba(252, 214, 78, 0.3)));
    background: linear-gradient(to right, rgba(244, 106, 0, 0.3), rgba(252, 214, 78, 0.3));
  }
}
.l-service__container-tertiary {
  background: -webkit-gradient(linear, left top, right top, from(rgba(252, 184, 60, 0.3)), to(rgba(252, 214, 78, 0.3)));
  background: linear-gradient(to right, rgba(252, 184, 60, 0.3), rgba(252, 214, 78, 0.3));
}
@media screen and (max-width: 979px) {
  .l-service__container-tertiary {
    background: -webkit-gradient(linear, left top, right top, from(rgba(244, 106, 0, 0.3)), to(rgba(252, 214, 78, 0.3)));
    background: linear-gradient(to right, rgba(244, 106, 0, 0.3), rgba(252, 214, 78, 0.3));
  }
}
.l-service__headline {
  margin-bottom: 50px;
}
.l-service__headline-text {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  position: relative;
  font-size: clamp(1.25rem, 1.121rem + 0.61vw, 1.5rem);
  font-weight: 600;
  text-align: center;
}
.l-service__headline-text::before {
  content: "";
  position: absolute;
  bottom: -20px;
  left: calc(50% - 15px);
  width: 30px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
}
.l-service__headline-text-decoration {
  width: 38px;
  margin-top: 2px;
  color: #F46A00;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-weight: 500;
  border: solid 2px #F46A00;
  border-radius: 7px;
  vertical-align: middle;
}
.l-service__text {
  text-align: justify;
}

.l-occupation__outer {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 30px;
  padding: 0 20px;
}
@media screen and (max-width: 850px) {
  .l-occupation__outer {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px 20px;
  }
}
@media screen and (max-width: 650px) {
  .l-occupation__outer {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media screen and (max-width: 449px) {
  .l-occupation__outer {
    display: -ms-grid;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }
}
@media screen and (max-width: 767.99px) {
  .l-occupation__outer {
    gap: 10px;
    padding: 0;
  }
}
.l-occupation__wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 10px 1fr;
  grid-template-columns: auto 1fr;
  gap: 10px;
  max-width: 840px;
  margin: 0 auto;
}
@media screen and (max-width: 850px) {
  .l-occupation__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4px;
    width: 100%;
  }
}
.l-occupation__container {
  -ms-grid-column: 2;
  -ms-grid-column-span: 1;
  grid-column: 2/3;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
  padding: 40px;
  background-color: #F7F5F2;
  border-radius: 0px 10px 10px 0px;
}
@media screen and (max-width: 850px) {
  .l-occupation__container {
    -ms-grid-column: 1;
    -ms-grid-column-span: 1;
    grid-column: 1/2;
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    grid-row: 2/3;
    padding: 30px;
    border-radius: 0px 0px 10px 10px;
  }
}
@media screen and (max-width: 850px) and (max-width: 767.99px) {
  .l-occupation__container {
    height: 100%;
    padding: 20px;
  }
}
.l-occupation__headline {
  margin-bottom: 20px;
}
.l-occupation__headline-text {
  font-size: clamp(1rem, 0.742rem + 1.21vw, 1.5rem);
  font-weight: 600;
  padding-bottom: 10px;
}
.l-occupation__sample {
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-column: 1/2;
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  grid-row: 1/2;
}
.l-occupation__sample-image {
  width: 310px;
  height: 100%;
  border-radius: 10px 0px 0px 10px;
}
@media screen and (max-width: 850px) {
  .l-occupation__sample-image {
    width: 100%;
    border-radius: 10px 10px 0px 0px;
  }
}
.l-occupation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
@media screen and (max-width: 767.99px) {
  .l-occupation__list {
    gap: 4px 2px;
  }
}
.l-occupation__list-item {
  font-size: clamp(0.75rem, 0.686rem + 0.3vw, 0.875rem);
}
.l-occupation__list-decoration {
  width: 16px;
  margin: 0;
  padding: 0;
  -webkit-transform: rotate(-60deg);
          transform: rotate(-60deg);
  -webkit-transform-origin: 50% 0%;
          transform-origin: 50% 0%;
  border: 0;
  border-top: 2px solid #333333;
}
@media screen and (max-width: 767.99px) {
  .l-occupation__list-decoration {
    width: 12px;
  }
}

.l-usagefee__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  padding: 0 20px;
}
@media screen and (max-width: 767.99px) {
  .l-usagefee__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 20px;
    padding: 0;
  }
}
.l-usagefee__free-image {
  width: 320px;
  border-radius: 10px;
}
@media screen and (max-width: 767.99px) {
  .l-usagefee__free-image {
    width: 350px;
  }
}
.l-usagefee__container {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 10px;
  width: 480px;
}
@media screen and (max-width: 767.99px) {
  .l-usagefee__container {
    width: 100%;
  }
}
.l-usagefee__headline {
  font-size: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
  font-weight: 600;
}
.l-usagefee__text {
  margin-bottom: 20px;
  text-align: justify;
}
.l-usagefee__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.l-usagefee__list-item {
  padding: 16px 10px;
  color: #F46A00;
  font-weight: 600;
}
.l-usagefee__list-table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2px;
  margin-bottom: 10px;
}
.l-usagefee__list-notes {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
.l-usagefee__table {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-usagefee__table-decoration {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}

.l-flow__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;
  gap: 10px;
  max-width: 840px;
  margin: 0 auto;
  padding: 0 20px;
}
@media screen and (max-width: 767.99px) {
  .l-flow__wrapper {
    padding: 0;
  }
}
.l-flow__container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 30px;
  width: 100%;
  margin: 0 auto;
  padding: 40px;
  background-color: #F7F5F2;
  border-radius: 10px;
}
@media screen and (max-width: 767.99px) {
  .l-flow__container {
    display: block;
    position: relative;
    padding: 40px 20px;
    min-height: 260px;
  }
}
.l-flow__icon-image {
  width: 120px;
  border-radius: 100%;
}
@media screen and (max-width: 767.99px) {
  .l-flow__icon {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    opacity: 0.2;
    z-index: 1;
  }
}
@media screen and (max-width: 767.99px) {
  .l-flow__contents {
    position: relative;
    width: 100%;
    z-index: 2;
  }
}
.l-flow__headline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  margin-bottom: 20px;
}
.l-flow__headline-text {
  font-size: clamp(1.25rem, 1.121rem + 0.61vw, 1.5rem);
  font-weight: 600;
  text-transform: uppercase;
}
.l-flow__headline-decoration {
  width: 20px;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
}
.l-flow__text {
  text-align: justify;
}
.l-flow__decoration {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 6px;
}
.l-flow__decoration-parts {
  width: 6px;
  height: 6px;
  background-color: #F46A00;
  border-radius: 100%;
}

.l-sp__footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 5;
}
.l-sp__contents {
  width: 100%;
  height: 80px;
  background-color: #E2431F;
  border-radius: 30px 30px 0 0;
  border-top: solid 2px #fff;
  border-left: solid 2px #fff;
  border-right: solid 2px #fff;
  text-align: center;
}
.l-sp__link {
  display: block;
  position: relative;
  padding: 30px 0 20px;
}
.l-sp__subheadline {
  position: absolute;
  top: -30%;
  right: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0;
  margin: 0 auto;
  z-index: 2;
}
.l-sp__subheadline-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 40px;
  background-color: #fff;
  font-size: clamp(1.125rem, 1.125rem + 0vw, 1.125rem);
  font-weight: 500;
  border-radius: 100vmax;
}
.l-sp__subheadline-gradation {
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.l-sp__subheadline-decoration {
  width: 12px;
  height: 10px;
  margin-top: -1px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.l-sp__headline {
  color: #fff;
  font-size: clamp(1.375rem, 1.375rem + 0vw, 1.375rem);
  font-weight: 600;
}

.l-footer {
  padding-top: 40px;
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
  color: #fff;
}
@media screen and (max-width: 767.99px) {
  .l-footer {
    padding: 60px 20px 30px;
  }
}
.l-footer__name {
  margin-bottom: 30px;
  text-align: center;
}
.l-footer__text {
  margin-bottom: 2px;
  font-size: clamp(0.875rem, 0.875rem + 0vw, 0.875rem);
}
.l-footer .l-logo {
  display: inline-block;
}
.l-footer .l-logo__image {
  width: 212px;
  height: 50px;
}
.l-footer__contents {
  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;
  max-width: 740px;
  margin: 0 auto;
}
@media screen and (max-width: 767.99px) {
  .l-footer__contents {
    -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;
    gap: 40px;
    max-width: 100%;
  }
}
.l-footer .l-list {
  gap: 30px;
  font-weight: normal;
}
@media screen and (max-width: 929px) {
  .l-footer .l-list {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
@media screen and (max-width: 767.99px) {
  .l-footer .l-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
  }
}
.l-footer .l-list__text {
  font-size: 16px;
  text-align: center;
}
.l-footer .l-list__link {
  display: block;
  padding: 20px 0;
}
@media screen and (max-width: 767.99px) {
  .l-footer .l-list__link {
    padding: 10px 0;
  }
}
.l-footer .l-list__decoration {
  width: 1px;
  height: 20px;
  background-color: #fff;
}
.l-footer__copyright {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  font-weight: normal;
  text-transform: capitalize;
  text-align: center;
}
.l-footer__copyright__name {
  text-transform: uppercase;
}

.p-form .l-footer {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 0;
}
@media screen and (max-width: 767.99px) {
  .p-form .l-footer {
    padding: 20px 0 10px;
  }
}
.p-form__thanks-button {
  width: 380px;
  height: 60px;
  margin: 0 auto;
  color: #F46A00;
  font-size: clamp(1.25rem, 1.25rem + 0vw, 1.25rem);
  text-align: center;
  border: 2px solid #F46A00;
  border-radius: 6px;
  line-height: 56px;
}
@media screen and (max-width: 767.99px) {
  .p-form__thanks-button {
    width: calc(100% - 25px);
  }
}
@media (hover: hover) {
  .p-form__thanks-button {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .p-form__thanks-button:hover {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}
.p-form__thanks-link {
  display: block;
}

.p-form .l-header {
  display: block;
  background: -webkit-gradient(linear, left top, right top, from(#f46a00), to(#fcd64e));
  background: linear-gradient(to right, #f46a00, #fcd64e);
}

.p-form__section {
  max-width: 840px;
  margin: 0 auto;
  padding: 60px 20px 120px;
}
@media screen and (max-width: 767.99px) {
  .p-form__section {
    width: 100%;
    padding: 40px 20px 80px;
  }
}
.p-form__headline {
  margin: 0 auto 20px;
}
.p-form .l-headline__en {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}
.p-form .l-headline__jp {
  text-align: left;
}
.p-form__subheadline {
  color: #F46A00;
  font-size: clamp(1.25rem, 1.121rem + 0.61vw, 1.5rem);
}
.p-form__text {
  margin-bottom: 20px;
  text-align: justify;
}
.p-form__text-link {
  color: #F46A00;
  font-weight: 600;
  text-decoration: underline;
}
.p-form__container {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767.99px) {
  .p-form__container {
    display: -ms-grid;
    display: grid;
    grid-auto-flow: row;
    gap: 20px;
    margin-bottom: 30px;
  }
}
.p-form__woman {
  max-width: clamp(8.75rem, 2.633rem + 28.79vw, 20.625rem);
  margin: 0 auto;
}
.p-form__woman-image {
  max-width: 100%;
}
.p-form__contents {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: row;
  gap: 20px;
  max-width: 480px;
  padding: 40px;
  background-color: rgba(244, 106, 0, 0.1);
  border-radius: 10px;
}
@media screen and (max-width: 767.99px) {
  .p-form__contents {
    max-width: 100%;
    padding: 30px 20px;
  }
}
.p-form__item-subheadline {
  margin-bottom: 3px;
  color: #F46A00;
  font-size: clamp(1rem, 1rem + 0vw, 1rem);
}
.p-form__item-space {
  margin-bottom: 5px;
}
.p-form__item-required {
  margin-right: 6px;
  padding: 0px 6px 1px;
  background-color: #E2431F;
  color: #fff;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  border-radius: 2px;
}
.p-form__item-input {
  width: 100%;
  height: 48px;
  margin: 1px;
  padding: 10px 14px;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
}
.p-form__item-input:focus-visible {
  margin: 1px;
  border: 2px solid rgba(244, 106, 0, 0.6);
}
.p-form__item-error {
  border: 2px solid #E2431F;
}
.p-form__item-prefectures {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 48px;
}
.p-form__item-prefectures::after {
  position: absolute;
  content: "";
  right: 14px;
  width: 16px;
  height: 10px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #333333;
  pointer-events: none;
}
.p-form__item-select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  padding: 10px 14px;
  background-color: #fff;
  color: #333333;
  font-size: 1em;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  cursor: pointer;
}
.p-form__item-select:focus-visible {
  margin: 1px 0;
  border: 2px solid rgba(244, 106, 0, 0.6);
}
.p-form__item-name {
  display: -ms-grid;
  display: grid;
  grid-auto-flow: column;
  gap: 4px;
}
.p-form__item-notes {
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
}
.p-form__item-notes-normal {
  color: rgba(51, 51, 51, 0.5);
}
.p-form__item-notes-error {
  color: #E2431F;
}
.p-form__item-check input[type=checkbox] {
  position: absolute;
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
.p-form__item-check input[type=checkbox]:focus-visible {
  opacity: 1;
  width: 24px;
  height: 24px;
  margin: 3px 0;
  border: 2px solid rgba(244, 106, 0, 0.6);
  border-radius: 3px;
}
.p-form__item-check input[type=checkbox] + span::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background-color: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  margin: -6px 6px -6px 0;
}
.p-form__item-check input[type=checkbox]:checked + span::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns=%22http://www.w3.org/2000/svg%22 width=%2224%22 height=%2224%22 viewBox=%220 0 24 24%22 fill=%22none%22 stroke=%22%23e2431f%22 stroke-width=%222.5%22 stroke-linecap=%22square%22 stroke-linejoin=%22arcs%22%3E%3Cpolyline points=%2220 6 9 17 4 12%22%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: -1px 0;
}
.p-form__item-check .p-form__item-subheadline {
  cursor: pointer;
}
.p-form__item-text {
  margin-top: 5px;
  padding: 10px 20px;
  font-size: clamp(0.75rem, 0.75rem + 0vw, 0.75rem);
  background-color: rgba(244, 106, 0, 0.2);
  border-radius: 3px;
  line-height: 24px;
}
.p-form__select-error {
  border: 2px solid #E2431F;
}
.p-form__check-error input[type=checkbox]:checked + span::before {
  background-position: -2px -1px;
}
.p-form__check-error input[type=checkbox] + span::before {
  content: "";
  border: 2px solid #E2431F;
}
.p-form__button {
  display: block;
  width: 480px;
  height: 70px;
  margin: 0 auto;
  font-size: clamp(1.375rem, 1.311rem + 0.3vw, 1.5rem);
  text-align: center;
  background-color: #C5C5C5;
  color: #fff;
  border-radius: 6px;
}
@media screen and (max-width: 767.99px) {
  .p-form__button {
    width: calc(100% - 25px);
  }
}
.p-form__send {
  background-color: #E2431F;
  cursor: pointer;
}
@media (hover: hover) {
  .p-form__send {
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
  .p-form__send:hover {
    opacity: 0.5;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
  }
}

.p-form {
  position: relative;
  min-height: 100vh;
  padding-bottom: 68px;
}
@media screen and (max-width: 767.99px) {
  .p-form {
    padding-bottom: 286px;
  }
}
.p-form__subheadline {
  margin-top: 40px;
  color: #F46A00;
  font-size: clamp(1.25rem, 1.121rem + 0.61vw, 1.5rem);
}
.p-form__thanks-text {
  margin-bottom: 60px;
}