@charset "UTF-8";
/* Top
   ----------------------------------------------------------------- */
/* ==========================================================================
   Foundation
   ========================================================================== */
/* Reset
   ----------------------------------------------------------------- */
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}

/* Config
   ----------------------------------------------------------------- */
/**
 * fitImage.
 *
 * どの画像サイズでもいい感じに表示するための関数
 * デザインサイズのwidthとheightから画像の比率を求め、画像の表示サイズを算出する
 * ※ 親タグに幅を持たせること
 * @example
 * - HTML
 * <div class="fit-image">
 *   <div class="fit-image__inner">
 *     <img src="..." alt="..." />
 *   </div>
 * </div>
 *
 * - CSS
 * .fit-image {
 *   @include fitImage(120, 90);
 *   or
 *   @include fitImage(120, 90, cover, #000);
 * }
 */
/* Font Face
   ----------------------------------------------------------------- */
/* Config
   ----------------------------------------------------------------- */
/**
 * fitImage.
 *
 * どの画像サイズでもいい感じに表示するための関数
 * デザインサイズのwidthとheightから画像の比率を求め、画像の表示サイズを算出する
 * ※ 親タグに幅を持たせること
 * @example
 * - HTML
 * <div class="fit-image">
 *   <div class="fit-image__inner">
 *     <img src="..." alt="..." />
 *   </div>
 * </div>
 *
 * - CSS
 * .fit-image {
 *   @include fitImage(120, 90);
 *   or
 *   @include fitImage(120, 90, cover, #000);
 * }
 */
@font-face {
  font-family: "Trajan Pro";
  font-style: normal;
  font-weight: 400;
  src: url("/assets/fonts/TrajanPro-Regular.woff2") format("woff2");
}
@font-face {
  font-family: "Trajan Pro";
  font-style: normal;
  font-weight: 600;
  src: url("/assets/fonts/TrajanPro-Bold.woff2") format("woff2");
}
/* Base
   ----------------------------------------------------------------- */
body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Noto Serif JP", serif;
  color: #333;
}

a {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  text-decoration: none;
  color: inherit;
}

input,
button {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

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

@media only screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

@media only screen and (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}

/* Animation
   ----------------------------------------------------------------- */
/* Circle (SVG)
   ----------------------------------------------------------------- */
@-webkit-keyframes circle {
  0% {
    stroke-dasharray: 0 103.62px;
  }
  100% {
    stroke-dasharray: 103.62px 103.62px;
  }
}
@keyframes circle {
  0% {
    stroke-dasharray: 0 103.62px;
  }
  100% {
    stroke-dasharray: 103.62px 103.62px;
  }
}
/* Slide
   ----------------------------------------------------------------- */
@-webkit-keyframes slideRightActive {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-9%);
  }
}
@keyframes slideRightActive {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-9%);
  }
}
@-webkit-keyframes slideRightActiveSp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-12%);
  }
}
@keyframes slideRightActiveSp {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-12%);
  }
}
/* Zoom up
   ----------------------------------------------------------------- */
@-webkit-keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
/* ==========================================================================
   Layout
   ========================================================================== */
/* Layout
   ----------------------------------------------------------------- */
/* Config
   ----------------------------------------------------------------- */
/**
 * fitImage.
 *
 * どの画像サイズでもいい感じに表示するための関数
 * デザインサイズのwidthとheightから画像の比率を求め、画像の表示サイズを算出する
 * ※ 親タグに幅を持たせること
 * @example
 * - HTML
 * <div class="fit-image">
 *   <div class="fit-image__inner">
 *     <img src="..." alt="..." />
 *   </div>
 * </div>
 *
 * - CSS
 * .fit-image {
 *   @include fitImage(120, 90);
 *   or
 *   @include fitImage(120, 90, cover, #000);
 * }
 */
/* Wrapper
   ----------------------------------------------------------------- */
.l-wrap {
  position: relative;
  z-index: 1;
}

/* Container
   ----------------------------------------------------------------- */
.l-container {
  position: relative;
  margin-top: 67px;
}
@media only screen and (min-width: 769px) {
  .l-container {
    margin-top: 84px;
  }
}
@media only screen and (min-width: 1341px) {
  .l-container {
    margin-top: 134px;
  }
}

/* Inner
   ----------------------------------------------------------------- */
@media only screen and (max-width: 768px) {
  .l-inner {
    padding: 0 5.3333333333vw;
  }
}
@media only screen and (min-width: 769px) {
  .l-inner {
    max-width: 1320px;
    padding: 0 40px;
    margin: auto;
  }
}

/* Header
   ----------------------------------------------------------------- */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}
@media only screen and (min-width: 1341px) {
  .l-header__inner {
    padding: 20px 30px 17px 24px;
  }
}

.l-header__logo-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: inherit;
}
@media only screen and (max-width: 1340px) {
  .l-header__logo-area {
    width: 100%;
  }
}

.l-header__head {
  display: flex;
}

.l-header__logo {
  width: 257px;
}
@media only screen and (min-width: 769px) {
  .l-header__logo {
    width: 320px;
  }
}
@media only screen and (min-width: 1341px) {
  .l-header__logo {
    width: 330px;
  }
}

.l-header__hamburger {
  position: relative;
  z-index: 1;
  width: 67px;
  height: 67px;
  display: none;
  margin-right: 3px;
}
@media (hover: hover) {
  .l-header__hamburger:hover {
    cursor: pointer;
  }
}
@media (hover: none) {
  .l-header__hamburger:active {
    cursor: pointer;
  }
}
@media only screen and (max-width: 1340px) {
  .l-header__hamburger {
    display: block;
    margin-left: auto;
  }
}
.l-header__hamburger.is-active .l-header__hamburger__line:nth-child(1) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.l-header__hamburger.is-active .l-header__hamburger__line:nth-child(2) {
  display: none;
}
.l-header__hamburger.is-active .l-header__hamburger__line:nth-child(3) {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-header__hamburger_inner {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  display: block;
  width: 30px;
  height: 24px;
}

.l-header__hamburger__line {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  background: #1f2c63;
  transition: 0.3s;
}
.l-header__hamburger__line:nth-child(1) {
  top: 0;
}
.l-header__hamburger__line:nth-child(2) {
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-header__hamburger__line:nth-child(3) {
  bottom: 0;
}

@media only screen and (max-width: 1340px) {
  .l-header__menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -1;
    overflow: auto;
    opacity: 0;
    will-change: opacity;
    pointer-events: none;
  }
  .l-header__menu.is-open {
    opacity: 1;
    pointer-events: auto;
  }
}

@media only screen and (max-width: 1340px) {
  .l-header__nav {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1340px) {
  .l-header__nav .l-header__nav__list {
    padding-bottom: 13.3333333333vw;
  }
}
@media only screen and (min-width: 1341px) {
  .l-header__nav .l-header__nav__list {
    display: flex;
    align-items: center;
  }
}
.l-header__nav .l-header__nav__item {
  padding-top: 10.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .l-header__nav .l-header__nav__item {
    padding-top: 4.8611111111vw;
  }
}
@media only screen and (min-width: 1341px) {
  .l-header__nav .l-header__nav__item {
    margin-left: 1.6666666667vw;
    padding: 0;
  }
}
@media only screen and (min-width: 1341px) {
  .l-header__nav .l-header__nav__item.l-header__nav__item--privacy {
    display: none;
  }
}
@media only screen and (min-width: 1341px) {
  .l-header__nav .l-header__nav__item.l-header__nav__item--contact {
    margin-left: 2.4305555556vw;
  }
}
.l-header__nav .l-header__nav__item > a:not(.l-header__nav__contact) {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1.3333333333vw;
}
@media only screen and (min-width: 1341px) {
  .l-header__nav .l-header__nav__item > a:not(.l-header__nav__contact) {
    padding: 5px;
  }
}
.l-header__nav .l-header__nav__text {
  font-size: 6.4vw;
  line-height: 1;
}
@media only screen and (min-width: 769px) {
  .l-header__nav .l-header__nav__text {
    font-size: 3.1209362809vw;
  }
}
@media only screen and (min-width: 1341px) {
  .l-header__nav .l-header__nav__text {
    font-size: 14px;
    font-weight: bold;
  }
}
.l-header__nav .l-header__nav__text.l-header__nav__text--small {
  font-size: 5.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .l-header__nav .l-header__nav__text.l-header__nav__text--small {
    font-size: 2.7308192458vw;
  }
}
.l-header__nav .l-header__nav__icon {
  margin-left: 2.4vw;
  width: 4.8vw;
}
@media only screen and (min-width: 769px) {
  .l-header__nav .l-header__nav__icon {
    width: 1.9444444444vw;
  }
}
@media only screen and (min-width: 1341px) {
  .l-header__nav .l-header__nav__icon {
    width: 12px;
    margin-left: 6px;
    transform: translateY(4px);
  }
}
.l-header__nav .l-header__nav__icon img {
  vertical-align: top;
}
.l-header__nav .l-header__nav__contact {
  display: block;
  border: 1px solid #1f2c63;
  background: #1f2c63;
  padding: 6.6666666667vw 0 5.6vw;
  color: #fff;
  text-align: center;
  margin: auto;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
}
@media only screen and (min-width: 769px) {
  .l-header__nav .l-header__nav__contact {
    padding: 3.125vw 0 2.4305555556vw;
    width: 34.7222222222vw;
  }
}
@media only screen and (min-width: 1341px) {
  .l-header__nav .l-header__nav__contact {
    padding: 20px 0 17px;
    width: 155px;
  }
}
@media (hover: hover) {
  .l-header__nav .l-header__nav__contact:hover {
    background: #fff;
    color: #1f2c63;
  }
}
@media (hover: none) {
  .l-header__nav .l-header__nav__contact:active {
    background: #fff;
    color: #1f2c63;
  }
}

/* Footer
   ----------------------------------------------------------------- */
.l-footer {
  padding-top: 5.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .l-footer {
    padding-top: 39px;
  }
}
@media only screen and (min-width: 769px) {
  .l-footer__logo {
    width: 608px;
    margin: auto;
  }
}

.l-footer__attention {
  font-size: 4.8vw;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 769px) {
  .l-footer__attention {
    font-size: 17px;
    letter-spacing: 0.06em;
  }
}
.l-footer__attention:not(:first-child) {
  margin-top: 3.7333333333vw;
}
@media only screen and (min-width: 769px) {
  .l-footer__attention:not(:first-child) {
    margin-top: 14px;
  }
}

.l-footer__foot {
  border-top: 1px solid rgba(47, 47, 47, 0.16);
  padding: 8.8vw 0 10.6666666667vw;
  margin-top: 6.1333333333vw;
}
@media only screen and (min-width: 769px) {
  .l-footer__foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 27px;
    padding: 33px 0 40px;
  }
}

.l-footer__list {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .l-footer__list .l-footer__list__item {
    text-align: center;
    margin-bottom: 2.6666666667vw;
    width: 100%;
  }
}
@media only screen and (min-width: 769px) {
  .l-footer__list .l-footer__list__item {
    margin-right: 20px;
    display: table;
  }
}

@media only screen and (max-width: 768px) {
  .l-footer__copyright {
    margin-top: 5.3333333333vw;
    text-align: center;
  }
}

/* ==========================================================================
   Object
   ========================================================================== */
/* Component
  ----------------------------------------------------------------- */
/* Component
   ----------------------------------------------------------------- */
/* Title
   ----------------------------------------------------------------- */
.c-title {
  font-size: 8.5333333333vw;
  line-height: 1.46;
  text-align: center;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 769px) {
  .c-title {
    font-size: 50px;
    letter-spacing: 0.06em;
  }
}
.c-title--middle {
  font-size: 6.9333333333vw;
  line-height: 1.46;
}
@media only screen and (min-width: 769px) {
  .c-title--middle {
    font-size: 40px;
    line-height: 1;
  }
}

/* Text
   ----------------------------------------------------------------- */
.c-text {
  font-size: 4.8vw;
  line-height: 2.1;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 769px) {
  .c-text {
    font-size: 18px;
    letter-spacing: 0.06em;
  }
  .c-text.add230509-txt {
    font-size: 20px;
  }
}

/* Font Face
   ----------------------------------------------------------------- */
.c-font--en {
  font-family: "Trajan Pro", serif;
}

.c-font--en2 {
  font-family: "Sorts Mill Goudy", serif;
}

/* Link Text
   ----------------------------------------------------------------- */
@media (hover: hover) {
  .c-link-text:hover {
    text-decoration: underline;
  }
}
@media (hover: none) {
  .c-link-text:active {
    text-decoration: underline;
  }
}
@media only screen and (min-width: 769px) {
  .c-link-text--tel {
    pointer-events: none;
  }
}

/* Modal
   ----------------------------------------------------------------- */
.c-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  z-index: 1000000;
  transition: opacity 0.3s;
}
.c-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  z-index: 1;
  overflow: auto;
}

.c-modal__content {
  position: relative;
  z-index: 1;
  margin-right: auto;
  margin-left: auto;
}

.c-modal__close {
  position: absolute;
  top: -10.9333333333vw;
  right: 0;
  z-index: 1;
  width: 6.9333333333vw;
  height: 6.9333333333vw;
}
@media (hover: hover) {
  .c-modal__close:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}
@media (hover: none) {
  .c-modal__close:active {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}
@media only screen and (min-width: 769px) {
  .c-modal__close {
    top: -0.5555555556vw;
    right: -8.6805555556vw;
    width: 3.8194444444vw;
    height: 3.8194444444vw;
  }
}
@media (hover: hover) {
  .c-modal__close:hover {
    cursor: pointer;
  }
}
@media (hover: none) {
  .c-modal__close:active {
    cursor: pointer;
  }
}
.c-modal__close .c-modal__close_inner {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  margin: auto;
  display: block;
}
@media only screen and (min-width: 769px) {
  .c-modal__close .c-modal__close_inner {
    width: 3.8194444444vw;
    height: 3.8194444444vw;
  }
}
.c-modal__close .c-modal__close_inner::before, .c-modal__close .c-modal__close_inner::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #1f2c63;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .c-modal__close .c-modal__close_inner::before, .c-modal__close .c-modal__close_inner::after {
    border-radius: 999px;
  }
}
@media only screen and (min-width: 769px) {
  .c-modal__close .c-modal__close_inner::before, .c-modal__close .c-modal__close_inner::after {
    height: 1px;
  }
}
.c-modal__close .c-modal__close_inner::before {
  transform: rotate(45deg);
}
.c-modal__close .c-modal__close_inner::after {
  transform: rotate(-45deg);
}

/* Parallax
   ----------------------------------------------------------------- */
.c-parallax {
  position: -webkit-sticky;
  position: sticky;
  top: 67px;
}
@media only screen and (min-width: 769px) {
  .c-parallax {
    top: 134px;
  }
}
@media only screen and (max-width: 768px) {
  .c-parallax--only-sp {
    position: -webkit-sticky;
    position: sticky;
    top: 67px;
  }
}

@media only screen and (min-width: 769px) {
  .c-parallax--only-pc {
    position: -webkit-sticky;
    position: sticky;
    top: 134px;
  }
}

/* Project
  ----------------------------------------------------------------- */
/* Common parts in project
   ----------------------------------------------------------------- */
/* Config
   ----------------------------------------------------------------- */
/**
 * fitImage.
 *
 * どの画像サイズでもいい感じに表示するための関数
 * デザインサイズのwidthとheightから画像の比率を求め、画像の表示サイズを算出する
 * ※ 親タグに幅を持たせること
 * @example
 * - HTML
 * <div class="fit-image">
 *   <div class="fit-image__inner">
 *     <img src="..." alt="..." />
 *   </div>
 * </div>
 *
 * - CSS
 * .fit-image {
 *   @include fitImage(120, 90);
 *   or
 *   @include fitImage(120, 90, cover, #000);
 * }
 */
/* Column Center
   ----------------------------------------------------------------- */
/* Breadcrumb
   ----------------------------------------------------------------- */
/* Circle
   ----------------------------------------------------------------- */
.p-circle {
  width: 100%;
  fill: none;
}
.p-circle__background,
.p-circle__border {
  opacity: 0;
  stroke-width: 1;
}
@media only screen and (max-width: 768px) {
  .p-circle__background,
.p-circle__border {
    stroke: #000;
  }
}
@media only screen and (min-width: 769px) {
  .p-circle__background,
.p-circle__border {
    stroke: #fff;
  }
}
.p-circle__background--black,
.p-circle__border--black {
  stroke: #000;
}

/* Pagination
   ----------------------------------------------------------------- */
.p-pagination {
  position: relative;
  margin: 1px;
  width: 9.3333333333vw;
  height: 9.3333333333vw;
  background: transparent;
  opacity: 1;
  margin: 0 !important;
}
@media only screen and (min-width: 769px) {
  .p-pagination {
    width: 24px;
    height: 24px;
  }
}
.p-pagination.is-active .p-circle__background {
  opacity: 0.45;
}
.p-pagination.is-active .p-circle__border {
  opacity: 1;
  -webkit-animation: circle 6s linear;
          animation: circle 6s linear;
}
.p-pagination__dot {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 1.92vw;
  height: 1.92vw;
}
@media only screen and (max-width: 768px) {
  .p-pagination__dot {
    background: #000;
  }
}
@media only screen and (min-width: 769px) {
  .p-pagination__dot {
    width: 5px;
    height: 5px;
    background: #fff;
  }
}
.p-pagination__dot--black {
  background: #000;
}

/* Navigation Button
   ----------------------------------------------------------------- */
.p-nav-button {
  display: inline-block;
}
@media only screen and (max-width: 768px) {
  .p-nav-button {
    width: 2.9333333333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-nav-button {
    width: 2.3611111111vw;
  }
}
@media (hover: hover) {
  .p-nav-button:hover {
    cursor: pointer;
  }
}
@media (hover: none) {
  .p-nav-button:active {
    cursor: pointer;
  }
}
.p-nav-button[aria-disabled=true] {
  fill: rgba(0, 0, 0, 0.2);
}
.p-nav-button svg {
  display: block;
  width: 100%;
  height: 100%;
}

/* About
   ----------------------------------------------------------------- */
.p-about {
  background: #fafbfc;
  margin-top: 21.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .p-about {
    margin-top: 120px;
  }
}
.p-about__inner {
  padding: 17.3333333333vw 0 13.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .p-about__inner {
    display: flex;
    align-items: flex-start;
    padding: 105px 0 85px;
  }
}

@media only screen and (min-width: 769px) {
  .p-about__title {
    margin-right: 40px;
    flex-shrink: 0;
  }
}

.p-about__desc {
  margin: 8vw 0 0 0;
}
@media only screen and (min-width: 769px) {
  .p-about__desc {
    margin: 0 0 0 auto;
    width: 60%;
  }
}

.p-about__item {
  padding-bottom: 2.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .p-about__item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
  }
}
.p-about__item:not(:first-child) {
  padding-top: 2.1333333333vw;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}
@media only screen and (min-width: 769px) {
  .p-about__item:not(:first-child) {
    padding-top: 18px;
  }
}
@media only screen and (max-width: 768px) {
  .p-about__item .p-about__item__name {
    font-size: 5.3333333333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-about__item .p-about__item__name {
    font-size: 21px;
  }
}
.p-about__item .p-about__item__desc {
  margin: 0 0 0 5.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .p-about__item .p-about__item__desc {
    margin: 0 0 0 30px;
    text-align: right;
    font-size: 21px;
  }
}
.p-about__item .p-about__item__desc a {
  display: block;
}

/* Contact
   ----------------------------------------------------------------- */
.p-contact {
  position: relative;
  overflow: hidden;
}
@media only screen and (max-width: 768px) {
  .p-contact {
    padding: 21.3333333333vw 0 25.3333333333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact {
    height: 500px;
  }
}
.p-contact__img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}
@media only screen and (min-width: 769px) {
  .p-contact__img {
    min-width: 1440px;
  }
}
.p-contact__img::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.37);
}

.p-contact__inner {
  position: relative;
}
@media only screen and (min-width: 769px) {
  .p-contact__inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    height: 100%;
  }
}

@media only screen and (min-width: 769px) {
  .p-contact__text-box,
.p-contact__button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
  }
}

.p-contact__text-box {
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .p-contact__text-box {
    left: 40px;
  }
}

@media only screen and (max-width: 768px) {
  .p-contact__title {
    font-size: 13.3333333333vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact__title {
    text-align: left;
  }
}

.p-contact__desc {
  margin-top: 6.6666666667vw;
  line-height: 1.77;
}
@media only screen and (max-width: 768px) {
  .p-contact__desc {
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact__desc {
    margin-top: 10px;
    font-size: 22px;
    line-height: 1.63;
  }
}

.p-contact__button {
  display: block;
  font-size: 4.2666666667vw;
  line-height: 1;
  padding: 10.4vw 0 10.1333333333vw;
  text-align: center;
  color: #fff;
  border: 1px solid #fff;
  transition: color 0.3s, background 0.3s;
}
@media only screen and (max-width: 768px) {
  .p-contact__button {
    margin-top: 7.4666666667vw;
  }
}
@media only screen and (min-width: 769px) {
  .p-contact__button {
    font-size: 20px;
    padding: 36px 0 35px;
    right: 40px;
    width: 33.4%;
  }
}
@media (hover: hover) {
  .p-contact__button:hover {
    background: #fff;
    color: #000;
  }
}
@media (hover: none) {
  .p-contact__button:active {
    background: #fff;
    color: #000;
  }
}

/* Main Visual
   ----------------------------------------------------------------- */
.main-visual {
  position: relative;
}
.main-visual .swiper-wrapper {
  will-change: transform;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition-timing-function: cubic-bezier(0.7, 0.01, 0.4, 1);
}
.main-visual__inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
}

.main-visual__slide {
  width: 100%;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  will-change: transform;
  position: relative;
}

.main-visual__swiper {
  transition: opacity 0.6s ease, transform 0.3s ease;
  width: 100%;
}

/* Proposal
   ----------------------------------------------------------------- */
.proposal {
  overflow: hidden;
  background: #f7f7f7;
  padding: 19.4666666667vw 0 21.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .proposal {
    padding: 105px 0 120px;
  }
}
.proposal .swiper-pagination-progressbar {
  background: #d3d3d3;
  border-radius: 999px;
  height: 1px;
}
.proposal .swiper-pagination-progressbar-fill {
  top: -1px !important;
  transform: scale(1) !important;
  background: #1f2c63;
  border-radius: 999px;
  overflow: hidden;
  width: 100%;
  height: calc(100% + 2px);
}
.proposal__title {
  text-align: center;
}

.proposal__slider {
  overflow: hidden;
  position: relative;
  margin: 37px auto 0;
}
@media only screen and (min-width: 769px) {
  .proposal__slider {
    width: 92.9%;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 768px) {
  .proposal__slider .proposal__slide {
    padding: 0 5.3333333333vw;
  }
}
@media only screen and (min-width: 769px) {
  .proposal__slider .proposal__slide {
    padding: 0 1.3888888889vw;
  }
}
.proposal__slider .proposal__slide__img {
  display: block;
}
.proposal__slider .proposal__slide__img img {
  width: 100%;
}

.proposal__pagination-box {
  position: relative;
  margin: 9.3333333333vw auto 0;
  bottom: 0;
}
@media only screen and (min-width: 769px) {
  .proposal__pagination-box {
    margin-top: 35px;
  }
}

.proposal__pagination {
  position: static;
}
.proposal__pagination .p-pagination.is-active .p-circle__border {
  opacity: 1;
  -webkit-animation: circle 7.5s linear;
          animation: circle 7.5s linear;
}

.proposal__nav {
  position: absolute;
  bottom: 48vw;
  display: flex;
  justify-content: space-between;
  left: 0;
  right: 0;
  z-index: 1;
  margin: auto;
}
@media only screen and (max-width: 768px) {
  .proposal__nav {
    width: 92.8%;
  }
}
@media only screen and (min-width: 769px) {
  .proposal__nav {
    width: 100%;
    bottom: 33.6805555556vw;
  }
}

.proposal__button {
  display: flex;
  align-items: center;
  border: 1px solid #1f2c63;
  background: #1f2c63;
  color: #fff;
  transition: background 0.3s, color 0.3s;
  padding: 4.5333333333vw 0 3.7333333333vw 5.8666666667vw;
  transition: background 0.3s, border-color 0.3s, color 0.3s;
  transform: translateY(-1px);
  width: 80vw;
  margin: 10.6666666667vw auto 0;
  font-size: 5.3333333333vw;
  letter-spacing: 0.06em;
}
@media only screen and (min-width: 769px) {
  .proposal__button {
    padding: 25px 0 22px 34px;
    margin: 48px auto 0;
    font-size: 20px;
    width: 330px;
  }
}
@media (hover: hover) {
  .proposal__button:hover {
    background: #fff;
    color: #1f2c63;
  }
  .proposal__button:hover .proposal__button__icon {
    fill: #1f2c63;
  }
}
@media (hover: none) {
  .proposal__button:active {
    background: #fff;
    color: #1f2c63;
  }
  .proposal__button:active .proposal__button__icon {
    fill: #1f2c63;
  }
}
.proposal__button .proposal__button__icon {
  margin-left: 4.8vw;
  width: 4vw;
  transition: fill 0.3s;
  transform: translateY(-2px);
  fill: #fff;
}
@media only screen and (min-width: 769px) {
  .proposal__button .proposal__button__icon {
    margin-left: 21px;
    width: 15px;
  }
}
.proposal__button .proposal__button__icon svg {
  display: block;
  width: 100%;
}

/* Movie
   ----------------------------------------------------------------- */
.movie {
  padding: 21.3333333333vw 0 18.6666666667vw;
  overflow: hidden;
}
@media only screen and (min-width: 769px) {
  .movie {
    padding: 122px 0 100px;
  }
}
.movie__slider {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-top: 8.8vw;
}
@media only screen and (max-width: 768px) {
  .movie__slider {
    padding-bottom: 18.6666666667vw;
  }
}
@media only screen and (min-width: 769px) {
  .movie__slider {
    width: 90%;
    margin: 47px auto 0;
  }
}

.movie__slide .movie__slide__img {
  position: relative;
}
@media (hover: hover) {
  .movie__slide .movie__slide__img:hover {
    cursor: pointer;
  }
  .movie__slide .movie__slide__img:hover .movie__slide__icon .icon-play__border {
    fill-opacity: 1;
    stroke: #1f2c63;
  }
  .movie__slide .movie__slide__img:hover .movie__slide__icon .icon-play__core {
    fill-opacity: 1;
  }
}
@media (hover: none) {
  .movie__slide .movie__slide__img:active {
    cursor: pointer;
  }
  .movie__slide .movie__slide__img:active .movie__slide__icon .icon-play__border {
    fill-opacity: 1;
    stroke: #1f2c63;
  }
  .movie__slide .movie__slide__img:active .movie__slide__icon .icon-play__core {
    fill-opacity: 1;
  }
}
.movie__slide .movie__slide__img img {
  width: 100%;
}
.movie__slide .movie__slide__icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 768px) {
  .movie__slide .movie__slide__icon {
    width: 13.3333333333vw;
  }
}
@media (hover: hover) {
  .movie__slide .movie__slide__icon:hover {
    cursor: pointer;
  }
  .movie__slide .movie__slide__icon:hover .icon-play__border {
    fill-opacity: 1;
    stroke: #1f2c63;
  }
  .movie__slide .movie__slide__icon:hover .icon-play__core {
    fill-opacity: 1;
  }
}
@media (hover: none) {
  .movie__slide .movie__slide__icon:active {
    cursor: pointer;
  }
  .movie__slide .movie__slide__icon:active .icon-play__border {
    fill-opacity: 1;
    stroke: #1f2c63;
  }
  .movie__slide .movie__slide__icon:active .icon-play__core {
    fill-opacity: 1;
  }
}
.movie__slide .movie__slide__icon svg {
  width: 100%;
  display: block;
}
.movie__slide .icon-play .icon-play__border {
  transition: fill-opacity 0.5s, stroke 0.4s;
  fill-opacity: 0;
  stroke: #fff;
}
.movie__slide .icon-play .icon-play__core {
  transition: fill-opacity 0.5s;
  fill-opacity: 0;
}
.movie__slide .movie__slide__text-area {
  margin-top: 3.7333333333vw;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .movie__slide .movie__slide__text-area {
    height: 21.3333333333vw;
  }
}
@media only screen and (min-width: 769px) {
  .movie__slide .movie__slide__text-area {
    margin-top: 16px;
    width: 100%;
    padding: 0;
  }
}
.movie__slide .movie__slide__caption {
  font-size: 4.2666666667vw;
  display: block;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 769px) {
  .movie__slide .movie__slide__caption {
    font-size: 16px;
  }
}
.movie__slide .movie__slide__caption:not(:first-child) {
  margin-top: 1.6vw;
}
@media only screen and (min-width: 769px) {
  .movie__slide .movie__slide__caption:not(:first-child) {
    margin-top: 3px;
  }
}

@media only screen and (min-width: 769px) {
  .movie__pagination {
    position: absolute;
    bottom: 85px !important;
    left: auto !important;
    right: 25px;
    display: flex;
    justify-content: space-between;
    width: auto !important;
    display: table;
    z-index: 20;
  }
}

.movie__nav {
  position: absolute;
  bottom: 4vw;
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
@media only screen and (max-width: 768px) {
  .movie__nav {
    width: 94.4vw;
    left: 50%;
    margin: auto;
    transform: translateX(-50%);
  }
}
@media only screen and (min-width: 769px) {
  .movie__nav {
    fill: #fff;
    right: 40px;
    bottom: 111px;
    width: 206px;
  }
}

/* Modal Movie
   ----------------------------------------------------------------- */
.modal-movie {
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.modal-movie.is-open {
  opacity: 1;
  pointer-events: auto;
}
.modal-movie__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.modal-movie__body {
  width: 89.8666666667vw;
  margin: auto;
}
@media only screen and (min-width: 769px) {
  .modal-movie__body {
    width: 74.3055555556vw;
  }
}

.modal-movie__video {
  position: relative;
}

.modal-movie__video__inner {
  padding-top: 56.25%;
}
.modal-movie__video__inner video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.modal-movie__text-area {
  margin-top: 3.7333333333vw;
  background: #fff;
}
@media only screen and (max-width: 768px) {
  .modal-movie__text-area {
    height: 21.3333333333vw;
  }
}
@media only screen and (min-width: 769px) {
  .modal-movie__text-area {
    margin-top: 16px;
    width: 100%;
    padding: 0;
  }
}

.modal-movie__caption {
  font-size: 4.2666666667vw;
  display: block;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 769px) {
  .modal-movie__caption {
    font-size: 16px;
  }
}
.modal-movie__caption:not(:first-child) {
  margin-top: 1.6vw;
}
@media only screen and (min-width: 769px) {
  .modal-movie__caption:not(:first-child) {
    margin-top: 3px;
  }
}

/* Image With Caption
   ----------------------------------------------------------------- */
.img-with-caption {
  position: relative;
}
.img-with-caption__text {
  position: absolute;
  left: 5px;
  bottom: 3px;
  font-size: 12px;
  line-height: 1.4;
  letter-spacing: 0.15em;
  color: #fff;
}
@media only screen and (min-width: 769px) {
  .img-with-caption__text {
    left: 20px;
    bottom: 13px;
    font-size: 16px;
    line-height: 1.75;
  }
}

/* Partner
   ----------------------------------------------------------------- */
.partner + .partner {
  margin-top: 18.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .partner + .partner {
    margin-top: 100px;
  }
}
.partner__kv {
  margin-top: 9.0666666667vw;
}
@media only screen and (min-width: 769px) {
  .partner__kv {
    margin-top: 52px;
  }
}

/* Introduction
   ----------------------------------------------------------------- */
.introduction {
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 769px) {
  .introduction {
    display: flex;
    align-items: stretch;
    letter-spacing: 0.06em;
  }
}
@media only screen and (min-width: 769px) {
  .introduction.introduction--designer {
    margin-top: 56px;
  }
}
@media only screen and (max-width: 768px) {
  .introduction.introduction--designer .introduction__name {
    margin-top: 1.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .introduction.introduction--designer .introduction__main {
    margin-top: 8vw;
  }
}
.introduction__text-box--partner-shipyard {
  position: relative;
  padding: 13.8666666667vw 0 1.8666666667vw;
}
@media only screen and (min-width: 769px) {
  .introduction__text-box--partner-shipyard {
    width: 55vw;
    padding: 8.9583333333vw 5vw 0.6944444444vw 6.9444444444vw;
  }
}

.introduction__text-box--partner-designer {
  position: relative;
  padding: 20vw 0 1.8666666667vw;
}
@media only screen and (min-width: 769px) {
  .introduction__text-box--partner-designer {
    width: 55vw;
    padding: 11.1111111111vw 5vw 0.6944444444vw 6.9444444444vw;
  }
}

.introduction__name-plate {
  position: absolute;
  left: 0;
  width: 100%;
}

.introduction__name-plate--partner-shipyard {
  bottom: 0;
}

.introduction__name-plate--partner-designer {
  top: -1.8666666667vw;
}
@media only screen and (min-width: 769px) {
  .introduction__name-plate--partner-designer {
    top: 0;
  }
}

@media only screen and (min-width: 769px) {
  .introduction__main {
    width: 45vw;
  }
}
@media only screen and (min-width: 769px) {
  .introduction__main img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

@media only screen and (max-width: 768px) {
  .introduction__imgs {
    transform: none !important;
    transition: none !important;
    opacity: 1 !important;
  }
}
@media only screen and (max-width: 768px) {
  .introduction__imgs.introduction__imgs--designer {
    margin-top: 8vw;
  }
}

.introduction__title {
  font-size: 6.9333333333vw;
}
@media only screen and (max-width: 768px) {
  .introduction__title {
    text-align: center;
  }
}
@media only screen and (min-width: 769px) {
  .introduction__title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    font-size: 2.0833333333vw;
  }
}
.introduction__title .introduction__title--large-line-height {
  line-height: 1.69;
}
.introduction__title .introduction__title__kana {
  font-size: 3.2vw;
  display: block;
}
@media only screen and (min-width: 769px) {
  .introduction__title .introduction__title__kana {
    font-size: 1.1111111111vw;
  }
}

.introduction__desc {
  margin-top: 6.6666666667vw;
  font-size: 4.8vw;
}
@media only screen and (min-width: 769px) {
  .introduction__desc {
    font-size: 1.25vw;
    padding: 0;
    margin-top: 2.7777777778vw;
  }
}

.introduction__name {
  margin-top: 8vw;
  font-size: 3.2vw;
}
@media only screen and (min-width: 769px) {
  .introduction__name {
    padding: 0;
    margin-top: 5.5555555556vw;
    font-size: 1.25vw;
    text-align: right;
  }
}

/* Topics
   ----------------------------------------------------------------- */
.topics {
  margin-top: 22.4vw;
}
@media only screen and (min-width: 769px) {
  .topics {
    margin-top: 120px;
  }
}
.topics__kv {
  margin-top: 8.8vw;
}
@media only screen and (min-width: 769px) {
  .topics__kv {
    margin-top: 47px;
  }
}
.topics__kv a {
  display: block;
}
@media (hover: hover) {
  .topics__kv a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}
@media (hover: none) {
  .topics__kv a:active {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}

.topics__title {
  margin-top: 8vw;
  font-size: 6.9333333333vw;
  text-align: center;
  letter-spacing: 0.15em;
}
@media only screen and (min-width: 769px) {
  .topics__title {
    margin-top: 47px;
    font-size: 30px;
  }
  .topics__title.add230509 {
    font-size: 35px;
  }
}

.topics__date {
  margin-top: 2.6666666667vw;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .topics__date {
    margin-top: 7px;
  }
  .topics__date.add230509 {
    font-size: 25px;
  }
}

.topics__desc {
  margin-top: 5.3333333333vw;
  text-align: center;
}
@media only screen and (min-width: 769px) {
  .topics__desc {
    margin-top: 33px;
  }
  .topics__desc.add230509 {
    font-size: 20px;
  }
}

.topics__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5.3333333333vw 0 4.5333333333vw;
  margin: 9.8666666667vw auto 0;
  max-width: 80vw;
  line-height: 1;
  border: 1px solid #1f2c63;
  background: #1f2c63;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}
@media only screen and (min-width: 769px) {
  .topics__button {
    margin-top: 25px;
    max-width: 300px;
    padding: 20px 0 17px;
  }
}
@media (hover: hover) {
  .topics__button:hover {
    background: #fff;
    color: #1f2c63;
  }
  .topics__button:hover .topics__button__icon {
    fill: #1f2c63;
  }
}
@media (hover: none) {
  .topics__button:active {
    background: #fff;
    color: #1f2c63;
  }
  .topics__button:active .topics__button__icon {
    fill: #1f2c63;
  }
}
.topics__button .topics__button__text {
  font-size: 5.8666666667vw;
}
@media only screen and (min-width: 769px) {
  .topics__button .topics__button__text {
    font-size: 22px;
  }
}
.topics__button .topics__button__icon {
  width: 4vw;
  margin-left: 2.4vw;
  transform: translateY(-1px);
  transition: fill 0.3s;
  fill: #fff;
}
@media only screen and (min-width: 769px) {
  .topics__button .topics__button__icon {
    width: 15px;
    margin-left: 9px;
  }
}

/* blog
   ----------------------------------------------------------------- */
.blog {
  background: #fafbfc;
  margin-top: 21.3333333333vw;
  padding-top: 18.6666666667vw;
  padding-bottom: 18.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .blog {
    margin-top: 110px;
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
.blog__desc {
  font-size: 4.8vw;
  margin-top: 5.5vw;
  text-align: center;
  line-height: 2.1;
  letter-spacing: 0.04em;
}
@media only screen and (min-width: 769px) {
  .blog__desc {
    font-size: 30px;
    letter-spacing: 0.06em;
    margin-top: 21px;
  }
}

.blog__content {
  display: flex;
  margin: 0 auto;
  flex-direction: column;
  margin-top: 9.8666666667vw;
}
@media only screen and (min-width: 769px) {
  .blog__content {
    justify-content: space-between;
    flex-direction: row;
    max-width: 720px;
    margin-top: 72px;
  }
}
@media only screen and (max-width: 768px) {
  .blog__content {
    gap: 5.3333333333vw;
  }
}

.blog__button {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 5.3333333333vw 0 4.5333333333vw;
  max-width: 80vw;
  line-height: 1;
  border: 1px solid #1f2c63;
  background: #1f2c63;
  color: #fff;
  transition: background 0.3s, color 0.3s;
}
@media only screen and (min-width: 769px) {
  .blog__button {
    max-width: 300px;
    padding: 20px 0 17px;
  }
}
@media only screen and (max-width: 768px) {
  .blog__button {
    margin: 0 auto;
  }
}
@media (hover: hover) {
  .blog__button:hover {
    background: #fff;
    color: #1f2c63;
  }
  .blog__button:hover .blog__button__icon {
    stroke: #1f2c63;
  }
}
@media (hover: none) {
  .blog__button:active {
    background: #fff;
    color: #1f2c63;
  }
  .blog__button:active .blog__button__icon {
    stroke: #1f2c63;
  }
}
.blog__button .blog__button__text {
  font-size: 5.8666666667vw;
}
@media only screen and (min-width: 769px) {
  .blog__button .blog__button__text {
    font-size: 22px;
  }
}
.blog__button .blog__button__icon {
  width: 4vw;
  margin-left: 2.4vw;
  margin-bottom: 1.0666666667vw;
  transform: translateY(-1px);
  transition: stroke 0.3s;
  stroke: #fff;
}
@media only screen and (min-width: 769px) {
  .blog__button .blog__button__icon {
    width: 15px;
    margin-left: 9px;
    margin-bottom: 4px;
  }
}

/* foundation
   ----------------------------------------------------------------- */
.foundation {
  margin-top: 18.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .foundation {
    margin-top: 107px;
  }
}
.foundation__banner {
  border: 2px solid #1f2c63;
  display: block;
  margin-top: 8.8vw;
}
@media (hover: hover) {
  .foundation__banner:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}
@media (hover: none) {
  .foundation__banner:active {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}
@media only screen and (min-width: 769px) {
  .foundation__banner {
    margin-top: 30px;
  }
}

.foundation__img {
  position: relative;
}

.foundation__caption {
  position: absolute;
  bottom: 5px;
  right: 7px;
  color: #fff;
  font-size: 2.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .foundation__caption {
    font-size: 10px;
    bottom: 14px;
    right: 15px;
  }
}

.foundation__desc {
  padding: 5.3333333333vw 6.4vw;
}
@media only screen and (min-width: 769px) {
  .foundation__desc {
    padding: 30px;
    text-align: center;
  }
}

.foundation__text {
  margin-top: 0;
}
@media only screen and (min-width: 769px) {
  .foundation__text {
    font-size: 20px;
    margin-top: 5px;
  }
}
/*# sourceMappingURL=top.css.map */
