@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
main,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
}

header,
footer,
article,
section,
aside,
hgroup,
nav,
menu,
figure,
figcaption,
time {
  display: block;
}

li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

img {
  border: 0;
  vertical-align: top;
  font-size: 0;
  line-height: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

hr {
  margin: 1em 0;
  padding: 0;
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
}

input,
select {
  vertical-align: middle;
}

input,
textarea {
  margin: 0;
  padding: 0;
}

/*----------------------------------------
	Custom Properties
----------------------------------------*/
:root {
  --main-color: #005E50;
  --text-color: #333333;
  --background-color: #fff;
  --font-family-base: "Noto Sans JP", sans-serif;
  --font-family-jp: "Noto Sans JP", sans-serif;
  --font-family-en: "Noto Sans JP", sans-serif;
  --font-size-base-pc: 1.8rem;
  --font-size-base-sp: 1.6rem;
  --font-weight-thin: 100;
  --font-weight-extraLight: 200;
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semiBold: 600;
  --font-weight-bold: 700;
  --font-weight-extraBold: 800;
  --font-weight-black: 900;
  --ease-linear: cubic-bezier(0.25, 0.25, 0.75, 0.75);
  --ease-in-sine: cubic-bezier(0.47, 0, 0.745, 0.715);
  --ease-out-sine: cubic-bezier(0.39, 0.575, 0.565, 1);
  --ease-inout-sine: cubic-bezier(0.445, 0.05, 0.55, 0.95);
  --ease-in-quad: cubic-bezier(0.55, 0.085, 0.68, 0.53);
  --ease-out-quad: cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --ease-inout-quad: cubic-bezier(0.455, 0.03, 0.515, 0.955);
  --ease-in-cubic: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  --ease-out-cubic: cubic-bezier(0.215, 0.61, 0.355, 1);
  --ease-inout-cubic: cubic-bezier(0.645, 0.045, 0.355, 1);
  --ease-in-quart: cubic-bezier(0.895, 0.03, 0.685, 0.22);
  --ease-out-quart: cubic-bezier(0.165, 0.84, 0.44, 1);
  --ease-inout-quart: cubic-bezier(0.77, 0, 0.175, 1);
  --ease-in-quint: cubic-bezier(0.755, 0.05, 0.855, 0.06);
  --ease-out-quint: cubic-bezier(0.23, 1, 0.32, 1);
  --ease-inout-quint: cubic-bezier(0.86, 0, 0.07, 1);
  --ease-in-expo: cubic-bezier(0.95, 0.05, 0.795, 0.035);
  --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
  --ease-inout-expo: cubic-bezier(1, 0, 0, 1);
  --ease-in-circ: cubic-bezier(0.6, 0.04, 0.98, 0.335);
  --ease-out-circ: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-inout-circ: cubic-bezier(0.785, 0.135, 0.15, 0.86);
  --ease-in-back: cubic-bezier(0.6, -0.28, 0.735, 0.045);
  --ease-out-back: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease-inout-back: cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/*----------------------------------------
	Common
----------------------------------------*/
html {
  height: 100%;
  font-size: 62.5%;
}

html {
  height: 100%;
  font-size: 62.5%;
}

@media only screen and (min-width: 1920px) {
  html {
    font-size: 62.5%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1919px) {
  html {
    font-size: calc(34% + 0.25vw);
  }
}
@media only screen and (max-width: 767px) {
  html {
    font-size: 62.5%;
  }
}
@media only screen and (max-width: 375px) {
  html {
    font-size: 58%;
  }
}
body {
  color: var(--text-color);
  background-color: var(--background-color);
  font-size: var(--font-size-base-pc);
  line-height: 1.45;
  letter-spacing: 0;
  font-weight: var(--font-weight-regular);
  font-family: var(--font-family-base);
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
   -ms-text-size-adjust: 100%;
       text-size-adjust: 100%;
  position: relative;
  overflow-x: hidden;
  padding-top: 80px;
}

.jp {
  font-family: var(--font-family-jp);
}

.en {
  font-family: var(--font-family-en);
}

a {
  color: var(--text-color);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  cursor: pointer;
}
a:hover {
  opacity: 0.6;
  text-decoration: none;
}

img {
  vertical-align: bottom;
  width: 100%;
  height: auto;
}

button {
  border: none;
}

label {
  white-space: nowrap;
}

input {
  border: none;
}

@media only screen and (min-width: 769px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media only screen and (max-width: 767px) {
  body {
    font-size: var(--font-size-base-sp);
    padding-top: 56px;
  }
}
.l-header {
  width: 100vw;
  height: 80px;
  padding: 0 4%;
  position: fixed;
  z-index: 2;
  top: 0;
  background-color: #fff;
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.2509803922);
}

@media (min-width: 768px) and (max-width: 999px) {
  .l-header {
    height: 80px;
  }
}
@media (max-width: 767px) {
  .l-header {
    height: 56px;
    padding: 0 2.4% 0 4%;
  }
}
.l-footer {
  overflow: hidden;
}

.l-main {
  overflow: hidden;
}

.full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

.container {
  width: 92%;
  max-width: 1420px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) and (max-width: 999px) {
  .container {
    width: 88%;
  }
}
@media (max-width: 767px) {
  .container {
    width: 88%;
  }
}
.c-button {
  cursor: pointer;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  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;
  background-color: #fff;
  color: var(--main-color);
  line-height: 1.45;
  font-weight: var(--font-weight-bold);
  padding: 0.9rem 2rem 1.1rem 2rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 0.8rem;
  text-decoration: none;
  border: 2px solid var(--main-color);
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 94, 80, 0.2509803922);
          box-shadow: 0px 2px 6px 0px rgba(0, 94, 80, 0.2509803922);
  position: relative;
}
.c-button.contact {
  background-color: var(--main-color);
  border: 2px solid #fff;
  color: #fff;
  max-width: initial;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.c-button.contact:hover {
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}
.c-button.apply {
  background-color: rgb(237, 96, 88);
  border: 2px solid #fff;
  color: #fff;
  max-width: initial;
  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), -webkit-transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.c-button.apply:hover {
  background-color: rgb(237, 96, 88);
  -webkit-transform: scale(0.96);
          transform: scale(0.96);
}
.c-button.has-free-limit {
  margin-top: 4rem;
}
.c-button.has-free-limit::after {
  content: "";
  display: block;
  position: absolute;
  width: 14rem;
  height: 3.8rem;
  left: 2rem;
  top: -2rem;
  background-image: url(../img/top/icon_free_limit.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}
.c-button .icon {
  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;
  line-height: 1;
  margin-right: 0.8rem;
}
.c-button .icon img {
  height: 2rem;
  width: auto;
}

.c-button:hover {
  background-color: var(--main-color);
  color: #fff;
  opacity: 1;
}

@media (max-width: 767px) {
  .c-button {
    padding: 1.4rem 3rem 1.6rem 3rem;
  }
  .c-button.has-free-limit {
    margin-top: 2.4rem;
  }
  .c-button.has-free-limit::after {
    width: 10rem;
    height: 2.6rem;
    left: 1rem;
    top: -1.5rem;
  }
}
.input-text {
  width: 100%;
  padding: 1.8rem;
  border: none;
  font-size: var(--font-size-base-pc);
  line-height: 1.65;
}

.input-textarea {
  width: 100%;
  padding: 1.8rem;
  border: none;
  font-size: var(--font-size-base-pc);
}

.input-select {
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: none;
  vertical-align: middle;
  padding: 1.8rem 2.4rem 1.8rem 1.8rem;
  border: none;
  outline: 0;
  font-size: var(--font-size-base-pc);
  text-overflow: ellipsis;
  width: 100%;
  cursor: pointer;
  background: #fff url(../img/common/icon_select_arrow.svg) no-repeat right 12px center;
  background-size: 12px auto;
}

@media (max-width: 767px) {
  .input-select,
  .input-textarea,
  .input-text {
    font-size: var(--font-size-base-sp);
  }
  .c-link-outer::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.p-header {
  width: 100%;
  height: 100%;
  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;
}
.p-header a {
  display: block;
  text-decoration: none;
}

.p-header__logo {
  line-height: 1;
}
.p-header__logo a {
  display: block;
  width: 226px;
  height: 28px;
}

.p-header__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.8rem;
  font-weight: var(--font-weight-bold);
}
.p-header__navi .show-mobile {
  display: none !important;
}
.p-header__navi .c-button {
  margin-left: 1.6rem;
}

@media (max-width: 767px) {
  .p-header__logo a {
    width: 170px;
    height: 22px;
  }
  .p-header__navi {
    width: 70%;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    background-color: #fff;
    opacity: 0;
    visibility: hidden;
    -webkit-transform: translateX(10%);
            transform: translateX(10%);
    overflow-y: scroll;
    position: absolute;
    top: 56px;
    right: 0;
    transform: translateX(10%);
    -webkit-transition: 0.5s;
    transition: 0.5s;
    -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: start;
    gap: 2.4rem 0;
    padding: 4rem 4rem;
    border-bottom-left-radius: 1.6rem;
    -webkit-box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
            box-shadow: 0px 2px 2px 0px rgba(0, 0, 0, 0.15);
  }
  .p-header__navi a {
    font-weight: var(--font-weight-regular);
  }
  .p-header__navi .show-mobile {
    display: block !important;
  }
  .p-header__navi .hide-mobile {
    display: none !important;
  }
  .menu-open .p-header__navi {
    opacity: 1;
    visibility: visible;
    right: 0;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.p-footer {
  padding: 8.8rem 0 4rem 0;
}
.p-footer .container {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.p-footer__logo {
  display: block;
  width: 226px;
  height: 28px;
  margin-bottom: 3.2rem;
}

.p-footer__navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 8rem;
  text-align: center;
}
.p-footer__navi a {
  text-decoration: none;
}
.p-footer__navi a:hover {
  text-decoration: underline;
}

.p-footer__copyright {
  color: #666;
  margin-top: 8rem;
  text-align: center;
}

@media (max-width: 767px) {
  .p-footer {
    padding: 4rem 0 10rem 0;
  }
  .p-footer__logo {
    width: 170px;
    height: 22px;
  }
  .p-footer__navi {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.4rem 0;
  }
  .p-footer__copyright {
    margin-top: 4rem;
  }
}
.page-sub .container {
  max-width: 800px;
}

.p-menu-btn {
  display: none;
  width: 80px;
  height: 80px;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  position: relative;
  margin-left: 8px;
}
.p-menu-btn span {
  display: block;
  width: 30px;
  height: 2px;
  position: absolute;
  z-index: 1;
  left: calc(50% - 15px);
  -webkit-transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: all 0.3s cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #000;
}
.p-menu-btn span.l1 {
  top: 30px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.p-menu-btn span.l2 {
  top: 39px;
}
.p-menu-btn span.l3 {
  top: 48px;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}

.menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
  top: 39px;
}
.menu-open .p-menu-btn span.l1 {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}
.menu-open .p-menu-btn span.l3 {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.menu-open .p-menu-btn span.l2 {
  display: none;
}

@media (max-width: 767px) {
  .p-menu-btn {
    display: block;
    width: 40px;
    height: 40px;
    margin-left: 4px;
  }
  .p-menu-btn span {
    width: 20px;
    left: calc(50% - 10px);
  }
  .p-menu-btn span.l1 {
    top: 13px;
  }
  .p-menu-btn span.l2 {
    top: 19px;
  }
  .p-menu-btn span.l3 {
    top: 25px;
  }
  .menu-open .p-menu-btn span.l1, .menu-open .p-menu-btn span.l3 {
    top: 18px;
  }
}
.p-section-visual {
  width: 100vw;
  position: relative;
}

.p-section-intro {
  width: 100vw;
  position: relative;
}
.p-section-intro.container {
  max-width: 1440px;
}
.p-section-intro picture {
  display: block;
  padding: 4%;
}

@media (max-width: 767px) {
  .p-section-intro picture {
    padding: 3.2rem 0;
  }
}
.p-section-qa {
  padding: 7.2rem 0;
}

.p-section-qa__heading {
  text-align: center;
  color: var(--main-color);
  font-weight: var(--font-weight-bold);
  font-size: 4.8rem;
  font-weight: var(--font-weight-black);
  margin-bottom: 6.4rem;
}

.p-section-qa__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1.6rem 0;
}
.p-section-qa__list.container {
  max-width: 800px;
}
.p-section-qa__list .item {
  background-color: #F9FBDD;
  -webkit-transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.p-section-qa__list .item:hover {
  -webkit-box-shadow: 0px 2px 6px 0px rgba(0, 94, 80, 0.2509803922);
          box-shadow: 0px 2px 6px 0px rgba(0, 94, 80, 0.2509803922);
}
.p-section-qa__list .item .question {
  background: inherit;
  text-align: left;
  font-weight: var(--font-weight-bold);
  font-size: 2.4rem;
  line-height: 1.4;
  color: var(--main-color);
  width: 100%;
  cursor: pointer;
  padding: 4rem 6rem 4rem 4rem;
  position: relative;
}
.p-section-qa__list .item .question .icon {
  position: absolute;
  right: 4rem;
  top: 50%;
  width: 16px;
  height: 16px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-section-qa__list .item .question .icon::before, .p-section-qa__list .item .question .icon::after {
  content: "";
  position: absolute;
  background: var(--main-color);
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}
.p-section-qa__list .item .question .icon::before {
  top: 50%;
  left: 0;
  width: 100%;
  height: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-section-qa__list .item .question .icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-section-qa__list .item .answer {
  width: 100%;
  display: none;
  padding: 0 4rem 4rem 4rem;
  font-size: 2rem;
  line-height: 1.75;
}
.p-section-qa__list .item.active .question .icon::after {
  -webkit-transform: translateX(-50%) rotate(90deg);
          transform: translateX(-50%) rotate(90deg);
}

@media (max-width: 767px) {
  .p-section-qa {
    padding: 6.4rem 0;
  }
  .p-section-qa .p-section-head {
    margin-bottom: 4rem;
  }
  .p-section-qa__heading {
    font-size: 2.4rem;
    margin-bottom: 3.2rem;
  }
  .p-section-qa__list {
    gap: 1rem 0;
  }
  .p-section-qa__list .item .question {
    font-size: 1.6rem;
    padding: 2.4rem 6rem 2.4rem 2.4rem;
  }
  .p-section-qa__list .item .question .icon {
    right: 2rem;
  }
  .p-section-qa__list .item .question::after {
    width: 2rem;
    height: 2rem;
  }
  .p-section-qa__list .item .answer {
    font-size: 1.6rem;
    padding: 0 2.4rem 2.4rem 2.4rem;
  }
}
.p-fixed-cta {
  position: fixed;
  z-index: 2;
  right: 0;
  bottom: 10px;
  background-color: #fff;
  border-radius: 2.4rem 0 0 2.4rem;
  border-bottom: 4px solid var(--main-color);
  border-left: 4px solid var(--main-color);
  border-top: 4px solid var(--main-color);
  -webkit-box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 3.2rem 4rem 4rem 4rem;
}

.p-fixed-cta__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 2.4rem;
  color: var(--main-color);
}
.p-fixed-cta__head span {
  display: block;
  line-height: 1;
}
.p-fixed-cta__head .tagline {
  font-weight: var(--font-weight-medium);
  margin-bottom: 1rem;
}
.p-fixed-cta__head .logo {
  line-height: 1;
  display: block;
  width: 189px;
  height: 23px;
}

.p-fixed-cta__navi .c-button {
  width: 33rem;
  border: none;
}
.p-fixed-cta__navi .c-button.apply {
  font-size: 2.3rem;
  padding: 1.8rem 0 2.2rem 0;
  margin-bottom: 1.4rem;
}
@media (max-width: 767px) {
  .p-fixed-cta {
    width: 92%;
    right: 4%;
    bottom: 0;
    border-bottom: none;
    border-right: 4px solid var(--main-color);
    border-radius: 2.4rem 2.4rem 0 0;
    padding: 1.2rem 1.6rem 1.6rem 1.6rem;
  }
  .p-fixed-cta__head {
    display: none;
  }
  .p-fixed-cta__navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: baseline;
        -ms-flex-align: baseline;
            align-items: baseline;
    gap: 0 1rem;
  }
  .p-fixed-cta__navi .c-button {
    width: 50%;
    font-size: 1.4rem;
    padding: 1.1rem 1rem 1.2rem 1rem;
    height: 40px;
    -webkit-box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
            box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.25);
  }
  .p-fixed-cta__navi .c-button.apply {
    font-size: 1.4rem;
    padding: 1.1rem 1rem 1.2rem 1rem;
    margin-bottom: 0;
  }
  .p-fixed-cta__navi .c-button.contact .icon img {
    height: 1.5rem;
  }
  .p-fixed-cta__navi .c-button.has-free-limit {
    margin-top: 1.4rem;
  }
}
.p-section-cta {
  background-image: url(../img/top/bg_cta.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  text-align: center;
  height: 37rem;
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  position: relative;
}
.p-section-cta::after {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(74, 146, 137, 0.7);
  width: 100%;
  height: 100%;
}

.p-section-cta__text {
  margin-bottom: 4rem;
  color: #fff;
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  position: relative;
  z-index: 1;
  padding: 0 8%;
}

.p-section-cta__navi {
  position: relative;
  z-index: 1;
  margin-bottom: 1.6rem;
}
.p-section-cta__navi .c-button {
  padding: 1.8rem 2rem 2.1rem 2rem;
  width: 32rem;
}

@media (max-width: 767px) {
  .p-section-cta__text {
    font-size: 1.6rem;
  }
  .p-section-cta__navi .c-button {
    padding: 1.2rem 2rem 1.7rem 2rem;
    font-size: 2rem;
  }
}
.p-section-ata {
  position: relative;
  z-index: 0;
  text-align: center;
  height: 76rem;
}
.p-section-ata::before {
  content: "";
  display: block;
  position: absolute;
  inset: 0;
  background: url(../img/top/bg_ata.jpg) no-repeat center/cover;
  opacity: 0.8;
  z-index: -1;
}

.p-section-ata__text {
  margin-bottom: 4rem;
  font-size: 2.4rem;
  font-weight: var(--font-weight-medium);
  width: 90%;
  position: absolute;
  top: 8%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.p-section-ata__text h2 {
  color: var(--main-color);
  font-size: 3.8rem;
  line-height: 1.45;
  font-weight: var(--font-weight-bold);
  margin-bottom: 1.6rem;
}
.p-section-ata__text h2 strong {
  font-size: 4.8rem;
  font-weight: var(--font-weight-black);
}
.p-section-ata__text p {
  line-height: 1.65;
}

.p-section-ata__navi {
  width: 90%;
  position: absolute;
  bottom: 14rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-section-ata__navi .c-button {
  padding: 1.8rem 2rem 2.1rem 2rem;
  width: 32rem;
}
.p-section-ata__navi .c-button.has-free-limit::after {
  top: -4.2rem;
  left: 9rem;
}

@media (max-width: 767px) {
  .p-section-ata {
    height: 51rem;
  }
  .p-section-ata__text {
    padding: 0 1.6rem;
    width: 100%;
    top: 3.4rem;
    font-size: 1.6rem;
  }
  .p-section-ata__text h2 {
    font-size: 2.4rem;
  }
  .p-section-ata__text h2 strong {
    font-size: 3rem;
  }
  .p-section-ata__navi {
    width: inherit;
    min-width: 70%;
    bottom: 7rem;
  }
  .p-section-ata__navi .c-button {
    width: 26rem;
    padding: 1.2rem 2rem 1.7rem 2rem;
    font-size: 2rem;
  }
  .p-section-ata__navi .c-button.has-free-limit::after {
    top: -3rem;
    left: 8rem;
  }
}
.p-section-service-index {
  width: 100vw;
  position: relative;
  background-image: url(../img/top/bg_service_index.jpg);
  background-position: center top;
  background-size: 100% auto;
  background-repeat: no-repeat;
  padding-top: 12rem;
  padding-bottom: 12rem;
}

.p-section-service-index__heading {
  text-align: center;
  background-color: rgba(255, 255, 255, 0.6);
  border: 8px solid var(--main-color);
  border-radius: 1rem;
  padding: 4rem 4.8rem 4.8rem 4.8rem;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-weight: 900;
}
.p-section-service-index__heading h2 {
  color: var(--main-color);
  font-size: 4.8rem;
  line-height: 1.45;
  font-weight: var(--font-weight-black);
  margin-bottom: 1.6rem;
}
.p-section-service-index__heading p {
  font-size: 2.4rem;
  line-height: 1.65;
}

.p-section-service-index__content {
  margin-top: 8rem;
}
.p-section-service-index__content .content {
  text-align: center;
}
.p-section-service-index__content .content figure {
  display: block;
  max-width: 70rem;
  margin-left: auto;
  margin-right: auto;
}
.p-service-index-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.8rem;
  flex-wrap: nowrap;
}
.p-service-index-list li {
  flex: 1 1 0;
  min-width: 0;
  text-align: center;
}
.p-service-index-list img {
  display: block;
  width: 80%;
  max-width: 8rem;
  height: auto;
  margin: 0 auto;
}
.p-service-index-list span {
  display: block;
  margin-top: 0.8rem;
  font-size: 1.2rem;
  font-weight: var(--font-weight-bold);
  color: var(--main-color);
  line-height: 1.3;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 768px) {
  .p-service-index-list {
    gap: 0.4rem;
  }
  .p-service-index-list img {
    width: 90%;
    max-width: 5rem;
  }
  .p-service-index-list span {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    line-height: 1.25;
  }
}
.p-section-service-index__content .content .summary {
  color: var(--main-color);
  margin-top: 8rem;
  font-size: 2.4rem;
  line-height: 1.65;
  font-weight: var(--font-weight-bold);
}
.p-section-service-index__content .content .summary strong {
  font-size: 3.2rem;
}
.p-section-service-index__content .content .attention {
  margin-top: 0.6rem;
  color: rgb(198, 0, 0);
}

@media (max-width: 767px) {
  .p-section-service-index {
    padding-bottom: 8rem;
  }
  .p-section-service-index__heading {
    padding: 2.4rem 4rem 3.2rem 4rem;
    width: 90%;
  }
  .p-section-service-index__heading h2 {
    font-size: 2.5rem;
  }
  .p-section-service-index__heading P {
    font-size: 1.6rem;
  }
  .p-section-service-index__content {
    margin-top: 4rem;
  }
  .p-section-service-index__content .content figure {
    width: 96%;
  }
  .p-section-service-index__content .content .summary {
    margin-top: 4rem;
    font-size: 1.8rem;
  }
  .p-section-service-index__content .content .summary strong {
    font-size: 2rem;
  }
  .p-section-service-index__content .content .attention {
    margin-top: 1.6rem;
    font-size: 1.6rem;
  }
}
.p-section-service-block {
  width: 100vw;
  position: relative;
  color: var(--main-color);
  padding-bottom: 10rem;
}
.p-section-service-block::after {
  content: "";
  display: block;
  aspect-ratio: 1440/134;
  width: 100%;
  background-image: url(../img/top/bg_service_block_f.svg);
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}
.p-section-service-block .container {
  max-width: 1220px;
}
.p-section-service-block:nth-of-type(2n)::after {
  background-image: url(../img/top/bg_service_block_f2.svg);
}
.p-section-service-block:nth-of-type(2n) .p-section-service-block__heading {
  background-image: url(../img/top/bg_service_block_h2.svg);
}
.p-section-service-block:nth-of-type(2n) .p-section-service-block__content .content {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.p-section-service-block__heading {
  background-image: url(../img/top/bg_service_block_h.svg);
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
  aspect-ratio: 1440/134;
}
.p-section-service-block__heading h2 {
  color: var(--main-color);
  font-size: 6.4rem;
  line-height: 1.25;
  font-weight: var(--font-weight-black);
  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: 0 1rem;
}
.p-section-service-block__heading h2 .t-small {
  font-size: 4.8rem;
}
.p-section-service-block__heading h2 .icon {
  display: block;
  width: 12rem;
  height: auto;
}
.p-section-service-block__heading h2 .text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}

.p-section-service-block__content {
  background-image: url(../img/top/bg_service_block_b.svg);
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 2.4rem 0;
}
.p-section-service-block__content .copy {
  font-size: 4.8rem;
  line-height: 1.45;
  font-weight: var(--font-weight-black);
  margin-bottom: 3.2rem;
}
.p-section-service-block__content .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0 5%;
}
.p-section-service-block__content .content .text {
  width: 50%;
  font-size: 2.6rem;
  font-weight: var(--font-weight-bold);
}
.p-section-service-block__content .content .text p:not(:last-of-type) {
  margin-bottom: 2.4rem;
}
.p-section-service-block__content .content .text p .t-small {
  font-size: 1.4rem;
  vertical-align: super;
}
.p-section-service-block__content .content .picture {
  width: 50%;
  display: block;
}
.p-section-service-block__content .content .picture img {
  display: block;
  border: 4px solid var(--main-color);
  border-radius: 1rem;
}
.p-section-service-block__content .summary {
  font-size: 2rem;
  margin-top: 3.2rem;
}
.p-section-service-block__content .summary .attention {
  font-size: 1.4rem;
  color: rgb(198, 0, 0);
  margin-top: 2rem;
}
.p-section-service-block__content .summary nav {
  margin-top: 4rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.p-section-service-block__content .summary nav a .icon {
  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;
  line-height: 1;
  margin-left: 0.8rem;
  margin-right: 0;
}

@media (max-width: 767px) {
  .p-section-service-block {
    padding-bottom: 6.4rem;
  }
  .p-section-service-block:nth-of-type(2n) .p-section-service-block__content .content {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-section-service-block__heading {
    aspect-ratio: 375/67;
  }
  .p-section-service-block__heading h2 {
    font-size: 3.2rem;
  }
  .p-section-service-block__heading h2 .icon {
    width: 8rem;
    height: auto;
  }
  .p-section-service-block__heading h2 .t-small {
    font-size: 2rem;
  }
  .p-section-service-block__heading h2 .text {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-section-service-block__content .copy {
    font-size: 2.6rem;
    margin-bottom: 1.8rem;
  }
  .p-section-service-block__content .content {
    font-size: 1.6rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 2.4rem 0;
  }
  .p-section-service-block__content .content .text {
    width: 100%;
    font-size: 1.6rem;
  }
  .p-section-service-block__content .content .text p:not(:last-of-type) {
    margin-bottom: 2rem;
  }
  .p-section-service-block__content .content .text p .t-small {
    font-size: 1.2rem;
  }
  .p-section-service-block__content .content .picture {
    width: 100%;
  }
  .p-section-service-block__content .summary {
    font-size: 1.3rem;
    margin-top: 2rem;
  }
  .p-section-service-block__content .summary .attention {
    font-size: 1.3rem;
  }
  .p-section-service-block__content .summary nav .c-button {
    padding: 1.2rem 2rem 1.7rem 2rem;
    font-size: 2rem;
    border: 4px solid var(--main-color);
  }
}
.p-post-body {
  padding: 8rem 0;
  /* 見出し */
}
.p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
  line-height: 1.5;
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}
.p-post-body h1 {
  font-size: 3.2rem;
  margin-top: 7.2rem;
}
.p-post-body h2 {
  font-size: 2.4rem;
  margin-top: 5.6rem;
}
.p-post-body h3 {
  font-size: 1.8rem;
  margin-top: 3.2rem;
}
.p-post-body h4 {
  font-size: var(--font-size-base-pc);
}
.p-post-body h5 {
  font-size: var(--font-size-base-pc);
}
.p-post-body {
  /* 段落 */
}
.p-post-body p {
  margin-bottom: 2.4rem;
}
.p-post-body p.none-margin {
  margin-bottom: 0;
}
.p-post-body {
  /* 区切り */
}
.p-post-body hr {
  margin: 4em 0;
}
.p-post-body {
  /* リスト */
}
.p-post-body ol,
.p-post-body ul {
  margin-bottom: 2.4rem;
  margin-left: 2.4rem;
}
.p-post-body ol li,
.p-post-body ul li {
  list-style: inherit;
  line-height: 1.65;
  position: relative;
  margin-bottom: 0.6rem;
}

@media (max-width: 767px) {
  .p-post-body {
    padding: 3.2rem 0;
    /* 見出し */
  }
  .p-post-body h1, .p-post-body h2, .p-post-body h3, .p-post-body h4, .p-post-body h5 {
    margin-bottom: 1.4rem;
  }
  .p-post-body h1 {
    font-size: 2.8rem;
    margin-top: 5.6rem;
  }
  .p-post-body h2 {
    font-size: 2rem;
    margin-top: 4.8rem;
  }
  .p-post-body h3 {
    font-size: 1.6rem;
  }
  .p-post-body h4 {
    font-size: var(--font-size-base-sp);
  }
  .p-post-body h5 {
    font-size: var(--font-size-base-sp);
  }
  .p-post-body ol,
  .p-post-body ul {
    margin-left: 1.8rem;
  }
}
.p-post-head {
  margin-bottom: 8rem;
}

.fadeIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  transition: opacity 1s 0.1s, filter 1s cubic-bezier(0.33, 1, 0.68, 1), -webkit-filter 1s cubic-bezier(0.33, 1, 0.68, 1);
  opacity: 0;
}

.fadeIn.inview {
  opacity: 1;
}

.fadeUpIn {
  -webkit-transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s, opacity 1s 0.1s, -webkit-transform 1s cubic-bezier(0.33, 1, 0.68, 1) 0.1s;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  opacity: 0;
}

.fadeUpIn.inview {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
}

.maskIn {
  -webkit-transition-duration: 0.8s;
          transition-duration: 0.8s;
  -webkit-transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
          transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
}

.maskIn.inview {
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.blurIn {
  -webkit-animation-name: blurInAnime;
          animation-name: blurInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  opacity: 0;
}

@-webkit-keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}

@keyframes blurInAnime {
  0% {
    -webkit-filter: blur(15px);
            filter: blur(15px);
    -webkit-transform: scale(1.02);
            transform: scale(1.02);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0);
            filter: blur(0);
    -webkit-transform: scale(1);
            transform: scale(1);
    opacity: 1;
  }
}
@-webkit-keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes imgZoom {
  0% {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
.show-tablet-inline,
.show-tablet,
.show-mobile-inline,
.show-mobile {
  display: none;
}

.hide-tablet,
.hide-mobile {
  display: block;
}

.hide-tablet-inline,
.hide-mobile-inline {
  display: inline-block;
}

@media (min-width: 768px) and (max-width: 999px) {
  .show-tablet {
    display: block;
  }
  .show-tablet-inline {
    display: inline-block;
  }
  .hide-tablet {
    display: none;
  }
}
@media (max-width: 767px) {
  .show-mobile {
    display: block;
  }
  .show-mobile-inline {
    display: inline-block;
  }
  .hide-mobile {
    display: none;
  }
  .hide-mobile-inline {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */