@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

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

.u-mobile {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-mobile {
    display: block;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (max-width: 768px) {
  html {
    font-size: 1.2030075188vw;
  }
}
@media (max-width: 1330px) {
  html {
    font-size: 16px;
  }
}

/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (max-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

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

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

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

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

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

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

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

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

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.achievement__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 1350px;
  max-width: 84.375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .achievement__inner {
    padding: 0 0.9375rem;
    max-width: 37.5rem;
  }
}

.achievement__sub-title {
  margin-top: 30px;
  margin-top: 1.875rem;
  font-size: 40px;
  font-size: 2.5rem;
  line-height: 1.3;
  letter-spacing: 0.1206em;
  color: #0e3a57;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .achievement__sub-title {
    margin-top: 1.25rem;
    font-size: 1.75rem;
  }
}

.achievement__sub-title-number {
  font-size: 80px;
  font-size: 5rem;
  font-weight: 500;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #23d28e;
}
@media screen and (max-width: 768px) {
  .achievement__sub-title-number {
    font-size: 3rem;
  }
}

.achievement__sub-title-small {
  font-size: 28px;
  font-size: 1.75rem;
  letter-spacing: 0.1381em;
  line-height: 1.1;
}

.achievement__list {
  margin-top: 18px;
  margin-top: 1.125rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  gap: 2rem;
}
@media (max-width: 1200px) {
  .achievement__list {
    grid-template-columns: repeat(2, 1fr);
    max-width: 56.25rem;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .achievement__list {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

@media screen and (max-width: 768px) {
  .achievement__item {
    max-width: 25rem;
    width: 100%;
    margin: 0 auto;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
}

@media screen and (max-width: 768px) {
  .achievement__item:hover {
    opacity: 0.6;
  }
}

.achievement__item-title {
  padding: 6px;
  padding: 0.375rem;
  font-size: 20px;
  font-size: 1.25rem;
  background: #1579bb;
  color: #fff;
  border-radius: 0.625rem;
  text-align: center;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .achievement__item-title {
    font-size: 1rem;
    position: relative;
    cursor: pointer;
  }
}

@media screen and (max-width: 768px) {
  .achievement__item-title::after {
    content: "＋";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

@media screen and (max-width: 768px) {
  .achievement__item-title.is-open::after {
    content: "ー";
    position: absolute;
    right: 0.5rem;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}

.achievement__item-list {
  margin-top: 18px;
  margin-top: 1.125rem;
}
@media screen and (max-width: 768px) {
  .achievement__item-list {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .achievement__item-list.is-open {
    display: block;
  }
}

.achievement__item-list li {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.19;
  letter-spacing: 0.04em;
  color: #000;
  padding-left: 1em;
  text-indent: -1em;
}

.achievement__item-list li::before {
  content: "●";
  color: #23d28e;
  padding-right: 10px;
  padding-right: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.achievement__note-wrap {
  position: relative;
  margin-top: 100px;
  margin-top: 6.25rem;
  margin-left: auto;
  margin-right: auto;
  padding: 40px;
  padding: 2.5rem;
  padding: clamp(18px, 2.6666vw, 40px);
  padding: clamp(1.125rem, 2.6666vw, 2.5rem);
  max-width: clamp(400px, 64vw, 960px);
  max-width: clamp(25rem, 64vw, 60rem);
  width: 100%;
  background: #1579bb;
  border-radius: 0.625rem;
}
@media screen and (max-width: 768px) {
  .achievement__note-wrap {
    margin-top: 2.5rem;
  }
}

@media screen and (max-width: 1024px) {
  .achievement__note-wrap::after {
    content: "";
    position: absolute;
    display: block;
    top: 2.5rem;
    right: -2rem;
    aspect-ratio: 273/407;
    width: 5rem;
    background: url("../images/achievement_icon.png") center/contain no-repeat;
  }
}
@media screen and (max-width: 768px) {
  .achievement__note-wrap::after {
    width: 3.75rem;
    top: 4.375rem;
    right: -0.5rem;
  }
}
@media screen and (max-width: 600px) {
  .achievement__note-wrap::after {
    top: 5.8125rem;
    right: -0.5rem;
  }
}

.achievement__note-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .achievement__note-content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
  }
}

.achievement__note {
  position: relative;
  font-size: clamp(18px, 2vw, 30px);
  font-size: clamp(1.125rem, 2vw, 1.875rem);
  line-height: 1.56;
  letter-spacing: 0.0787em;
  color: #fff;
}

.achievement__note span {
  display: inline-block;
}

.achievement__note-img {
  position: absolute;
  top: -64px;
  top: -4rem;
  right: -26px;
  right: -1.625rem;
  max-width: clamp(100px, 11.4666vw, 172px);
  max-width: clamp(6.25rem, 11.4666vw, 10.75rem);
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1024px) {
  .achievement__note-img {
    display: none;
    position: static;
    width: clamp(6rem, 28vw, 8.75rem);
    margin-top: 0.5rem;
  }
}

.achievement__note-img img {
  aspect-ratio: 273/407;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.common-title {
  color: #0e3a57;
}

.common-title__sub {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 3px;
  letter-spacing: 0.1875rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .common-title__sub {
    font-size: 0.875rem;
  }
}

.common-title__main {
  font-size: 54px;
  font-size: 3.375rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.075em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .common-title__main {
    font-size: 2rem;
  }
}

.common-title.common-title--white {
  color: #fff;
}

.company__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 950px;
  max-width: 59.375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .company__inner {
    padding: 0 0.9375rem;
    max-width: 37.5rem;
  }
}

.company-profile {
  margin-top: 45px;
  margin-top: 2.8125rem;
}

.company-profile__list {
  padding-bottom: 25px;
  padding-bottom: 1.5625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.3;
  letter-spacing: 0.08em;
  border-bottom: 1px solid #1579bb;
}
@media screen and (max-width: 768px) {
  .company-profile__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 0.9375rem;
  }
}

.company-profile__list + .company-profile__list {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .company-profile__list + .company-profile__list {
    margin-top: 1rem;
  }
}

.company-profile__office + .company-profile__list {
  margin-top: 25px;
  margin-top: 1.5625rem;
}
@media screen and (max-width: 768px) {
  .company-profile__office + .company-profile__list {
    margin-top: 0.9375rem;
  }
}

.company-profile__term {
  max-width: 140px;
  max-width: 8.75rem;
  width: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .company-profile__term {
    margin-bottom: 0.625rem;
  }
}

.company-profile__description {
  font-weight: 400;
}

.company-profile__office {
  margin-top: 25px;
  margin-top: 1.5625rem;
  margin-bottom: 20px;
  margin-bottom: 1.25rem;
  padding-left: 18px;
  padding-left: 1.125rem;
  position: relative;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .company-profile__office {
    margin-top: 1.25rem;
    margin-bottom: 0.9375rem;
    padding-left: 0.75rem;
    font-size: 1rem;
  }
}

.company-profile__office::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 8px;
  width: 0.5rem;
  background-color: #1579bb;
}
@media screen and (max-width: 768px) {
  .company-profile__office::before {
    width: 0.375rem;
  }
}

.company-profile__qualifications {
  margin: 0;
  list-style: disc;
  padding-left: 1.2em;
}

.contact {
  background-color: #1579bb;
  padding-block: 50px;
  padding-block: 3.125rem;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-block: 1.875rem;
  }
}

.contact__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 900px;
  max-width: 56.25rem;
  width: 100%;
}

.contact__title {
  font-size: clamp(32px, 3.8666vw, 56px);
  font-size: clamp(2rem, 3.8666vw, 3.5rem);
  line-height: 1.5;
  letter-spacing: 0.15125em;
  color: #fff;
  text-align: center;
}

.contact__text {
  margin-top: 26px;
  margin-top: 1.625rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.76;
  letter-spacing: 0.0531em;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin-top: 1.25rem;
    text-align: left;
  }
}

.contact__btn-wrapper {
  margin-top: 32px;
  margin-top: 2rem;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact__btn-wrapper {
    margin-top: 1.5rem;
  }
}

.cta-btn {
  position: relative;
  display: inline-block;
  padding-block: clamp(14px, 1.4666vw, 22px);
  padding-block: clamp(0.875rem, 1.4666vw, 1.375rem);
  padding-left: clamp(24px, 3.2vw, 48px);
  padding-left: clamp(1.5rem, 3.2vw, 3rem);
  padding-right: clamp(40px, 8vw, 120px);
  padding-right: clamp(2.5rem, 8vw, 7.5rem);
  border-radius: 3.125rem;
  background-color: #f9cc43;
  border: 4px solid #f9cc43;
  overflow: hidden;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  z-index: 1;
}

.cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  color: #0e3a57;
  background-color: #fff;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right;
          transform-origin: right;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.cta-btn:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left;
          transform-origin: left;
}

.cta-btn span {
  position: relative;
  font-size: clamp(16px, 2.6666vw, 40px);
  font-size: clamp(1rem, 2.6666vw, 2.5rem);
  font-weight: 700;
  line-height: 1;
  color: #0e3a57;
  letter-spacing: 0.05em;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.cta-btn:hover span {
  color: #0e3a57;
}

.cta-btn__space {
  display: inline-block;
}

.cta-btn::after {
  content: "";
  position: absolute;
  top: 50%;
  right: clamp(20px, 4vw, 60px);
  right: clamp(1.25rem, 4vw, 3.75rem);
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: clamp(16px, 2.1333vw, 32px);
  width: clamp(1rem, 2.1333vw, 2rem);
  height: clamp(16px, 2.1333vw, 32px);
  height: clamp(1rem, 2.1333vw, 2rem);
  background: url("../images/btn_arrow.png") no-repeat center/contain;
}

.faq-list__item {
  background-color: #eeeeee;
  border-radius: 0.625rem;
}

.faq-list__item + .faq-list__item {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.faq-list__item-question {
  position: relative;
  padding: 24px;
  padding: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  letter-spacing: 0.1125em;
  color: #333;
  border-radius: 0.625rem;
  background-color: #eeeeee;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (max-width: 768px) {
  .faq-list__item-question {
    padding: 0.875rem;
    gap: 1rem;
    font-size: 1rem;
  }
}

.faq-list__item-question:hover {
  opacity: 0.6;
}

.faq-list__item-question-icon {
  width: 36px;
  width: 2.25rem;
  height: 30px;
  height: 1.875rem;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .faq-list__item-question-icon {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.faq-list__item-toggle {
  position: relative;
  display: inline-block;
  width: 30px;
  width: 1.875rem;
  height: 30px;
  height: 1.875rem;
  margin-left: auto;
  border-radius: 50%;
  background: #1579bb;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .faq-list__item-toggle {
    width: 1.5rem;
    height: 1.5rem;
  }
}

.faq-list__item-toggle::before,
.faq-list__item-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 14px;
  width: 0.875rem;
  height: 2px;
  height: 0.125rem;
  background: #fff;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

.faq-list__item-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}

.is-open .faq-list__item-toggle::after {
  -webkit-transform: translate(-50%, -50%) rotate(0deg);
          transform: translate(-50%, -50%) rotate(0deg);
}

.faq-list__item-question img {
  display: inline-block;
  width: 24px;
  width: 1.5rem;
  height: 24px;
  height: 1.5rem;
  -o-object-fit: contain;
     object-fit: contain;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

.faq-list__item-answer {
  padding: 0 40px 24px 30px;
  padding: 0 2.5rem 1.5rem 1.875rem;
  display: none;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.05em;
  background-color: #eeeeee;
}

.faq-list__item-answer span {
  padding-block: 12px;
  padding-block: 0.75rem;
  padding-inline: 24px;
  padding-inline: 1.5rem;
  display: block;
  background-color: #fff;
  border-radius: 0.625rem;
}

.faq__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 950px;
  max-width: 59.375rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .faq__inner {
    padding: 0 0.9375rem;
    max-width: 37.5rem;
  }
}

.faq__list {
  margin-top: 44px;
  margin-top: 2.75rem;
}

.fv-title__first {
  margin-left: 40px;
  margin-left: 2.5rem;
  font-size: clamp(20px, 2.9333vw, 44px);
  font-size: clamp(1.25rem, 2.9333vw, 2.75rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  color: #0e3a57;
}
@media screen and (max-width: 1024px) {
  .fv-title__first {
    margin-left: 0;
  }
}

.fv-title__first-green {
  font-size: clamp(28px, 6.6666vw, 100px);
  font-size: clamp(1.75rem, 6.6666vw, 6.25rem);
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #23d28e;
}

.fv-title__first-small {
  font-size: clamp(16px, 2.4vw, 36px);
  font-size: clamp(1rem, 2.4vw, 2.25rem);
  line-height: 1.12;
  letter-spacing: 0.1712em;
  color: #0e3a57;
}

.fv-title__first-large {
  font-size: clamp(24px, 3.8666vw, 58px);
  font-size: clamp(1.5rem, 3.8666vw, 3.625rem);
  line-height: 1.28;
  letter-spacing: 0.15em;
  color: #0e3a57;
}

.fv-title__second {
  font-size: clamp(26px, 6.6666vw, 100px);
  font-size: clamp(1.625rem, 6.6666vw, 6.25rem);
  line-height: 1.29;
  color: #0e3a57;
  white-space: nowrap;
}

.fv-title__ruby {
  margin-right: -0.12em;
  ruby-position: over;
}

.fv-title__ruby rt {
  font-size: 0.2em;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #333;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .fv-title__ruby rt {
    -webkit-transform: translateY(0.14em);
            transform: translateY(0.14em);
  }
}

.fv-title__second-small {
  font-size: clamp(20px, 4.5333vw, 68px);
  font-size: clamp(1.25rem, 4.5333vw, 4.25rem);
}

.fv-title__third {
  margin-top: 16px;
  margin-top: 1rem;
  margin-left: clamp(18px, 4.9333vw, 74px);
  margin-left: clamp(1.125rem, 4.9333vw, 4.625rem);
  padding-block: 8px;
  padding-block: 0.5rem;
  padding-inline: clamp(12px, 1.3333vw, 20px);
  padding-inline: clamp(0.75rem, 1.3333vw, 1.25rem);
  font-size: clamp(18px, 3.7333vw, 56px);
  font-size: clamp(1.125rem, 3.7333vw, 3.5rem);
  line-height: 1.3;
  letter-spacing: 0.15em;
  color: #fff;
  background-color: #1579bb;
  display: inline-block;
}
@media screen and (max-width: 1024px) {
  .fv-title__third {
    margin-top: 0.5rem;
    margin-left: 0;
  }
}

.fv-title__third-small {
  font-size: clamp(16px, 3.2vw, 48px);
  font-size: clamp(1rem, 3.2vw, 3rem);
  color: #fff;
}

.fv-title__end {
  margin-top: 18px;
  margin-top: 1.125rem;
  margin-left: clamp(18px, 1.8666vw, 28px);
  margin-left: clamp(1.125rem, 1.8666vw, 1.75rem);
  font-size: clamp(20px, 2.6666vw, 40px);
  font-size: clamp(1.25rem, 2.6666vw, 2.5rem);
  font-weight: 500;
  line-height: 1;
  color: #0e3a57;
}
@media screen and (max-width: 1024px) {
  .fv-title__end {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .fv-title__end {
    background-color: rgba(255, 255, 255, .6);
  }
}

.fv-title__end-green {
  font-size: clamp(28px, 6.6666vw, 100px);
  font-size: clamp(1.75rem, 6.6666vw, 6.25rem);
  font-weight: 700;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #23d28e;
}

.fv-title__end-small {
  font-size: clamp(16px, 2vw, 30px);
  font-size: clamp(1rem, 2vw, 1.875rem);
}

@media screen and (max-width: 1024px) {
  .u-nobr {
    white-space: nowrap;
  }
}

.fv__top {
  padding-block: clamp(10px, 0.8666vw, 13px);
  padding-block: clamp(0.625rem, 0.8666vw, 0.8125rem);
  padding-inline: clamp(10px, 0.8666vw, 13px);
  padding-inline: clamp(0.625rem, 0.8666vw, 0.8125rem);
  background: -webkit-gradient(linear, left top, right top, from(#0d4b74), color-stop(35%, #1579bb), to(#1579bb));
  background: linear-gradient(to right, #0d4b74 0%, #1579bb 35%, #1579bb 100%);
  color: #fff;
  text-align: center;
}

.fv__top-title {
  font-size: 24px;
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .fv__top-title {
    font-size: 1.125rem;
  }
}

@media screen and (max-width: 600px) {
  .fv__top-title span {
    display: inline-block;
  }
}

.fv__top-title-sub {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0.07375em;
}
@media screen and (max-width: 768px) {
  .fv__top-title-sub {
    margin-top: 0.25rem;
    font-size: 0.875rem;
  }
}

.fv__top-title-sub span {
  display: inline-block;
}

.fv__content {
  position: relative;
  padding-inline: 60px;
  padding-inline: 3.75rem;
  margin-top: 47px;
  margin-top: 2.9375rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1440px;
  max-width: 90rem;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 1024px) {
  .fv__content {
    display: block;
    margin-top: 1.25rem;
    padding: 2.5rem;
    padding-inline: 0.9375rem;
    max-width: 100%;
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    background-image: url(../images/fv_img02.png);
    background-repeat: no-repeat;
    background-size: 38%;
    background-position: right 30% top 10%;
    background-color: rgba(255, 255, 255, .6);
    background-blend-mode: lighten;
  }
}
@media screen and (max-width: 768px) {
  .fv__content {
    background-size: 48%;
    background-position: right 0 top 10%;
    padding: 0.9375rem 0.9375rem 1.25rem;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
  }
}

@media screen and (max-width: 1024px) {
  .fv__content::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 4.375rem;
    width: clamp(4.375rem, 11.71875vw, 7.5rem);
    aspect-ratio: 640/952;
    background-image: url(../images/fv_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .fv__content::after {
    right: 0;
    z-index: 0;
  }
}
@media screen and (max-width: 25rem) {
  .fv__content::after {
    display: none;
  }
}

.fv__title {
  margin-left: 24px;
  margin-left: 1.5rem;
  max-width: 60%;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .fv__title {
    margin-left: 0;
    max-width: none;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .fv__title {
    position: relative;
    text-align: left;
    z-index: 1;
  }
}

.fv__img {
  max-width: 38%;
  width: 100%;
  -webkit-transform: translateY(clamp(1.875rem, 9.667vw, 9.0625rem));
          transform: translateY(clamp(1.875rem, 9.667vw, 9.0625rem));
  z-index: 2;
}
@media screen and (max-width: 1024px) {
  .fv__img {
    max-width: none;
    -webkit-transform: none;
            transform: none;
    display: none;
  }
}

.fv__img img {
  aspect-ratio: 1/1;
  width: 100%;
  height: auto;
  display: block;
  -o-object-fit: cover;
     object-fit: cover;
}

.fv__btn {
  margin-right: clamp(100px, 20vw, 300px);
  margin-right: clamp(6.25rem, 20vw, 18.75rem);
}
@media screen and (max-width: 1024px) {
  .fv__btn {
    margin: 0;
  }
}

.fv__btn-bg {
  background: #1579bb;
  margin-right: calc(50% - 50vw);
}

.fv__btn-wrapper {
  margin-top: 16px;
  margin-top: 1rem;
  padding-block: clamp(10px, 3.2vw, 48px);
  padding-block: clamp(0.625rem, 3.2vw, 3rem);
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  z-index: 1;
  overflow: hidden;
}

.fv__btn-wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 89.33333333vw;
  height: 100%;
  background: #1579bb;
  border-top-left-radius: 100px;
  border-top-left-radius: 6.25rem;
  border-bottom-left-radius: 100px;
  border-bottom-left-radius: 6.25rem;
  z-index: -1;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 25rem) {
  .fv__btn-wrapper::before {
    width: 100vw;
    margin-right: 0;
    border-radius: 0;
  }
}

.header {
  /*
  height: clamp(80px, 6.667vw, 100px);
  height: clamp(5rem, 6.667vw, 6.25rem);
  */
  background: #fff;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 4.6875rem;
  }
}

.header__inner {

}
@media screen and (max-width: 768px) {
  .header__inner {
  
  }
}

.header__logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 clamp(160px, 15.733vw, 236px);
          flex: 0 0 clamp(160px, 15.733vw, 236px);
  -ms-flex: 0 0 clamp(10rem, 15.733vw, 14.75rem);
      flex: 0 0 clamp(10rem, 15.733vw, 14.75rem);
  min-width: clamp(160px, 15.733vw, 236px);
  min-width: clamp(10rem, 15.733vw, 14.75rem);
  height: 100%;
}

.header__logo a {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header__logo img {
  height: 100%;
  width: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  margin-left: 20px;
  margin-left: 1.25rem;
  -webkit-box-flex: 1;
      -ms-flex: 1 1 auto;
          flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media screen and (max-width: 1024px) {
  .header__nav {
    display: none;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  min-width: 0;
}

.header__nav-item {
  height: 100%;
  white-space: nowrap;
  -webkit-box-flex: 0;
      -ms-flex: 0 1 auto;
          flex: 0 1 auto;
  min-width: 0;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__nav-item:hover {
  opacity: 0.7;
}

.header__nav-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  padding-inline: clamp(8px, 1vw, 15px);
  padding-inline: clamp(0.5rem, 1vw, 0.9375rem);
  font-size: clamp(12px, 1.2vw, 18px);
  font-size: clamp(0.75rem, 1.2vw, 1.125rem);
  line-height: 1;
  color: #333;
}

.header__nav-item--contact {
  margin-left: clamp(8px, 1.6vw, 30px);
  margin-left: clamp(0.5rem, 1.6vw, 1.875rem);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 1;
      flex-shrink: 1;
  min-width: 0;
}

.header__nav-item--contact a {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(14px, 0.933333333vw);
  gap: min(0.875rem, 0.933333333vw);
  padding-block: 20px;
  padding-block: 1.25rem;
  padding-inline: clamp(14px, 3.2vw, 16px);
  padding-inline: clamp(0.875rem, 3.2vw, 1rem);
  position: relative;
  height: inherit;
  font-size: clamp(14px, 1.533vw, 23px);
  font-size: clamp(0.875rem, 1.533vw, 1.4375rem);
  font-weight: 900;
  font-family: "Zen Maru Gothic", sans-serif;
  line-height: 1.25;
  color: #1c425e;
  background: #f9cc43;
}

.header__nav-item--contact a::before {
  content: "";
  inline-size: clamp(16px, 2.866vw, 43px);
  inline-size: clamp(1rem, 2.866vw, 2.6875rem);
  block-size: clamp(16px, 3.133vw, 47px);
  block-size: clamp(1rem, 3.133vw, 2.9375rem);
  background: url(../images/header_icon.png) center/contain no-repeat;
  display: inline-block;
}

.header__nav-item--contact a span {
  display: inline;
}

.header__nav-item--contact-small {
  font-size: clamp(10px, 1.2vw, 18px);
  font-size: clamp(0.625rem, 1.2vw, 1.125rem);
}

.header__hamburger {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__hamburger {
    display: block;
    margin: 0;
    padding: 0;
    outline: none;
    border: none;
    position: relative;
    z-index: 999;
    width: 3.75rem;
    height: inherit;
    background-color: #f9cc43;
    cursor: pointer;
    -webkit-transition: 0.3s;
    transition: 0.3s;
    position: absolute;
    right: 0;
    top: 0;
    width: 60px;
    height: 75px;
  }
}

.header__hamburger:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .header__hamburger.is-open {
    background-color: transparent;
  }
}

@media screen and (max-width: 1024px) {
  .header__hamburger span {
    position: relative;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    display: block;
    width: 1.5rem;
    height: 0.1875rem;
    background-color: #1c425e;
    border-radius: 0.125rem;
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
}

@media screen and (max-width: 1024px) {
  .header__hamburger span:nth-of-type(1) {
    top: -0.25rem;
  }
}

@media screen and (max-width: 1024px) {
  .header__hamburger span:nth-of-type(2) {
    top: 0;
  }
}

@media screen and (max-width: 1024px) {
  .header__hamburger span:nth-of-type(3) {
    top: 0.25rem;
  }
}

.header__hamburger.is-open span {
  background-color: #fff;
}

@media screen and (max-width: 1024px) {
  .header__hamburger.is-open span:nth-of-type(1) {
    top: 0.25rem;
    -webkit-transform: translateX(-50%) rotate(45deg);
            transform: translateX(-50%) rotate(45deg);
  }
}

@media screen and (max-width: 1024px) {
  .header__hamburger.is-open span:nth-of-type(2) {
    opacity: 0;
  }
}

@media screen and (max-width: 1024px) {
  .header__hamburger.is-open span:nth-of-type(3) {
    top: -0.125rem;
    -webkit-transform: translateX(-50%) rotate(-45deg);
            transform: translateX(-50%) rotate(-45deg);
  }
}

.header__drawer {
  display: none;
}
@media screen and (max-width: 1024px) {
  .header__drawer {
    padding: 6.25rem 0;
    display: none;
    position: absolute;
    z-index: 900;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(21, 121, 187, .95);
    overflow-y: scroll;
    scrollbar-width: none;
  }
}

@media screen and (max-width: 1024px) {
  .header__drawer::-webkit-scrollbar {
    display: none;
  }
}

.header__drawer-item + .header__drawer-item {
  margin-top: 16px;
  margin-top: 1rem;
}

.header__drawer-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.header__drawer-item:hover {
  opacity: 0.7;
}

@media screen and (max-width: 1024px) {
  .header__drawer-item a {
    padding: 1rem 0;
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #fff;
    text-align: center;
    opacity: 1;
  }
}

.header__drawer-item.header__drawer-item--contact a {
  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;
  gap: 10px;
  gap: 0.625rem;
}

@media screen and (max-width: 1024px) {
  .header__drawer-item.header__drawer-item--contact a::before {
    content: "";
    width: 1.875rem;
    height: 1.875rem;
    display: inline-block;
    background-image: url(../images/drawer_icon.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
}

.plan-card {
  padding-bottom: 12px;
  padding-bottom: 0.75rem;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: solid 1px #4acead;
  border-radius: 10px 10px 0 0;
}

.plan-card__term {
  padding-top: 10px;
  padding-bottom: 15px;
  width: 100%;
  text-align: center;
  color: #fff;
  background-color: #4acead;
  border-radius: 10px 10px 0 0;
}

.plan-card__term-main {
  font-size: 30px;
  font-size: 1.875rem;
}
@media screen and (max-width: 768px) {
  .plan-card__term-main {
    font-size: 1.5rem;
  }
}

.plan-card__term-note {
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
}

.plan-card__price {
  font-size: 48px;
  font-size: 3rem;
  color: #e57700;
}
@media screen and (max-width: 768px) {
  .plan-card__price {
    font-size: 2rem;
  }
}

.plan-card__tax {
  font-size: 18px;
  font-size: 1.125rem;
  color: #999;
}
@media screen and (max-width: 768px) {
  .plan-card__tax {
    font-size: 1rem;
  }
}

.plan-card.plan-card--blue {
  border: solid 1px #589eda;
}

.plan-card__term.plan-card__term--blue {
  background-color: #589eda;
}

.plan-card.plan-card--blue02 {
  border: solid 1px #4471cb;
}

.plan-card__term.plan-card__term--blue02 {
  background-color: #4471cb;
}

.plan__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 1010px;
  max-width: 63.125rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .plan__inner {
    padding: 0 0.9375rem;
    max-width: 37.5rem;
  }
}

.plan__cards {
  margin-top: 43px;
  margin-top: 2.6875rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  gap: 1.875rem;
}
@media (max-width: 650px) {
  .plan__cards {
    margin-top: 1.5rem;
    max-width: 25rem;
    width: 100%;
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }
}

.plan__analysis {
  margin-top: 53px;
  margin-top: 3.3125rem;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  padding-top: 40px;
  padding-top: 2.5rem;
  padding-bottom: 40px;
  padding-bottom: 2.5rem;
  padding-left: 48px;
  padding-left: 3rem;
  padding-right: 48px;
  padding-right: 3rem;
  background: #eeeeee;
  border-radius: 0.9375rem;
}
@media screen and (max-width: 768px) {
  .plan__analysis {
    padding-top: 1.875rem;
    padding-left: 1.875rem;
    padding-right: 1.875rem;
  }
}

.plan__analysis-label,
.plan__report-label {
  position: absolute;
  top: -18px;
  top: -1.125rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  padding: 5px 66px;
  padding: 0.3125rem 4.125rem;
  font-size: 22px;
  font-size: 1.375rem;
  color: #fff;
  background-color: #1579bb;
  border-radius: 1.25rem;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .plan__analysis-label,
  .plan__report-label {
    font-size: 1.125rem;
    padding-inline: 3rem;
  }
}

.plan__analysis-title {
  font-size: 30px;
  font-size: 1.875rem;
  color: #595656;
  text-align: center;
  letter-spacing: 0.11625em;
}
@media screen and (max-width: 768px) {
  .plan__analysis-title {
    font-size: 1.5rem;
  }
}

.plan__analysis-list {
  margin-top: 25px;
  margin-top: 1.5625rem;
  padding-top: 18px;
  padding-top: 1.125rem;
  padding-bottom: 30px;
  padding-bottom: 1.875rem;
  background: #fff;
  border-radius: 0.9375rem;
}

.plan__analysis-text {
  padding-left: 27px;
  padding-left: 1.6875rem;
  position: relative;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: 1.8;
  letter-spacing: 0.0825em;
  color: #595656;
}
@media screen and (max-width: 768px) {
  .plan__analysis-text {
    font-size: 1.125rem;
  }
}

.plan__analysis-text::before {
  padding-right: 10px;
  padding-right: 0.625rem;
  content: "●";
  font-size: 14px;
  font-size: 0.875rem;
  color: #1579bb;
}

.plan__analysis-note {
  padding-left: 50px;
  padding-left: 3.125rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  color: #b8b8b8;
  letter-spacing: 0.0675em;
}

.plan__report {
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: auto;
  margin-right: auto;
  padding: 30px;
  padding: 1.875rem;
  position: relative;
  background: #eeeeee;
  border-radius: 0.9375rem;
}

.plan__report-text {
  margin-top: 17px;
  margin-top: 1.0625rem;
  font-size: 25px;
  font-size: 1.5625rem;
  letter-spacing: 0.09275em;
  color: #595656;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .plan__report-text {
    margin-top: 0.5rem;
    font-size: 1.25rem;
  }
}

.plan__report-note {
  font-size: 18px;
  font-size: 1.125rem;
  color: #b8b8b8;
  text-align: center;
  letter-spacing: 0.0675em;
}
@media screen and (max-width: 768px) {
  .plan__report-note {
    font-size: 1rem;
  }
}

.plan__report-highlight {
  font-size: 26px;
  font-size: 1.625rem;
  color: #e57700;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .plan__report-highlight {
    font-size: 1.25rem;
  }
}

.process {
  background: #eeeeee;
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
}
@media screen and (max-width: 768px) {
  .process {
    padding-top: 3.75rem;
    padding-bottom: 3.75rem;
  }
}

.process__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 780px;
  max-width: 48.75rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .process__inner {
    max-width: 37.5rem;
    padding: 0 0.9375rem;
  }
}

.process__tab {
  margin-top: 20px;
  margin-top: 1.25rem;
}

.reason-list {
  margin-left: 20px;
  margin-left: 1.25rem;
  padding-block: 29px;
  padding-block: 1.8125rem;
  padding-inline: 40px;
  padding-inline: 2.5rem;
  position: relative;
  display: inline-block;
  background-color: #f5f5f5;
  border-radius: 1.25rem;
}

.reason-list__label {
  position: absolute;
  padding: 5px 18px;
  padding: 0.3125rem 1.125rem;
  font-size: 24px;
  font-size: 1.5rem;
  color: #fff;
  background-color: #1579bb;
  top: 30px;
  top: 1.875rem;
  left: -25px;
  left: -1.5625rem;
  border-radius: 0.3125rem;
}
@media screen and (max-width: 768px) {
  .reason-list__label {
    font-size: 0.875rem;
  }
}

.reason-list__title {
  margin-left: 59px;
  margin-left: 3.6875rem;
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.2;
  color: #0e3a57;
}
@media screen and (max-width: 768px) {
  .reason-list__title {
    margin-left: 1.5rem;
    font-size: 1.375rem;
  }
}

.reason-list__title span {
  background-color: #f9cc43;
  display: inline-block;
}

.reason-list__text-wrap {
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (max-width: 768px) {
  .reason-list__text-wrap {
    margin-top: 1rem;
  }
}

.reason-list__text + .reason-list__text {
  margin-top: 12px;
  margin-top: 0.75rem;
}
@media screen and (max-width: 768px) {
  .reason-list__text + .reason-list__text {
    margin-top: 0.5rem;
  }
}

.reason-list__text {
  position: relative;
  font-size: 18px;
  font-size: 1.125rem;
  letter-spacing: 0.05em;
  color: #595656;
  padding-left: 1em;
  text-indent: -2em;
}
@media screen and (max-width: 768px) {
  .reason-list__text {
    font-size: 1rem;
  }
}

.reason-list__text::before {
  content: "●";
  color: #23d28e;
  padding-right: 10px;
  padding-right: 0.625rem;
  font-size: 14px;
  font-size: 0.875rem;
}

.reasons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.reasons__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 1360px;
  max-width: 85rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .reasons__inner {
    padding: 0 0.9375rem;
    max-width: 37.5rem;
  }
}

.reasons__title {
  font-size: 72px;
  font-size: 4.5rem;
  line-height: 1.28;
  color: #0e3a57;
  text-align: center;
}
@media screen and (max-width: 1024px) {
  .reasons__title {
    font-size: 3.375rem;
  }
}
@media screen and (max-width: 768px) {
  .reasons__title {
    font-size: 2.5rem;
  }
}

.reasons__title-first {
  color: #595656;
}

.reasons__title-blue {
  color: #1579bb;
}

.reasons__title-small {
  font-size: 52px;
  font-size: 3.25rem;
  color: #595656;
}
@media screen and (max-width: 768px) {
  .reasons__title-small {
    font-size: 1.875rem;
  }
}

.reasons__items {
  margin-top: 36px;
  margin-top: 2.25rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  row-gap: 45px;
  row-gap: 2.8125rem;
  -webkit-column-gap: 2.5rem;
     -moz-column-gap: 2.5rem;
          column-gap: 2.5rem;
}
@media screen and (max-width: 1024px) {
  .reasons__items {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 768px) {
  .reasons__items {
    row-gap: 1.125rem;
  }
}

.service-card {
  position: relative;
  padding-block: 40px;
  padding-block: 2.5rem;
  padding-inline: 40px;
  padding-inline: 2.5rem;
  height: 100%;
  background-color: #fff;
  border-radius: 1rem;
}
@media screen and (max-width: 768px) {
  .service-card {
    padding-block: 2rem;
    padding-inline: 1.5rem;
  }
}

.service-card__title-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.service-card__icon {
  position: absolute;
  top: -12px;
  top: -0.75rem;
  left: 36px;
  left: 2.25rem;
  width: clamp(100px, 9.0666vw, 137px);
  width: clamp(6.25rem, 9.0666vw, 8.5625rem);
  height: auto;
  -webkit-transform: translateY(-20%);
          transform: translateY(-20%);
}
@media screen and (max-width: 1024px) {
  .service-card__icon {
    left: 0.625rem;
  }
}
@media screen and (max-width: 768px) {
  .service-card__icon {
    top: -0.375rem;
    left: 2.25rem;
    width: 5rem;
  }
}

.service-card__icon img {
  aspect-ratio: 298/294;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-card__title {
  margin-left: clamp(30px, 4.2666vw, 64px);
  margin-left: clamp(1.875rem, 4.2666vw, 4rem);
  font-size: 40px;
  font-size: 2.5rem;
  color: #0e3a57;
  text-align: center;
  background-color: #fff;
  z-index: 1;
}
@media screen and (max-width: 1024px) {
  .service-card__title {
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .service-card__title {
    font-size: 1.5rem;
  }
}

.service-card__img {
  margin-top: 18px;
  margin-top: 1.125rem;
  width: 100%;
  border-radius: 0.5rem;
}

.service-card__img img {
  aspect-ratio: 420/200;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

.service-card__meta {
  margin-top: 26px;
  margin-top: 1.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 36px;
  gap: 2.25rem;
  font-size: 16px;
  font-size: 1rem;
}
@media screen and (max-width: 1024px) {
  .service-card__meta {
    font-size: 1rem;
    gap: 1.5rem;
    -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;
  }
}
@media screen and (max-width: 768px) {
  .service-card__meta {
    font-size: 0.875rem;
  }
}

.service-card__meta-block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

.service-card__meta-tag {
  padding-block: 8px;
  padding-block: 0.5rem;
  padding-inline: 24px;
  padding-inline: 1.5rem;
  color: #fff;
  background-color: #15bb67;
  border-radius: 0.1875rem;
  white-space: nowrap;
}
@media screen and (max-width: 1024px) {
  .service-card__meta-tag {
    padding-block: 0.375rem;
  }
}

.service-card__meta-tag.service-card__meta-tag--blue {
  background: #1579bb;
}

.service-card__meta-info {
  margin-left: 16px;
  margin-left: 1rem;
  color: #333;
}

.service-card__text {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.88;
  letter-spacing: 0.05em;
  color: #333;
}

.service {
  padding-block: 80px;
  padding-block: 5rem;
  background-image: url(../images/service_bg.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .service {
    padding-block: 2.5rem;
  }
}

.service__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 1090px;
  max-width: 68.125rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .service__inner {
    padding: 0 0.9375rem;
    max-width: 37.5rem;
  }
}

.service__list {
  margin-top: 76px;
  margin-top: 4.75rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(auto, 46.875rem));
  gap: 40px;
  gap: 2.5rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 1024px) {
  .service__list {
    gap: 1.875rem;
  }
}
@media screen and (max-width: 768px) {
  .service__list {
    gap: 2.5rem;
    margin-top: 3rem;
    grid-template-columns: repeat(1, 1fr);
  }
}

.simulation__inner {
  margin: auto;
  padding: 0 25px;
  padding: 0 1.5625rem;
  max-width: 910px;
  max-width: 56.875rem;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .simulation__inner {
    padding: 0 0.9375rem;
    max-width: 37.5rem;
  }
}

.simulation__note {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #000;
}
@media screen and (max-width: 768px) {
  .simulation__note {
    font-size: 1rem;
  }
}

.simulation__btn-wrapper {
  margin-top: 54px;
  margin-top: 3.375rem;
  text-align: center;
}

.tab__menu {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
  gap: 1.875rem;
}

.tab__menu-item {
  padding: clamp(8px, 1.5vw, 16px);
  padding: clamp(0.5rem, 1.5vw, 1rem);
  min-width: 260px;
  min-width: 16.25rem;
  font-size: clamp(14px, 1.5vw, 20px);
  font-size: clamp(0.875rem, 1.5vw, 1.25rem);
  line-height: 1;
  text-align: center;
  border-radius: clamp(1.5rem, 3.5vw, 3.125rem);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .tab__menu-item {
    min-width: clamp(8.125rem, 13.3333vw, 12.5rem);
  }
}

.tab__menu-item:hover {
  opacity: 0.7;
}

.tab__menu-item.tab__menu-item--inspection {
  background-color: #fff;
  color: #15bb67;
  border: 1px solid #15bb67;
}

.tab__menu-item.tab__menu-item--inspection.is-active {
  background-color: #15bb67;
  color: #fff;
  border: 1px solid #15bb67;
}

.tab__menu-item.tab__menu-item--analysis {
  background-color: #fff;
  color: #1579bb;
  border: 1px solid #1579bb;
}

.tab__menu-item.tab__menu-item--analysis.tab__menu-item.is-active {
  background-color: #1579bb;
  color: #fff;
  border: 1px solid #1579bb;
}

.tab__menu-item.is-active {
  color: #15bb67;
  background-color: #fff;
  border: 1px solid #15bb67;
}

.tab__menu-item.tab__menu-item--analysis.is-active {
  color: #1579bb;
  background-color: #fff;
  border: 1px solid #1579bb;
}

.tab__content {
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .tab__content {
    margin-top: 1.5rem;
  }
}

.tab__content-item {
  margin-top: 12px;
  margin-top: 0.75rem;
  display: none;
  width: 100%;
  height: auto;
}

.tab__content-item img {
  aspect-ratio: 730/360;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.tab__content-item.is-active {
  display: block;
  -webkit-animation: fade 0.3s;
          animation: fade 0.3s;
}

@-webkit-keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.achievement-layout {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .achievement-layout {
    margin-top: 3.75rem;
  }
}

.company-layout {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .company-layout {
    margin-top: 5rem;
  }
}

.contact-layout {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .contact-layout {
    margin-top: 3.75rem;
  }
}

.faq-layout {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .faq-layout {
    margin-top: 5rem;
  }
}

.header-layout {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.plan-layout {
  margin-top: 100px;
  margin-top: 6.25rem;
}
@media screen and (max-width: 768px) {
  .plan-layout {
    margin-top: 3.75rem;
  }
}

.process-layout {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .process-layout {
    margin-top: 3.75rem;
  }
}

.reasons-layout {
  margin-top: 140px;
  margin-top: 8.75rem;
}
@media screen and (max-width: 1024px) {
  .reasons-layout {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .reasons-layout {
    margin-top: 3.75rem;
  }
}

.service-layout {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .service-layout {
    margin-top: 3.75rem;
  }
}

.simulation-layout {
  margin-top: 80px;
  margin-top: 5rem;
}
@media screen and (max-width: 768px) {
  .simulation-layout {
    margin-top: 3.75rem;
  }
}
/*# sourceMappingURL=styles.css.map */

/* 特定商取引、運営会社リンク */
.contact_policy{width: 100%;}
.contact_policy_link{text-align: center;}
.contact_policy_link a{display: block; color: #fff; background-color: #0e3a57; font-size: 1rem; padding: 15px; transition: .5s;}
.contact_policy_link a:hover{color: #0e3a57; background-color: #fff; transition: .5s;}


/* 追記 */
.header__logo{display: flex; flex: initial; align-items: center; gap: 15px; padding-left: 15px;}
.header__logo img{max-width: 200px;}
.header_logo_right{font-size: 13px; color: #f00;}
.header__nav-item a{font-size: clamp(0.75rem, 1.2vw, 1rem);}



.fv__top-title-sub .yellow{color: #FFFF00;}

.fv-title__second{margin-bottom: 20px;}
.fv_price{font-size: clamp(1.25rem, 2.6666vw, 2.5rem); color: #f00;}
.fv_price span{font-size: 16px;}
.fv-title__end .add{display: block;}

.service__inner{max-width: 80.125rem;}
.service_card_caution{font-size: 13px; font-weight: 400; margin-top: 10px;}

/* ヘッダードロワー */
/* 視覚的に非表示（スクリーンリーダーには伝える） */
.irai-toggle-visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  margin: -1px; padding: 0; border: 0;
  clip: rect(0 0 0 0); clip-path: inset(50%);
  overflow: hidden; white-space: nowrap;
}

/* パネルのスライド展開（初期は閉じる） */
.header_irai_btn_box{
  overflow: hidden;
  max-height: 0;
  transition: max-height .35s ease;
  will-change: max-height;
}

/* チェックON時に開く（~ は同階層以降の兄弟セレクタ） */
#irai-toggle:checked ~ .header_irai_btn_box{
  /* 中身の高さより十分大きい値にする（autoはアニメ不可） */
  max-height: 800px;
}

/* 見た目：ナビ内のlabelを既存ボタン風に */
.header__nav-item--contact label.header__nav-item--contact-text{
  cursor: pointer;
  display: inline-block;
}

/* ドロワー側のlabelもリンク風に */
.header__drawer-contact{
  cursor: pointer;
  display: block;
  padding: .75rem 1rem;
}

.header__nav-item--contact label{font-size: clamp(0.75rem, 1.2vw, 1rem);}

.header__nav-item--contact label{
      display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: min(14px, 0.933333333vw);
    gap: min(0.875rem, 0.933333333vw);
    padding-block: 20px;
    padding-block: 1.25rem;
    padding-inline: clamp(14px, 3.2vw, 16px);
    padding-inline: clamp(0.875rem, 3.2vw, 1rem);
    position: relative;
    height: inherit;
    font-size: clamp(14px, 1.533vw, 23px);
    font-size: clamp(0.875rem, 1.533vw, 1.4375rem);
    font-weight: 900;
    font-family: "Zen Maru Gothic", sans-serif;
    line-height: 1.25;
    color: #1c425e;
    background: #f9cc43;
}

.header__nav-item--contact label::before{
  content: "";
    inline-size: clamp(16px, 2.866vw, 43px);
    inline-size: clamp(1rem, 2.866vw, 2.6875rem);
    block-size: clamp(16px, 3.133vw, 47px);
    block-size: clamp(1rem, 3.133vw, 2.9375rem);
    background: url(/lp/images/header_icon.png) center / contain no-repeat;
    display: inline-block;
}

.header__nav-item--contact-text{font-size: clamp(0.75rem, 1.2vw, 1rem);}
.header_irai_btn_box{position: absolute; right: 0; width: 300px; background-color: #FFFF99; top: 80px;}
.header_irai_btn_box_inner{padding: 20px;}
.header_irai_btn{width: 240px; max-width: 100%; margin: 0 auto 10px; text-align: center;}
.header_irai_btn a{display: block; color: #fff; padding: 5px; border-radius: 10px; transition: .5s;}
.header_irai_btn a:hover{opacity: 0.7; transition: .5s;}
.irai_btn_excel a{background-color: #128D50; border: 1px solid #128D50;}
.irai_btn_form a{background-color: #E97132; border: 1px solid #E97132;}
.irai_btn_other a{background-color: #0F9ED5; border: 1px solid #0F9ED5;}

.header_drawer_irai{margin-top: 30px;}
.header_drawer_irai_head{text-align: center; color: #fff; font-size: 1.5rem; margin-bottom: 20px;}
.header_drawer_irai_btn{display: flex; flex-direction: column; gap: 10px;}
.drawer_irai_btn{width: 200px; text-align: center; max-width: 100%; margin: 0 auto 10px;}
.drawer_irai_btn a{display: block; color: #fff; padding: 5px; border-radius: 10px;}

.header{}
.header_first{display: flex; width: 100%; height: 80px; align-items: center;}
.header_tel{margin: 0 0 0 auto;}
.header_tel_number{display: flex; align-items: center; font-size: 35px;}
.header_tel_number img{width: 50px; height: auto; margin-right: 10px;}
.header_tel_time{display: block; font-size: 12px; text-align: right;}
.header__nav-item--contact{height: 80px;}
.header_second{height: 60px; background-color: #f5f5f5;}
.header_second .header__nav{justify-content: center;}
.header__nav-item a{transition: .5s;}
.header__nav-item a:hover{background-color: #4BB3CF; color: #fff; transition: .5s;}

/* ページ下部 固定メニュー */
.btm_menu { position: fixed; bottom: -60px; width: 100%; border-top: 1px solid #1579BB; z-index: 99; }
.btm_menu li { float: left; width: 50%; border-right: 1px solid #fff;}
.btm_menu li:last-child { border-right: none; }
.btm_menu li a { display: block; height: 55px; text-align: center; font-size: 18px; padding: 15px 5px 0px; background-color: #1579BB; color: #fff; transition: .5s; font-weight: 700;}
.btm_menu li a i{ font-size: 25px; margin-right: 8px; vertical-align: -3px;}
.btm_menu li a:hover { background-color: #fff; color: var(--main-color); transition: .5s;}
.btm_menu ul:after { content: ''; clear: both; display: block; }



.lp_topimg{max-width: 1500px; margin: 0 auto 10px;}
.lp_topimg img{height: auto;}

.lp_irai_btn_wrapper{display: flex; gap: 30px; position: relative; z-index: 2; flex-wrap: wrap; max-width: 840px; margin: 0 auto;}
.lp_irai_btn_head{text-align: center; margin-bottom: 30px; font-size: 60px; color: #0B395A;}
.lp_irai_btn{text-align: center;}
.lp_irai_btn a{display: block; padding: 15px ; color: #fff; border-radius: 50px; font-size: 28px; transition: .5s;}
.lp_irai_btn_excel{width: 100%;}
.lp_irai_btn_excel a{background-color: #128D50; border: 1px solid #128D50;}
.lp_irai_btn_excel a:hover{color: #128D50; background-color: #fff; transition: .5s;}
.lp_irai_btn_form{width: calc((100% - 30px)/2);}
.lp_irai_btn_form a{background-color: #E97132; border: 1px solid #E97132;}
.lp_irai_btn_form a:hover{color: #E97132; background-color: #fff; transition: .5s;}
.lp_irai_btn_other{width: calc((100% - 30px)/2);}
.lp_irai_btn_other a{background-color: #0F9ED5; border: 1px solid #0F9ED5;}
.lp_irai_btn_other a:hover{color: #0F9ED5; background-color: #fff; transition: .5s;}

.lp_irai_btn_bg{width: 100%; background-color: #f5f5f5; padding: 50px;}
.lp_irai_btn_wrapper02{margin-top: 30px; justify-content: center;}
.lp_irai_btn_wrapper02 .lp_irai_btn_excel a{color: #128D50; background-color: #fff;}
.lp_irai_btn_wrapper02 .lp_irai_btn_excel a:hover{color: #fff; background-color: #128D50;}
.lp_irai_btn_wrapper02 .lp_irai_btn_form a{color: #E97132; background-color: #fff;}
.lp_irai_btn_wrapper02 .lp_irai_btn_form a:hover{color: #fff; background-color: #E97132;}
.lp_irai_btn_wrapper02 .lp_irai_btn_other a{color: #0F9ED5; background-color: #fff;}
.lp_irai_btn_wrapper02 .lp_irai_btn_other a:hover{color: #fff; background-color: #0F9ED5;}

.lp_irai_tel{display: flex; justify-content: center; gap: 10px; align-items: center; margin-top: 30px;}
.lp_irai_tel_freedial{}
.lp_irai_tel_number{font-size: 60px; line-height: 1;}
.lp_irai_tel_number span{display: block; font-size: 20px; text-align: right; margin-top: 10px;}
.lp_irai_tel_bottom{color: #fff;}


.achievement__note .right{display: block; text-align: right; margin-bottom: 20px;}

.lp_price_table{ width: 1400px; max-width: 90%; margin: 30px auto 30px;}
.lp_price_table_per{text-align: right; margin-bottom: 5px; font-size: 1rem;}
.lp_price_table table{border-collapse: collapse; width: 100%;}
.lp_price_table th,
.lp_price_table td{border: 1px solid #ccc; text-align: center; padding: 15px;}
.lp_price_table thead{font-size: 1.875rem; color: #fff;}
.thead01{color: #f00; font-size: 1rem;}
.thead02{background-color: #2F46E7;}
.thead03{background-color: #4471CB;}
.thead04{background-color: #0F9ED5;}
.thead05{ background-color: #2FAD5D;}
.thead06{background-color: #4ACEAD}

.tbody01{font-size: 1.5rem;}
.tbody02 th{font-size: 1rem;}
.tbody02 td{font-size: 1.25rem;}

.lp_price_table span{font-size: 1rem;}

.lp_price_include{text-align: center; margin: 20px auto 30px;}
.lp_price_include .lp_price_include01{font-size: 1.5625rem; display: block;}
.lp_price_include .lp_price_include02{font-size: 1.125rem; display: block;}
.lp_price_include02 .yellow{font-size: 1.5rem; color: #e57700;}

.lp_price_caution .underline{text-decoration: underline;}
.lp_price_kome{font-weight: 400;}
.lp_price_caution .red{color: #f00;}

.law_wrapper{padding: 60px 0;}
.law_sec{width: 90%; margin: 0 auto; max-width: 1000px;}
.law_sec h2{margin-bottom: 20px; font-size: 2rem;}
.law_table{margin-bottom: 50px;}
.law_table table{border-collapse: collapse;}
.law_table th,
.law_table td{font-size: 15px; text-align: left; padding: 15px 20px; border-bottom: 1px solid #ccc;}
.law_table th{width: 25%; font-weight: 600;}
.law_table td{font-weight: 400;}
.law_table ul{margin-left: 20px;}
.law_table ul li{list-style-type: disc;}
.law_table a{text-decoration: underline;}

.law_policy_txt p{line-height: 2rem; margin-bottom: 30px;}
.law_policy h3{font-size: 1.8rem; margin-bottom: 15px;}
.law_policy .mb40{margin-bottom: 40px;}
.law_policy .mb20{margin-bottom: 20px;}
.law_policy p,
.law_policy li{font-weight: 400; line-height: 30px;}
.law_policy ol{margin-left: 20px; margin-bottom: 40px;}
.privacy_sec_ol01 > li{list-style-type: none; counter-increment: cnt;}
.privacy_sec_ol01 > li::before{content: "(" counter(cnt) ") ";
    margin-left: -1.5rem;}
.law_policy ul.privacy_sec_ul01{margin-left: 40px!important; margin-bottom: 20px;}
.law_policy ul.privacy_sec_ul01 li{list-style: disc;}
.law_policy a{text-decoration: underline;}
.privacy_txt01{text-align: right; font-size: 17px; margin-bottom: 60px;}

.service-card__text{margin-bottom: 30px;}
.service__list .lp_irai_btn a{padding: 15px 0; font-size: 15px;}
.service__list .lp_irai_btn_wrapper{gap: 20px;}
.service__list .lp_irai_btn_form,
.service__list .lp_irai_btn_excel{width: calc((100% - 20px)/2);}
.service__list .lp_irai_btn_other{width: 100%;}




/* トップに戻るボタン */
.top_btn{
  position: fixed;
  right: 40px;
  bottom: 60px;
  z-index: 10;
}

.top_btn a{
  display: inline-block;
  padding: 8px 16px;
  background: #5FC4DF;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  border-radius: 4px;
}

/* 上向きの三角形 */
.top_btn a::before{
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 8px;
  border-style: solid;
  /* 上 右 下 左 の順 */
  border-width: 0 8px 10px 8px;
  border-color: transparent transparent #fff transparent;
}


/* サンクスページ */
.thanks_sec h2{margin-bottom: 20px;}
.thanks_sec .thanks_txt{line-height: 30px;}



/* SP */
@media print, screen and (max-width: 520px) {
.noneSP{display: none;}
.header{position: fixed; z-index: 99;}
.header_tel{display: none;}
.header__logo{padding-left: 10px;}
.header__logo img{max-width: 120px;}
.header_logo_right{font-size: 10px;}
.header_tel_btn{width: 60px; height: 75px; position: absolute; right: 60px; top: 0; text-align: center;}
.header_tel_btn a{color: #fff; background-color: #0F9ED5; display: block; padding: 26px 0 25px;}
a[href^="tel:"]{pointer-events: initial!important;}

main{padding-top: 75px;}
.lp_topimg{max-width: 800px;}

.lp_irai_btn_bg{width: 100%; border-radius: 0; padding: 20px 10px;}
.lp_irai_btn_head{font-size: 30px;}
.lp_irai_btn_wrapper{flex-direction: column; align-items: center;}
.lp_irai_btn_form,
.lp_irai_btn_other{width: 100%;}
.service__list .lp_irai_btn_form,
.service__list .lp_irai_btn_excel{width: 100%;}
.lp_irai_btn a{font-size: 16px;}
.lp_irai_tel_number{font-size: 30px;}
.lp_irai_tel_number span{margin-top: 10px; font-size: 14px;}
.lp_irai_tel_freedial img{width: 80px; height: auto;}

.lp_price_table table{display: none;}

.lp_price_sp_head{margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px solid #ccc;}
.lp_price_list{margin-bottom: 30px; font-size: 1rem;}
.lp_price_include .lp_price_include01{font-size: 1.2rem;}
.lp_price_include02 .yellow{font-size: 1.2rem; display: block;}

.law_table th{padding: 10px 5px;}

.top_btn{right: 15px; bottom: 75px;}

.achievement__note-wrap{max-width: 90%;}
.achievement__note .right{text-align: center;}

.contact_policy{padding-bottom: 55px;}


}


/* TAB */
@media print, screen and (min-width: 521px) and (max-width: 1024px) {
.noneTAB{display: none;}
.header{position: fixed; z-index: 99;}
.header_tel{display: none;}
.lp_topimg{max-width: 800px;}
.lp_irai_btn_bg{width: 100%; border-radius: 0; padding: 10px;}
.lp_irai_btn_head{font-size: 30px;}
.lp_irai_btn_wrapper{flex-direction: column; align-items: center;}
.lp_irai_btn_form,
.lp_irai_btn_other{width: 100%;}
.service__list .lp_irai_btn_form,
.service__list .lp_irai_btn_excel{width: 100%;}
.lp_irai_btn a{font-size: 16px;}

.lp_irai_tel_number{font-size: 30px;}
.lp_irai_tel_number span{margin-top: 10px; font-size: 14px;}
.lp_irai_tel_freedial img{width: 80px; height: auto;}

main{padding-top: 75px;}

.lp_price_table table{display: none;}
.lp_price_sp_head{margin-bottom: 10px; padding-bottom: 5px; border-bottom: 1px solid #ccc;}
.lp_price_list{margin-bottom: 30px; font-size: 1rem;}
.lp_price_include .lp_price_include01{font-size: 1.2rem;}
.lp_price_include02 .yellow{font-size: 1.2rem; display: block;}

.top_btn{right: 15px; bottom: 75px;}

.achievement__note-wrap{max-width: 90%;}
.achievement__note .right{text-align: center;}

.contact_policy{padding-bottom: 55px;}

}

/* PC */
@media print, screen and (min-width: 1025px) and (max-width: 1800px) {
.nonePC{display: none;}
.lp_price_sp{display: none;}
}

/* PC WIDE */
@media print, screen and (min-width: 1801px) {
.nonePCWIDE{display: none;}
.header_tel_free{font-size: 12px; display: block;}
.header_tel_number{font-size: 33px; font-family: auto;}
.header_tel_time{font-size: 12px; display: block; text-align: right;}
.header__nav{flex: initial;}
.lp_price_sp{display: none;}




}