@charset "UTF-8";
@font-face {
  font-family: "cormorant";
  src: url("../fonts/CormorantGaramond-Bold.ttf") format("truetype");
  src: url("../fonts/CormorantGaramond-Medium.ttf") format("truetype");
}
@font-face {
  font-family: "Barlow";
  src: url("../fonts/BarlowCondensed-Regular.ttf") format("truetype");
  src: url("../fonts/BarlowCondensed-Medium.ttf") format("truetype");
}
/* px->vw変換 */
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
*::-moz-selection {
  background-color: color(selection);
}
*::selection {
  background-color: color(selection);
}

html {
  font-size: 62.5%;
  scroll-padding-top: 150px;
}
@media screen and (max-width: 768px) {
  html {
    scroll-padding-top: 100px;
  }
}

body {
  font-family: "Noto Serif JP", serif;
}

a {
  text-decoration: none;
}
@media (min-width: 769px) {
  a a[href^="tel:"] {
    pointer-events: none;
  }
}

img {
  image-rendering: -webkit-optimize-contrast;
}

img,
svg,
video {
  width: 100%;
  max-width: 100%;
  height: auto;
}

picture img {
  width: 100%;
  height: auto;
}

table {
  width: 100%;
  max-width: 100%;
  border-collapse: collapse;
}
table th,
table td {
  word-break: break-all;
}

input::-ms-clear {
  display: none;
}

[data-js-focus-visible]:focus:not([data-focus-visible-added]) {
  outline: none;
}

[aria-hidden=false] {
  visibility: visible;
}

[aria-hidden=true] {
  display: none;
  visibility: hidden;
}

/*!
 * ress.css • v2.0.4
 * MIT License
 * github.com/filipelinhares/ress
 */
/* # =================================================================
   # Global selectors
   # ================================================================= */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  /* Prevent adjustments of font size after orientation changes in iOS */
  word-break: normal;
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4;
}

*,
::before,
::after {
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
  background-repeat: no-repeat;
  /* Set `background-repeat: no-repeat` to all elements and pseudo elements */
}

::before,
::after {
  text-decoration: inherit;
  /* Inherit text-decoration and vertical align to ::before and ::after pseudo elements */
  vertical-align: inherit;
}

* {
  padding: 0;
  /* Reset `padding` and `margin` of all elements */
  margin: 0;
}
*:focus {
  outline: none;
}

/* # =================================================================
   # General elements
   # ================================================================= */
hr {
  height: 0;
  /* Add the correct box sizing in Firefox */
  overflow: visible;
  /* Show the overflow in Edge and IE */
}

details,
main {
  display: block;
  /* Render the `main` element consistently in IE. */
}

summary {
  display: list-item;
  /* Add the correct display in all browsers */
}

small {
  font-size: 80%;
  /* Set font-size to 80% in `small` elements */
}

[hidden] {
  display: none;
  /* Add the correct display in IE */
}

abbr[title] {
  /* Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari */
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  border-bottom: none;
  /* Remove the bottom border in Chrome 57 */
}

a {
  background-color: transparent;
  /* Remove the gray background on active links in IE 10 */
}

a:active,
a:hover {
  outline-width: 0;
  /* Remove the outline when hovering in all browsers */
}

code,
kbd,
pre,
samp {
  font-family: monospace, monospace;
  /* Specify the font family of code elements */
}

pre {
  font-size: 1em;
  /* Correct the odd `em` font sizing in all browsers */
}

b,
strong {
  font-weight: bolder;
  /* Add the correct font weight in Chrome, Edge, and Safari */
}

/* https://gist.github.com/unruthless/413930 */
sub,
sup {
  position: relative;
  font-size: 75%;
  line-height: 0;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* # =================================================================
   # Forms
   # ================================================================= */
input {
  border-radius: 0;
}

/* Replace pointer cursor in disabled elements */
[disabled] {
  cursor: default;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
  /* Correct the cursor style of increment and decrement buttons in Chrome */
}

[type=search] {
  -webkit-appearance: textfield;
  /* Correct the odd appearance in Chrome and Safari */
  outline-offset: -2px;
  /* Correct the outline style in Safari */
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
  /* Remove the inner padding in Chrome and Safari on macOS */
}

textarea {
  overflow: auto;
  /* Internet Explorer 11+ */
  resize: vertical;
  /* Specify textarea resizability */
}

button,
input,
optgroup,
select,
textarea {
  font: inherit;
  /* Specify font inheritance of form elements */
}

optgroup {
  font-weight: bold;
  /* Restore the font weight unset by the previous rule */
}

button {
  overflow: visible;
  /* Address `overflow` set to `hidden` in IE 8/9/10/11 */
}

button,
select {
  text-transform: none;
  /* Firefox 40+, Internet Explorer 11- */
}

/* Apply cursor pointer to button elements */
button,
[type=button],
[type=reset],
[type=submit],
[role=button] {
  color: inherit;
  cursor: pointer;
}

/* Remove inner padding and border in Firefox 4+ */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  padding: 0;
  border-style: none;
}

/* Replace focus style removed in the border reset above */
button:-moz-focusring,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  outline: 1px dotted ButtonText;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
  /* Correct the inability to style clickable types in iOS */
}

/* Remove the default button styling in all browsers */
button,
input,
select,
textarea {
  background-color: transparent;
  border-style: none;
}

/* Style select like a standard input */
select {
  -moz-appearance: none;
  /* Firefox 36+ */
}

select::-ms-expand {
  display: none;
  /* Internet Explorer 11+ */
}

select::-ms-value {
  color: currentColor;
  /* Internet Explorer 11+ */
}

legend {
  display: table;
  /* Correct the text wrapping in Edge and IE */
  max-width: 100%;
  /* Correct the text wrapping in Edge and IE */
  color: inherit;
  /* Correct the color inheritance from `fieldset` elements in IE */
  white-space: normal;
  /* Correct the text wrapping in Edge and IE */
  border: 0;
  /* Correct `color` not being inherited in IE 8/9/10/11 */
}

::-webkit-file-upload-button {
  font: inherit;
  /* Change font properties to `inherit` in Chrome and Safari */
  color: inherit;
  /* Correct the inability to style clickable types in iOS and Safari */
  -webkit-appearance: button;
}

/* # =================================================================
   # Specify media element style
   # ================================================================= */
img {
  vertical-align: bottom;
  border-style: none;
  /* Remove border when inside `a` element in IE 8/9/10 */
}

/* Add the correct vertical alignment in Chrome, Firefox, and Opera */
progress {
  vertical-align: baseline;
}

svg:not([fill]) {
  fill: currentColor;
}

/* # =================================================================
   # Accessibility
   # ================================================================= */
/* Hide content from screens but not screenreaders */
@media screen {
  [hidden~=screen] {
    display: inherit;
  }

  [hidden~=screen]:not(:active):not(:focus):not(:target) {
    position: absolute !important;
    clip: rect(0 0 0 0) !important;
  }
}
/* Specify the progress cursor of updating elements */
[aria-busy=true] {
  cursor: progress;
}

/* Specify the pointer cursor of trigger elements */
[aria-controls] {
  cursor: pointer;
}

/* Specify the unstyled cursor of disabled, not-editable, or otherwise inoperable elements */
[aria-disabled] {
  cursor: default;
}

ol,
ul {
  list-style: none;
}

input[type=submit],
input[type=button] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: none;
  border-radius: 0;
  -webkit-appearance: none;
}
input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}
input[type=submit]:focus,
input[type=button]:focus {
  outline-offset: -2px;
}

input,
textarea {
  border-radius: 0;
}
input:focus,
textarea:focus {
  outline: none;
}

a {
  color: #000;
  text-decoration: none;
}

.lazyload-img {
  opacity: 0;
  -webkit-transition: 0.3s opacity;
  transition: 0.3s opacity;
}
.lazyload-img.lazyloaded {
  opacity: 1;
}

.is-pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }
}

.is-tab {
  display: none;
}
@media screen and (max-width: 768px) {
  .is-tab {
    display: block;
  }
}

@media (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
/**
* @file _l-footer.scss
**/
.l-footer {
  margin-top: 100px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .l-footer {
    margin-top: 60px;
  }
}
.l-footer .footer__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 940px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
}
.l-footer .footer__detail {
  width: calc(100% - 490px);
}
@media screen and (max-width: 768px) {
  .l-footer .footer__detail {
    width: 100%;
  }
}
.l-footer .footer__logo {
  width: 110px;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__logo {
    margin: 0 auto;
    width: 110px;
  }
}
.l-footer .footer__address {
  margin-top: 15px;
  font-size: 13px;
  font-style: normal;
  line-height: 1.8;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__address {
    max-width: 330px;
    width: 100%;
    margin: 30px auto 0;
    line-height: 1.8;
  }
}
.l-footer .footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 7px;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__box {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 15px;
  }
}
.l-footer .footer__number {
  font-size: 15px;
  font-family: "Barlow";
  font-weight: normal;
}
.l-footer .footer__map {
  max-width: 490px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__map {
    margin: 0 auto;
  }
}
.l-footer .footer__map iframe {
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__map iframe {
    width: 100%;
    height: 113px;
  }
}
.l-footer .footer__nav {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__nav {
    margin-top: 26px;
  }
}
.l-footer .footer__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 52px;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__nav-list {
    max-width: 345px;
    width: 100%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 18px 21%;
    margin: 0 auto;
    padding-left: 6%;
  }
}
.l-footer .footer__nav-link {
  font-family: "Barlow";
  font-weight: 500;
  font-size: 14px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.l-footer .footer__nav-link:hover {
  color: #646464;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__nav-link {
    font-size: 18px;
  }
}
.l-footer .footer__copyright {
  width: 100vw;
  margin: 33px calc(50% - 50vw) 0;
  background: #000;
  color: #fff;
  font-family: "Barlow";
  font-weight: 400;
  font-size: 12px;
  padding: 7px 0;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .l-footer .footer__copyright {
    font-size: 10px;
    margin-top: 28px;
  }
}

@media screen and (max-width: 768px) {
  .to-top {
    position: fixed;
    bottom: 30px;
    right: 15px;
  }
  .to-top .to-top-link {
    display: block;
    width: 35px;
    height: 35px;
  }
}

/**
* @file _l-header.scss
**/
.l-header {
  position: fixed;
  background: #fff;
  z-index: 10;
  width: 100%;
  padding: 25px 0 12px;
  -webkit-transition: 0.6s;
  transition: 0.6s;
  -webkit-box-shadow: 2px 2px 15px rgba(96, 96, 96, 0.16);
          box-shadow: 2px 2px 15px rgba(96, 96, 96, 0.16);
}
.l-header.is-fixed {
  position: fixed;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .l-header .c-content-width {
    max-width: 100%;
  }
}
.l-header__cont {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.l-header__logo {
  z-index: 10;
  max-width: 100px;
}
@media screen and (max-width: 768px) {
  .l-header__logo {
    max-width: 77px;
  }
}
.l-header__nav {
  width: 100%;
}
.l-header .nav__lists {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  padding-top: 19px;
}
@media screen and (max-width: 768px) {
  .l-header .nav__lists {
    position: fixed;
    top: 0;
    right: -100%;
    z-index: 5;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: initial;
        -ms-flex-pack: initial;
            justify-content: initial;
    width: 100%;
    padding-top: 50px;
    background: url(../images/common/header-bg-sp.jpg) no-repeat center center/cover;
    -webkit-transition: 0.6s;
    transition: 0.6s;
  }
}
.l-header .nav__item {
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-header .nav__item {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .l-header .nav__item:first-of-type {
    margin-top: 8vh;
  }
}
.l-header .nav__item:not(:first-of-type) {
  margin-left: 96px;
}
@media screen and (max-width: 768px) {
  .l-header .nav__item:not(:first-of-type) {
    margin-left: 0;
  }
}
.l-header .nav__link {
  width: 100%;
  font-family: "Cormorant";
  font-weight: 700;
  font-size: 17px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.l-header .nav__link:hover {
  color: #646464;
}
@media screen and (max-width: 768px) {
  .l-header .nav__link {
    color: #fff;
    display: block;
    padding: 3vh 0;
    font-size: 30px;
  }
}
.l-header .nav__toggle {
  position: fixed;
  top: 22px;
  right: 15px;
  z-index: 5;
  min-width: 35px;
  height: 28px;
  cursor: pointer;
}
.l-header .nav__menu-line {
  position: absolute;
  right: 0;
  z-index: 10;
  width: 35px;
  height: 2px;
  background-color: #000;
  -webkit-transition: 0.6s;
  transition: 0.6s;
}
.l-header .menu-line1 {
  top: 0;
}
.l-header .menu-line2 {
  top: 14px;
}
.l-header .menu-line3 {
  top: 28px;
}
.l-header #js-nav-menu.is-open .menu-line1 {
  position: absolute;
  top: 14px;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
  background: #fff;
}
.l-header #js-nav-menu.is-open .menu-line2 {
  opacity: 0;
}
.l-header #js-nav-menu.is-open .menu-line3 {
  position: absolute;
  top: 14px;
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
  background: #fff;
}
.l-header #js-nav.is-open .nav__lists {
  right: 0;
}
@media screen and (max-width: 768px) {
  .l-header #l-header__logo.is-open .js-nav-logo {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l-header #l-header__logo.is-open .js-logo {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .l-header .js-nav-logo {
    display: none;
  }
}

/*== ボタン共通設定 */
/* =========================
	流れるボタン
===========================*/
.btn {
  width: 100%;
  padding: 15px 0;
  background: #000;
  /*アニメーションの起点とするためrelativeを指定*/
  position: relative;
  overflow: hidden;
  /*ボタンの形状*/
  display: block;
  text-align: center;
  outline: none;
  /*アニメーションの指定*/
  -webkit-transition: ease 0.2s;
  transition: ease 0.2s;
}
@media screen and (max-width: 768px) {
  .btn {
    padding: 16px 0;
  }
}
.btn img {
  width: 14px;
  height: 14px;
  margin-bottom: 1px;
}

/*ボタン内spanの形状*/
.btn span {
  position: relative;
  z-index: 5;
  /*z-indexの数値をあげて文字を背景よりも手前に表示*/
  color: #fff;
}

.btn:hover span {
  color: #fff;
}

/*== 背景が流れる（左から右） */
.bgleft::before {
  content: "";
  /*絶対配置で位置を指定*/
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  /*色や形状*/
  background: #646464;
  /*背景色*/
  width: 100%;
  height: 100%;
  /*アニメーション*/
  -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s, -webkit-transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.bgleft::after {
  z-index: 5;
}

/*hoverした際の形状*/
.bgleft:hover:before {
  -webkit-transform-origin: left top;
          transform-origin: left top;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}

.c-content-padding {
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .c-content-padding {
    padding: 0 15px;
  }
}

.c-content-width {
  max-width: 1366px;
  margin: auto;
}

main {
  padding-top: 122px;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 75px;
  }
}

.ib {
  display: inline-block;
}

.service .service__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.service .service__link {
  position: relative;
  width: 100%;
  aspect-ratio: 683/335;
}
.service .rental__link {
  background: url(../images/index/service-img1-1.jpg) no-repeat center center/cover;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.service .rental__link:hover {
  background: url(../images/index/service-img1-2.jpg) no-repeat center center/cover;
}
.service .rental__link:hover .service__sub-ttl {
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
}
.service .wrapping__link {
  background: url(../images/index/service-img2-1.jpg) no-repeat center center/cover;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.service .wrapping__link:hover {
  background: url(../images/index/service-img2-2.jpg) no-repeat center center/cover;
}
.service .wrapping__link:hover .service__sub-ttl {
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
}
.service .c-section__ttl {
  position: absolute;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 26%;
  left: 50%;
}
@media screen and (max-width: 768px) {
  .service .c-section__ttl {
    top: 22%;
  }
}
.service .rental__ttl {
  width: 37%;
}
@media screen and (max-width: 768px) {
  .service .rental__ttl {
    width: 40%;
  }
}
.service .wrapping__ttl {
  width: 17.8%;
}
@media screen and (max-width: 768px) {
  .service .wrapping__ttl {
    width: 19.3%;
  }
}
.service .service__sub-ttl {
  position: absolute;
  text-align: center;
  top: 60%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
  color: #fff;
  width: 70%;
  padding: 15px;
  font-family: "Noto Sans JP", sans-serif;
  border-color: transparent;
  -webkit-transition: border 0.4s;
  transition: border 0.4s;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .service .service__sub-ttl {
    width: 95%;
    padding: 3px;
    font-size: 8px;
    text-align: center;
  }
}
.service .service__sub-ttl img {
  width: 14px;
  height: 14px;
  margin-right: 8px;
  margin-bottom: 2px;
}
@media screen and (max-width: 768px) {
  .service .service__sub-ttl img {
    width: 8px;
    height: 8px;
    margin-right: 4px;
    margin-bottom: 1px;
  }
}

.flow {
  margin-bottom: 141px;
}
@media screen and (max-width: 768px) {
  .flow {
    margin-bottom: 146px;
  }
}
.flow .flow__container {
  padding-top: 70px;
  border-top: 1px solid #000;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .flow .flow__container {
    padding-top: 115px;
  }
}
.flow .flow__title {
  font-weight: 600;
  font-size: 20px;
  text-align: center;
}
.flow .flow__list {
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: center;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .flow .flow__list {
    margin-top: 30px;
    max-width: 400px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 47px;
  }
}
.flow .flow__item {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .flow .flow__item {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 100%;
    gap: 14px;
  }
}
.flow .flow__item:not(:last-child)::before {
  position: absolute;
  content: "";
  background: url(../images/common/arrow-right-white.svg) no-repeat center center/cover;
  width: 17px;
  height: 17px;
  left: 95%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .flow .flow__item:not(:last-child)::before {
    width: 16px;
    height: 16px;
    top: 0;
    left: 33px;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.flow .flow__image {
  width: 100px;
}
@media screen and (max-width: 768px) {
  .flow .flow__image {
    width: 80px;
  }
}
.flow .flow__texts {
  margin-top: 12px;
}
@media screen and (max-width: 768px) {
  .flow .flow__texts {
    margin-top: 0;
    text-align: left;
    width: calc(100% - 94px);
  }
}
.flow .flow__name {
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .flow .flow__name {
    font-size: 16px;
  }
}
.flow .flow__text {
  margin-top: 7px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .flow .flow__text {
    width: 100%;
    margin-top: 0;
  }
}

.p-wrapping .flow .flow__list {
  max-width: 760px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .flow .flow__list {
    max-width: 400px;
  }
}
.p-wrapping .flow .flow__list .flow__item:not(:last-child)::before {
  top: 42%;
}
@media screen and (max-width: 768px) {
  .p-wrapping .flow .flow__list .flow__item:not(:last-child)::before {
    top: calc(100% + 17px);
  }
}

.p-rental .flow .flow__list .flow__item:not(:last-child)::before {
  top: 25%;
}
@media screen and (max-width: 768px) {
  .p-rental .flow .flow__list .flow__item:not(:last-child)::before {
    top: calc(100% + 17px);
  }
}

.faq {
  padding: 90px 0;
  background: url(../images/common/common-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .faq {
    padding: 80px 0 100px;
  }
}
.faq .faq__container {
  background: #fff;
  max-width: 1150px;
  width: 100%;
  margin: 0 auto;
  padding: 35px 0 75px;
}
@media screen and (max-width: 768px) {
  .faq .faq__container {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 47px 15px 75px;
  }
}
.faq .faq__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.faq .faq__wrapper {
  max-width: 614px;
  width: 100%;
  margin: 30px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}
.faq .faq__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  border-bottom: 1px solid #f0f0f0;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .faq .faq__box {
    padding: 21px 18px 25px;
  }
}
.faq .faq__box:nth-child(1) {
  border-top: 1px solid #f0f0f0;
}
.faq .faq__box dt {
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .faq .faq__box dt {
    text-indent: -1.3em;
    padding-left: 1em;
  }
}
.faq .faq__box dd {
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .faq .faq__box dd {
    font-size: 10px;
  }
}

.fade {
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}
.fade.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-delay1 {
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition-delay: 0.1s;
          transition-delay: 0.1s;
}
.fade-delay1.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.fade-delay2 {
  opacity: 0;
  -webkit-transition: 0.6s ease;
  transition: 0.6s ease;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.fade-delay2.is-active {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p-404 .fv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-404 .fv {
    height: 695px;
    overflow: hidden;
  }
  .p-404 .fv::before {
    position: absolute;
    content: "";
    background: url(../images/404/error-fv-sp.png) no-repeat right top/cover;
    width: 684px;
    height: 812px;
    top: 0;
    right: 70%;
  }
  .p-404 .fv::after {
    position: absolute;
    content: "";
    background: url(../images/404/error-fv-sp.png) no-repeat left bottom/cover;
    width: 684px;
    height: 812px;
    bottom: 0;
    left: 70%;
  }
}
@media screen and (max-width: 768px) {
  .p-404 .fv__image {
    display: none;
  }
}
.p-404 .error__title {
  font-size: min(150px, 10.980966325vw);
  line-height: 1.5;
  position: absolute;
  top: 15%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-404 .error__title {
    font-size: 83px;
    top: 28.5%;
  }
}
.p-404 .error__text {
  font-size: 15px;
  line-height: 1.846;
  text-align: center;
  position: absolute;
  top: 55%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  .p-404 .error__text {
    top: 46.5%;
    width: 100%;
    font-size: 12px;
  }
}
.p-404 .error__btn {
  position: absolute;
  top: 64%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  margin-top: 40px;
  max-width: 300px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  padding: 10px 0 10px 15px;
}
@media screen and (max-width: 768px) {
  .p-404 .error__btn {
    top: 56.4%;
    border-radius: 999px;
    font-size: 12px;
  }
}
.p-404 .error__btn img {
  margin-left: 6px;
}
.p-404 .service .service__link {
  aspect-ratio: 683/185;
}
@media screen and (max-width: 768px) {
  .p-404 .service .service__link {
    aspect-ratio: 187/92;
  }
}
.p-404 .service .rental__ttl {
  width: 27%;
}
@media screen and (max-width: 768px) {
  .p-404 .service .rental__ttl {
    width: 40%;
  }
}
.p-404 .service .wrapping__ttl {
  width: 13%;
}
@media screen and (max-width: 768px) {
  .p-404 .service .wrapping__ttl {
    width: 19%;
  }
}
.p-404 .service .service__sub-ttl {
  top: 64%;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .p-404 .service .service__sub-ttl {
    top: 66%;
    text-align: center;
  }
}

/**
* @file _l-contact.scss
**/
.p-contact .fv,
.p-contact-confirm .fv,
.p-contact-thanks .fv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-contact .fv .fv__image,
.p-contact-confirm .fv .fv__image,
.p-contact-thanks .fv .fv__image {
    aspect-ratio: 375/245;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-contact .fv .p-title,
.p-contact-confirm .fv .p-title,
.p-contact-thanks .fv .p-title {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 80px;
  color: #fff;
  font-family: "cormorant";
  font-weight: 500;
  line-height: 0.6;
}
@media screen and (max-width: 768px) {
  .p-contact .fv .p-title,
.p-contact-confirm .fv .p-title,
.p-contact-thanks .fv .p-title {
    font-size: 55px;
  }
}
.p-contact .contact__lead,
.p-contact-confirm .contact__lead,
.p-contact-thanks .contact__lead {
  margin-top: 34px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__lead,
.p-contact-confirm .contact__lead,
.p-contact-thanks .contact__lead {
    margin-top: 25px;
    font-size: 11px;
  }
}
.p-contact .contact__container,
.p-contact-confirm .contact__container,
.p-contact-thanks .contact__container {
  margin-top: 193px;
  padding-bottom: 190px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container,
.p-contact-confirm .contact__container,
.p-contact-thanks .contact__container {
    width: 87%;
    margin: 90px auto 0;
    padding-bottom: 140px;
  }
}
.p-contact .contact__container .contact__title,
.p-contact-confirm .contact__container .contact__title,
.p-contact-thanks .contact__container .contact__title {
  text-align: center;
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .contact__title,
.p-contact-confirm .contact__container .contact__title,
.p-contact-thanks .contact__container .contact__title {
    font-size: 18px;
  }
}
.p-contact .contact__container .contact__text,
.p-contact-confirm .contact__container .contact__text,
.p-contact-thanks .contact__container .contact__text {
  margin: 17px auto 0;
  font-size: 12px;
  line-height: 2;
  font-weight: 400;
  text-align: center;
  max-width: 510px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .contact__text,
.p-contact-confirm .contact__container .contact__text,
.p-contact-thanks .contact__container .contact__text {
    margin-top: 37px;
    line-height: 2.7;
  }
}
.p-contact .contact__container .contact__attention,
.p-contact-confirm .contact__container .contact__attention,
.p-contact-thanks .contact__container .contact__attention {
  margin-top: 33px;
  font-size: 8px;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .contact__attention,
.p-contact-confirm .contact__container .contact__attention,
.p-contact-thanks .contact__container .contact__attention {
    font-size: 12px;
    margin-top: 120px;
  }
}
.p-contact .contact__container .wpcf7,
.p-contact-confirm .contact__container .wpcf7,
.p-contact-thanks .contact__container .wpcf7 {
  margin: 15px auto 0;
  max-width: 500px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .wpcf7,
.p-contact-confirm .contact__container .wpcf7,
.p-contact-thanks .contact__container .wpcf7 {
    margin-top: 5px;
  }
}
.p-contact .contact__container .wpcf7 .form__wrapper,
.p-contact-confirm .contact__container .wpcf7 .form__wrapper,
.p-contact-thanks .contact__container .wpcf7 .form__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .wpcf7 .form__wrapper,
.p-contact-confirm .contact__container .wpcf7 .form__wrapper,
.p-contact-thanks .contact__container .wpcf7 .form__wrapper {
    font-size: 14px;
    gap: 52px;
  }
}
.p-contact .contact__container .wpcf7 .form__wrapper ::-webkit-input-placeholder, .p-contact-confirm .contact__container .wpcf7 .form__wrapper ::-webkit-input-placeholder, .p-contact-thanks .contact__container .wpcf7 .form__wrapper ::-webkit-input-placeholder {
  color: #dcdcdc;
}
.p-contact .contact__container .wpcf7 .form__wrapper ::-moz-placeholder, .p-contact-confirm .contact__container .wpcf7 .form__wrapper ::-moz-placeholder, .p-contact-thanks .contact__container .wpcf7 .form__wrapper ::-moz-placeholder {
  color: #dcdcdc;
}
.p-contact .contact__container .wpcf7 .form__wrapper :-ms-input-placeholder, .p-contact-confirm .contact__container .wpcf7 .form__wrapper :-ms-input-placeholder, .p-contact-thanks .contact__container .wpcf7 .form__wrapper :-ms-input-placeholder {
  color: #dcdcdc;
}
.p-contact .contact__container .wpcf7 .form__wrapper ::-ms-input-placeholder, .p-contact-confirm .contact__container .wpcf7 .form__wrapper ::-ms-input-placeholder, .p-contact-thanks .contact__container .wpcf7 .form__wrapper ::-ms-input-placeholder {
  color: #dcdcdc;
}
.p-contact .contact__container .wpcf7 .form__wrapper ::placeholder,
.p-contact-confirm .contact__container .wpcf7 .form__wrapper ::placeholder,
.p-contact-thanks .contact__container .wpcf7 .form__wrapper ::placeholder {
  color: #dcdcdc;
}
.p-contact .contact__container .wpcf7 .form__item,
.p-contact-confirm .contact__container .wpcf7 .form__item,
.p-contact-thanks .contact__container .wpcf7 .form__item {
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .wpcf7 .form__item,
.p-contact-confirm .contact__container .wpcf7 .form__item,
.p-contact-thanks .contact__container .wpcf7 .form__item {
    margin-top: 10px;
  }
}
.p-contact .contact__container .wpcf7 input[type=text],
.p-contact .contact__container .wpcf7 input[type=tel],
.p-contact .contact__container .wpcf7 input[type=email],
.p-contact .contact__container .wpcf7 select,
.p-contact .contact__container .wpcf7 textarea,
.p-contact-confirm .contact__container .wpcf7 input[type=text],
.p-contact-confirm .contact__container .wpcf7 input[type=tel],
.p-contact-confirm .contact__container .wpcf7 input[type=email],
.p-contact-confirm .contact__container .wpcf7 select,
.p-contact-confirm .contact__container .wpcf7 textarea,
.p-contact-thanks .contact__container .wpcf7 input[type=text],
.p-contact-thanks .contact__container .wpcf7 input[type=tel],
.p-contact-thanks .contact__container .wpcf7 input[type=email],
.p-contact-thanks .contact__container .wpcf7 select,
.p-contact-thanks .contact__container .wpcf7 textarea {
  border: 1px solid #c8c8c8;
  width: 100%;
  padding: 13px 10px;
}
.p-contact .contact__container .wpcf7 select,
.p-contact-confirm .contact__container .wpcf7 select,
.p-contact-thanks .contact__container .wpcf7 select {
  width: 47%;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .wpcf7 select,
.p-contact-confirm .contact__container .wpcf7 select,
.p-contact-thanks .contact__container .wpcf7 select {
    width: 80%;
  }
}
.p-contact .contact__container .wpcf7 .agree__texts,
.p-contact-confirm .contact__container .wpcf7 .agree__texts,
.p-contact-thanks .contact__container .wpcf7 .agree__texts {
  border: 1px solid #c8c8c8;
  padding: 20px;
  height: 165px;
  overflow-y: scroll;
  line-height: 2;
}
.p-contact .contact__container .wpcf7 .agree__texts p,
.p-contact-confirm .contact__container .wpcf7 .agree__texts p,
.p-contact-thanks .contact__container .wpcf7 .agree__texts p {
  font-weight: 400;
}
.p-contact .contact__container .wpcf7 .agree__texts p:nth-child(n+2),
.p-contact-confirm .contact__container .wpcf7 .agree__texts p:nth-child(n+2),
.p-contact-thanks .contact__container .wpcf7 .agree__texts p:nth-child(n+2) {
  margin-top: 15px;
}
.p-contact .contact__container .wpcf7 .checkbox,
.p-contact-confirm .contact__container .wpcf7 .checkbox,
.p-contact-thanks .contact__container .wpcf7 .checkbox {
  text-align: center;
}
.p-contact .contact__container .wpcf7 .checkbox label,
.p-contact-confirm .contact__container .wpcf7 .checkbox label,
.p-contact-thanks .contact__container .wpcf7 .checkbox label {
  margin-top: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .wpcf7 .checkbox label,
.p-contact-confirm .contact__container .wpcf7 .checkbox label,
.p-contact-thanks .contact__container .wpcf7 .checkbox label {
    margin-top: 42px;
  }
}
.p-contact .contact__container .wpcf7 input[type=radio],
.p-contact .contact__container .wpcf7 input[type=checkbox],
.p-contact-confirm .contact__container .wpcf7 input[type=radio],
.p-contact-confirm .contact__container .wpcf7 input[type=checkbox],
.p-contact-thanks .contact__container .wpcf7 input[type=radio],
.p-contact-thanks .contact__container .wpcf7 input[type=checkbox] {
  vertical-align: middle;
  margin-right: 10px;
  -webkit-transform: scale(1.7);
          transform: scale(1.7);
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .wpcf7 input[type=radio],
.p-contact .contact__container .wpcf7 input[type=checkbox],
.p-contact-confirm .contact__container .wpcf7 input[type=radio],
.p-contact-confirm .contact__container .wpcf7 input[type=checkbox],
.p-contact-thanks .contact__container .wpcf7 input[type=radio],
.p-contact-thanks .contact__container .wpcf7 input[type=checkbox] {
    -webkit-transform: scale(2.2);
            transform: scale(2.2);
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .wpcf7 .wpcf7-form-control.wpcf7-radio,
.p-contact-confirm .contact__container .wpcf7 .wpcf7-form-control.wpcf7-radio,
.p-contact-thanks .contact__container .wpcf7 .wpcf7-form-control.wpcf7-radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-left: -8px;
    margin-top: 22px;
  }
}
.p-contact .contact__container .wpcf7 .wpcf7-list-item.last,
.p-contact-confirm .contact__container .wpcf7 .wpcf7-list-item.last,
.p-contact-thanks .contact__container .wpcf7 .wpcf7-list-item.last {
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .wpcf7 .wpcf7-list-item.last,
.p-contact-confirm .contact__container .wpcf7 .wpcf7-list-item.last,
.p-contact-thanks .contact__container .wpcf7 .wpcf7-list-item.last {
    margin-left: 13px;
    margin-top: 33px;
  }
}
.p-contact .contact__container input[type=submit],
.p-contact-confirm .contact__container input[type=submit],
.p-contact-thanks .contact__container input[type=submit] {
  width: 100%;
  color: #fff;
  font-size: 14px;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container input[type=submit],
.p-contact-confirm .contact__container input[type=submit],
.p-contact-thanks .contact__container input[type=submit] {
    font-size: 12px;
  }
}
.p-contact .contact__container .submit__btn,
.p-contact-confirm .contact__container .submit__btn,
.p-contact-thanks .contact__container .submit__btn {
  display: block;
  margin: 47px auto 0;
  max-width: 300px;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-contact .contact__container .submit__btn,
.p-contact-confirm .contact__container .submit__btn,
.p-contact-thanks .contact__container .submit__btn {
    margin-top: 90px;
  }
}
.p-contact .contact__container .submit__btn::after,
.p-contact-confirm .contact__container .submit__btn::after,
.p-contact-thanks .contact__container .submit__btn::after {
  position: absolute;
  content: "";
  background: url(../images/common/arrow-right-black.svg) no-repeat center center/cover;
  width: 14px;
  height: 14px;
  top: 52%;
  right: 33%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-contact .wpcf7-spinner,
.p-contact-confirm .wpcf7-spinner,
.p-contact-thanks .wpcf7-spinner {
  display: none;
}

.p-contact-confirm .contact__container .confirm__title {
  font-size: 22px;
}
.p-contact-confirm .contact__container .confirm__text {
  margin-top: 30px;
}
.p-contact-confirm .confirm__list {
  margin: 48px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 37px;
  max-width: 450px;
  width: 100%;
}
.p-contact-confirm .confirm__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (max-width: 768px) {
  .p-contact-confirm .confirm__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 10px;
  }
}
.p-contact-confirm .confirm__head {
  width: 145px;
}
.p-contact-confirm .confirm__body {
  width: calc(100% - 145px);
}

.p-contact-thanks .contact__container .thanks__title {
  font-size: 22px;
}
.p-contact-thanks .contact__container .thanks__text {
  margin-top: 30px;
}
.p-contact-thanks .thanks__btn {
  font-size: 14px;
}
.p-contact-thanks .thanks__btn::after {
  display: none;
}
.p-contact-thanks .thanks__btn img {
  margin-left: 5px;
  vertical-align: -2px;
}
@media screen and (max-width: 768px) {
  .p-contact-thanks .thanks__btn {
    font-size: 12px;
  }
}

[aria-hidden=true] {
  display: block;
  visibility: visible;
}

/**
* @file _l-index.scss
**/
.p-index .fv {
  position: relative;
  /*スクロールダウン全体の場所*/
  /*Scrollテキストの描写*/
  /* 線の描写 */
  /*高さ・位置・透過が変化して線が上から下に動く*/
}
@media screen and (max-width: 768px) {
  .p-index .fv video {
    height: calc(100dvh - 74px);
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 50% 50%;
       object-position: 50% 50%;
  }
}
.p-index .fv .scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 50%;
  bottom: 10px;
  /*全体の高さ*/
  height: 50px;
}
.p-index .fv .scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -15px;
  top: 0;
  /*テキストの形状*/
  color: #fff;
  font-size: 10px;
}
.p-index .fv .scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: #fff;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  -webkit-animation: pathmove 1.4s ease-in-out infinite;
          animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@-webkit-keyframes pathmove {
  0% {
    height: 0;
    top: 15px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 60px;
    opacity: 0;
  }
}
@keyframes pathmove {
  0% {
    height: 0;
    top: 15px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 60px;
    opacity: 0;
  }
}
.p-index .top__catchcopy {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-index .top__catchcopy {
    margin-top: 27px;
  }
}
.p-index .top__catchcopy h1 {
  font-size: 35px;
  font-weight: 500;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 768px) {
  .p-index .top__catchcopy h1 {
    font-size: 21px;
    line-height: 1.75;
    letter-spacing: 0.1em;
  }
}
.p-index .feature {
  margin-top: 81px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-index .feature {
    margin-top: 68px;
  }
}
.p-index .feature .feature__wrapper {
  position: relative;
}
.p-index .feature .feature__image {
  position: absolute;
}
.p-index .feature .feature__image1 {
  width: 435px;
  top: 0;
  left: -75px;
}
@media screen and (max-width: 1170px) {
  .p-index .feature .feature__image1 {
    width: 350px;
  }
}
@media screen and (max-width: 1000px) {
  .p-index .feature .feature__image1 {
    top: auto;
    bottom: -268px;
    left: -67px;
    width: 315px;
  }
}
.p-index .feature .feature__image2 {
  width: 435px;
  top: 60.5%;
  right: -74px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1170px) {
  .p-index .feature .feature__image2 {
    width: 350px;
  }
}
@media screen and (max-width: 1000px) {
  .p-index .feature .feature__image2 {
    top: auto;
    bottom: -610px;
    right: -63px;
    width: 315px;
  }
}
@media screen and (max-width: 1000px) {
  .p-index .feature .feature__image1 img,
.p-index .feature .feature__image2 img {
    aspect-ratio: 315/160;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: right top;
       object-position: right top;
  }
}
.p-index .feature .feature__texts {
  padding-top: 67px;
  margin: 0 auto;
  max-width: 330px;
  width: 100%;
  font-size: 15px;
  line-height: 2.53;
}
@media screen and (max-width: 768px) {
  .p-index .feature .feature__texts {
    padding: 0 11px;
    font-size: 14px;
    line-height: 3.22;
  }
}
.p-index .feature .feature__text:nth-child(n+2) {
  margin-top: 40px;
}
@media screen and (max-width: 768px) {
  .p-index .feature .feature__text:nth-child(n+2) {
    margin-top: 44px;
  }
}
.p-index .feature .feature__image3 {
  margin-top: 190px;
  text-align: center;
}
@media screen and (max-width: 1020px) {
  .p-index .feature .feature__image3 {
    width: 100vw;
    margin: 620px calc(50% - 50vw) 0;
  }
}
.p-index .feature .feature__image3 img {
  aspect-ratio: 650/330;
  max-width: 650px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-index .about {
  margin-top: 234px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-index .about {
    margin-top: 163px;
  }
}
.p-index .about::before {
  position: absolute;
  content: "";
  background: url(../images/index/slide-bg1.png) no-repeat center center/cover;
  top: -70px;
  left: 0;
  width: 130px;
  height: 715px;
}
@media screen and (max-width: 1280px) {
  .p-index .about::before {
    width: 65px;
    height: 360px;
  }
}
@media screen and (max-width: 768px) {
  .p-index .about::before {
    width: 36px;
    height: 196px;
  }
}
.p-index .about::after {
  position: absolute;
  content: "";
  background: url(../images/index/slide-bg2.png) no-repeat center center/cover;
  top: -70px;
  right: 0;
  width: 130px;
  height: 715px;
}
@media screen and (max-width: 1280px) {
  .p-index .about::after {
    width: 65px;
    height: 360px;
  }
}
@media screen and (max-width: 768px) {
  .p-index .about::after {
    width: 36px;
    height: 196px;
  }
}
.p-index .about .section__logo {
  width: 160px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-index .about .section__logo {
    width: 130px;
  }
}
.p-index .about .c-section__ttl {
  margin-top: 42px;
  font-size: 22px;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .p-index .about .c-section__ttl {
    margin-top: 66px;
    font-size: 18px;
  }
}
.p-index .about .about__text {
  margin-top: 20px;
  font-size: 15px;
  line-height: 2.538;
}
@media screen and (max-width: 768px) {
  .p-index .about .about__text {
    margin-top: 20px;
    font-size: 12px;
    line-height: 2.667;
  }
}
.p-index .slide {
  margin-top: 100px;
  margin-bottom: 183px;
}
@media screen and (max-width: 768px) {
  .p-index .slide {
    margin-top: 63px;
  }
}
.p-index .slide .c-content-width {
  max-width: 1000px;
}
@media screen and (max-width: 768px) {
  .p-index .slide .c-content-width {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.p-index .slide .swiper-wrapper {
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-index .slide .swiper-slide {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-right: 80px;
}
@media screen and (max-width: 768px) {
  .p-index .slide .swiper-slide {
    margin-right: 45px;
  }
}
.p-index .slide .swiper-slide:nth-child(odd) img {
  width: 100px;
  height: 220px;
}
@media screen and (max-width: 768px) {
  .p-index .slide .swiper-slide:nth-child(odd) img {
    width: 60px;
    height: 130px;
  }
}
.p-index .slide .swiper-slide:nth-child(even) img {
  width: 160px;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .p-index .slide .swiper-slide:nth-child(even) img {
    width: 100px;
    height: 40px;
  }
}

/**
* @file _l-rental.scss
**/
.p-rental .fv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-rental .fv .fv__image {
    aspect-ratio: 375/245;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-rental .fv .p-title {
  position: absolute;
  top: 48%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-width: 407px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-rental .fv .p-title {
    min-width: 185px;
    width: 50%;
    top: 49%;
  }
}
.p-rental .lead {
  margin-top: 194px;
}
@media screen and (max-width: 768px) {
  .p-rental .lead {
    margin-top: 130px;
  }
}
.p-rental .lead .lead__catchcopy {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-rental .lead .lead__catchcopy {
    font-size: 18px;
  }
}
.p-rental .lead .lead__catchcopy span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-rental .lead .lead__catchcopy span {
    font-size: 14px;
  }
}
.p-rental .lead .lead__wrapper {
  margin-top: 97px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12.5%;
}
@media screen and (max-width: 768px) {
  .p-rental .lead .lead__wrapper {
    margin-top: 44px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 50px;
  }
}
.p-rental .lead .lead__img {
  max-width: 600px;
  width: 52.5%;
  margin-left: -40px;
}
@media screen and (max-width: 768px) {
  .p-rental .lead .lead__img {
    width: 86.5%;
    margin: 0 auto;
  }
}
.p-rental .lead .lead__text {
  width: 42%;
  font-size: 15px;
  line-height: 2.54;
}
@media screen and (max-width: 1100px) {
  .p-rental .lead .lead__text {
    width: 47.5%;
  }
}
@media screen and (max-width: 768px) {
  .p-rental .lead .lead__text {
    width: 79%;
    font-size: 12px;
    line-height: 2.65;
    text-align: center;
  }
}
.p-rental .stock {
  margin-top: 155px;
  background: url(../images/rental/rental-bg.jpg) repeat center center/cover;
  padding: 77px 0 95px;
}
@media screen and (max-width: 768px) {
  .p-rental .stock {
    margin-top: 115px;
    padding: 80px 0 100px;
  }
}
.p-rental .stock .c-content-padding {
  padding: 0 8%;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .c-content-padding {
    padding: 0;
  }
}
.p-rental .stock .stock__container {
  background: #fff;
  width: 100%;
  margin: 0 auto;
  padding: 52px 0 77px;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__container {
    padding: 60px 15px 50px;
  }
}
.p-rental .stock .stock__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.p-rental .stock .stock__lead {
  margin: 28px auto 0;
  max-width: 800px;
  width: 100%;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.65;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__lead {
    font-size: 12px;
    margin-top: 20px;
    padding: 0 29px;
    line-height: 1.8;
  }
}
.p-rental .stock .stock__list {
  margin: 59px auto 0;
  padding: 0 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 45px 6.3%;
  max-width: 990px;
  width: 100%;
}
@media screen and (max-width: 1158px) {
  .p-rental .stock .stock__list {
    max-width: 635px;
  }
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__list {
    margin-top: 54px;
    padding: 0 9%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 30px;
  }
}
.p-rental .stock .stock__link {
  display: block;
  width: 280px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    max-width: 400px;
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .p-rental .stock .stock__link:hover .stock__image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
    overflow: hidden;
  }
  .p-rental .stock .stock__link:hover .stock__wrapper {
    background: #3e3e3e;
  }
  .p-rental .stock .stock__link:hover .white {
    color: #fff;
  }
}
.p-rental .stock .stock__image {
  overflow: hidden;
  height: 175px;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__image {
    width: 100%;
    height: auto;
  }
}
.p-rental .stock .stock__image img {
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__image img {
    aspect-ratio: 280/175;
  }
}
.p-rental .stock .stock__image:not(:nth-of-type(1)) {
  display: none;
}
.p-rental .stock .coming-soon {
  max-width: 630px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .coming-soon .stock__image {
    aspect-ratio: 345/120;
  }
}
.p-rental .stock .stock__wrapper {
  background: #f0f0f0;
  padding: 16px 21px 16px;
  font-family: "Noto Sans JP", sans-serif;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 5px;
  height: 222px;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__wrapper {
    width: 100%;
    padding: 22px 24px 15px;
    height: auto;
    gap: 9px;
  }
}
.p-rental .stock .stock__brand {
  font-weight: 300;
}
.p-rental .stock .stock__brand,
.p-rental .stock .stock__price {
  font-size: 12px;
}
.p-rental .stock .stock__price {
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__price {
    font-size: 14px;
  }
}
.p-rental .stock .stock__name {
  font-size: 14px;
  line-height: 1.57;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__name {
    font-size: 16px;
    line-height: 1.375;
  }
}
.p-rental .stock .stock__text {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  /* 制限したい行数が4の場合 */
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__text {
    line-height: 1.667;
  }
}
.p-rental .stock .stock__detail {
  font-size: 12px;
  text-align: right;
  font-weight: 700;
  margin-top: auto;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__detail {
    margin-right: -10px;
  }
}
.p-rental .stock .stock__detail img {
  width: 13px;
  height: 14px;
  vertical-align: middle;
  margin-left: 5px;
  margin-bottom: 3px;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .stock__detail img {
    width: 30px;
    height: 31px;
    margin-bottom: 3px;
  }
}
.p-rental .stock .white {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media screen and (max-width: 768px) {
  .p-rental .stock .open-btn {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 30px auto 0;
    font-size: 12px;
    padding: 20px;
  }
  .p-rental .stock .bottom {
    position: relative;
  }
  .p-rental .stock .bottom::after {
    position: absolute;
    content: "";
    background: url(../images/rental/arrow-bottom.png) no-repeat center center/cover;
    width: 10px;
    height: 5px;
    bottom: -10px;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  .p-rental .stock .open-btn .top {
    position: relative;
  }
  .p-rental .stock .open-btn .top::after {
    position: absolute;
    content: "";
    background: url(../images/rental/arrow-bottom.png) no-repeat center center/cover;
    width: 10px;
    height: 5px;
    bottom: 20px;
    left: 23%;
    -webkit-transform: rotate(180deg) translateX(-50%);
            transform: rotate(180deg) translateX(-50%);
  }
}
.p-rental .flow .flow__container {
  border-top: none;
}
.p-rental .reservation {
  background: url(../images/rental/reservation-bg.png) no-repeat center center/cover;
}
.p-rental .reservation .c-content-padding {
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.p-rental .reservation .c-content-padding:hover {
  background: rgba(0, 0, 0, 0.6);
}
.p-rental .reservation .reservation__link {
  color: #fff;
  display: block;
  padding: 107px 0 88px;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
}
@media screen and (max-width: 768px) {
  .p-rental .reservation .reservation__link {
    padding: 80px 0 20px;
  }
}
.p-rental .reservation .reservation__link p {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-rental .reservation .reservation__link p {
    line-height: 1.8;
  }
}
.p-rental .reservation .reservation__link p::after {
  position: absolute;
  content: "";
  background: url(../images/common/arrow-right-black.svg) no-repeat center center/cover;
  width: 17px;
  height: 17px;
  top: 52%;
  right: -25px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-rental .reservation .reservation__link p::after {
    top: 43%;
    width: 30px;
    height: 30px;
    right: -63px;
  }
}
.p-rental .reservation .reservation__link span {
  color: #fff;
  display: block;
  font-size: 12px;
  font-weight: 300;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-rental .reservation .reservation__link span {
    margin-top: 35px;
  }
}
.p-rental .wrapping {
  margin-top: 166px;
}
@media screen and (max-width: 768px) {
  .p-rental .wrapping {
    margin-top: 90px;
  }
}
.p-rental .wrapping .wrapping__link {
  display: block;
  position: relative;
  width: 49.8%;
  aspect-ratio: 683/337;
  margin: 0 auto;
  background: url(../images/index/service-img2-1.jpg) no-repeat center center/cover;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.p-rental .wrapping .wrapping__link:hover {
  background: url(../images/index/service-img2-2.jpg) no-repeat center center/cover;
}
.p-rental .wrapping .wrapping__link:hover .wrapping__sub-title {
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
}
.p-rental .wrapping .wrapping__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 23%;
  width: 18.3%;
}
@media screen and (max-width: 768px) {
  .p-rental .wrapping .wrapping__title {
    top: 23%;
    width: 24%;
  }
}
.p-rental .wrapping .wrapping__sub-title {
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
  color: #fff;
  text-align: center;
  width: 70%;
  padding: 15px;
  border-color: transparent;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  -webkit-transition: border 0.4s;
  transition: border 0.4s;
}
@media screen and (max-width: 768px) {
  .p-rental .wrapping .wrapping__sub-title {
    width: 90%;
    top: 70%;
    font-size: 8px;
    padding: 0;
    text-align: center;
  }
}
.p-rental .wrapping .wrapping__sub-title img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: -2px;
}
@media screen and (max-width: 768px) {
  .p-rental .wrapping .wrapping__sub-title img {
    width: 8px;
    height: 8px;
    margin-bottom: 2px;
  }
}

/**
* @file _l-service.scss
**/
.p-service .fv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-service .fv .fv__image {
    aspect-ratio: 375/245;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-service .fv .p-title {
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 80px;
  color: #fff;
  font-family: "cormorant";
  font-weight: 500;
  line-height: 0.6;
}
@media screen and (max-width: 768px) {
  .p-service .fv .p-title {
    font-size: 55px;
  }
}
.p-service .business {
  margin-top: 35px;
  text-align: center;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-service .business {
    margin-top: 25px;
  }
}
.p-service .business .business__title {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__title {
    font-size: 11px;
  }
}
.p-service .business .business__catchcopy {
  margin-top: 135px;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__catchcopy {
    margin-top: 90px;
    font-size: 18px;
  }
}
.p-service .business .business__container {
  margin-top: 170px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 330px;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__container {
    margin-top: 105px;
    gap: 141px;
  }
}
.p-service .business .business__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service .business .business__item:nth-child(odd) .business__image {
  max-width: 700px;
  width: 53vw;
  margin-left: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-service .business .business__item:nth-child(odd) .business__image {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.p-service .business .business__item:nth-child(odd) .business__contents {
  margin-right: 7.5%;
}
@media screen and (max-width: 1280px) {
  .p-service .business .business__item:nth-child(odd) .business__contents {
    margin-right: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-service .business .business__item:nth-child(odd) .business__contents {
    margin-right: auto;
  }
}
.p-service .business .business__item:nth-child(even) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__item:nth-child(even) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-service .business .business__item:nth-child(even) .business__image {
  max-width: 700px;
  width: 53vw;
  margin-right: calc(50% - 50vw);
}
@media screen and (max-width: 768px) {
  .p-service .business .business__item:nth-child(even) .business__image {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
  }
}
.p-service .business .business__item:nth-child(even) .business__contents {
  margin-left: 7.2%;
}
@media screen and (max-width: 1280px) {
  .p-service .business .business__item:nth-child(even) .business__contents {
    margin-left: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-service .business .business__item:nth-child(even) .business__contents {
    margin-left: auto;
  }
}
.p-service .business .business__contents {
  width: 35%;
}
@media screen and (max-width: 1280px) {
  .p-service .business .business__contents {
    width: 44%;
  }
}
@media screen and (max-width: 768px) {
  .p-service .business .business__contents {
    width: 100%;
  }
}
.p-service .business .business__head {
  font-family: "Barlow";
  font-size: 14px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__head {
    margin-top: 45px;
    font-size: 12px;
  }
}
.p-service .business .business__title-image {
  margin: 32px auto 0;
  max-width: 250px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__title-image {
    margin-top: 28px;
    max-width: 210px;
  }
}
.p-service .business .business__title-image span {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  display: block;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__title-image span {
    font-size: 10px;
  }
}
.p-service .business .business__title-image-wrapping {
  max-width: 125px;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__title-image-wrapping {
    max-width: 100px;
  }
}
.p-service .business .business__title-image-garage {
  max-width: 260px;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__title-image-garage {
    max-width: 210px;
  }
}
.p-service .business .business__point {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.75;
  margin-top: 40px;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__point {
    font-size: 18px;
    margin-top: 47px;
  }
}
.p-service .business .business__text {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__text {
    padding: 0 15px;
    font-size: 12px;
  }
}
.p-service .business .business__link {
  margin: 67px auto 0;
  font-size: 14px;
  max-width: 430px;
  width: 100%;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-service .business .business__link {
    max-width: 312px;
    margin-top: 50px;
    font-size: 12px;
  }
}
.p-service .business .business__link img {
  margin-right: 6px;
}
.p-service .garage {
  margin-top: 97px;
}
@media screen and (max-width: 768px) {
  .p-service .garage {
    margin-top: 100px;
  }
}
.p-service .garage .garage__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.p-service .garage .garage__list {
  margin: 55px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  max-width: 865px;
  width: 100%;
  padding-bottom: 108px;
}
@media screen and (max-width: 768px) {
  .p-service .garage .garage__list {
    margin-top: 47px;
    gap: 40px;
    padding-bottom: 80px;
  }
}
.p-service .garage .garage__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .p-service .garage .garage__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 19px;
  }
}
.p-service .garage .garage__image {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .p-service .garage .garage__image {
    min-width: 250px;
    width: 72%;
    margin: 0 auto;
  }
}
.p-service .garage .garage__box {
  width: 65%;
}
@media screen and (max-width: 768px) {
  .p-service .garage .garage__box {
    min-width: 252px;
    width: 72%;
    margin: 0 auto;
  }
}
.p-service .garage .garage__place {
  font-weight: 600;
  font-size: 16px;
}
.p-service .garage .garage__place span {
  font-size: 12px;
  font-weight: 600;
}
.p-service .garage .garage__text {
  margin-top: 15px;
  font-size: 12px;
  line-height: 2;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 768px) {
  .p-service .garage .garage__text {
    margin-top: 10px;
  }
}
.p-service .showroom .showroom__container {
  margin: 0 auto;
  padding-top: 80px;
  padding-bottom: 140px;
  max-width: 1000px;
  width: 100%;
  border-top: 1px solid #000;
}
@media screen and (max-width: 768px) {
  .p-service .showroom .showroom__container {
    padding-bottom: 64px;
  }
}
.p-service .showroom .showroom__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.p-service .showroom .showroom__list {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 44px 50px;
}
@media screen and (max-width: 768px) {
  .p-service .showroom .showroom__list {
    margin-top: 50px;
    gap: 33px;
  }
}
@media screen and (max-width: 600px) {
  .p-service .showroom .showroom__item {
    min-width: 250px;
    width: 72%;
    margin: 0 auto;
  }
}
.p-service .company {
  padding: 90px 0 70px;
  background: url(../images/common/common-bg.png) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-service .company {
    padding: 60px 0 75px;
  }
}
.p-service .company .company__container {
  background: #fff;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
  padding: 30px 0 50px;
}
@media screen and (max-width: 768px) {
  .p-service .company .company__container {
    width: 100vw;
    margin: 0 calc(50% - 50vw);
    padding: 47px 15px 50px;
  }
}
.p-service .company .company__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.p-service .company .company__wrapper {
  max-width: 500px;
  width: 100%;
  margin: 20px auto 0;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 4.55;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .p-service .company .company__wrapper {
    font-size: 11px;
    line-height: 1.45;
  }
}
.p-service .company .company__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 768px) {
  .p-service .company .company__box {
    padding: 15px 0;
  }
}
.p-service .company .company__box:nth-child(1) {
  border-top: 1px solid #f0f0f0;
}
.p-service .company .company__box dt {
  padding-left: 15px;
  width: 140px;
}
@media screen and (max-width: 768px) {
  .p-service .company .company__box dt {
    padding-left: 10px;
    width: 93px;
  }
}
@media screen and (max-width: 768px) {
  .p-service .company .company__box dd {
    width: calc(100% - 93px);
  }
}

/**
* @file _l-single-case.scss
**/
.p-single-case .s-case__lead {
  margin: 140px auto 0;
  font-size: 600px;
  font-size: 16px;
  background: #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  color: #fff;
  padding: 3px 24px 4px;
}
.p-single-case .s-case__title {
  margin-top: 30px;
  font-size: 600px;
  font-size: 20px;
  text-align: center;
}
.p-single-case .s-case__price {
  margin: 30px auto 0;
  font-size: 600px;
  font-size: 16px;
  text-align: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-single-case .s-case__list {
  margin: 50px auto 0;
  max-width: 500px;
  width: 100%;
}
.p-single-case .s-case__image:nth-of-type(n + 2) {
  margin-top: 80px;
}
.p-single-case .s-case__text {
  margin-top: 30px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-single-case .s-case__text {
    font-size: 10px;
  }
}
.p-single-case .s-case__link {
  margin: 70px auto 0;
  font-size: 14px;
  max-width: 400px;
}
@media screen and (max-width: 768px) {
  .p-single-case .s-case__link {
    margin-top: 50px;
    font-size: 12px;
  }
}
.p-single-case .s-case__link img {
  margin-left: 6px;
}

/**
* @file _l-sitemap.scss
**/
.p-sitemap .sitemap__container {
  border-top: 1px solid #f0f0f0;
  padding-bottom: 210px;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap__container {
    border-top: none;
    padding-bottom: 175px;
  }
}
.p-sitemap .p-title {
  margin-top: 145px;
  text-align: center;
  font-family: "cormorant";
  font-weight: 500;
  font-size: 50px;
}
@media screen and (max-width: 768px) {
  .p-sitemap .p-title {
    margin-top: 90px;
    font-size: 45px;
  }
}
.p-sitemap .sitemap__lead {
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  margin-top: 8px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap__lead {
    font-size: 11px;
    margin-top: 11px;
  }
}
.p-sitemap .sitemap {
  margin-top: 49px;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap {
    margin-top: 80px;
  }
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap .c-content-padding {
    padding: 0 30px 0 35px;
  }
}
.p-sitemap .sitemap .sitemap__page-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 2.5%;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap .sitemap__page-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 93px;
  }
}
.p-sitemap .sitemap .sitemap__page-item {
  max-width: 243px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap .sitemap__page-item {
    max-width: 100%;
  }
}
.p-sitemap .sitemap .sitemap__page-link {
  font-size: 12px;
  display: block;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 4px;
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap .sitemap__page-link {
    font-size: 14px;
    padding-bottom: 9px;
  }
}
.p-sitemap .sitemap .sitemap__page-link:hover {
  color: #646464;
}
.p-sitemap .sitemap .sitemap__page-link img {
  width: 13px;
  height: 13px;
  margin-bottom: 4px;
  margin-right: 4px;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap .sitemap__page-link img {
    margin-bottom: 7px;
    width: 25px;
    height: 25px;
  }
}
.p-sitemap .sitemap .sitemap__page-link .link-en {
  font-family: "cormorant";
  font-weight: bold;
  font-size: 17px;
  margin-right: 0.5em;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap .sitemap__page-link .link-en {
    font-size: 30px;
    margin-right: 0.5em;
  }
}
.p-sitemap .sitemap .sitemap__each-item {
  margin-top: 12px;
  position: relative;
  padding-left: 10px;
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap .sitemap__each-item {
    margin-top: 26px;
    font-size: 16px;
    padding-left: 17px;
  }
}
.p-sitemap .sitemap .sitemap__each-item::before {
  position: absolute;
  content: "";
  background: url(../images/common/arrow-right.svg) no-repeat center center/cover;
  top: 58%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 6px;
  height: 8px;
}
@media screen and (max-width: 768px) {
  .p-sitemap .sitemap .sitemap__each-item::before {
    width: 11px;
    height: 13px;
  }
}
.p-sitemap .sitemap .sitemap__each-link {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
.p-sitemap .sitemap .sitemap__each-link:hover {
  color: #646464;
}
.p-sitemap .br-1007 {
  display: none;
}
@media screen and (max-width: 1007px) {
  .p-sitemap .br-1007 {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-sitemap .br-1007 {
    display: none;
  }
}

/**
* @file _l-wrapping.scss
**/
.p-wrapping .fv {
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-wrapping .fv .fv__image {
    aspect-ratio: 375/245;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.p-wrapping .fv .p-title {
  position: absolute;
  top: 48.5%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 14.6%;
}
@media screen and (max-width: 768px) {
  .p-wrapping .fv .p-title {
    min-width: 100px;
    width: 23%;
  }
}
.p-wrapping .lead {
  margin-top: 192px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .lead {
    margin-top: 130px;
  }
}
.p-wrapping .lead .lead__catchcopy {
  font-weight: 500;
  font-size: 20px;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 768px) {
  .p-wrapping .lead .lead__catchcopy {
    font-size: 18px;
  }
}
.p-wrapping .lead .lead__catchcopy span {
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .lead .lead__catchcopy span {
    font-size: 14px;
  }
}
.p-wrapping .lead .lead__wrapper {
  margin-top: 98px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 13%;
}
@media screen and (max-width: 768px) {
  .p-wrapping .lead .lead__wrapper {
    margin-top: 44px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 45px;
  }
}
.p-wrapping .lead .lead__img {
  max-width: 600px;
  width: 52.5%;
  margin-left: -40px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .lead .lead__img {
    width: 87%;
    margin: 0 auto;
  }
}
.p-wrapping .lead .lead__text {
  width: 38%;
  font-size: 15px;
  line-height: 2.54;
}
@media screen and (max-width: 1100px) {
  .p-wrapping .lead .lead__text {
    width: 47.5%;
  }
}
@media screen and (max-width: 768px) {
  .p-wrapping .lead .lead__text {
    width: 84%;
    font-size: 12px;
    line-height: 2.7;
    text-align: center;
  }
}
.p-wrapping .wrapping {
  margin-top: 168px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping {
    margin-top: 185px;
  }
}
.p-wrapping .wrapping .wrapping__title {
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}
.p-wrapping .wrapping .wrapping__lead {
  margin-top: 27px;
  text-align: center;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.667;
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping .wrapping__lead {
    font-size: 12px;
    line-height: 1.8333;
    margin: 24px auto 0;
    width: 86%;
  }
}
.p-wrapping .wrapping .wrapping__list {
  margin-top: 54px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping .wrapping__list {
    margin-top: 26px;
  }
}
.p-wrapping .wrapping .wrapping__item {
  width: 100vw;
  aspect-ratio: 1366/330;
  margin: 0 calc(50% - 50vw);
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping .wrapping__item {
    aspect-ratio: 375/465;
  }
}
.p-wrapping .wrapping .wrapping1 {
  background: url(../images/wrapping/wrapping-img1.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping .wrapping1 {
    background: url(../images/wrapping/wrapping-img1-sp.jpg) no-repeat center center/cover;
  }
}
.p-wrapping .wrapping .wrapping2 {
  background: url(../images/wrapping/wrapping-img2.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping .wrapping2 {
    background: url(../images/wrapping/wrapping-img2-sp.jpg) no-repeat center center/cover;
  }
}
.p-wrapping .wrapping .wrapping3 {
  background: url(../images/wrapping/wrapping-img3.jpg) no-repeat center center/cover;
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping .wrapping3 {
    background: url(../images/wrapping/wrapping-img3-sp.jpg) no-repeat center center/cover;
  }
}
.p-wrapping .wrapping .wrapping__texts {
  position: absolute;
  top: 52%;
  left: 61.2%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping .wrapping__texts {
    top: 59.5%;
    left: 51%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 77%;
  }
}
.p-wrapping .wrapping .wrapping__point {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.p-wrapping .wrapping .wrapping__text {
  margin-top: 10px;
  padding-right: 10px;
  color: #fff;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.667;
  max-width: 430px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-wrapping .wrapping .wrapping__text {
    font-size: 12px;
    padding-right: 0;
    width: 98%;
  }
}
.p-wrapping .maker {
  margin-top: 110px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-wrapping .maker {
    margin-top: 60px;
  }
}
.p-wrapping .maker .maker__title {
  font-size: 20px;
  font-weight: 700;
}
.p-wrapping .maker .maker__image {
  margin-top: 50px;
  max-width: 200px;
  display: inline-block;
}
.p-wrapping .maker .maker__text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 1.667;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .maker .maker__text {
    font-size: 12px;
  }
}
.p-wrapping .maker .maker__link {
  margin-top: 30px;
  max-width: 400px;
  font-size: 14px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-wrapping .maker .maker__link {
    font-size: 12px;
    padding: 25px 0;
  }
}
.p-wrapping .maker .maker__link img {
  margin-left: 6px;
  margin-bottom: 2px;
}
.p-wrapping .product {
  margin-top: 70px;
}
.p-wrapping .product .c-content-width {
  max-width: 1000px;
}
.p-wrapping .product .product__title {
  font-size: 20px;
  text-align: center;
}
.p-wrapping .product .product__list {
  margin-top: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .p-wrapping .product .product__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 30px;
  }
}
.p-wrapping .product .product__item {
  width: 24%;
}
@media screen and (max-width: 768px) {
  .p-wrapping .product .product__item {
    width: 70%;
  }
}
.p-wrapping .product .product__sub-title {
  font-size: 16px;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  color: #fff;
  min-height: 70px;
  background: url(../images/wrapping/maker-bg.jpg) no-repeat center center/cover;
}
.p-wrapping .product .product__wrapper {
  padding: 20px 8.33% 0;
  background: #f0f0f0;
  min-height: 520px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .product .product__wrapper {
    min-height: auto;
    padding-bottom: 30px;
  }
}
.p-wrapping .product .product__point {
  font-size: 14px;
  margin-top: 20px;
  text-align: center;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .p-wrapping .product .product__point {
    font-size: 12px;
  }
}
.p-wrapping .product .product__text {
  margin-top: 8px;
  font-size: 12px;
  line-height: 1.8;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .p-wrapping .product .product__text {
    font-size: 10px;
  }
}
.p-wrapping .case {
  margin-top: 112px;
  margin-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case {
    margin-top: 70px;
  }
}
.p-wrapping .case .case__container {
  padding-top: 60px;
  border-top: 1px solid #000;
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .case__container {
    padding-top: 48px;
  }
}
.p-wrapping .case .case__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}
.p-wrapping .case .case__list {
  margin: 60px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  max-width: 630px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .case__list {
    margin-top: 45px;
    gap: 64px;
  }
}
.p-wrapping .case .case__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 220.8px;
  background: #f0f0f0;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .case__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 81.5%;
    margin: 0 auto;
    height: auto;
  }
}
.p-wrapping .case .case__link:hover .case__image img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}
.p-wrapping .case .case__link:hover {
  background: #3e3e3e;
}
.p-wrapping .case .case__link:hover .white {
  color: #fff;
}
.p-wrapping .case .case__image {
  width: 350px;
  height: 100%;
  overflow: hidden;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .case__image {
    width: 100%;
    aspect-ratio: 280/175;
  }
}
.p-wrapping .case .case__image img {
  -webkit-transition: -webkit-transform 0.4s;
  transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  transition: transform 0.4s, -webkit-transform 0.4s;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-wrapping .case .case__image:not(:nth-of-type(1)) {
  display: none;
}
.p-wrapping .case .coming-soon {
  max-width: 630px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .coming-soon {
    aspect-ratio: 345/120;
  }
}
.p-wrapping .case .case__wrapper {
  width: 280px;
  padding: 10px 15px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .case__wrapper {
    width: 100%;
    background: #000;
    padding: 20px 25px 10px;
  }
}
.p-wrapping .case .case__lead {
  font-size: 12px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
.p-wrapping .case .case__name {
  margin-top: 3px;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.57;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .case__name {
    margin-top: 10px;
    font-size: 16px;
    line-height: 1.375;
  }
}
.p-wrapping .case .case__text {
  margin-top: 5px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 12px;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 6;
  /* 制限したい行数が6の場合 */
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .case__text {
    margin-top: 20px;
    line-height: 1.667;
  }
}
.p-wrapping .case .case__box {
  margin-top: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.p-wrapping .case .case__price,
.p-wrapping .case .case__detail {
  font-size: 12px;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2.188;
  font-weight: 700;
}
.p-wrapping .case .case__price img,
.p-wrapping .case .case__detail img {
  width: 12px;
  height: 12px;
  vertical-align: -2px;
}
.p-wrapping .case .white {
  -webkit-transition: color 0.4s;
  transition: color 0.4s;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .white {
    color: #fff;
  }
}
.p-wrapping .case .open-btn {
  margin: 60px auto 0;
  max-width: 300px;
  font-size: 14px;
  -webkit-transition: opacity 0.4s;
  transition: opacity 0.4s;
  cursor: pointer;
}
.p-wrapping .case .open-btn:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .p-wrapping .case .open-btn {
    font-size: 12px;
  }
}
.p-wrapping .rental {
  margin-top: 82px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .rental {
    margin-top: 95px;
  }
}
.p-wrapping .rental .rental__link {
  display: block;
  position: relative;
  width: 50%;
  aspect-ratio: 683/335;
  margin: 0 auto;
  background: url(../images/index/service-img1-1.jpg) no-repeat center center/cover;
  -webkit-transition: background 0.4s;
  transition: background 0.4s;
}
.p-wrapping .rental .rental__link:hover {
  background: url(../images/index/service-img1-2.jpg) no-repeat center center/cover;
}
.p-wrapping .rental .rental__link:hover .rental__sub-title {
  border-style: solid;
  border-width: 1px;
  border-color: #fff;
}
.p-wrapping .rental .rental__title {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 28%;
  width: 37.5%;
}
.p-wrapping .rental .rental__sub-title {
  position: absolute;
  top: 65%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  font-size: 14px;
  text-align: center;
  color: #fff;
  width: 70%;
  padding: 15px;
  font-family: "Noto Sans JP", sans-serif;
  border-color: transparent;
  -webkit-transition: border 0.4s;
  transition: border 0.4s;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-wrapping .rental .rental__sub-title {
    font-size: 8px;
    padding: 0;
    top: 73%;
  }
}
.p-wrapping .rental .rental__sub-title img {
  width: 14px;
  height: 14px;
  margin-right: 4px;
  vertical-align: -2px;
}
@media screen and (max-width: 768px) {
  .p-wrapping .rental .rental__sub-title img {
    width: 8px;
    height: 8px;
    margin-bottom: 2px;
  }
}