@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/NotoSansJP/NotoSansJP-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/NotoSansJP/NotoSansJP-Bold.woff2") format("woff2");
}
:root {
  /* ------------------------- ベース背景色 -- */
  --my-custom-theme__base-background-color--code: #FFFFFF;
  --my-custom-theme__base-background-color--rgb: 255, 255, 255;
  /* ------------------------- ベース文字色 -- */
  --my-custom-theme__base-text-color--code: #333333;
  --my-custom-theme__base-text-color--rgb: 51, 51, 51;
  /* ------------------------- 第一色 -- */
  --my-custom-theme__main-color--code: #3DB5C7;
  --my-custom-theme__main-color--rgb: 233, 82, 94;
  /* ------------------------- 第二色 -- */
  --my-custom-theme__sub-color--code: #FFD601;
  --my-custom-theme__sub-color--rgb: 255, 214, 1;
  /* ------------------------- 強調第一色 -- */
  --my-custom-theme__main-emphasized-color--code: #f3e100;
  --my-custom-theme__main-emphasized-color--rgb: 243, 225, 0;
  /* ------------------------- 強調第二色 -- */
  --my-custom-theme__sub-emphasized-color--code: #db0a0a;
  --my-custom-theme__sub-emphasized-color--rgb: 219, 10, 10;
  /* ------------------------- 補色 -- */
  --my-custom-theme__complementary-color--code: #338ACB;
  --my-custom-theme__complementary-color--rgb: 51, 138, 203;
  /* ------------------------- container幅 -- */
  --my-custom-theme__container-width: 1200px;
  /* ------------------------- header高さ -- */
  --my-custom-theme__header-height: 10.2rem;
}
@media (max-width: 1200px) {
  :root {
    --my-custom-theme__header-height: 8.4rem;
  }
}
@media (max-width: 960px) {
  :root {
    --my-custom-theme__header-height: 7.6rem;
  }
}
@media (max-width: 768px) {
  :root {
    --my-custom-theme__header-height: 7.2rem;
  }
}
@media (max-width: 480px) {
  :root {
    --my-custom-theme__header-height: 6.4rem;
  }
}

* {
  word-break: break-word;
}

html {
  font-size: 62.5%;
}

*:not(html) {
  font-size: 1.4rem;
  color: var(--my-custom-theme__base-text-color--code);
  line-height: 1.75;
  font-family: "Roboto", "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, serif, sans-serif;
}

::-moz-selection {
  background: #DCDEE3;
  color: #303338;
}

::selection {
  background: #DCDEE3;
  color: #303338;
}

::-moz-placeholder {
  color: #cfcfcf;
}

:-ms-input-placeholder {
  color: #cfcfcf;
}

::-webkit-input-placeholder {
  color: #cfcfcf;
}

::-ms-input-placeholder {
  color: #cfcfcf;
}

::placeholder {
  color: #cfcfcf;
}

a[href^="tel:"] {
  pointer-events: none;
}

@media (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
.container {
  max-width: calc(var(--my-custom-theme__container-width) + 3.2rem);
  width: 100%;
  margin: 0 auto;
  padding: 0 1.6rem;
}

input,
textarea,
select {
  font-size: 1.6rem;
  line-height: 1.4;
  border-radius: 4px;
  border: 1px solid var(--my-custom-theme__complementary-color--code);
  background-color: #FFFFFF;
  padding: 1.6rem;
  width: 100%;
}
input:focus,
textarea:focus,
select:focus {
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.4);
}

input[type=submit],
button[type=submit] {
  font-size: 1.6rem;
  padding: 1.8rem 3rem;
  min-width: 280px;
  border-radius: 4px;
  background-color: var(--my-custom-theme__complementary-color--code);
  color: #FFFFFF;
  word-break: keep-all;
  margin: 0 auto !important;
  display: block;
}

input[type=radio] {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  margin: 0 !important;
}

textarea {
  resize: vertical;
}

a.common-btn, button.common-btn {
  color: var(--my-custom-theme__base-text-color--code);
  border: solid 2px #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1px;
  position: relative;
  z-index: 0;
  background-color: #FFFFFF;
  border-radius: 100px;
  display: table;
  padding: 3.2rem 9.6rem 3.2rem 4rem;
  min-width: 240px;
  transition: all 0.2s;
}
@media (max-width: 1200px) {
  a.common-btn, button.common-btn {
    min-width: 210px;
  }
}
@media (max-width: 960px) {
  a.common-btn, button.common-btn {
    padding: 2.4rem 8rem 2.4rem 2.4rem;
  }
}
a.common-btn::before, button.common-btn::before {
  content: "";
  display: block;
  width: 2px;
  height: calc(100% - 3.6rem);
  border-radius: 50%;
  background-color: #C4C4C4;
  opacity: 0.5;
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 6.8rem;
  transform: translate(0, -50%);
  transition: all 0.2s;
}
@media (max-width: 960px) {
  a.common-btn::before, button.common-btn::before {
    right: 6rem;
  }
}
a.common-btn::after, button.common-btn::after {
  color: var(--my-custom-theme__main-color--code);
  font-family: "Material Symbols Rounded";
  content: "\e5cc";
  font-size: 3.6rem;
  font-weight: 500;
  position: absolute;
  z-index: 0;
  top: 50%;
  right: 1.6rem;
  transform: translate(0, -50%);
  transition: all 0.2s;
}
a.common-btn:hover, button.common-btn:hover {
  color: var(--my-custom-theme__main-color--code);
}
a.common-btn:hover::after, button.common-btn:hover::after {
  transform: translate(0.4rem, -50%);
}
a.common-btn.common-btn--design01, button.common-btn.common-btn--design01 {
  color: var(--my-custom-theme__base-text-color--code);
  border: solid 2px var(--my-custom-theme__sub-color--code);
  background-color: var(--my-custom-theme__sub-color--code);
}
a.common-btn.common-btn--design01::before, button.common-btn.common-btn--design01::before {
  background-color: #FFFFFF;
}
a.common-btn.common-btn--design01::after, button.common-btn.common-btn--design01::after {
  color: var(--my-custom-theme__base-text-color--code);
}
a.common-btn.common-btn--design01:hover, button.common-btn.common-btn--design01:hover {
  color: var(--my-custom-theme__sub-color--code);
  background-color: #FFFFFF;
}
a.common-btn.common-btn--design01:hover::before, button.common-btn.common-btn--design01:hover::before {
  background-color: var(--my-custom-theme__sub-color--code);
}
a.common-btn.common-btn--design01:hover::after, button.common-btn.common-btn--design01:hover::after {
  color: var(--my-custom-theme__sub-color--code);
}
a.common-btn.common-btn--design02, button.common-btn.common-btn--design02 {
  color: #FFFFFF;
  border: solid 2px var(--my-custom-theme__complementary-color--code);
  background-color: var(--my-custom-theme__complementary-color--code);
}
a.common-btn.common-btn--design02::before, button.common-btn.common-btn--design02::before {
  background-color: #FFFFFF;
}
a.common-btn.common-btn--design02::after, button.common-btn.common-btn--design02::after {
  color: #FFFFFF;
}
a.common-btn.common-btn--design02:hover, button.common-btn.common-btn--design02:hover {
  color: var(--my-custom-theme__complementary-color--code);
  background-color: #FFFFFF;
}
a.common-btn.common-btn--design02:hover::before, button.common-btn.common-btn--design02:hover::before {
  background-color: var(--my-custom-theme__complementary-color--code);
}
a.common-btn.common-btn--design02:hover::after, button.common-btn.common-btn--design02:hover::after {
  color: var(--my-custom-theme__complementary-color--code);
}
a.common-btn.common-btn--design03, button.common-btn.common-btn--design03 {
  color: #FFFFFF;
  border: solid 2px var(--my-custom-theme__main-color--code);
  background-color: var(--my-custom-theme__main-color--code);
}
a.common-btn.common-btn--design03::before, button.common-btn.common-btn--design03::before {
  background-color: #FFFFFF;
}
a.common-btn.common-btn--design03::after, button.common-btn.common-btn--design03::after {
  color: #FFFFFF;
}
a.common-btn.common-btn--design03:hover, button.common-btn.common-btn--design03:hover {
  color: var(--my-custom-theme__main-color--code);
  background-color: #FFFFFF;
}
a.common-btn.common-btn--design03:hover::before, button.common-btn.common-btn--design03:hover::before {
  background-color: var(--my-custom-theme__main-color--code);
}
a.common-btn.common-btn--design03:hover::after, button.common-btn.common-btn--design03:hover::after {
  color: var(--my-custom-theme__main-color--code);
}
a.common-btn.deactive, button.common-btn.deactive {
  pointer-events: none;
}
a.common-btn.common-btn--ico, button.common-btn.common-btn--ico {
  display: inline-flex;
  justify-content: flex-start;
  align-items: center;
}
a.common-btn.common-btn--ico > img, button.common-btn.common-btn--ico > img {
  width: 1.6rem;
  margin-right: 0.6rem;
}
a.common-btn.common-btn--download::after, button.common-btn.common-btn--download::after {
  content: "\f090";
  font-size: 2.4rem;
}
a.common-btn.common-btn--download:hover::after, button.common-btn.common-btn--download:hover::after {
  transform: translate(0, -50%);
}
a.common-btn.common-btn--line, button.common-btn.common-btn--line {
  color: #fff;
  background-color: #00C300;
  border: solid 2px #00C300;
}
a.common-btn.common-btn--line::before, button.common-btn.common-btn--line::before {
  display: none;
}
a.common-btn.common-btn--line::after, button.common-btn.common-btn--line::after {
  color: #fff;
}
a.common-btn.common-btn--line:hover, button.common-btn.common-btn--line:hover {
  color: #00C300;
  background-color: #fff;
}
a.common-btn.common-btn--line:hover::after, button.common-btn.common-btn--line:hover::after {
  color: #00C300;
}

.common-section-title {
  display: table;
  margin: 0 0 4rem;
}
@media (max-width: 960px) {
  .common-section-title {
    margin-bottom: 3.2rem;
  }
}
@media (max-width: 768px) {
  .common-section-title {
    margin-bottom: 2.8rem;
  }
}
@media (max-width: 480px) {
  .common-section-title {
    margin-bottom: 2.4rem;
  }
}
.common-section-title .common-section-title__text01 {
  color: #C4C4C4;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.2;
}
@media (max-width: 960px) {
  .common-section-title .common-section-title__text01 {
    font-size: 1.8rem;
  }
}
@media (max-width: 768px) {
  .common-section-title .common-section-title__text01 {
    font-size: 1.6rem;
  }
}
@media (max-width: 480px) {
  .common-section-title .common-section-title__text01 {
    font-size: 1.4rem;
  }
}
.common-section-title .common-section-title__text02 {
  font-size: 5.4rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 1px;
  margin-top: 1.6rem;
}
@media (max-width: 960px) {
  .common-section-title .common-section-title__text02 {
    font-size: 4.8rem;
    margin-top: 1.4rem;
  }
}
@media (max-width: 768px) {
  .common-section-title .common-section-title__text02 {
    font-size: 4rem;
    margin-top: 1rem;
  }
}
@media (max-width: 480px) {
  .common-section-title .common-section-title__text02 {
    font-size: 3.2rem;
    margin-top: 0.4rem;
  }
}

.common-section-title02 {
  color: var(--my-custom-theme__complementary-color--code);
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.4;
  border-bottom: solid 3px #CBD6E1;
  padding-bottom: 1.6rem;
  margin-bottom: 8rem;
  position: relative;
  z-index: 0;
}
@media (max-width: 960px) {
  .common-section-title02 {
    font-size: 2.4rem;
    padding-bottom: 1.4rem;
    margin-bottom: 7.2rem;
  }
}
@media (max-width: 768px) {
  .common-section-title02 {
    font-size: 2rem;
    padding-bottom: 1rem;
    margin-bottom: 6.4rem;
  }
}
@media (max-width: 480px) {
  .common-section-title02 {
    font-size: 1.8rem;
    padding-bottom: 0.8rem;
    margin-bottom: 4.8rem;
  }
}
.common-section-title02::before {
  content: "";
  display: block;
  width: 200px;
  height: 3px;
  background-color: var(--my-custom-theme__main-color--code);
  position: absolute;
  z-index: 1;
  bottom: -3px;
  left: 0;
}
@media (max-width: 768px) {
  .common-section-title02::before {
    width: 160px;
  }
}
@media (max-width: 768px) {
  .common-section-title02::before {
    width: 100px;
  }
}
.common-section-title02.common-section-title02--design02 {
  color: #FFFFFF;
}
.common-section-title02.common-section-title02--design02::before {
  background-color: var(--my-custom-theme__complementary-color--code);
}

@media (max-width: 768px) {
  br.br-pc {
    display: none;
  }
}
br.br-laptop {
  display: none;
}
@media (max-width: 960px) {
  br.br-laptop {
    display: block;
  }
}
br.br-tablet {
  display: none;
}
@media (max-width: 768px) {
  br.br-tablet {
    display: block;
  }
}
br.br-sp {
  display: none;
}
@media (max-width: 480px) {
  br.br-sp {
    display: block;
  }
}

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

@media (max-width: 960px) {
  .hidden-laptop {
    display: none;
  }
}

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

@media (max-width: 480px) {
  .hidden-sp {
    display: none;
  }
}

.page-overview {
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .page-overview {
    margin-bottom: 5rem;
  }
}
@media (max-width: 480px) {
  .page-overview {
    margin-bottom: 4rem;
  }
}
.page-overview .page-overview__heading {
  font-size: 2.4rem;
  font-weight: 700;
  background-color: rgba(var(--my-custom-theme__main-color--rgb), 0.15);
  border-left-style: solid;
  border-left-width: 6px;
  border-left-color: var(--my-custom-theme__complementary-color--code);
  padding: 0.6rem 0.6rem 0.6rem 1.4rem;
  margin-bottom: 0.8rem;
}
.page-overview .page-overview__heading.page-overview__heading--point {
  border-left-color: var(--my-custom-theme__main-emphasized-color--code);
}
@media (max-width: 768px) {
  .page-overview .page-overview__heading {
    font-size: 2rem;
  }
}
@media (max-width: 480px) {
  .page-overview .page-overview__heading {
    font-size: 1.8rem;
  }
}
.page-overview .page-overview__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .page-overview .page-overview__inner {
    flex-direction: column;
  }
}
.page-overview .page-overview__text {
  margin-right: 2rem;
  width: 100%;
}
@media (max-width: 768px) {
  .page-overview .page-overview__text {
    margin-right: 0;
    margin-bottom: 2rem;
  }
}
.page-overview .page-overview__text p {
  font-size: 1.6rem;
}
.page-overview .page-overview__link {
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .page-overview .page-overview__link {
    width: 100%;
  }
}
.page-overview .page-overview__link a {
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
}
.page-overview .page-overview__link a::after {
  content: "";
  display: block;
  width: 0.6rem;
  height: 0.6rem;
  border-style: solid;
  border-width: 0.1rem 0.1rem 0 0;
  border-color: var(--my-custom-theme__base-text-color--code);
  transform: rotate(45deg);
  margin-left: 0.6rem;
  transition: all 0.2s;
}
.page-overview .page-overview__link a:hover {
  color: var(--my-custom-theme__sub-emphasized-color--code);
}
.page-overview .page-overview__link a:hover::after {
  border-color: var(--my-custom-theme__sub-emphasized-color--code);
}
@media (max-width: 768px) {
  .page-overview .page-overview__link a {
    margin: 0 0 0 auto;
  }
}
@media (max-width: 480px) {
  .page-overview .page-overview__link a {
    margin: 0 auto;
  }
}

.step-list-list {
  counter-reset: number 0;
}

.step-list-item {
  display: flex;
  margin-top: 7rem;
}
.step-list-item:nth-child(1) {
  margin-top: 0;
}
@media (max-width: 768px) {
  .step-list-item {
    margin-top: 6rem;
    flex-direction: column;
  }
}
@media (max-width: 480px) {
  .step-list-item {
    margin-top: 5rem;
  }
}
.step-list-item .step-list-item__text {
  width: 100%;
}
.step-list-item .step-list-item__image {
  max-width: 382px;
  margin-left: 6rem;
}
@media (max-width: 960px) {
  .step-list-item .step-list-item__image {
    max-width: 320px;
    margin-left: 3.2rem;
  }
}
@media (max-width: 768px) {
  .step-list-item .step-list-item__image {
    max-width: 400px;
    margin: 1.2rem auto 0;
  }
}

.step-list-item-text .step-list-item-text__label {
  display: flex;
  align-items: center;
  background-color: #F8F8F8;
  background-color: rgba(var(--my-custom-theme__main-color--rgb), 0.15);
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  .step-list-item-text .step-list-item-text__label {
    margin-bottom: 1rem;
  }
}
.step-list-item-text .step-list-item-text__label .step-list-item-number {
  text-transform: uppercase;
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1.3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50px;
  height: 54px;
  background-color: var(--my-custom-theme__complementary-color--code);
}
.step-list-item-text .step-list-item-text__label .step-list-item-number::after {
  content: counter(number, decimal-leading-zero);
  counter-increment: number 1;
  font-size: 2rem;
}
@media (max-width: 768px) {
  .step-list-item-text .step-list-item-text__label .step-list-item-number {
    width: 40px;
    height: 44px;
  }
  .step-list-item-text .step-list-item-text__label .step-list-item-number::after {
    font-size: 1.4rem;
  }
}
.step-list-item-text .step-list-item-text__label .step-list-item-heading {
  font-size: 2.2rem;
  font-weight: 700;
  padding-left: 1.4rem;
}
@media (max-width: 768px) {
  .step-list-item-text .step-list-item-text__label .step-list-item-heading {
    font-size: 1.8rem;
    padding-left: 1rem;
  }
}
.step-list-item-text .step-list-item-text__overview {
  padding-left: 6.2rem;
}
@media (max-width: 960px) {
  .step-list-item-text .step-list-item-text__overview {
    padding-left: 3rem;
  }
}
@media (max-width: 768px) {
  .step-list-item-text .step-list-item-text__overview {
    padding-left: 0;
  }
}
.step-list-item-text .step-list-item-text__overview * {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
@media (max-width: 768px) {
  .step-list-item-text .step-list-item-text__overview * {
    margin-bottom: 0.8rem;
  }
}
@media (max-width: 480px) {
  .step-list-item-text .step-list-item-text__overview * {
    margin-bottom: 0.4rem;
  }
}
.step-list-item-text .step-list-item-text__overview :last-child {
  margin-bottom: 0;
}
.step-list-item-text .step-list-item-text__overview ul, .step-list-item-text .step-list-item-text__overview ol {
  padding-left: 2rem;
}
.step-list-item-text .step-list-item-text__overview ul > li {
  list-style: disc;
}
.step-list-item-text .step-list-item-text__overview ol > li {
  list-style: decimal;
}
.step-list-item-text .step-list-item-text__overview .emphasize {
  color: var(--my-custom-theme__sub-emphasized-color--code);
  font-weight: 700;
}
.step-list-item-text .step-list-item-text__overview .catch {
  color: var(--my-custom-theme__complementary-color--code);
  font-size: 2rem;
  font-weight: 700;
}
@media (max-width: 768px) {
  .step-list-item-text .step-list-item-text__overview .catch {
    font-size: 1.8rem;
  }
}
@media (max-width: 480px) {
  .step-list-item-text .step-list-item-text__overview .catch {
    font-size: 1.6rem;
  }
}

.step-list-list.step-list-list--case .step-list-item-text .step-list-item-text__label .step-list-item-number {
  background-color: var(--my-custom-theme__main-emphasized-color--code);
}

.common-cta-block {
  display: flex;
  justify-content: flex-start;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .common-cta-block {
    justify-content: center;
  }
}
.common-cta-block .common-btn {
  margin-bottom: 0 !important;
}

.search-box {
  display: flex;
  justify-content: center;
  align-items: stretch;
}
.search-box .search-box__field {
  border-radius: 4px 0 0 4px;
}
.search-box .search-box__button {
  padding: 0.8rem 2rem;
  border-radius: 0 4px 4px 0;
  min-width: auto;
}

.animation-fadein {
  transition: all 0.5s;
  opacity: 0;
}
.animation-fadein.animation-fadein__done {
  opacity: 1;
}

.animation-slideup-fadein {
  transition: all 0.5s;
  opacity: 0;
  transform: translateY(40px);
}
.animation-slideup-fadein.animation-slideup-fadein__done {
  opacity: 1;
  transform: translateY(0);
}

.page-container {
  position: relative;
  overflow: hidden;
  padding-top: 4.8rem;
}

.page-section-title {
  width: fit-content;
  min-width: 50vw;
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.4;
  color: #fff;
  background-color: var(--my-custom-theme__complementary-color--code);
  border-radius: 0 9999px 9999px 0;
  margin-left: calc(50% - 50vw);
  padding: 0.3em 2em 0.3em calc(50vw - 50%);
}
@media (max-width: 960px) {
  .page-section-title {
    font-size: 4rem;
  }
}
@media (max-width: 768px) {
  .page-section-title {
    font-size: 2.8rem;
    padding-left: 1em;
  }
}
@media (max-width: 480px) {
  .page-section-title {
    font-size: 2.4rem;
    padding-left: 0.8em;
  }
}/*# sourceMappingURL=common.css.map */