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

body,
header,
footer,
section,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  width: 100%;
  overflow-y: scroll;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  position: relative;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  letter-spacing: 0.05em;
  font-size: 1.4rem;
  line-height: 1.8;
  -webkit-text-size-adjust: 100%;
  font-weight: 300;
  margin: 0;
  color: #002b43;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  background-color: #fff;
  position: relative;
  z-index: 1;
}

a {
  color: #002b43;
}

img {
  max-width: 100%;
  -webkit-backface-visibility: hidden;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  vertical-align: top;
}

th {
  text-align: left;
}

li {
  list-style: none;
}

a {
  outline: none;
  text-decoration: none;
}

address {
  font-style: normal;
}

.inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

.inner.inner-1520 {
  max-width: 1520px;
}

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

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

.section__title-en {
  font-size: 1.4rem;
  font-weight: 100;
  font-family: "Roboto", serif;
  padding-bottom: 40px;
}
@media screen and (max-width: 834px) {
  .section__title-en {
    padding-bottom: 20px;
  }
}
.section__title-jp {
  font-size: clamp(5rem, 5vw, 7.2rem);
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .section__title-jp {
    font-size: clamp(3rem, 4vw, 6rem);
    line-height: 1.5;
  }
}

/*fadein*/
.fadein.scroll-activate {
  opacity: 0;
  transform: translate(0, 30px);
  transition: all 0.8s;
  transition-delay: 0.7s;
}

.fadein.scroll-activate.active {
  opacity: 1;
  transform: translateY(0);
}

/*nav fadein アニメーション*/
.header__nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  overflow: hidden; /* リスト全体をクリッピング */
}

.header__nav li {
  opacity: 0;
  clip-path: inset(0 0 100% 0); /* 初期状態で完全に隠す */
  transform: translateY(20px); /* 下に少しずらす */
  transition: opacity 0.8s ease, transform 0.8s ease, clip-path 0.8s ease; /* スムーズなアニメーション */
  background-color: transparent;
}

.header__nav li.visible {
  opacity: 1;
  clip-path: inset(0 0 0 0); /* 完全に表示 */
  transform: translateY(0); /* 元の位置に戻す */
}

/*fadein bottom*/
.path {
  opacity: 0;
  stroke-dasharray: 500; /* 明確な数値を設定 */
  stroke-dashoffset: 500;
  animation: draw 2s ease-out forwards;
  animation: fadeInBottom 1s ease-out forwards;
}

@keyframes fadeInBottom {
  0% {
    opacity: 0;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 各パスのスタイル */
.scroll-activate.path {
  stroke-dasharray: 300; /* パスの長さに応じて調整 */
  stroke-dashoffset: 300; /* 初期状態で非表示 */
  animation: draw 2s ease-out forwards paused;
}

.scroll-activate.active.path {
  animation-play-state: running;
  animation: fadeInBottom 1s 2s ease-out forwards;
}

.scroll-bottom.path {
  stroke-dasharray: 300; /* パスの長さに応じて調整 */
  stroke-dashoffset: 300; /* 初期状態で非表示 */
  animation: draw 2s ease-out forwards paused;
}

.scroll-bottom.active.path {
  animation-play-state: running;
  animation: fadeInBottom 1s 1s ease-out forwards;
}

/* 各パスの遅延設定 */
.scroll-activate.active.path:nth-child(1) {
  animation-delay: 0.1s;
}

.scroll-activate.active.path:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-activate.active.path:nth-child(3) {
  animation-delay: 0.3s;
}

.scroll-activate.active.path:nth-child(4) {
  animation-delay: 0.4s;
}

.scroll-activate.active.path:nth-child(5) {
  animation-delay: 0.5s;
}

.scroll-activate.active.path:nth-child(6) {
  animation-delay: 0.6s;
}

.scroll-activate.active.path:nth-child(7) {
  animation-delay: 0.7s;
}

.scroll-activate.active.path:nth-child(8) {
  animation-delay: 0.8s;
}

.scroll-activate.active.path:nth-child(9) {
  animation-delay: 0.9s;
}

.scroll-activate.active.path:nth-child(10) {
  animation-delay: 1s;
}

.scroll-activate.active.path:nth-child(11) {
  animation-delay: 1.1s;
}

.scroll-activate.active.path:nth-child(12) {
  animation-delay: 1.2s;
}

.scroll-activate.active.path:nth-child(13) {
  animation-delay: 1.3s;
}

.scroll-activate.active.path:nth-child(14) {
  animation-delay: 1.4s;
}

.scroll-activate.active.path:nth-child(15) {
  animation-delay: 1.5s;
}

.scroll-activate.active.path:nth-child(16) {
  animation-delay: 1.6s;
}

.scroll-activate.active.path:nth-child(17) {
  animation-delay: 1.7s;
}

.scroll-activate.active.path:nth-child(18) {
  animation-delay: 1.8s;
}

.scroll-activate.active.path:nth-child(19) {
  animation-delay: 1.9s;
}

.scroll-activate.active.path:nth-child(20) {
  animation-delay: 2s;
}

.scroll-activate.active.path:nth-child(21) {
  animation-delay: 2.1s;
}

.scroll-activate.active.path:nth-child(22) {
  animation-delay: 2.2s;
}

.scroll-activate.active.path:nth-child(23) {
  animation-delay: 2.3s;
}

.scroll-activate.active.path:nth-child(24) {
  animation-delay: 2.4s;
}

.scroll-activate.active.path:nth-child(25) {
  animation-delay: 2.5s;
}

.scroll-activate.active.path:nth-child(26) {
  animation-delay: 2.6s;
}

.scroll-activate.active.path:nth-child(27) {
  animation-delay: 2.7s;
}

.scroll-activate.active.path:nth-child(28) {
  animation-delay: 2.8s;
}

.scroll-activate.active.path:nth-child(29) {
  animation-delay: 2.9s;
}

.scroll-activate.active.path:nth-child(30) {
  animation-delay: 3s;
}

.scroll-bottom.active.path:nth-child(1) {
  animation-delay: 0.1s;
}

.scroll-bottom.active.path:nth-child(2) {
  animation-delay: 0.2s;
}

.scroll-bottom.active.path:nth-child(3) {
  animation-delay: 0.3s;
}

.scroll-bottom.active.path:nth-child(4) {
  animation-delay: 0.4s;
}

.scroll-bottom.active.path:nth-child(5) {
  animation-delay: 0.5s;
}

.scroll-bottom.active.path:nth-child(6) {
  animation-delay: 0.6s;
}

.scroll-bottom.active.path:nth-child(7) {
  animation-delay: 0.7s;
}

.scroll-bottom.active.path:nth-child(8) {
  animation-delay: 0.8s;
}

.scroll-bottom.active.path:nth-child(9) {
  animation-delay: 0.9s;
}

.scroll-bottom.active.path:nth-child(10) {
  animation-delay: 1s;
}

.scroll-bottom.active.path:nth-child(11) {
  animation-delay: 1.1s;
}

.scroll-bottom.active.path:nth-child(12) {
  animation-delay: 1.2s;
}

.scroll-bottom.active.path:nth-child(13) {
  animation-delay: 1.3s;
}

.scroll-bottom.active.path:nth-child(14) {
  animation-delay: 1.4s;
}

.scroll-bottom.active.path:nth-child(15) {
  animation-delay: 1.5s;
}

.scroll-bottom.active.path:nth-child(16) {
  animation-delay: 1.6s;
}

.scroll-bottom.active.path:nth-child(17) {
  animation-delay: 1.7s;
}

.scroll-bottom.active.path:nth-child(18) {
  animation-delay: 1.8s;
}

.scroll-bottom.active.path:nth-child(19) {
  animation-delay: 1.9s;
}

.scroll-bottom.active.path:nth-child(20) {
  animation-delay: 2s;
}

.scroll-bottom.active.path:nth-child(21) {
  animation-delay: 2.1s;
}

.scroll-bottom.active.path:nth-child(22) {
  animation-delay: 2.2s;
}

.scroll-bottom.active.path:nth-child(23) {
  animation-delay: 2.3s;
}

.scroll-bottom.active.path:nth-child(24) {
  animation-delay: 2.4s;
}

.scroll-bottom.active.path:nth-child(25) {
  animation-delay: 2.5s;
}

.scroll-bottom.active.path:nth-child(26) {
  animation-delay: 2.6s;
}

.scroll-bottom.active.path:nth-child(27) {
  animation-delay: 2.7s;
}

.scroll-bottom.active.path:nth-child(28) {
  animation-delay: 2.8s;
}

.scroll-bottom.active.path:nth-child(29) {
  animation-delay: 2.9s;
}

.scroll-bottom.active.path:nth-child(30) {
  animation-delay: 3s;
}

#mv .path:nth-child(1) {
  animation-delay: 0.3s;
}
#mv .path:nth-child(2) {
  animation-delay: 0.4s;
}
#mv .path:nth-child(3) {
  animation-delay: 0.5s;
}
#mv .path:nth-child(4) {
  animation-delay: 0.6s;
}
#mv .path:nth-child(5) {
  animation-delay: 0.7s;
}
#mv .path:nth-child(6) {
  animation-delay: 0.8s;
}
#mv .path:nth-child(7) {
  animation-delay: 0.9s;
}
#mv .path:nth-child(8) {
  animation-delay: 1s;
}
#mv .path:nth-child(9) {
  animation-delay: 1.1s;
}
#mv .path:nth-child(10) {
  animation-delay: 1.2s;
}
#mv .path:nth-child(11) {
  animation-delay: 1.3s;
}
#mv .path:nth-child(12) {
  animation-delay: 1.4s;
}
#mv .path:nth-child(13) {
  animation-delay: 1.5s;
}
#mv .path:nth-child(14) {
  animation-delay: 1.6s;
}
#mv .path:nth-child(15) {
  animation-delay: 1.7s;
}
#mv .path:nth-child(16) {
  animation-delay: 1.8s;
}
#mv .path:nth-child(17) {
  animation-delay: 1.9s;
}
#mv .path:nth-child(18) {
  animation-delay: 2s;
}
#mv .path:nth-child(19) {
  animation-delay: 2.1s;
}
#mv .path:nth-child(20) {
  animation-delay: 2.2s;
}
#mv .path:nth-child(21) {
  animation-delay: 2.3s;
}
#mv .path:nth-child(22) {
  animation-delay: 2.4s;
}
#mv .path:nth-child(23) {
  animation-delay: 2.5s;
}
#mv .path:nth-child(24) {
  animation-delay: 2.6s;
}
#mv .path:nth-child(25) {
  animation-delay: 2.7s;
}
#mv .path:nth-child(26) {
  animation-delay: 2.8s;
}
#mv .path:nth-child(27) {
  animation-delay: 2.9s;
}
#mv .path:nth-child(28) {
  animation-delay: 3s;
}
#mv .path:nth-child(29) {
  animation-delay: 3.1s;
}
#mv .path:nth-child(30) {
  animation-delay: 3.2s;
}

/*btn*/
.btn {
  transition: 0.8s cubic-bezier(0.12, 1, 0.5, 1) 1.7s;
}

.btn {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 1px solid #002b43;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 100;
  font-family: "Roboto", serif;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 834px) {
  .btn {
    width: 183px;
  }
}

.button-text-wrapper {
  position: relative;
  height: 60px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .button-text-wrapper {
    height: 50px;
  }
}

/* 初期テキストのスタイル */
.button-text {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-align: center;
}

/* 最初のテキスト */
.button-text.first {
  transform: translateY(0%);
  opacity: 1;
}

/* 2つ目のテキスト */
.button-text.second {
  transform: translateY(100%);
  opacity: 0;
}

/* ホバー時のアニメーション */
.btn:hover .button-text.first {
  transform: translateY(-100%);
  opacity: 0;
}

.btn:hover .button-text.second {
  transform: translateY(0%);
  opacity: 1;
}

/* ボタンのホバースタイル */
.btn:hover {
  background-color: #2e2e2e;
  color: #fff;
}

.header {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-end;
  padding: 20px 5% 10px 20px;
  position: absolute;
  background: transparent;
  width: 100%;
  transition: background-color 0.3s, color 0.3s;
  z-index: 1000;
}
@media screen and (min-width: 835px) {
  .header {
    margin: 0 0 0 auto;
    position: fixed;
    top: 0;
    right: 0;
    transition: transform 0.6s ease, opacity 0.6s ease;
    width: 20%;
  }
}
@media screen and (max-width: 834px) {
  .header {
    width: 100%;
    flex-direction: row;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    right: 0;
    left: 0;
    padding: 0 5%;
    position: fixed;
  }
}

@media screen and (min-width: 835px) {
  .header.hidden {
    transform: translateY(-100%); /* 上部に隠す */
    opacity: 0;
  }
}
@media screen and (max-width: 834px) {
  .logo img {
    width: 74px;
  }
}

.haeder-left {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 70%;
}
@media screen and (max-width: 1200px) {
  .haeder-left {
    width: 80%;
  }
}
@media screen and (max-width: 834px) {
  .haeder-left {
    width: -moz-fit-content;
    width: fit-content;
  }
}

.header-nav {
  width: 85%;
}
@media screen and (max-width: 834px) {
  .header-nav {
    display: none;
  }
}

.header__nav ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  display: flex;
  justify-content: right;
  margin-top: 35px;
}

.header__nav a {
  text-align: right;
  text-decoration: none;
  transition: color 0.3s;
  font-size: 1.4rem;
  font-family: "Roboto", serif;
  font-weight: 300;
  color: #002b43;
}

.header__nav a:hover {
  opacity: 0.6;
}

.hamburger {
  display: none;
}
@media screen and (max-width: 834px) {
  .hamburger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    position: relative;
    z-index: 1000;
  }
  .hamburger::after {
    position: absolute;
    content: "MENU";
    color: #121212;
    bottom: -32px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
  }
}

@media screen and (max-width: 834px) {
  .hamburger.open::after {
    content: "CLOSE";
    color: #fff;
  }
}

@media screen and (max-width: 834px) {
  .hamburger__line {
    width: 40px;
    height: 1px;
    background-color: #fff;
    transition: transform 0.3s ease, background-color 0.3s ease;
    width: 30px;
  }
}

@media screen and (max-width: 834px) {
  .header .hamburger__line {
    background-color: #121212;
  }
}

.hamburger.open .hamburger__line:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
@media screen and (max-width: 834px) {
  .hamburger.open .hamburger__line:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
    background-color: #fff;
  }
}

@media screen and (max-width: 834px) {
  .hamburger.open .hamburger__line:nth-child(2) {
    transform: rotate(-45deg) translate(0px, -2px);
    background-color: #fff;
  }
}

@media screen and (max-width: 834px) {
  .menu-overlay {
    position: fixed;
    top: -150%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #002b43;
    color: #fff;
    transition: top 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.menu-overlay img {
  width: 113px;
  height: auto;
}
@media screen and (max-width: 834px) {
  .menu-overlay img {
    width: 90px;
  }
}

@media screen and (max-width: 834px) {
  .menu-overlay.open {
    top: 0;
  }
}

@media screen and (max-width: 834px) {
  .menu-overlay ul {
    list-style: none;
    padding: 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    grid-row-gap: 30px;
  }
}

@media screen and (max-width: 834px) {
  .menu-overlay ul li {
    line-height: 1;
  }
}

@media screen and (max-width: 834px) {
  .menu-overlay ul li a {
    text-decoration: none;
    color: #fff;
    font-size: 1.6rem;
    font-family: "Roboto", serif;
    font-weight: 500;
    background-color: transparent !important;
  }
  .menu-overlay ul li a span {
    display: block;
    font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
    font-size: 1.2rem;
    padding-top: 6px;
    font-weight: 300;
  }
}

.hum__title {
  padding-top: 3rem;
}
@media screen and (max-width: 834px) {
  .hum__title {
    padding-top: 1rem;
  }
}
.hum__title .title-en {
  font-size: 3rem;
  font-family: "Roboto", serif;
  font-weight: 500;
  letter-spacing: 0.025en;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .hum__title .title-en {
    font-size: 1.8rem;
  }
}
.hum__title .title-en span {
  font-size: 5rem;
}
@media screen and (max-width: 834px) {
  .hum__title .title-en span {
    font-size: 3.2rem;
  }
}
.hum__title .title-jp {
  text-align: right;
  font-size: 1.4rem;
}

.under-header {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 331px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
@media screen and (max-width: 834px) {
  .under-header {
    min-height: 230px;
  }
}
.under-header img {
  max-width: 100%;
  height: auto;
}
.under-header .inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.under-header__ttl-img img {
  max-width: 23px;
  max-height: 87px;
}
@media (max-width: 1199px) {
  .under-header__ttl-img img {
    width: 40%;
    height: 50%;
  }
}

.under-header__ttl-img:first-child {
  display: flex;
  justify-content: flex-start;
}

.under-header__ttl-img:last-child {
  display: flex;
  justify-content: flex-end;
}

.under-header__ttl-wrapper {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 1199px) {
  .under-header__ttl-wrapper {
    gap: 1rem;
  }
}

.under-header__ttl-en {
  font-family: "Roboto", serif;
  font-size: 90px;
  text-transform: capitalize;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .under-header__ttl-en {
    font-size: 32px;
    text-align: center;
    line-height: 1.5;
  }
}

.under-header__ttl {
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-size: 14px;
  font-weight: 400;
}

/* パンくずリストスタイル */
#breadcrumb {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding: 4rem 0;
  font-family: "Roboto", serif;
}

.breadcrumb a {
  text-decoration: underline;
}
.breadcrumb > span {
  display: flex;
  align-items: center;
}
.breadcrumb > span .material-symbols-outlined {
  font-size: 12px;
  padding: 0 1rem;
  font-weight: 500;
}
.breadcrumb > span > span:first-child {
  text-decoration: underline;
}

.breadcrumb_last {
  text-transform: capitalize;
}

.article__title {
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}

.mv {
  height: 100vh;
  position: relative;
}
@media screen and (max-width: 834px) {
  .mv {
    height: calc(100vh - 152px);
  }
}
.mv h1 {
  width: 100%;
}
.mv__text {
  display: flex;
  align-items: flex-end;
  height: 100%;
  width: 79.3%;
  margin: 0 7% 0 auto;
  padding-bottom: 5%;
}
@media screen and (max-width: 834px) {
  .mv__text {
    flex-direction: column-reverse;
    grid-row-gap: 20px;
    width: 79.3%;
    height: 95%;
  }
}
@media screen and (max-width: 834px) {
  .mv__text svg {
    width: 110%;
    max-width: 450px;
  }
}
.mv__title-jp {
  font-size: 2.4rem;
  line-height: 1;
  white-space: nowrap;
  font-weight: 300;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}
@media screen and (max-width: 834px) {
  .mv__title-jp {
    font-size: 1.4rem;
  }
}
.mv__logo-mask {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .mv__logo-mask {
    top: 107px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 370px;
  }
}
@media screen and (min-width: 835px) {
  .mv__logo-mask.logofadein.scroll-activate {
    opacity: 0;
    transform: translate(0, 30px);
    transition: all 0.8s;
    transition-delay: 0.7s;
  }
}
@media screen and (min-width: 835px) {
  .mv__logo-mask.logofadein.scroll-activate.active {
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 834px) {
  .mv__logo-mask svg path {
    transform: scale(0.45, 0.45);
  }
}

.video-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: url(#clip-path);
}

.video-wrapper video {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.hidden-svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

/* Business Section */
.buisiness-item {
  position: relative;
  height: 100vh;
  display: flex;
  background-size: cover;
  background-repeat: no-repeat;
}

.buisiness-item1 {
  background-image: url("../img/top/buisiness_bg1.jpg");
}

.buisiness-item2 {
  background-image: url("../img/top/buisiness_bg2.jpg");
}

.buisiness__title-en {
  position: absolute;
  z-index: 1;
  left: 5%;
  top: 0;
  width: 90%;
  margin: 0 auto;
  padding-top: 90px;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .buisiness__title-en {
    padding-top: 60px;
    left: 5%;
  }
}

.content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  -moz-column-gap: 30px;
       column-gap: 30px;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .content-wrapper {
    flex-direction: column;
    padding: 90px 0 30px;
  }
}

.content-text {
  display: block;
  width: 29%;
}
@media screen and (max-width: 834px) {
  .content-text {
    width: 60%;
  }
}
.content-text .number {
  font-size: 1.8rem;
  font-weight: 600;
  font-family: "Roboto", serif;
  padding-bottom: 10px;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .content-text .number {
    font-size: 1.4rem;
  }
}

.thumbnail {
  position: relative;
  width: 370px;
  height: 500px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .thumbnail {
    width: 100%;
    height: 150px;
  }
}

.thumbnail-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1000px;
  transform: translateY(0);
  transition: transform 0.6s ease-out;
}
@media screen and (max-width: 834px) {
  .thumbnail-track {
    height: 300px;
  }
}

.thumbnail-image {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 834px) {
  .thumbnail-image {
    width: 100%;
    height: 150px;
  }
}

.content-text2 {
  width: 27%;
}
@media screen and (max-width: 834px) {
  .content-text2 {
    width: 100%;
  }
}
.content-text2 .description {
  font-size: 3rem;
  color: #fff;
  font-weight: 300;
  padding-bottom: 37px;
}
@media screen and (max-width: 834px) {
  .content-text2 .description {
    font-size: 2rem;
    text-align: center;
    padding-top: 15px;
    padding-bottom: 10px;
  }
}
.content-text2 .description br.tab {
  display: none;
}
@media screen and (max-width: 1373px) and (min-width: 835px) {
  .content-text2 .description br.tab {
    display: block;
  }
}
.content-text2 .description br.tab2 {
  display: none;
}
@media screen and (max-width: 1252px) and (min-width: 835px) {
  .content-text2 .description br.tab2 {
    display: block;
  }
}
.content-text2 .text {
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .content-text2 .text {
    font-size: 1.3rem;
    line-height: 1.5;
    text-align: center;
  }
}
.content-text2 .btn {
  position: relative;
  z-index: 5;
  margin-top: 40px;
  border: 1px solid #fff;
}
@media screen and (max-width: 834px) {
  .content-text2 .btn {
    margin-top: 15px;
    margin: 20px auto 0;
  }
}
.content-text2 .btn .button-text {
  color: #fff;
}

.shop-picture {
  overflow: hidden;
  max-width: 1600px;
  margin: 0 auto;
  width: 90%;
}
@media screen and (max-width: 834px) {
  .shop-picture {
    width: 100%;
  }
}
.shop-picture img {
  height: -moz-fit-content;
  height: fit-content;
  aspect-ratio: 16/8.3;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 834px) {
  .shop-picture img {
    aspect-ratio: 37/41;
  }
}

.about {
  padding-top: 140px;
  padding-bottom: 140px;
}
@media screen and (max-width: 834px) {
  .about {
    padding-top: 35px;
    padding-bottom: 35px;
  }
}
.about__contents {
  display: flex;
  align-items: self-start;
  justify-content: flex-end;
  position: relative;
}
@media screen and (max-width: 834px) {
  .about__contents {
    flex-direction: column;
  }
}
.about__contents picture {
  width: 55%;
  position: absolute;
  left: 0;
  top: 28%;
}
@media screen and (max-width: 834px) {
  .about__contents picture {
    position: relative;
    top: auto;
    left: auto;
    margin-top: 15px;
    width: 94%;
  }
}
.about__contents picture img {
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 834px) {
  .about__contents picture img {
    aspect-ratio: 35/20;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.about__contents .contents__text {
  padding-top: 100px;
  padding-bottom: 130px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media screen and (max-width: 834px) {
  .about__contents .contents__text {
    padding-top: 35px;
    padding-bottom: 0;
  }
}
.about__contents .contents__text .text-wrap {
  width: 27%;
}
@media screen and (max-width: 834px) {
  .about__contents .contents__text .text-wrap {
    width: 100%;
    margin: 0 auto;
  }
}
.about__contents .contents__text .text-wrap .text {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  margin-bottom: 20px;
}
@media screen and (max-width: 834px) {
  .about .btn {
    margin: 0 auto 50px;
  }
}

.rental {
  padding-top: 140px;
}
@media screen and (max-width: 834px) {
  .rental {
    padding-top: 50px;
  }
}
.rental__details {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 100px;
}
@media screen and (max-width: 834px) {
  .rental__details {
    padding-bottom: 30px;
    flex-direction: column;
  }
}
.rental__title-jp {
  font-size: clamp(4.2rem, 4vw, 6rem);
  line-height: 1.3;
  width: 46%;
}
@media screen and (max-width: 834px) {
  .rental__title-jp {
    font-size: clamp(2.5rem, 5vw, 5rem);
    width: 100%;
    padding-bottom: 20px;
  }
}
.rental__detail {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .rental__detail {
    width: 100%;
  }
}
.rental__lead {
  font-size: 2.4rem;
  font-weight: 300;
  font-weight: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  padding-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .rental__lead {
    font-size: 1.8rem;
    padding-bottom: 10px;
  }
}

:root {
  --primary-color: #cb6a3e;
}

.tabs1 .tabs {
  max-width: 600px;
  width: 90%;
  margin: 20px auto 0;
  display: flex;
  position: relative;
  background-color: #f9f9f9;
  box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  border-radius: 99px;
}
@media screen and (max-width: 834px) {
  .tabs1 .tabs {
    max-width: 350px;
  }
}
.tabs1 .tabs * {
  z-index: 2;
}
.tabs1 input[type=radio] {
  display: none;
}
.tabs1 .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 140px;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
  color: #002b43;
}
@media screen and (max-width: 834px) {
  .tabs1 .tab {
    width: 80px;
    height: 30px;
  }
}
.tabs1 input[type=radio]:checked + label {
  color: #fff;
}
.tabs1 input[id=radio-1]:checked ~ .glider {
  transform: translateX(0);
}
.tabs1 input[id=radio-2]:checked ~ .glider {
  transform: translateX(140px);
}
@media screen and (max-width: 834px) {
  .tabs1 input[id=radio-2]:checked ~ .glider {
    transform: translateX(100%);
  }
}
.tabs1 input[id=radio-3]:checked ~ .glider {
  transform: translateX(280px);
}
@media screen and (max-width: 834px) {
  .tabs1 input[id=radio-3]:checked ~ .glider {
    transform: translateX(200%);
  }
}
.tabs1 input[id=radio-4]:checked ~ .glider {
  transform: translateX(420px);
}
@media screen and (max-width: 834px) {
  .tabs1 input[id=radio-4]:checked ~ .glider {
    transform: translateX(300%);
  }
}
.tabs1 .glider {
  position: absolute;
  display: flex;
  height: 40px;
  width: 140px;
  background-color: var(--primary-color);
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
}
@media screen and (max-width: 834px) {
  .tabs1 .glider {
    width: 80px;
    height: 30px;
  }
}
.tabs1 .tab-content {
  max-width: 1600px;
  margin: 50px auto 0;
  width: 90%;
}
@media screen and (max-width: 834px) {
  .tabs1 .tab-content {
    margin: 20px auto 0;
    width: 100%;
  }
}
.tabs1 .content {
  display: none;
}
.tabs1 input[id=radio-1]:checked ~ .tab-content #content-1 {
  display: block;
}
.tabs1 input[id=radio-2]:checked ~ .tab-content #content-2 {
  display: block;
}
.tabs1 input[id=radio-3]:checked ~ .tab-content #content-3 {
  display: block;
}
.tabs1 input[id=radio-4]:checked ~ .tab-content #content-4 {
  display: block;
}
.tabs1 input[id=radio-5]:checked ~ .tab-content #content-5 {
  display: block;
}
.tabs1 input[id=radio-6]:checked ~ .tab-content #content-6 {
  display: block;
}

.tabs2 .tabs {
  max-width: 600px;
  width: 90%;
  margin: 20px auto 0;
  display: flex;
  position: relative;
  background-color: #f9f9f9;
  box-shadow: 0px -2px 2px 0px rgba(0, 0, 0, 0.1);
  padding: 0.75rem;
  border-radius: 99px;
}
@media screen and (max-width: 834px) {
  .tabs2 .tabs {
    max-width: 350px;
  }
}
.tabs2 .tabs * {
  z-index: 2;
}
.tabs2 input[type=radio] {
  display: none;
}
.tabs2 .tab {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  width: 140px;
  font-size: 1.25rem;
  font-weight: 500;
  border-radius: 99px;
  cursor: pointer;
  transition: color 0.15s ease-in;
  color: #002b43;
}
@media screen and (max-width: 834px) {
  .tabs2 .tab {
    width: 80px;
    height: 30px;
  }
}
.tabs2 input[type=radio]:checked + label {
  color: #fff;
}
.tabs2 input[id=radio-4]:checked ~ .glider {
  transform: translateX(0);
}
.tabs2 input[id=radio-5]:checked ~ .glider {
  transform: translateX(140px);
}
@media screen and (max-width: 834px) {
  .tabs2 input[id=radio-5]:checked ~ .glider {
    transform: translateX(100%);
  }
}
.tabs2 input[id=radio-6]:checked ~ .glider {
  transform: translateX(280px);
}
@media screen and (max-width: 834px) {
  .tabs2 input[id=radio-6]:checked ~ .glider {
    transform: translateX(200%);
  }
}
.tabs2 .glider {
  position: absolute;
  display: flex;
  height: 40px;
  width: 140px;
  background-color: var(--primary-color);
  z-index: 1;
  border-radius: 99px;
  transition: 0.25s ease-out;
}
@media screen and (max-width: 834px) {
  .tabs2 .glider {
    width: 80px;
    height: 30px;
  }
}
.tabs2 .tab-content2 {
  max-width: 1600px;
  margin: 50px auto 0;
  width: 90%;
}
@media screen and (max-width: 834px) {
  .tabs2 .tab-content2 {
    margin: 20px auto 0;
    width: 100%;
  }
}
.tabs2 .content {
  display: none;
}
.tabs2 input[id=radio-4]:checked ~ .tab-content2 #content-4 {
  display: block;
}
.tabs2 input[id=radio-5]:checked ~ .tab-content2 #content-5 {
  display: block;
}
.tabs2 input[id=radio-6]:checked ~ .tab-content2 #content-6 {
  display: block;
}

.rental__modal-contents {
  position: relative;
}
.rental__modal-contents img {
  height: -moz-fit-content;
  height: fit-content;
}

.modal__panel {
  padding: 3.5% 60px;
  border-radius: 10px;
}

.modal__content {
  display: flex;
  flex-direction: column;
  grid-row-gap: 20px;
}
.modal__content .modal__picture {
  display: flex;
  justify-content: center;
}
.modal__content .modal__picture img {
  max-height: 150px;
  width: auto;
}
@media screen and (max-width: 834px) {
  .modal__content .modal__picture img {
    max-height: 100px;
  }
}
.modal__content .modal__details .modal__products {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}
.modal__content .modal__details .modal__products span {
  font-size: 1.2rem;
  font-family: "Roboto", serif;
  font-weight: 400;
  display: block;
}
.modal__content .modal__details .modal__price {
  text-align: center;
  font-family: "Roboto", serif;
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 30px;
}
.modal__content .modal__details .modal__price span {
  font-size: 1rem;
  font-weight: 400;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}
.modal__content .modal__details .btn {
  width: 150px;
  margin: 0 auto;
}
.modal__content .modal__details .btn .button-text-wrapper {
  height: 40px;
}

.button-overlay {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  background-color: transparent; /* 背景色の競合を防ぐ */
  opacity: 1;
}

.button-background {
  width: 80px;
  height: 80px;
  background-color: color-mix(in srgb, #fff 40%, transparent);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .button-background {
    width: 40px;
    height: 40px;
  }
}

.button-inner {
  position: absolute;
  width: 40px;
  height: 40px;
  background-color: #fff;
  border-radius: 50%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  color: #002b43;
  animation: pulse 4s infinite;
  transition: 0.2s ease;
}
@media screen and (max-width: 834px) {
  .button-inner {
    width: 20px;
    height: 20px;
    font-size: 14px;
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
  100% {
    transform: scale(1);
  }
}
.button-inner:hover {
  background-color: #cb6a3e;
  color: white;
  transform: scale(2);
  cursor: pointer;
  transition: 0.2s ease;
}

.lineup__container {
  padding-top: 110px;
}
@media screen and (max-width: 834px) {
  .lineup__container {
    padding-top: 50px;
  }
}
.lineup__title-wrap {
  display: flex;
  align-items: flex-end;
  padding-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .lineup__title-wrap {
    padding-bottom: 30px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.lineup__title {
  font-size: 4.2rem;
  font-weight: 300;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .lineup__title {
    font-size: clamp(2.2rem, 4vw, 4rem);
    padding-bottom: 20px;
  }
}
.lineup .text {
  text-align: right;
}
@media screen and (max-width: 834px) {
  .lineup .text {
    text-align: justify;
  }
}
.lineup__list-box {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .lineup__list-box {
    flex-direction: column;
    grid-row-gap: 30px;
  }
}
.lineup__list {
  width: 49%;
}
@media screen and (max-width: 834px) {
  .lineup__list {
    width: 100%;
  }
}
.lineup__item .all-products {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  height: 390px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .lineup__item .all-products {
    height: 200px;
    border-radius: 5px;
  }
}
.lineup__item .all-products p {
  position: absolute;
  z-index: 2;
  color: #fff;
  top: 43px;
  left: 7%;
  font-size: 2.8rem;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .lineup__item .all-products p {
    top: 20px;
    font-size: 1.8rem;
  }
}
.lineup__item .all-products:hover::before {
  transform: scale(1.1);
  transition: transform 0.5s ease; /* transitionは通常のプロパティと併せて記述 */
}
.lineup__item .item__nav {
  padding-top: 38px;
}
@media screen and (max-width: 834px) {
  .lineup__item .item__nav {
    padding-top: 20px;
  }
}
.lineup__item .item__nav .nav__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 834px) {
  .lineup__item .item__nav .nav__list {
    justify-content: space-between;
  }
}
.lineup__item .nav__item {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .lineup__item .nav__item {
    width: 48%;
  }
}
.lineup__item .nav__item a {
  display: block;
  line-height: 2;
  text-decoration: underline;
}
@media screen and (max-width: 834px) {
  .lineup__item .nav__item a {
    font-size: 1.4rem;
  }
}
.lineup__item .nav__item a:hover {
  opacity: 0.6;
}
.lineup__item {
  /*.nav__item:nth-child(1),
  .nav__item:nth-child(3),
  .nav__item:nth-child(5){
  	width: 50%;
  	@include mq() {
  		width: 70%;
  	}
  }		
  .nav__item:nth-child(2),
  .nav__item:nth-child(4),
  .nav__item:nth-child(6){
  	width: 50%;
  	@include mq() {
  		width: 30%;
  	}
  }*/
}
.lineup__list1 .all-products:before {
  transition: transform 0.5s ease; /* transitionは通常のプロパティと併せて記述 */
  content: "";
  background-image: url("../img/webp/top/rental_picture2.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.lineup__list2 .all-products:before {
  transition: transform 0.5s ease; /* transitionは通常のプロパティと併せて記述 */
  content: "";
  background-image: url("../img/webp/top/rental_picture3.webp");
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.recommendation__title {
  padding-top: 100px;
  position: relative;
  font-size: 4.2rem;
  font-weight: 300;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.5;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .recommendation__title {
    padding-top: 80px;
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.4;
  }
}

.swiper-container {
  position: relative;
  padding-top: 48px;
  width: 90%;
  max-width: 1680px;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 1500px) {
  .swiper-container {
    width: 95%;
  }
}

.swiper-slide a {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 42px 3%;
  position: relative;
  background-color: #f9f9f9;
}
@media screen and (max-width: 834px) {
  .swiper-slide a {
    padding: 62px 3% 40px;
    border-radius: 5px;
  }
}
.swiper-slide .tag {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #fff;
  border: 1px solid rgba(220, 220, 220, 0.8);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  display: flex;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
}
.swiper-slide .tag p {
  font-size: 1.2rem;
}
.swiper-slide .swiper__picture {
  text-align: center;
}
.swiper-slide .swiper__picture img {
  height: 150px;
  width: auto;
}
.swiper-slide .swiper__products {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}
.swiper-slide .swiper__products span {
  display: block;
  font-size: 1.2rem;
  font-family: "Roboto", serif;
  font-weight: 400;
}
.swiper-slide .swiper__price {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Roboto", serif;
}
.swiper-slide .swiper__price span {
  font-size: 1rem;
  font-weight: 400;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}

.navigation-buttons {
  display: flex;
  justify-content: space-between;
  position: absolute;
  width: 110px;
  right: 5%;
  top: -36px;
  z-index: 10;
  padding: 0 20px;
}
@media screen and (max-width: 834px) {
  .navigation-buttons {
    top: 14px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  background-color: #002b43;
  opacity: 0.3;
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.swiper-button-next:after,
.swiper-button-prev:after {
  display: none;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 1;
}

.material-icons {
  color: white;
  font-size: 14px !important;
}

.faq__title {
  padding-top: 130px;
  font-size: 4.2rem;
  font-weight: 300;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .faq__title {
    padding-top: 40px;
    font-size: clamp(2.2rem, 4vw, 4rem);
  }
}
.faq__list {
  padding-top: 46px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 834px) {
  .faq__list {
    padding-top: 20px;
    grid-row-gap: 30px;
    flex-direction: column;
  }
}
.faq__item {
  width: 23%;
}
@media screen and (max-width: 834px) {
  .faq__item {
    width: 100%;
  }
}
.faq__item a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  height: 380px;
  position: relative;
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .faq__item a {
    height: 200px;
    border-radius: 5px;
  }
}
.faq__item a:before {
  transition: transform 0.5s ease; /* transitionは通常のプロパティと併せて記述 */
  content: "";
  background-size: cover;
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 834px) {
  .faq__item a:before {
    background-position: center;
  }
}
.faq__item a:hover::before {
  transform: scale(1.1);
  transition: transform 0.5s ease; /* transitionは通常のプロパティと併せて記述 */
}
.faq__item a p {
  position: absolute;
  z-index: 5;
  color: #fff;
  font-size: 2.1rem;
  font-weight: 500;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  top: 25px;
  left: 7%;
}
@media screen and (max-width: 834px) {
  .faq__item a p {
    top: 15px;
    left: 4%;
    font-size: 1.7rem;
  }
}
.faq__item1 a:before {
  background-image: url("../img/webp/top/faq_picture1.webp");
}
.faq__item2 a:before {
  background-image: url("../img/webp/top/faq_picture2.webp");
}
.faq__item3 a:before {
  background-image: url("../img/webp/top/faq_picture3.webp");
}
.faq__item4 a:before {
  background-image: url("../img/webp/top/faq_picture4.webp");
}

.sustainabl {
  position: relative;
  overflow: hidden;
  margin-top: 150px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 834px) {
  .sustainabl {
    margin-top: 60px;
  }
}

.sus__text-wrap {
  padding-top: 150px;
  padding-bottom: 170px;
}
@media screen and (max-width: 834px) {
  .sus__text-wrap {
    padding-top: 60px;
    padding-bottom: 60px;
    display: flex;
    flex: 1;
    flex-direction: column;
    grid-row-gap: 30px;
  }
}

.sus__title-wrap {
  text-align: left;
  width: 44%;
}
@media screen and (max-width: 834px) {
  .sus__title-wrap {
    width: 80%;
  }
}
.sus__title-wrap .sus__title-en {
  color: #fff;
}
.sus__title-wrap .sus__title-jp {
  color: #fff;
}

.sus__details {
  width: 50%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 834px) {
  .sus__details {
    width: 100%;
    margin: 0 auto 0 0;
  }
}
.sus__details .sus__lead {
  font-size: 3.2rem;
  color: #fff;
  line-height: 1.5;
  padding-bottom: 30px;
}
@media screen and (max-width: 834px) {
  .sus__details .sus__lead {
    font-size: 2.2rem;
  }
}
.sus__details .sus__lead span {
  font-size: 4.2rem;
  display: block;
}
@media screen and (max-width: 834px) {
  .sus__details .sus__lead span {
    font-size: 2.8rem;
  }
}
.sus__details .text {
  color: #fff;
  margin-bottom: 50px;
}
.sus__details .btn {
  border: 1px solid #fff;
  color: #fff;
}

.sus__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%; /* 横幅を画面に合わせる */
  height: auto; /* 縦横比を維持 */
  z-index: -1;
  overflow: hidden;
}

.parallax {
  width: 100%;
  aspect-ratio: 42/32;
  -o-object-fit: cover;
     object-fit: cover;
}

.news {
  padding-top: 140px;
  padding-bottom: 150px;
}
@media screen and (max-width: 834px) {
  .news {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.news__title-en {
  font-family: "Roboto", serif;
  font-size: 2.8rem;
  padding-bottom: 30px;
  font-weight: 100;
}
@media screen and (max-width: 834px) {
  .news__title-en {
    padding-bottom: 20px;
  }
}
.news__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: 30px;
}
@media screen and (max-width: 834px) {
  .news__list {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.news__item1 {
  grid-area: 1/1/3/2;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .news__item1 {
    border-radius: 5px;
  }
}
.news__item1 a,
.news__item1 .news__picture-wrap,
.news__item1 picture,
.news__item1 img {
  height: 100%;
  display: block;
}
.news__item1 .news__picture-wrap {
  transition: transform 0.5s ease;
}
.news__item1 .news__picture-wrap:hover {
  transform: scale(1.1);
  transition: transform 0.5s ease; /* transitionは通常のプロパティと併せて記述 */
}
.news__item1 .news__text-wrap {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 70px 7% 35px;
}
@media screen and (max-width: 834px) {
  .news__item1 .news__text-wrap {
    padding: 20px 5% 15px;
  }
}
.news__item1 .news__text-wrap .detail {
  color: #fff;
}
.news__item1 .news__text-wrap .date {
  color: #fff;
}
.news__item2 {
  grid-area: 1/2/2/3;
}
.news__item3 {
  grid-area: 2/2/3/3;
}
.news__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .news__item a {
    flex-direction: column;
  }
}
.news__item .news__picture-wrap {
  overflow: hidden;
  border-radius: 10px;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .news__item .news__picture-wrap {
    width: 100%;
    border-radius: 5px;
  }
}
.news__item .news__picture-wrap:hover img {
  transform: scale(1.1);
  transition: transform 0.5s ease; /* transitionは通常のプロパティと併せて記述 */
}
.news__item img {
  height: auto;
  display: block;
  transition: transform 0.5s ease;
}
@media screen and (max-width: 834px) {
  .news__item img {
    aspect-ratio: 2/0.8;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
  }
}
.news__item .news__text-wrap {
  width: 48%;
}
@media screen and (max-width: 834px) {
  .news__item .news__text-wrap {
    margin-top: 10px;
    width: 100%;
  }
}
.news .ct {
  color: #cb6a3e;
  font-size: 1.3rem;
  font-family: "Roboto", serif;
  font-weight: 300;
  padding-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .news .ct {
    padding-bottom: 5px;
  }
}
.news .detail p {
  font-size: 1.7rem;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
  font-weight: 300;
  padding-bottom: 16px;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 834px) {
  .news .detail p {
    font-size: 1.4rem;
    overflow: hidden;
    line-height: 1.5;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    max-height: 43px;
  }
}
.news .date {
  font-size: 1.4rem;
  font-weight: 100;
  font-family: "Roboto", serif;
}
.news .btn {
  margin: 80px auto 0;
}
@media screen and (max-width: 834px) {
  .news .btn {
    margin: 20px auto 0;
  }
}

.footer {
  position: relative;
  width: 100%;
  padding: 247px 0 70px;
  background-image: url("../img/webp/common/footer_bg.webp");
  background-size: cover;
  background-repeat: no-repeat;
}
@media screen and (max-width: 834px) {
  .footer {
    padding: 70px 0 40px;
  }
}
.footer__container {
  max-width: 1500px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .footer__container {
    flex-direction: column;
  }
}
.footer__text {
  width: 45%;
}
@media screen and (max-width: 834px) {
  .footer__text {
    width: 90%;
  }
}
.footer__nav-wrap {
  width: 20%;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  padding-top: 130px;
}
@media screen and (max-width: 1210px) and (min-width: 835px) {
  .footer__nav-wrap {
    width: 30%;
  }
}
@media screen and (max-width: 834px) {
  .footer__nav-wrap {
    width: 100%;
    padding-top: 30px;
    align-items: flex-start;
  }
}
.footer__nav {
  padding-bottom: 110px;
}
.footer ul {
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 10px;
}
.footer ul li {
  width: 50%;
  overflow: hidden;
}
.footer ul li a {
  font-size: 1.4rem;
  font-weight: 300;
  font-family: "Roboto", serif;
  line-height: 1.5;
  overflow: hidden;
  color: transparent;
  text-shadow: 0 -1.5em 0 #fff, 0 0 0 #fff;
  transition: text-shadow 0.4s cubic-bezier(0.76, 0, 0.24, 1);
}
.footer ul li a:hover {
  text-shadow: 0 0 0 #fff, 0 1.5em 0 #fff;
  opacity: 0.6;
}
.footer__logo {
  padding-top: 130px;
  padding-bottom: 25px;
}
@media screen and (max-width: 834px) {
  .footer__logo {
    padding-top: 40px;
    padding-bottom: 5px;
  }
}
.footer small {
  font-size: 1rem;
  font-family: "Roboto", serif;
  font-weight: 300;
  color: #fff;
}

.footer.sticky {
  position: sticky;
  z-index: 0;
  bottom: 0;
  left: 0;
}

/*====================================================
news
====================================================*/
.news_under .under__mv {
  max-width: 1600px;
  max-height: 311px;
  height: 100vh;
  width: 90%;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .news_under .under__mv {
    max-height: 200px;
  }
}
.news_under .under__mv .title-wrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.news_under .under__mv .title-wrap .under__mv--title-en {
  font-size: 9rem;
  font-family: "Roboto", serif;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .news_under .under__mv .title-wrap .under__mv--title-en {
    font-size: 5rem;
  }
  .news_under .under__mv .title-wrap .under__mv--title-en img {
    height: 50px;
  }
}
.news_under .under__mv .title-wrap .under__mv--title {
  font-size: 1.4rem;
  font-weight: 300;
  padding-top: 20px;
}
@media screen and (max-width: 834px) {
  .news_under .under__mv .title-wrap .under__mv--title {
    padding-top: 10px;
  }
}
.news_under .news__contents {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  margin-bottom: 86px;
}
@media screen and (max-width: 834px) {
  .news_under .news__contents {
    flex-direction: column;
    grid-row-gap: 70px;
    margin: 0 auto;
    padding-top: 20px;
  }
}
.news_under .news__main {
  width: 75%;
}
@media screen and (max-width: 834px) {
  .news_under .news__main {
    width: 100%;
  }
}
.news_under .news__list {
  display: flex;
  flex-direction: column;
}
.news_under .news__item a {
  border-bottom: 1px solid #dce1e4;
  padding: 50px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a {
    padding: 20px 2%;
    flex-wrap: wrap;
    grid-row-gap: 10px;
  }
}
.news_under .news__item a .news__picture-wrap {
  overflow: hidden;
  border-radius: 10px;
  width: 33.4%;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a .news__picture-wrap {
    width: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
  }
}
.news_under .news__item a .news__picture-wrap img {
  aspect-ratio: 2/1;
  border-radius: 10px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a .news__picture-wrap img {
    aspect-ratio: 5/4;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.news_under .news__item a .news__text-wrap {
  width: 64%;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a .news__text-wrap {
    width: 100%;
  }
}
.news_under .news__item a .date time {
  font-size: 16px;
  font-weight: 100;
  font-family: "Roboto", serif;
  width: 15%;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a .date time {
    font-size: 14px;
    width: auto;
    margin-right: 4%;
  }
}
.news_under .news__item a .category__wrap {
  margin-right: 4%;
  width: 16%;
  display: flex;
  flex-direction: column;
  grid-row-gap: 10px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a .category__wrap {
    flex-direction: row;
    -moz-column-gap: 5px;
         column-gap: 5px;
    width: auto;
  }
}
.news_under .news__item a .category {
  padding-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a .category {
    padding-bottom: 10px;
  }
}
.news_under .news__item a .category p {
  color: #cb6a3e;
  font-size: 1.3rem;
  font-weight: 300;
  font-family: "Roboto", serif;
}
.news_under .news__item a .news__title {
  font-size: 1.7rem;
  font-weight: 300;
  padding-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a .news__title {
    font-size: 1.5rem;
    padding-bottom: 10px;
  }
}
.news_under .news__item a .detail {
  padding-bottom: 15px;
}
@media screen and (max-width: 834px) {
  .news_under .news__item a .detail {
    padding-bottom: 10px;
  }
}
.news_under .news__item a .detail p {
  display: block;
  font-size: 1.4rem;
  overflow: hidden;
  line-height: 1.5;
  display: -webkit-box;
  text-overflow: ellipsis;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  max-height: 43px;
}
.news_under .news {
  /* ページネーション全体のスタイル */
}
.news_under .news ul.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding: 0;
  margin: 70px 0 0;
}
@media screen and (max-width: 834px) {
  .news_under .news ul.page-numbers {
    margin: 40px 0 0;
  }
}
.news_under .news {
  /* ページネーション各アイテムの間隔 */
}
.news_under .news ul.page-numbers li {
  margin: 0 5px;
}
.news_under .news {
  /* ページリンクの基本スタイル */
}
.news_under .news ul.page-numbers .page-numbers {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 834px) {
  .news_under .news ul.page-numbers .page-numbers {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
.news_under .news ul.page-numbers .page-numbers.current {
  width: 40px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  border-radius: 50%;
  background-color: #cc9a7e; /* 丸いボタンの背景色 */
  color: #fff; /* 文字色 */
  text-decoration: none;
  font-size: 16px;
  transition: background-color 0.3s ease;
}
@media screen and (max-width: 834px) {
  .news_under .news ul.page-numbers .page-numbers.current {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
.news_under .news {
  /* ページ番号のテキストを包むクラスへのスタイル */
}
.news_under .news ul.page-numbers .page-number {
  font-size: 16px;
}
@media screen and (max-width: 834px) {
  .news_under .news ul.page-numbers .page-number {
    font-size: 14px;
  }
}
.news_under .news {
  /* 現在のページのスタイル */
}
.news_under .news ul.page-numbers .current {
  background-color: #d4987c; /* 現在のページの背景色 */
  color: #fff; /* 現在のページの文字色 */
}
.news_under .news {
  /* ホバー時のスタイル */
}
.news_under .news ul.page-numbers a:hover {
  background-color: #e0e0e5; /* ホバー時の背景色 */
}
.news_under .news {
  /* 前へ・次へリンクのスタイル */
}
.news_under .news ul.page-numbers .next.page-numbers,
.news_under .news ul.page-numbers .prev.page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 17px;
  background-color: #dadeee; /* 矢印ボタンの背景色 */
  border-radius: 50%;
  width: 48px;
  height: 48px;
  text-align: center;
  color: #586480; /* 矢印の色 */
}
@media screen and (max-width: 834px) {
  .news_under .news ul.page-numbers .next.page-numbers,
  .news_under .news ul.page-numbers .prev.page-numbers {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }
}
.news_under .news {
  /* 矢印ボタンのホバー時のスタイル */
}
.news_under .news ul.page-numbers .next a:hover,
.news_under .news ul.page-numbers .prev a:hover {
  background-color: #d0d0d5;
}
.news_under .news {
  /* 矢印アイコンのスタイル (Material Symbols) */
}
.news_under .news .material-symbols-outlined {
  font-size: 17px;
  line-height: 40px;
  vertical-align: middle;
}
.news_under .custom-pagination {
  width: -moz-fit-content;
  width: fit-content;
  margin: 80px auto 150px;
  display: flex;
  -moz-column-gap: 30px;
       column-gap: 30px;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .news_under .custom-pagination {
    -moz-column-gap: 20px;
         column-gap: 20px;
    margin: 30px auto 0px;
  }
}
.news_under .custom-pagination .pagination-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #002b43;
}
.news_under .custom-pagination .pagination-btn span {
  color: #fff;
  line-height: 1;
  font-size: 14px;
}
@media screen and (max-width: 834px) {
  .news_under .custom-pagination .pagination-btn span {
    font-size: 1.2rem;
  }
}
.news_under .custom-pagination .pagination-btn.disabled {
  opacity: 0.3;
}
.news_under .custom-pagination .pagination-info {
  font-size: 1.4rem;
  font-weight: 400;
  font-family: "Roboto", serif;
}
@media screen and (max-width: 834px) {
  .news_under .custom-pagination .pagination-info {
    font-size: 1.2rem;
  }
}

.sidebar {
  width: 18%;
}
@media screen and (max-width: 834px) {
  .sidebar {
    width: 100%;
  }
}
.sidebar .sidebar-section {
  margin-bottom: 75.5px;
}
@media screen and (max-width: 834px) {
  .sidebar .sidebar-section {
    margin-bottom: 30px;
  }
}
.sidebar .sidebar-section h3 {
  font-size: 18px;
  font-family: "Roboto", serif;
  font-weight: 300;
  border-bottom: 1px solid #bec9cf;
  padding: 0 0 10px 0;
  cursor: pointer;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 26px;
}
@media screen and (max-width: 834px) {
  .sidebar .sidebar-section h3 {
    margin-bottom: 13px;
    font-size: 16px;
    padding: 15px 6%;
  }
}
.sidebar .sidebar-section ul {
  list-style: none;
  transition: 0.2s ease;
}
.sidebar .sidebar-section span {
  font-size: 12px;
}
.sidebar .sidebar-section ul li {
  margin-bottom: 10px;
  font-size: 15px;
  font-family: "Roboto", serif;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .sidebar .sidebar-section ul li {
    font-size: 14px;
  }
}

.news_under-detail .under__mv {
  max-width: 1600px;
  max-height: 311px;
  height: 100vh;
  width: 90%;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .news_under-detail .under__mv {
    max-height: 200px;
  }
}
.news_under-detail .under__mv .title-wrap {
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.news_under-detail .under__mv .title-wrap .under__mv--title-en {
  font-size: 9rem;
  font-family: "Roboto", serif;
  line-height: 1;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .news_under-detail .under__mv .title-wrap .under__mv--title-en {
    font-size: 5rem;
  }
  .news_under-detail .under__mv .title-wrap .under__mv--title-en img {
    height: 50px;
  }
}
.news_under-detail .under__mv .title-wrap .under__mv--title {
  font-size: 1.4rem;
  font-weight: 300;
  padding-top: 20px;
}
@media screen and (max-width: 834px) {
  .news_under-detail .under__mv .title-wrap .under__mv--title {
    padding-top: 10px;
  }
}
.news_under-detail .detail {
  display: flex;
  justify-content: space-between;
  padding: 104px 0 0;
  margin-bottom: 86px;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail {
    flex-direction: column;
    grid-row-gap: 90px;
    margin: 0 auto;
    padding: 60px 0 0;
  }
}
.news_under-detail .detail__main {
  width: 75%;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__main {
    width: 100%;
  }
}
.news_under-detail .detail__title-box {
  padding-bottom: 27px;
  border-bottom: 1px solid #dce1e4;
  margin-bottom: 60px;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__title-box {
    margin-bottom: 40px;
    padding-bottom: 20px;
  }
}
.news_under-detail .detail__title-box .info {
  display: flex;
  align-items: center;
  margin-bottom: 15px;
}
.news_under-detail .detail__title-box .info .date {
  font-size: 1.6rem;
  font-weight: 100;
  font-family: "Roboto", serif;
  margin-left: 3%;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__title-box .info .date {
    font-size: 1.4rem;
  }
}
.news_under-detail .detail__title-box .info .category p {
  color: #cb6a3e;
  font-size: 1.6rem;
  font-family: "Roboto", serif;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__title-box .info .category p {
    font-size: 1.3rem;
  }
}
.news_under-detail .detail .detail__title {
  font-size: 3.2rem;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail .detail__title {
    font-size: 2.2rem;
  }
}
.news_under-detail .detail .content__picture img {
  height: auto;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container ul ul {
    margin-left: 0.5em;
  }
}
.news_under-detail .detail__contents #ez-toc-container {
  width: 100%;
  border: transparent;
  background-color: #f9f9f9;
  border-radius: 10px;
  padding: 50px 6%;
  margin-bottom: 60px;
  margin-top: 60px;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container {
    flex-direction: column;
    padding: 40px 5.3%;
    margin-bottom: 40px;
    margin-top: 20px;
  }
}
.news_under-detail .detail__contents #ez-toc-container .ez-toc-title-container a.ez-toc-pull-right {
  display: none;
}
.news_under-detail .detail__contents #ez-toc-container .ez-toc-title-container p.ez-toc-title {
  color: #586480;
  padding-bottom: 0;
  font-size: 24px;
  font-weight: 400;
  font-family: "Roboto", serif;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container .ez-toc-title-container p.ez-toc-title {
    font-size: 22px;
  }
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container nav #ez-toc-container ul ul {
    margin-left: 0;
  }
}
.news_under-detail .detail__contents #ez-toc-container nav #ez-toc-container a {
  color: #586480;
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-1 {
  position: relative;
  font-size: 2rem;
  font-weight: 300;
  line-height: 1.5;
  color: #002b43;
  padding-left: 3.5%;
  width: 100%;
  margin-bottom: 25px;
  border-bottom: 1px solid #dce1e4;
  padding-bottom: 10px;
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-1:before {
  content: "";
  background-color: #002b43;
  width: 20px;
  height: 1px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 34%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-1:before {
    width: 10px;
  }
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-1 {
    font-size: 16px;
    margin-bottom: 15px;
    padding-left: 3.5%;
  }
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-2 {
  position: relative;
  font-size: 1.6rem;
  font-weight: 300;
  line-height: 1.5;
  color: #002b43;
  margin-bottom: 15px;
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-2:before {
  font-size: 15px;
  color: #92a3d8;
  font-family: "Roboto", serif;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-2 {
    font-size: 13px;
  }
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-3 {
  position: relative;
  font-size: 15px;
  line-height: 1.5;
  padding-left: 1.8%;
  color: #cb6a3e;
  margin-bottom: 15px;
  font-weight: 300;
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-3:before {
  content: "";
  background-color: #cc9a7e;
  width: 10px;
  height: 1px;
  border-radius: 50%;
  position: absolute;
  left: -2px;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-3 {
    font-size: 13px;
    padding-left: 4%;
  }
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-4 {
  position: relative;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 300;
  margin-bottom: 15px;
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-4:before {
  font-size: 15px;
  color: #92a3d8;
  font-family: "Roboto", serif;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-4 {
    font-size: 13px;
  }
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-5 {
  position: relative;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #586480;
  margin-bottom: 15px;
  font-weight: 300;
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-5:before {
  font-size: 15px;
  color: #92a3d8;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-5 {
    font-size: 13px;
  }
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-6 {
  position: relative;
  font-size: 15px;
  color: #586480;
  line-height: 1.5;
  margin-bottom: 15px;
  font-weight: 500;
}
.news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-6:before {
  font-size: 15px;
  color: #92a3d8;
  font-family: "Roboto", serif;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents #ez-toc-container nav .ez-toc-heading-6 {
    font-size: 13px;
  }
}
.news_under-detail .detail__contents h1 {
  font-size: 22px;
  line-height: 1.8;
  font-weight: 500;
  margin: 0;
  color: #92a3d8;
  padding-bottom: 18px;
  border-bottom: 1px solid #eeeeee;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents h1 {
    padding-bottom: 8px;
    font-size: 18px;
  }
}
.news_under-detail .detail__contents h2 {
  border-bottom: 1px solid #dce1e4;
  padding-bottom: 10px;
  line-height: 1.8;
  font-size: 2.4rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  position: relative;
  margin: 0;
  padding-left: 3.8%;
  border-radius: 2px;
}
.news_under-detail .detail__contents h2:before {
  content: "";
  background-color: #002b43;
  width: 20px;
  height: 1px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents h2:before {
    width: 10px;
  }
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents h2 {
    font-size: 18px;
  }
}
.news_under-detail .detail__contents h3 {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents h3 {
    font-size: 17px;
    padding: 8px 2%;
  }
}
.news_under-detail .detail__contents h4 {
  color: #cb6a3e;
  font-size: 1.8rem;
  font-weight: 300;
  padding-left: 3%;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents h4 {
    font-size: 16px;
  }
}
.news_under-detail .detail__contents h4:before {
  content: "";
  background-color: #cc9a7e;
  width: 10px;
  height: 1px;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}
.news_under-detail .detail__contents h5 {
  font-size: 16px;
  line-height: 1.8;
  font-weight: 400;
  padding-bottom: 7px;
  border-bottom: 1px solid #002b43;
  margin: 0;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents h5 {
    font-size: 16px;
    padding-bottom: 8px;
  }
}
.news_under-detail .detail__contents h6 {
  line-height: 1.8;
  position: relative;
  margin: 0;
  color: #718894;
  font-size: 1.4rem;
  font-weight: 300;
  padding: 0;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents h6 {
    font-size: 16px;
  }
}
.news_under-detail .detail__contents p {
  font-size: 15px;
  line-height: 1.8;
  margin-top: 25px;
  margin-bottom: 45px;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail__contents p {
    font-size: 14px;
    margin-top: 10px;
    margin-bottom: 20px;
  }
}
.news_under-detail .detail .btn {
  margin: 80px auto 150px;
}
@media screen and (max-width: 834px) {
  .news_under-detail .detail .btn {
    margin: 30px auto 0;
  }
}

.page-identity__list {
  padding-top: 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-row-gap: 130px;
}
@media screen and (max-width: 834px) {
  .page-identity__list {
    padding-top: 4rem;
    grid-row-gap: 60px;
  }
}
.page-identity__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.page-identity__item2 {
  background-color: #f9f9f9;
  padding: 150px 0;
}
@media screen and (max-width: 834px) {
  .page-identity__item2 {
    padding: 40px 0;
  }
}
.page-identity__title-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .page-identity__item1 .page-identity__title-en {
    width: 22%;
  }
  .page-identity__item1 .page-identity__title-en img {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .page-identity__item2 .page-identity__title-en {
    width: 25%;
  }
  .page-identity__item2 .page-identity__title-en img {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .page-identity__item3 .page-identity__title-en {
    width: 66%;
  }
  .page-identity__item3 .page-identity__title-en img {
    width: 100%;
  }
}
.page-identity__title {
  font-size: 1.4rem;
  padding-top: 20px;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .page-identity__title {
    padding-top: 7px;
  }
}
.page-identity__lead {
  font-size: 5.2rem;
  font-weight: 300;
  padding-top: 40px;
}
@media screen and (max-width: 834px) {
  .page-identity__lead {
    font-size: 2.5rem;
    padding-top: 20px;
  }
}
.page-identity__detail {
  padding-top: 8rem;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .page-identity__detail {
    padding-top: 3rem;
    flex-direction: column-reverse;
    grid-row-gap: 5rem;
  }
}
.page-identity__detail img {
  width: 34%;
  height: auto;
}
@media screen and (max-width: 834px) {
  .page-identity__detail img {
    width: 80%;
    max-width: 500px;
    margin: 0 auto;
  }
}
.page-identity__text {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .page-identity__text {
    width: 100%;
  }
}
.page-identity__text .detail__title {
  font-size: 3.2rem;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .page-identity__text .detail__title {
    font-size: 2rem;
    text-align: center;
  }
}
.page-identity__text .text {
  padding-top: 6rem;
}
@media screen and (max-width: 834px) {
  .page-identity__text .text {
    padding-top: 2rem;
    text-align: center;
  }
}
.page-identity__item2 .page-identity__detail {
  text-align: center;
  margin: 0 auto;
  justify-content: center;
  padding-top: 0;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .page-identity__item2 .page-identity__detail {
    padding-top: 3rem;
  }
}
.page-identity__item2 .page-identity__text {
  width: 90%;
}
.page-identity__item2 .text {
  margin: 0 auto;
}
.page-identity__item3 .page-identity__detail {
  text-align: center;
  margin: 0 auto;
  justify-content: center;
  padding-top: 0;
  width: 100%;
}
@media screen and (max-width: 834px) {
  .page-identity__item3 .page-identity__detail {
    padding-top: 3rem;
  }
}
.page-identity__item3 .page-identity__text {
  width: 100%;
}
.page-identity__item3 .text {
  margin: 0 auto;
}
.page-identity__item2 .text {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .page-identity__item2 .text {
    width: 100%;
  }
}
.page-identity__item3 .text {
  width: 100%;
  padding-top: 1rem;
}
.page-identity__item3 .mission__list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  grid-row-gap: 85px;
  padding-top: 65px;
}
@media screen and (max-width: 834px) {
  .page-identity__item3 .mission__list {
    flex-wrap: nowrap;
    flex-direction: column;
    grid-row-gap: 40px;
    padding-top: 45px;
  }
}
.page-identity__item3 .mission__item {
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .page-identity__item3 .mission__item {
    width: 100%;
  }
}
.page-identity__item3 .mission__item .mission__picture {
  background: #f9f9f9;
  border-radius: 10px;
  width: 100%;
  text-align: center;
  height: 330px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  .page-identity__item3 .mission__item .mission__picture {
    height: 150px;
    width: 150px;
    display: flex;
    padding: 0;
    justify-content: center;
  }
}
.page-identity__item3 .mission__item .mission__picture img {
  height: auto;
}
@media screen and (max-width: 834px) {
  .page-identity__item3 .mission__item .mission__picture img {
    width: 40%;
  }
}
.page-identity__item3 .mission__item .item__title-wrap {
  padding-top: 46px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .page-identity__item3 .mission__item .item__title-wrap {
    padding-top: 20px;
  }
}
.page-identity__item3 .mission__item .item__title-wrap .item__title {
  font-size: 2rem;
  font-weight: 400;
  padding-bottom: 10px;
}
@media screen and (max-width: 834px) {
  .page-identity__item3 .mission__item .item__title-wrap .item__title {
    font-size: 1.6rem;
    padding-bottom: 5px;
  }
}
.page-identity__item3 .mission__item .item__title-wrap .text {
  text-align: center;
  padding-top: 0;
}
.page-identity .page-identity__item1 .page-identity__lead {
  font-size: 6rem;
}
.page-identity .page-identity__item2 .page-identity__lead {
  font-size: 5.2rem;
}
.page-identity .page-identity__item3 .page-identity__lead {
  font-size: 4.8rem;
}

.page-sus01 {
  padding-top: 225px;
  padding-bottom: 150px;
}
@media screen and (max-width: 834px) {
  .page-sus01 {
    padding: 5rem 0;
  }
}
.page-sus01 .page-sus01__title-wrap {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .page-sus01 .page-sus01__title-wrap {
    flex-direction: column;
    grid-row-gap: 2rem;
  }
}
.page-sus01 .page-sus01__title-wrap .sus01__bg-image {
  position: absolute;
  z-index: -1;
  top: -110%;
  left: -12%;
}
@media screen and (max-width: 1290px) and (min-width: 900px) {
  .page-sus01 .page-sus01__title-wrap .sus01__bg-image {
    width: -moz-fit-content;
    width: fit-content;
    top: -50%;
    left: -7%;
  }
}
@media screen and (max-width: 834px) {
  .page-sus01 .page-sus01__title-wrap .sus01__bg-image {
    width: -moz-fit-content;
    width: fit-content;
    top: -20%;
    left: -7%;
  }
}
@media screen and (max-width: 1290px) and (min-width: 900px) {
  .page-sus01 .page-sus01__title-wrap .sus01__bg-image img {
    width: 60%;
  }
}
@media screen and (max-width: 834px) {
  .page-sus01 .page-sus01__title-wrap .sus01__bg-image img {
    width: 360px;
  }
}
.page-sus01 .page-sus01__title-wrap .page-sus01__title {
  width: 58%;
  font-size: 6rem;
  line-height: 1.3;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .page-sus01 .page-sus01__title-wrap .page-sus01__title {
    width: 100%;
    font-size: 2.8rem;
  }
}
.page-sus01 .page-sus01__title-wrap .text {
  width: 40%;
}
@media screen and (max-width: 834px) {
  .page-sus01 .page-sus01__title-wrap .text {
    width: 100%;
  }
}
.page-sus01 .page-sus01__detail {
  padding-top: 100px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
@media screen and (max-width: 834px) {
  .page-sus01 .page-sus01__detail {
    padding-top: 30px;
    flex-direction: column;
    grid-row-gap: 30px;
  }
}
.page-sus01 .page-sus01__detail img.page-sus__image1 {
  width: 46%;
  height: auto;
}
@media screen and (max-width: 834px) {
  .page-sus01 .page-sus01__detail img.page-sus__image1 {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}
.page-sus01 .page-sus01__detail img.page-sus__image2 {
  width: 49%;
  height: auto;
}
@media screen and (max-width: 834px) {
  .page-sus01 .page-sus01__detail img.page-sus__image2 {
    width: 90%;
    max-width: 400px;
    margin: 0 auto;
  }
}

.page-sus02 {
  background-color: #f9f9f9;
  padding: 145px 0 130px;
}
@media screen and (max-width: 834px) {
  .page-sus02 {
    padding: 40px 0;
  }
}
.page-sus02 .page-sus02__title-wrap .page-sus02__title-en {
  font-size: 1.4rem;
  font-weight: 100;
  font-family: "Roboto", serif;
  padding-bottom: 1.7rem;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus02__title-wrap .page-sus02__title-en {
    padding-bottom: 1rem;
  }
}
.page-sus02 .page-sus02__title-wrap .page-sus02__title {
  font-size: 4.2rem;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus02__title-wrap .page-sus02__title {
    font-size: 2.6rem;
  }
}
.page-sus02 .page-sus02__text-wrap {
  padding-top: 6rem;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus02__text-wrap {
    padding-top: 1.5rem;
  }
}
.page-sus02 .page-sus02__text-wrap .page-sus02__lead {
  font-size: 3.2rem;
  padding-bottom: 5px;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus02__text-wrap .page-sus02__lead {
    font-size: 2rem;
  }
}
.page-sus02 .page-sus02__list {
  padding-top: 37px;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus02__list {
    flex-direction: column;
    padding-top: 3rem;
    grid-row-gap: 40px;
    max-width: 400px;
    margin: 0 auto;
  }
}
.page-sus02 .page-sus02__item {
  width: 32%;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus02__item {
    width: 100%;
  }
}
.page-sus02 .page-sus02__item2 {
  padding-top: 50px;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus02__item2 {
    padding-top: 0;
  }
}
.page-sus02 .page-sus02__item3 {
  padding-top: 100px;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus02__item3 {
    padding-top: 0;
  }
}
.page-sus02 .page-sus__number {
  font-family: "Roboto", serif;
  font-size: 2.2rem;
  font-weight: 400;
  padding-bottom: 17px;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus__number {
    font-size: 1.6rem;
    padding-bottom: 1rem;
  }
}
.page-sus02 .page-sus__number span {
  font-size: 1.7rem;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .page-sus02 .page-sus__number span {
    font-size: 1.4rem;
  }
}
.page-sus02 img {
  border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .page-sus02 img {
    border-radius: 5px;
  }
}
.page-sus02 .item__title-wrap {
  padding-top: 10px;
}
@media screen and (max-width: 834px) {
  .page-sus02 .item__title-wrap {
    padding-top: 0;
  }
}
.page-sus02 .item__title-wrap h3 {
  font-size: 2.4rem;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  .page-sus02 .item__title-wrap h3 {
    font-size: 2rem;
  }
}

.page-sus03 {
  padding-top: 145px;
}
@media screen and (max-width: 834px) {
  .page-sus03 {
    padding-top: 40px;
  }
}
.page-sus03 .page-sus03__title-wrap {
  padding-bottom: 88px;
  border-bottom: 1px solid #dfe0e2;
}
@media screen and (max-width: 834px) {
  .page-sus03 .page-sus03__title-wrap {
    padding-bottom: 30px;
  }
}
.page-sus03 .page-sus03__title-wrap .page-sus03__title-en {
  font-size: 1.4rem;
  font-weight: 100;
  font-family: "Roboto", serif;
  padding-bottom: 1.7rem;
}
@media screen and (max-width: 834px) {
  .page-sus03 .page-sus03__title-wrap .page-sus03__title-en {
    padding-bottom: 1rem;
  }
}
.page-sus03 .page-sus03__title-wrap .page-sus03__title {
  font-size: 4.2rem;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .page-sus03 .page-sus03__title-wrap .page-sus03__title {
    font-size: 2.6rem;
  }
}
.page-sus03 .sus03__content {
  display: flex;
  justify-content: space-between;
}
.page-sus03 .sus__left-box {
  position: sticky;
  top: 130px;
  height: -moz-fit-content;
  height: fit-content;
  width: 25%;
}
@media screen and (max-width: 834px) {
  .page-sus03 .sus__left-box {
    display: none;
  }
}
.page-sus03 .sus__left-nav {
  padding-top: 80px;
}
.page-sus03 .sus__left-box .sus__left-item a {
  position: relative;
  padding-left: 4.5%;
  font-size: 1.4rem;
  line-height: 3;
}
.page-sus03 .sus__left-box .sus__left-item a.is_current:before {
  position: absolute;
  left: 0;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  background-color: #cb6c40;
  width: 5px;
  height: 5px;
}
.page-sus03 .sus__right-box {
  width: 67%;
}
@media screen and (max-width: 834px) {
  .page-sus03 .sus__right-box {
    width: 100%;
  }
}
.page-sus03 .sus__right-item {
  padding: 80px 0;
  border-bottom: 1px solid #dfe0e2;
}
@media screen and (max-width: 834px) {
  .page-sus03 .sus__right-item {
    padding: 40px 0;
  }
}
.page-sus03 .sus__right-item:last-child {
  border-bottom: 0px solid #dfe0e2;
}
.page-sus03 .sus__right-title {
  font-size: 3.2rem;
  font-weight: 300;
  padding-bottom: 34px;
}
@media screen and (max-width: 834px) {
  .page-sus03 .sus__right-title {
    font-size: 2.2rem;
    padding-bottom: 1.5rem;
  }
}
.page-sus03 .sus__right-contents {
  padding-top: 64px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  .page-sus03 .sus__right-contents {
    padding-top: 30px;
    flex-direction: column;
    grid-row-gap: 20px;
  }
}
.page-sus03 .sus__right-contents img {
  width: 46%;
  height: auto;
}
@media screen and (max-width: 834px) {
  .page-sus03 .sus__right-contents img {
    width: 100%;
  }
}
.page-sus03 .contents__text-wrap {
  width: 48%;
}
@media screen and (max-width: 834px) {
  .page-sus03 .contents__text-wrap {
    width: 100%;
  }
}
.page-sus03 .contents__text-wrap .contentx__lead {
  font-size: 1.8rem;
  padding-bottom: 0;
}
@media screen and (max-width: 834px) {
  .page-sus03 .contents__text-wrap .contentx__lead {
    font-size: 1.5rem;
  }
}
.page-sus03 .contents__text-wrap h4 {
  font-size: 2.4rem;
  font-weight: 300;
  padding-bottom: 2.5rem;
}
@media screen and (max-width: 834px) {
  .page-sus03 .contents__text-wrap h4 {
    font-size: 1.8rem;
    padding-bottom: 1.5rem;
  }
}
.page-sus03 .contents__text-wrap .text {
  font-size: 1.4rem;
}
@media screen and (max-width: 834px) {
  .page-sus03 .contents__text-wrap .text {
    width: 100%;
  }
}
.page-sus03 .contents__text-wrap .sdgs__cars {
  display: flex;
  -moz-column-gap: 15px;
       column-gap: 15px;
  padding-top: 15px;
}
@media screen and (max-width: 834px) {
  .page-sus03 .contents__text-wrap .sdgs__cars {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
.page-sus03 .contents__text-wrap .sdgs__cars .sdgs__icon {
  width: 65px;
  height: 65px;
}

#page-rental {
  padding-top: 80px;
  position: relative;
  padding-bottom: 100px;
}
@media screen and (max-width: 834px) {
  #page-rental {
    padding: 5rem 0;
  }
}
#page-rental img {
  height: auto;
}
#page-rental input[id=radio-4]:checked ~ .glider {
  transform: translateX(0);
}
#page-rental input[id=radio-5]:checked ~ .glider {
  transform: translateX(140px);
}
@media screen and (max-width: 834px) {
  #page-rental input[id=radio-5]:checked ~ .glider {
    transform: translateX(100%);
  }
}
#page-rental input[id=radio-6]:checked ~ .glider {
  transform: translateX(280px);
}
@media screen and (max-width: 834px) {
  #page-rental input[id=radio-6]:checked ~ .glider {
    transform: translateX(200%);
  }
}
#page-rental .rental-bg-layer {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  z-index: -1;
  margin-bottom: -260px;
  height: 800px;
  display: flex;
  padding-top: 11%;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  #page-rental .rental-bg-layer {
    margin-bottom: -170px;
    height: 400px;
  }
}
#page-rental .rental-bg-layer .rental-ttl {
  color: #fff;
  font-size: 6rem;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  #page-rental .rental-bg-layer .rental-ttl {
    font-size: 2.8rem;
  }
}
#page-rental .rental-bg-layer .text {
  color: #fff;
  width: 46%;
}
@media screen and (max-width: 834px) {
  #page-rental .rental-bg-layer .text {
    width: 100%;
    text-align: justify;
  }
}
#page-rental .furniture-bg-layer {
  background-image: url("../img/webp/rental/furniture-bg.webp");
}
#page-rental .electronics-bg-layer {
  background-image: url("../img/webp/rental/electronics-bg.webp");
}
#page-rental .rental__content {
  display: flex;
  justify-content: space-between;
  padding: 97px clamp(3rem, 8vw, 15rem) 200px;
  background-color: #fff;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__content {
    padding: 40px 4% 100px;
    width: 93%;
  }
}
#page-rental .rental__left-box {
  position: sticky;
  top: 130px;
  height: -moz-fit-content;
  height: fit-content;
  width: 25%;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__left-box {
    display: none;
  }
}
#page-rental .rental__left-title {
  font-size: 15px;
}
#page-rental .rental__left-box .rental__left-item a {
  position: relative;
  padding-left: 4.5%;
  font-size: 14px;
  color: rgba(0, 43, 67, 0.4);
  line-height: 3;
}
#page-rental .rental__left-box .rental__left-item a.is_current,
#page-rental .rental__left-box .rental__left-item a.electoronics-things {
  color: #002b43;
}
#page-rental .rental__left-box .rental__left-item a.is_current:before,
#page-rental .rental__left-box .rental__left-item a.electoronics-things:before {
  position: absolute;
  left: 0;
  top: 50%;
  left: 0%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  content: "";
  background-color: #cb6c40;
  width: 5px;
  height: 5px;
}
#page-rental .rental__right-box,
#page-rental .rental__right-box2 {
  width: 75%;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box,
  #page-rental .rental__right-box2 {
    width: 100%;
  }
}
#page-rental .rental__right-box .rental__right-item,
#page-rental .rental__right-box2 .rental__right-item {
  padding-bottom: 140px;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .rental__right-item,
  #page-rental .rental__right-box2 .rental__right-item {
    padding-bottom: 100px;
  }
}
#page-rental .rental__right-box .rental__right-item:last-child,
#page-rental .rental__right-box2 .rental__right-item:last-child {
  padding-bottom: 0;
}
#page-rental .rental__right-box .rental__right-title,
#page-rental .rental__right-box .rental__right-title2,
#page-rental .rental__right-box2 .rental__right-title,
#page-rental .rental__right-box2 .rental__right-title2 {
  font-size: 4.2rem;
  font-weight: 300;
  padding-bottom: 40px;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .rental__right-title,
  #page-rental .rental__right-box .rental__right-title2,
  #page-rental .rental__right-box2 .rental__right-title,
  #page-rental .rental__right-box2 .rental__right-title2 {
    font-size: 2.6rem;
    padding-bottom: 1.5rem;
  }
}
#page-rental .rental__right-box .tabs1 .tabs,
#page-rental .rental__right-box2 .tabs1 .tabs {
  width: 450px;
  height: 50px;
  box-shadow: none;
  border: 1px solid #707070;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .tabs1 .tabs,
  #page-rental .rental__right-box2 .tabs1 .tabs {
    width: 300px;
  }
}
#page-rental .rental__right-box .tabs1 .tab,
#page-rental .rental__right-box2 .tabs1 .tab {
  height: 34px;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .tabs1 .tab,
  #page-rental .rental__right-box2 .tabs1 .tab {
    width: 100px;
  }
}
#page-rental .rental__right-box .tabs1 .glider,
#page-rental .rental__right-box2 .tabs1 .glider {
  height: 36px;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .tabs1 .glider,
  #page-rental .rental__right-box2 .tabs1 .glider {
    width: 94px;
  }
}
#page-rental .rental__right-box .tabs1 .tab-content,
#page-rental .rental__right-box2 .tabs1 .tab-content {
  width: 100%;
  margin-bottom: 30px;
}
#page-rental .rental__right-box .tabs2 .tabs,
#page-rental .rental__right-box2 .tabs2 .tabs {
  width: 450px;
  height: 50px;
  box-shadow: none;
  border: 1px solid #707070;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .tabs2 .tabs,
  #page-rental .rental__right-box2 .tabs2 .tabs {
    width: 300px;
  }
}
#page-rental .rental__right-box .tabs2 .tab,
#page-rental .rental__right-box2 .tabs2 .tab {
  height: 34px;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .tabs2 .tab,
  #page-rental .rental__right-box2 .tabs2 .tab {
    width: 100px;
  }
}
#page-rental .rental__right-box .tabs2 .glider,
#page-rental .rental__right-box2 .tabs2 .glider {
  height: 36px;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .tabs2 .glider,
  #page-rental .rental__right-box2 .tabs2 .glider {
    width: 94px;
  }
}
#page-rental .rental__right-box .tabs2 .tab-content2,
#page-rental .rental__right-box2 .tabs2 .tab-content2 {
  width: 100%;
  margin-bottom: 30px;
}
#page-rental .rental__right-box .rental-products-item,
#page-rental .rental__right-box2 .rental-products-item {
  padding-top: 92px;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .rental-products-item,
  #page-rental .rental__right-box2 .rental-products-item {
    padding-top: 10px;
  }
}
#page-rental .rental__right-box .ct-title,
#page-rental .rental__right-box2 .ct-title {
  font-size: 3.2rem;
  font-weight: 300;
  padding-bottom: 43px;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .ct-title,
  #page-rental .rental__right-box2 .ct-title {
    font-size: 2.1rem;
    padding-bottom: 20px;
  }
}
#page-rental .rental__right-box .products-wrap,
#page-rental .rental__right-box2 .products-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  grid-row-gap: 30px;
}
#page-rental .rental__right-box .products-wrap::after,
#page-rental .rental__right-box2 .products-wrap::after {
  content: "";
  width: 31%;
  height: 0;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .products-wrap::after,
  #page-rental .rental__right-box2 .products-wrap::after {
    width: 100%;
  }
}
#page-rental .rental__right-box .products-card,
#page-rental .rental__right-box2 .products-card {
  width: 31%;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .products-card,
  #page-rental .rental__right-box2 .products-card {
    width: 100%;
  }
}
#page-rental .rental__right-box .products-card a,
#page-rental .rental__right-box2 .products-card a {
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 42px 3%;
  position: relative;
  background-color: #f9f9f9;
}
@media screen and (max-width: 834px) {
  #page-rental .rental__right-box .products-card a,
  #page-rental .rental__right-box2 .products-card a {
    padding: 62px 3% 40px;
    border-radius: 5px;
  }
}
#page-rental .rental__right-box .products-card .tag,
#page-rental .rental__right-box2 .products-card .tag {
  position: absolute;
  left: 15px;
  top: 15px;
  background-color: #fff;
  border: 1px solid rgba(220, 220, 220, 0.8);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  display: flex;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
}
#page-rental .rental__right-box .products-card .tag p,
#page-rental .rental__right-box2 .products-card .tag p {
  font-size: 1.2rem;
}
#page-rental .rental__right-box .products-card .swiper__picture,
#page-rental .rental__right-box2 .products-card .swiper__picture {
  text-align: center;
}
#page-rental .rental__right-box .products-card .swiper__picture img,
#page-rental .rental__right-box2 .products-card .swiper__picture img {
  height: 150px;
  width: auto;
}
#page-rental .rental__right-box .products-card .swiper__products,
#page-rental .rental__right-box2 .products-card .swiper__products {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 400;
}
#page-rental .rental__right-box .products-card .swiper__products span,
#page-rental .rental__right-box2 .products-card .swiper__products span {
  display: block;
  font-size: 1.2rem;
  font-family: "Roboto", serif;
  font-weight: 400;
}
#page-rental .rental__right-box .products-card .swiper__price,
#page-rental .rental__right-box2 .products-card .swiper__price {
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  font-family: "Roboto", serif;
}
#page-rental .rental__right-box .products-card .swiper__price span,
#page-rental .rental__right-box2 .products-card .swiper__price span {
  font-size: 1rem;
  font-weight: 400;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}
#page-rental .products-card.hidden {
  display: none;
}
#page-rental .products-wrap.active .products-card.hidden {
  display: list-item;
}
#page-rental .more_btn {
  width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 30px;
  position: relative;
  z-index: 5;
  overflow: hidden;
  border: 1px solid #002b43;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: 100;
  font-family: "Roboto", serif;
  background-color: #fff;
  transition: background-color 0.3s, color 0.3s;
  margin: 30px auto 0;
}
@media screen and (max-width: 834px) {
  #page-rental .more_btn {
    width: 183px;
  }
}
#page-rental .button-text-wrapper {
  position: relative;
  height: 60px;
  width: 100%;
}
@media screen and (max-width: 834px) {
  #page-rental .button-text-wrapper {
    height: 50px;
  }
}
#page-rental {
  /* 初期テキストのスタイル */
}
#page-rental .button-text {
  position: absolute;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  white-space: nowrap;
  transition: transform 0.3s ease, opacity 0.3s ease;
  text-align: center;
}
#page-rental .more_btn .icon {
  position: absolute;
  display: block;
  right: 15%;
  font-size: 2rem;
}
#page-rental {
  /* 最初のテキスト */
}
#page-rental .button-text.first {
  transform: translateY(0%);
  opacity: 1;
}
#page-rental {
  /* 2つ目のテキスト */
}
#page-rental .button-text.second {
  transform: translateY(100%);
  opacity: 0;
}
#page-rental {
  /* ホバー時のアニメーション */
}
#page-rental .more_btn:hover .button-text.first {
  transform: translateY(-100%);
  opacity: 0;
}
#page-rental .more_btn:hover .button-text.second {
  transform: translateY(0%);
  opacity: 1;
}
#page-rental {
  /* ボタンのホバースタイル */
}
#page-rental .more_btn:hover {
  background-color: #2e2e2e;
  color: #fff;
}
#page-rental .more_btn .icon {
  font-size: 1.5rem; /* アイコンのサイズ */
  margin-left: 10px; /* テキストとアイコンの間に余白を追加 */
  transition: transform 0.3s ease; /* アニメーションを追加 */
}
#page-rental {
  /* アコーディオンボタン */
}
#page-rental .accordion-btn {
  width: 100%;
  display: flex;
  margin: 20px auto 0;
  padding: 28px 0;
  text-align: center;
  font-size: 2rem;
  font-weight: 400;
  color: #002b43;
  background-color: #fff;
  border-radius: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #002b43;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 834px) {
  #page-rental .accordion-btn {
    width: 90%;
    font-size: 1.6rem;
    padding: 18px 0;
  }
}
#page-rental .accordion-btn span {
  padding-left: 20px;
  font-size: 30px;
  line-height: 0.6;
  width: 15px;
  height: 15px;
}
@media screen and (max-width: 834px) {
  #page-rental .accordion-btn span {
    font-size: 20px;
    line-height: 0.8;
  }
}
#page-rental .accordion-btn:hover {
  background-color: #f9f9f9;
}
#page-rental {
  /* アコーディオンコンテンツ */
}
#page-rental .accordion-content {
  display: none;
  padding: 120px 20px 20px;
}
@media screen and (max-width: 834px) {
  #page-rental .accordion-content {
    display: block;
    padding: 50px 0 20px;
  }
}
#page-rental .accordion-content h2 {
  font-size: 4.2rem;
  font-weight: 300;
  text-align: center;
}
@media screen and (max-width: 834px) {
  #page-rental .accordion-content h2 {
    font-size: 2.4rem;
  }
}
#page-rental {
  /* アンカーリンク */
}
#page-rental .anchor-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
  width: 78%;
  margin: 40px auto 0;
  justify-content: space-between;
  grid-row-gap: 30px;
  padding-bottom: 68.5px;
}
@media screen and (max-width: 834px) {
  #page-rental .anchor-links {
    width: 100%;
    padding-bottom: 30px;
    grid-row-gap: 10px;
    margin: 20px auto 0;
  }
}
#page-rental .guide-details {
  padding: 20px 0 60px;
}
#page-rental .guide-details h3 {
  font-size: 3.2rem;
  font-weight: 300;
  padding-left: 2%;
  border-left: 2px solid #002b43;
  margin-bottom: 4rem;
}
@media screen and (max-width: 834px) {
  #page-rental .guide-details h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
}
#page-rental .guide-details p {
  font-size: 14px;
  font-weight: 400;
}
#page-rental .guide-details p span {
  font-weight: 600;
}
#page-rental .guide-details p a {
  font-weight: 600;
}
#page-rental #rental-conditions {
  padding-top: 80px;
  border-top: 1px solid #dfe0e2;
}
@media screen and (max-width: 834px) {
  #page-rental #rental-conditions {
    padding-top: 40px;
  }
}
#page-rental .anchor-btn {
  width: 31.5%;
  text-align: center;
  display: inline-block;
  padding: 18px 16px;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid #002b43;
  border-radius: 30px;
  transition: background-color 0.3s, color 0.3s;
}
@media screen and (max-width: 834px) {
  #page-rental .anchor-btn {
    width: 48%;
    padding: 6px 2%;
    font-size: 12px;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    text-align: center;
  }
}
#page-rental .anchor-btn span {
  padding-left: 20px;
  font-size: 18px;
  width: 15px;
  height: 15px;
  display: inline-block;
}
#page-rental .anchor-btn:hover {
  background-color: #f9f9f9;
}
#page-rental .rental-including,
#page-rental .payment-credit {
  margin-top: 48px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 834px) {
  #page-rental .rental-including,
  #page-rental .payment-credit {
    flex-direction: column;
    grid-row-gap: 20px;
  }
}
#page-rental .rental-including .guide-child-title,
#page-rental .payment-credit .guide-child-title {
  width: 15%;
  font-size: 2.4rem;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  #page-rental .rental-including .guide-child-title,
  #page-rental .payment-credit .guide-child-title {
    width: 100%;
    font-size: 1.8rem;
  }
  #page-rental .rental-including .guide-child-title br,
  #page-rental .payment-credit .guide-child-title br {
    display: none;
  }
}
#page-rental .rental-including .rental-including-list,
#page-rental .payment-credit .rental-including-list {
  width: 80%;
  display: flex;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width: 834px) {
  #page-rental .rental-including .rental-including-list,
  #page-rental .payment-credit .rental-including-list {
    flex-wrap: wrap;
    width: 100%;
    grid-row-gap: 20px;
    max-width: 400px;
    margin: 0 auto;
  }
  #page-rental .rental-including .rental-including-list:after,
  #page-rental .payment-credit .rental-including-list:after {
    content: "";
    width: 48%;
    height: 0;
  }
}
@media screen and (max-width: 834px) {
  #page-rental .rental-including .rental-including-list li,
  #page-rental .payment-credit .rental-including-list li {
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
#page-rental .rental-including .rental-including-list p,
#page-rental .payment-credit .rental-including-list p {
  text-align: center;
}
#page-rental .rental-including .rental-including-list p span,
#page-rental .payment-credit .rental-including-list p span {
  display: block;
  font-size: 1rem;
  font-weight: 400;
}
#page-rental .rental-including .credit-box,
#page-rental .payment-credit .credit-box {
  width: 80%;
}
@media screen and (max-width: 834px) {
  #page-rental .rental-including .credit-box,
  #page-rental .payment-credit .credit-box {
    width: 100%;
  }
}
#page-rental .payment-credit .guide-child-title {
  font-size: 2rem;
}
@media screen and (max-width: 834px) {
  #page-rental .payment-credit .guide-child-title {
    font-size: 1.8rem;
  }
}
#page-rental .delivery-info,
#page-rental .return-info {
  display: flex;
  flex-wrap: wrap;
  grid-row-gap: 30px;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  #page-rental .delivery-info,
  #page-rental .return-info {
    grid-row-gap: 10px;
    flex-direction: column;
  }
}
#page-rental .delivery-info dt,
#page-rental .return-info dt {
  width: 15%;
  font-size: 2rem;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  #page-rental .delivery-info dt,
  #page-rental .return-info dt {
    width: 100%;
    font-size: 1.7rem;
  }
}
#page-rental .delivery-info dd,
#page-rental .return-info dd {
  width: 80%;
  font-size: 1.4rem;
  font-weight: 400;
}
@media screen and (max-width: 834px) {
  #page-rental .delivery-info dd,
  #page-rental .return-info dd {
    padding-bottom: 10px;
    width: 100%;
  }
}

.page-rental-child {
  padding: 115px 0 100px;
}
@media screen and (max-width: 834px) {
  .page-rental-child {
    padding: 60px 0;
  }
}
.page-rental-child .rental-products-main {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-main {
    flex-direction: column;
    grid-row-gap: 30px;
  }
}
.page-rental-child .rental-products-images {
  width: 53%;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-images {
    width: 100%;
  }
}
.page-rental-child .rental-products-images .slider-for {
  width: 100%;
  margin-bottom: 20px;
}
.page-rental-child .rental-products-images .slider-for img {
  width: 100%;
  height: auto;
}
.page-rental-child .rental-products-images .slider-nav {
  display: flex;
  justify-content: center;
}
.page-rental-child .rental-products-images .slider-nav .slick-slide {
  margin: 0 10px !important;
}
.page-rental-child .rental-products-images .slider-nav .slick-list {
  margin: 0 -10px !important;
}
.page-rental-child .rental-products-images .slider-nav img {
  width: 100%; /* サムネイルのサイズを調整 */
  height: auto;
  cursor: pointer;
}
.page-rental-child .rental-products-images .slick-dots li {
  width: 10px !important;
}
.page-rental-child .rental-products-images .slick-dots li button:before {
  font-size: 9px !important;
}
.page-rental-child .rental-products-images .slick-dots {
  bottom: -41px !important;
}
.page-rental-child .rental-products-info {
  width: 40%;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info {
    width: 100%;
  }
}
.page-rental-child .rental-products-info .tag {
  background-color: #fff;
  border: 1px solid rgba(220, 220, 220, 0.8);
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 15px;
  display: flex;
  padding: 5px 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 13px;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info .tag p {
    font-size: 12px;
  }
}
.page-rental-child .rental-products-info .products-number {
  font-size: 14px;
  font-family: "Roboto", serif;
  font-weight: 300;
}
.page-rental-child .rental-products-info .products-title {
  font-weight: 600;
  font-size: 3.2rem;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info .products-title {
    font-size: 2.4rem;
  }
}
.page-rental-child .rental-products-info .products-price {
  font-size: 2.4rem;
  font-weight: 400;
  font-family: "Roboto", serif;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info .products-price {
    font-size: 1.8rem;
  }
}
.page-rental-child .rental-products-info .products-price span {
  font-size: 1.6rem;
  font-weight: 300;
  font-family: "IBM Plex Sans JP", "Noto Sans JP", "Hiragino Sans", "Meiryo", sans-serif;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info .products-price span {
    font-size: 1.4rem;
  }
}
.page-rental-child .rental-products-info table {
  margin-top: 60px;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info table {
    margin-top: 30px;
  }
}
.page-rental-child .rental-products-info table th,
.page-rental-child .rental-products-info table td {
  padding: 15px 0;
  border-top: 1px solid #dcdcdc;
  font-size: 1.4rem;
  font-weight: 300;
}
.page-rental-child .rental-products-info table th {
  font-family: "Roboto", serif;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info table th {
    width: 20%;
  }
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info table td {
    width: 70%;
  }
}
.page-rental-child .rental-products-info table tr:last-child th,
.page-rental-child .rental-products-info table tr:last-child td:last-child {
  border-bottom: 1px solid #dcdcdc;
}
.page-rental-child .rental-products-info .products-detail {
  font-size: 1.4rem;
  font-weight: 300;
  margin-top: 53px;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-info .products-detail {
    margin-top: 30px;
  }
}
.page-rental-child .rental-products-recommendation {
  margin-top: 114px;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-recommendation {
    margin-top: 60px;
  }
}
.page-rental-child .rental-products-recommendation .recommendation-title {
  font-size: 2.6rem;
  font-weight: 300;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-recommendation .recommendation-title {
    font-size: 2rem;
  }
}
.page-rental-child .rental-products-recommendation .swiper-container {
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .page-rental-child .rental-products-recommendation .swiper-container {
    padding-top: 20px;
  }
}/*# sourceMappingURL=styles.css.map */