@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/* ------------------------------------------------------------ */
/* Common Layout */
* html body {
  background: url(null) fixed;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  margin: 0;
  padding: 0;
  background: var(--wht-color);
  color: var(--blk-color);
  font-size: 16px;
  line-height: 28px;
  letter-spacing: 0;
  overflow-wrap: break-word;
  text-size-adjust: 100%;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
}
.base {
  width: 100%;
  position: relative;
}
.wrapper {
  width: 100%;
  height: auto;
  margin: 0 auto;
  z-index: 2;
}
.inner {
  width: 85%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
h2, h3, h4, h5, h6 {
  font-weight: 600;
}
.regular {
  font-weight: 400 !important;
}
.medium {
  font-weight: 500 !important;
}
.bold {
  font-weight: 700 !important;
}
.black {
  font-weight: 900 !important;
}
.logo {
  vertical-align: initial;
}
.dash {
  display: inline-block;
  height: 0.1rem;
  width: 3rem;
  background: var(--blk-color);
  vertical-align: middle;
  margin: 0 0.2rem;
}
section {
  background: var(--wht-color);
}
section p {
  font-size: clamp(1.4rem, 1.31rem + 0.45vw, 1.6rem);
}
span.line {
  display: inline-block;
  position: relative;
}
span.line::before {
  content: "";
  height: 0.4rem;
  width: 100%;
  background: var(--ylw-color);
  position: absolute;
  bottom: 0.1rem;
  left: 0;
  display: block;
}
.flex_box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
/* 切替 */
.spnone {
  display: none !important;
}
.pcnone {
  display: block !important;
}
/* カラー */ :root {
  --wht-color: #fff;
  --blk-color: #000;
  --ylw-color: #FEFF00;
  --gy-color-1: #F5F5F5;
  --gy-color-2: #D9D9D9;
}
/* 画像 */
img {
  width: 100%;
}
.deco {
  position: absolute;
}
/* リンク */
a {
  cursor: pointer;
  line-height: inherit;
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
  text-decoration: none;
}
a:hover {
  opacity: 0.7;
}
a:link, a:visited, a:hover, a:active {
  text-decoration: none;
}
@media (min-width: 751px) {
  /*電話番号リンクをスマホのみ有効にする*/
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/* ボタン */
.common_btn {
  background: var(--ylw-color);
  color: var(--blk-color);
  border-radius: 100px;
  max-width: clamp(20.4rem, 17.867rem + 12.67vw, 28rem);
  width: 100%;
  padding: clamp(1.2rem, 1.1rem + 0.5vw, 1.5rem) 0;
  justify-content: center;
}
.common_btn p {
  font-size: clamp(1.3rem, 1.074rem + 1.13vw, 1.8rem);
}
/* 矢印 */
.chevron-right-icon {
  display: inline-block;
  vertical-align: middle;
  color: var(--blk-color);
  line-height: 1;
  width: 0.9rem;
  height: 0.9rem;
  transform: translateX(-25%) rotate(45deg);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
.chevron-right-icon::before, .chevron-right-icon::after {
  content: '';
  position: absolute;
  background: var(--blk-color);
}
.chevron-right-icon::before {
  top: 0;
  left: 0;
  right: 0;
  height: 0.1rem;
}
.chevron-right-icon::after {
  top: 0;
  right: 0;
  bottom: 0;
  width: 0.1rem;
}
/* ------------------------------------------------------------ */
/* Loading */
.loading {
  background: var(--wht-color);
  height: 100vh;
  height: 100svh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.loading .logo {
  max-width: clamp(20.7rem, 14.8rem + 29.5vw, 38.4rem);
  width: 100%;
  height: max-content;
  margin: auto;
  position: absolute;
  top: -7%;
  left: 0;
  right: 0;
  bottom: 0;
}
/* ------------------------------------------------------------ */
/* Animation */
/* フェードイン */
.FadeIn {
  opacity: 0;
  transition-duration: 0.8s;
  transition-delay: 0.2s;
}
.FadeIn.is-show {
  opacity: 1;
}
/* 上へ */
.InUp {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 1s;
}
.InUp.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* 左へ */
.InLft {
  opacity: 0;
  transform: translate(60px, 0);
  -webkit-transform: translate(60px, 0);
  transition: 1s;
}
.InLft.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* 右へ */
.InRgt {
  opacity: 0;
  transform: translate(-60px, 0);
  -webkit-transform: translate(-60px, 0);
  transition: 1s;
}
.InRgt.is-show {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* シール横 */
.StickerX {
  -webkit-clip-path: inset(0 100% 0 0);
  clip-path: inset(0 100% 0 0);
  transition: 0.8s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerX.is-show {
  clip-path: inset(0);
}
/* シール縦 */
.StickerY {
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
  transition: 1s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.StickerY.is-show {
  clip-path: inset(0);
}
/* マトリックス */
.Matrix .bg-wrap, .Matrix .bg-wrap .inn {
  display: block
}
.Matrix .bg-wrap {
  overflow: hidden;
  opacity: 0;
}
.Matrix .bg-wrap .inn {
  opacity: 0;
  transform: Matrix(1, 0, 0, 1, 0, 100);
  transition: 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.Matrix.is-show .bg-wrap {
  opacity: 1;
}
.Matrix.is-show .bg-wrap .inn {
  opacity: 1;
  transform: Matrix(1, 0, 0, 1, 0, 0);
}
/* 点滅 */
.Blink {
  animation: blink 1s step-end infinite;
}
@-webkit-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes blink {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* 中央からマスク */
.MaskCtr {
  -webkit-clip-path: circle(0);
  clip-path: circle(0);
}
.MaskCtr.is-show {
  opacity: 1;
  -webkit-transform: none;
  transform: none;
  transition: 0.5s ease;
  -webkit-clip-path: circle(50%);
  clip-path: circle(50%);
  transition: 1s ease;
}
/* 線 */
.line-anim {
  display: inline-block;
  position: relative;
  z-index: 2;
}
.line-anim::after {
  position: absolute;
  content: '';
  width: 0;
  height: 0.1rem;
  left: 0;
  bottom: 0;
  background: var(--wht-color);
  -webkit-transition: 0.8s;
  transition: 0.8s;
}
a.is-highlight-active .line-anim::after, a:hover .line-anim::after {
  width: 100%;
}
/* スクロールダウン */
.Bounce {
  animation-name: bounce;
  transform-origin: center bottom;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  animation-fill-mode: both;
}
@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-20px);
  }
  60% {
    transform: translateY(-10px);
  }
}
@-webkit-keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    -webkit-transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-20px);
  }
  60% {
    -webkit-transform: translateY(-10px);
  }
}
/* ------------------------------------------------------------ */
/* Loading */
/* ------------------------------------------------------------ */
/* Header Nav */
.is-locked {
  overflow: hidden;
}
.main_header {
  width: 100%;
  justify-content: space-between;
  align-items: center;
  z-index: 998;
  padding: 1.9rem 5%;
  background: var(--wht-color);
  color: var(--blk-color);
}
.is-show-nav .main_header {
  padding: 1.9rem 5%;
  background: transparent;
}
.main_header.is-follow-fixed, .is-show-nav .main_header {
  position: fixed;
  top: 0;
  right: 0;
}
.main_header.is-header-clr-bg-wh::before {
  content: "";
  background: var(--wht-color);
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  filter: invert(100%);
}
.main_header a {
  display: flex;
  align-items: center;
}
.main_header .logo {
  max-width: clamp(11.2rem, 10.467rem + 3.67vw, 13.4rem);
  width: 100%;
}
.is-show-nav .main_header .logo {
  display: none;
}
.main_header .header_link {
  max-width: max-content;
  width: 50%;
  margin: 0 0 0 auto;
}
.hamburger {
  cursor: pointer;
  width: 1.8rem;
  height: 1.2rem;
  top: 0.8rem;
  right: 1.5rem;
  transition: all 0.2s linear;
  z-index: 997;
}
.hamburger button {
  min-height: inherit;
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
}
.hamburger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.2rem;
  background-color: var(--blk-color);
}
.hamburger_nav {
  visibility: hidden;
  max-width: 54rem;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 996;
  transition: all 0.6s cubic-bezier(0.61, 1, 0.88, 1);
  background: var(--wht-color);
  color: var(--blk-color);
  transform: translateX(100%);
}
.is-show-nav .hamburger_nav {
  visibility: visible;
  transform: translateX(0);
  transition: all 0.6s cubic-bezier(0.61, 1, 0.88, 1);
}
.hamburger button {
  min-height: inherit;
  position: relative;
  width: 100%;
  height: 100%;
  outline: none;
}
.hamburger, .hamburger span {
  display: inline-block;
  transition: all .5s;
  box-sizing: border-box;
}
.hamburger span:nth-of-type(1) {
  -webkit-animation: hamburger-bar01 .75s forwards;
  animation: hamburger-bar01 .75s forwards;
  top: 0;
}
@-webkit-keyframes hamburger-bar01 {
  0% {
    -webkit-transform: translateY(20px) rotate(45deg);
  }
  50% {
    -webkit-transform: translateY(20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes hamburger-bar01 {
  0% {
    transform: translateY(20px) rotate(45deg);
  }
  50% {
    transform: translateY(20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.hamburger span:nth-of-type(2) {
  transition: all .25s .25s;
  opacity: 1;
  top: 0.5rem;
}
.hamburger span:nth-of-type(3) {
  bottom: 0;
  -webkit-animation: hamburger-bar03 .75s forwards;
  animation: hamburger-bar03 .75s forwards;
}
@-webkit-keyframes hamburger-bar03 {
  0% {
    -webkit-transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    -webkit-transform: translateY(-20px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(0) rotate(0);
  }
}
@keyframes hamburger-bar03 {
  0% {
    transform: translateY(-20px) rotate(-45deg);
  }
  50% {
    transform: translateY(-20px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
.hamburger.is-open span:nth-of-type(1) {
  -webkit-animation: active-hamburger-bar01 .75s forwards;
  animation: active-hamburger-bar01 .75s forwards;
  top: -0.2rem;
}
@-webkit-keyframes active-hamburger-bar01 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(7px) rotate(45deg);
  }
}
@keyframes active-hamburger-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
.hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-of-type(3) {
  -webkit-animation: active-hamburger-bar03 .75s forwards;
  animation: active-hamburger-bar03 .75s forwards;
  bottom: -0.2rem;
}
@-webkit-keyframes active-hamburger-bar03 {
  0% {
    -webkit-transform: translateY(0) rotate(0);
  }
  50% {
    -webkit-transform: translateY(-7px) rotate(0);
  }
  100% {
    -webkit-transform: translateY(-7px) rotate(-45deg);
  }
}
@keyframes active-hamburger-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}
.hamburger_nav .inner {
  max-width: 54rem;
  width: 100%;
  height: auto;
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  overflow-y: scroll;
  padding: clamp(4.4rem, 4.067rem + 1.67vw, 5.4rem) clamp(4.6rem, 1.533rem + 15.33vw, 13.8rem) clamp(3.5rem, 2.933rem + 2.83vw, 5.2rem) clamp(4rem, 3.467rem + 2.67vw, 5.6rem);
}
.hamburger_nav .en {
  font-size: 1.2rem;
}
.hamburger_nav .jp {
  font-size: 1.4rem;
  color: var(--red-color);
}
.hamburger_nav .logo {
  width: 100%;
  border-bottom: 0.1rem solid var(--blk-color);
  padding-bottom: 1rem;
}
.hamburger_nav .logo a {
  max-width: 11.2rem;
  width: 100%;
  display: block
}
.hamburger_nav .page_list.top_box {
  margin-top: 2.2rem;
}
.hamburger_nav .page_list.btm_box {
  margin-top: 3rem;
}
.hamburger_nav .sns_list {
  margin-top: 1.7rem;
  justify-content: flex-start;
}
.hamburger_nav .other_list {
  margin-top: clamp(3.1rem, 2.4rem + 3.5vw, 5.2rem);
}
.hamburger_nav .page_item {
  margin-bottom: 2rem;
}
.hamburger_nav .page_item.page_item_num {
  margin-left: 1.5rem;
  padding-left: 1.3rem;
  width: calc(100% - 1.5rem);
}
.hamburger_nav .page_item_num.num3 {
  margin-bottom: clamp(3.2rem, 2.4rem + 4vw, 5.6rem);
}
.hamburger_nav .page_item_num a::before {
  content: "1";
  position: absolute;
  left: -1.5rem;
  top: 0;
}
.hamburger_nav .page_item_num.num1 a::before {
  content: "1";
}
.hamburger_nav .page_item_num.num2 a::before {
  content: "2";
}
.hamburger_nav .page_item_num.num3 a::before {
  content: "3";
}
.hamburger_nav .page_item.page_item_num {
  margin-left: 1.5rem;
  padding-left: 1.3rem
}
.hamburger_nav .page_item.page_item_num {
  margin-left: 1.5rem;
  padding-left: 1.3rem
}
.hamburger_nav .page_item a, .hamburger_nav .page_item span {
  display: block;
}
.hamburger_nav .page_item a.page_ul_ttl {
  margin: 0.5rem 0 0;
}
.hamburger_nav .page_item a.page_ul_ttl:first-of-type {
  margin-top: 1.5rem;
}
.hamburger_nav .page_item_num.num1 a.page_ul_ttl::before {
  display: none;
}
.hamburger_nav .sns_item {
  width: 1.6rem;
}
.hamburger_nav .sns_item:not(:first-of-type) {
  margin-left: 0.8rem;
}
.hamburger_nav .other_item {
  width: 100%;
}
.hamburger_nav .other_item:not(:first-of-type) {
  margin-top: 0.4rem;
}
.is-show-nav .hamburger_bg {
  background: var(--blk-color);
  opacity: 0.8;
  mix-blend-mode: multiply;
  position: fixed;
  z-index: 995;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  display: block;
}
/* ------------------------------------------------------------ */
/* Fixed */
/* ------------------------------------------------------------ */
/* Slider(Swiper) */
/* ------------------------------------------------------------ */
/* Hero  */
.hero {
  width: 100%;
  height: 100vh;
  height: 100svh;
  color: var(--wht-color);
  background: transparent;
  -webkit-clip-path: inset(0 0 0 0);
  clip-path: inset(0 0 0 0);
  overflow: hidden;
}
.hero .inner {
  height: 100%;
  align-content: space-between;
  padding: 4rem 0;
  align-content: flex-end;
}
.hero h1 {
  max-width: 20.7rem;
  max-width: 38.4rem;
  max-width: clamp(20.7rem, 14.8rem + 29.5vw, 38.4rem);
  width: 100%;
  height: max-content;
  margin: auto;
  position: absolute;
  top: -7%;
  left: 0;
  right: 0;
  bottom: 0;
}
.hero .ttl_box {
  width: 100%;
  margin: 0 auto;
}
.hero .ttl_box h3 {
  display: inline-block;
  font-size: clamp(1.4rem, 1.267rem + 0.67vw, 1.8rem);
  letter-spacing: 0.3rem;
  padding: clamp(0.8rem, 0.667rem + 0.67vw, 1.2rem) clamp(0.8rem, 0.133rem + 3.33vw, 2.8rem);
  border: 0.1rem solid var(--wht-color);
}
.hero .ttl_box p {
  font-size: clamp(1.3rem, 1.233rem + 0.33vw, 1.5rem);
  line-height: clamp(2.4rem, 2.033rem + 1.83vw, 3.5rem);
  letter-spacing: 0.3rem;
  margin-top: clamp(1rem, 0.833rem + 0.83vw, 1.5rem);
}
.hero .hero_slide_box {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.hero .hero_slide_box img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .hero_slide_box .swiper-slide[class*=-active] img {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}
/* ------------------------------------------------------------ */
/* Concept */
.concept {
  padding: 10.5rem 0 0;
}
.concept .inner {
  width: 100%;
}
.concept .rgt_box {
  width: 85%;
  margin: 0 auto 7rem;
}
.concept .rgt_box h2 {
  font-size: clamp(2.8rem, 2.267rem + 2.67vw, 4.4rem);
  line-height: clamp(4.5rem, 3.667rem + 4.17vw, 7rem);
  margin-bottom: 3.3rem;
}
.concept .rgt_box h2 .large {
  font-size: clamp(2.8rem, 1.867rem + 4.67vw, 5.6rem);
}
.concept .rgt_box h2 .logo {
  width: clamp(8.8rem, 7.367rem + 7.17vw, 13.1rem);
}
.concept .rgt_box h3 {
  font-size: clamp(1.5rem, 1.333rem + 0.83vw, 2rem);
  line-height: clamp(3rem, 2.833rem + 0.83vw, 3.5rem);
  margin-bottom: 4.4rem;
}
.concept .rgt_box h3 .logo {
  width: 5.4rem;
}
/* ------------------------------------------------------------ */
/* Point */
.point {
  padding: clamp(8rem, 6.933rem + 5.33vw, 11.2rem) 0 clamp(6.7rem, 6.067rem + 3.17vw, 8.6rem);
}
.point .point_common_ttl {
  margin-bottom: 4.4rem;
}
.point .point_common_ttl h2 {
  margin-bottom: clamp(3.2rem, 2.833rem + 1.83vw, 4.3rem);
}
.point .cont_box h3 {
  font-size: 1.8rem;
  line-height: 2.4rem;
  margin-bottom: 2rem;
}
.point .cont_box h3 span {
  display: block;
}
.point .cont_box h3 .en {
  width: max-content;
  color: var(--wht-color);
  background: var(--blk-color);
  font-size: 1.2rem;
  line-height: normal;
  border-radius: 5rem;
  padding: 0.5rem 1.5rem;
  margin-bottom: 0.5rem;
}
.point .cont_box h3 .jp {
  letter-spacing: 0.2rem;
}
.point .cont_box h4 {
  font-size: clamp(1.4rem, 1.31rem + 0.45vw, 1.6rem);
  margin-bottom: 1.8rem;
  font-weight: 700 !important;
}
.point .cont_box h4.mgt {
  margin-top: 3rem;
}
.point .cont_box .ph_box {
  width: 100%;
  margin: 3rem 0;
}
.point .cont_box .ph_box.flex_box {
  justify-content: center;
}
.point .cont_box .ph_box figcaption {
  margin-top: 2rem;
  font-size: 1.3rem;
  line-height: 2.1rem;
}
.point .cont_box .ph_box .lft_box, .point .cont_box .ph_box .rgt_box {
  width: 100%;
}
.point .cont_box .ph_box .lft_box {
  margin-bottom: 3.1rem;
}
.point .cont_box .ph_box .dummy {
  background: var(--gy-color-2);
  width: 100%;
  height: 100%;
  aspect-ratio: 14 / 9;
}
.point .cont_box .bg_box {
  background: var(--gy-color-2);
  padding: 3.7rem clamp(1.8rem, 1.233rem + 2.83vw, 3.5rem);
  border-radius: 1rem;
}
.point .point_common_list .list_item .chevron-right-icon::before, .point .point_common_list .list_item .chevron-right-icon::after {
  background: var(--wht-color);
}
.point .point_common_list .list_item .chevron-right-icon {
  width: 0.6rem;
  height: 0.6rem;
  right: 0.6rem;
}
.point .point_common_list .list_item a.active .chevron-right-icon {
  transform: translateX(-25%) rotate(-135deg);
  right: 0.4rem;
}
.point .point_common_list .list_item a.active .chevron-right-icon::before, .point .point_common_list .list_item a.active .chevron-right-icon::after {
  background: var(--blk-color);
}
.point .point_common_list .list_item .chevron-right-icon-bg {
  background: var(--blk-color);
  width: 2rem;
  height: 2rem;
  border-radius: 5rem;
  position: absolute;
  top: 0;
  right: 5%;
  bottom: 0;
  margin: auto;
}
.point .point_common_list .list_item a.active .chevron-right-icon-bg {
  background: var(--wht-color);
}
/* 横スクロール */
.scroll_inner {
  padding: 0 2rem 2rem;
  overflow-x: scroll;
  -ms-overflow-style: none;
  /* IE, Edge 対応 */
  scrollbar-width: none;
  /* Firefox 対応 */
}
.scroll_inner::-webkit-scrollbar {
  /* Chrome, Safari 対応 */
  display: none;
}
.simplebar-scrollbar::before {
  background: var(--blk-color);
  border-radius: 0;
  height: 0.8rem !important;
  top: -0.3rem;
  bottom: 0;
  left: 0;
  right: 0;
}
.simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
}
.simplebar-track {
  background: var(--gy-color-2);
  height: 0.2rem !important;
  bottom: 0.5rem;
  overflow: initial;
  width: 95%;
  margin: 0 auto;
}
.scroll_list {
  justify-content: center;
  flex-wrap: nowrap;
  align-items: flex-start;
}
.scroll_list .list_item {
  width: 100vw;
}
.scroll_list .list_item h5 {
  font-size: 1.5rem;
  line-height: 2.3rem;
  margin: 1.8rem 0 1.7rem;
  min-height: 4.6rem;
}
.scroll_list .list_item p {
  font-size: 1.4rem;
  line-height: 2.2rem;
}
/* アコーディオン */
.point .accordion-item {
  border: 0.2rem solid var(--blk-color);
  background: var(--wht-color);
  border-radius: 1rem;
  padding: 0 5%;
}
.point .accordion-item:not(:first-of-type) {
  margin-top: 0.8rem;
}
.point .accordion-item.is-active .accordion-title {
  color: #999;
}
/* ヘッダー部分 */
.point .accordion-header {
  position: relative;
  padding: 1.5rem 4rem 1.5rem 0;
  cursor: pointer;
}
/* 開閉アイコン */
.point .accordion-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--blk-color);
  border-radius: 50px;
}
.point .accordion-icon::before {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.1rem solid var(--wht-color);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: transform .3s;
}
.point .accordion-item.is-active .accordion-icon {
  border: 0.1rem solid var(--blk-color);
  background: var(--wht-color);
}
.point .accordion-item.is-active .accordion-icon::before {
  transform: translateY(25%) rotate(-45deg);
  border-color: var(--blk-color);
}
/* コンテンツ部分 */
.accordion-content {
  height: 0;
  overflow: hidden;
  transition: height .3s;
}
.point .accordion-content__inner {
  padding: 2.5rem 0 3.4rem;
}
.point .point_common_cont_list .list_item:not(:last-of-type) {
  margin-bottom: clamp(2.3rem, 1.667rem + 3.17vw, 4.2rem);
}
.point .point_common_cont_list .list_item h5 {
  margin-bottom: clamp(2rem, 1.712rem + 1.44vw, 2.8rem);
}
/* ------------------------------------------------------------ */
/* Perf */
.perf {
  padding: 9.1rem 0 clamp(3.2rem, 1.933rem + 6.33vw, 7rem);
}
.perf .point_common_ttl h2 {
  max-width: clamp(26rem, 13.433rem + 62.83vw, 63.7rem);
}
.perf .perf_box .main_ph {
  margin-bottom: 4.8rem;
}
.perf .perf_box .perf_box_ttl {
  margin-bottom: 4.5rem;
}
.perf .perf_box .perf_box_ttl h3 {
  margin-bottom: 2.5rem;
}
.perf .perf_box-1 .perf_box_ttl h3 .logo {
  max-width: clamp(20.8rem, 13.975rem + 34.12vw, 35.9rem);
}
.perf .perf_box-2 .perf_box_ttl h3 .logo {
  max-width: clamp(19.1rem, 12.863rem + 31.19vw, 32.9rem);
}
.perf .perf_box .perf_box_ttl span {
  display: block;
  font-size: 1.3rem;
}
.perf .perf_box .perf_box_ttl h4 {
  font-size: clamp(1.4rem, 1.267rem + 0.67vw, 1.8rem);
  line-height: clamp(2.3rem, 2.1rem + 1vw, 2.9rem);
  margin-bottom: 2.3rem;
}
.perf .perf_box_detail {
  padding: clamp(8.2rem, 7.567rem + 3.17vw, 10.1rem) 0 clamp(3.2rem, 1.933rem + 6.33vw, 7rem);
}
.perf .perf_box_detail .ttl_box {
  width: 85%;
  margin: 0 auto;
}
.perf .perf_box_detail .ttl_box h2 {
  font-size: clamp(2rem, 1.774rem + 1.13vw, 2.5rem);
  line-height: clamp(4rem, 3.833rem + 0.83vw, 4.5rem);
  margin-bottom: clamp(3.5rem, 3rem + 2.5vw, 5rem);
}
.perf .perf_box_detail .ttl_box h2 .logo{
  max-width: 18rem;
  display: inline-block;
  vertical-align: middle;
}
/*.perf .perf_box_detail .ttl_box h3 {
  font-size: clamp(1.4rem, 1.267rem + 0.67vw, 1.8rem);
  line-height: clamp(2.3rem, 2.1rem + 1vw, 2.9rem);
  margin: clamp(1rem, 0.096rem + 4.52vw, 3rem) 0 clamp(2rem, 1.333rem + 3.33vw, 4rem);
}*/
.perf .perf_box_detail .ttl_box, .perf .detail_list .txt_box {
  width: 85%;
  margin: 0 auto;
}
.perf .perf_box-2 .viewmore_btn {
  margin-bottom: 0;
}
.point_scroll_box {
  max-width: 115rem;
  margin: 0 auto;
}
.point_scroll_box h4 {
  font-size: clamp(1.6rem, 1.533rem + 0.33vw, 1.8rem);
  margin: 0 auto 3rem;
  padding: 0 7%;
}
.perf .detail_list {
  align-items: flex-start;
}
.perf .detail_list .list_item {
  padding: 3.8rem 0;
}
.perf .detail_list .list_item:not(:first-of-type)::before {
  content: "";
  height: 0.1rem;
  width: 90%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  border-top: 0.1rem dotted var(--blk-color);
  display: block;
}
.perf .detail_list .list_item:first-of-type {
  padding-top: 0;
}
.perf .detail_list h4 {
  margin-bottom: 2.2rem;
  font-size: clamp(1.4rem, 1.267rem + 0.67vw, 1.8rem);
  line-height: clamp(2.3rem, 2.1rem + 1vw, 2.9rem);
}
.perf .detail_list .ph {
  padding: 0 1%;
  margin: 6rem auto 2.5rem;
}
.perf .detail_list .att {
  font-weight: 300;
  width: 90%;
  margin: 0 auto;
  font-size: 1.3rem;
  line-height: 1.7rem;
  font-weight: 300;
}
.perf .detail_list .modal-content {
  padding: clamp(4.8rem, 3.142rem + 8.29vw, 9.4rem) 5%;
}
.perf .detail_list .modal-content .ph {
  margin: 0 auto 2.5rem;
  padding: 0;
}
.perf .simplebar-content {
  padding: 0 0 2rem!important;
}
.product_scroll_box .scroll_list {
  width: 600vw;
}
.design_scroll_box .scroll_list {
  width: 400vw;
}
.design_scroll_box .scroll_list .list_item {
  padding: 0 1rem;
}
.viewmore_btn {
  border: 0.2rem solid var(--blk-color);
  background: var(--wht-color);
  border-radius: 1rem;
  padding: 0 5%;
  width: 85%;
  margin: 0 auto 6rem;
}
.viewmore_btn p {
  position: relative;
  padding: 1.5rem 4rem 1.5rem 0;
  cursor: pointer;
}
.viewmore_btn .viewmore_btn-icon {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  margin: auto 0;
  width: 1.8rem;
  height: 1.8rem;
  background: var(--blk-color);
  border-radius: 50px;
}
.viewmore_btn .viewmore_btn-icon::before {
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  width: 0.5rem;
  height: 0.5rem;
  border: 0.1rem solid var(--wht-color);
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-25%) rotate(135deg);
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  transition: transform .3s;
}
/* ------------------------------------------------------------ */
/* Cas */
.cas {
  background: var(--gy-color-1);
}
.cas .point_common_ttl h2 {
  max-width: clamp(17.4rem, 10.2rem + 36vw, 39rem);
}
.cas .accordion-content__inner p {
  font-weight: 400 !important;
}
/* ------------------------------------------------------------ */
/* Ss */
.ss .point_common_ttl h2 {
  max-width: clamp(18.9rem, 10.633rem + 41.33vw, 43.7rem);
}
.ss .cont_box .accordion-item:not(:first-of-type) h4 {
  margin-bottom: 0;
}
/* ------------------------------------------------------------ */
/* Other */
.other {
  padding: clamp(5rem, 3.833rem + 5.83vw, 8.5rem) 0 clamp(7rem, 6rem + 5vw, 10rem);
}
.other_common_ttl {
  margin-bottom: clamp(3.8rem, 2.58rem + 6.1vw, 6.5rem);
}
.other_common_ttl span {
  display: block;
}
.other_common_ttl .en {
  font-size: clamp(1.5rem, 1.467rem + 0.17vw, 1.6rem);
  margin-bottom: clamp(1rem, 0.9rem + 0.5vw, 1.3rem);
}
.other_common_ttl .jp {
  font-size: clamp(1.8rem, 1.6rem + 1vw, 2.4rem);
}
/* モーダルを開くボタン */
.modal-open {
  font-size: 1.6rem;
  border: none;
  cursor: pointer;
  width: 100%;
  min-height: auto;
}
/* モーダルと背景の指定 */
.modal-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0, 0, 0, 50%);
  padding: 4rem 2rem;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  box-sizing: border-box;
  z-index: 1000;
  justify-content: center;
}
/* モーダルの擬似要素の指定 */
.modal:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
  margin-left: -0.2em;
}
/* クラスが追加された時の指定 */
.modal.is-active .modal-wrapper {
  opacity: 1;
  visibility: visible;
}
/* モーダル内側の指定 */
.modal-container {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  max-width: 90rem;
  width: 90%;
}
/* モーダルを閉じるボタンの指定 */
.modal-close {
  position: absolute;
  top: clamp(1.6rem, 1.059rem + 2.7vw, 3.1rem);
  right: 5%;
  color: var(--blk-color);
  cursor: pointer;
  font-size: clamp(2.2rem, 1.804rem + 1.98vw, 3.3rem);
}
/* モーダルのコンテンツ部分の指定 */
.modal-content {
  background: #fff;
  text-align: left;
  line-height: 1.8;
  padding: clamp(4.8rem, 4.223rem + 2.88vw, 6.4rem) 5%;
}
/* モーダルのコンテンツ部分のテキストの指定 */
.modal-content p {
  margin: 1rem 0;
}
.modal_item {
  position: absolute;
}
.other .modal-content p {
  margin: clamp(1.5rem, 0.815rem + 3.42vw, 3.4rem) 0;
}
.other .modal-content .cont_box p {
  font-size: clamp(1.3rem, 1.233rem + 0.33vw, 1.5rem);
}
.other_slider_box {
  padding-bottom: clamp(3.5rem, 2.144rem + 6.78vw, 6.5rem);
}
.other_slider_box .swiper-pagination {
  bottom: 0 !important;
}
.other_slider_box .swiper-pagination-bullet {
  background: var(--gy-color-2) !important;
  opacity: 1 !important;
  width: 1rem !important;
  height: 1rem !important;
}
.other_slider_box .swiper-pagination-bullet-active {
  background: var(--blk-color) !important;
}
.other .swiper-button-prev {
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.voice .other_slider_box h3, .voice .other_slider_box p {
  color: var(--blk-color) !important;
}
.other .swiper-button-next,.other .swiper-button-prev {
  display: none;
}
/* ------------------------------------------------------------ */
/* Voice */
.voice {
  background: var(--gy-color-2);
}
.voice .other_slider_box h3 {
  font-size: 1.4rem;
  line-height: 1.9rem;
  margin: 2.7rem 0 1.5rem;
  font-weight: 600;
}
.voice .other_slider_box p {
  font-size: 1.3rem;
  font-weight: 500;
}
.voice .swiper-pagination-bullet {
  background: var(--wht-color) !important;
}
.voice .swiper-pagination-bullet-active {
  background: var(--blk-color) !important;
}
.voice .movie {
  margin: 3.5rem 0 5rem;
}
/* ------------------------------------------------------------ */
/* Seminar */
.seminar .other_slider_box h3 {
  font-size: 1.5rem;
  line-height: 2.4rem;
  padding-bottom: 1.7rem;
  margin-top: 2rem;
}
/* ------------------------------------------------------------ */
/* FAQ */
.faq {
  background: var(--gy-color-1);
}
.faq .accordion-item {
  border-bottom: 0.1rem solid var(--blk-color);
  background: var(--wht-color);
  padding: 0 clamp(1.6rem, 1.267rem + 1.67vw, 2.6rem);
}
.faq .accordion-item.is-active {
  background: var(--gy-color-2);
}
/* ヘッダー部分 */
.faq .accordion-header {
  position: relative;
  padding: clamp(1.6rem, 1.2rem + 2vw, 2.8rem) clamp(1.8rem, 1.6rem + 1vw, 2.4rem) clamp(1.6rem, 1.2rem + 2vw, 2.8rem) 0;
  cursor: pointer;
}
.faq .accordion-title {
  justify-content: flex-start;
  flex-wrap: nowrap;
}
.faq .accordion-title .num {
  margin-right: 2rem;
  vertical-align: middle;
}
.faq .accordion-item:first-of-type .accordion-title .num {
  max-width: clamp(2.2rem, 1.9rem + 1.5vw, 3.1rem);
}
.faq .accordion-item:not(:first-of-type) .accordion-title .num {
  max-width: clamp(2.5rem, 2.167rem + 1.67vw, 3.5rem);
}
/* 開閉アイコン */
.faq .accordion-icon {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1.6rem;
  height: 1.6rem;
}
.faq .accordion-icon::before, .faq .accordion-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background-color: var(--blk-color);
  transition: transform .3s;
}
/* 縦線 */
.faq .accordion-icon::before {
  width: 0.2rem;
  height: 1.6rem;
  margin-left: -0.1rem;
  transform: translateY(-50%);
}
/* 横線 */
.faq .accordion-icon::after {
  width: 1.6rem;
  height: 0.2rem;
  margin-top: -0.1rem;
  transform: translateX(-50%);
}
/* 開いているときは縦線を非表示に */
.faq .accordion-item.is-active .accordion-icon::before {
  transform: translateY(-50%) rotate(90deg);
}
/* コンテンツ部分 */
.faq .accordion-content {
  height: 0;
  overflow: hidden;
  transition: height .3s;
}
.faq .accordion-content__inner {
  padding: 2.4rem 0 clamp(2rem, 0.867rem + 5.67vw, 5.4rem);
  width: 93%;
}
.faq .accordion-content p {
  padding-left: 3.5rem;
  font-weight: 400;
}
.faq .accordion-content p::before {
  content: "";
  background: url(../img/faq_img_06.svg?2) center / cover no-repeat;
  width: 1.4rem;
  height: 1.4rem;
  position: absolute;
  top: 0.7rem;
  left: 0;
}
/* ------------------------------------------------------------ */
/* contact */
.contact {
  background: var(--blk-color);
  color: var(--wht-color);
}
.contact .other_common_ttl {
  margin-bottom: clamp(3rem, 2.533rem + 2.33vw, 4.4rem);
}
.contact .pcnone .flex_box {
  margin-bottom: 3rem;
}
.contact .lft_box {
  width: 100%;
}
.contact .common_btn {
  max-width: 100%;
  padding: clamp(2rem, 1.667rem + 1.67vw, 3rem) 3.7rem;
  border-radius: 10rem;
  margin: clamp(3rem, 2.533rem + 2.33vw, 4.4rem) auto 0;
}
.contact .common_btn p {
  color: var(--blk-color);
}
.contact .lft_img {
  width: 53%;
  max-width: 311px;
}
.contact .rgt_img {
  width: 37%;
  max-width: 218px;
}
/* ------------------------------------------------------------ */
/* Fixed Footer */
.fixed_footer {
  position: fixed;
  right: 0;
  left: 0;
  bottom: 0;
  margin: 0 auto;
  height: auto;
  transition: all 0.8s;
  z-index: 994;
  transform: translate(0, 100%);
  background: transparent;
  max-width: clamp(20.4rem, 17.867rem + 12.67vw, 28rem);
  width: 100%;
}
.fixed_footer.is-follow-fixed {
  transform: translate(0%);
  bottom: 3%;
}
.fixed_footer img {
  max-width: 80px;
  position: absolute;
  left: -55px;
  top: 0;
  bottom: 0;
  margin: auto 0;
}
.fixed_footer .common_btn {
  background: var(--blk-color);
  color: var(--wht-color);
}
/* ------------------------------------------------------------ */
/* Footer */
footer {
  background: var(--wht-color);
  color: var(--blk-color);
  padding: clamp(4.5rem, 4.233rem + 1.33vw, 5.3rem) 0 11rem;
}
footer .inner {
  max-width: 115rem;
  justify-content: flex-start;
  align-items: flex-start;
}
footer a {
  display: block;
}
footer .logo {
  width: 15rem;
  margin-bottom: 1rem;
}
footer p span {
  display: inline-block;
}
footer .rgt_box {
  width: 100%;
}
footer .main_box p {
  font-size: clamp(1.2rem, 1.133rem + 0.33vw, 1.4rem);
  line-height: 1.8rem;
}
footer .main_box p .name {
  margin-bottom: 0.5rem;
}
footer .main_box p .large {
  font-size: clamp(1.6rem, 1.333rem + 1.33vw, 2.4rem);
  line-height: 3.2rem;
}
footer .sub_box {
  margin-top: clamp(1rem, -0.167rem + 5.83vw, 4.5rem);
}
footer .sub_box .link_list {
  justify-content: flex-start;
}
footer .sub_box .link_list .list_item {
  width: calc(50% - 5%);
  max-width: max-content;
  padding-right: 5%;
}
footer .sns_list {
  margin: 1rem auto 0;
  justify-content: flex-start;
}
footer .sns_item {
  width: 1.6rem;
}
footer .sns_item:not(:first-of-type) {
  margin-left: 0.8rem;
}
footer .sns_item.instagram {
  width: 1.8rem;
  height: 1.8rem;
}
footer .sns_item.youtube {
  width: 2.6rem;
  height: 1.8rem;
}
footer .link_list {
  font-size: 1.1rem;
  line-height: 2rem;
}
footer .copyright {
  font-size: 1rem;
  line-height: 2rem;
}
footer .copyright a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  /* タブレット */
  /* ------------------------------------------------------------ */
  /* Perf */
  .viewmore_btn {
    display: none;
  }
  .perf .perf_box {
    max-width: 115rem;
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 960px) {
  /* デスクトップ */
  .spnone {
    display: block !important;
  }
  .pcnone {
    display: none !important;
  }
  span.line::before {
    bottom: 0.2rem;
  }
  /* 発火タイミング調整 */
  .in01 {
    animation-delay: 0.2s !important;
    transition-delay: 0.2s !important;
  }
  .in02 {
    animation-delay: 0.4s !important;
    transition-delay: 0.4s !important;
  }
  .in03 {
    animation-delay: 0.6s !important;
    transition-delay: 0.6s !important;
  }
  .in04 {
    animation-delay: 0.8s !important;
    transition-delay: 0.8s !important;
  }
  .in05 {
    animation-delay: 1s !important;
    transition-delay: 1s !important;
  }
  /* ------------------------------------------------------------ */
  /* Loading */
  .loading .logo {
    top: 0;
  }
  /* ------------------------------------------------------------ */
  /* Header Nav */
  .main_header {
    padding: clamp(1.5rem, 1.267rem + 1.17vw, 2.2rem) clamp(4.4rem, 3.533rem + 4.33vw, 7rem);
  }
  .main_header .inner {
    width: 100%;
  }
  .hamburger {
    width: 4rem;
    height: 2.7rem;
  }
  .hamburger span {
    height: 0.4rem;
  }
  .hamburger span:nth-of-type(2) {
    top: 1.1rem;
  }
  .hamburger.is-open span:nth-of-type(1) {
    top: 0.45rem
  }
  .hamburger.is-open span:nth-of-type(3) {
    bottom: 0.45rem;
  }
  .is-show-nav .main_header {
    padding: clamp(1.9rem, 1.367rem + 2.67vw, 3.5rem) clamp(4.4rem, 3.533rem + 4.33vw, 7rem);
    ;
  }
  /* ------------------------------------------------------------ */
  /* Hero */
  .hero .inner {
    align-content: center;
    padding: 0;
  }
  .hero h1 {
    position: initial;
    margin-bottom: 7.7rem;
    top: 0;
  }
  /* ------------------------------------------------------------ */
  /* Concept */
  .concept {
    padding: 0 0 13.2rem;
  }
  .concept .inner {
    max-width: 120rem;
  }
  .concept .flex_box {
    flex-direction: row-reverse;
    flex-wrap: nowrap;
  }
  .concept .rgt_box {
    flex: 1;
    width: max-content;
    margin: 0 0 0 auto;
    padding: 7.3rem 0 7.3rem 9%;
  }
  .concept .rgt_box h2 .large {
    vertical-align: text-bottom;
  }
  .concept .lft_box {
    max-width: 56.4rem;
    width: 44%;
  }
  /* ------------------------------------------------------------ */
  /* Point */
  .point .point_common_ttl {
    max-width: 115rem;
    margin: 0 auto 7.9rem;
  }
  /* .point .point_common_ttl p {
    padding-left: 7.7rem;
  } */
  .scroll_list .list_item {
    width: 40rem;
    margin-right: 2.4rem;
  }
  .point .point_common_list {
    display: flex;
    justify-content: space-between;
    max-width: 115rem;
    margin: 0 auto;
  }
  .point .point_common_list .index_box {
    width: 36%;
  }
  .point .point_common_list .cont_list {
    position: sticky;
    top: 15rem;
    left: 0;
  }
  .point .point_common_list .cont_list .list_item a {
    display: block;
    background: var(--wht-color);
    border: 0.2rem solid var(--blk-color);
    border-radius: 1rem;
    padding: 1.5rem 5.5rem 1.5rem 1.8rem;
    margin-bottom: 0.8rem;
    font-weight: 700;
  }
  .point .point_common_list .cont_list .list_item a.active {
    background: var(--blk-color);
    color: var(--wht-color);
  }
  .point .point_common_list .cont_box {
    width: 61.2%;
  }
  .point .accordion-item {
    padding: 0 11%;
  }
  .point .accordion-content__inner {
    padding: 5rem 0 6rem;
  }
  .point .accordion-header {
    display: none;
  }
  .point .accordion-content {
    height: auto !important;
  }
  .point .cont_box .bg_box {
    background: var(--gy-color-2);
    padding: 2.5rem 3.5rem;
    border-radius: 0;
  }
  .point .cont_box .ph_box {
    margin: 3rem 0;
  }
  .point .cont_box .ph_box .lft_box {
    margin-bottom: 0;
  }
  .point .cont_box .ph_box .lft_box, .point .cont_box .ph_box .rgt_box {
    width: 50%;
  }
  .point .cont_box h3 {
    font-size: 2.4rem;
    line-height: 3.4rem;
  }
  .point .cont_box h3 .en {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
  }
  .point .cont_box h4 {
    font-size: clamp(1.5rem, 1.455rem + 0.23vw, 1.6rem);
    margin-bottom: 2.7rem;
  }
  .point .cont_box h4.mgt {
    margin-top: 4.5rem;
  }
  .point .point_common_cont_list .list_item {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .point .point_common_cont_list .list_item h5, .point .point_common_cont_list .list_item p {
    width: 50%;
    max-width: 22.8rem;
  }
  .point .point_common_cont_list .list_item h5 {
    position: absolute;
    top: 0;
    left: 0;
  }
  .point .point_common_cont_list .list_item p {
    font-weight: 400;
  }
  .point .point_common_cont_list .list_item h5 ~ p {
    margin-top: 5rem;
    font-weight: 400;
  }
  .point .point_common_cont_list .list_item .ph_box {
    width: 45%;
    max-width: 22rem;
    margin: 0;
  }
  .point_scroll_box h4 {
    padding: 0;
  }
  .simplebar-track {
    height: 0.3rem !important;
  }
  .simplebar-scrollbar::before {
    height: 0.3rem !important;
    top: 0 !important;
  }
  /* ------------------------------------------------------------ */
  /* Perf */
  .perf .perf_box {
    max-width: 100%;
    padding: 10rem 0 5.1rem;
  }
  .perf .perf_box-1 {
    padding-top: 0;
    position: relative;
  }
  .perf .perf_box-1::before {
    content: "";
    max-width: 115rem;
    width: 85%;
    height: 1px;
    margin: 0 auto;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--blk-color);
  }
  .perf .perf_box .main_ph {
    margin: 0 0 0 11%;
    max-width: 55.5rem;
  }
  .perf .perf_box .perf_box_ttl {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    max-width: 115rem;
    margin: 0 auto 10rem;
  }
  .perf .perf_box_detail {
    max-width: 115rem;
    margin: 0 auto;
  }
  .perf .perf_box_detail .ttl_box, .perf .detail_list .txt_box {
    width: 100%;
  }
  .perf .detail_list .list_item {
    max-width: 53rem;
    width: 46%;
    padding: 0;
  }
  .perf .detail_list .list_item:not(:first-of-type) {
    margin: 0 0 0 8%;
  }
  .perf .detail_list .list_item:not(:first-of-type)::before {
    display: none;
  }
  .perf .detail_list .list_item .grass_icon {
    width: 1.6rem;
    height: 1.6rem;
  }
  .perf .detail_list .modal_btn {
    width: 1.4rem;
    height: 1.4rem;
    margin: 0 0 0 auto;
  }
  .perf .detail_list .att {
    width: 100%;
    margin-top: 0.8rem;
  }
  .perf .detail_list .ph {
    margin-bottom: 1.2rem;
  }
  .perf .detail_list .modal-content {
    padding-left: 11%;
    padding-right: 11%;
  }
  .perf .detail_list .modal-content .ph {
    margin: 0 auto 2.5rem;
  }
  .perf .detail_list .modal-content .att {
    width: 92%;
  }
  .perf .simplebar-content {
    padding: 0 2rem 2rem!important;
  }
  .product_scroll_box .scroll_list {
    width: 252rem;
    padding-bottom: 3rem;
  }
  .design_scroll_box .scroll_list {
    width: 167.2rem;
    padding-bottom: 3rem;
    margin: 0 auto;
  }
  .design_scroll_box .scroll_list .list_item {
    padding: 0;
  }
  /* ------------------------------------------------------------ */
  /* SS */
  .ss .cont_box .accordion-item:not(:first-of-type) h4 {
    margin-bottom: 2.7rem;
  }
  /* ------------------------------------------------------------ */
  /* Other */
  .other .inner {
    /* max-width: 99.5rem; */
    max-width: 115rem;
  }
  /* モーダルのコンテンツ部分の指定 */
  .modal-content {
    background: #fff;
    text-align: left;
    line-height: 1.8;
    padding-left: 18%;
    padding-right: 20%;
  }
  .modal-close {
    right: 6%;
  }
  .other_slider_box {
    overflow: hidden;
  }
  .other .slider_mask {
    overflow: hidden;
    padding: 0 5rem;
  }
  .other .swiper-button-next,.other .swiper-button-prev {
    display: block;
  }
  .other .swiper-button-next {
    right: 0;
    top: 15%;
    bottom: auto;
    margin: auto 0;
  }
  .other .swiper-button-prev {
    left: 0;
    top: 15%;
    bottom: auto;
    margin: auto 0;
  }
  /* 前へ次への矢印カスタマイズ */
  .other .swiper-button-prev::after,
  .other .swiper-button-next::after {
    bottom: 0;
    content: "";
    height: 0;
    margin: auto;
    position: absolute;
    top: 0;
    width: 0;
  }
  /* 前への矢印カスタマイズ */
  .other .swiper-button-prev::after {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 2rem;
    height: 2rem;
    border: 0.1rem solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(25%) rotate(-135deg);
  }
  /* 次への矢印カスタマイズ */
  .other .swiper-button-next::after {
    display: inline-block;
    vertical-align: middle;
    color: #333;
    line-height: 1;
    width: 2rem;
    height: 2rem;
    border: 0.1rem solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateX(-25%) rotate(45deg);
  }
  /* ------------------------------------------------------------ */
  /* Voice */
  .voice .inner {
    /* max-width: 99.5rem; */
    max-width: 125rem;
  }
  .voice .other_slider_box h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  /* ------------------------------------------------------------ */
  /* Seminar */
  .semina .inner {
    max-width: 125rem;
  }
  .seminar .other_slider_box {
    max-width: 90.8rem;
    padding: 0;
  }
  .seminar .swiper-wrapper {
    justify-content: space-between;
  }
  .seminar .swiper-slide {
    width: 50%;
    max-width: 41.4rem;
  }
  .seminar .other_slider_box h3 {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }
  /* ------------------------------------------------------------ */
  /* FAQ */
  .faq .inner {
    align-items: flex-start;
  }
  .faq .accordion {
    max-width: 67.2rem;
  }
  .faq .other_common_ttl {
    flex: 1;
  }
  .faq .accordion-icon {
    width: 2.4rem;
    height: 2.4rem;
  }
  .faq .accordion-icon::before {
    height: 2.4rem;
  }
  .faq .accordion-icon::after {
    width: 2.4rem;
  }
  /* ------------------------------------------------------------ */
  /* Contact */
  .contact .inner {
    max-width: 115rem;
  }
  .contact .lft_box {
    width: 45%;
    max-width: max-content;
  }
  .contact .rgt_box {
    width: 50%;
    max-width: 585px;
  }  
  .contact .common_btn {
    margin-right: 0;
    margin-left: 0;
    transition: all 0.3s !important;
  }
  .contact .common_btn:hover {
    opacity: 0.8;
  }
  /* ------------------------------------------------------------ */
  /* Fixed Footer */
  .fixed_footer {
    transform: translate(100%, 0);
    right: -80px;
    left: auto;
    bottom: 3%;
    margin: 0 auto;
  }
  .fixed_footer.is-follow-fixed {
    transform: translate(0%);
    right: 2%;
  }
  /* ------------------------------------------------------------ */
  /* Footer */
  footer {
    padding-bottom: 1.8rem;
  }
  footer .sub_box {
    text-align: left;
  }
  footer .main_box p .large {
    margin-top: 1.2rem;
  }
  footer .rgt_box {
    max-width: max-content;
    margin-left: 8.5rem;
  }
  footer .sns_list {
    position: absolute;
    left: -14rem;
    bottom: 0;
  }
}
@media screen and (min-width: 1350px) {
  /* タブレット横 */
  /* ------------------------------------------------------------ */
  /* Perf */
  .perf .perf_box {
    width: 100%;
  }
  /* ------------------------------------------------------------ */
  /* Other */
  .other .swiper-button-next {
    top: 19%;
  }
  .other .swiper-button-prev {
    top: 19%;
  }
}