@charset "UTF-8";
.js-bounce {
  max-width: initial;
}

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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
li,
table,
td,
th {
  margin: 0;
  padding: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

ul, ol {
  list-style: none;
  -webkit-padding-start: 0;
          padding-inline-start: 0;
}

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

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

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

a, a:hover {
  text-decoration: none;
  color: initial;
}

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

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

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
            animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
            animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
            transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
table {
  border-collapse: collapse;
}

html {
  font-size: 62.5%;
}
@media screen and (max-width: 326px) {
  html {
    font-size: 55.25%;
  }
}

body {
  position: relative;
  font-size: clamp(1.2rem, 1.2vw, 2rem);
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
  line-height: 2;
  color: #000;
}

main {
  position: relative;
  overflow-x: hidden;
}

footer {
  overflow-x: hidden;
}

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

a {
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}

@-webkit-keyframes circle {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes circle {
  from {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes wave_r {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
@keyframes wave_r {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(200%);
            transform: translateX(200%);
  }
}
@-webkit-keyframes wave_l {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes wave_l {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.l-header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 4;
  opacity: 1;
  padding: 30px;
}
@media screen and (max-width: 767px) {
  .l-header {
    padding: 8px;
  }
}
.l-header__logo {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    width: 120px;
  }
}
.l-header__btt {
  width: 120px;
  height: 120px;
  position: fixed;
  bottom: 30px;
  right: 30px;
  opacity: 0;
  pointer-events: none;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}
@media screen and (max-width: 767px) {
  .l-header__btt {
    width: 80px;
    height: 80px;
    bottom: 8px;
    right: 8px;
  }
}
.l-header__btt._is-active {
  opacity: 1;
  pointer-events: all;
}
.l-header__btt__txt {
  position: absolute;
  width: 100%;
  height: 100%;
  -webkit-animation: circle 10s linear infinite;
          animation: circle 10s linear infinite;
}
.l-header__btt__mark {
  width: 100%;
  height: 100%;
}
.l-header__nav {
  position: absolute;
  top: -120%;
  right: -120%;
  padding-top: 100px;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}
@media screen and (max-width: 767px) {
  .l-header__nav {
    right: -150%;
  }
}
.l-header__nav._is-open {
  top: 0;
  right: 0;
}
.l-header__nav::after {
  content: "";
  position: absolute;
  display: block;
  top: -50%;
  right: -70%;
  width: 180%;
  aspect-ratio: 1/1;
  background-color: #02105C;
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .l-header__nav::after {
    top: -50px;
  }
}
.l-header__nav__menu {
  position: relative;
  margin-right: 250px;
  text-align: right;
  z-index: 2;
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 46px 0;
}
@media screen and (max-width: 767px) {
  .l-header__nav__menu {
    margin-right: 100px;
  }
}
.l-header__nav__menu__about {
  margin-right: 100px;
}
.l-header__nav__menu__service {
  margin-right: 100px;
}
.l-header__nav__menu__corp {
  margin-right: 50px;
}
.l-header__nav__menu li {
  cursor: pointer;
}
.l-header__nav__menu li a {
  display: inline-block;
  padding: 4px 16px;
  background-color: rgba(255, 255, 255, 0.6);
}
.l-header__nav__menu li a:hover {
  background-color: #F15A24;
  color: #fff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.l-header__nav__compass {
  position: absolute;
  right: -20%;
  top: -5px;
  opacity: 0.2;
  z-index: 1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
@media screen and (max-width: 767px) {
  .l-header__nav__compass {
    top: 90px;
  }
}
.l-header__nav__compass._home {
  -webkit-transform: rotate(405deg);
          transform: rotate(405deg);
}
.l-header__nav__compass._about {
  -webkit-transform: rotate(385deg);
          transform: rotate(385deg);
}
.l-header__nav__compass._corp {
  -webkit-transform: rotate(-385deg);
          transform: rotate(-385deg);
}
.l-header__nav__compass._inq {
  -webkit-transform: rotate(-405deg);
          transform: rotate(-405deg);
}

.menu_button_wrapper {
  position: absolute;
  display: block;
  width: 100px;
  height: 100px;
  top: -100px;
  right: -100px;
  padding: 8px;
  background-color: #02105C;
  border-radius: 0 0 0 24px;
  z-index: 3;
  -webkit-transition: all 0.3s ease-in;
  transition: all 0.3s ease-in;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .menu_button_wrapper {
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .menu_button_wrapper {
    width: 58px;
    height: 58px;
    top: 0;
    right: 0;
    border-radius: 0 0 0 16px;
  }
}
.menu_button_wrapper._is-active {
  top: 0;
  right: 0;
}
.menu_button_wrapper._is-open {
  top: 0;
  right: 0;
}
.menu_button_wrapper._is-open::before {
  width: 70%;
  height: 2px;
  top: 50%;
  left: 15%;
  aspect-ratio: initial;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-mask-image: initial;
          mask-image: initial;
}
.menu_button_wrapper._is-open::after {
  width: 70%;
  height: 2px;
  top: 50%;
  left: 15%;
  aspect-ratio: initial;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  -webkit-mask-image: initial;
          mask-image: initial;
}
.menu_button_wrapper._is-open .menu_button::before {
  width: 70%;
  height: 2px;
  top: 50%;
  left: 15%;
  aspect-ratio: initial;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-mask-image: initial;
          mask-image: initial;
}
.menu_button_wrapper::before {
  content: "";
  position: absolute;
  display: block;
  width: 60%;
  aspect-ratio: 100/11.5;
  top: 30%;
  left: 20%;
  background-color: #fff;
  -webkit-mask-image: url("../assets/common/img/icon-wave.svg");
          mask-image: url("../assets/common/img/icon-wave.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}
.menu_button_wrapper::after {
  content: "";
  position: absolute;
  display: block;
  width: 60%;
  aspect-ratio: 100/11.5;
  top: 50%;
  left: 20%;
  background-color: #fff;
  -webkit-mask-image: url("../assets/common/img/icon-wave.svg");
          mask-image: url("../assets/common/img/icon-wave.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}

.menu_button {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: initial;
  border: none;
}
.menu_button::before {
  content: "";
  position: absolute;
  display: block;
  width: 60%;
  aspect-ratio: 100/11.5;
  top: 70%;
  left: 20%;
  background-color: #fff;
  -webkit-mask-image: url("../assets/common/img/icon-wave.svg");
          mask-image: url("../assets/common/img/icon-wave.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}

.l-wrapper {
  width: 100%;
  margin: 0 auto;
}

.l-inner {
  width: 90%;
  max-width: 1200px;
  padding: 100px 0 0 0;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) {
  .l-inner {
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner {
    width: calc(100% - 32px);
    margin: 0 16px;
    padding-top: 40px;
  }
}
.l-inner._last {
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .l-inner._last {
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 767px) {
  .l-inner._last {
    padding-bottom: 40px;
  }
}

.l-contact {
  width: 90%;
  text-align: center;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .l-contact {
    width: 90%;
  }
}
.l-contact__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .l-contact__btn {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  .l-contact__btn {
    gap: 20px;
    margin-top: 30px;
  }
}

.l-tb-wrap {
  display: none;
}
@media screen and (max-width: 1100px) {
  .l-tb-wrap {
    display: block;
  }
}

.l-tbp-wrap {
  display: none;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .l-tbp-wrap {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .l-tbp-wrap {
    display: block;
  }
}

.l-tbp-nowrap {
  display: block;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .l-tbp-nowrap {
    display: none;
  }
}

.l-sp-wrap {
  display: none;
}
@media screen and (max-width: 767px) {
  .l-sp-wrap {
    display: block;
  }
}

.l-sp-nowrap {
  display: block;
}
@media screen and (max-width: 767px) {
  .l-sp-nowrap {
    display: none;
  }
}

.l-content-block {
  margin-top: 50px;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .l-content-block {
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .l-content-block {
    margin-top: 24px;
  }
}

.l-breadcrumbs {
  position: relative;
  margin-bottom: 50px;
  padding: 16px 0;
  z-index: 2;
  font-size: smaller;
  font-weight: 500;
  text-align: left;
  background-color: #fff;
  border-top: 1px solid #02105C;
  border-bottom: 1px solid #02105C;
}
@media screen and (max-width: 1100px) {
  .l-breadcrumbs {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 767px) {
  .l-breadcrumbs {
    padding: 8px 0;
  }
}
.l-breadcrumbs a {
  color: #02105C;
}
.l-breadcrumbs a:hover {
  color: #F15A24;
}
.l-breadcrumbs__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-breadcrumbs__inner {
    width: calc(100% - 32px);
  }
}
.l-breadcrumbs__home {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
}
.l-breadcrumbs__home:hover::before {
  background-color: #F15A24;
}
.l-breadcrumbs__home::before {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  margin-left: 8px;
  background-color: #02105C;
  -webkit-mask: url("../assets/common/img/icon-home.svg");
          mask: url("../assets/common/img/icon-home.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}
@media screen and (max-width: 767px) {
  .l-breadcrumbs__home::before {
    width: 1.2rem;
    height: 1.2rem;
  }
}

.l-footer {
  position: relative;
  width: calc(100% - 60px);
  margin: 0 auto 30px auto;
}
@media screen and (max-width: 767px) {
  .l-footer {
    width: calc(100% - 16px);
    margin-bottom: 8px;
  }
}
.l-footer__pic {
  margin: 0 auto 30px auto;
  height: 300px;
  background: no-repeat 50% 100%/100vw;
  background-image: url("../assets/common/img//footer-pic.jpg");
  background-image: url("../assets/common/img//footer-pic.webp");
  background-image: -webkit-image-set(url("../assets/common/img//footer-pic.webp") type("image/webp"), url("../assets/common/img//footer-pic.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/common/img//footer-pic.webp") type("image/webp"), url("../assets/common/img//footer-pic.jpg") type("image/jpeg"));
}
@media screen and (max-width: 767px) {
  .l-footer__pic {
    height: 150px;
    margin-bottom: 8px;
  }
}
.l-footer__info {
  background-color: #F6F6F6;
  padding: 50px 0;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer__info {
    padding: 24px 0;
  }
}
.l-footer__info__logo {
  display: block;
  width: clamp(150px, 10%, 250px);
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__info__logo {
    width: 100px;
  }
}
.l-footer__info__logo img {
  width: 100%;
}
.l-footer__info__nav {
  margin: 30px 0;
}
.l-footer__info__nav__menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-footer__info__nav__menu {
    gap: 16px;
  }
}

.c-btn-reg {
  color: #02105C;
}
.c-btn-reg:hover {
  color: #F15A24;
}

.c-btn-arw {
  display: inline-block;
  position: relative;
  margin-top: 30px;
  padding: 8px 60px 8px 16px;
  color: #fff;
  background-color: #02105C;
}
.c-btn-arw:hover {
  color: #fff;
  background-color: #F15A24;
}
.c-btn-arw:hover::after {
  right: 18px;
}
.c-btn-arw::after {
  content: "";
  position: absolute;
  width: 24px;
  height: 24px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 24px;
  background-color: #fff;
  -webkit-mask-image: url("../assets/common/img/icon-r-arw_r.svg");
          mask-image: url("../assets/common/img/icon-r-arw_r.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}

.c-btn-corp {
  display: inline-block;
  width: 100%;
  padding: 16px 0;
  background-color: #02105C;
  color: #fff;
  text-align: center;
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  line-height: 1.4;
}
.c-btn-corp span {
  display: block;
  font-family: "Barlow", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  font-size: clamp(2.2rem, 2.1vw, 4rem);
}
.c-btn-corp:hover {
  background-color: #F15A24;
  color: #fff;
}

.c-btn-footernav {
  color: #02105C;
}
.c-btn-footernav:hover {
  color: #F15A24;
}

.c-btn-s-contact {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  background-color: #fff;
  color: #02105C;
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  padding: 16px 80px;
  z-index: 2;
}
.c-btn-s-contact:hover {
  color: #fff;
  background-color: #F15A24;
}
.c-btn-s-contact:hover::before {
  background-color: #fff;
}
.c-btn-s-contact::before {
  content: "";
  width: 36px;
  height: auto;
  aspect-ratio: 50/39;
  -webkit-mask-image: url("../assets/common/img/icon-mail.svg");
          mask-image: url("../assets/common/img/icon-mail.svg");
  background-color: #02105C;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}

.c-btn-box {
  padding: 0 16px;
  line-height: 48px;
  height: 48px;
  background-color: #fff;
  border: 1px solid #02105C;
  border-radius: 24px;
  color: #02105C;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}
.c-btn-box:hover {
  color: #fff;
  background-color: #02105C;
}
.c-btn-box:disabled {
  color: #ebebeb;
}
.c-btn-box:disabled:hover {
  color: #ebebeb;
  background-color: #fff;
}

.c-ttl-block {
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  font-family: "Barlow", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #02105C;
}
.c-ttl-block._wh {
  color: #fff;
}

.c-ttl-l {
  font-size: clamp(2.2rem, 2.1vw, 4rem);
  font-weight: 700;
  color: #02105C;
}
.c-ttl-l._mb {
  margin-bottom: 50px;
}
@media screen and (max-width: 1100px) {
  .c-ttl-l._mb {
    margin-bottom: 36px;
  }
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .c-ttl-l._mb {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 767px) {
  .c-ttl-l._mb {
    margin-bottom: 16px;
  }
}
.c-ttl-l._c {
  text-align: center;
}
.c-ttl-l._wh {
  color: #fff;
}

.c-ttl-m {
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  color: #02105C;
}
.c-ttl-m._c {
  text-align: center;
}
.c-ttl-m._mb {
  margin-bottom: 24px;
}
@media screen and (max-width: 767px) {
  .c-ttl-m._mb {
    margin-bottom: 8px;
  }
}

.c-ttl-secttl {
  margin-bottom: 50px;
  font-size: clamp(3.2rem, 3.1vw, 6rem);
  font-family: "Barlow", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  line-height: 1.4;
  color: #02105C;
  text-align: center;
}
.c-ttl-secttl span {
  display: block;
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  font-family: YakuHanJP, "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Meiryo", sans-serif;
}

.c-ttl-pagettl {
  display: block;
  margin: 100px auto;
  font-size: clamp(3.2rem, 3.1vw, 6rem);
  color: #fff;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: center;
  text-shadow: 0 0 5px #000;
}
@media screen and (max-width: 1100px) {
  .c-ttl-pagettl {
    margin: 50px 0;
  }
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .c-ttl-pagettl {
    margin: 36px 0;
  }
}
@media screen and (max-width: 767px) {
  .c-ttl-pagettl {
    margin: 24px 0;
    font-size: 2.4rem;
  }
}

.c-ttl-ub {
  display: block;
  margin-bottom: 36px;
  position: relative;
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  color: #02105C;
}
.c-ttl-ub::after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  bottom: -16px;
  left: calc(50% - 25px);
  background-color: #02105C;
}

.c-ttl-box {
  position: absolute;
  display: inline-block;
  padding: 0 16px;
  color: #fff;
  background: -webkit-gradient(linear, left top, right top, from(#A67432), to(#CEBD87));
  background: linear-gradient(90deg, #A67432 0%, #CEBD87 100%);
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  -webkit-transform: translateY(-80px);
          transform: translateY(-80px);
}
@media screen and (max-width: 767px) {
  .c-ttl-box {
    -webkit-transform: translateY(-54px);
            transform: translateY(-54px);
    z-index: 3;
  }
}

.c-ttl-pp {
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  color: #02105C;
}

.c-news {
  width: 100%;
}

.c-ctrl-nav {
  margin-top: 80px;
}
@media screen and (max-width: 1100px) {
  .c-ctrl-nav {
    margin-top: 50px;
  }
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .c-ctrl-nav {
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .c-ctrl-nav {
    margin-top: 24px;
  }
}

.c-ctrl-nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-ctrl-nav-links .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-ctrl-nav-arw {
  width: 12px;
  height: auto;
}

.c-ctrl-back {
  color: #02105C;
}
.c-ctrl-back:hover {
  color: #F15A24;
}

.c-tbl {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}
.c-tbl tr th, .c-tbl tr td {
  padding: 16px;
  border-top: 1px solid #02105C;
  border-bottom: 1px solid #02105C;
}
.c-tbl tr:first-of-type th, .c-tbl tr:first-of-type td {
  border-top: none;
}

.c-contact {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.c-contact__note {
  text-align: right;
}
.c-contact__note span {
  color: #F15A24;
}
.c-contact__form {
  padding-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid #999;
}
.c-contact__form__ttl {
  margin-bottom: 30px;
  font-size: clamp(2rem, 1.68vw, 3.2rem);
}
.c-contact__form__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
  margin-bottom: 30px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-contact__form__row {
    gap: 0;
    margin-bottom: 16px;
  }
}
.c-contact__form__row:last-of-type {
  margin-bottom: 0;
}
.c-contact__form__row p.head {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .c-contact__form__row p.head {
    width: 100%;
  }
}
.c-contact__form__row p:nth-of-type(2) {
  width: calc(70% - 30px);
}
@media screen and (max-width: 767px) {
  .c-contact__form__row p:nth-of-type(2) {
    width: 100%;
  }
}
.c-contact__form__row p.must {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 6px;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
}
.c-contact__form__row p.must::after {
  content: "*";
  font-size: smaller;
  color: #F15A24;
}
.c-contact__form__row input {
  width: 100%;
  border: 1px solid #02105C;
}
.c-contact__form__row textarea {
  width: 100%;
  border: 1px solid #02105C;
}
.c-contact__form__row__radio {
  margin-bottom: 30px;
}
.c-contact__form__pp {
  margin-top: 16px;
  margin-bottom: 30px;
  text-align: center;
  padding: 20px;
  background-color: #fff;
  display: inline-block;
}
@media screen and (max-width: 767px) {
  .c-contact__form__pp {
    margin-bottom: 16px;
  }
}
.c-contact__form__pp__box {
  text-align: center;
}
.c-contact__form__pp__ttl {
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  color: #02105C;
  margin-bottom: 16px;
}
.c-contact__form__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-contact__form__submit p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-contact__content {
  margin-top: 50px;
}
.c-contact__content:first-of-type {
  margin-top: 0;
}
.c-contact__content._tel {
  padding-bottom: 30px;
  border-bottom: 1px solid #999;
}
.c-contact__content__tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  color: #F15A24;
  font-size: clamp(2.4rem, 3.2vw, 4rem);
}
@media screen and (max-width: 767px) {
  .c-contact__content__tel {
    font-size: 2.8rem;
  }
}
.c-contact__content__tel:hover {
  color: #02105C;
}
.c-contact__content__tel::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("icon-mail.png") no-repeat 50% 50%/contain;
}

.p-top__hero {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  height: 110dvh;
  min-height: 800px;
  max-height: 1200px;
  padding-top: 200px;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-top__hero {
    height: 700px;
    min-height: initial;
    padding-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__hero {
    height: 548px;
    padding-top: 74px;
  }
}
.p-top__hero__logo {
  position: absolute;
  width: 35%;
  bottom: 30%;
  right: 5%;
  opacity: 0.4;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-top__hero__logo {
    bottom: 15%;
  }
}
.p-top__hero__copy {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  gap: 30px;
  top: 0;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-top__hero__copy {
    gap: 16px;
  }
}
.p-top__hero__copy p {
  font-size: clamp(2.2rem, 2.1vw, 4rem);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  letter-spacing: 0.3rem;
}
.p-top__hero__copy p span {
  position: relative;
  display: inline-block;
  padding: 20px 0;
}
.p-top__hero__copy p span::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background-color: rgba(255, 255, 255, 0.6);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: -1;
}
.p-top__hero__video {
  width: 100%;
  max-width: initial;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top__hero__video__wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 1;
}
.p-top__hero__nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-60%);
          transform: translateY(-60%);
  left: 10%;
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .p-top__hero__nav {
    left: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-top__hero__nav {
    display: none;
  }
}
.p-top__hero__nav__compass {
  position: absolute;
  max-width: initial;
  height: 120%;
  top: -20%;
  left: -120%;
  opacity: 0.4;
  z-index: -1;
  -webkit-transition: all 1s ease;
  transition: all 1s ease;
}
.p-top__hero__nav__compass._home {
  -webkit-transform: rotate(-405deg);
          transform: rotate(-405deg);
}
.p-top__hero__nav__compass._about {
  -webkit-transform: rotate(-385deg);
          transform: rotate(-385deg);
}
.p-top__hero__nav__compass._corp {
  -webkit-transform: rotate(385deg);
          transform: rotate(385deg);
}
.p-top__hero__nav__compass._inq {
  -webkit-transform: rotate(405deg);
          transform: rotate(405deg);
}
.p-top__hero__nav__menu {
  display: grid;
  grid-template-rows: repeat(5, 1fr);
  gap: 46px 0;
}
.p-top__hero__nav__menu__about {
  margin-left: 100px;
}
.p-top__hero__nav__menu__service {
  margin-left: 100px;
}
.p-top__hero__nav__menu__corp {
  margin-left: 50px;
}
.p-top__hero__nav__menu li {
  cursor: pointer;
}
.p-top__hero__nav__menu li a {
  display: inline-block;
  padding: 4px 16px;
  background-color: rgba(255, 255, 255, 0.6);
}
.p-top__hero__nav__menu li a:hover {
  background-color: #02105C;
  color: #fff;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
}
.p-top__hero__wave {
  position: relative;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
}
.p-top__hero__wave__box {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  z-index: 2;
}
.p-top__hero__wave__box._upper {
  z-index: 2;
  bottom: -10px;
}
.p-top__hero__wave__box._upper .p-top__hero__wave__item {
  -webkit-animation: wave_l 36s linear infinite;
          animation: wave_l 36s linear infinite;
}
.p-top__hero__wave__box._lower {
  z-index: 1;
  right: 0;
  bottom: 10px;
}
.p-top__hero__wave__box._lower .p-top__hero__wave__item {
  -webkit-animation: wave_l 24s linear infinite;
          animation: wave_l 24s linear infinite;
}
.p-top__hero__wave__item {
  width: 100%;
  max-width: initial;
}
.p-top__intro {
  position: relative;
  padding: 0 30px 30px 30px;
  z-index: 2;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__intro {
    padding: 0 8px 8px 8px;
  }
}
.p-top__intro__catch {
  font-size: clamp(5rem, 7vw, 14rem);
  font-family: "Barlow", "Helvetica Neue", "Arial", sans-serif;
  font-weight: 700;
  color: #02105C;
  line-height: 1;
  text-align: center;
}
.p-top__intro__content {
  position: relative;
  width: 100%;
  margin-top: 100px;
  background: no-repeat 50% 50%/cover;
  background-image: url("../assets/top/img//top-intro-bg.webp");
  background-image: url("../assets/top/img//top-intro-bg.jpg");
  background-image: -webkit-image-set(url("../assets/top/img//top-intro-bg.webp") type("image/webp"), url("../assets/top/img//top-intro-bg.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/top/img//top-intro-bg.webp") type("image/webp"), url("../assets/top/img//top-intro-bg.jpg") type("image/jpeg"));
}
@media screen and (max-width: 1100px) {
  .p-top__intro__content {
    margin-top: 50px;
  }
}
.p-top__intro__content::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #02105C;
  opacity: 0.5;
  z-index: 1;
}
.p-top__intro__content__inner {
  position: relative;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 0 50px;
}
@media screen and (max-width: 767px) {
  .p-top__intro__content__inner {
    display: block;
  }
}
.p-top__intro__content__copy {
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  color: #fff;
}
.p-top__intro__content__copy span {
  display: block;
}
.p-top__intro__content__desc {
  color: #fff;
  margin-top: 30px;
}
.p-top__intro__content__desc span {
  display: block;
}
.p-top__intro__content__pic {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 50px 0;
}
@media screen and (max-width: 767px) {
  .p-top__intro__content__pic {
    gap: 24px;
    margin-top: 30px;
  }
}
.p-top__intro__content__pic__img {
  width: 100%;
  background-color: #F6F6F6;
}
@media screen and (max-width: 767px) {
  .p-top__intro__content__pic__img {
    aspect-ratio: 4/3;
  }
}
.p-top__service {
  position: relative;
  padding: 0 30px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  .p-top__service {
    padding: 0 8px;
  }
}
.p-top__service__inner {
  position: relative;
  background-color: #F5F2E4;
}
.p-top__service__inner::before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  left: 0;
  background: url("../assets/top/img/service-wave.png") repeat-y 100% 0%/300px;
  opacity: 0.3;
}
@media screen and (max-width: 1100px) {
  .p-top__service__inner::before {
    width: 15%;
    background-size: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__service__inner::before {
    background-size: 100px;
  }
}
.p-top__service__inner::after {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  top: 0;
  right: 0;
  background: url("../assets/top/img/service-wave.png") repeat-y 100% 0%/300px;
  opacity: 0.3;
}
@media screen and (max-width: 1100px) {
  .p-top__service__inner::after {
    width: 15%;
    background-size: 150px;
  }
}
@media screen and (max-width: 767px) {
  .p-top__service__inner::after {
    background-size: 100px;
  }
}
.p-top__service__content {
  display: grid;
  grid-template-columns: 3fr 1fr;
  gap: 50px 0;
  margin-top: 50px;
}
.p-top__service__content:first-of-type {
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  .p-top__service__content {
    display: block;
    margin-top: 30px;
  }
}
.p-top__service__content__wrapper {
  position: relative;
  padding-bottom: 100px;
  background: url("../assets/common/img/grid.png") repeat 50% 50%/800px;
}
@media screen and (max-width: 767px) {
  .p-top__service__content__wrapper {
    background-size: 400px;
    padding-bottom: 40px;
  }
}
.p-top__service__content__pic {
  width: 100%;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 767px) {
  .p-top__service__content__pic {
    width: 80%;
    margin-top: 30px;
  }
}
.p-top__service__content__pic img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.p-top__service__slider {
  width: 100vw;
  overflow: hidden;
  margin-top: 100px;
  margin-left: -30px;
}
@media screen and (max-width: 767px) {
  .p-top__service__slider {
    margin-top: 30px;
    margin-left: -16px;
  }
}
.p-top__service__slider__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  gap: 50px;
}
@media screen and (max-width: 767px) {
  .p-top__service__slider__wrapper {
    gap: 16px;
  }
}
.p-top__service__slider__slide {
  width: 30%;
  aspect-ratio: 3/2;
  background-color: #999;
}
.p-top__service__slider__slide:nth-of-type(even) {
  margin-top: 50px;
}
.p-top__block {
  position: relative;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 0 30px;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-top__block {
    grid-template-columns: 30px 1fr;
    gap: 0 16px;
  }
}

.p-service__pagetop {
  padding: 200px 0 0 0;
  background: no-repeat 50% 100%/cover;
}
@media screen and (max-width: 1100px) {
  .p-service__pagetop {
    padding-top: 100px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__pagetop {
    padding-top: 50px;
  }
}
.p-service__pagetop._sankotsu {
  background-image: url("../assets/service/img//sankotsu-top.jpg");
  background-image: url("../assets/service/img//sankotsu-top.webp");
  background-image: -webkit-image-set(url("../assets/service/img//sankotsu-top.webp") type("image/webp"), url("../assets/service/img//sankotsu-top.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/service/img//sankotsu-top.webp") type("image/webp"), url("../assets/service/img//sankotsu-top.jpg") type("image/jpeg"));
}
.p-service__pagetop__copy {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-size: clamp(2.2rem, 2.1vw, 4rem);
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
}
.p-service__sankotsu {
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}
.p-service__sankotsu__intro {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #999;
}
.p-service__sankotsu__intro__wrapper {
  padding: 100px 0 200px 0;
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__intro__wrapper {
    padding: 50px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service__sankotsu__intro__wrapper {
    padding: 0;
  }
}
.p-service__sankotsu__intro::before {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 1/1;
  left: -15%;
  top: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background: linear-gradient(123deg, #CE96EA 1.37%, #0CB7CA 103.48%);
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__intro::before {
    width: 20%;
    left: -10%;
  }
}
.p-service__sankotsu__intro::after {
  content: "";
  position: absolute;
  width: 20%;
  aspect-ratio: 1/1;
  right: -10%;
  bottom: 0;
  -webkit-transform: translateY(50%);
          transform: translateY(50%);
  background: linear-gradient(123deg, #CE96EA 1.37%, #0CB7CA 103.48%);
  z-index: -1;
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__intro::after {
    width: 15%;
    right: -7.5%;
  }
}
.p-service__sankotsu__intro__pic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 70px;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-service__sankotsu__intro__pic {
    margin-top: 40px;
    grid-template-columns: repeat(2, 1fr);
  }
}
.p-service__sankotsu__plan {
  text-align: center;
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__plan {
    padding-bottom: 50px;
  }
}
.p-service__sankotsu__plan__copy {
  line-height: 3;
  padding-bottom: 100px;
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__plan__copy {
    padding-bottom: 50px;
  }
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-service__sankotsu__plan__copy {
    padding-bottom: 36px;
  }
}
.p-service__sankotsu__plan__content__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: subgrid;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-service__sankotsu__plan__content__list {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .p-service__sankotsu__plan__content__list {
    gap: 24px;
    margin-top: 16px;
  }
}
.p-service__sankotsu__plan__content__list__item {
  padding: 24px;
  border: 1px solid #02105C;
}
@media screen and (max-width: 767px) {
  .p-service__sankotsu__plan__content__list__item {
    padding: 16px;
  }
}
.p-service__sankotsu__plan__content__list__item__price {
  font-size: clamp(2.2rem, 2.1vw, 4rem);
  color: #02105C;
}
.p-service__sankotsu__plan__content__list__item__price span {
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
}
.p-service__sankotsu__plan__content__list__item__info {
  margin-top: 24px;
  padding: 16px;
  background-color: #F5F2E4;
  font-size: clamp(1.2rem, 1.1vw, 1.6rem);
  text-align: left;
}
.p-service__sankotsu__note__about {
  padding: 100px 0 250px 0;
  background: no-repeat 50% 100%/cover;
  background-image: url("../assets/service/img//sankotsu-about.jpg");
  background-image: url("../assets/service/img//sankotsu-about.webp");
  background-image: -webkit-image-set(url("../assets/service/img//sankotsu-about.webp") type("image/webp"), url("../assets/service/img//sankotsu-about.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/service/img//sankotsu-about.webp") type("image/webp"), url("../assets/service/img//sankotsu-about.jpg") type("image/jpeg"));
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__note__about {
    padding: 50px 0 150px 0;
  }
}
.p-service__sankotsu__note__about__usage {
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 50px;
  background-color: #F5F2E4;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-service__sankotsu__note__about__usage {
    width: 80%;
    padding: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__sankotsu__note__about__usage {
    width: 90%;
    padding: 16px;
  }
}
.p-service__sankotsu__note__about__usage__bunkotsu {
  position: relative;
  margin-top: 100px;
}
.p-service__sankotsu__note__about__usage__bunkotsu::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  top: -50px;
  background-color: #02105C;
}
.p-service__sankotsu__note__about__flow {
  position: relative;
  margin-bottom: 100px;
  padding-bottom: 100px;
  background-color: #02105C;
}
@media screen and (max-width: 767px) {
  .p-service__sankotsu__note__about__flow {
    margin-bottom: 50px;
  }
}
.p-service__sankotsu__note__about__flow::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 150px;
  top: -150px;
  left: 0;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 100%);
          clip-path: polygon(0 0, 0% 100%, 100% 100%);
  background-color: #02105C;
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__note__about__flow::before {
    height: 100px;
    top: -100px;
  }
}
.p-service__sankotsu__note__about__flow::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 150px;
  bottom: -150px;
  left: 0;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  background-color: #02105C;
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__note__about__flow::after {
    height: 100px;
    bottom: -100px;
  }
}
@media screen and (max-width: 767px) {
  .p-service__sankotsu__note__about__flow::after {
    height: 50px;
    bottom: -50px;
  }
}
.p-service__sankotsu__note__about__flow__inner {
  position: relative;
}
.p-service__sankotsu__note__about__flow__inner::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: calc(100% + 250px);
  top: 0;
  left: 0;
  -webkit-clip-path: polygon(0 50%, 100% 100%, 100% 0);
          clip-path: polygon(0 50%, 100% 100%, 100% 0);
  z-index: 1;
  background: no-repeat 50% 100%/cover;
  background-image: url("../assets/service/img//sankotsu-flow-bg.jpg");
  background-image: url("../assets/service/img//sankotsu-flow-bg.webp");
  background-image: -webkit-image-set(url("../assets/service/img//sankotsu-flow-bg.webp") type("image/webp"), url("../assets/service/img//sankotsu-flow-bg.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/service/img//sankotsu-flow-bg.webp") type("image/webp"), url("../assets/service/img//sankotsu-flow-bg.jpg") type("image/jpeg"));
}
@media screen and (max-width: 1100px) {
  .p-service__sankotsu__note__about__flow__inner::after {
    height: calc(100% + 200px);
  }
}
@media screen and (max-width: 767px) {
  .p-service__sankotsu__note__about__flow__inner::after {
    height: calc(100% + 150px);
  }
}
.p-service__sankotsu__note__about__flow__content {
  position: relative;
  margin-top: 100px;
  z-index: 2;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-service__sankotsu__note__about__flow__content {
    margin-top: 50px;
  }
}
.p-service__sankotsu__note__about__flow__content__item {
  position: relative;
  background-color: #fff;
  margin-top: 100px;
  padding: 50px 30px 30px 30px;
}
@media screen and (max-width: 767px) {
  .p-service__sankotsu__note__about__flow__content__item {
    margin-top: 60px;
    padding: 36px 16px 16px 16px;
  }
}
.p-service__sankotsu__note__about__flow__content__item::after {
  content: "";
  position: absolute;
  display: block;
  width: 2px;
  height: 100px;
  bottom: 100%;
  left: 50%;
  background-color: #fff;
  z-index: 2;
}
.p-service__sankotsu__note__about__flow__content__item:first-of-type::after {
  display: none;
}
.p-service__sankotsu__aftercare {
  text-align: center;
}
.p-service__contact {
  position: relative;
  padding: 200px 0;
  text-align: center;
  background: no-repeat 50% 100%/cover;
}
@media screen and (max-width: 1100px) {
  .p-service__contact {
    padding: 100px 0;
  }
}
@media screen and (max-width: 767px) {
  .p-service__contact {
    padding: 80px 0;
  }
}
.p-service__contact::before {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: #02105C;
  opacity: 0.6;
}
.p-service__contact__desc {
  position: relative;
  margin-bottom: 36px;
  font-size: clamp(1.8rem, 1.5vw, 2.8rem);
  color: #fff;
  z-index: 2;
}
.p-service__contact._sankotsu {
  background-image: url("../assets/service/img//sankotsu-contact.jpg");
  background-image: url("../assets/service/img//sankotsu-contact.webp");
  background-image: -webkit-image-set(url("../assets/service/img//sankotsu-contact.webp") type("image/webp"), url("../assets/service/img//sankotsu-contact.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/service/img//sankotsu-contact.webp") type("image/webp"), url("../assets/service/img//sankotsu-contact.jpg") type("image/jpeg"));
}

.p-corp__pagetop {
  padding: 100px 0 0 0;
  background: no-repeat 50% 100%/cover;
  background-image: url("../assets/corp/img/corp-top.jpg");
  background-image: url("../assets/corp/img/corp-top.webp");
  background-image: -webkit-image-set(url("../assets/corp/img/corp-top.webp") type("image/webp"), url("../assets/corp/img/corp-top.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/corp/img/corp-top.webp") type("image/webp"), url("../assets/corp/img/corp-top.jpg") type("image/jpeg"));
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-corp__pagetop {
    background-image: url("../assets/corp/img/corp-top-sp.jpg");
    background-image: url("../assets/corp/img/corp-top-sp.webp");
    background-image: -webkit-image-set(url("../assets/corp/img/corp-top-sp.webp") type("image/webp"), url("../assets/corp/img/corp-top-sp.jpg") type("image/jpeg"));
    background-image: image-set(url("../assets/corp/img/corp-top-sp.webp") type("image/webp"), url("../assets/corp/img/corp-top-sp.jpg") type("image/jpeg"));
  }
}
.p-corp__content {
  text-align: center;
  margin-top: 100px;
}
@media screen and (max-width: 1100px) {
  .p-corp__content {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  .p-corp__content {
    margin-top: 24px;
  }
}
.p-corp__content:first-of-type {
  margin-top: 0;
}
.p-corp__ship {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 50px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 60%;
  max-width: 1000px;
  margin: 50px auto;
}
@media screen and (max-width: 767px) {
  .p-corp__ship {
    width: 100%;
    margin: 30px auto;
  }
}
.p-corp__ship picture {
  width: 40%;
  height: auto;
}
.p-corp__ship picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.js-corp-tbl {
  margin-top: 30px;
  overflow: hidden;
  max-height: 0;
  -webkit-transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
  transition: all 0.2s cubic-bezier(0, 0.51, 1, 0.63);
}
.js-corp-tbl._is-open {
  max-height: 2000px;
}

.p-inq__pagetop {
  padding: 100px 0 0 0;
  background: no-repeat 50% 100%/cover;
  background-image: url("../assets/inq/img/inq-top.jpg");
  background-image: url("../assets/inq/img/inq-top.webp");
  background-image: -webkit-image-set(url("../assets/inq/img/inq-top.webp") type("image/webp"), url("../assets/inq/img/inq-top.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/inq/img/inq-top.webp") type("image/webp"), url("../assets/inq/img/inq-top.jpg") type("image/jpeg"));
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-inq__pagetop {
    background-image: url("../assets/inq/img/inq-top-sp.jpg");
    background-image: url("../assets/inq/img/inq-top-sp.webp");
    background-image: -webkit-image-set(url("../assets/inq/img/inq-top-sp.webp") type("image/webp"), url("../assets/inq/img/inq-top-sp.jpg") type("image/jpeg"));
    background-image: image-set(url("../assets/inq/img/inq-top-sp.webp") type("image/webp"), url("../assets/inq/img/inq-top-sp.jpg") type("image/jpeg"));
  }
}
.p-inq__content {
  text-align: center;
}
.p-inq__content__inner {
  padding: 50px;
  background-color: #F5F2E4;
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-inq__content__inner {
    padding: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-inq__content__inner {
    padding: 16px;
  }
}
.p-inq__form {
  text-align: left;
  margin-top: 50px;
}
@media screen and (max-width: 1100px) {
  .p-inq__form {
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .p-inq__form {
    margin-top: 24px;
  }
}

.p-pp {
  text-align: left;
}
.p-pp__pagetop {
  padding: 100px 0 0 0;
  background: no-repeat 50% 100%/cover;
  background-image: url("../assets/inq/img/inq-pp-top.jpg");
  background-image: url("../assets/inq/img/inq-pp-top.webp");
  background-image: -webkit-image-set(url("../assets/inq/img/inq-pp-top.webp") type("image/webp"), url("../assets/inq/img/inq-pp-top.jpg") type("image/jpeg"));
  background-image: image-set(url("../assets/inq/img/inq-pp-top.webp") type("image/webp"), url("../assets/inq/img/inq-pp-top.jpg") type("image/jpeg"));
}
@media screen and (orientation: portrait) and (max-width: 1100px) {
  .p-pp__pagetop {
    background-image: url("../assets/inq/img/inq-pp-top-sp.jpg");
    background-image: url("../assets/inq/img/inq-pp-top-sp.webp");
    background-image: -webkit-image-set(url("../assets/inq/img/inq-pp-top-sp.webp") type("image/webp"), url("../assets/inq/img/inq-pp-top-sp.jpg") type("image/jpeg"));
    background-image: image-set(url("../assets/inq/img/inq-pp-top-sp.webp") type("image/webp"), url("../assets/inq/img/inq-pp-top-sp.jpg") type("image/jpeg"));
  }
}

.u-m-b_s {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .u-m-b_s {
    margin-bottom: 10px;
  }
}

.u-m-b_ss {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .u-m-b_ss {
    margin-bottom: 8px;
  }
}

.u-m-b_m {
  margin-bottom: 70px;
}
@media screen and (max-width: 767px) {
  .u-m-b_m {
    margin-bottom: 30px;
  }
}

.u-m-b_l {
  margin-bottom: 100px;
}

.u-t-a_r {
  text-align: right;
}

.u-t-a_c {
  text-align: center;
}

.u-t-a_l {
  text-align: left;
}/*# sourceMappingURL=style.css.map */