@charset "UTF-8";
html {
  font-size: 100%;
}
@media (max-width: 1138px) {
  html {
    font-size: 1.4059753954vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 100%;
  }
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}

body {
  font-family: "Noto Sans JP", serif;
  color: #313131;
}

a,
button {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
a:hover,
button:hover {
  opacity: 0.7;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  a:hover,
  button:hover {
    opacity: 1;
  }
}

.js-fadeIn,
.js-fadeIns {
  opacity: 0;
}

/*****************************
* A Modern CSS Reset (https://github.com/hankchizljaw/modern-css-reset)
* 上記に、ul要素,ol要素,a要素への記述追加
*****************************/
/* Box sizing rules */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
  padding: 0;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
  color: inherit;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

button {
  border: none;
  padding: 0;
  background-color: transparent;
  background-color: initial;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
.l-inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  max-width: 1138px;
  padding-right: 1.5625rem;
  padding-left: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .l-inner {
    padding-right: 1.25rem;
    padding-left: 1.25rem;
  }
}
.l-inner.--md {
  max-width: 67.125rem;
}
.l-inner.--sm {
  max-width: 59.625rem;
}

.c-btn1 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4583333333;
  color: #fff;
  background-color: #F48018;
  border-radius: 0.5rem;
  display: inline-grid;
  grid-template-columns: auto 1fr 1.3125rem;
  gap: 1.0625rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0.4375rem 1.1875rem 0.375rem 0.375rem;
  -webkit-box-shadow: 0 0.4375rem 0 #cb7222;
          box-shadow: 0 0.4375rem 0 #cb7222;
  -webkit-animation: push 1.7s ease infinite;
          animation: push 1.7s ease infinite;
  position: relative;
  overflow: hidden;
  --push: 7px;
}
@media screen and (max-width: 767px) {
  .c-btn1 {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    min-width: 20.9375rem;
    grid-template-columns: auto 1fr 1.125rem;
    text-align: center;
    -webkit-box-shadow: 0 0.125rem 0 #cb7222;
            box-shadow: 0 0.125rem 0 #cb7222;
    padding: 0.1875rem 0.75rem 0.1875rem 0.1875rem;
    --push: 2px;
    border-radius: 0.25rem;
  }
}
.c-btn1::before {
  content: "無料";
  display: block;
  position: relative;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.875rem 0.875rem 1.0625rem;
  background-color: #FFEA04;
  color: #F48018;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-btn1::before {
    font-size: 0.875rem;
    line-height: 1.4285714286;
    padding: 0.625rem 0.75rem 0.75rem 0.6875rem;
    border-radius: 0.1875rem;
  }
}
.c-btn1::after {
  content: "";
  display: block;
  width: 1.3125rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/btn_arrow.svg) no-repeat center center/contain;
  margin-top: 0.125rem;
}
@media screen and (max-width: 767px) {
  .c-btn1::after {
    width: 1.125rem;
  }
}
@media (any-hover: hover) {
  .c-btn1:hover {
    opacity: 1;
  }
}

.c-btn1__reflect {
  -webkit-animation: reflect 2s ease-in-out infinite;
          animation: reflect 2s ease-in-out infinite;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
  width: 1.875rem;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}

.c-btn1.--sm {
  font-size: 0.9375rem;
  line-height: 1.4;
  gap: 0.625rem;
  -webkit-box-shadow: 0 0.25rem 0 #cb7222;
          box-shadow: 0 0.25rem 0 #cb7222;
  --push: 4px;
}
@media screen and (max-width: 767px) {
  .c-btn1.--sm {
    font-size: 0.75rem;
    min-width: 0;
    min-width: initial;
    min-height: 2.625rem;
    --push: 2px;
    border-radius: 0.25rem;
  }
}
.c-btn1.--sm::before {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  padding: 0.25rem 1.125rem 0.3125rem;
}
@media screen and (max-width: 767px) {
  .c-btn1.--sm::before {
    font-size: 0.625rem;
    line-height: 1.5;
    padding: 0.5rem 0.375rem;
  }
}

.c-btn1.--md {
  font-size: 1.25rem;
  min-width: 0;
  min-width: initial;
  width: 100%;
}
.c-btn1.--md::before {
  font-size: 1.125rem;
  padding: 0.6875rem 0.75rem 0.875rem;
}

@-webkit-keyframes push {
  0% {
    -webkit-box-shadow: 0 var(--push) 0 #cb7222;
            box-shadow: 0 var(--push) 0 #cb7222;
    translate: 0 0;
  }
  60% {
    -webkit-box-shadow: 0 var(--push) 0 #cb7222;
            box-shadow: 0 var(--push) 0 #cb7222;
    translate: 0 0;
  }
  70% {
    -webkit-box-shadow: 0 0 0 #cb7222;
            box-shadow: 0 0 0 #cb7222;
    translate: 0 var(--push);
  }
  80% {
    -webkit-box-shadow: 0 var(--push) 0 #cb7222;
            box-shadow: 0 var(--push) 0 #cb7222;
    translate: 0 0;
  }
  90% {
    -webkit-box-shadow: 0 0 0 #cb7222;
            box-shadow: 0 0 0 #cb7222;
    translate: 0 var(--push);
  }
  to {
    -webkit-box-shadow: 0 var(--push) 0 #cb7222;
            box-shadow: 0 var(--push) 0 #cb7222;
    translate: 0 0;
  }
}

@keyframes push {
  0% {
    -webkit-box-shadow: 0 var(--push) 0 #cb7222;
            box-shadow: 0 var(--push) 0 #cb7222;
    translate: 0 0;
  }
  60% {
    -webkit-box-shadow: 0 var(--push) 0 #cb7222;
            box-shadow: 0 var(--push) 0 #cb7222;
    translate: 0 0;
  }
  70% {
    -webkit-box-shadow: 0 0 0 #cb7222;
            box-shadow: 0 0 0 #cb7222;
    translate: 0 var(--push);
  }
  80% {
    -webkit-box-shadow: 0 var(--push) 0 #cb7222;
            box-shadow: 0 var(--push) 0 #cb7222;
    translate: 0 0;
  }
  90% {
    -webkit-box-shadow: 0 0 0 #cb7222;
            box-shadow: 0 0 0 #cb7222;
    translate: 0 var(--push);
  }
  to {
    -webkit-box-shadow: 0 var(--push) 0 #cb7222;
            box-shadow: 0 var(--push) 0 #cb7222;
    translate: 0 0;
  }
}
@-webkit-keyframes reflect {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
  }
  80% {
    opacity: 0.5;
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
  }
  81% {
    opacity: 1;
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
  }
}
@keyframes reflect {
  0% {
    opacity: 0;
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
  }
  80% {
    opacity: 0.5;
    -webkit-transform: scale(0) rotate(45deg);
            transform: scale(0) rotate(45deg);
  }
  81% {
    opacity: 1;
    -webkit-transform: scale(4) rotate(45deg);
            transform: scale(4) rotate(45deg);
  }
  to {
    opacity: 0;
    -webkit-transform: scale(50) rotate(45deg);
            transform: scale(50) rotate(45deg);
  }
}
.c-form {
  -ms-flex-item-align: center;
      align-self: center;
  border-radius: 0.5rem;
  max-width: 20rem;
  -webkit-box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
          box-shadow: 0 0.1875rem 0.375rem rgba(0, 0, 0, .16);
  width: 100%;
  position: absolute;
  top: 2rem;
  right: 8.125rem;
}
@media screen and (min-width: 1440px) {
  .c-form {
    right: calc(50% - 550px);
  }
}
@media screen and (max-width: 1300px) {
  .c-form {
    right: 1.5625rem;
  }
}
@media screen and (max-width: 767px) {
  .c-form {
    display: none;
  }
}

.c-form-head {
  border-radius: 0.5rem 0.5rem 0 0;
  padding: 0.9375rem 0.625rem;
  background-color: #6EB92B;
}

.c-form-title {
  color: #fff;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1.4545454545;
  text-align: center;
}

.c-form-body {
  background-color: #fff;
  border-radius: 0 0 0.75rem 0.75rem;
  padding: 1.0625rem 0.75rem 1.25rem;
}

/* form */
.form__inner {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}

.form__group.required .form__label--required {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.375rem;
  position: relative;
}

.form__group.required .form__label--required:after {
  display: grid;
  place-items: center;
  border-radius: 0.1875rem;
  width: 2.125rem;
  height: 14px;
  background-color: red;
  content: "必須";
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.form__group.required .form__label--any {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.375rem;
  position: relative;
}

.form__group.required .form__label--any:after {
  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;
  border-radius: 0.1875rem;
  width: 2.125rem;
  height: 0.875rem;
  background-color: #999;
  content: "任意";
  color: #fff;
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
}

.form__group + .form__group {
  margin-top: 0.75rem;
}

.form__label {
  color: #313131;
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.06em;
}

.form__label + .form__group-row,
.form__label + .input,
.form__label + .select,
.form__label + .textarea {
  margin-top: 0.375rem;
}

.form__group-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.9375rem;
}

.form__group-row--radio {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.5rem;
}

.form__group-row--radio .form__group-row-item {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.form__group-row-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.25rem;
}

.form .input {
  position: relative;
  width: 100%;
  z-index: 1;
}

.form .input.focus:before {
  display: block;
}

.form .input:before {
  background-color: transparent;
  border: 1px solid #e24e4e;
  border-radius: 0.4375rem;
  content: "";
  display: none;
  height: calc(100% + 0.4375rem);
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: calc(100% + 0.4375rem);
  z-index: -1;
}

/* 入力フィールドの初期状態 */
.form .input input {
  background-color: #fffedb;
  border: 1px solid #e3e3e3;
  border-radius: 0.3125rem;
  color: #313131;
  font-size: 0.75rem;
  line-height: 1;
  padding: 0.5rem 0.625rem;
  width: 100%;
}

/* 入力がある場合 */
.form .input input.filled {
  background-color: #ffffff; /* 入力時の背景色を白に */
}

.form .input--any input {
  background: white;
}

.form .input input:focus-visible {
  background-color: #f8dcdc;
  border-color: #e59696;
  outline: none;
}

.form .input input::-webkit-input-placeholder {
  color: #989898;
}

.form .input input::-moz-placeholder {
  color: #989898;
}

.form .input input::-ms-input-placeholder {
  color: #989898;
}

.form .input input::placeholder {
  color: #989898;
}

.form .radio {
  height: 1.125rem;
  position: relative;
  width: 1.125rem;
}

.form .radio input {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
}

.form .radio input:after {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 50%;
  content: "";
  display: block;
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
}

.form .radio input:checked:after {
  background-color: #313131;
  -webkit-box-shadow: inset 0 0 0 0.1875rem #fff;
          box-shadow: inset 0 0 0 0.1875rem #fff;
}

.form__btn {
  margin-top: 0px;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 10px;
}

.form__btn .c-btn1 {
  margin: 0 10px;
}

.c-title1 {
  color: #fff;
  background-color: #6EB92B;
  text-align: center;
  position: relative;
  padding: 1.8125rem;
}
@media screen and (max-width: 767px) {
  .c-title1 {
    padding: 2.6875rem 1rem 2.3125rem;
  }
}
.c-title1::after {
  content: "";
  display: block;
  width: 4.5rem;
  height: 1.25rem;
  background: url(../images/title_arrow.svg) no-repeat center/contain;
  position: absolute;
  bottom: -1.1875rem;
  left: 50%;
  translate: -50% 0;
}

.c-title1__sub {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4375;
}
@media screen and (max-width: 767px) {
  .c-title1__sub {
    font-size: 1.25rem;
    line-height: 1.45;
  }
}

.c-title1__main {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4583333333;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.75rem;
}
@media screen and (max-width: 767px) {
  .c-title1__main {
    font-size: 1rem;
    gap: 0.375rem;
    margin-top: 0.4375rem;
  }
}
.c-title1__main::before, .c-title1__main::after {
  content: "";
  display: block;
  width: 0.5625rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #fff;
  border-radius: 50%;
}
.c-title1__main::before {
  justify-self: flex-end;
}

.p-case {
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  background-color: #f0f0ef;
}
@media screen and (max-width: 767px) {
  .p-case {
    background-color: transparent;
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}

.p-case__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-case__title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.p-case__items {
  margin-top: 2.5rem;
  counter-reset: num;
  display: grid;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-case__items {
    margin-top: 1.5rem;
  }
}

.p-case__item {
  background-color: #fff;
  border-radius: 0.5rem;
  counter-increment: num;
}
@media screen and (max-width: 767px) {
  .p-case__item {
    border-bottom: 2px solid #D9D9D9;
    border-radius: 0;
  }
}

.p-case__item:nth-child(1) {
  padding: 1rem 1.25rem 3.75rem;
}
@media screen and (max-width: 767px) {
  .p-case__item:nth-child(1) {
    padding: 0;
    padding-bottom: 2.5rem;
  }
}

.p-case__item:nth-child(2) {
  padding: 1rem 1.25rem 2.75rem;
}
@media screen and (max-width: 767px) {
  .p-case__item:nth-child(2) {
    padding: 2.5rem 0;
  }
}

.p-case__item:nth-child(3) {
  padding: 1rem 1.25rem 0;
}
@media screen and (max-width: 767px) {
  .p-case__item:nth-child(3) {
    padding: 2.5rem 0 0;
    border-bottom: 0;
  }
}

.p-case__itemTitle {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.875rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e8e8e8;
}
@media screen and (max-width: 767px) {
  .p-case__itemTitle {
    font-size: 1.125rem;
    gap: 0.5rem;
    border-bottom: 0;
    padding-bottom: 0;
  }
}
.p-case__itemTitle::before {
  content: counter(num, decimal-leading-zero);
  display: block;
  width: 3.625rem;
  height: auto;
  aspect-ratio: 1;
  background-color: #6EB92B;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-family: "Oswald", sans-serif;
  font-size: 1.9375rem;
  line-height: 1;
  font-weight: 400;
  justify-self: flex-end;
}

.p-case__itemText {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-case__itemText {
    font-size: 0.875rem;
    margin-top: 1rem;
    text-align: left;
  }
}
.p-case__itemText .u-green {
  color: #6EB92B;
}

.p-case__img {
  margin: 1.875rem auto 0;
  width: 37.375rem;
}
@media screen and (max-width: 767px) {
  .p-case__img {
    width: 81.4925373134%;
    margin-top: 1rem;
  }
}
.p-case__img img {
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 598/330;
}
@media screen and (max-width: 767px) {
  .p-case__img img {
    aspect-ratio: 273/495;
  }
}

.p-case__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding-left: 1.875rem;
  margin-top: -1.5rem;
}
@media screen and (max-width: 767px) {
  .p-case__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0;
    margin-top: 0;
  }
}
.p-case__box .u-green {
  color: #6EB92B;
}

.p-case__boxImg {
  width: 18.4375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-case__boxImg {
    width: 11.3125rem;
    margin: 0 auto;
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}

.p-case__body {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-case__body {
    margin-top: 1rem;
  }
}

.p-case__boxText {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .p-case__boxText {
    font-size: 0.875rem;
  }
}

.p-case__lists {
  margin-top: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-case__lists {
    margin-top: 1.125rem;
  }
}

.p-case__list {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 2.0555555556;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-case__list {
    font-size: 1rem;
  }
}
.p-case__list::before {
  content: "";
  display: block;
  width: 1.25rem;
  height: auto;
  aspect-ratio: 1;
  background: url(../images/icon_check.svg) no-repeat center center/contain;
}

.p-company {
  padding-top: 5rem;
}

.p-company__inner {
  max-width: 48.125rem;
}

.p-company__title {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.45;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-company__title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.p-company__items {
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-company__items {
    margin-top: 1.5rem;
  }
}

.p-company__item {
  display: grid;
  grid-template-columns: 10.5rem 1fr;
  gap: 1rem;
  padding: 1.5625rem 0;
  border-bottom: 1px solid #F0F0EF;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-company__item {
    display: block;
  }
}
.p-company__item::before, .p-company__item::after {
  content: "";
  display: block;
  width: 10.5rem;
  height: 1px;
  background-color: #6EB92B;
  position: absolute;
  bottom: -1px;
  left: 0;
}
.p-company__item::before {
  opacity: 0;
}

.p-company__item:first-child {
  border-top: 1px solid #F0F0EF;
}
.p-company__item:first-child::before {
  bottom: auto;
  bottom: initial;
  top: -1px;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .p-company__item:last-child {
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .p-company__item:last-child::after {
    display: none;
  }
}

.p-company__head {
  font-size: 1rem;
  font-weight: bold;
  line-height: 1.375;
}
@media screen and (max-width: 767px) {
  .p-company__head {
    font-size: 0.875rem;
  }
}

.p-company__body {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375;
  padding: 0 1rem;
}
@media screen and (max-width: 767px) {
  .p-company__body {
    font-size: 0.875rem;
    padding: 0;
    margin-top: 1rem;
  }
}
.p-company__body a {
  color: #6EB92B;
  text-decoration: underline;
}

.p-cta {
  color: #fff;
  background-color: #6EB92B;
}

.p-cta__inner {
  max-width: 63.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  padding-top: 2rem;
  padding-bottom: 3rem;
}
@media screen and (max-width: 767px) {
  .p-cta__inner {
    display: block;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
  }
}

.p-cta__btn {
  margin-left: 5rem;
}
@media screen and (max-width: 767px) {
  .p-cta__btn {
    margin: 0;
    text-align: center;
  }
}

.p-cta__telBtn {
  position: relative;
  margin-top: 0.4375rem;
  overflow: hidden;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-bottom: 0.1875rem;
}

.p-cta__telBtnImg {
  width: 20.9375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: auto;
  margin-right: auto;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
  -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
          filter: drop-shadow(0 0.125rem 0 #13508d);
  -webkit-animation: push-sp 1.7s ease infinite;
          animation: push-sp 1.7s ease infinite;
}
@-webkit-keyframes push-sp {
  0% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  60% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  70% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0 0 #13508D);
            filter: drop-shadow(0 0 0 #13508D);
    translate: 0 0.125rem;
  }
  80% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  90% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0 0 #13508D);
            filter: drop-shadow(0 0 0 #13508D);
    translate: 0 0.125rem;
  }
  to {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
}
@keyframes push-sp {
  0% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  60% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  70% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0 0 #13508D);
            filter: drop-shadow(0 0 0 #13508D);
    translate: 0 0.125rem;
  }
  80% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  90% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0 0 #13508D);
            filter: drop-shadow(0 0 0 #13508D);
    translate: 0 0.125rem;
  }
  to {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
}

.p-cta__reflect {
  -webkit-animation: reflect 2s ease-in-out infinite;
          animation: reflect 2s ease-in-out infinite;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 1;
  width: 1.875rem;
  height: 100%;
  background-color: #fff;
  opacity: 0;
}

.p-cta__telBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.375rem;
  margin-left: 1.875rem;
}
@media screen and (max-width: 767px) {
  .p-cta__telBox {
    display: none;
  }
}

.p-cta__icon {
  width: 2.625rem;
  height: 2.8125rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-top: 0.9375rem;
}

.p-cta__num {
  font-size: 2.9375rem;
  font-family: "Oswald", sans-serif;
  line-height: 1.4893617021;
  display: block;
}

.p-cta__info {
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.3125rem;
}

.p-cta__label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4166666667;
  color: #6EB92B;
  background-color: #fff;
  padding: 0.0625rem 0.5rem 0.125rem;
  border-radius: 0.25rem;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.p-cta__time {
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1.4;
  display: block;
}

.p-cta__img {
  width: 19rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: 0;
  right: 1.5625rem;
}
@media screen and (max-width: 767px) {
  .p-cta__img {
    display: none;
  }
}

.p-cta2 {
  background-color: #6EB92B;
  padding-top: 0.625rem;
  padding-bottom: 0.75rem;
  position: sticky;
  bottom: 0;
  width: 100%;
  z-index: 10;
}

.p-cta2__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  max-width: 39.875rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-cta2__inner {
    padding: 0 0.625rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-cta2__text {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  font-weight: bold;
  color: #fff;
  margin-left: 8.8125rem;
}
@media screen and (max-width: 767px) {
  .p-cta2__text {
    display: none;
  }
}

.p-cta2__img {
  width: 8.8125rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  position: absolute;
  bottom: -0.75rem;
  left: 1.5625rem;
  aspect-ratio: 141/95;
}
@media screen and (max-width: 767px) {
  .p-cta2__img {
    display: none;
  }
}

.p-cta2__arrow {
  width: 2.625rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-cta2__arrow {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .p-cta2__btns {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5625rem;
  }
}

.p-cta2__btn {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: 0.75rem;
}
@media screen and (max-width: 767px) {
  .p-cta2__btn {
    margin-left: 0;
    width: 10.625rem;
  }
}
.p-cta2__btn::before {
  content: "10秒完結";
  font-size: 0.625rem;
  font-weight: 500;
  line-height: 1.5;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1875rem 0.9375rem;
  border-radius: 100vmax;
  background-color: #fff;
  position: absolute;
  top: -1rem;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-cta2__btn::before {
    display: none;
  }
}
.p-cta2__btn::after {
  content: "";
  display: block;
  width: 0.625rem;
  height: 0.625rem;
  background-color: #fff;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  top: 0.0625rem;
  left: 50%;
  translate: -50% 0;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-cta2__btn::after {
    display: none;
  }
}

.p-cta2__reflect {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-cta2__reflect {
    -webkit-animation: reflect 2s ease-in-out infinite;
            animation: reflect 2s ease-in-out infinite;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    z-index: 1;
    width: 1.875rem;
    height: 100%;
    background-color: #fff;
    opacity: 0;
    display: block;
  }
}

.p-cta2__btn.--tel {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-cta2__btn.--tel {
    width: 11rem;
    display: block;
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    -webkit-animation: push-sp 1.7s ease infinite;
            animation: push-sp 1.7s ease infinite;
    position: relative;
    overflow: hidden;
    grid-template-columns: auto 1fr 1.125rem;
  }
}
.p-cta2__btn.--tel img {
  width: 100%;
  height: 2.75rem;
  -o-object-fit: contain;
     object-fit: contain;
}
@keyframes push-sp {
  0% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  60% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  70% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0 0 #13508d);
            filter: drop-shadow(0 0 0 #13508d);
    translate: 0 0.125rem;
  }
  80% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
  90% {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0 0 #13508d);
            filter: drop-shadow(0 0 0 #13508d);
    translate: 0 0.125rem;
  }
  to {
    filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur in="SourceAlpha" stdDeviation="0" /><feOffset dx="1" dy="1" result="offsetblur" /><feFlood flood-color="rgba(19,80,141,1)" /><feComposite in2="offsetblur" operator="in" /><feMerge><feMergeNode /><feMergeNode in="SourceGraphic" /></feMerge></filter></svg>#filter');
    -webkit-filter: drop-shadow(0 0.125rem 0 #13508d);
            filter: drop-shadow(0 0.125rem 0 #13508d);
    translate: 0 0;
  }
}

.p-era {
  padding-top: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-era {
    padding-top: 1.5rem;
  }
}

.p-era__sub1 {
  font-size: 1rem;
  font-weight: 500;
  color: #fff;
  background-color: #6EB92B;
  border-radius: 100vmax;
  padding: 0.1875rem 1.625rem 0.3125rem;
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-era__sub1 {
    font-size: 0.875rem;
    padding: 0.375rem 1.25rem;
  }
}
.p-era__sub1::after {
  content: "";
  display: block;
  width: 0.5625rem;
  height: 0.4375rem;
  background-color: #6EB92B;
  -webkit-clip-path: polygon(50% 100%, 0 0, 100% 0);
          clip-path: polygon(50% 100%, 0 0, 100% 0);
  position: absolute;
  bottom: 0.0625rem;
  left: 50%;
  translate: -50% 100%;
}
@media screen and (max-width: 767px) {
  .p-era__sub1::after {
    width: 0.625rem;
    height: 0.5625rem;
  }
}

.p-era__title {
  margin-top: 1.5625rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-era__title {
    margin-top: 0.625rem;
  }
}

.p-era__sub2 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
}
@media screen and (max-width: 767px) {
  .p-era__sub2 {
    font-size: 1.125rem;
  }
}

.p-era__main {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.45;
  color: #6EB92B;
}
@media screen and (max-width: 767px) {
  .p-era__main {
    font-size: 2rem;
  }
}
.p-era__main .u-sm {
  font-size: 1.5rem;
  line-height: 1.25;
  color: #313131;
}
@media screen and (max-width: 767px) {
  .p-era__main .u-sm {
    margin-left: 0.5rem;
    display: inline-block;
  }
}

.p-era__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.4444444444;
  text-align: center;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-era__text {
    font-size: 0.875rem;
    line-height: 2;
    margin-top: 1.5rem;
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}

.p-era__note1 {
  font-size: 0.75rem;
  line-height: 1.4166666667;
  margin-top: 0.3125rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-era__note1 {
    text-align: left;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    min-width: 20.9375rem;
  }
}

.p-era__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .p-era__items {
    grid-template-columns: 1fr;
    margin-top: 1.5625rem;
    gap: 0.875rem;
  }
}

.p-era__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.1875rem;
  position: relative;
  z-index: 1;
  padding-bottom: 0.9375rem;
}
@media screen and (max-width: 767px) {
  .p-era__item {
    gap: 0.9375rem;
    padding-bottom: 1.875rem;
  }
}
.p-era__item::after {
  content: "";
  display: block;
  width: 100%;
  height: 10.625rem;
  border-radius: 0.5rem;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-era__item::after {
    height: 11.25rem;
  }
}

.p-era__item:nth-child(2) .p-era__label {
  background-color: #FF7676;
}
.p-era__item:nth-child(2) .p-era__num {
  color: #FF7676;
}

.p-era__img {
  width: 7.25rem;
}
@media screen and (max-width: 767px) {
  .p-era__img {
    width: 5.75rem;
  }
}
.p-era__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 116/210;
}
@media screen and (max-width: 767px) {
  .p-era__img img {
    aspect-ratio: 92/168;
  }
}

.p-era__body {
  margin-top: 5rem;
}
@media screen and (max-width: 767px) {
  .p-era__body {
    margin-top: 3.75rem;
  }
}

.p-era__label {
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  color: #fff;
  display: block;
  padding: 0.0625rem 0.625rem 0.125rem;
  background-color: #2680ea;
  min-width: 10.625rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  border-radius: 100vmax;
}
@media screen and (max-width: 767px) {
  .p-era__label {
    font-size: 0.9375rem;
    min-width: 8.375rem;
  }
}

.p-era__num {
  font-size: 4.8125rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  color: #2680ea;
  display: block;
}
@media screen and (max-width: 767px) {
  .p-era__num {
    font-size: 3.8125rem;
    margin-top: 0.5rem;
  }
}
.p-era__num .u-sm {
  font-size: 2.9375rem;
}
@media screen and (max-width: 767px) {
  .p-era__num .u-sm {
    font-size: 2.3125rem;
  }
}

.p-era__note {
  font-size: 0.75rem;
  line-height: 1.25;
  margin-top: 0.9375rem;
}

.p-example {
  padding-bottom: 7.4375rem;
  margin-top: -0.0625rem;
}
@media screen and (max-width: 767px) {
  .p-example {
    margin-top: -1.5625rem;
    padding-bottom: 5rem;
  }
}

.p-example__inner {
  max-width: 71.125rem;
}

.p-example__img {
  width: 100%;
  margin-top: 5.25rem;
}
@media screen and (max-width: 767px) {
  .p-example__img {
    margin-top: 2.75rem;
  }
}
.p-example__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-example__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 7.375rem;
  margin-top: 4.8125rem;
  position: relative;
  padding-bottom: 8.8125rem;
  max-width: 59.875rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 767px) {
  .p-example__items {
    grid-template-columns: 1fr;
    gap: 0.5rem;
    margin-top: 2rem;
    padding-bottom: 12.375rem;
  }
}
.p-example__items::before {
  content: "";
  display: block;
  width: 10.3125rem;
  height: 14.875rem;
  background: url(../images/example_img2.png) no-repeat center/contain;
  position: absolute;
  top: -1.3125rem;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-example__items::before {
    width: 7.1875rem;
    height: 10.3125rem;
    top: auto;
    top: initial;
    bottom: 2.5rem;
    z-index: 1;
  }
}
.p-example__items::after {
  content: "";
  display: block;
  width: calc(100% - 3.375rem);
  height: 0.25rem;
  background-color: #d9d9d9;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .p-example__items::after {
    width: 100%;
    height: 0.125rem;
  }
}

.p-example__item {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.375;
  background-color: #f0f0ef;
  text-align: center;
  padding: 2rem;
  border-radius: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-example__item {
    padding: 1.25rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.5rem;
  }
}

.p-example__box {
  max-width: 56.5rem;
  width: 100%;
  margin: 3.5rem auto 0;
}

.p-example__boxTitle {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.25;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-example__boxTitle {
    font-size: 1.125rem;
  }
}

.p-example__boxText {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-example__boxText {
    font-size: 0.875rem;
  }
}

.p-example__boxImg {
  margin-top: 2rem;
  max-width: 49rem;
  width: 100%;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .p-example__boxImg {
    margin-top: 1.5rem;
  }
}
.p-example__boxImg img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-example2 {
  padding-top: 0.5rem;
  background-color: #F0F0EF;
  padding-bottom: 7.4375rem;
}
@media screen and (max-width: 767px) {
  .p-example2 {
    padding-bottom: 5rem;
  }
}

.p-example3 {
  padding-top: 0.5rem;
  padding-bottom: 7.125rem;
}
@media screen and (max-width: 767px) {
  .p-example3 {
    padding-bottom: 7.9375rem;
  }
}

.p-example3__text {
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
  margin-top: 4.25rem;
}
@media screen and (max-width: 767px) {
  .p-example3__text {
    font-size: 0.875rem;
    text-align: left;
    margin-top: 2.75rem;
  }
}

.p-example3__wrap {
  background-color: #f0f0ef;
  border-radius: 1rem;
  padding: 2.3125rem 2.4375rem 3rem 3rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-example3__wrap {
    background-color: transparent;
    padding: 0;
    border-radius: 0;
    margin-top: 1.5rem;
  }
}

.p-example3__box {
  display: grid;
  grid-template-columns: 526fr 381fr;
  gap: 1.875rem;
  margin-top: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .p-example3__box {
    display: block;
  }
}

.p-example3__lead {
  font-size: 1.875rem;
  font-weight: bold;
  line-height: 1.4666666667;
  padding-left: 1.125rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-example3__lead {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    padding-left: 0.875rem;
  }
}
.p-example3__lead::before {
  content: "";
  display: block;
  width: 0.25rem;
  height: calc(100% - 0.6875rem);
  background-color: #6EB92B;
  position: absolute;
  top: 0.5rem;
  left: 0;
}
@media screen and (max-width: 767px) {
  .p-example3__lead::before {
    height: 100%;
    top: 0;
  }
}
.p-example3__lead .u-sm {
  display: inline-block;
  font-size: 1.25rem;
  line-height: 1.45;
  margin-left: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-example3__lead .u-sm {
    font-size: 0.875rem;
  }
}

.p-example3__img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 526/377;
}
@media screen and (max-width: 767px) {
  .p-example3__img {
    aspect-ratio: 335/240;
  }
}

.p-example3__body {
  display: grid;
  gap: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-example3__body {
    margin-top: 1.5rem;
  }
}

.p-example3__question {
  font-size: 1.0625rem;
  font-weight: 900;
  line-height: 1.4117647059;
}
@media screen and (max-width: 767px) {
  .p-example3__question {
    font-size: 1rem;
  }
}

.p-example3__answer1 {
  font-size: 1.125rem;
  font-weight: 900;
  line-height: 1.4444444444;
  color: #F48018;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-example3__answer1 {
    font-size: 1rem;
  }
}
.p-example3__answer1::before {
  content: "";
  display: block;
  width: 0.875rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #F48018;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-example3__answer1::before {
    margin-top: 0.3125rem;
  }
}

.p-example3__answer2 {
  font-size: 1rem;
  font-weight: 900;
  line-height: 1.5;
  color: #6EB92B;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-example3__answer2 {
    font-size: 0.875rem;
  }
}
.p-example3__answer2::before {
  content: "";
  display: block;
  width: 0.875rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #6EB92B;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-example3__answer2::before {
    margin-top: 0.1875rem;
  }
}

.p-example3__answer3 {
  font-size: 1rem;
  line-height: 1.75;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-example3__answer3 {
    font-size: 0.75rem;
  }
}
.p-example3__answer3::before {
  content: "";
  display: block;
  width: 0.875rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
}

.p-example3__answer4 {
  font-size: 0.75rem;
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.375rem;
  color: #555555;
}
@media screen and (max-width: 767px) {
  .p-example3__answer4 {
    font-size: 0.625rem;
  }
}
.p-example3__answer4::before {
  content: "";
  display: block;
  width: 0.875rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
}

.p-example3__note {
  font-size: 0.625rem;
  line-height: 1.8;
  padding-left: 1.25rem;
}
@media screen and (max-width: 767px) {
  .p-example3__note {
    margin-top: 1.25rem;
    padding-left: 0;
  }
}

.p-faq {
  padding-top: 5rem;
  padding-bottom: 7.5rem;
  background-color: #f0f0ef;
}
@media screen and (max-width: 767px) {
  .p-faq {
    padding-top: 2.5rem;
    padding-bottom: 0.5rem;
  }
}

@media screen and (max-width: 767px) {
  .p-faq__inner {
    padding: 0;
  }
}

.p-faq__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-faq__title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.p-faq__items {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-faq__items {
    gap: 0.5rem;
  }
}

.p-faq__item {
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 1.25rem 1.875rem 1.625rem;
}
@media screen and (max-width: 767px) {
  .p-faq__item {
    border-radius: 0;
    padding: 0.625rem 0 1rem;
  }
}

.p-faq__head {
  position: relative;
  width: 100%;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.625;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__head {
    font-size: 0.875rem;
    padding: 0 0.625rem;
  }
}
.p-faq__head::before {
  content: "Q.";
  font-size: 1.9375rem;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #6EB92B;
}

.p-faq__head p {
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-faq__head p {
    margin-top: 0.125rem;
  }
}

.p-faq__body {
  overflow: hidden;
  width: 100%;
  height: 0;
  -webkit-transition: all 0.25s ease;
  transition: all 0.25s ease;
  font-size: 0.875rem;
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.6875rem;
}
@media screen and (max-width: 767px) {
  .p-faq__body {
    font-size: 0.75rem;
    line-height: 1.5;
    padding: 0 0.625rem;
  }
}
.p-faq__body::before {
  content: "A.";
  font-size: 1.9375rem;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  font-weight: 400;
  color: #C3C3C3;
}

.p-faq__item.active .p-faq__body {
  height: auto;
  padding-top: 1.5rem;
  margin-top: 0.9375rem;
  border-top: 2px solid #DED7D0;
}
@media screen and (max-width: 767px) {
  .p-faq__item.active .p-faq__body {
    margin-top: 0.625rem;
    padding-top: 1rem;
  }
}

.p-flow {
  padding-top: 5rem;
  padding-bottom: 7.5rem;
}
@media screen and (max-width: 767px) {
  .p-flow {
    padding-top: 2.5rem;
    padding-bottom: 5rem;
  }
}

.p-flow__title {
  text-align: center;
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.45;
}
@media screen and (max-width: 767px) {
  .p-flow__title {
    font-size: 1.5rem;
    line-height: 1.25;
  }
}

.p-flow__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  counter-reset: num;
  margin-top: 3.125rem;
}
@media screen and (max-width: 767px) {
  .p-flow__items {
    grid-template-columns: 1fr;
    margin-top: 2.5rem;
  }
}

.p-flow__item {
  border: 1px solid #6EB92B;
  border-radius: 0.5rem;
  padding: 1.0625rem 1.25rem 1.8125rem;
  counter-increment: num;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-flow__item {
    padding: 1.25rem;
  }
}

.p-flow__num {
  width: 3.625rem;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: #6EB92B;
  display: grid;
  place-items: center;
  font-size: 0.6875rem;
  line-height: 1;
  font-family: "Oswald", sans-serif;
  color: #fff;
  position: absolute;
  top: -0.6875rem;
  left: -1rem;
  z-index: 1;
}
.p-flow__num::after {
  content: counter(num, decimal-leading-zero);
  display: block;
  font-size: 1.9375rem;
  margin-top: -0.75rem;
}

.p-flow__img {
  width: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
}
.p-flow__img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 204/154;
}
@media screen and (max-width: 767px) {
  .p-flow__img img {
    aspect-ratio: 295/223;
  }
}

.p-flow__lead {
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-flow__lead {
    font-size: 1.125rem;
    margin-top: 0.9375rem;
  }
}

.p-flow__text {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 0.625rem;
}
@media screen and (max-width: 767px) {
  .p-flow__text {
    margin-top: 0.5rem;
  }
}

.p-footer {
  padding-top: 3rem;
  padding-bottom: 10.375rem;
}
@media screen and (max-width: 767px) {
  .p-footer {
    padding-top: 2rem;
    padding-bottom: 8.0625rem;
  }
}

.p-footer__inner {
  max-width: 48.125rem;
}

.p-footer__box {
  font-size: myrem914;
  font-weight: 500;
  line-height: 2;
  padding: 1.75rem 1.25rem;
  background-color: #fafafa;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-footer__box {
    font-size: 0.75rem;
    line-height: 1.5;
    padding: 1.25rem;
  }
}

.p-footer__link {
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  color: #6EB92B;
  text-decoration: underline;
  display: block;
  text-align: center;
  margin-top: 3rem;
}
@media screen and (max-width: 767px) {
  .p-footer__link {
    font-size: 0.875rem;
    line-height: 1.7142857143;
    margin-top: 1.5rem;
  }
}

.p-footer__copy {
  font-size: 0.75rem;
  line-height: 1.75;
  text-align: center;
  color: #535353;
  margin-top: 4.1875rem;
}
@media screen and (max-width: 767px) {
  .p-footer__copy {
    margin-top: 5.0625rem;
  }
}

.p-guideline {
  padding-top: 6.25rem;
}
@media screen and (max-width: 767px) {
  .p-guideline {
    padding-top: 2.5rem;
  }
}

.p-guideline__sub1 {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .p-guideline__sub1 {
    font-size: 0.875rem;
  }
}
.p-guideline__sub1::before, .p-guideline__sub1::after {
  content: "";
  display: block;
  width: 0.5625rem;
  height: 1rem;
  background: url(../images/title_slash.svg) no-repeat center/contain;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-guideline__sub1::before, .p-guideline__sub1::after {
    margin-top: 0.125rem;
  }
}
.p-guideline__sub1::before {
  justify-self: flex-end;
  scale: -1 1;
}
.p-guideline__sub1::after {
  justify-self: flex-start;
  margin-top: 0.375rem;
}
@media screen and (max-width: 767px) {
  .p-guideline__sub1::after {
    margin-top: 0.25rem;
  }
}

.p-guideline__sub2 {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4583333333;
  margin-top: 0.375rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-guideline__sub2 {
    margin-top: 0.5rem;
    font-size: 1.125rem;
  }
}

.p-guideline__main {
  font-size: 2.5rem;
  font-weight: bold;
  line-height: 1.4;
  color: #6EB92B;
  text-align: center;
  margin-top: 0.25rem;
}
@media screen and (max-width: 767px) {
  .p-guideline__main {
    font-size: 1.5rem;
    margin-top: 0.5rem;
  }
}

.p-guideline__items {
  display: grid;
  grid-template-columns: 628fr 260fr;
  gap: 1rem;
  margin-top: 0.875rem;
}
@media screen and (max-width: 767px) {
  .p-guideline__items {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1.5rem;
  }
}

.p-guideline__item {
  background-color: #fff;
  border-radius: 0.5rem;
  position: relative;
  overflow: hidden;
}

.p-guideline__item.--type2 .p-guideline__boxItems {
  display: block;
}
.p-guideline__item.--type2 .p-guideline__info {
  display: block;
}
.p-guideline__item.--type2 .p-guideline__img {
  width: 11rem;
  margin: -1.875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-guideline__item.--type2 .p-guideline__img {
    width: 14.5625rem;
    margin-top: -3.125rem;
  }
}
.p-guideline__item.--type2 .p-guideline__disc {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: -0.1875rem auto 0;
}
@media screen and (max-width: 767px) {
  .p-guideline__item.--type2 .p-guideline__disc {
    margin-top: -0.75rem;
  }
}

.p-guideline__head {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4583333333;
  color: #fff;
  background-color: #6EB92B;
  text-align: center;
  padding: 0.8125rem 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-guideline__head {
    font-size: 1.25rem;
    line-height: 1.5;
  }
}

.p-guideline__lead {
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7647058824;
  text-align: center;
  margin-top: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-guideline__lead {
    font-size: 1rem;
    margin-top: 1rem;
  }
}

.p-guideline__boxItems {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
  padding: 1rem 1.5rem 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-guideline__boxItems {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.p-guideline__box {
  background-color: #F7F7F7;
  padding: 0.625rem 0.875rem 1.25rem;
  border-radius: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-guideline__box {
    padding: 1.4375rem 0.8125rem 1.25rem;
  }
}

.p-guideline__boxTitle {
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1.3684210526;
  text-align: center;
  padding-bottom: 0.9375rem;
  border-bottom: 2px solid #D5D5D5;
  min-height: 4.3125rem;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .p-guideline__boxTitle {
    font-size: 1rem;
    line-height: 1.3125;
    padding-bottom: 1.9375rem;
    min-height: 0;
    min-height: initial;
  }
}

.p-guideline__info {
  margin-top: -0.5rem;
  display: grid;
  grid-template-columns: auto 1fr;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 0.625rem;
}

.p-guideline__img {
  width: 7.375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-guideline__img.--sm {
  width: 6.25rem;
}

.p-guideline__disc {
  margin-top: 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

.p-guideline__discText {
  font-size: 0.875rem;
  font-weight: bold;
  line-height: 1.8571428571;
  display: block;
}

.p-guideline__num {
  font-size: 2.9375rem;
  font-family: "Oswald", sans-serif;
  line-height: 1;
  display: block;
}

.p-guideline__discRight {
  margin-top: 2.5rem;
}

.p-guideline__discNote {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}

.p-guideline__discUnit {
  font-size: 1.1875rem;
  font-weight: bold;
  line-height: 1;
  display: block;
}

.p-guideline__note {
  font-size: 0.625rem;
  line-height: 1.5;
  margin-top: 1rem;
}

.p-header {
  width: 100%;
  height: 4rem;
  display: grid;
  place-items: center;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .16);
  position: relative;
  z-index: 1;
}

.p-header__logo {
  display: block;
  width: 14.6875rem;
}
@media screen and (max-width: 767px) {
  .p-header__logo {
    width: 11.3125rem;
  }
}
.p-header__logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-logo {
  padding-top: 2.8125rem;
  padding-bottom: 3rem;
  border-top: 1px solid #DDDDDD;
}
@media screen and (max-width: 767px) {
  .p-logo {
    padding-top: 2.5rem;
    padding-bottom: 2.5rem;
  }
}

.p-logo__title {
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.4583333333;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 1rem;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-logo__title {
    font-size: 1.125rem;
    line-height: 1.4444444444;
    gap: 0.625rem;
    margin-bottom: 1.5rem;
  }
}
.p-logo__title::before, .p-logo__title::after {
  content: "";
  display: block;
  width: 1.0625rem;
  height: 1.5625rem;
  background: url(../images/title_slash.svg) no-repeat center/contain;
  margin-top: 0.4375rem;
}
@media screen and (max-width: 767px) {
  .p-logo__title::before, .p-logo__title::after {
    width: 0.8125rem;
    height: 1.25rem;
    margin-top: 0.25rem;
  }
}
.p-logo__title::before {
  justify-self: flex-end;
  scale: -1 1;
}
.p-logo__title::after {
  justify-self: flex-start;
}

.p-logo__img {
  width: auto;
  height: 4.5rem;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-mv {
  position: relative;
  padding-bottom: 3.4375rem;
}
@media screen and (max-width: 767px) {
  .p-mv {
    padding-bottom: 2.5rem;
  }
}

.p-mv__img {
  width: 100%;
  height: 24.4375rem;
}
@media screen and (max-width: 767px) {
  .p-mv__img {
    height: auto;
  }
}
.p-mv__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
@media screen and (max-width: 767px) {
  .p-mv__img img {
    -o-object-position: center;
       object-position: center;
    max-height: 43.75rem;
    aspect-ratio: 374/448;
  }
}

.p-mv__inner {
  max-width: 83.125rem;
  display: grid;
  grid-template-columns: auto 1fr 20rem;
  gap: 0.8125rem;
}
@media screen and (max-width: 767px) {
  .p-mv__inner {
    display: block;
    margin-top: -5.625rem;
  }
}

.p-mv__circle {
  width: 11.25rem;
  height: auto;
  aspect-ratio: 1;
  background-color: rgba(110, 185, 43, .47);
  border-radius: 50%;
  padding: 0.5rem;
  translate: 0 -2.375rem;
}
@media screen and (max-width: 1280px) {
  .p-mv__circle {
    width: 8.75rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__circle {
    width: 7.125rem;
    padding: 0.25rem;
    translate: 0;
  }
}

.p-mv__circleText {
  font-size: 1.4375rem;
  font-weight: 500;
  line-height: 1.3043478261;
  color: #fff;
  text-align: center;
  background-color: #6EB92B;
  border-radius: 50%;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
}
@media screen and (max-width: 1280px) {
  .p-mv__circleText {
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__circleText {
    font-size: 0.875rem;
    line-height: 1.2857142857;
  }
}

.p-mv__title {
  margin-top: 2.1875rem;
}
@media screen and (max-width: 767px) {
  .p-mv__title {
    margin-top: 0;
    text-align: center;
  }
}

.p-mv__sub {
  font-size: 2.1875rem;
  font-weight: 500;
  line-height: 1.3142857143;
}
@media screen and (max-width: 1180px) {
  .p-mv__sub {
    font-size: 1.875rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__sub {
    font-size: 1.25rem;
    line-height: 1.85;
  }
}

.p-mv__main {
  font-size: 2.5625rem;
  font-weight: bold;
  line-height: 1.3658536585;
  color: #6EB92B;
}
@media screen and (max-width: 1180px) {
  .p-mv__main {
    font-size: 2.375rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__main {
    font-size: 2.125rem;
    line-height: 1.3823529412;
    text-align: center;
  }
}

.p-mv__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1rem;
}
@media screen and (max-width: 767px) {
  .p-mv__items {
    margin-top: 0.375rem;
    gap: 0.375rem;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.p-mv__item {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.45;
  padding: 0.5rem 1.625rem 0.6875rem;
  background-color: #f0f0ef;
  border-radius: 0.5rem;
}
@media screen and (max-width: 1180px) {
  .p-mv__item {
    font-size: 1.125rem;
    padding: 0.375rem 1.125rem 0.5rem;
  }
}
@media screen and (max-width: 767px) {
  .p-mv__item {
    font-size: 0.75rem;
    line-height: 1.4166666667;
    padding: 0.5rem 0.625rem 0.625rem;
  }
}

.p-mv__text {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  padding-bottom: 0.25rem;
  border-bottom: 1px solid #313131;
  margin-top: 1rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 767px) {
  .p-mv__text {
    margin: 0.5625rem auto 0;
  }
}
.p-mv__text .u-green {
  color: #6EB92B;
}

.p-risk {
  padding-top: 4.25rem;
  padding-bottom: 6.25rem;
  border-bottom: 0.25rem solid #d9d9d9;
}
@media screen and (max-width: 767px) {
  .p-risk {
    padding-top: 3.1875rem;
    padding-bottom: 2.5rem;
    border-width: 0.125rem;
  }
}

.p-risk__title {
  text-align: center;
}

.p-risk__sub {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4375;
}
@media screen and (max-width: 767px) {
  .p-risk__sub {
    font-size: 1.125rem;
  }
}

.p-risk__main {
  font-size: 3rem;
  font-weight: bold;
  line-height: 1.4583333333;
  color: #6EB92B;
}
@media screen and (max-width: 767px) {
  .p-risk__main {
    font-size: 1.5rem;
  }
}

.p-risk__text {
  margin-top: 2rem;
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 2;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .p-risk__text {
    font-size: 0.875rem;
    text-align: left;
    margin-top: 1rem;
  }
}

.p-risk__items {
  margin-top: 2.5rem;
  display: grid;
  gap: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-risk__items {
    margin-top: 1.5rem;
  }
}

.p-risk__item {
  display: grid;
  grid-template-columns: 350fr 555fr;
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  min-height: 9.75rem;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-risk__item {
    display: block;
    min-height: 0;
    min-height: initial;
  }
}

.p-risk__head {
  display: grid;
  position: relative;
  padding: 2.625rem 2.3125rem 2.625rem 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-risk__head {
    padding: 2.625rem 1.875rem 1.25rem;
  }
}

.p-risk__label {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  color: #fff;
  padding: 0.25rem 0.5rem;
  background-color: #6EB92B;
  border-radius: 0.5rem 0 0.5rem 0;
  position: absolute;
  top: 0;
  left: 0;
}

.p-risk__itemText {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
  display: grid;
  align-self: center;
}
@media screen and (max-width: 767px) {
  .p-risk__itemText {
    text-align: center;
  }
}

.p-risk__body {
  padding: 1.6875rem 2.8125rem 1.6875rem 4.5rem;
  display: grid;
  grid-template-columns: 1fr 9.375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: url(../images/risk_bg.svg) no-repeat center center/cover;
}
@media screen and (max-width: 767px) {
  .p-risk__body {
    display: block;
    padding: 3.625rem 3.125rem 2.875rem;
    background: url(../images/risk_bg_sp.svg) no-repeat center top/cover;
  }
}

.p-risk__lead {
  font-size: 1.125rem;
  font-weight: bold;
  line-height: 1.4444444444;
  color: #6EB92B;
}
@media screen and (max-width: 767px) {
  .p-risk__lead {
    font-size: 1rem;
    text-align: center;
  }
}

.p-risk__img {
  width: 9.375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (max-width: 767px) {
  .p-risk__img {
    margin: 0.75rem auto 0;
  }
}

@media screen and (max-width: 767px) {
  .p-risk__item:nth-child(2) .p-risk__img {
    width: 12.1875rem;
  }
}

.p-worry {
  background-color: #F0F0EF;
  padding-top: 4.625rem;
  padding-bottom: 7.75rem;
}
@media screen and (max-width: 767px) {
  .p-worry {
    padding-top: 2.5rem;
    padding-bottom: 0;
  }
}

.p-worry__title {
  text-align: center;
}

.p-worry__sub {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 0.625rem;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}
.p-worry__sub::before, .p-worry__sub::after {
  content: "";
  display: block;
  width: 0.5625rem;
  height: 1rem;
  background: url(../images/title_slash.svg) no-repeat center/contain;
  margin-top: 0.1875rem;
}
.p-worry__sub::before {
  justify-self: flex-end;
  scale: -1 1;
}
.p-worry__sub::after {
  justify-self: flex-start;
}

.p-worry__main {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4375;
}
@media screen and (max-width: 767px) {
  .p-worry__main {
    font-size: 1.5rem;
  }
}

.p-worry__wrap {
  position: relative;
}

.p-worry__items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -webkit-column-gap: 1rem;
     -moz-column-gap: 1rem;
          column-gap: 1rem;
  row-gap: 1.5625rem;
  margin-top: 2rem;
}
@media screen and (max-width: 767px) {
  .p-worry__items {
    grid-template-columns: 1fr;
    margin-top: 1rem;
    gap: 0.5rem;
  }
}

.p-worry__item {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  text-align: center;
  font-size: 1.0625rem;
  font-weight: 500;
  line-height: 1.7647058824;
  padding: 1.375rem;
}
@media screen and (max-width: 767px) {
  .p-worry__item {
    font-size: 0.875rem;
    padding: 1.25rem;
  }
}
.p-worry__item .u-green {
  color: #6EB92B;
}

.p-worry__img {
  width: 20.1875rem;
  position: absolute;
  bottom: -9.6875rem;
  right: 3rem;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-worry__img {
    width: 15.3125rem;
    position: relative;
    inset: initial;
    margin-top: -0.5625rem;
    margin-left: auto;
    margin-right: auto;
    left: 1.25rem;
  }
}
.p-worry__img img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  aspect-ratio: 323/288;
}
@media screen and (max-width: 767px) {
  .p-worry__img img {
    aspect-ratio: 245/211;
  }
}

@media screen and (max-width: 767px) {
  .u-desktop {
    display: none;
  }
}

.u-mobile {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-mobile {
    display: block;
  }
}
/*# sourceMappingURL=styles.css.map */

/*# form_css 20241202 */
/* ステータス表示のスタイル */
.form__status {
  display: inline-block;
  margin-left: 0.5rem;
  padding: 0.2em 0.5em;
  font-size: 0.75rem;
  font-weight: bold;
  color: #fff;
  background-color: red;
  border-radius: 0.25rem;
}

.form__status.ok {
  background-color: #1FA232;
}

/* ボタンのスタイル */
/* ボタンが有効化されたとき */
.c-btn1.active {
  background-color: #F48018;;
  color: #fff;
  box-shadow: 0 0.4375rem 0 #F48018;;
  animation: push 1.7s ease infinite;
}

.c-btn1.active::before {
  display: block;
  position: relative;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.875rem 0.875rem 1.0625rem;
  background-color: #FFEA04;
  color: #F48018;
  border-radius: 0.3125rem;
}

@media screen and (max-width: 767px) {
  .c-btn1.active {
    box-shadow: 0 0.125rem 0 #F48018;;
  }
}

/* ボタンが無効化されているとき */
.c-btn1:disabled {
  background-color: #e0e0e0;
  cursor: not-allowed;
  color: #9e9e9e;
  box-shadow: none;
  animation: none;
}

.c-btn1:disabled::before {
  display: block;
  position: relative;
  font-size: 1.375rem;
  font-weight: bold;
  line-height: 1;
  padding: 0.875rem 0.875rem 1.0625rem;
  background-color: #e0e0e0;
  color:#9e9e9e;
  border-radius: 0.3125rem;
}

/* 気になる商品セレクトボックスの枠の色を変更 */
#erchandise {
  border: 1px solid #e3e3e3;
  border-radius: 4px; /* 必要に応じて角を丸くする */
  padding: 8px; /* 内側の余白を調整 */
  width: 100%; /* フル幅にする場合 */
  box-sizing: border-box; /* パディングを含めて幅を計算 */
  font-size: 0.75rem;
}