@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&family=Noto+Serif:ital,wght@0,100..900;1,100..900&family=Zen+Kurenaido&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  background-color: #0886d1;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  line-height: 2;
}
body::after {
  content: "";
  display: block;
  background-color: #f1f5f9;
  background-image: url(../svg/bg_body_dfblue.svg), url(../svg/bg_body_dfgreen.svg);
  background-repeat: no-repeat, no-repeat;
  background-size: 35dvh auto, 35dvh auto;
  background-position: right top, left bottom;
  width: 100dvw;
  height: 100dvh;
  position: fixed;
  top: 0;
  left: 0;
  overscroll-behavior-y: none;
  z-index: -2;
}

a:hover {
  transition-duration: 0.3s;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  body::after {
    background-size: 20dvh auto, 20dvh auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  body::after {
    background-size: 20dvh auto, 20dvh auto;
  }
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background-color: #f1f5f9;
}

::-webkit-scrollbar-thumb {
  background-color: #0886d1;
}

::-moz-selection {
  background: #0886d1;
  color: #fff;
}

::selection {
  background: #0886d1;
  color: #fff;
}

::-moz-selection {
  background: #0886d1;
  color: #fff;
}

.l-wrapper {
  display: flex;
}

.u-flex {
  display: flex;
}

.u-hidden {
  overflow: hidden;
}

.u-container {
  margin: 0 0 6em 0;
}

.u-row {
  margin: 0 0 2em 0;
}

.u-arrow {
  position: relative;
  display: inline-block;
  width: 100px;
  height: 2px;
  margin-top: 14px;
  margin-left: 0.5em;
  border-radius: 9999px;
  background-color: #66AB38;
}
.u-arrow::before {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 9999px;
  background-color: #66AB38;
  transform: rotate(30deg);
  transform-origin: calc(100% - 1px) 50%;
}

.u-columnBox {
  border: solid 1px #334155;
  border-radius: 9px;
}

.u-fadein {
  opacity: 0;
  transform: translate(0, 0);
  transition: all 1.5s;
}
.u-fadein.u-fadein_bottom {
  transform: translate(0, 10dvh);
}
.u-fadein.u-scrollin {
  opacity: 1 !important;
  transform: translate(0, 0) !important;
}

.u-fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  .u-spbr {
    display: block;
  }
  .u-flex {
    display: flex;
    flex-direction: column;
  }
  .u-show {
    bottom: 0.5em !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .u-spbr {
    display: block;
  }
  .u-flex {
    display: flex;
    flex-direction: column;
  }
  .u-show {
    bottom: 0.5em !important;
  }
}
.c-logo {
  text-align: center;
  display: inline-block;
}
.c-logo .c-logo__image {
  display: block;
}
.c-logo .c-logo__image img {
  display: block;
  width: 100%;
  height: auto;
}

.c-keyword {
  color: #737373;
  font-size: 0.5dvw;
}

.c-contact {
  width: 100%;
  height: auto;
}
.c-contact .c-contact__button {
  color: #fff;
  font-weight: 600;
  text-align: center;
  text-shadow: 0px 0px 20px #f97316;
  display: block;
  background: transparent;
  margin: auto;
  padding-top: 2em;
  padding-bottom: 2em;
  border: solid 1px #fff;
  border-radius: 7px;
  position: relative;
  z-index: 3;
}
.c-contact .c-contact__button span {
  position: relative;
  z-index: 3;
}
.c-contact .c-contact__button::before {
  content: "";
  display: block;
  background-color: #f97316;
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 7px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  transition: all 0.6s;
}
.c-contact .c-contact__button::after {
  content: "";
  display: block;
  background: #FACC15;
  background: radial-gradient(circle, rgb(250, 204, 21) 0%, rgb(249, 115, 22) 100%);
  width: 100%;
  height: 100%;
  margin: auto;
  border-radius: 7px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all 0.6s;
}
.c-contact .c-contact__button:hover::before {
  opacity: 0;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-sidebarHeader .c-contact .c-contact__button {
    text-shadow: 0px 0px 20px #0886d1;
    padding-top: 1.25em;
    padding-bottom: 1.25em;
    border: 0;
    border-radius: 0;
    position: relative;
    z-index: 993;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  }
  .l-sidebarHeader .c-contact .c-contact__button span {
    z-index: 993;
  }
  .l-sidebarHeader .c-contact .c-contact__button::before {
    content: "";
    background-color: #0886d1;
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 0;
    z-index: 992;
  }
  .l-sidebarHeader .c-contact .c-contact__button::after {
    content: "";
    display: block;
    background: #0088ff;
    background: radial-gradient(circle, rgb(0, 136, 255) 50%, rgb(0, 76, 143) 100%);
    border-radius: 0;
    z-index: 991;
  }
  .l-sidebarHeader .c-contact .c-contact__button:hover::before {
    opacity: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .l-sidebarHeader .c-contact .c-contact__button {
    text-shadow: 0px 0px 20px #0886d1;
    padding-top: 1.25em;
    padding-bottom: 1.25em;
    border: 0;
    border-radius: 0;
    position: relative;
    z-index: 993;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.3);
  }
  .l-sidebarHeader .c-contact .c-contact__button span {
    z-index: 993;
  }
  .l-sidebarHeader .c-contact .c-contact__button::before {
    content: "";
    background-color: #0886d1;
    width: 100%;
    height: 100%;
    margin: auto;
    border-radius: 0;
    z-index: 992;
  }
  .l-sidebarHeader .c-contact .c-contact__button::after {
    content: "";
    display: block;
    background: #0088ff;
    background: radial-gradient(circle, rgb(0, 136, 255) 50%, rgb(0, 76, 143) 100%);
    border-radius: 0;
    z-index: 991;
  }
  .l-sidebarHeader .c-contact .c-contact__button:hover::before {
    opacity: 0;
  }
}
.u-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.u-col .u-col__item {
  background-color: rgba(241, 245, 249, 0.9);
}
.u-col .u-col__title {
  color: #334155;
  font-size: 1.2dvw;
  font-weight: 600;
  text-align: center;
  background-color: rgba(203, 213, 225, 0.7);
  margin: 0 0 0.5em 0;
  padding: 0.5em;
  border-radius: 9px 9px 0 0;
}
.u-col .u-col__read {
  font-size: 0.8dvw;
  margin: 0;
  padding: 1em;
}
.u-col figure {
  text-align: center;
  display: flex;
  align-items: center;
  margin: 0 20% 1em;
}
.u-col img {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  margin: auto;
}

.u-col_2 .u-col__item {
  width: 49.3%;
}

.u-col_3 .u-col__item {
  width: 32%;
}

.u-col_4 .u-col__item {
  width: 24%;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .u-col {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
  }
  .u-col .u-col__title {
    color: #334155;
    font-size: 3.5vw;
    font-weight: 600;
    text-align: center;
    background-color: rgba(203, 213, 225, 0.7);
    margin: 0 0 0.5em 0;
    padding: 0.5em;
    border-radius: 9px 9px 0 0;
  }
  .u-col .u-col__read {
    font-size: 3dvw;
    margin: 0;
    padding: 1em;
  }
  .u-col figure {
    text-align: center;
    display: flex;
    align-items: center;
    margin: 0 20% 1em;
  }
  .u-col img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: auto;
  }
  .u-col_2 .u-col__item {
    width: 100%;
  }
  .u-col_3 .u-col__item {
    width: 100%;
  }
  .u-col_4 .u-col__item {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .u-col {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: space-between;
  }
  .u-col .u-col__title {
    color: #334155;
    font-size: 2.5dvw;
    font-weight: 600;
    text-align: center;
    background-color: rgba(203, 213, 225, 0.7);
    margin: 0 0 0.5em 0;
    padding: 0.5em;
    border-radius: 9px 9px 0 0;
  }
  .u-col .u-col__read {
    font-size: 2dvw;
    margin: 0;
    padding: 1em;
  }
  .u-col figure {
    text-align: center;
    display: flex;
    align-items: center;
    margin: 0 20% 1em;
  }
  .u-col img {
    display: inline-block;
    width: auto;
    max-width: 100%;
    height: auto;
    margin: auto;
  }
  .u-col_2 .u-col__item {
    width: 100%;
  }
  .u-col_3 .u-col__item {
    width: 100%;
  }
  .u-col_4 .u-col__item {
    width: 100%;
  }
}
.c-serviceLogo .u-col__item figure {
  height: 150px;
}
.c-serviceLogo .u-col__item img {
  max-height: 150px;
}

.c-illustration .u-col__item {
  background-color: rgba(241, 245, 249, 0.9);
}
.c-illustration .u-col__item img {
  max-height: 15dvh;
}

.l-sidebarHeader {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  width: 15dvw;
  height: 100dvh;
  padding: 1em 0 2em;
  position: fixed;
}
.l-sidebarHeader .c-logo {
  width: 100%;
}
.l-sidebarHeader .c-logo .c-logo__image {
  width: 35%;
  margin: 1em auto 0;
}
.l-sidebarHeader .c-contact__button {
  font-size: 0.75dvw;
  width: 80%;
}

.p-navigation {
  display: inline-block;
  margin: 0 auto 0;
}
.p-navigation .p-navigation__list__item {
  font-size: 0.8dvw;
  font-weight: 400;
  margin: 1em 0;
}
.p-navigation .p-navigation__list__item a:hover {
  color: #0886d1;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-sidebarHeader {
    display: block;
    width: 100dvw;
    height: auto;
    padding: 1dvh 3dvw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: left 0.4s ease;
  }
  .l-sidebarHeader .c-keyword {
    font-size: 2.25dvw;
    white-space: nowrap;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-sidebarHeader .c-logo {
    display: block;
    width: 20%;
    padding-top: 1em;
    position: relative;
  }
  .l-sidebarHeader .c-logo .c-logo__image {
    width: 100%;
    margin: 0 auto 0;
  }
  .l-sidebarHeader .c-contact {
    display: none;
  }
  .l-sidebarHeader.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(241, 245, 249, 0.9);
    background: linear-gradient(0deg, rgba(241, 245, 249, 0) 0%, rgba(241, 245, 249, 0.85) 30%, rgb(241, 245, 249) 100%);
  }
  .l-sidebarHeader.is-fixed .c-keyword {
    text-align: left;
    display: block;
    width: 88%;
    position: static;
  }
  .l-sidebarHeader.is-fixed .c-logo {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    padding-top: 0;
    position: relative;
  }
  .l-sidebarHeader.is-fixed .c-logo .c-logo__image {
    width: 12%;
    margin: 0 1em 0 0;
  }
  .l-sidebarHeader.is-fixed .c-logo .c-logo__image img {
    width: 100%;
    height: auto;
  }
  .p-navigation {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .l-sidebarHeader {
    display: block;
    width: 100dvw;
    height: auto;
    padding: 1dvh 3dvw;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    transition: left 0.4s ease;
  }
  .l-sidebarHeader .c-keyword {
    font-size: 1.75dvw;
    white-space: nowrap;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .l-sidebarHeader .c-logo {
    display: block;
    width: 15%;
    padding-top: 1.5em;
    position: relative;
  }
  .l-sidebarHeader .c-logo .c-logo__image {
    width: 100%;
    margin: 0 auto 0;
  }
  .l-sidebarHeader .c-contact {
    display: none;
  }
  .l-sidebarHeader.is-fixed {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(241, 245, 249, 0.9);
    background: linear-gradient(0deg, rgba(241, 245, 249, 0) 0%, rgba(241, 245, 249, 0.85) 30%, rgb(241, 245, 249) 100%);
  }
  .l-sidebarHeader.is-fixed .c-keyword {
    text-align: left;
    display: block;
    width: 88%;
    position: static;
  }
  .l-sidebarHeader.is-fixed .c-logo {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    width: 100%;
    padding-top: 0;
    position: relative;
  }
  .l-sidebarHeader.is-fixed .c-logo .c-logo__image {
    width: 12%;
    margin: 0 1em 0 0;
  }
  .l-sidebarHeader.is-fixed .c-logo .c-logo__image img {
    width: 100%;
    height: auto;
  }
  .p-navigation {
    display: none;
  }
}
footer .u-flex {
  justify-content: space-between;
}

.p-footerAbout {
  font-size: 0.7dvw;
}
.p-footerAbout .c-keyword {
  font-weight: 400;
  margin: 0 0 1em 0;
}
.p-footerAbout .p-footerAbout__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
.p-footerAbout .p-footerAbout__inner .c-logo {
  width: 20%;
  margin: 0 2em 0 0;
}
.p-footerAbout .p-footerAbout__inner .c-logo .c-logo__image {
  display: block;
  width: 100%;
}
.p-footerAbout .p-footerAbout__inner .c-logo .c-logo__image img {
  display: block;
  width: 100%;
  height: auto;
}

.p-footerAddress {
  width: calc(100% - 2em - 20%);
}

.p-footerMenu {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  width: 50%;
}
.p-footerMenu .p-footerMenu__list {
  font-size: 0.7dvw;
  display: flex;
}
.p-footerMenu .p-footerMenu__list .p-footerMenu__list__item {
  margin: 0 1em 0 0;
}
.p-footerMenu .p-footerMenu__list .p-footerMenu__list__item:last-child {
  margin: 0;
}
.p-footerMenu .p-footerMenu__list .p-footerMenu__list__item a:hover {
  color: #0886d1;
}

.l-footerPolicy {
  color: #737373;
  font-size: 0.7dvw;
  display: flex;
  padding: 4em 0 0;
}

.p-copyright {
  width: 50%;
}
.p-copyright small {
  font-size: 0.7dvw;
}

.p-privacypolicy {
  text-align: right;
  width: 50%;
}
.p-privacypolicy a:hover {
  color: #0886d1;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  footer {
    margin-bottom: 8dvh;
  }
  footer .u-flex {
    flex-direction: column-reverse;
  }
  .p-footerAbout {
    font-size: 4dvw;
  }
  .p-footerAbout .c-keyword {
    font-size: 2.5dvw;
    margin: 0 0 1em 0;
    text-align: center;
  }
  .p-footerAbout .p-footerAbout__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-footerAbout .p-footerAbout__inner .c-logo {
    width: 20%;
    margin: 0 0 1em 0;
  }
  .p-footerAbout .p-footerAbout__inner .c-logo .c-logo__image {
    display: block;
    width: 100%;
  }
  .p-footerAbout .p-footerAbout__inner .c-logo .c-logo__image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .p-footerAddress {
    font-size: 3dvw;
    text-align: center;
    width: 100%;
  }
  .p-footerMenu {
    flex-direction: column;
    width: 100%;
    margin: 0 0 3em 0;
  }
  .p-footerMenu .p-footerMenu__list {
    font-size: 3dvw;
    flex-direction: column;
  }
  .p-footerMenu .p-footerMenu__list .p-footerMenu__list__item {
    margin: 0 0 0.5em 0;
  }
  .l-footerPolicy {
    font-size: 2dvw;
  }
  .p-copyright small {
    font-size: 2dvw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  footer {
    margin-bottom: 8dvh;
  }
  footer .u-flex {
    flex-direction: column-reverse;
  }
  .p-footerAbout {
    font-size: 2dvw;
  }
  .p-footerAbout .c-keyword {
    font-size: 2dvw;
    margin: 0 0 1em 0;
    text-align: center;
  }
  .p-footerAbout .p-footerAbout__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .p-footerAbout .p-footerAbout__inner .c-logo {
    width: 20%;
    margin: 0 0 1em 0;
  }
  .p-footerAbout .p-footerAbout__inner .c-logo .c-logo__image {
    display: block;
    width: 100%;
  }
  .p-footerAbout .p-footerAbout__inner .c-logo .c-logo__image img {
    display: block;
    width: 100%;
    height: auto;
  }
  .p-footerAddress {
    font-size: 2dvw;
    text-align: center;
    width: 100%;
  }
  .p-footerMenu {
    flex-direction: column;
    width: 100%;
    margin: 0 0 3em 0;
  }
  .p-footerMenu .p-footerMenu__list {
    font-size: 2dvw;
    flex-direction: column;
  }
  .p-footerMenu .p-footerMenu__list .p-footerMenu__list__item {
    margin: 0 0 0.5em 0;
  }
  .l-footerPolicy {
    font-size: 2dvw;
  }
  .p-copyright small {
    font-size: 2dvw;
  }
}
.p-bottomContact {
  text-align: center;
  background: #0886d1;
  background: linear-gradient(30deg, rgb(102, 171, 56) 0%, rgb(102, 171, 56) 10%, rgb(8, 134, 209) 10%, rgb(8, 134, 209) 90%, rgb(102, 171, 56) 90%, rgb(102, 171, 56) 100%);
  margin: 0 auto 2dvh;
  padding: 30px;
}
.p-bottomContact .p-bottomContact__inner {
  color: #fff;
  width: 100%;
  height: 100%;
  padding: 1.75em;
  border: solid 1px #f1f5f9;
}
.p-bottomContact .p-bottomContact__title {
  font-size: 1.25dvw;
  font-weight: 700;
  text-align: center;
  margin: 0 0 1em 0;
}
.p-bottomContact .p-bottomContact__read {
  font-size: 1dvw;
  text-align: center;
  line-height: 1.7;
  margin: 0 0 1.5em 0;
}
.p-bottomContact .c-contact__button {
  font-size: 1dvw;
  display: inline-block;
  width: auto;
  margin: auto;
  padding: 1em 3em;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-bottomContact {
    padding: 1.5em;
  }
  .p-bottomContact .p-bottomContact__title {
    font-size: 3.5dvw;
  }
  .p-bottomContact .p-bottomContact__read {
    font-size: 3dvw;
  }
  .p-bottomContact .c-contact__button {
    font-size: 3.5dvw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .p-bottomContact {
    padding: 1.5em;
  }
  .p-bottomContact .p-bottomContact__title {
    font-size: 2.5dvw;
  }
  .p-bottomContact .p-bottomContact__read {
    font-size: 2dvw;
  }
  .p-bottomContact .c-contact__button {
    font-size: 2.5dvw;
  }
}
#splash {
  position: fixed;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #f1f5f9;
  text-align: center;
  color: #334155;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width: 260px;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (max-width: 767px) and (orientation: portrait) {
  #splash {
    width: 100dvw;
    height: 100dvh;
  }
  #splash_logo img {
    width: 200px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  #splash {
    width: 100dvw;
    height: 100dvh;
  }
  #splash_logo img {
    width: 150px;
  }
}
.p-keyVisual {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100dvh;
  padding: 0 2dvw;
}
.p-keyVisual .p-keyvisual__title {
  color: #000;
  font-family: "Noto Serif JP", serif;
  font-size: 6dvw;
  font-weight: 700;
  width: 45%;
}
.p-keyVisual .p-keyvisual__title span {
  color: transparent;
  background: linear-gradient(135deg, #0886d1 0%, #0886d1 40%, #66ab38 80%, #66ab38 50%);
  -webkit-background-clip: text;
}
.p-keyVisual .p-keyVisual__image {
  width: 55%;
}
.p-keyVisual .p-keyVisual__image source {
  width: 100%;
  height: auto;
}
.p-keyVisual .p-keyVisual__image img {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-keyVisual {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding-top: 20.5dvh;
  }
  .p-keyVisual .p-keyvisual__title {
    font-size: 12dvw;
    text-align: center;
    line-height: 1.5;
    width: 100%;
  }
  .p-keyVisual .p-keyvisual__title span {
    color: transparent;
    background: linear-gradient(135deg, #0886d1 0%, #0886d1 40%, #66ab38 80%, #66ab38 50%);
    -webkit-background-clip: text;
  }
  .p-keyVisual .p-keyVisual__image {
    width: 100%;
  }
  .p-keyVisual .p-keyVisual__image source {
    width: 100%;
    height: auto;
  }
  .p-keyVisual .p-keyVisual__image img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .p-keyVisual {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    padding-top: 15dvh;
  }
  .p-keyVisual .p-keyvisual__title {
    font-size: 10dvw;
    text-align: center;
    line-height: 1.5;
    width: 100%;
  }
  .p-keyVisual .p-keyvisual__title span {
    color: transparent;
    background: linear-gradient(135deg, #0886d1 0%, #0886d1 40%, #66ab38 80%, #66ab38 50%);
    -webkit-background-clip: text;
  }
  .p-keyVisual .p-keyVisual__image {
    width: 85%;
    margin: auto;
  }
  .p-keyVisual .p-keyVisual__image source {
    width: 100%;
    height: auto;
  }
  .p-keyVisual .p-keyVisual__image img {
    width: 100%;
    height: auto;
  }
}
#home .l-mainContents {
  width: 85dvw;
  margin: 0 0 0 15dvw;
  padding: 0;
}

.l-homeArticle {
  padding: 0 2dvw;
}

.l-homeSection {
  display: flex;
  height: 54dvh;
  width: 100%;
  margin: 10em 0;
  position: relative;
}
.l-homeSection .l-homeSection_text {
  width: 55%;
}
.l-homeSection .l-homeSection_text .l-homeSection__title {
  color: transparent;
  background: linear-gradient(135deg, #0886d1 0%, #0886d1 40%, #66ab38 80%, #66ab38 50%);
  -webkit-background-clip: text;
  font-size: 3dvw;
  font-weight: 700;
  display: inline-block;
  padding: 1em 0 0.25em;
}
.l-homeSection .l-homeSection_text .l-homeSection__subtitle {
  color: #334155;
  font-size: 1.5dvw;
  font-weight: 600;
  line-height: 1.5;
  margin: 0 0 1.5em 0;
}
.l-homeSection .l-homeSection_text .l-homeSection__subtitle span {
  display: block;
}
.l-homeSection .l-homeSection_text .l-homeSection__subtitle span::before {
  content: "-";
  color: #66AB38;
  font-weight: 500;
  margin: 0 0.25em 0 0;
}
.l-homeSection .l-homeSection_text .l-homeSection__read {
  font-size: 1dvw;
  font-weight: 400;
  margin: 0 0 1.5em 0;
}
.l-homeSection .l-homeSection_text .l-homeSection__more {
  font-size: 1dvw;
  font-weight: 500;
}
.l-homeSection .l-homeSection_text .l-homeSection__more:hover {
  color: #0886d1;
}
.l-homeSection .l-homeSection_text .l-homeSection__more:hover .u-arrow {
  width: 180px;
}
.l-homeSection .l-homeSection_graphic {
  width: 45%;
}

.l-homeSection:nth-of-type(odd) .square,
.l-homeSection:nth-of-type(odd) .square_blue,
.l-homeSection:nth-of-type(odd) .square_green {
  left: 5em;
}

.l-homeSection:nth-of-type(even) .square,
.l-homeSection:nth-of-type(even) .square_blue,
.l-homeSection:nth-of-type(even) .square_green {
  right: 5em;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  #home .l-mainContents {
    width: 100dvw;
    margin: 0;
    padding: 0;
  }
  .l-homeArticle {
    padding: 0 4dvw;
  }
  .l-homeSection {
    display: flex;
    height: auto;
    width: 100%;
    margin: auto;
    position: relative;
  }
  .l-homeSection .l-homeSection_text {
    width: 100%;
    margin-bottom: 2em;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__title {
    font-size: 6dvw;
    display: inline-block;
    padding: 1em 0 0.25em;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__subtitle {
    font-size: 4.5dvw;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__subtitle span {
    display: block;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__subtitle span::before {
    content: "-";
    color: #66AB38;
    font-weight: 500;
    margin: 0 0.25em 0 0;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__read {
    font-size: 4dvw;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__more {
    font-size: 4dvw;
  }
  .l-homeSection .l-homeSection_graphic {
    width: 100%;
    height: 45dvh;
    margin-bottom: 4em;
    position: relative;
    z-index: -1;
  }
  .l-homeSection:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
  .l-homeSection:nth-of-type(even) {
    flex-direction: column;
  }
  .l-homeSection:nth-of-type(odd) .square,
  .l-homeSection:nth-of-type(odd) .square_blue,
  .l-homeSection:nth-of-type(odd) .square_green {
    left: 0;
  }
  .l-homeSection:nth-of-type(even) .square,
  .l-homeSection:nth-of-type(even) .square_blue,
  .l-homeSection:nth-of-type(even) .square_green {
    right: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  #home .l-mainContents {
    width: 100dvw;
    margin: 0;
    padding: 0;
  }
  .l-homeArticle {
    padding: 0 4dvw;
  }
  .l-homeSection {
    display: flex;
    height: auto;
    width: 100%;
    margin: auto;
    position: relative;
  }
  .l-homeSection .l-homeSection_text {
    width: 100%;
    margin-bottom: 2em;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__title {
    font-size: 5dvw;
    display: inline-block;
    padding: 1em 0 0.25em;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__subtitle {
    font-size: 3dvw;
    line-height: 1.5;
    margin: 0 0 1.5em 0;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__subtitle span {
    display: block;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__subtitle span::before {
    content: "-";
    color: #66AB38;
    font-weight: 500;
    margin: 0 0.25em 0 0;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__read {
    font-size: 2.5dvw;
  }
  .l-homeSection .l-homeSection_text .l-homeSection__more {
    font-size: 2.75dvw;
  }
  .l-homeSection .l-homeSection_graphic {
    width: 100%;
    height: 45dvh;
    margin-top: 3em;
    margin-bottom: 5em;
    position: relative;
    z-index: -1;
  }
  .l-homeSection:nth-of-type(odd) {
    flex-direction: column-reverse;
  }
  .l-homeSection:nth-of-type(even) {
    flex-direction: column;
  }
  .l-homeSection:nth-of-type(odd) .square,
  .l-homeSection:nth-of-type(odd) .square_blue,
  .l-homeSection:nth-of-type(odd) .square_green {
    left: 0;
  }
  .l-homeSection:nth-of-type(even) .square,
  .l-homeSection:nth-of-type(even) .square_blue,
  .l-homeSection:nth-of-type(even) .square_green {
    right: 0;
  }
}
.square {
  height: 48dvh;
  width: 38%;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 403;
}

.square_blue {
  height: 50dvh;
  width: 37%;
  background: #0886D1;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 402;
}

.square_green {
  height: 52dvh;
  width: 37%;
  background: #66AB38;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 401;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .square {
    height: 40dvh;
    width: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 403;
  }
  .square_blue {
    height: 40.5dvh;
    width: 99.5%;
    background: #0886D1;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 402;
  }
  .square_green {
    height: 40.5dvh;
    width: 99%;
    background: #66AB38;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 401;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .square {
    height: 50dvh;
    width: 100%;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 403;
  }
  .square_blue {
    height: 50.5dvh;
    width: 99.5%;
    background: #0886D1;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 402;
  }
  .square_green {
    height: 50.5dvh;
    width: 99%;
    background: #66AB38;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 401;
  }
}
#web .square {
  background: #FFF;
  background-image: url("../image/img_home_web.jpg");
  background-position: center;
  background-size: cover;
}

#cms .square {
  background: #FFF;
  background-image: url("../image/img_home_cms.jpg");
  background-position: center;
  background-size: cover;
}

#ec .square {
  background: #FFF;
  background-image: url("../image/img_home_ec.jpg");
  background-position: center;
  background-size: cover;
}

#app .square {
  background: #FFF;
  background-image: url("../image/img_home_app.jpg");
  background-position: center;
  background-size: cover;
}

#support .square {
  background: #FFF;
  background-image: url("../image/img_home_support.jpg");
  background-position: center;
  background-size: cover;
}

#service .square {
  background: #FFF;
  background-image: url("../image/img_home_service.jpg");
  background-position: center;
  background-size: cover;
}

#home footer {
  padding: 8dvh 2dvw 2dvh;
}

#home .p-bottomContact {
  width: calc(100% - 4dvw);
}

.secondLayer .l-mainContents {
  width: 85dvw;
  margin: 0 0 0 15dvw;
  padding: 0 2dvw;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .secondLayer .l-mainContents {
    width: 100dvw;
    margin: 0;
    padding: 0 4dvw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .secondLayer .l-mainContents {
    width: 100dvw;
    margin: 0;
    padding: 0 4dvw;
  }
}
.secondLayer footer {
  padding: 8dvh 0 2dvh;
}

.secondLayer .p-bottomContact {
  width: 100%;
}

.p-secondLayer__title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 45dvh;
}
.p-secondLayer__title .p-secondLayer__title__text {
  padding: 0 0 0 2dvw;
}
.p-secondLayer__title .p-secondLayer__title__text h2 {
  color: #334155;
  font-size: 4dvw;
  font-weight: 700;
}
.p-secondLayer__title .p-secondLayer__title__text p {
  color: #737373;
  font-size: 1.5dvw;
  font-weight: 500;
}
.p-secondLayer__title .p-secondLayer__title__text p span::after {
  content: "/";
  margin: 0 0.5em;
}
.p-secondLayer__title .p-secondLayer__title__text p span:last-child::after {
  content: "";
  margin: 0;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-secondLayer__title .p-secondLayer__title__text {
    padding: 5em 0 0 2dvw;
  }
  .p-secondLayer__title .p-secondLayer__title__text h2 {
    font-size: 6dvw;
  }
  .p-secondLayer__title .p-secondLayer__title__text p {
    font-size: 4dvw;
  }
  .p-secondLayer__title .p-secondLayer__title__text p span::after {
    content: "/";
    margin: 0 0.5em;
  }
  .p-secondLayer__title .p-secondLayer__title__text p span:last-child::after {
    content: "";
    margin: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .p-secondLayer__title .p-secondLayer__title__text {
    padding: 5em 0 0 2dvw;
  }
  .p-secondLayer__title .p-secondLayer__title__text h2 {
    font-size: 6dvw;
  }
  .p-secondLayer__title .p-secondLayer__title__text p {
    font-size: 4dvw;
  }
  .p-secondLayer__title .p-secondLayer__title__text p span::after {
    content: "/";
    margin: 0 0.5em;
  }
  .p-secondLayer__title .p-secondLayer__title__text p span:last-child::after {
    content: "";
    margin: 0;
  }
}
.l-secondLayerArticle p {
  font-size: 1dvw;
  line-height: 2;
  margin: 0 0 2em 0;
}
.l-secondLayerArticle > p {
  margin: 0 0 6em 0;
}

.l-secondLayerSection {
  margin: 0 0 8em 0;
}
.l-secondLayerSection .l-secondLayerSection__title {
  color: #334155;
  font-size: 1.5dvw;
  font-weight: 600;
  line-height: 1.25;
  margin: 0 0 1em 0;
  padding: 0 0 0 2.25em;
  position: relative;
}
.l-secondLayerSection .l-secondLayerSection__title::before {
  content: "";
  display: inline-block;
  background-image: url(../svg/ico_h3.svg);
  background-repeat: no-repeat;
  background-size: cover;
  width: 1.75em;
  height: 1.75em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-secondLayerArticle p {
    font-size: 4dvw;
  }
  .l-secondLayerSection .l-secondLayerSection__title {
    font-size: 5dvw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .l-secondLayerArticle p {
    font-size: 2.5dvw;
  }
  .l-secondLayerSection .l-secondLayerSection__title {
    font-size: 3dvw;
  }
}
.p-process {
  font-size: 1vw;
  background-color: rgba(241, 245, 249, 0.9);
  margin: 0 0 3em;
  border-top: solid 3px #334155;
  border-bottom: solid 3px #334155;
  border-radius: 9px;
}
.p-process .p-process__phase {
  display: flex;
  align-items: center;
  position: relative;
  border-bottom: solid 1px #94a3b8;
}
.p-process .p-process__phase i {
  color: rgba(51, 65, 85, 0.3);
  font-family: condor, sans-serif;
  font-size: 3vw;
  text-align: center;
  width: 3%;
  margin-left: 0.25em;
}
.p-process .p-process__phase dl {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 1em 0;
}
.p-process .p-process__phase dl dt {
  font-weight: normal;
  width: 20%;
  padding: 0 1em 0 2em;
}
.p-process .p-process__phase dl dd {
  font-size: 0.8dvw;
  width: 80%;
  padding: 0 1em;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-process {
    font-size: 3.5vw;
  }
  .p-process .p-process__phase {
    display: flex;
    align-items: flex-start;
    padding: 0 0.5em;
    position: relative;
    border-bottom: solid 1px #94a3b8;
  }
  .p-process .p-process__phase i {
    color: rgba(51, 65, 85, 0.3);
    font-family: condor, sans-serif;
    font-size: 6vw;
    text-align: center;
    width: 3%;
    margin-left: 0.25em;
    position: absolute;
    top: 0.35em;
    left: 0.25em;
  }
  .p-process .p-process__phase dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1em 0;
  }
  .p-process .p-process__phase dl dt {
    font-weight: normal;
    background-color: rgba(203, 213, 225, 0.7);
    width: 100%;
    padding: 0.25em 0.5em 0.25em 1.75em;
    margin-bottom: 0.5em;
  }
  .p-process .p-process__phase dl dd {
    font-size: 3dvw;
    width: 100%;
    padding: 0 1em;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .p-process {
    font-size: 2vw;
  }
  .p-process .p-process__phase {
    display: flex;
    align-items: flex-start;
    padding: 0 0.5em;
    position: relative;
    border-bottom: solid 1px #94a3b8;
  }
  .p-process .p-process__phase i {
    color: rgba(51, 65, 85, 0.3);
    font-family: condor, sans-serif;
    font-size: 4vw;
    text-align: center;
    width: 3%;
    margin-left: 0.25em;
    position: absolute;
    top: 0.35em;
    left: 0.25em;
  }
  .p-process .p-process__phase dl {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    padding: 1.5em 0;
  }
  .p-process .p-process__phase dl dt {
    font-weight: normal;
    background-color: rgba(203, 213, 225, 0.7);
    width: 100%;
    padding: 0.25em 0.5em 0.25em 2.25em;
    margin-bottom: 0.5em;
  }
  .p-process .p-process__phase dl dd {
    font-size: 2dvw;
    width: 100%;
    padding: 0 1em;
  }
}
.p-priceBasic {
  color: #334155;
  font-size: 1vw;
  text-align: center;
  background: rgba(241, 245, 249, 0.9);
  border: solid 1px #0C4A6E;
  border-radius: 8px;
  position: relative;
  margin: 0 0 1rem 0;
}
.p-priceBasic .p-price__title {
  display: inline-block;
  background: #f1f5f9;
  padding: 0 1em;
  margin: auto;
  width: 10em;
  position: absolute;
  top: -1em;
  right: 0;
  left: 0;
}
.p-priceBasic .p-price__number {
  font-size: 3vw;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline;
}
.p-priceBasic .p-price__ask {
  font-weight: 500;
  display: inline-block;
  padding: 1.5em 0 1em;
}

.p-price__annotation {
  font-size: 0.6dvw;
}

.p-priceOption {
  color: #334155;
  font-size: 0.7dvw;
  text-align: center;
  background: rgba(241, 245, 249, 0.9);
}
.p-priceOption .p-price__number {
  font-size: 1.5vw;
  font-family: "nimbus-sans", sans-serif;
  font-weight: 700;
  font-style: normal;
  display: inline;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-priceBasic {
    font-size: 4vw;
    padding: 0.75em 0 0.5em 0;
  }
  .p-priceBasic .p-price__number {
    font-size: 6vw;
  }
  .p-price__annotation {
    font-size: 2.5dvw;
  }
  .p-priceOption {
    font-size: 3dvw;
    margin-bottom: 0.5em;
  }
  .p-priceOption .p-price__number {
    font-size: 5vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .p-priceBasic {
    font-size: 2vw;
    padding: 0.75em 0 0.5em 0;
  }
  .p-priceBasic .p-price__number {
    font-size: 5vw;
  }
  .p-price__annotation {
    font-size: 1.75dvw;
  }
  .p-priceOption {
    font-size: 1.75dvw;
    margin-bottom: 0.5em;
  }
  .p-priceOption .p-price__number {
    font-size: 4vw;
  }
}
#about h3 {
  color: #334155;
  font-size: 1.5dvw;
  font-weight: 600;
  margin: 0 0 2em 0;
  padding: 0 0 0 0.75em;
  position: relative;
}
#about h3::before {
  content: "";
  display: block;
  background-color: #0886d1;
  width: 0.5em;
  height: 7px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
}

.p-overview .p-overview__data {
  font-size: 1dvw;
  font-weight: 400;
  display: flex;
  background-color: rgba(241, 245, 249, 0.9);
  flex-wrap: wrap;
  margin: 0 0 4em 0;
  border-top: solid 3px #334155;
  border-bottom: solid 3px #334155;
  border-radius: 9px;
}
.p-overview .p-overview__data dt {
  font-weight: 400;
  width: 10%;
  padding: 1.5em 1em;
  border-top: solid 1px #94a3b8;
}
.p-overview .p-overview__data dt span {
  display: block;
  position: relative;
}
.p-overview .p-overview__data dt span::after {
  content: "";
  display: block;
  background-color: #94a3b8;
  width: 3px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
}
.p-overview .p-overview__data dd {
  width: 90%;
  padding: 1.5em 1em;
  border-top: solid 1px #94a3b8;
}

.p-casestudy {
  font-size: 1dvw;
  margin: 0 0 4em 0;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  #about h3 {
    font-size: 4dvw;
    margin: 0 0 1em 0;
  }
  .p-overview .p-overview__data {
    font-size: 3.5dvw;
    flex-direction: column;
  }
  .p-overview .p-overview__data dt {
    width: 100%;
    padding: 0.5em 1em;
  }
  .p-overview .p-overview__data dt span {
    padding-left: 1em;
  }
  .p-overview .p-overview__data dt span::after {
    content: "";
    display: block;
    background-color: #94a3b8;
    width: 3px;
    height: 1em;
    margin: auto;
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: auto;
  }
  .p-overview .p-overview__data dd {
    width: 100%;
    padding: 0.5em 1em;
    border-top: 0;
  }
  .p-casestudy {
    font-size: 3.5dvw;
    margin: 0 0 4em 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  #about h3 {
    font-size: 3.5dvw;
    padding: 0 0 0 1.25em;
  }
  #about h3::before {
    width: 0.75em;
    top: 0.5em;
  }
  .p-overview .p-overview__data {
    font-size: 2dvw;
  }
  .p-overview .p-overview__data dt {
    width: 20%;
    padding: 2em 1em;
  }
  .p-overview .p-overview__data dt span::after {
    width: 5px;
  }
  .p-overview .p-overview__data dd {
    width: 80%;
    padding: 2em 1em;
  }
  .p-casestudy {
    font-size: 2dvw;
  }
}
.p-textListContainer {
  font-size: 1dvw;
  margin: 0 0 4em 0;
}
.p-textListContainer dt {
  margin: 0 0 1em 0;
}
.p-textListContainer dd {
  margin: 0 0 2em 0;
}
.p-textListContainer ol {
  margin: 1em 0 1em 2.5em;
}
.p-textListContainer ol li {
  position: relative;
  list-style: outside decimal;
}

.p-contactAddress ul {
  display: flex;
  margin: 1em 0 1em 1em;
}
.p-contactAddress ul .p-contactAddress__label {
  text-align: right;
  margin: 0 2em 0 0;
  width: 7em;
}
.p-contactAddress ul .p-contactAddress__label span {
  position: relative;
}
.p-contactAddress ul .p-contactAddress__label span::after {
  content: "";
  display: inline;
  background: #94a3b8;
  margin: auto;
  width: 3px;
  height: 1em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: -1em;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .p-textListContainer {
    font-size: 3dvw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  .p-textListContainer {
    font-size: 2dvw;
  }
}
#contact h2 {
  line-height: 1.2;
}
#contact ::-moz-placeholder {
  color: #9ca3af;
}
#contact ::placeholder {
  color: #9ca3af;
}

.l-formLayout {
  font-size: 1dvw;
  width: 100%;
  margin: 0 0 3em 0;
}
.l-formLayout .l-formLayout__confirm {
  margin-bottom: 2em;
}
.l-formLayout .l-formLayout__item {
  margin: 0 0 1.5em 0;
}
.l-formLayout .l-formLayout__item label {
  display: inline-block;
  margin: 0 0 0.5em 0;
  position: relative;
}
.l-formLayout .l-formLayout__item label span {
  padding: 0 0 0 0.5em;
}
.l-formLayout .l-formLayout__item label span:before {
  content: "";
  display: block;
  background-color: #0886d1;
  width: 5px;
  height: 1em;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
}
.l-formLayout .l-formLayout__item input {
  width: 100%;
  background-color: rgba(241, 245, 249, 0.9);
  padding: 0.5em 1em;
  border: solid 1px #94a3b8;
  border-radius: 7px;
}
.l-formLayout .l-formLayout__item textarea {
  background-color: rgba(241, 245, 249, 0.9);
  width: 100%;
  padding: 0.5em 1em;
  border: solid 1px #94a3b8;
  border-radius: 7px;
}

.p-required span::after {
  content: "必須";
  color: rgb(220, 38, 38);
  font-size: 0.7dvw;
  display: inline-block;
  position: absolute;
  top: 12.5%;
  right: -3em;
}

.p-required__error {
  color: rgb(220, 38, 38);
  font-size: 0.8dvw;
}

.p-send .p-send__button {
  color: #fff;
  text-shadow: 0px 0px 20px #334155;
  background-color: #334155;
  padding: 1.25em 4em;
  border: solid 1px #fff;
  border-radius: 7px;
}
.p-send .p-send__button:hover {
  background: #0088ff;
  background: radial-gradient(circle, rgb(0, 136, 255) 50%, rgb(0, 76, 143) 100%);
  transition: all 0.6s;
}
.p-send .p-send__buttonback {
  color: #334155;
  text-shadow: 0px 0px 20px #cbd5e1;
  background-color: #cbd5e1;
  margin: 0 2em 0 0;
  padding: 1.25em 4em;
  border: solid 1px #fff;
  border-radius: 7px;
}
.p-send .p-send__buttonback:hover {
  background: #94a3b8;
  background: radial-gradient(circle, rgb(241, 245, 249) 50%, rgb(203, 213, 225) 100%);
  transition: all 0.6s;
}

.g-recaptcha {
  margin-bottom: 1.5em;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-formLayout {
    font-size: 4dvw;
  }
  .p-required span::after {
    font-size: 2.5dvw;
    top: 20%;
  }
  .p-required__error {
    font-size: 2.5dvw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .l-formLayout {
    font-size: 2dvw;
  }
  .p-required span::after {
    font-size: 1.5dvw;
    top: 20%;
  }
  .p-required__error {
    font-size: 1.5dvw;
  }
}
.l-spBottom__menu {
  display: none;
}

#p-drawer {
  display: none;
}

@media screen and (max-width: 767px) and (orientation: portrait) {
  .l-spBottom__menu {
    display: flex;
    justify-content: space-between;
    width: 100dvw;
    padding: 0.5em;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
  }
  .l-spBottom__item {
    color: #fff;
    height: 7dvh;
    border: solid 1px #fff;
    border-radius: 7px;
  }
  #c-menu {
    display: flex;
    justify-content: center;
    background-color: rgba(241, 245, 249, 0.8);
    align-items: center;
    width: 15%;
  }
  #c-menu .c-menu__button {
    display: flex;
    width: 30%;
    height: 30%;
  }
  #c-menu .c-menu__icon {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
  }
  #c-menu .c-menu__icon span {
    display: inline-block;
    background: #0886d1;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    transition: all 0.4s;
  }
  #c-menu .c-menu__icon span:nth-of-type(1) {
    top: 0;
  }
  #c-menu .c-menu__icon span:nth-of-type(2) {
    top: 50%;
  }
  #c-menu .c-menu__icon span:nth-of-type(3) {
    top: 100%;
  }
  #c-menu.active .c-menu__icon span:nth-of-type(1) {
    top: 50%;
    left: -30%;
    transform: rotate(-45deg);
    width: 150%;
  }
  #c-menu.active .c-menu__icon span:nth-of-type(2) {
    opacity: 0;
  }
  #c-menu.active .c-menu__icon span:nth-of-type(3) {
    top: 50%;
    left: -30%;
    transform: rotate(45deg);
    width: 150%;
  }
  #c-contact {
    width: 60%;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -100%;
    left: 0;
    transition: bottom 0.7s ease;
  }
  #c-contact .c-contact__button {
    font-size: 3dvw;
    display: flex;
    background-color: #f97316;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 7px;
  }
  #c-contact .c-contact__button span {
    display: inline;
  }
  #c-pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(241, 245, 249, 0.8);
    width: 15%;
    margin: auto;
    position: absolute;
    bottom: -100%;
    right: 0.5em;
    transition: bottom 0.7s ease;
  }
  #c-pagetop .c-pagetop__button {
    display: flex;
    width: 60%;
    height: 60%;
  }
  #c-pagetop .c-pagetop__icon {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
  }
  #p-drawer {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(241, 245, 249, 0.95);
    width: 100%;
    height: 100%;
    padding: 2em;
    position: fixed;
    bottom: -100%;
    left: 0;
    z-index: 1000;
    transition: bottom 0.7s ease;
  }
  #p-drawer::after {
    content: "";
    display: block;
    background-image: url(../svg/bg_body_dfblue.svg), url(../svg/bg_body_dfgreen.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: 20dvh auto, 20dvh auto;
    background-position: right top, left bottom;
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    bottom: -100%;
    left: 0;
    overscroll-behavior-y: none;
    z-index: 1001;
    transition: bottom 0.7s ease;
  }
  #p-drawer .p-footerMenu__list__item {
    font-size: 4dvw;
    font-weight: 700;
    z-index: 1002;
  }
  #p-drawer.u-open {
    bottom: 0;
  }
  #p-drawer.u-open::after {
    bottom: 0;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) and (orientation: portrait) {
  /* タブレット縦位置用スタイル */
  .l-spBottom__menu {
    display: flex;
    justify-content: space-between;
    width: 100dvw;
    padding: 0.5em;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 8888;
  }
  .l-spBottom__item {
    color: #fff;
    height: 7dvh;
    border: solid 1px #fff;
    border-radius: 7px;
  }
  #c-menu {
    display: flex;
    justify-content: center;
    background-color: rgba(241, 245, 249, 0.8);
    align-items: center;
    width: 10%;
  }
  #c-menu .c-menu__button {
    display: flex;
    width: 30%;
    height: 30%;
  }
  #c-menu .c-menu__icon {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
  }
  #c-menu .c-menu__icon span {
    display: inline-block;
    background: #0886d1;
    width: 100%;
    height: 2px;
    border-radius: 2px;
    position: absolute;
    transition: all 0.4s;
  }
  #c-menu .c-menu__icon span:nth-of-type(1) {
    top: 0;
  }
  #c-menu .c-menu__icon span:nth-of-type(2) {
    top: 50%;
  }
  #c-menu .c-menu__icon span:nth-of-type(3) {
    top: 100%;
  }
  #c-menu.active .c-menu__icon span:nth-of-type(1) {
    top: 50%;
    left: -30%;
    transform: rotate(-45deg);
    width: 150%;
  }
  #c-menu.active .c-menu__icon span:nth-of-type(2) {
    opacity: 0;
  }
  #c-menu.active .c-menu__icon span:nth-of-type(3) {
    top: 50%;
    left: -30%;
    transform: rotate(45deg);
    width: 150%;
  }
  #c-menu #c-contact {
    width: 70%;
    margin: auto;
    position: absolute;
    right: 0;
    bottom: -100%;
    left: 0;
    transition: bottom 0.7s ease;
  }
  #c-menu #c-contact .c-contact__button {
    font-size: 3dvw;
    display: flex;
    background-color: #f97316;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    border-radius: 7px;
  }
  #c-menu #c-contact .c-contact__button span {
    display: inline;
  }
  #c-menu #c-pagetop {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(241, 245, 249, 0.8);
    width: 10%;
    margin: auto;
    position: absolute;
    bottom: -100%;
    right: 0.5em;
    transition: bottom 0.7s ease;
  }
  #c-menu #c-pagetop .c-pagetop__button {
    display: flex;
    width: 60%;
    height: 60%;
  }
  #c-menu #c-pagetop .c-pagetop__icon {
    display: flex;
    flex-wrap: wrap;
    align-content: space-between;
    width: 100%;
    height: 100%;
    position: relative;
  }
  #c-menu #p-drawer {
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(241, 245, 249, 0.95);
    width: 100%;
    height: 100%;
    padding: 2em;
    position: fixed;
    bottom: -100%;
    left: 0;
    z-index: 1000;
    transition: bottom 0.7s ease;
  }
  #c-menu #p-drawer::after {
    content: "";
    display: block;
    background-image: url(../svg/bg_body_dfblue.svg), url(../svg/bg_body_dfgreen.svg);
    background-repeat: no-repeat, no-repeat;
    background-size: 20dvh auto, 20dvh auto;
    background-position: right top, left bottom;
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    bottom: -100%;
    left: 0;
    overscroll-behavior-y: none;
    z-index: 1001;
    transition: bottom 0.7s ease;
  }
  #c-menu #p-drawer .p-footerMenu__list__item {
    font-size: 4dvw;
    font-weight: 600;
    z-index: 1002;
  }
  #c-menu #p-drawer.u-open {
    bottom: 0;
  }
  #c-menu #p-drawer.u-open::after {
    bottom: 0;
  }
}/*# sourceMappingURL=common.css.map */