@charset "UTF-8";
/* Privacy
   ----------------------------------------------------------------- */
/* ==========================================================================
   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: 1241px) {
  .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: 1241px) {
  .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: 1240px) {
  .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: 1241px) {
  .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: 1240px) {
  .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: 1240px) {
  .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: 1240px) {
  .l-header__nav {
    padding-top: 70px;
  }
}
@media only screen and (max-width: 1240px) {
  .l-header__nav .l-header__nav__list {
    padding-bottom: 13.3333333333vw;
  }
}
@media only screen and (min-width: 1241px) {
  .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: 1241px) {
  .l-header__nav .l-header__nav__item {
    margin-left: 1.6666666667vw;
    padding: 0;
  }
}
@media only screen and (min-width: 1241px) {
  .l-header__nav .l-header__nav__item.l-header__nav__item--privacy {
    display: none;
  }
}
@media only screen and (min-width: 1241px) {
  .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: 1241px) {
  .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: 1241px) {
  .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: 1241px) {
  .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: 1241px) {
  .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;
  }
}

/* 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;
  }
}

.privacy__inner {
  padding: 10.6666666667vw 5.3333333333vw 21.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .privacy__inner {
    padding: 100px 40px 180px;
    margin: auto;
    max-width: 1080px;
  }
}

.privacy__title {
  font-size: 6.9333333333vw;
  text-align: center;
}
@media only screen and (max-width: 768px) {
  .privacy__title {
    line-height: 1.58;
  }
}
@media only screen and (min-width: 769px) {
  .privacy__title {
    font-size: 50px;
  }
}

.privacy__head {
  margin-top: 9.8666666667vw;
}
@media only screen and (min-width: 769px) {
  .privacy__head {
    margin-top: 59px;
  }
}
.privacy__head .privacy__head__label:not(:first-child) {
  margin-top: 0.8vw;
}
@media only screen and (min-width: 769px) {
  .privacy__head .privacy__head__label:not(:first-child) {
    margin-top: 11px;
  }
}

.privacy__terms {
  margin-top: 7.4666666667vw;
}
@media only screen and (min-width: 769px) {
  .privacy__terms {
    margin-top: 77px;
  }
}

.privacy__term:not(:first-child) {
  margin-top: 18.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .privacy__term:not(:first-child) {
    margin-top: 81px;
  }
}
.privacy__term .privacy__term__title {
  font-size: 6.4vw;
  padding-bottom: 4.2666666667vw;
  border-bottom: 1px solid #e6e6e6;
}
@media only screen and (min-width: 769px) {
  .privacy__term .privacy__term__title {
    font-size: 30px;
    padding-bottom: 16px;
  }
}
.privacy__term .privacy__term__desc {
  margin-top: 3.7333333333vw;
}
@media only screen and (min-width: 769px) {
  .privacy__term .privacy__term__desc {
    margin-top: 14px;
  }
}
.privacy__term .privacy__term__desc + .privacy__term__desc {
  margin-top: 10.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .privacy__term .privacy__term__desc + .privacy__term__desc {
    margin-top: 40px;
  }
}

.privacy__order-list {
  margin-top: 5.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .privacy__order-list {
    margin-top: 40px;
  }
}
.privacy__order-list .privacy__order-list__text {
  display: flex;
  align-items: flex-start;
}

.privacy__about {
  border: 1px solid #e6e6e6;
  padding: 8vw 5.3333333333vw;
}
@media only screen and (min-width: 769px) {
  .privacy__about {
    padding: 30px 40px;
  }
}
.privacy__about .privacy__about__title {
  font-size: 6.4vw;
}
@media only screen and (max-width: 768px) {
  .privacy__about .privacy__about__title {
    line-height: 1.58;
  }
}
@media only screen and (min-width: 769px) {
  .privacy__about .privacy__about__title {
    font-size: 30px;
  }
}
.privacy__about .privacy__about__address {
  margin-top: 6.6666666667vw;
}
@media only screen and (min-width: 769px) {
  .privacy__about .privacy__about__address {
    margin-top: 18px;
  }
}