@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-weight: 700;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Light.woff") format("woff");
  font-weight: 300;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Medium.woff") format("woff");
  font-weight: 500;
}
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-weight: 400;
}
@font-face {
  font-family: "osaka";
  src: url("../fonts/osaka.woff") format("woff");
  font-weight: 400;
}
* {
  font-family: "Noto Sans JP", serif !important;
}

.l-nav {
  background-color: #fff;
  width: 100%;
  height: 120px;
  display: grid;
  grid-template-rows: 30px 1fr;
  grid-template-columns: 260px 1fr 1fr;
  grid-template-areas: "logo lang lang " ".  links links";
  padding: 20px 60px;
  gap: 10px 50px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (max-width: 1279.8px) {
  .l-nav {
    grid-template-rows: 30px 1fr;
    padding: 20px 30px;
    gap: 10px 30px;
  }
}
@media (max-width: 1023.8px) {
  .l-nav {
    grid-template-columns: 10em 1fr 1fr;
  }
}
@media (max-width: 767.8px) {
  .l-nav {
    height: 70px;
    grid-template-rows: 30px;
    grid-template-areas: "logo lang lang";
  }
}
.l-nav .nav-logo {
  grid-area: logo;
}
.l-nav .nav-logo img {
  width: 100%;
  margin: 0 auto;
  object-fit: contain;
  pointer-events: none;
}
.l-nav .nav-logo a {
  cursor: pointer;
  display: block;
}
.l-nav .nav-links {
  grid-area: links;
  display: grid;
  grid-template-columns: 1fr 330px;
  position: relative;
}
@media (max-width: 1279.8px) {
  .l-nav .nav-links {
    grid-template-columns: 1fr 15em;
  }
}
@media (max-width: 1023.8px) {
  .l-nav .nav-links {
    justify-content: end;
  }
}
@media (max-width: 767.8px) {
  .l-nav .nav-links {
    display: none;
  }
}
.l-nav .nav-links .link-texts {
  justify-content: end;
  list-style: none;
  padding-right: 30px;
  display: flex;
  align-items: center;
  gap: 30px;
}
@media (max-width: 1023.8px) {
  .l-nav .nav-links .link-texts {
    gap: 15px;
    padding-right: 15px;
  }
}
.l-nav .nav-links .link-texts li a {
  word-break: keep-all;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  color: #17769E;
  text-decoration: none;
  transition: 0.8s;
}
.l-nav .nav-links .link-texts li a:hover {
  opacity: 0.5;
}
.l-nav .nav-links .link-texts li a.break {
  opacity: 0.5;
  transition: none;
}
.l-nav .nav-links .link-texts li:has(.break) {
  border-bottom: solid 3px #17769E;
}
.l-nav .nav-links .link-btns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5px;
}
@media (max-width: 1279.8px) {
  .l-nav .nav-links .link-btns {
    padding-top: 0.3em;
  }
}
@media (max-width: 767.8px) {
  .l-nav .nav-links .link-btns {
    padding-top: unset;
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.l-nav .nav-lang {
  grid-area: lang;
  display: flex;
  justify-content: end;
  text-align: center;
}
@media (max-width: 767.8px) {
  .l-nav .nav-lang {
    display: none;
  }
}
.l-nav .nav-lang a {
  text-decoration: none;
  font-size: 12px;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  line-height: 30px;
  width: 80px;
}
.l-nav .nav-lang .switch {
  background-color: #23333C;
  color: #fff;
}
.l-nav .nav-lang .lang-sw {
  background-color: rgba(35, 51, 60, 0.1);
  color: #23333C;
  cursor: pointer;
  transition: 0.3s;
}
.l-nav .nav-lang .lang-sw:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

.nav-ham {
  display: none;
}
@media (max-width: 767.8px) {
  .nav-ham {
    display: block;
    position: absolute;
    inset: 10px 10px auto auto;
    width: 50px;
    height: 50px;
  }
}
.nav-ham span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #17769E;
  width: 45%;
}
.nav-ham span:nth-of-type(1) {
  top: 15px;
}
.nav-ham span:nth-of-type(2) {
  top: 23px;
}
.nav-ham span:nth-of-type(3) {
  top: 31px;
}
.nav-ham.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.nav-ham.active span:nth-of-type(2) {
  opacity: 0;
}
.nav-ham.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.nav-menu {
  display: none;
}
.nav-menu.active {
  display: block;
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  padding: 50px;
}
.nav-menu.active .wrapper {
  width: 100%;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-menu.active .nav-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.nav-menu.active .nav-links .link-texts {
  flex-direction: column;
  gap: 20px;
  font-size: 20px;
}
.nav-menu.active .nav-lang {
  display: flex;
  gap: 20px;
  width: 150px;
  margin: 0 auto;
}

.l-header {
  background-image: url("../img/header/key_visual.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: 60%;
  position: relative;
  height: calc(100vh - 120px);
}
@media (max-width: 1023.8px) {
  .l-header {
    background-position-x: 100%;
    height: calc(60lvh - 70px);
  }
}
@media (max-width: 767.8px) {
  .l-header {
    background-image: url("../img/header/key_visual_sp.jpg");
  }
}
.l-header--orange, .l-header--white, .l-header--blue {
  background-image: url("../img/header/key_visual.jpg");
  background-size: cover;
  background-position-y: 55%;
  background-repeat: no-repeat;
  position: relative;
  width: 100%;
  aspect-ratio: 16/2.5;
  display: grid;
  place-content: center;
}
@media (max-width: 767.8px) {
  .l-header--orange, .l-header--white, .l-header--blue {
    aspect-ratio: 16/3.5;
  }
}
.l-header--orange *, .l-header--white *, .l-header--blue * {
  color: #fff;
  text-align: center;
  font-family: "Noto Sans JP", serif;
}
.l-header--orange h1, .l-header--white h1, .l-header--blue h1 {
  position: relative;
  font-weight: 500;
  font-size: clamp(3.125rem, 2.292rem + 1.11vw, 4.375rem);
}
@media (max-width: 1023.8px) {
  .l-header--orange h1, .l-header--white h1, .l-header--blue h1 {
    font-size: clamp(2.5rem, 0.618rem + 3.92vw, 3.125rem);
  }
}
@media (max-width: 767.8px) {
  .l-header--orange h1, .l-header--white h1, .l-header--blue h1 {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
  }
}
.l-header--orange .second, .l-header--white .second, .l-header--blue .second {
  display: none;
}
.l-header--orange .third, .l-header--white .third, .l-header--blue .third {
  display: none;
}
.l-header--orange h3, .l-header--white h3, .l-header--blue h3 {
  position: relative;
  font-weight: 400;
  padding-top: 0.1em;
  font-size: clamp(1.25rem, -0.417rem + 2.22vw, 3.75rem);
}
@media (max-width: 767.8px) {
  .l-header--orange h3, .l-header--white h3, .l-header--blue h3 {
    font-size: clamp(1.125rem, 4.8vw, 1.5rem);
    padding-top: unset;
  }
}
.l-header--orange .wrapper, .l-header--white .wrapper, .l-header--blue .wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
}
.l-header--white .wrapper {
  background-color: rgba(255, 255, 255, 0.7);
}
.l-header--white * {
  color: #17769E;
}
.l-header--orange .wrapper {
  background-color: rgba(255, 146, 29, 0.7);
}
.l-header--blue .wrapper {
  background-color: rgba(23, 118, 158, 0.7);
}
.l-header .top-texts {
  width: 28%;
  min-width: 440px;
  position: absolute;
  top: 40%;
  right: 50%;
  transform: translateY(-50%);
}
@media (max-width: 1023.8px) {
  .l-header .top-texts {
    top: 40%;
    right: unset;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
@media (max-width: 767.8px) {
  .l-header .top-texts {
    width: 100%;
    max-width: 450px;
    padding: 1.5em;
    min-width: unset;
    top: 40%;
  }
}
.l-header .top-texts .inner {
  position: relative;
  text-align: center;
  color: #fff;
}
.l-header .top-texts .sub_headline {
  font-size: clamp(1.25rem, 0.938rem + 0.5vw, 1.875rem);
  display: inline-block;
  font-weight: 500;
  letter-spacing: 0.3em;
  width: 100%;
  position: relative;
}
@media (max-width: 767.8px) {
  .l-header .top-texts .sub_headline {
    font-size: clamp(1rem, 0.821rem + 0.89vw, 1.25rem);
  }
}
.l-header .top-texts .sub_headline::before, .l-header .top-texts .sub_headline::after {
  content: "";
  display: inline-block;
  position: relative;
  width: 100%;
  border-bottom: 2px solid #fff;
}
.l-header .top-texts .sub_headline::before {
  bottom: -0.4em;
}
.l-header .top-texts .sub_headline::after {
  top: -1.1em;
}
.l-header .top-texts h1 {
  font-size: clamp(3.125rem, 2.031rem + 1.75vw, 5.313rem);
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.2;
  margin-top: -20px;
}
.l-header .top-texts h1.en {
  letter-spacing: 0.1em;
  font-size: clamp(2.188rem, 1.702rem + 0.76vw, 3.125rem);
}
@media (max-width: 767.8px) {
  .l-header .top-texts h1.en {
    font-size: clamp(1.688rem, 1.24rem + 2.24vw, 2.313rem);
  }
}
.l-header .top-texts h1.en span {
  font-size: clamp(3.75rem, 2.778rem + 1.52vw, 5.625rem);
}
@media (max-width: 767.8px) {
  .l-header .top-texts h1.en span {
    font-size: clamp(4.375rem, 3.033rem + 6.71vw, 6.25rem);
  }
}
@media (max-width: 767.8px) {
  .l-header .top-texts h1 {
    font-size: clamp(2.188rem, 1.516rem + 3.36vw, 3.125rem);
  }
}
.l-header .top-texts h1 span {
  font-size: clamp(3.438rem, 1.287rem + 2.65vw, 6.25rem);
  letter-spacing: 0.01em;
}
@media (max-width: 767.8px) {
  .l-header .top-texts h1 span {
    font-size: clamp(2.188rem, 1.516rem + 3.36vw, 3.125rem);
  }
}

.l-footer {
  background-color: #17769E;
  padding: 10px 50px;
}
@media (max-width: 767.8px) {
  .l-footer {
    padding: 0.5em 1.5em;
  }
}
.l-footer.front-page {
  margin-bottom: 140px;
}
@media (max-width: 767.8px) {
  .l-footer.front-page {
    margin-bottom: 120px;
  }
}
.l-footer * {
  color: #fff;
  font-family: "Noto Sans JP", serif;
  font-weight: 400;
  font-size: 12px;
  text-align: center;
}
@media (max-width: 1023.8px) {
  .l-footer * {
    font-size: 11px;
  }
}
.l-footer .inner {
  display: grid;
  grid-template-columns: 1fr 3fr 1fr;
  max-width: 1220px;
  margin: 0 auto;
}
@media (max-width: 767.8px) {
  .l-footer .inner {
    display: flex;
    flex-direction: column;
  }
}
.l-footer .inner .link a {
  text-decoration: none;
  transition: 0.5s;
}
.l-footer .inner .link a:hover {
  opacity: 0.8;
}
.l-footer .inner .copyright {
  white-space: nowrap;
}
@media (max-width: 767.8px) {
  .l-footer .inner .copyright > small {
    font-size: 8px !important;
  }
}

.l-aside {
  width: 100%;
  height: 140px;
  background-color: #E2F3FF;
  bottom: 0;
  z-index: 100;
}
@media (max-width: 767.8px) {
  .l-aside {
    height: 120px;
  }
}
.l-aside .wrapper {
  display: flex;
  justify-content: center;
}
.l-aside h2 {
  display: inline-block;
  position: relative;
  font-family: "Noto Sans JP", serif;
  font-size: 24px;
  font-weight: 500;
  color: #17769E;
  text-align: center;
  padding: 20px 0 10px;
}
@media (max-width: 767.8px) {
  .l-aside h2 {
    font-size: clamp(1rem, 0.642rem + 1.79vw, 1.5rem);
  }
}
.l-aside h2::after, .l-aside h2::before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 30px;
  background-color: #17769E;
  position: absolute;
  bottom: 13px;
}
@media (max-width: 767.8px) {
  .l-aside h2::after, .l-aside h2::before {
    width: 0.13em;
    height: 1em;
  }
}
.l-aside h2::after {
  transform: rotate(30deg);
  right: -20px;
}
.l-aside h2::before {
  transform: rotate(-30deg);
  left: -20px;
}
.l-aside .inner {
  width: 500px;
  margin: 0 auto;
}
@media (max-width: 767.8px) {
  .l-aside .inner {
    width: 100%;
    padding: 0 1em;
  }
}

.l-main {
  padding: 30px;
  margin: 0 auto;
}
.l-main--p-ship {
  background: #E2F3FF;
}

.l-inner--narrow {
  width: 980px !important;
}
@media (max-width: 1023.8px) {
  .l-inner--narrow {
    width: 100% !important;
    padding: 0 30px;
  }
}
@media (max-width: 767.8px) {
  .l-inner--narrow {
    padding: 0 20px;
    max-width: 500px;
  }
}

.l-first_content {
  padding: 90px 30px;
}
@media (max-width: 767.8px) {
  .l-first_content {
    padding: 4em 1.5em;
  }
}
.l-first_content .points {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-areas: "first first first second second second" "third third fourth fourth fifth fifth";
  gap: 30px;
  max-width: 1220px;
  margin: 0 auto;
}
@media (max-width: 1279.8px) {
  .l-first_content .points {
    gap: 20px;
  }
}
@media (max-width: 1023.8px) {
  .l-first_content .points {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "first second" "third third" "fourth fifth";
  }
}
@media (max-width: 767.8px) {
  .l-first_content .points {
    display: flex;
    flex-direction: column;
  }
}
.l-first_content .points .point1 {
  grid-area: first;
}
.l-first_content .points .point2 {
  grid-area: second;
}
.l-first_content .points .point3 {
  grid-area: third;
}
.l-first_content .points .point4 {
  grid-area: fourth;
}
.l-first_content .points .point5 {
  grid-area: fifth;
}
.l-first_content .points > li {
  position: relative;
  padding: 2em;
  background-color: #F4FAFF;
  list-style: none;
}
.l-first_content .points > li > p {
  color: #17769E;
  font-family: "Poppins", sans-serif !important;
  font-size: 31px;
  font-weight: 300;
  display: inline-block;
  padding-right: 0.3em;
}
@media (max-width: 1279.8px) {
  .l-first_content .points > li > p {
    font-size: 1.8em;
  }
}
@media (max-width: 767.8px) {
  .l-first_content .points > li > p {
    font-size: 1.6em;
  }
}
.l-first_content .points > li > img {
  width: 2.2em;
  object-fit: contain;
}
@media (max-width: 767.8px) {
  .l-first_content .points > li > img {
    width: 2em;
  }
}
.l-first_content .points > li > .accent {
  position: absolute;
  width: 25%;
  z-index: 3;
}
@media (max-width: 1023.8px) {
  .l-first_content .points > li > .accent {
    width: 5em;
  }
}
@media (max-width: 767.8px) {
  .l-first_content .points > li > .accent {
    display: none;
  }
}
.l-first_content .points > li > .accent > img {
  width: 100%;
  object-fit: cover;
}
.l-first_content .points > li > .glass {
  top: 30px;
  right: 40px;
}
.l-first_content .points > li > .money {
  bottom: 10px;
  right: -15%;
}
@media (max-width: 1023.8px) {
  .l-first_content .points > li > .money {
    right: -11%;
  }
}
@media (max-width: 767.8px) {
  .l-first_content .points > li > .money {
    display: none;
    top: 5%;
    right: 5%;
    bottom: unset;
  }
}
.l-first_content .points > li > h3 {
  font-family: "Noto Sans JP", serif;
  font-size: 28px;
  color: #1776A3;
  font-weight: 500;
  margin-top: 0.8em;
}
@media (max-width: 1279.8px) {
  .l-first_content .points > li > h3 {
    font-size: 1.3em;
  }
}
@media (max-width: 767.8px) {
  .l-first_content .points > li > h3 {
    margin-top: 0;
    font-size: 1.6em;
  }
}
.l-first_content .points > li > article {
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  line-height: 2;
  margin-top: 25px;
}
@media (max-width: 1279.8px) {
  .l-first_content .points > li > article {
    font-size: 1em;
  }
}
@media (max-width: 767.8px) {
  .l-first_content .points > li > article {
    margin-top: 0.5em;
  }
}
.l-first_content .points > li > article span {
  position: relative;
  font-weight: 700;
  border-bottom: 6px solid #FF921D;
}

.l-second_content {
  background-color: #E2F3FF;
  padding: 90px 30px 60px;
}
.l-second_content .ship-cats {
  width: 750px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  margin: 30px auto 60px;
  gap: 20px;
  justify-content: center;
}
@media (max-width: 1023.8px) {
  .l-second_content .ship-cats {
    width: 100%;
  }
}
.l-second_content .ship-cats .item {
  padding: 0 5px;
  list-style: none;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  color: #17769E;
  background-color: #fff;
}
.l-second_content .current-ships {
  max-width: 1220px;
  margin: 0 auto;
}

.l-third_content {
  padding: 90px 30px;
}
.l-third_content .key-visual {
  width: 50%;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 767.8px) {
  .l-third_content .key-visual {
    width: 100%;
  }
}
.l-third_content .key-visual img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}

.c-headline {
  position: relative;
  width: 650px;
  margin: 0 auto;
}
@media (max-width: 1279.8px) {
  .c-headline {
    width: 600px;
  }
}
@media (max-width: 767.8px) {
  .c-headline {
    width: 100%;
    font-size: clamp(1.875rem, 1.428rem + 2.24vw, 2.5rem);
  }
}
.c-headline.lp {
  margin-top: 80px;
  display: grid;
  grid-template-columns: 40% 60%;
}
@media (max-width: 767.8px) {
  .c-headline.lp {
    grid-template-columns: 1fr;
    grid-template-areas: "text" "boat" "bottom";
    padding: 0 10px;
  }
}
.c-headline.lp .text {
  font-weight: 700;
}
@media (max-width: 767.8px) {
  .c-headline.lp .text {
    grid-area: text;
  }
}
.c-headline.lp .text .fukidashi {
  position: relative;
  font-size: 24px;
  line-height: 1.2;
  padding: 10px 0;
  border-radius: 50px;
  width: 105%;
  margin-top: -1.2em;
  margin-left: -5%;
  font-weight: 700;
  color: #fff;
  background: #4885C3;
}
@media (max-width: 1023.8px) {
  .c-headline.lp .text .fukidashi {
    font-size: clamp(1rem, -0.125rem + 2.34vw, 1.375rem);
  }
}
@media (max-width: 767.8px) {
  .c-headline.lp .text .fukidashi {
    top: -0.7em;
    margin-top: unset;
    margin-left: -2.5%;
    font-size: clamp(0.813rem, 0.514rem + 1.27vw, 1.125rem);
  }
}
.c-headline.lp .text .fukidashi.en {
  font-size: 22px;
}
@media (max-width: 1023.8px) {
  .c-headline.lp .text .fukidashi.en {
    font-size: clamp(1rem, -0.125rem + 2.34vw, 1.375rem);
  }
}
@media (max-width: 767.8px) {
  .c-headline.lp .text .fukidashi.en {
    font-size: clamp(0.813rem, 0.514rem + 1.27vw, 1.125rem);
  }
}
.c-headline.lp .text .fukidashi::before {
  border: solid transparent;
  content: "";
  height: 0;
  width: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 50%;
  border-top-width: 15px;
  border-left-width: 10px;
  border-right-width: 10px;
  border-top-color: #4885C3;
}
.c-headline.lp .text h2 {
  padding-left: 5%;
}
@media (max-width: 767.8px) {
  .c-headline.lp .text h2 {
    padding: 0;
  }
}
.c-headline.lp .text h2 p {
  font-size: 65px;
  text-align: left;
  line-height: 1.2;
}
@media (max-width: 1023.8px) {
  .c-headline.lp .text h2 p {
    font-size: clamp(3.125rem, 0.301rem + 5.88vw, 4.063rem);
  }
}
@media (max-width: 767.8px) {
  .c-headline.lp .text h2 p {
    font-size: clamp(2.5rem, -0.313rem + 12vw, 3.438rem);
    display: inline-block;
  }
}
.c-headline.lp .text h2 p .orange {
  font-size: 83px;
  color: #FF921D;
}
@media (max-width: 1023.8px) {
  .c-headline.lp .text h2 p .orange {
    font-size: clamp(4.375rem, 1.928rem + 5.1vw, 5.188rem);
  }
}
@media (max-width: 767.8px) {
  .c-headline.lp .text h2 p .orange {
    font-size: clamp(3.125rem, -1rem + 17.6vw, 4.5rem);
  }
}
.c-headline.lp .bottom {
  margin: 30px 0;
  grid-column: 1/3;
}
@media (max-width: 767.8px) {
  .c-headline.lp .bottom {
    grid-column: unset;
    grid-area: bottom;
  }
}
.c-headline.lp .bottom p {
  padding: 8px 0;
  line-height: 1.2;
  font-size: 28px;
  font-weight: 700;
  border-top: solid 3px #4885C3;
  border-bottom: solid 3px #4885C3;
}
@media (max-width: 1023.8px) {
  .c-headline.lp .bottom p {
    font-size: clamp(1.375rem, 0.246rem + 2.35vw, 1.75rem);
  }
}
.c-headline.lp .bottom p .orange {
  color: #FF7900;
}
.c-headline h2 {
  font-family: "Noto Sans JP", serif;
  font-size: 43px;
  color: #17769E;
  text-align: center;
}
@media (max-width: 767.8px) {
  .c-headline h2 {
    font-size: clamp(1.875rem, 1.428rem + 2.24vw, 2.5rem);
  }
}
.c-headline p {
  font-family: "Noto Sans JP", serif;
  font-size: 20px;
  text-align: center;
  color: #17769E;
}
@media (max-width: 767.8px) {
  .c-headline p {
    font-size: 0.5em;
  }
}
.c-headline article {
  font-family: "Noto Sans JP", serif;
  margin: 30px auto 60px;
  width: 100%;
  color: #23333C;
  display: grid;
  place-items: center;
}
@media (max-width: 767.8px) {
  .c-headline article {
    font-size: 0.5em;
  }
}
.c-headline .boat {
  position: absolute;
  top: 50%;
  right: -250px;
}
@media (max-width: 1279.8px) {
  .c-headline .boat {
    right: -200px;
  }
}
@media (max-width: 1023.8px) {
  .c-headline .boat {
    right: -4.5em;
    top: 0;
  }
}
@media (max-width: 767.8px) {
  .c-headline .boat {
    display: none;
  }
}
.c-headline .boat.lp {
  position: static;
  width: 100%;
}
@media (max-width: 767.8px) {
  .c-headline .boat.lp {
    display: block;
    padding: 30px 10px;
  }
}
.c-headline .boat.lp img {
  width: 100%;
  object-fit: cover;
}
.c-headline .boat img {
  width: 200px;
  object-fit: cover;
}

.c-ship-card {
  background-color: #fff;
  width: 25%;
  transition: 0.3s;
  box-shadow: 3px 3px 3px rgba(96, 96, 96, 0.6);
}
.c-ship-card:hover {
  opacity: 0.6;
}
.c-ship-card:hover .c-ship-card--thumbnail img {
  transform: scale(1.1);
}
.c-ship-card * {
  font-family: "Noto Sans JP", serif;
}
.c-ship-card--inner {
  padding: 10px;
}
.c-ship-card--thumbnail {
  width: 100%;
  overflow: hidden;
}
.c-ship-card--thumbnail img {
  transition: 0.5s;
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.c-ship-card--name {
  padding: 15px 0 10px;
}
.c-ship-card--name p {
  text-align: center;
  color: #17769E;
  font-size: 20px;
  font-weight: 500;
}
.c-ship-card--detail {
  width: 100%;
  border-collapse: collapse;
}
.c-ship-card--detail tr {
  border-top: solid 1px #E2F3FF;
  display: grid;
  grid-template-columns: 95px 1fr;
}
.c-ship-card--detail tr:first-child {
  border-top: solid 1px #80AECA;
}
.c-ship-card--detail tr .subject {
  padding: 20px 0 15px;
  font-size: 12px;
  color: #17769E;
}
.c-ship-card--detail tr .value {
  padding: 20px 0 15px 10px;
  font-size: 14px;
  color: #23333C;
  word-break: keep-all;
}
.c-ship-card--modal {
  display: none;
}
.c-ship-card--modal.fixed {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1000;
  display: grid;
  place-content: center;
}
.c-ship-card--modal--inner {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 100%;
  display: grid;
  padding: 30px;
  grid-template-columns: 1fr auto;
  gap: 30px;
  background-color: #fff;
}
@media (max-width: 767.8px) {
  .c-ship-card--modal--inner {
    padding: 20px;
    display: flex;
    flex-direction: column;
  }
}
.c-ship-card--modal--inner .text-wrapper {
  position: relative;
  width: 100%;
}
.c-ship-card--modal--inner .text-wrapper p {
  display: inline-block;
  text-align: left;
}
.c-ship-card--modal--inner .text-wrapper .detail {
  list-style: none;
}
@media (min-width: 768px) {
  .c-ship-card--modal--inner .text-wrapper .detail {
    padding-bottom: 50px;
  }
}
.c-ship-card--modal--inner .text-wrapper .detail > li {
  display: grid;
  grid-template-columns: 100px 1fr;
  border-top: solid 1px #E2F3FF;
}
.c-ship-card--modal--inner .text-wrapper .detail > li:first-child {
  border-top: solid 1px #80AECA;
}
.c-ship-card--modal--inner .text-wrapper .detail > li .subject {
  padding: 20px 0 15px;
  font-size: 12px;
  color: #17769E;
}
.c-ship-card--modal--inner .text-wrapper .detail > li .value {
  padding: 20px 0 15px 10px;
  font-size: 14px;
  color: #23333C;
}
.c-ship-card--modal--thumbnail img {
  width: 100%;
  object-fit: cover;
}
.c-ship-card--modal--gallery {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 5px;
  width: 100%;
  position: absolute;
  bottom: 0;
}
@media (max-width: 767.8px) {
  .c-ship-card--modal--gallery {
    position: static;
  }
}
.c-ship-card--modal--gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 11/8;
  object-fit: cover;
}
.c-ship-card--modal--gallery img.selected {
  border: 4px solid #FF921D;
}

.c-slider .slick-slide {
  margin: 0 15px 5px;
}
.c-slider .slick-prev,
.c-slider .slick-next {
  position: absolute;
  top: 42%;
  cursor: pointer; /*マウスカーソルを指マークに*/
  outline: none; /*クリックをしたら出てくる枠線を消す*/
  width: 48px;
  height: 48px;
  background-image: url("../img/slider-btn.png");
  background-size: 100%;
  z-index: 3;
  transition: 0.3s;
}
.c-slider .slick-prev:hover,
.c-slider .slick-next:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.c-slider .slick-prev { /*戻る矢印の位置と形状*/
  left: -2%;
  transform: rotate(-180deg);
}
.c-slider .slick-prev:hover {
  opacity: 0.8;
  transform: scale(1.05) rotate(-180deg);
}
.c-slider .slick-next { /*次へ矢印の位置と形状*/
  right: -2%;
}
.c-slider .slick-next:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.c-btn .nav-btn {
  position: relative;
  display: flex;
  align-items: end;
}
@media (max-width: 767.8px) {
  .c-btn .nav-btn {
    width: 150px;
    margin: 0 auto;
  }
}
.c-btn .nav-btn img {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
}
.c-btn .nav-btn a {
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-btn .nav-btn a:hover .assessment,
.c-btn .nav-btn a:hover .contact {
  box-shadow: none;
  transform: translate(3px, 3px);
}
.c-btn--to-top {
  display: none;
  position: fixed;
  inset: auto 30px 30px auto;
  width: 70px;
  z-index: 3000;
  cursor: pointer;
}
.c-btn--to-top a {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0 auto auto 0;
}
.c-btn--to-top img {
  width: 100%;
}
.c-btn--top {
  margin-top: 20px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.c-btn--top img {
  width: 100%;
  object-fit: cover;
}
.c-btn--footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding-bottom: 20px;
}
.c-btn--footer a:hover img {
  transform: scale(1.05);
}
.c-btn--wrapper img {
  width: 100%;
  object-fit: cover;
}
.c-btn--close {
  width: 42px;
  height: 42px;
  border-radius: 25px;
  background: #fff;
  position: absolute;
  top: -21px;
  right: -21px;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
.c-btn--close:hover {
  transform: scale(1.1);
}
.c-btn--close span {
  display: inline-block;
  width: 21px;
  border: 1px solid #1E292F;
  position: absolute;
  top: 50%;
  left: 50%;
}
.c-btn--close span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.c-btn--close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.c-btn.view-more {
  position: relative;
  width: 320px;
  padding: 10px 50px;
  border: solid 3px #17769E;
  border-radius: 50px;
  background-color: #fff;
  margin: 30px auto 0;
  pointer-events: none;
  transition: 0.4s;
}
@media (max-width: 767.8px) {
  .c-btn.view-more {
    width: 100%;
    max-width: 320px;
  }
}
.c-btn.view-more:hover {
  background-color: #17769E;
}
.c-btn.view-more:hover p {
  color: #fff !important;
}
.c-btn.view-more p {
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  color: #17769E;
  text-align: center;
}
.c-btn.view-more a {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  pointer-events: auto;
}
.c-btn .contact {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 3px 3px #004459;
}
@media (max-width: 767.8px) {
  .c-btn .contact {
    box-shadow: none;
  }
}
.c-btn .assessment {
  display: block;
  position: relative;
  width: 100%;
  border-radius: 5px;
  object-fit: cover;
  box-shadow: 3px 3px #FF7900;
}
@media (max-width: 767.8px) {
  .c-btn .assessment {
    box-shadow: none;
  }
}
.c-btn .confirm {
  font-weight: 500;
  display: block;
  margin: 0 auto;
  width: 300px;
  height: 40px;
  color: #17769E;
  background: #FFB846;
  border: none;
  border-radius: 5px;
  box-shadow: 3px 3px #FF7900;
}
.c-btn .confirm.to-top {
  display: none;
  margin-top: 50px;
}
.c-btn .confirm.blue {
  color: #fff;
  background: #17769E;
  box-shadow: 3px 3px #004459;
}
.c-btn .confirm:hover {
  box-shadow: none;
  transform: translate(3px, 3px);
}
.c-btn:has(.back, .send) {
  display: grid;
  place-items: center;
  grid-template-columns: auto 200px 200px auto;
  gap: 20px;
  margin: 0 auto;
}
.c-btn .back,
.c-btn .send {
  font-weight: 500;
  width: 200px;
  height: 40px;
  border: none;
  border-radius: 5px;
}
.c-btn .back:hover,
.c-btn .send:hover {
  box-shadow: none;
  transform: translate(3px, 3px);
}
.c-btn .back {
  grid-column: 2/3;
  color: #fff;
  background: #17769E;
  box-shadow: 3px 3px #004459;
}
.c-btn .send {
  color: #17769E;
  grid-column: 3/4;
  background: #FFB846;
  box-shadow: 3px 3px #FF7900;
}

.c-starburst {
  position: absolute;
  display: inline-block;
  width: 4em;
  height: 4em;
  -webkit-transform: rotate(-75deg);
  -moz-transform: rotate(-75deg);
  rotation: -75deg;
  top: 2em;
  font-size: clamp(0.875rem, 0.224rem + 0.95vw, 2rem);
  right: -1.3em;
  text-align: center;
  color: #17769E;
  font-family: "Noto Sans JP", serif;
  font-weight: 700;
  line-height: 1;
  -moz-transition: -moz-transform 0.3s ease;
  -webkit-transition: -webkit-transform 0.3s ease;
}
.c-starburst span {
  display: block;
  width: 6em;
  height: 6em;
  background: #fff;
  -webkit-transform: rotate(22.5deg);
  -moz-transform: rotate(22.5deg);
  rotation: 22.5deg;
}
.c-starburst span span span span {
  display: grid;
  place-content: center;
}
.c-starburst span span span span p {
  font-size: clamp(1.25rem, 0.599rem + 0.95vw, 2.375rem);
}

.c-filter {
  width: 100%;
  border: solid 1px #17769E;
}
.c-filter__headline {
  width: 100%;
  background-color: #17769E;
  text-align: center;
  padding: 5px 0;
}
.c-filter__headline .sub {
  line-height: 1;
  color: #fff;
  font-weight: 500;
}
.c-filter__block {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  padding: 24px 10px;
  margin: 0 auto;
  gap: 20px;
  justify-content: center;
  background-color: #fff;
}
.c-filter__button > button {
  font-size: 1rem;
  border: 1.5px solid #17769E;
  border-radius: 2px;
  padding: 0 5px;
  background-color: #fff;
  color: #17769E;
  transition: 0.3s;
}
.c-filter__button > button:hover {
  background-color: #17769E;
  color: #fff;
}
.c-filter__button > button:disabled {
  color: #fff;
  background-color: #17769E;
}
.c-filter__check-text {
  line-height: 1;
}
.c-filter__notion {
  text-align: center;
  margin: 80px auto 0;
}
.c-filter__notion * {
  font-size: 1rem;
}

.c-pagenation {
  margin-top: 60px;
}
.c-pagenation .nav-links {
  display: flex;
  gap: 5px;
  justify-content: center;
}
.c-pagenation .nav-links .page-numbers {
  display: grid;
  align-items: center;
  text-align: center;
  height: 30px;
  width: 30px;
  text-decoration: none;
  font-size: 16px;
  color: #17769E;
  line-height: 0.8;
  border: 2px solid #17769E;
  border-radius: 3px;
}
.c-pagenation .nav-links .page-numbers.current {
  color: #fff;
  background-color: #17769E;
}
.c-pagenation .nav-links a {
  transition: 0.3s;
}
.c-pagenation .nav-links a:hover {
  background-color: #17769E;
  color: #fff;
}
.c-pagenation .nav-links a:hover::after {
  border-color: #fff;
}
.c-pagenation .nav-links .dots {
  border: none;
}
.c-pagenation .nav-links .prev,
.c-pagenation .nav-links .next {
  position: relative;
}
.c-pagenation .nav-links .prev::after,
.c-pagenation .nav-links .next::after {
  left: 50%;
  position: absolute;
  content: "";
  height: 10px;
  width: 10px;
  transition: 0.3s;
}
.c-pagenation .nav-links .prev::after {
  border-top: 2px solid #17769E;
  border-right: 2px solid #17769E;
  transform: translateX(calc(-50% + 3px)) rotate(-135deg);
}
.c-pagenation .nav-links .next::after {
  border-bottom: 2px solid #17769E;
  border-left: 2px solid #17769E;
  transform: translateX(calc(-50% - 3px)) rotate(-135deg);
}

.c-strengths {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding: 0 80px;
  max-width: 980px;
  margin: 0 auto;
}
@media (max-width: 1023.8px) {
  .c-strengths {
    padding: 0 clamp(1.875rem, -7.537rem + 19.61vw, 5rem);
  }
}
@media (max-width: 767.8px) {
  .c-strengths {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: ". one one ." "two two three three";
    gap: clamp(5rem, 1.25rem + 16vw, 6.25rem) 20px;
    padding: 0;
  }
}

.c-strength {
  margin: 0 auto;
  position: relative;
  background: #F4FAFF;
  width: 200px;
  height: 200px;
  border-radius: 50%;
}
@media (max-width: 767.8px) {
  .c-strength {
    width: 100%;
    height: unset;
    padding-top: 100%;
  }
}
@media (max-width: 767.8px) {
  .c-strength--reason {
    width: clamp(11.25rem, 1.875rem + 40vw, 14.375rem);
    height: clamp(11.25rem, 1.875rem + 40vw, 14.375rem);
    padding-top: unset;
    order: 2;
  }
}
@media (max-width: 767.8px) {
  .c-strength:nth-child(1) {
    grid-area: one;
  }
}
@media (max-width: 767.8px) {
  .c-strength:nth-child(2) {
    grid-area: two;
  }
}
@media (max-width: 767.8px) {
  .c-strength:nth-child(3) {
    grid-area: three;
  }
}
.c-strength::before {
  content: "";
  display: block;
  padding-top: 125%;
}
@media (max-width: 767.8px) {
  .c-strength::before {
    display: none;
  }
}
.c-strength .img {
  position: absolute;
  bottom: -25%;
  left: 50%;
  transform: translateX(-50%);
}
.c-strength .img > img {
  width: 100px;
  object-fit: cover;
}
@media (max-width: 767.8px) {
  .c-strength .img > img {
    width: 100%;
  }
}
.c-strength .bottom {
  color: #17769E;
  font-size: 18px;
  text-align: center;
  white-space: nowrap;
  position: absolute;
  bottom: -38%;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 1023.8px) {
  .c-strength .bottom {
    bottom: -35%;
    font-size: 16px;
  }
}
.c-strength > p:first-child {
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "osaka", serif !important;
  font-size: 48px;
  font-weight: 400;
  line-height: 1;
  color: #4885C3;
  width: 100%;
  text-align: center;
}
@media (max-width: 767.8px) {
  .c-strength > p:first-child {
    font-size: clamp(2.5rem, -1.25rem + 16vw, 3.75rem);
  }
}
.c-strength > p:first-child .and {
  font-size: 23px;
  display: block;
  line-height: 0.8;
}
@media (max-width: 767.8px) {
  .c-strength > p:first-child .and {
    font-size: 0.5em;
  }
}
.c-strength > p:first-child .little_small {
  font-size: 32px;
  font-weight: 500;
  display: block;
}
@media (max-width: 767.8px) {
  .c-strength > p:first-child .little_small {
    font-size: 0.7em;
  }
}

#js-aside.UpMove {
  position: fixed;
  width: 100%;
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(140px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#js-aside.DownMove {
  position: fixed;
  width: 100%;
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(140px);
  }
}

@media (min-width: 768px) {
  #js-nav.UpMove {
    animation: UpAnimeTop 0.5s forwards;
  }
}
@keyframes UpAnimeTop {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@media (min-width: 768px) {
  #js-nav.DownMove {
    animation: DownAnimeTop 0.5s forwards;
  }
}
@keyframes DownAnimeTop {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.p-ship {
  max-width: 1220px;
  padding: 50px 30px;
  margin: 0 auto;
}
@media (max-width: 767.8px) {
  .p-ship {
    padding: 30px 0;
  }
}
.p-ship__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1023.8px) {
  .p-ship__main {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
@media (max-width: 767.8px) {
  .p-ship__main {
    grid-template-columns: 1fr;
  }
}
.p-ship__main .multiply_wrap {
  display: none;
}
.p-ship__main .multiply_wrap.active {
  display: block;
  position: fixed;
  mix-blend-mode: multiply;
  background-color: #606060;
  z-index: 101;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-ship__main > .c-ship-card {
  width: 100% !important;
}
.p-ship__page-number {
  color: #1E292F;
}
.p-ship__page-number .post {
  padding-top: 1em;
}
.p-ship__page-number .post span {
  font-size: 30px;
}
.p-ship__page-number .sort {
  padding: 20px 0 10px;
  display: flex;
  gap: 20px;
}
.p-ship__page-number .sort > p {
  display: flex;
  align-items: center;
  line-height: 1;
  color: #17769E;
}
.p-ship__page-number .sort .select-wrap {
  position: relative;
}
.p-ship__page-number .sort .select-wrap::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid #fff;
  border-right: 8px solid transparent;
  border-bottom: 0;
  border-left: 8px solid transparent;
  transform: translateY(calc(-50% - 2px));
  font-size: 20px;
  pointer-events: none;
  z-index: 3;
}
.p-ship__page-number .sort .select-wrap::after {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 10px solid #1E292F;
  border-right: 8px solid transparent;
  border-bottom: 0;
  border-left: 8px solid transparent;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
}
.p-ship__page-number .sort .select-wrap .select {
  position: relative;
  color: #23333C;
  border: solid 1.5px rgba(23, 118, 158, 0.5);
  border-radius: 3px;
  font-size: 1rem;
  padding: 5px 30px 5px 10px;
  line-height: 1;
  appearance: none;
}
.p-ship__page-number .sort .select-wrap .select::-ms-expand {
  display: none;
}

.p-form h2 {
  font-size: 30px;
  margin-bottom: 20px;
}
.p-form .explain {
  padding: 50px 30px 0px;
}
.p-form .explain div {
  margin: 0 auto;
  width: 600px;
}
@media (max-width: 767.8px) {
  .p-form .explain div {
    max-width: 500px;
    width: 100%;
    padding: 0 10px;
  }
}
.p-form .explain div .explain-text {
  display: inline-block;
  padding-bottom: 50px;
  font-weight: 700;
}
.p-form .explain div .complete-text {
  display: none;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}
.p-form .ship-info {
  background-color: rgba(255, 146, 29, 0.1);
  position: relative;
}
.p-form .ship-info::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 43px solid transparent;
  border-left: 43px solid transparent;
  border-top: 60px solid rgba(255, 121, 0, 0.1);
  border-bottom: 0;
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
}
.p-form .ship-info--wrapper {
  width: 700px;
  margin: 0 auto;
  padding: 50px 0;
}
@media (max-width: 767.8px) {
  .p-form .ship-info--wrapper {
    max-width: 500px;
    width: 100%;
    padding: 50px 10px;
  }
}
.p-form .ship-info--wrapper .steps {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-form .ship-info--wrapper .steps .item {
  background: #fff;
  display: grid;
  grid-template-columns: 60px auto;
  padding: 10px;
}
@media (max-width: 767.8px) {
  .p-form .ship-info--wrapper .steps .item {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.p-form .ship-info--wrapper .steps .item span {
  font-size: 14px;
}
.p-form .ship-info--wrapper .steps .item > p {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  gap: 10px 20px;
  align-items: center;
  padding: 10px 50px 10px 30px;
}
@media (max-width: 767.8px) {
  .p-form .ship-info--wrapper .steps .item > p {
    gap: 10px;
    padding: 10px 20px;
  }
}
.p-form .ship-info--wrapper .steps .item .mwform-radio-field {
  margin-left: 0;
}
.p-form .ship-info--wrapper .steps .item .mwform-radio-field-text {
  font-size: 14px;
}
.p-form .ship-info--wrapper .steps .item > div {
  width: 60px;
  height: 60px;
  background: #FF921D;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.p-form .ship-info--wrapper .steps .item > div .small {
  font: 400 1em "Noto Sans JP", serif;
}
.p-form .ship-info--wrapper .steps .item > div .number {
  font: 500 1.8em "Noto Sans JP", serif;
}
.p-form .ship-info--wrapper .steps .item > div > * {
  color: #fff;
  line-height: 1 !important;
}
.p-form .ship-info--wrapper .steps .item:nth-child(n+2) input {
  height: 100%;
  background: #f9f9f9;
  border: none;
  padding: 0 10px;
  text-align: right;
}
@media (max-width: 767.8px) {
  .p-form .ship-info--wrapper .steps .item:nth-child(n+2) input {
    height: 50px;
  }
}
@media (max-width: 767.8px) {
  .p-form .ship-info--wrapper .steps .item:nth-child(3) input:nth-of-type(1) {
    width: 100px;
  }
}
@media (max-width: 767.8px) {
  .p-form .ship-info--wrapper .steps .item:nth-child(3) input:nth-of-type(2) {
    width: 50px;
  }
}
.p-form .customer-info.contact > div {
  margin: 0 auto !important;
  padding: 0 0 50px;
}
.p-form .customer-info--wrapper {
  width: 700px;
  margin: 100px auto 0;
  padding: 50px 0;
}
@media (max-width: 767.8px) {
  .p-form .customer-info--wrapper {
    max-width: 500px;
    width: 100%;
    padding: 0 10px !important;
  }
}
.p-form .customer-info--wrapper .info-table {
  width: 100%;
  border-spacing: 0 20px;
}
@media (max-width: 767.8px) {
  .p-form .customer-info--wrapper .info-table tbody {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }
}
@media (max-width: 767.8px) {
  .p-form .customer-info--wrapper .info-table .item {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-areas: "require sub" "input input";
    gap: 10px 0;
  }
}
.p-form .customer-info--wrapper .info-table .item .require {
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
  color: #fff;
  background: #FF921D;
  padding: 0 10px;
  word-break: keep-all;
}
@media (max-width: 767.8px) {
  .p-form .customer-info--wrapper .info-table .item .require {
    padding: 3px 10px;
  }
}
@media (max-width: 767.8px) {
  .p-form .customer-info--wrapper .info-table .item .require-wrap {
    grid-area: require;
    display: grid;
    place-items: center;
  }
}
.p-form .customer-info--wrapper .info-table .item .sub {
  font-weight: 400;
  padding-left: 10px;
  font-family: "Noto Sans JP", serif;
  font-size: 14px;
  color: #1E292F;
  text-align: left;
}
@media (max-width: 767.8px) {
  .p-form .customer-info--wrapper .info-table .item .sub {
    grid-area: sub;
  }
}
.p-form .customer-info--wrapper .info-table .item td {
  padding-left: 40px;
}
@media (max-width: 767.8px) {
  .p-form .customer-info--wrapper .info-table .item td {
    padding-left: unset;
    grid-area: input;
  }
}
.p-form .customer-info--wrapper .info-table .item td input,
.p-form .customer-info--wrapper .info-table .item td textarea {
  padding: 10px 0 10px 20px;
  font-size: 14px;
  border: none;
  background: #f9f9f9;
}
.p-form .customer-info--wrapper .info-table .item td .input {
  width: 100%;
}
.p-form .customer-info--wrapper .info-table .item td .zip {
  padding: 10px 42px 10px 20px;
}
.p-form .customer-info--wrapper .info-table .item td:has(.pref) div {
  display: inline-block;
  position: relative;
}
.p-form .customer-info--wrapper .info-table .item td:has(.pref) div select {
  position: relative;
  color: #23333C;
  border: none;
  line-height: 1.5;
  appearance: none;
  padding: 10px 50px 10px 20px;
  border: none;
  background: #f9f9f9;
}
.p-form .customer-info--wrapper .info-table .item td:has(.pref) div select > option {
  font-size: 14px;
}
.p-form .customer-info--wrapper .info-table .item td:has(.pref) div select::-ms-expand {
  display: none;
}
.p-form .customer-info--wrapper .info-table .item td:has(.pref) div::before {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid #f9f9f9;
  border-right: 7px solid transparent;
  border-bottom: 0;
  border-left: 7px solid transparent;
  transform: translateY(calc(-50% - 2px));
  font-size: 20px;
  pointer-events: none;
  z-index: 3;
}
.p-form .customer-info--wrapper .info-table .item td:has(.pref) div::after {
  content: "";
  position: absolute;
  right: 25px;
  top: 50%;
  width: 0;
  height: 0;
  border-top: 8px solid #1E292F;
  border-right: 7px solid transparent;
  border-bottom: 0;
  border-left: 7px solid transparent;
  transform: translateY(-50%);
  font-size: 20px;
  pointer-events: none;
}
.p-form .customer-info--wrapper .consent {
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  margin-top: 20px;
}
.p-form .customer-info--wrapper .consent p {
  margin-bottom: 25px;
}
.p-form .customer-info--wrapper .consent .require {
  line-height: 1;
  color: #fff;
  background: #FF921D;
  padding: 0 10px;
  margin-right: 5px;
}
.p-form .customer-info--wrapper .consent input {
  transform: scale(1.5);
  border-radius: 0;
}
.p-form .tel-info--wrapper {
  width: 700px;
  margin: 50px auto 80px;
  padding: 20px 0;
  background-color: rgba(255, 146, 29, 0.1);
  text-align: center;
  color: #23333C;
}
@media (max-width: 767.8px) {
  .p-form .tel-info--wrapper {
    max-width: 500px;
    width: 100%;
    padding: 0 10px;
  }
}
.p-form .tel-info--wrapper.blue {
  background-color: #E2F3FF;
}
.p-form .tel-info--wrapper.blue h3 {
  color: #17769E;
}
.p-form .tel-info--wrapper h3 {
  color: #FF7900;
  font-weight: 500;
  font-size: 20px;
  margin-bottom: 10px;
}
.p-form .tel-info--wrapper p {
  font-size: 16px;
  font-weight: 400;
}
.p-form .tel-info--wrapper p span {
  font-weight: 400;
  font-size: 0.8em;
  padding-left: 5px;
}
.p-form .tel-info--wrapper .tel {
  font-size: 20px;
  font-weight: 700;
}
.p-form .tel-info--wrapper .tel--little {
  margin-top: 0.5em;
  font-size: 18px;
  font-weight: 500;
}

.p-lp {
  margin-bottom: 20px;
}
.p-lp .top {
  margin: 0 auto 160px;
}
@media (max-width: 1023.8px) {
  .p-lp .top {
    margin-bottom: clamp(8.125rem, 2.478rem + 11.76vw, 10rem);
  }
}
@media (max-width: 767.8px) {
  .p-lp .top {
    max-width: 500px;
    padding: 0 10px;
  }
}
.p-lp .reasons {
  background-color: #E2F3FF;
  padding-bottom: 80px;
}
@media (max-width: 1023.8px) {
  .p-lp .reasons {
    padding: 0 30px 80px;
  }
}
@media (max-width: 767.8px) {
  .p-lp .reasons {
    padding: 0 10px 60px;
  }
}
.p-lp .reasons .headline {
  padding: 50px 0;
  position: relative;
  display: flex;
  justify-content: center;
}
@media (max-width: 767.8px) {
  .p-lp .reasons .headline {
    padding: 70px 0 30px;
  }
}
.p-lp .reasons .headline .text {
  display: inline-block;
  position: relative;
}
.p-lp .reasons .headline .decoration {
  position: absolute;
}
@media (max-width: 767.8px) {
  .p-lp .reasons .headline .decoration.en {
    display: none;
  }
}
.p-lp .reasons .headline .decoration::before, .p-lp .reasons .headline .decoration::after {
  content: "";
  display: inline-block;
  width: 100px;
  height: 4px;
  border-radius: 4px;
  background-color: #17769E;
  position: relative;
}
@media (max-width: 767.8px) {
  .p-lp .reasons .headline .decoration::before, .p-lp .reasons .headline .decoration::after {
    width: 60px;
  }
}
.p-lp .reasons .headline .decoration--left {
  left: -140px;
  bottom: 70px;
}
@media (max-width: 767.8px) {
  .p-lp .reasons .headline .decoration--left {
    left: -70px;
    bottom: 45px;
  }
}
.p-lp .reasons .headline .decoration--left::before, .p-lp .reasons .headline .decoration--left::after {
  transform: rotate(-120deg);
}
.p-lp .reasons .headline .decoration--left::after {
  left: -75px;
}
.p-lp .reasons .headline .decoration--right {
  right: -140px;
  bottom: 70px;
}
@media (max-width: 767.8px) {
  .p-lp .reasons .headline .decoration--right {
    right: -70px;
    bottom: 45px;
  }
}
.p-lp .reasons .headline .decoration--right::before, .p-lp .reasons .headline .decoration--right::after {
  transform: rotate(120deg);
}
.p-lp .reasons .headline .decoration--right::before {
  left: 75px;
}
.p-lp .reasons .headline h2 {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #FF921D;
  display: inline-block;
}
@media (max-width: 767.8px) {
  .p-lp .reasons .headline h2 {
    font-size: clamp(1.875rem, 8vw, 2.5rem);
  }
}
.p-lp .reasons .headline h2 > span {
  position: relative;
  top: -20px;
  font-size: 32px;
  font-weight: 500;
  color: #4885C3;
}
@media (max-width: 767.8px) {
  .p-lp .reasons .headline h2 > span {
    font-size: clamp(1.563rem, 0.25rem + 5.6vw, 2rem);
  }
}
.p-lp .reasons--inner {
  position: relative;
  border-radius: 10px;
  background: #fff;
  margin: 0 auto;
  padding: 50px 50px 0;
  display: flex;
  flex-direction: column;
}
@media (max-width: 767.8px) {
  .p-lp .reasons--inner {
    max-width: 500px;
    padding: 0 30px;
  }
}
.p-lp .reasons--inner .border {
  position: absolute;
  width: 90%;
  margin: 0 auto;
  left: 50%;
  transform: translateX(-50%);
}
.p-lp .reasons--inner .border--top {
  top: 310px;
}
.p-lp .reasons--inner .border--bottom {
  top: 620px;
}
.p-lp .reasons--inner .strength {
  margin: 0 auto;
}
@media (max-width: 767.8px) {
  .p-lp .reasons--inner .strength {
    order: 2;
  }
}
.p-lp .reasons--inner .strength--1, .p-lp .reasons--inner .strength--3 {
  grid-row: 1/2;
}
.p-lp .reasons--inner .strength--2 {
  grid-column: 3/4;
}
.p-lp .reasons--inner .reason {
  padding: 30px;
}
@media (max-width: 767.8px) {
  .p-lp .reasons--inner .reason {
    order: 1;
    padding: 30px 0 40px;
  }
}
.p-lp .reasons--inner .reason h3 {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 20px;
}
@media (max-width: 767.8px) {
  .p-lp .reasons--inner .reason h3 {
    font-size: clamp(1.25rem, -0.25rem + 6.4vw, 1.75rem);
  }
}
.p-lp .reasons--inner .reason p {
  font-size: 14px;
  line-height: 1.5;
}
.p-lp .reasons--inner .reason--wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr 2fr;
  border-top: solid 1px #E2F3FF;
  padding: 30px 0 80px;
}
@media (max-width: 767.8px) {
  .p-lp .reasons--inner .reason--wrapper {
    display: flex;
    flex-direction: column;
  }
}
.p-lp .reasons--inner .reason--wrapper:first-child {
  border: none;
}
.p-lp .reasons--inner .reason--1, .p-lp .reasons--inner .reason--3 {
  grid-column: 2/4;
}
.p-lp .reasons--inner .reason--2 {
  grid-column: 1/3;
  text-align: right;
}
@media (max-width: 767.8px) {
  .p-lp .reasons--inner .reason--2 {
    text-align: left;
  }
}
.p-lp .depends--top {
  margin: 80px auto;
  padding: 30px 80px;
  position: relative;
  background-image: url("../img/business/depends/depends_bg.png");
  background-size: cover;
}
@media (max-width: 1023.8px) {
  .p-lp .depends--top {
    padding: 30px 30px;
  }
}
@media (max-width: 767.8px) {
  .p-lp .depends--top {
    margin-top: 60px;
    padding: 30px 10px;
  }
}
.p-lp .depends--top::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 60px 30px 0 30px;
  border-color: #d0d0d0 transparent transparent transparent;
  bottom: -59px;
  left: 50%;
  transform: translateX(-50%);
}
.p-lp .depends--top::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  background-color: rgba(216, 216, 216, 0.9);
}
.p-lp .depends--top--wrapper {
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 1023.8px) {
  .p-lp .depends--top--wrapper {
    padding: 30px;
  }
}
.p-lp .depends--top .texts {
  position: relative;
  text-align: center;
  padding-bottom: 50px;
}
.p-lp .depends--top .texts > h2 {
  color: #17769E;
  font-size: 38px;
}
@media (max-width: 767.8px) {
  .p-lp .depends--top .texts > h2 {
    font-size: clamp(1.875rem, 0.375rem + 6.4vw, 2.375rem);
  }
}
.p-lp .depends--top .texts > p {
  font-family: "Poppins", sans-serif !important;
  color: #23333C;
  font-size: 24px;
  font-weight: 500;
}
@media (max-width: 767.8px) {
  .p-lp .depends--top .texts > p {
    font-size: clamp(1.125rem, 4.8vw, 1.5rem);
  }
}
.p-lp .depends--top .texts > p > span {
  color: #17769E;
}
.p-lp .depends--top .circles {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  justify-content: center;
}
@media (max-width: 1023.8px) {
  .p-lp .depends--top .circles {
    gap: 30px;
  }
}
@media (max-width: 767.8px) {
  .p-lp .depends--top .circles {
    display: flex;
    flex-direction: column;
    width: clamp(18.75rem, 9.375rem + 40vw, 21.875rem);
    margin: 0 auto;
    gap: 50px;
  }
}
.p-lp .depends--top .circles .item {
  width: 100%;
}
@media (max-width: 767.8px) {
  .p-lp .depends--top .circles .item {
    width: 80%;
    margin: 0 auto;
  }
}
.p-lp .depends--top .circles .item > div {
  width: 100%;
  padding-top: 100%;
  border-radius: 50%;
  background-color: #fff;
  background-size: cover;
  background-position: center;
}
@media (max-width: 767.8px) {
  .p-lp .depends--top .circles .item > div {
    width: 80%;
    padding-top: 80%;
    margin: 0 auto;
  }
}
.p-lp .depends--top .circles .item p {
  text-align: center;
  font-weight: 500;
  color: #17769E;
}
@media (max-width: 767.8px) {
  .p-lp .depends--top .circles .item p {
    word-break: keep-all;
    padding-top: 20px;
  }
}
.p-lp .depends--main-contents {
  margin: 80px auto;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents {
    margin: 30px auto;
    padding: 0 10px;
  }
}
.p-lp .depends--main-contents h2 {
  text-align: center;
  font-size: 38px;
  font-weight: 700;
  color: #FF921D;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents h2 {
    font-size: clamp(2rem, 0.875rem + 4.8vw, 2.375rem);
  }
}
.p-lp .depends--main-contents h2 span {
  font-size: 24px;
  font-weight: 500;
  color: #23333C;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents h2 span {
    font-size: clamp(1.25rem, 0.5rem + 3.2vw, 1.5rem);
  }
}
.p-lp .depends--main-contents .topic-fukidashi {
  margin-top: 50px;
  margin-bottom: 36px;
  padding: 15px 20px;
  background-color: #fff;
  border: 3px solid #17769E;
  border-radius: 10px;
  box-shadow: 3px 3px #17769E;
  position: relative;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents .topic-fukidashi {
    padding: 10px 15px;
    box-shadow: 5px 5px #17769E;
  }
}
.p-lp .depends--main-contents .topic-fukidashi::before, .p-lp .depends--main-contents .topic-fukidashi::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
}
.p-lp .depends--main-contents .topic-fukidashi::before {
  border-width: 35px 15px 0 15px;
  border-color: #fff transparent transparent transparent;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents .topic-fukidashi::before {
    border-width: 30px 15px 0;
    bottom: -25px;
  }
}
.p-lp .depends--main-contents .topic-fukidashi::after {
  border-width: 43px 19px 0 19px;
  border-color: #17769E transparent transparent transparent;
  bottom: -39px;
  left: calc(50% + 1.5px);
  transform: translateX(-50%);
  z-index: -1;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents .topic-fukidashi::after {
    border-width: 37px 20px 0;
    bottom: -37px;
    left: calc(50% + 2.5px);
  }
}
.p-lp .depends--main-contents .topic-fukidashi h3 {
  font-size: 24px;
  color: #17769E;
  font-weight: 500;
  line-height: 0.8;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents .topic-fukidashi h3 {
    line-height: 1.2;
    font-size: clamp(1.25rem, 0.5rem + 3.2vw, 1.5rem);
  }
}
.p-lp .depends--main-contents .point-wrapper {
  background: #F4FAFF;
  padding: 60px 30px 50px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents .point-wrapper {
    gap: 80px;
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-lp .depends--main-contents .point-wrapper .item {
  display: flex;
  gap: 30px;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents .point-wrapper .item {
    flex-direction: column;
    gap: 20px;
  }
}
.p-lp .depends--main-contents .point-wrapper .item .left {
  display: flex;
  font-size: 34px;
  line-height: 0.8;
  color: #17769E;
}
.p-lp .depends--main-contents .point-wrapper .item .left p {
  font-family: "Poppins", sans-serif !important;
  margin-right: 10px;
  font-weight: 300;
}
.p-lp .depends--main-contents .point-wrapper .item .left img {
  height: 30px;
  object-fit: contain;
}
.p-lp .depends--main-contents .point-wrapper .item .right h3 {
  line-height: 0.8;
  font-size: 32px;
  font-weight: 500;
  color: #4885C3;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents .point-wrapper .item .right h3 {
    line-height: 1.2;
  }
}
.p-lp .depends--main-contents .point-wrapper .item .right article {
  margin-top: 20px;
  line-height: 2;
}
@media (max-width: 767.8px) {
  .p-lp .depends--main-contents .point-wrapper .item .right article {
    font-size: 20px;
  }
}
.p-lp .depends--main-contents .point-wrapper .item .right article span {
  position: relative;
  font-weight: 700;
  border-bottom: 6px solid #FF921D;
}
.p-lp .gradation {
  overflow: hidden;
  background: linear-gradient(30deg, #1BD4DB, #75C0FF, #92C8F3);
}
.p-lp .gradation--top {
  margin-top: 50px;
  text-align: center;
  color: #fff;
}
.p-lp .gradation--top p {
  font-family: "Poppins", sans-serif !important;
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 767.8px) {
  .p-lp .gradation--top p {
    font-size: 28px;
  }
}
.p-lp .gradation--top h2 {
  line-height: 1;
  font-weight: 700;
}
@media (max-width: 767.8px) {
  .p-lp .gradation--top h2 {
    font-size: 30px;
  }
}
.p-lp .gradation .inner {
  margin: 50px auto;
  height: 500px;
  background: #fff;
  box-shadow: 5px 5px 3px rgba(0, 0, 0, 0.5);
}
@media (max-width: 767.8px) {
  .p-lp .gradation .inner {
    padding: 0 20px;
  }
}
.p-lp .gradation .inner.separate {
  background: none;
  box-shadow: none;
  height: auto;
}
.p-lp .gradation .inner.separate ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style: none;
}
.p-lp .gradation .inner.separate ul .item {
  box-shadow: 2px 2px 3px rgba(0, 0, 0, 0.3);
  background: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
}
.p-lp .gradation .inner.separate ul .item .question {
  font-weight: 500;
  font-size: 22px;
  color: #17769E;
  padding-left: 40px;
  padding-bottom: 10px;
  position: relative;
  border-bottom: solid 2px rgba(14, 164, 219, 0.1);
}
@media (max-width: 767.8px) {
  .p-lp .gradation .inner.separate ul .item .question {
    font-size: 18px;
  }
}
.p-lp .gradation .inner.separate ul .item .question::before {
  content: "Q.";
  display: inline-block;
  line-height: 1.3;
  width: 30px;
  font-size: 24px !important;
  position: absolute;
  left: 0;
}
.p-lp .gradation .inner.separate ul .item .answer {
  color: #23333C;
  padding-left: 40px;
  position: relative;
  margin-top: 15px;
  font-size: 14px;
}
@media (max-width: 767.8px) {
  .p-lp .gradation .inner.separate ul .item .answer {
    font-size: 16px;
  }
}
.p-lp .gradation .inner.separate ul .item .answer::before {
  content: "A.";
  display: inline-block;
  line-height: 1.3;
  width: 30px;
  font-size: 24px !important;
  position: absolute;
  top: -10px;
  left: 3px;
  color: #4885C3;
  letter-spacing: 0.1em;
}
.p-lp .example .tab {
  margin: 50px auto;
}
@media (max-width: 767.8px) {
  .p-lp .example .tab {
    padding: 0 10px;
  }
}
.p-lp .example .tab__menu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  list-style: none;
  gap: 20px;
}
@media (max-width: 767.8px) {
  .p-lp .example .tab__menu {
    display: none;
  }
}
.p-lp .example .tab__menu-item {
  font-weight: 500;
  line-height: 0.8;
  text-align: center;
  width: 100%;
  margin: 0 auto;
  color: #fff;
  background: #4885C3;
  padding: 15px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.3);
  transition: 0.3s;
}
@media (max-width: 1023.8px) {
  .p-lp .example .tab__menu-item {
    font-size: 13px;
    line-height: 1.2;
    display: grid;
    place-items: center;
  }
}
.p-lp .example .tab__menu-item.is-active {
  position: relative;
  color: #17769E;
  background: #fff;
  -webkit-filter: drop-shadow(3px 3px 3px rgba(0, 0, 0, 0.3));
}
.p-lp .example .tab__menu-item.is-active::after {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  bottom: -16.5px;
  left: 50%;
  transform: translateX(-50%);
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 17px solid #ffffff;
  border-bottom: 0;
}
.p-lp .example .tab__menu-item:not(.is-active):hover {
  transform: scale(1.05);
}
.p-lp .example .tab__panel {
  width: 100%;
  background: #fff;
  margin-top: 30px;
  padding: 50px;
}
@media (max-width: 1023.8px) {
  .p-lp .example .tab__panel {
    padding: 30px;
  }
}
@media (max-width: 767.8px) {
  .p-lp .example .tab__panel {
    max-width: 500px;
    padding: unset;
    margin: 30px auto;
    display: flex;
    flex-direction: column;
    background: none;
    gap: 20px;
  }
}
.p-lp .example .tab__panel-box {
  display: none;
}
@media (max-width: 767.8px) {
  .p-lp .example .tab__panel-box {
    display: flex !important;
    flex-direction: column;
    background: #fff;
    padding: 50px 30px;
    gap: 30px;
  }
}
.p-lp .example .tab__panel-box.is-show {
  display: grid;
  width: 100%;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.p-lp .example .tab__panel-img {
  width: 100%;
  aspect-ratio: 5/2;
}
@media (max-width: 1023.8px) {
  .p-lp .example .tab__panel-img {
    aspect-ratio: unset;
  }
}
@media (max-width: 767.8px) {
  .p-lp .example .tab__panel-img {
    aspect-ratio: 2/1;
    order: 2;
  }
}
.p-lp .example .tab__panel-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-lp .example .tab__panel-text {
  color: #23333C;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767.8px) {
  .p-lp .example .tab__panel-text {
    order: 1;
  }
}
.p-lp .example .tab__panel-text h3 {
  line-height: 1;
  font-size: 28px;
}
@media (max-width: 767.8px) {
  .p-lp .example .tab__panel-text h3 {
    font-size: 30px;
  }
}
.p-lp .example .tab__panel-text p {
  font-size: 14px;
  line-height: 1.5;
}
@media (max-width: 767.8px) {
  .p-lp .example .tab__panel-text p {
    font-size: 16px;
  }
}
.p-lp .process {
  margin: 50px auto;
}
.p-lp .process--top {
  margin: 50px 0;
  text-align: center;
  color: #17769E;
}
.p-lp .process--top p {
  font-family: "Poppins", sans-serif !important;
  font-size: 18px;
  font-weight: 300;
}
@media (max-width: 767.8px) {
  .p-lp .process--top p {
    font-size: 28px;
  }
}
.p-lp .process--top h2 {
  line-height: 0.8;
  font-weight: 700;
}
@media (max-width: 767.8px) {
  .p-lp .process--top h2 {
    font-size: 30px;
  }
}
.p-lp .process .list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (max-width: 767.8px) {
  .p-lp .process .list {
    max-width: 500px;
    margin: 0 auto;
  }
}
.p-lp .process .list .item {
  display: grid;
  grid-template-columns: 70px 1fr 300px;
  gap: 20px;
  border-bottom: solid 1px #0E9FD6;
}
@media (max-width: 767.8px) {
  .p-lp .process .list .item {
    grid-template-columns: 70px repeat(5, 1fr);
    grid-template-rows: 70px auto;
    grid-template-areas: "step title title title title title" "article article article img img img";
  }
}
.p-lp .process .list .item:last-of-type {
  border: none;
}
.p-lp .process .list .item .num {
  width: 100%;
  height: 70px;
  display: grid;
  place-items: center;
}
@media (max-width: 767.8px) {
  .p-lp .process .list .item .num {
    grid-area: step;
  }
}
.p-lp .process .list .item .num pre {
  white-space: pre-line;
  text-align: center;
  line-height: 1;
  color: #fff;
}
.p-lp .process .list .item .num pre span {
  font-weight: 500;
  font-size: 32px;
}
.p-lp .process .list .item .num--1 {
  background: #4885C3;
}
.p-lp .process .list .item .num--2 {
  background: #1298D1;
}
.p-lp .process .list .item .num--3 {
  background: #1488CF;
}
.p-lp .process .list .item .num--4 {
  background: #1273D1;
}
.p-lp .process .list .item .num--5 {
  background: #1060D4;
}
.p-lp .process .list .item .text {
  color: #23333C;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 25px 30px 20px 0;
}
@media (max-width: 767.8px) {
  .p-lp .process .list .item .text {
    display: contents;
  }
}
.p-lp .process .list .item .text h3 {
  font-size: 24px;
  font-weight: 500;
  line-height: 0.8;
}
@media (max-width: 767.8px) {
  .p-lp .process .list .item .text h3 {
    grid-area: title;
    line-height: 70px;
  }
}
@media (max-width: 767.8px) {
  .p-lp .process .list .item .text article {
    grid-area: article;
    padding-bottom: 20px;
  }
}
.p-lp .process .list .item .img {
  width: 100%;
}
@media (max-width: 1023.8px) {
  .p-lp .process .list .item .img {
    display: flex;
  }
}
@media (max-width: 767.8px) {
  .p-lp .process .list .item .img {
    grid-area: img;
    aspect-ratio: 1/1;
    padding-bottom: 20px;
  }
}
.p-lp .process .list .item .img img {
  aspect-ratio: 16/9;
  width: 100%;
  object-fit: cover;
}
@media (max-width: 1023.8px) {
  .p-lp .process .list .item .img img {
    aspect-ratio: unset;
    padding: 20px 0;
  }
}
@media (max-width: 767.8px) {
  .p-lp .process .list .item .img img {
    aspect-ratio: 1/1;
    padding: unset;
  }
}

.p-company section {
  margin-top: 80px !important;
}
@media (max-width: 767.8px) {
  .p-company section {
    margin-top: 50px !important;
  }
}
@media (max-width: 767.8px) {
  .p-company section h2 {
    display: block;
    margin: 0 auto;
    width: 90%;
    font-size: 28px;
  }
}
.p-company .introduction {
  width: 900px;
  margin: 0 auto;
}
.p-company .introduction--inner {
  width: 90%;
  margin: 0 auto;
}
.p-company .introduction--inner article {
  margin: 50px 0 30px;
}
.p-company .introduction--inner h3 {
  font-weight: 400;
}
.p-company .introduction--inner .members {
  padding: 20px 0;
  margin-left: 10px;
  display: flex;
  gap: 10px;
}
@media (max-width: 767.8px) {
  .p-company .introduction--inner .members {
    margin-left: 10px;
    padding: 30px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}
.p-company .introduction--inner .members .member {
  width: 200px;
}
@media (max-width: 767.8px) {
  .p-company .introduction--inner .members .member {
    width: auto;
  }
}
.p-company .introduction--inner .members .member img {
  width: 100%;
  object-fit: contain;
}
@media (max-width: 767.8px) {
  .p-company .introduction--inner .history {
    padding-top: 30px;
  }
}
.p-company .introduction--inner .history dl {
  margin-left: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media (max-width: 767.8px) {
  .p-company .introduction--inner .history dl {
    margin-left: unset;
  }
}
.p-company .introduction--inner .history dl dt {
  color: #17769E;
  text-align: right;
  width: 6em;
  padding: 0.5em 2em 0.5em 0.5em;
  position: relative;
}
.p-company .introduction--inner .history dl dt::after {
  content: "●";
  position: absolute;
  right: -0.7em;
  top: 12px;
  font-size: 8px;
  color: #17769E;
}
.p-company .introduction--inner .history dl dd {
  width: calc(100% - 6em);
  padding: 0.5em 2em 1.2em 2em;
  border-left: 1px solid #17769E;
}
@media (max-width: 767.8px) {
  .p-company .introduction--inner .history dl dd {
    padding-right: 0;
  }
}
.p-company .overview {
  width: 900px;
  margin: 0 auto 50px;
}
.p-company .overview table, .p-company .overview td, .p-company .overview th {
  border: none;
}
.p-company .overview table {
  margin: 30px 0;
  width: 100%;
  border-top: solid 1px rgba(217, 217, 217, 0.7);
  border-spacing: 0;
}
.p-company .overview table tbody tr td {
  border-bottom: solid 1px rgba(217, 217, 217, 0.7);
  border-collapse: collapse;
}
.p-company .overview table tbody tr .key {
  width: 200px;
  padding: 20px 50px;
}
@media (max-width: 767.8px) {
  .p-company .overview table tbody tr .key {
    width: 125px;
    padding: 20px 20px;
  }
}
.p-company .overview .map {
  width: 100%;
  aspect-ratio: 16/9;
}
.p-company .overview .map iframe {
  width: 100%;
  height: 100%;
}

.p-privacy-policy--inner {
  max-width: 900px;
  width: 80%;
  margin: 50px auto;
  line-height: 1.8;
}
.p-privacy-policy--inner h2 {
  color: #17769E;
}
.p-privacy-policy--inner p {
  margin: 30px 10px;
}

.modaal-container {
  width: 100% !important;
  height: 100% !important;
}

.l-body--modal footer {
  margin-bottom: 0 !important;
}

.l-body {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  min-height: 100vh;
}
.l-body main {
  flex: 1;
}

body {
  overflow-x: hidden;
}
body:has(.l-header--archive) {
  background-color: #E2F3FF;
}
body:has(#sold) {
  background: #F4FAFF;
}
body:has(#ship) {
  background: #E2F3FF;
}

pre {
  white-space: pre-line;
}

/*# sourceMappingURL=style.css.map */
