@charset "UTF-8";
html {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
  word-break: normal;
}

*,
:after,
:before {
  background-repeat: no-repeat;
  box-sizing: inherit;
}

:after,
:before {
  text-decoration: inherit;
  vertical-align: inherit;
}

* {
  margin: 0;
  padding: 0;
}

hr {
  color: inherit;
  height: 0;
  overflow: visible;
}

details,
main {
  display: block;
}

summary {
  display: list-item;
}

small {
  font-size: 80%;
}

[hidden] {
  display: none;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

a {
  background-color: transparent;
}

a:active,
a:hover {
  outline-width: 0;
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
}

pre {
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

table {
  border-color: inherit;
  text-indent: 0;
}

iframe {
  border-style: none;
}

input {
  border-radius: 0;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

textarea {
  overflow: auto;
  resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
}

optgroup {
  font-weight: 700;
}

button {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

[role=button],
[type=button],
[type=reset],
[type=submit],
button {
  cursor: pointer;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner,
button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

[type=reset],
[type=submit],
button,
html [type=button] {
  -webkit-appearance: button;
}

button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline-width: 0;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
}

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

select::-ms-value {
  color: currentColor;
}

legend {
  border: 0;
  color: inherit;
  display: table;
  max-width: 100%;
  white-space: normal;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  color: inherit;
  font: inherit;
}

[disabled] {
  cursor: default;
}

img {
  border-style: none;
}

progress {
  vertical-align: baseline;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true] {
  cursor: default;
}

html {
  font-size: 62.5%;
}

html.is-fixed {
  height: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  html.is-fixed {
    height: auto;
    overflow: visible;
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
  font-weight: 500;
  letter-spacing: 0.01em;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 500;
}

ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.25s;
}

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

@keyframes blur {
  0% {
    opacity: 0;
    filter: blur(10px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
  }
}
@keyframes blurUp {
  0% {
    opacity: 0;
    filter: blur(10px);
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeDown {
  0% {
    opacity: 0;
    transform: translateY(-25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(25px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/*.l-header
==================================================*/
.l-header {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  z-index: 8000;
}

/*.l-main
==================================================*/
.l-main {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  .l-main {
    margin-top: 80px;
  }
  .l-main.-strength {
    margin-top: 0;
  }
}

/*.l-footer
==================================================*/
.l-footer {
  overflow: hidden;
}

/*.c-button
==================================================*/
.c-button {
  display: block;
  position: relative;
  text-align: center;
  transition: 0.25s;
  line-height: 1;
  width: 100%;
  color: #fff;
}
.c-button:hover {
  opacity: 0.7;
}
.c-button::after {
  content: "";
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon_arrow.svg");
  width: clamp(8px, 2.1333333333vw, 12px);
  height: clamp(11px, 2.9333333333vw, 17px);
  top: 50%;
  transform: translateY(-50%);
  right: clamp(15px, 4vw, 30px);
}
.c-button.-primary {
  background-color: #173490;
  font-size: clamp(1.5rem, 4vw, 2rem);
  padding-top: clamp(11px, 2.9333333333vw, 28px);
  padding-bottom: clamp(13px, 3.4666666667vw, 30px);
}
.c-button.-back {
  background-color: #969696;
  font-size: clamp(1.5rem, 4vw, 2rem);
  padding-top: clamp(11px, 2.9333333333vw, 28px);
  padding-bottom: clamp(13px, 3.4666666667vw, 30px);
}
.c-button.-back::after {
  right: auto;
  left: clamp(15px, 4vw, 30px);
  transform: translateY(-50%) rotate(180deg);
}

/*.c-link-blank
==================================================*/
.c-link-blank {
  position: relative;
  display: inline-block;
  text-decoration: underline;
  text-underline-offset: 4px;
  padding-right: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .c-link-blank {
    padding-right: 20px;
  }
}
.c-link-blank::after {
  content: "";
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon_blank.svg");
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 3.6vw;
  height: 2.9333333333vw;
}
@media screen and (min-width: 768px) {
  .c-link-blank::after {
    width: 15px;
    height: 12px;
  }
}
.c-link-blank.-white::after {
  background-image: none;
  background-color: #fff;
  content: "";
  -webkit-mask-image: url(../images/common/icon_blank.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_blank.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
}

/*.c-form
==================================================*/
.c-form {
  border: 1px solid #cccccc;
  background-color: #f4f3f3;
  width: 100%;
  border-radius: clamp(3px, 0.6666666667vw, 5px);
  padding: clamp(7px, 1.8666666667vw, 12px);
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  vertical-align: bottom;
}
.c-form.-textarea {
  height: clamp(128px, 34.1333333333vw, 171px);
}

/*.c-table
==================================================*/
.c-table {
  display: grid;
  grid-template-columns: clamp(150px, 40vw, 200px) 1fr;
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
}
.c-table__heading {
  font-weight: 700;
  padding: clamp(18px, 4.8vw, 20px) 1px;
}
.c-table__heading:not(:last-of-type) {
  border-bottom: 1px solid #cfcfcf;
}
.c-table__body {
  padding: clamp(18px, 4.8vw, 20px) 1px;
}
.c-table__body:not(:last-of-type) {
  border-bottom: 1px solid #cfcfcf;
}

/*.p-header
==================================================*/
.p-header {
  position: relative;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header {
    background-color: #11113a;
    height: 80px;
  }
}
.p-header__logo {
  padding-left: 3.3333333333vw;
  width: 69.12vw;
  background-color: #fff;
  height: 100%;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-header__logo {
    width: 465px;
    padding: 16px 35px 18px 25px;
  }
}
@media screen and (min-width:768px) and (max-width: 1100px) {
  .p-header__logo {
    width: 300px;
    padding: 22px 10px 18px;
  }
}
.p-header__hamburger {
  background-color: #272785;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  position: relative;
}
.p-header__hamburger span {
  transition: 0.4s;
  position: absolute;
  left: 3.3333333333vw;
  width: 6.6666666667vw;
  height: 0.8vw;
  background-color: #fff;
}
.p-header__hamburger span:nth-of-type(1) {
  top: 4.2666666667vw;
}
.p-header__hamburger span:nth-of-type(3) {
  top: 9.0666666667vw;
}
.p-header__hamburger.is-active span:nth-of-type(1) {
  transform: rotate(-45deg);
  top: 50%;
}
.p-header__hamburger.is-active span:nth-of-type(2) {
  opacity: 0;
}
.p-header__hamburger.is-active span:nth-of-type(3) {
  transform: rotate(45deg);
  top: 50%;
}
.p-header__navi {
  position: absolute;
  top: 13.3333333333vw;
  z-index: 1;
  width: 100%;
  height: 100vh;
  background-color: #11113a;
  opacity: 0;
  visibility: hidden;
  overflow-y: scroll;
  display: none;
  transition: 0.5s;
}
.p-header__navi.is-open {
  visibility: visible;
  animation: fade 0.5s ease 0.01s forwards;
  display: block;
  transition-delay: 1s;
}
@media screen and (min-width: 768px) {
  .p-header__navi.is-open {
    display: flex;
  }
}
@media screen and (min-width: 768px) {
  .p-header__navi {
    opacity: 1;
    visibility: visible;
    position: relative;
    height: 100%;
    display: flex;
    top: auto;
    flex: 1;
    justify-content: flex-end;
    overflow-y: auto;
  }
}

/*.p-header-menu
==================================================*/
@media screen and (min-width: 768px) {
  .p-header-menu {
    display: flex;
  }
}
.p-header-menu__item {
  font-size: 3.4666666667vw;
  border-bottom: 1px solid #262663;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  .p-header-menu__item {
    font-size: 1.6rem;
    margin-right: 50px;
    border-bottom: none;
  }
}
@media screen and (min-width:768px) and (max-width: 1100px) {
  .p-header-menu__item {
    margin-right: 10px;
  }
}
.p-header-menu__item.is-current .p-header-menu__item-link {
  background-color: #3a3ac0;
}
@media screen and (min-width: 768px) {
  .p-header-menu__item.is-current .p-header-menu__item-link {
    background-color: transparent;
  }
  .p-header-menu__item.is-current .p-header-menu__item-link::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background-color: #00a0e9;
  }
}
.p-header-menu__item-link {
  position: relative;
  background-color: #11113a;
  display: block;
  color: #fff;
  padding: 4.4vw 5.3333333333vw;
  display: flex;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-header-menu__item-link {
    height: 80px;
    padding: 0 5px;
    background-color: transparent;
  }
  .p-header-menu__item-link:hover::after {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 10px;
    background-color: #00a0e9;
  }
}

/*.p-header-contact
==================================================*/
.p-header-contact {
  background-color: #122359;
  text-align: center;
  padding: 9.3333333333vw 5.3333333333vw 8vw;
}
@media screen and (min-width: 768px) {
  .p-header-contact {
    padding: 0;
  }
}
.p-header-contact__heading {
  color: #fff;
  font-size: 5.3333333333vw;
  margin-bottom: 1.3333333333vw;
}
.p-header-contact__text {
  color: #fff;
  line-height: 1.6;
  font-size: 3.4666666667vw;
  margin-bottom: 3.3333333333vw;
}
.p-header-contact__button {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
  background-color: #12113b;
  font-size: 4vw;
  padding: 4vw;
}
@media screen and (min-width: 768px) {
  .p-header-contact__button {
    font-size: 1.6rem;
    background-color: #173490;
    height: 100%;
    display: flex;
    padding: 50px 20px 0;
  }
  .p-header-contact__button::after {
    content: "";
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/common/icon_mail.png");
    width: 38px;
    height: 30px;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (min-width:768px) and (max-width: 1100px) {
  .p-header-contact__button {
    padding: 50px 10px 0;
  }
}

/*.p-header-sub
==================================================*/
.p-header-sub {
  background-color: #11113a;
  padding: 5.3333333333vw 5.3333333333vw 40vw 5.3333333333vw;
}
.p-header-sub__item {
  font-size: 2.9333333333vw;
}
.p-header-sub__item:not(:last-child) {
  margin-bottom: 5.3333333333vw;
}
.p-header-sub__item-link {
  color: #fff;
}

/*.p-footer
==================================================*/
.p-footer {
  background-color: #12113b;
}
.p-footer__inner {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(18px, 4.8vw, 40px);
  padding-right: clamp(18px, 4.8vw, 20px);
  padding-bottom: clamp(18px, 4.8vw, 40px);
  padding-left: clamp(18px, 4.8vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-footer__inner {
    display: flex;
    justify-content: space-between;
  }
}
.p-footer__navi {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footer__navi {
    display: flex;
  }
}
.p-footer__navi-item {
  font-size: 1.5rem;
}
.p-footer__navi-item:not(:last-child) {
  margin-right: 40px;
}
.p-footer__navi-link {
  color: #fff;
}
.p-footer__navi-link:hover {
  text-decoration: underline;
}
.p-footer__copyright {
  line-height: 1;
  color: #fff;
  text-align: center;
  font-size: clamp(1.2rem, 3.3333333333vw, 1.5rem);
}

/*.p-footer-contact
==================================================*/
.p-footer-contact {
  background-color: #f4f3f3;
}
.p-footer-contact__inner {
  margin-left: auto;
  margin-right: auto;
  padding-top: clamp(35px, 9.3333333333vw, 80px);
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(30px, 8vw, 90px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}
.p-footer-contact__heading {
  text-align: center;
  line-height: 1;
  font-size: clamp(2rem, 5.3333333333vw, 3rem);
  margin-bottom: clamp(5px, 1.3333333333vw, 20px);
}
.p-footer-contact__text {
  text-align: center;
  font-size: clamp(1.4rem, 3.7333333333vw, 2rem);
  line-height: 1.6153846154;
  margin-bottom: clamp(12px, 3.3333333333vw, 25px);
}
.p-footer-contact__button {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}

/*.p-page-header
==================================================*/
.p-page-header {
  text-align: center;
  padding-top: clamp(35px, 9.3333333333vw, 70px);
  padding-right: clamp(16px, 4.2666666667vw, 20px);
  padding-left: clamp(16px, 4.2666666667vw, 20px);
}
.p-page-header *:last-child {
  margin-bottom: 0;
}
.p-page-header__title {
  margin-bottom: clamp(20px, 5.3333333333vw, 50px);
}
.p-page-header__title-en {
  display: inline-block;
  color: #00a0e9;
  font-family: "Lato", sans-serif;
  font-size: clamp(0.7rem, 1.8666666667vw, 1.4rem);
  margin-bottom: clamp(3px, 0.8vw, 6px);
}
.p-page-header__title-ja {
  font-weight: 700;
  font-size: clamp(2.5rem, 6.6666666667vw, 5rem);
}
.p-page-header__text {
  line-height: 1.625;
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
  margin-bottom: clamp(17px, 4.5333333333vw, 28px);
}

/*.p-home-mv
==================================================*/
.p-home-mv {
  opacity: 0;
  animation: fade 2.5s ease 0.25s forwards;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-home-mv {
    margin-bottom: -0.1333333333vw;
  }
}
.p-home-mv__heading {
  opacity: 0;
  animation: blurUp 1.5s ease 1.25s forwards;
  font-size: 6.6666666667vw;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: bold;
  color: #fff;
  position: absolute;
  top: 5.3333333333vw;
  left: 5.3333333333vw;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  .p-home-mv__heading {
    font-size: 3.671875vw;
    top: 5.46875vw;
    left: 6.25vw;
  }
}
.p-home-mv__lead {
  position: absolute;
  transform: translateX(-50%);
  left: 50%;
  bottom: 8.6666666667vw;
  width: 94.6666666667vw;
}
.p-home-mv__lead img {
  opacity: 0;
}
.p-home-mv__lead img.is-show {
  animation: fadeUp 1.5s ease forwards;
}
@media screen and (min-width: 768px) {
  .p-home-mv__lead {
    width: 70.15625vw;
    bottom: 3.90625vw;
  }
}

/*.p-home-strength
==================================================*/
.p-home-strength__button-wrapper {
  padding-top: clamp(35px, 9.3333333333vw, 50px);
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(37px, 10vw, 55px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}
.p-home-strength__button {
  background-color: #e50037;
  font-size: clamp(2rem, 5.3333333333vw, 3rem);
  padding: clamp(15px, 4vw, 36px);
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
}

/*.p-home-strength-items
==================================================*/
@media screen and (min-width: 768px) {
  .p-home-strength-items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
  }
}

/*.p-home-strength-item
==================================================*/
.p-home-strength-item {
  transition: 0.5s;
  overflow: hidden;
  position: relative;
  opacity: 0;
}
.p-home-strength-item.is-show {
  animation: fadeUp 1s ease forwards;
}
@media screen and (min-width: 768px) {
  .p-home-strength-item.is-show:nth-of-type(2) {
    animation-delay: 0.3s;
  }
  .p-home-strength-item.is-show:nth-of-type(3) {
    animation-delay: 0.6s;
  }
}
.p-home-strength-item__link {
  display: block;
  position: relative;
}
.p-home-strength-item__link::after {
  content: "";
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/common/icon_arrow.svg");
  background-color: #e50037;
  background-position: center;
  background-size: 12px;
  width: 12vw;
  height: 12vw;
  border-radius: 50%;
  left: 50%;
  transform: translateX(-50%);
  bottom: 12vw;
}
@media screen and (min-width: 768px) {
  .p-home-strength-item__link::after {
    width: 4.39238653vw;
    height: 4.39238653vw;
    background-size: 0.878477306vw;
    right: 1.4641288433vw;
    bottom: 1.4641288433vw;
    left: auto;
    transform: none;
  }
}
.p-home-strength-item__link:hover {
  opacity: 0.7;
}
.p-home-strength-item__image {
  transition: 0.5s;
  transform: scale(1.01);
}
.p-home-strength-item:hover .p-home-strength-item__image {
  transform: scale(1.07);
}
.p-home-strength-item__heading {
  color: #fff;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  white-space: nowrap;
  font-size: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-home-strength-item__heading {
    font-size: 2.196193265vw;
  }
}
.p-home-strength-item__heading-number {
  font-family: "Roboto Condensed", sans-serif;
  display: block;
  font-size: 13.3333333333vw;
  font-style: italic;
}
@media screen and (min-width: 768px) {
  .p-home-strength-item__heading-number {
    font-size: 5.1244509517vw;
  }
}

/*.p-home-service
==================================================*/
.p-home-service {
  background-color: #f2eee3;
}
.p-home-service__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  padding-top: clamp(45px, 12vw, 70px);
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(45px, 12vw, 70px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}
.p-home-service__heading {
  font-weight: 700;
  font-size: clamp(2.1rem, 5.7333333333vw, 5rem);
  margin-bottom: clamp(45px, 12vw, 70px);
}
.p-home-service__heading-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.p-home-service__heading-link:hover {
  opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .p-home-service__heading-link {
    justify-content: flex-start;
    gap: 40px;
  }
}
.p-home-service__heading-button {
  width: clamp(63px, 16.8vw, 104px);
}

/*.p-home-service-items
==================================================*/
.p-home-service-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(10px, 2.6666666667vw, 14px);
}
@media screen and (min-width: 768px) {
  .p-home-service-items {
    grid-template-columns: repeat(4, 1fr);
  }
}

/*.p-home-service-item
==================================================*/
.p-home-service-item {
  background-color: #fff;
  overflow: hidden;
  border-radius: clamp(10px, 2.6666666667vw, 20px);
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.1));
  transition: 0.5s;
  opacity: 0;
}
.p-home-service-item.is-show {
  animation: fadeUp 1s ease forwards;
}
@media screen and (min-width: 768px) {
  .p-home-service-item.is-show:nth-of-type(2) {
    animation-delay: 0.25s;
  }
  .p-home-service-item.is-show:nth-of-type(3) {
    animation-delay: 0.5s;
  }
  .p-home-service-item.is-show:nth-of-type(4) {
    animation-delay: 0.75s;
  }
}
.p-home-service-item__link:hover {
  opacity: 0.7;
}
.p-home-service-item__image-wrapper {
  overflow: hidden;
}
.p-home-service-item__image {
  transition: 0.5s;
}
@media screen and (min-width: 768px) {
  .p-home-service-item__image {
    -o-object-fit: cover;
       object-fit: cover;
    aspect-ratio: 29/31;
    transform: scale(1.01);
  }
}
.p-home-service-item:hover .p-home-service-item__image {
  transform: scale(1.07);
}
.p-home-service-item__heading {
  background-color: #fff;
  text-align: center;
  font-size: 3.2vw;
  padding-top: clamp(13px, 3.4666666667vw, 29px);
  padding-bottom: clamp(13px, 3.4666666667vw, 29px);
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-home-service-item__heading {
    font-size: min(1.6666666667vw, 20px);
  }
}
.p-home-service-item__heading-inner {
  position: relative;
  padding-right: 3.2vw;
  display: inline-block;
}
.p-home-service-item__heading-inner::after {
  content: "";
  -webkit-mask-image: url(../images/common/icon_arrow.svg);
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-image: url(../images/common/icon_arrow.svg);
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  position: absolute;
  background-color: #e50037;
  width: 1.8666666667vw;
  height: 2.5333333333vw;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (min-width: 768px) {
  .p-home-service-item__heading-inner {
    padding-right: 6.89655%;;
  }
  .p-home-service-item__heading-inner::after {
    width: min(0.8333333333vw, 10px);
    height: min(1.4166666667vw, 17px);
  }
}

/*.p-home-news
==================================================*/
.p-home-news__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1240px;
  padding-top: clamp(30px, 8vw, 94px);
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(30px, 8vw, 70px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}
@media screen and (min-width: 768px) {
  .p-home-news__inner {
    display: grid;
    grid-template-columns: minmax(150px, 16.6666666667%) 1fr;
  }
}
.p-home-news__heading {
  line-height: 1;
  font-size: clamp(1.5rem, 4vw, 3rem);
}
@media screen and (max-width: 767px) {
  .p-home-news__heading {
    margin-bottom: 4.8vw;
  }
}
.p-home-news__item {
  border-bottom: clamp(1px, 0.1333333333vw, 1px) solid #cccccc;
  font-size: clamp(1.4rem, 3.7333333333vw, 1.5rem);
  padding-top: clamp(9px, 2.4vw, 18px);
  padding-right: clamp(13px, 3.4666666667vw, 15px);
  padding-bottom: clamp(9px, 2.4vw, 18px);
  padding-left: clamp(13px, 3.4666666667vw, 15px);
  display: flex;
}
.p-home-news__item:first-of-type {
  border-top: clamp(1px, 0.1333333333vw, 1px) solid #cccccc;
}
.p-home-news__time {
  margin-right: 10.6666666667vw;
  margin-right: clamp(40px, 10.6666666667vw, 45px);
}

/*.p-strength-mv
==================================================*/
.p-strength-mv {
  opacity: 0;
  animation: fade 2.5s ease 0.25s forwards;
  position: relative;
}
.p-strength-mv__lead {
  position: absolute;
  width: clamp(360px, 96.1333333333vw, 97.890625vw);
  bottom: -0.2666666667vw;
  left: 50%;
  transform: translateX(-50%);
}
.p-strength-mv__lead img {
  opacity: 0;
  animation: fadeUp 1.5s ease 1s forwards;
}

/*.p-strength-header
==================================================*/
.p-strength-header {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  padding-top: clamp(40px, 10.6666666667vw, 90px);
  padding-right: clamp(5px, 1.3333333333vw, 20px);
  padding-bottom: clamp(105px, 28vw, 100px);
  padding-left: clamp(5px, 1.3333333333vw, 20px);
}
.p-strength-header *:last-child {
  margin-bottom: 0;
}
.p-strength-header__heading {
  text-align: center;
  white-space: nowrap;
  font-weight: 700;
  font-size: clamp(2.5rem, 6.6666666667vw, 5rem);
  margin-bottom: clamp(8px, 2.1333333333vw, 25px);
}
.p-strength-header__lead {
  text-align: center;
  font-weight: 400;
  line-height: 1.6538461538;
  font-size: clamp(1.4rem, 3.7333333333vw, 2.5rem);
  margin-bottom: clamp(30px, 8vw, 30px);
}
.p-strength-header__company {
  margin-left: auto;
  margin-right: auto;
  max-width: 86.1333333333vw;
  margin-bottom: 7.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-strength-header__company {
    max-width: 100%;
    margin-bottom: 45px;
  }
}
.p-strength-header__text {
  text-align: center;
  line-height: 1.6666666667;
  font-size: clamp(1.3rem, 3.4666666667vw, 2rem);
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-strength-header__text {
    margin-bottom: 0;
  }
}

/*.p-strength-company-items
==================================================*/
.p-strength-company-items {
  display: grid;
  gap: 4vw;
}
@media screen and (min-width: 768px) {
  .p-strength-company-items {
    margin-left: auto;
    margin-right: auto;
    max-width: min(100vw, 944px);
    grid-template-columns: 1fr 1fr 1fr;
    gap: min(2.2357723577vw, 22px);
    padding-bottom: min(14.2276422764vw, 140px);
    position: relative;
  }
  .p-strength-company-items::after {
    content: "";
    display: inline-block;
    position: absolute;
    vertical-align: middle;
    background-size: contain;
    background-repeat: no-repeat;
    background-image: url("../images/strength/logo_company.svg");
    width: min(44.1056910569vw, 427px);
    height: min(24.1869918699vw, 182px);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  }
}

/*.p-strength-company-item
==================================================*/
.p-strength-company-item {
  position: relative;
  transform-style: preserve-3d;
  transition: 0.5s;
  display: inline-block;
  cursor: pointer;
  transform: translateZ(-100px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}
@media screen and (min-width: 768px) {
  .p-strength-company-item:hover {
    transform: scale(1.05);
  }
}
.p-strength-company-item__front {
  position: absolute;
  z-index: 2;
  background-color: #fff;
  width: min(30.487804878vw, 300px);
  height: min(30.487804878vw, 300px);
  padding: min(2.5406504065vw, 25px);
  border-radius: 50%;
}
.p-strength-company-item__back {
  position: relative;
  background-color: #00a0e9;
  margin-left: auto;
  margin-right: auto;
  max-width: 72vw;
  height: 72vw;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-strength-company-item__back {
    border: 3px solid #fff;
    transform: rotateY(180deg);
    width: min(30.487804878vw, 300px);
    height: min(30.487804878vw, 300px);
  }
}
.p-strength-company-item__heading {
  text-align: center;
  font-weight: 700;
  line-height: 1.6428571429;
  font-size: 4.5333333333vw;
  margin-bottom: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  .p-strength-company-item__heading {
    font-size: min(2.0325203252vw, 2rem);
    margin-bottom: 4px;
  }
}
.p-strength-company-item__link {
  display: block;
  color: #fff;
  padding-bottom: 2.1333333333vw;
}
@media screen and (max-width: 767px) {
  .p-strength-company-item__link {
    background-color: #173490;
  }
}
@media screen and (min-width: 768px) {
  .p-strength-company-item__link {
    padding-bottom: min(0.6097560976vw, 6px);
  }
}
@media screen and (min-width: 768px) {
  .p-strength-company-item__link:hover {
    background-color: #173490;
  }
}
.p-strength-company-item__blank {
  padding-right: 6.6666666667vw;
}
.p-strength-company-item__blank::after {
  width: 5.0666666667vw;
  height: 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  .p-strength-company-item__blank {
    padding-right: 25px;
  }
  .p-strength-company-item__blank::after {
    width: 20px;
    height: 15px;
  }
}
.p-strength-company-item__text {
  text-align: justify;
  color: #fff;
  line-height: 1.625;
  font-size: 3.2vw;
  padding: 0 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  .p-strength-company-item__text {
    font-size: min(1.3211382114vw, 1.3rem);
    padding: 0 min(3.5569105691vw, 35px);
  }
}
.p-strength-company-item.-tech .p-strength-company-item__link {
  padding-top: 8.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-strength-company-item.-tech .p-strength-company-item__link {
    padding-top: min(4.5731707317vw, 45px);
  }
}
.p-strength-company-item.-atox .p-strength-company-item__link, .p-strength-company-item.-globeship .p-strength-company-item__link {
  padding-top: 14vw;
}
@media screen and (min-width: 768px) {
  .p-strength-company-item.-atox .p-strength-company-item__link, .p-strength-company-item.-globeship .p-strength-company-item__link {
    padding-top: min(6.7073170732vw, 66px);
  }
}
@media screen and (min-width: 768px) {
  .p-strength-company-item.-tech, .p-strength-company-item.-globeship {
    margin-top: 90px;
  }
}
.p-strength-company-item.is-active {
  transform: translateZ(0px) rotateY(180deg) !important;
}
.p-strength-company-item.is-active .p-strength-company-item__back {
  z-index: 3;
}

/*.p-strength-main
==================================================*/
.p-strength-main {
  position: relative;
}
.p-strength-main__heading {
  text-align: center;
  font-weight: 700;
  font-size: clamp(2.5rem, 6.6666666667vw, 5rem);
  margin-bottom: clamp(20px, 5.3333333333vw, 45px);
}
.p-strength-main__navi {
  position: sticky;
  top: 14.6666666667vw;
  z-index: 100;
}
@media screen and (min-width: 768px) {
  .p-strength-main__navi {
    top: 90px;
  }
}

/*.p-strength-navi
==================================================*/
.p-strength-navi {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}
.p-strength-navi__list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4.6666666667vw;
  padding-bottom: clamp(16px, 4.4vw, 30px);
}
@media screen and (min-width: 768px) {
  .p-strength-navi__list {
    gap: 1.3888888889%;
  }
}
.p-strength-navi__item {
  position: relative;
  text-align: center;
  font-size: clamp(1.2rem, 3.3333333333vw, 2.2rem);
  border-radius: 0 0 10px 10px;
  line-height: 1.44;
  background-color: #e50037;
  transition: 0.25s;
  cursor: pointer;
}
.p-strength-navi__item::before {
  content: "";
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/strength/icon_navi.svg");
  width: clamp(30px, 8.1333333333vw, 61px);
  height: clamp(11px, 2.9333333333vw, 22px);
  left: 50%;
  transform: translateX(-50%);
  bottom: -4vw;
}
@media screen and (min-width: 768px) {
  .p-strength-navi__item::before {
    bottom: -30px;
  }
}
@media screen and (min-width: 768px) {
  .p-strength-navi__item {
    line-height: 1.3333333333;
  }
}
.p-strength-navi__link {
  display: block;
  color: #fff;
  padding-top: clamp(7px, 1.8666666667vw, 11px);
  padding-bottom: clamp(7px, 1.8666666667vw, 14px);
}
.p-strength-navi__number {
  display: block;
  line-height: 1;
  font-style: italic;
  font-family: "Roboto Condensed", sans-serif;
  font-size: clamp(1.8rem, 4.8vw, 3.2rem);
}

/*.p-strength-item
==================================================*/
.p-strength-item {
  margin-top: -22.6666666667vw;
  padding-top: 36vw;
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(45px, 12vw, 100px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-strength-item {
    margin-top: -90px;
    padding-top: 240px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding-left: 0;
    padding-right: 0;
  }
  .p-strength-item.-strength01 {
    margin-top: -150px;
    padding-top: 250px;
  }
}
.p-strength-item__body *:last-child {
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-strength-item__body {
    flex: 1;
    max-width: 580px;
    padding-left: 20px;
    padding-right: 20px;
    margin-left: auto;
    margin-right: auto;
  }
}
.p-strength-item__number {
  display: block;
  position: relative;
  font-style: italic;
  font-family: "Roboto Condensed", sans-serif;
  color: #e50037;
  font-size: clamp(3.5rem, 9.3333333333vw, 7rem);
  padding-top: clamp(13px, 3.4666666667vw, 26px);
}
.p-strength-item__number::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  width: clamp(42px, 11.3333333333vw, 85px);
  height: clamp(5px, 1.3333333333vw, 10px);
  background-image: linear-gradient(to right, #95dfe5, #fff);
}
.p-strength-item__heading {
  font-weight: 700;
  font-size: clamp(2rem, 5.3333333333vw, 4rem);
  margin-bottom: clamp(3rem, 8vw, 60px);
}
.p-strength-item__text {
  font-size: clamp(1.4rem, 3.7333333333vw, 1.6rem);
  line-height: 1.6666666667;
  margin-bottom: clamp(2rem, 5.3333333333vw, 30px);
}
.p-strength-item__image-wrapper {
  margin-bottom: clamp(2.3rem, 6.1333333333vw, 30px);
  margin-right: -5.3333333333vw;
  margin-left: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-strength-item__image-wrapper {
    width: 50%;
    margin: 0;
  }
}
.p-strength-item__image {
  border-radius: clamp(10px, 2.6666666667vw, 20px) 0 0 clamp(10px, 2.6666666667vw, 20px);
}

/*.p-strength-service-box
==================================================*/
.p-strength-service-box {
  background-color: #00a0e9;
}
.p-strength-service-box__inner {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  padding-top: clamp(25px, 6.6666666667vw, 50px);
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(30px, 8vw, 70px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}
.p-strength-service-box__heading {
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: clamp(1.7rem, 4.6666666667vw, 3rem);
  margin-bottom: clamp(25px, 6.6666666667vw, 50px);
}

/*.p-strength-service
==================================================*/
@media screen and (min-width: 768px) {
  .p-strength-service {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-strength-service__item {
  padding-top: clamp(15px, 4vw, 5.1851851852%);
  padding-right: clamp(15px, 4vw, 9.8148148148%);
  padding-bottom: clamp(15px, 4vw, 5.1851851852%);
  padding-left: clamp(15px, 4vw, 9.8148148148%);
  position: relative;
}
.p-strength-service__item::before {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background-color: #fff;
  top: 0;
  right: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-strength-service__item::before {
    width: 93.8888888889%;
  }
}
.p-strength-service__item:last-child::after {
  content: "";
  position: absolute;
  display: block;
  height: 1px;
  background-color: #fff;
  bottom: 0;
  right: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-strength-service__item:last-child::after {
    width: 93.8888888889%;
  }
}
.p-strength-service__item.is-active {
  background-color: #fff;
}
.p-strength-service__item.is-active::before, .p-strength-service__item.is-active::after {
  content: none;
}
.p-strength-service__item.is-active + .p-strength-service__item::before {
  content: none;
}
.p-strength-service__item.is-active .p-strength-service__heading {
  font-weight: 500;
  color: #00a0e9;
}
.p-strength-service__item.is-active .p-strength-service__heading span {
  border: clamp(1px, 0.2666666667vw, 2px) solid #00a0e9;
}
.p-strength-service__item.is-active .p-strength-service__heading span::before, .p-strength-service__item.is-active .p-strength-service__heading span::after {
  background: #00a0e9;
}
.p-strength-service__item.is-active .p-strength-service__heading span::after {
  transform: translate(0, -50%) rotate(0deg);
}
.p-strength-service__heading {
  position: relative;
  line-height: 1;
  font-weight: 400;
  color: #fff;
  font-size: clamp(1.5rem, 4vw, 3rem);
  padding-left: clamp(27px, 7.3333333333vw, 12.7020785219%);
}
.p-strength-service__heading span {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: clamp(14px, 3.7333333333vw, 29px);
  height: clamp(14px, 3.7333333333vw, 29px);
  border: clamp(1px, 0.2666666667vw, 2px) solid #fff;
  border-radius: 50%;
}
.p-strength-service__heading span::before, .p-strength-service__heading span::after {
  content: "";
  display: block;
  position: absolute;
  width: clamp(5px, 1.4666666667vw, 11px);
  height: clamp(1px, 0.2666666667vw, 2px);
  background: #fff;
  transition: 0.5s ease;
  left: clamp(3px, 0.8vw, 7px);
  top: 50%;
  transform: translate(0, -50%) rotate(0deg);
}
.p-strength-service__heading span::after {
  transform: translate(0, -50%) rotate(90deg);
}
.p-strength-service__body {
  max-height: 0;
  overflow: hidden;
  transition: 0.5s;
}
.p-strength-service__body.is-default {
  max-height: 100%;
}
.p-strength-service__text {
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
  padding-top: clamp(7px, 1.8666666667vw, 21px);
  line-height: 1.6875;
}
.p-strength-service__image-wrapper {
  position: relative;
  padding: 4vw 4vw 0 4vw;
}
.p-strength-service__image-wrapper::after {
  content: "";
  display: block;
  aspect-ratio: 540/420;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  background: firebrick;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  .p-strength-service__image-wrapper {
    padding: 0;
  }
}
.p-strength-service__image {
  aspect-ratio: 540/420;
  position: relative;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-strength-service__image {
    position: absolute;
    transition: 0.5s;
    opacity: 0;
    height: auto;
  }
  .p-strength-service__image.is-active {
    opacity: 1;
  }
}

/*.p-strength-group
==================================================*/
.p-strength-group {
  background-color: #00a0e9;
  padding-top: clamp(22px, 5.8666666667vw, 50px);
  padding-bottom: clamp(32px, 8.5333333333vw, 55px);
}
.p-strength-group__heading {
  text-align: center;
  color: #fff;
  font-size: clamp(1.7rem, 4.6666666667vw, 3rem);
  margin-bottom: clamp(25px, 6.6666666667vw, 40px);
}
.p-strength-group__image-wrapper {
  margin-left: auto;
  margin-right: auto;
  max-width: 1100px;
}
@media screen and (min-width: 768px) {
  .p-strength-group__image-wrapper {
    padding: 0;
  }
}

/*.p-strength-power
==================================================*/
.p-strength-power {
  background-color: #00a0e9;
}
.p-strength-power__inner {
  position: relative;
  margin-left: auto;
  margin-right: auto;
  max-width: 1080px;
  padding-top: clamp(30px, 8vw, 60px);
  padding-right: clamp(20px, 5.3333333333vw, 62px);
  padding-bottom: clamp(25px, 6.6666666667vw, 78px);
  padding-left: clamp(20px, 5.3333333333vw, 45px);
}
.p-strength-power__volume {
  text-align: center;
  font-weight: 700;
  background-color: #173490;
  color: #fff;
  border-radius: 50%;
  width: 62.8vw;
  height: 62.8vw;
  line-height: 1.1111111111;
  font-size: 6.6666666667vw;
  padding-top: 21.3333333333vw;
}
.p-strength-power__volume span {
  font-size: 12vw;
}
@media screen and (min-width: 768px) {
  .p-strength-power__volume {
    width: min(43.6111111111vw, 471px);
    height: min(43.6111111111vw, 471px);
    font-size: min(4.6296296296vw, 5rem);
    padding-top: min(13.8888888889vw, 150px);
  }
  .p-strength-power__volume span {
    font-size: min(8.3333333333vw, 9rem);
  }
}
.p-strength-power__solar {
  margin-top: -22.4vw;
}
@media screen and (min-width: 768px) {
  .p-strength-power__solar {
    margin-top: -24.6659815005%;
    padding-left: 31.4491264132%;
  }
}
.p-strength-power__list {
  margin-left: auto;
  margin-right: auto;
  max-width: 60vw;
  color: #fff;
  font-size: 3.3333333333vw;
  display: grid;
  grid-template-columns: 84% 1fr;
  line-height: 2;
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-strength-power__list {
    position: absolute;
    margin-top: 0;
    font-size: min(2.3148148148vw, 2.5rem);
    top: 14.8148148148%;
    right: 10.1851851852%;
    width: 38.6111111111%;
  }
}

/*.p-service
==================================================*/
.p-service {
  overflow: hidden;
}

/*.p-service-mv
==================================================*/
.p-service-mv {
  position: relative;
  background-color: #f2eee3;
}
.p-service-mv img {
  opacity: 0;
  animation: fade 2.5s ease 0.25s forwards;
}
.p-service-mv__lead {
  z-index: 1;
  position: absolute;
  width: 102.9333333333vw;
  bottom: -0.2666666667vw;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .p-service-mv__lead {
    bottom: -0.2196193265vw;
    width: 76.1346998536vw;
  }
}
.p-service-mv__lead img {
  opacity: 0;
  animation: fadeUp 1.5s ease 1s forwards;
}

/*.p-service-header
==================================================*/
.p-service-header {
  background-color: #f2eee3;
  padding-top: clamp(30px, 8vw, 60px);
  padding-right: clamp(8px, 2.1333333333vw, 20px);
  padding-left: clamp(8px, 2.1333333333vw, 20px);
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-service-header {
    margin-bottom: 100px;
    padding-bottom: 0;
  }
}
.p-service-header__heading {
  font-weight: 400;
  text-align: center;
  font-size: clamp(2rem, 5.3333333333vw, 4rem);
  line-height: 1.5;
  margin-bottom: clamp(15px, 4vw, 20px);
}
.p-service-header__heading-line {
  position: relative;
  display: inline-block;
  padding-bottom: clamp(6px, 1.6vw, 15px);
}
.p-service-header__heading-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 94%;
  height: clamp(5px, 1.3333333333vw, 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #e50037;
}

/*.p-service-navi-items
==================================================*/
.p-service-navi-items {
  margin-left: auto;
  margin-right: auto;
  max-width: 982px;
  position: relative;
  height: clamp(260px, 69.3333333333vw, 555px);
}
.p-service-navi-items::after {
  content: "";
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/service/icon_solar.png");
  width: clamp(336px, 89.6vw, 916px);
  height: clamp(162px, 43.2vw, 442px);
  top: clamp(20px, 5.3333333333vw, 10px);
  left: 50%;
  transform: translateX(-50%);
}

/*.p-service-navi-item
==================================================*/
.p-service-navi-item {
  position: absolute;
  z-index: 1;
  border-radius: 50%;
  padding-bottom: clamp(13px, 3.4666666667vw, 35px);
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  transform: scale(1.001);
  transition: 0.25s;
}
.p-service-navi-item:hover {
  transform: scale(1.02);
}
.p-service-navi-item::after {
  content: "";
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/service/icon_navi_sp.svg");
  width: clamp(26px, 7.0666666667vw, 61px);
  height: clamp(10px, 2.6666666667vw, 22px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-service-navi-item::after {
    background-image: url("../images/service/icon_navi_pc.svg");
  }
}
.p-service-navi-item:nth-child(1) {
  top: 0;
  left: 0;
}
.p-service-navi-item:nth-child(2) {
  top: clamp(145px, 38.6666666667vw, 350px);
  left: clamp(55px, 14.6666666667vw, 180px);
}
.p-service-navi-item:nth-child(3) {
  top: clamp(145px, 38.6666666667vw, 350px);
  right: clamp(55px, 14.6666666667vw, 180px);
}
.p-service-navi-item:nth-child(4) {
  top: 0;
  right: 0;
}
.p-service-navi-item__link {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  border: clamp(3px, 0.8vw, 3px) solid #00a0e9;
  width: clamp(105px, 28vw, 246px);
  height: clamp(105px, 28vw, 246px);
  background-color: #fff;
}
.p-service-navi-item__heading {
  position: absolute;
  text-align: center;
  background-color: #fff;
  color: #00a0e9;
  font-weight: 700;
  font-size: clamp(1rem, 2.6666666667vw, 1.8rem);
  width: 100%;
  height: clamp(35px, 9.3333333333vw, 78px);
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.p-service-navi-item__heading-inner {
  position: absolute;
  display: inline-block;
  white-space: nowrap;
  letter-spacing: 0;
  line-height: 1.2;
  padding-bottom: clamp(4px, 1.0666666667vw, 8px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .p-service-navi-item__heading-inner {
    line-height: 1.3888888889;
  }
}

/*.p-service-floating-navi
==================================================*/
.p-service-floating-navi {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: clamp(2px, 0.5333333333vw, 40px);
  position: fixed;
  max-width: clamp(350px, 93.3333333333vw, 1080px);
  width: 100%;
  top: 14.6666666667vw;
  left: 50%;
  z-index: 10;
  transition: 0.5s;
  transform: translate(-50%, -26.6666666667vw);
}
@media screen and (min-width: 768px) {
  .p-service-floating-navi {
    top: 90px;
    transform: translate(-50%, -150px);
  }
}
.p-service-floating-navi.is-active {
  display: grid;
  transform: translate(-50%, 0);
}
.p-service-floating-navi__item {
  position: relative;
  padding-bottom: clamp(15px, 4vw, 30px);
}
.p-service-floating-navi__item::after {
  content: "";
  display: inline-block;
  position: absolute;
  vertical-align: middle;
  background-size: contain;
  background-repeat: no-repeat;
  background-image: url("../images/service/icon_navi_sp.svg");
  width: clamp(30px, 8vw, 60px);
  height: clamp(11px, 2.9333333333vw, 22px);
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .p-service-floating-navi__item::after {
    background-image: url("../images/service/icon_navi_pc.svg");
  }
}
.p-service-floating-navi__link {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
  text-align: center;
  background-color: #fff;
  font-weight: 700;
  border-radius: clamp(5px, 1.3333333333vw, 10px);
  border: clamp(2px, 0.5333333333vw, 3px) solid #00a0e9;
  filter: drop-shadow(0px 2px 4px rgba(0, 0, 0, 0.15));
  font-size: clamp(1rem, 2.6666666667vw, 1.8rem);
  line-height: 1.3888888889;
  padding: clamp(4px, 1.0666666667vw, 14px) 0;
  letter-spacing: 0;
  color: #00a0e9;
}

/*.p-service-section
==================================================*/
.p-service-section {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
  padding-top: clamp(110px, 29.3333333333vw, 210px);
  margin-top: -16vw;
}
@media screen and (min-width: 768px) {
  .p-service-section {
    margin-top: -120px;
  }
}
.p-service-section:last-child {
  margin-bottom: clamp(50px, 13.3333333333vw, 100px);
}
.p-service-section__heading {
  font-weight: 700;
  color: #00a0e9;
  font-size: clamp(1rem, 5.3333333333vw, 4rem);
  margin-bottom: clamp(20px, 5.3333333333vw, 35px);
}
.p-service-section__lead {
  line-height: 1.6538461538;
  font-size: clamp(1.4rem, 3.7333333333vw, 2rem);
  margin-bottom: clamp(22px, 5.8666666667vw, 45px);
}
.p-service-section__description {
  position: relative;
  line-height: 1.6666666667;
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
  padding-top: clamp(20px, 5.3333333333vw, 40px);
  margin-bottom: clamp(22px, 5.8666666667vw, 70px);
}
.p-service-section__description::after {
  position: absolute;
  content: "";
  top: 0;
  width: 100vw;
  height: clamp(212px, 56.6666666667vw, 325px);
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  background: #f2eee3;
}

/*.p-service-items
==================================================*/
.p-service-items {
  margin-left: auto;
  margin-right: auto;
  max-width: 68vw;
  display: flex;
  flex-wrap: wrap;
  gap: 8.6666666667vw;
}
@media screen and (min-width: 768px) {
  .p-service-items {
    max-width: 100%;
    justify-content: center;
    gap: 70px 5.5555555556%;
  }
}

/*.p-service-item
==================================================*/
@media screen and (min-width: 768px) {
  .p-service-item {
    max-width: 47.2222222222%;
  }
}
.p-service-item__image-wrapper {
  padding-left: clamp(5px, 1.3333333333vw, 10px);
  margin-bottom: clamp(2px, 0.5333333333vw, 5px);
  position: relative;
}
.p-service-item__heading {
  position: absolute;
  font-weight: 700;
  color: #fff;
  background-color: #e50037;
  font-size: clamp(1.2rem, 3.3333333333vw, 2rem);
  width: clamp(155px, 41.3333333333vw, 250px);
  left: 0;
  bottom: clamp(10px, 2.6666666667vw, 5.4901960784%);
  padding-top: clamp(2px, 0.5333333333vw, 3px);
  padding-bottom: clamp(4px, 1.0666666667vw, 6px);
  padding-left: clamp(8px, 2.1333333333vw, 13px);
}
.p-service-item__text {
  padding-left: clamp(5px, 1.3333333333vw, 10px);
  line-height: 1.65;
  font-size: clamp(1.2rem, 3.2vw, 1.4rem);
  letter-spacing: 0;
}

/*.p-profile
==================================================*/
.p-profile {
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
  padding-top: clamp(30px, 8vw, 70px);
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(50px, 13.3333333333vw, 100px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}
.p-profile__table {
  margin-bottom: clamp(20px, 5.3333333333vw, 30px);
}

/*.p-map
==================================================*/
.p-profile-map {
  position: relative;
  padding-top: 56.25%;
  width: 100%;
  height: clamp(210px, 56vw, 500px);
}
.p-profile-map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*.p-contact
==================================================*/
.p-contact {
  margin-left: auto;
  margin-right: auto;
  max-width: 840px;
  padding-top: clamp(25px, 6.6666666667vw, 50px);
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(50px, 13.3333333333vw, 100px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}
.p-contact.-confirm {
  max-width: 930px;
}
.p-contact.-error {
  padding-top: clamp(50px, 13.3333333333vw, 100px);
}
.p-contact__error-heading {
  text-align: center;
  font-weight: 700;
  line-height: 1.8;
  color: #e50037;
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: clamp(13px, 3.4666666667vw, 26px);
}
.p-contact__error-item {
  text-align: center;
  font-size: clamp(1.4rem, 3.7333333333vw, 1.6rem);
  margin-bottom: clamp(5px, 1.3333333333vw, 10px);
}
.p-contact__finish-text {
  text-align: center;
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
  margin-bottom: clamp(13px, 3.4666666667vw, 26px);
  line-height: 1.625;
}
.p-contact__finish-note {
  text-align: center;
  font-size: clamp(1.2rem, 3.2vw, 1.3rem);
  line-height: 1.6923076923;
  color: #e50037;
}

/*.p-contact-step
==================================================*/
.p-contact-step {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  max-width: clamp(230px, 61.3333333333vw, 430px);
  margin-bottom: clamp(50px, 13.3333333333vw, 100px);
}
.p-contact-step.-confirm, .p-contact-step.-finish {
  margin-bottom: clamp(25px, 6.6666666667vw, 50px);
}
.p-contact-step::after {
  content: "";
  position: absolute;
  z-index: -1;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  height: clamp(1px, 0.1333333333vw, 1px);
  background-color: #e0e0e0;
}
.p-contact-step__item {
  border-radius: 50%;
  background-color: #f4f3f3;
  text-align: center;
  font-weight: 700;
  color: #cccccc;
  line-height: 1.4375;
  padding-top: clamp(9px, 2.4vw, 14px);
  width: clamp(60px, 16vw, 80px);
  height: clamp(60px, 16vw, 80px);
  font-size: clamp(1.2rem, 3.2vw, 1.6rem);
}
.p-contact-step__item.is-active {
  background-color: #00a0e9;
  color: #fff;
}
.p-contact-step__number {
  display: block;
}

/*.p-contact
==================================================*/
.p-contact-form *:last-child {
  margin-bottom: 0;
}
.p-contact-form.-confirm .p-contact-form__heading {
  margin-bottom: clamp(10px, 2.6666666667vw, 20px);
}
.p-contact-form.-confirm .p-contact-form__heading:last-of-type {
  display: none;
}
.p-contact-form.-confirm .p-contact-form__body {
  font-weight: 700;
}
.p-contact-form.-confirm .p-contact-form__body:last-of-type {
  display: none;
}
.p-contact-form__heading {
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
  margin-bottom: clamp(10px, 2.6666666667vw, 12px);
}
.p-contact-form__required {
  display: inline-block;
  font-weight: 700;
  background-color: #e50037;
  color: #fff;
  font-size: clamp(1rem, 2.8vw, 1.4rem);
  margin-left: clamp(5px, 1.0666666667vw, 5px);
  padding-top: clamp(1px, 0.2666666667vw, 1px);
  padding-right: clamp(5px, 1.3333333333vw, 7px);
  padding-bottom: clamp(2px, 0.5333333333vw, 3px);
  padding-left: clamp(5px, 1.3333333333vw, 7px);
}
.p-contact-form__body {
  margin-bottom: clamp(35px, 9.3333333333vw, 45px);
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
}
.p-contact-form__body.-content {
  margin-bottom: clamp(65px, 17.3333333333vw, 80px);
}
.p-contact-form__check {
  cursor: pointer;
  width: clamp(15px, 4vw, 22px);
  height: clamp(15px, 4vw, 22px);
  margin-right: clamp(5px, 1.3333333333vw, 6px);
  vertical-align: middle;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.p-contact-form__check::before, .p-contact-form__check::after {
  content: "";
  display: block;
  position: absolute;
}
.p-contact-form__check::before {
  border-radius: clamp(1.5px, 0.4vw, 3px);
  background-color: #f4f3f3;
  border: 1px solid #cbcccc;
  width: clamp(15px, 4vw, 22px);
  height: clamp(15px, 4vw, 22px);
}
.p-contact-form__check::after {
  border-bottom: clamp(3px, 0.8vw, 4px) solid #666464;
  border-left: clamp(3px, 0.8vw, 4px) solid #666464;
  opacity: 0;
  height: clamp(6px, 1.6vw, 9px);
  width: clamp(11px, 2.9333333333vw, 15px);
  transform: rotate(-45deg);
  top: clamp(3px, 0.8vw, 5px);
  left: clamp(2px, 0.5333333333vw, 4px);
}
.p-contact-form__check:checked::after {
  opacity: 1;
}
.p-contact-form__link {
  margin-right: clamp(5px, 1.3333333333vw, 10px);
  padding-right: clamp(17px, 4.5333333333vw, 20px);
}
.p-contact-form__button {
  margin-left: auto;
  margin-right: auto;
  max-width: 650px;
  margin-top: clamp(35px, 9.3333333333vw, 70px);
}
.p-contact-form__button:disabled {
  background-color: #969696;
}
.p-contact-form__button:disabled:hover {
  opacity: 1;
}
.p-contact-form__buttons {
  margin-left: auto;
  margin-right: auto;
  max-width: 865px;
  display: grid;
  grid-template-columns: clamp(130px, 38.8059701493%, 37.5722543353%) clamp(185px, 55.223880597%, 57.8034682081%);
  justify-content: space-between;
}

/*.p-policy
==================================================*/
.p-policy {
  margin-left: auto;
  margin-right: auto;
  max-width: 1120px;
  display: grid;
  gap: clamp(45px, 12vw, 70px);
  padding-top: clamp(45px, 12vw, 90px);
  padding-right: clamp(20px, 5.3333333333vw, 20px);
  padding-bottom: clamp(50px, 13.3333333333vw, 100px);
  padding-left: clamp(20px, 5.3333333333vw, 20px);
}

/*.p-policy-item
==================================================*/
.p-policy-item *:last-child {
  margin-bottom: 0;
}
.p-policy-item__heading {
  color: #00a0e9;
  font-weight: 700;
  font-size: clamp(1.8rem, 4.8vw, 2.4rem);
  margin-bottom: clamp(12px, 3.2vw, 15px);
}
.p-policy-item__list {
  padding-left: 20px;
  margin-bottom: clamp(12px, 3.2vw, 15px);
}
.p-policy-item__list .p-policy-item__text {
  margin-bottom: 0;
}
.p-policy-item__text {
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
  line-height: 1.625;
  margin-bottom: clamp(12px, 3.2vw, 15px);
}
.p-policy-item__footer {
  font-size: clamp(1.3rem, 3.4666666667vw, 1.6rem);
  text-align: right;
  margin-top: clamp(15px, 4vw, 40px);
}

/*u-device-only
==================================================*/
@media screen and (min-width: 768px) {
  .u-sp-only {
    display: none;
  }
}

.u-pc-only {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-pc-only.-grid {
    display: grid;
  }
  .u-pc-only.-flex {
    display: flex;
  }
}
