@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

html {
  font-size: 10px;
  overflow-x: hidden;
}

html.fixed {
  overflow: hidden;
  height: 100%;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.694444vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6643vw;
  }
}

:root {
  --bs-body-color: #333333;
  --bs-body-bg: #fff;
  --bs-font: "Roboto", sans-serif;
  --bs-font-italic: "Roboto Condensed", sans-serif;
  --bs-body-font-family: var(--bs-font);
  --bs-body-font-size-pc: 1.6rem;
  --bs-body-font-size-sp: 1.4rem;
  --bs-body-font-weight: 400;
  --bs-body-line-height: 1.75;
  --bs-body-letter-spacing: 0;
  --bs-gradient: linear-gradient(
    90deg,
    rgb(38, 70, 139) 0%,
    rgb(87, 174, 238) 100%
  ); 
  --bs-gradient-o: linear-gradient(
    90deg,
    rgb(235, 120, 86) 0%,
    rgb(235, 200, 86) 100%
  ); 
  --bs-black: #333333;
  --bs-gray: #EBECEF;
  --bs-blue: #26468B;
  --bs-orange: #eb7856;
}

body {
  font-family: var(--bs-body-font-family);
  font-size: var(--bs-body-font-size-pc);
  font-weight: var(--bs-body-font-weight);
  line-height: var(--bs-body-line-height);
  letter-spacing: var(--bs-body-letter-spacing);
  color: var(--bs-body-color);
  background-color: var(--bs-body-bg);
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

section {
  padding: 6rem 0 8rem;
  overflow: hidden;
}

img {
  zoom: normal;
}

a {
  -webkit-transition: all .3s;
  -moz-transition: all .3s;
  transition: all .3s;
}

.pc-only {
  display: block;
}

.sp-only {
  display: none;
}

.header {
  position: fixed;
  width: 100%;
  height: 8rem;
  top: 0;
  left: 0;
  background-color: transparent;
  transition: background-color 0.3s ease;
  z-index: 10;
}

.header.scrolled {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.header-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.header-logo {
  padding-left: 4rem;
}

.header-logo a {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo a:hover {
  opacity: 0.6;
}

.header-logo-img {
  width: 5rem;
}

.header-logo-txt {
  margin-left: 1.5rem;
  font-weight: 700;
  font-size: 2.4rem;
}

.header-list-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4.5rem;
}

.header-list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 4.5rem;
}

.header-nav-list a {
  display: flex;
  align-items: center;
  width: 100%;
  height: 8rem;
  font-weight: 700;
}

.header-nav-list a:hover {
  opacity: 0.6;
}

.header-contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 16rem;
  height: 8rem;
  background: var(--bs-gradient);
  border: 1px solid;
  border-image: var(--bs-gradient) 1;
  font-weight: 700;
  color: #ffffff;
  position: relative;
  z-index: 1;
  transition: .3s;
}
.header-contact a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border: 1px solid;
  border-image: var(--bs-gradient) 1;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}
.header-contact a:hover {
  color: var(--bs-blue);
}
.header-contact a:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.header-sp {
  display: none;
}

.mv {
  position: relative;
  width: 100%;
  height: 72.3rem;
  overflow: hidden;
}

.mv-gradient {
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255) 8%, rgba(255, 255, 255, 0.8) 16%, rgba(255, 255, 255, 0) 40%);
  position: relative;
  z-index: 2;
}

.mv-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  clip-path: ellipse(100% 100% at 50% 0%);
  background-size: cover;
  background-position: 30% center;
  transition: opacity 1s ease-in-out;
  z-index: 1;
  opacity: 1;
}

.mv-text {
  position: relative;
  z-index: 3;
  font-size: 7rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  top: 50%;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 0.8s ease, transform 0.8s ease;
  text-shadow: 0px 0px 10px rgba(0, 0, 0, 0.25);
  line-height: 1;
}

.mv-text.active {
  opacity: 1;
}

.i-ttl {
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 6rem;
  font-family: var(--bs-font-italic);
  font-weight: 700;
  font-size: 10rem;
  color: var(--bs-gray);
  line-height: 1;
}

.home .content-width {
  width: 108rem;
  margin: 0 auto;
}

.home #intro {
  padding: 6rem 0 0;
}

.home .intro-list-item {
  margin-bottom: 4rem;
}

.home .intro-list-item:last-child {
  margin-bottom: 0;
}

.home .intro-list-item-ttl {
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--bs-blue);
  font-size: 3.2rem;
  line-height: 1.3;
}

.home .intro-list-item-ttl::before {
  content: "";
  background: url(../img/common/intro-list-item_icon.png);
  background-position: center;
  background-size: contain;
  display: inline-block;
  width: 3rem;
  height: 1.8rem;
  margin-right: 2rem;
}

.home .intro-list-item-txt {
  color: #707070;
}

.s-ttl {
  margin-bottom: 4rem;
  font-weight: 700;
  font-size: 4rem;
  line-height: 1.3;
}

.home #location {
  padding: 14rem 0 0;
}

.home .location-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 3.5rem;
  margin-bottom: 8rem;
}

.home .location-list {
  margin-bottom: 5rem;
}

.home .location-list-item {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 3rem;
}

.home .location-list-item:last-child {
  margin-bottom: 0;
}

.home .location-list-item::before {
  display: inline-block;
  width: 2.9rem;
  min-width: 2.9rem;
  height: 4.6rem;
  min-height: 4.6rem;
  margin-right: 1rem;
}
.home .location-list-item.orange::before {
  content: "";
  background: url(../img/common/location-list_icon-o.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.home .location-list-item.blue::before {
  content: "";
  background: url(../img/common/location-list_icon-b.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.f-bold {
  display: inline;
  font-weight: 600;
}

.btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32rem;
  height: 8rem;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, .25);
  background: var(--bs-gradient);
  border: 1px solid;
  border-image: var(--bs-gradient) 1;
  color: #fff;
  font-weight: 700;
  position: relative;
  z-index: 1;
  transition: .3s;
}

.btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: #fff;
  border: 1px solid;
  border-image: var(--bs-gradient) 1;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.btn:hover {
  color: var(--bs-blue);
}

.btn:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.btn .btn-line {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 3rem;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 0;
}

.btn .btn-line::before {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  background: #fff;
  border-radius: 50%;
}

.home .location-img {
  position: relative;
  width: calc(1080px - 49.5rem);
  height: 45rem;
}

.home .location-img img {
  width: 76rem;
  position: absolute;
  top: calc(50% - 38rem);
}

.home #feature {
  margin-top: -11.2rem;
}

.home .feature-list {
  margin-top: 4rem;
}

.home .feature-list-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 6rem;
}

.home .feature-list-item:last-child {
  margin-bottom: 0;
}

.home .feature-list-content {
  width: 56.8rem;
}

.home .feature-list-item_h3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.home .feature-list-item_h3 .ttl-line {
  content: "";
  display: inline-block;
  width: 100%;
  height: 1px;
  margin-left: 1.5rem;
  background: var(--bs-black);
  position: relative;
}

.home .feature-list-item_h3 .ttl-line::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 0.8rem;
  background: var(--bs-black);
  border-radius: 50%;
  position: absolute;
  right: 0;
  top: calc(50% - 0.4rem);
}

.home .feature-list-item_txt {
  margin-bottom: 3rem;
}

.home .feature-list-img {
  width: calc(100% - 56.8rem);
  position: relative;
}

.home .feature-list-img img {
  position: absolute;
  top: calc(50% - 23.45rem);
  right: -3rem;
}

.home .feature-list-item:first-child .feature-list-img img {
  z-index: 2;
}

.home .feature-list-item:nth-child(2) .feature-list-img img {
  z-index: 1;
}

.home .feature-list-item:last-child .feature-list-img img {
  z-index: 0;
}

.btn.white {
  width: 28rem;
  height: 6rem;
  background: #fff;
  border: solid 1px var(--bs-black);
  color: var(--bs-black);
}

.btn.white::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: var(--bs-gradient);
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform ease .3s;
}

.btn .btn-line,
.btn .btn-line::before {
  background: currentColor;
}

.btn.white:hover {
  color: #fff;
  border: 1px solid;
  border-image: var(--bs-gradient) 1;
}

.btn.white:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}

.home #product {
  position: relative;
  padding: 0 0 11.2rem;
}

.home #product .i-ttl {
  text-align: right;
}

.home .product-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 5rem;
}

.home .product-list-item {
  width: 33.33%;
  height: 46.06rem;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .25);
}

.home .product-list-item:has(a) {
  transition: .3s;
}

.home .product-list-item:has(a:hover) {
  transform: translateY(10px);
}

.home .product-list-item.hus {
  background: url(../img/common/product-list_bg1.jpg) center / cover no-repeat;
}

.home .product-list-item.pla {
  background: url(../img/common/product-list_bg2.jpg) center / cover no-repeat;
  margin-top: 10rem;
}

.home .product-list-item.viv {
  background: url(../img/common/product-list_bg3.jpg) center / cover no-repeat;
  margin-top: 20rem;
}

.home .product-list-item-liner {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}

.home .product-list-item.hus .product-list-item-liner {
  background: linear-gradient(0deg,rgba(38, 70, 139, 1) 0%, rgba(38, 70, 139, 0.6) 30%, rgba(38, 70, 139, 0) 50%);
}

.home .product-list-item.pla .product-list-item-liner {
  background: linear-gradient(0deg,rgba(54, 124, 194, 1) 0%, rgba(54, 124, 194, 0.6) 30%, rgba(54, 124, 194, 0) 50%);
}

.home .product-list-item.viv .product-list-item-liner {
  background: linear-gradient(0deg,rgba(87, 174, 238, 1) 0%, rgba(87, 174, 238, 0.6) 30%, rgba(87, 174, 238, 0) 50%);
}

.home .product-list-item-txt {
  width: 100%;
  padding: 2rem 3rem;
  color: #fff;
}

.home .product-list-item-h3 {
  padding-bottom: 1rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1;
}

.home .product-more {
  display: inline-block;
  width: 100%;
  padding-top: 2rem;
  font-weight: 600;
  text-align: right;
}

.home .product-more .arrow {
  position: relative;
  display: inline-block;
  width: 3rem;
  height: 1px;
  margin: 0.9rem 0 0.25em 1em;
  border-radius: 9999px;
  background-color: #fff;
}

.home .product-more .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 0;
  width: 1.25rem;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform: rotate(40deg);
  transform-origin: calc(100% - 2px) 50%;
}

.home .product-bg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 48.7rem;
  background: var(--bs-gray);
  z-index: -1;
}

#cv {
  background: var(--bs-gradient);
}

#cv .content-width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 2rem;
  width: 80rem;
}

.cv-ttl {
  font-size: 4rem;
  font-weight: 600;
  color: #fff;
  line-height: 1;
}

.c-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6rem;
  height: 6rem;
  border: solid 1px #fff;
  border-radius: 50%;
}

.c-btn .arrow {
  position: relative;
  display: inline-block;
  width: 1.3rem;
  height: 2.4rem;
}

.c-btn .arrow::before,
.c-btn .arrow::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 1.3rem;
  height: 1px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 0px) 50%;
}

.c-btn .arrow::before {
  transform: rotate(45deg);
}

.c-btn .arrow::after {
  transform: rotate(-45deg);
}

.c-btn:hover {
  background: #fff;
  border: solid 1px #fff;
}

.c-btn:hover .arrow::before,
.c-btn:hover .arrow::after {
  background-color: #4689CB;
}

.footer {
  position: relative;
}

#page-top {
  right: 3rem;
  z-index: 2;
  opacity: 0;
}

#page-top.UpMove{
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#page-top.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(150px);
  }
}

#page-top .c-btn {
  width: 8rem;
  height: 8rem;
  background: var(--bs-black);
  border: 0;
  border-radius: 0;
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, .25);
}

#page-top .c-btn .arrow {
  transform: rotate(-90deg);
}

#page-top .c-btn:hover .arrow::before,
#page-top .c-btn:hover .arrow::after {
  background-color: #fff;
}

.footer-upper {
  width: 118rem;
  margin: 0 auto;
  padding: 6rem 0;
  text-align: center;
}

.footer-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 45rem;
  margin: 4rem auto 0;
}

.footer-menu-item a {
  font-weight: 600;
}

.footer-menu-item a:hover {
  opacity: 0.6;
}

.footer-logo {
  width: 10rem;
}

.footer-bottom {
  padding: 2rem 0;
  border-top: solid 1px var(--bs-gray);
}

.copyright {
  font-size: 1.2rem;
  color: #707070;
  text-align: center;
}


@media screen and (max-width: 768px) {

  body {
    font-size: var(--bs-body-font-size-sp);
  }

  .pc-only {
    display: none;
  }

  .sp-only {
    display: block;
  }

  .header {
    height: 5rem;
  }

  .header-logo {
    padding-left: 1.5rem;
  }

  .header-logo-img {
    width: 2.465rem;
  }

  .header-logo-txt {
    margin-left: 0.5rem;
    font-size: 1.2rem;
  }

  .header-sp {
    display: flex;
  }

  .header-contact-sp {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 5rem;
    height: 5rem;
    background: var(--bs-gradient);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    position: relative;
    z-index: 1;
    transition: .3s;
  }

  .header-contact-sp::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: #fff;
    border: 1px solid;
    border-image: var(--bs-gradient) 1;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform ease .3s;
  }

  .header-contact-sp:hover {
    color: var(--bs-blue);
  }

  .header-contact-sp:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
  }

  .header-menu {
    position: relative;
    width: 5rem;
    height: 5rem;
    background: var(--bs-black);
    z-index: 10;
  }

  .header-menu .menu-bar {
    position: absolute;
    left: calc(50% - 0.85rem);
    width: 1.6rem;
    height: 1px;
    background: #fff;
    transition: all 0.3s ease;
  }

  .header-menu .menu-bar:first-child {
    top: 1.9rem;
  }

  .header-menu .menu-bar:nth-child(2) {
    top: 2.5rem;
  }

  .header-menu .menu-bar:last-child {
    bottom: 1.9rem;
  }

  .header-menu.active .menu-bar:first-child {
    transform: rotate(45deg) translate(5px, 5px);
    top: 1.931rem;
  }
  .header-menu.active .menu-bar:nth-child(2) {
    opacity: 0;
  }
  .header-menu.active .menu-bar:last-child {
    transform: rotate(-45deg) translate(6px, -6px);
    bottom: 1.45rem;
  }

  .header-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    height: 100vh;
    background: var(--bs-gradient);
    opacity: 0;
    transition: right 0.4s ease, opacity 0.4s ease;
    z-index: 10;
    padding: 11rem 4rem 11rem;
  }

  .header-nav.open {
    right: 0;
    opacity: 1;
  }

  .header-list {
    align-content: space-between;
    flex-wrap: wrap;
    gap: 0;
    height: 100%;
    padding: 0;
    margin: 0;
  }

  .header-nav-list,
  .header-contact {
    width: 100%;
  }

  .header-list-wrap {
    flex-wrap: wrap;
    gap: 4rem;
  }

  .header-nav-list a,
  .header-contact a {
    color: #fff;
    font-size: 2.1rem;
  }

  .header-nav-list a {
    height: auto;
  }

  .header-nav-list a::before {
    content: "";
    background: url(../img/common/header-menu-icon_sp.svg);
    background-position: center;
    background-size: contain;
    display: inline-block;
    width: 0.6rem;
    height: 1.2rem;
    margin-right: 1rem;
  }

  .header-contact a {
    width: 14.9rem;
    height: 5rem;
    margin: 0 auto;
    border: 1px solid #fff;
    background: transparent;
  }

  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 9;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
  }

  .overlay.active {
    opacity: 1;
    visibility: visible;
  }

  .mv {
    height: 39rem;
  }

  .mv-bg {
    background-position: 55% center;
  }

  .mv-text {
    font-size: 3.2rem;
    text-align: left;
    top: 13rem;
    left: 2rem;
  }

  section {
    padding: 3rem 0 6rem;
  }

  .home #intro {
    padding: 3rem 0 0;
  }

  .home .content-width {
    width: calc(100% - 4rem);
  }

  .i-ttl {
    width: 100%;
    padding-bottom: 3rem;
    font-size: 5rem;
    line-height: 0.9;
  }

  .home .intro-list-item {
    margin-bottom: 2rem;
  }

  .home .intro-list-item-ttl {
    margin-bottom: 1rem;
    padding-left: 2.8rem;
    text-indent: -2.8rem;
    font-size: 2.1rem;
  }

  .home .intro-list-item-ttl::before {
    width: 2rem;
    height: 1.256rem;
    margin-right: 0.8rem;
  }

  .home #location {
    padding: 6rem 0;
  }

  .home #location .content-width {
    width: 100%;
  }

  .s-ttl {
    margin-bottom: 3rem;
    text-align: center;
    font-size: 2.8rem;
  }

  .home #location .s-ttl {
    width: calc(100% - 4rem);
    margin: 0 auto 3rem;
  }

  .home .location-wrap {
    flex-direction: column-reverse;
    gap: 0;
    margin-bottom: 6rem;
  }

  .home .location-content {
    width: calc(100% - 4rem);
    margin: 0 auto;
  }

  .home .location-img {
    position: unset;
    width: 100%;
    height: auto;
    padding-left: 4rem;
  }

  .home .location-img img {
    width: 100%;
    position: unset;
  }

  .home .location-list {
    margin-bottom: 4rem;
  }

  .home .location-list-item {
    margin-bottom: 2rem;
  }

  .home .location-list-item::before {
    width: 2rem;
    min-width: 2rem;
    height: 3.056rem;
    min-height: 3.056rem;
  }

  .btn {
    width: 25rem;
    height: 5rem;
    margin: 0 auto;
    font-size: 1.6rem;
  }

  .home #feature {
      margin-top: -8rem;
  }

  .home .feature-list {
    margin-top: 0;
  }

  .home .feature-list-item {
    flex-direction: column-reverse;
    margin-bottom: 3rem;
  }

  .home .feature-list-content {
    width: 100%;
    margin-top: -5rem;
  }

  .home .feature-list-item_h3 {
    font-size: 2.1rem;
  }

  .home .feature-list-item_h3 .ttl-line {
    display: none;
  }

  .home .feature-list-item_txt {
    margin-bottom: 2rem;
  }

  .home .feature-list-img {
    width: 100%;
    position: unset;
  }

  .home .feature-list-img img {
    position: unset;
  }

  .btn.white {
    width: 25rem;
    height: 5rem;
  }

  .home #product {
    padding: 0 0 6rem;
  }

  .home .product-bg {
    height: calc(100% - 16.9rem);
  }

  .home #product .i-ttl {
    text-align: left;
  }

  .home .product-list {
    flex-wrap: wrap;
    gap: 3rem;
  }

  .home .product-list-item {
    width: 100%;
    max-width: 23rem;
    height: 32.5rem;
    flex-wrap: wrap;
  }

  .home .product-list-item.pla,
  .home .product-list-item.viv {
    margin-top: 0;
  }

  .home .product-list-item.pla {
    margin-left: calc(50% - 11.5rem);
  }

  .home .product-list-item.viv {
    margin-left: calc(100% - 23rem);
  }

  .home .product-list-item-txt {
    padding: 2rem 1.5rem;
  }

  .home .product-list-item-h3 {
    font-size: 1.6rem;
  }

  .home .product-list-item-txt p {
    line-height: 1.5;
  }

  .home .product-more {
    padding-top: 1.5rem;
  }

  .home .product-more .arrow {
  width: 1.5rem;
  margin: 0.5rem 5px 0 0.25em 0.8em;
  }

  .home .product-more .arrow::after {
  width: 0.5rem
  }

  #cv {
    padding: 4rem 0;
  }

  #cv .content-width {
    width: 27.5rem;
    margin-top: 0;
  }

  .cv-ttl {
    font-size: 2.8rem;
  }

  .c-btn {
    width: 3rem;
    height: 3rem;
  }

  .c-btn .arrow {
    width: 0.65rem;
    height: 1.2rem;
  }

  .c-btn .arrow::before,
  .c-btn .arrow::after {
    width: 0.65rem;
  }

  #page-top {
    right: 1rem;
  }

  #page-top .c-btn {
    width: 4rem;
    height: 4rem;
  }

  .footer-upper {
    width: 100%;
    padding: 3rem 0;
  }

  .footer-logo {
    width: 6rem;
  }

  .footer-menu {
    flex-wrap: wrap;
    gap: 1em;
    width: 13.2rem;
    margin: 2.5rem auto 0;
  }

  .footer-menu-item {
    width: 100%;
  }

  .footer-bottom {
    padding: 1.5rem 0;
  }

  .copyright {
    font-size: 1rem;
  }

}


/* ------------------
  下層ページ
------------------ */

.kasou .header {
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.kasou .mv {
  height: 27.5rem;
  margin-top: 8rem;
}

.kasou.no-squeaking .mv {
  background: url(../img/no-squeaking/mv.jpg) center / cover no-repeat;
}

.kasou.heat-management .mv {
  background: url(../img/heat-management/mv.jpg) center / cover no-repeat;
}

.kasou.long-lasting-beauty .mv {
  background: url(../img/long-lasting-beauty/mv.jpg) center / cover no-repeat;
}

.kasou .mv-text {
  opacity: 1;
  font-size: 5.6rem;
}

.kasou .content-width {
  width: 102.3rem;
  margin: 0 auto;
}

.kasou.heat-management .content-width {
  width: 108rem;
}

.kasou.long-lasting-beauty .content-width {
  width: 97.7rem;
}

.kasou #intro {
  padding: 11.2rem 0 ;
}

.kasou .intro-img {
  margin: 6rem 0 4rem;
}

.kasou .intro-txt-wrap {
  display: flex;
}

.kasou .intro-txt-l {
  padding-right: 6rem;
  border-right: 1px solid var(--bs-black);
}

.kasou.no-squeaking #intro .btn {
  margin: 0 auto;
  background: var(--bs-gradient-o);
  border-image: var(--bs-gradient-o) 1;
}

.kasou.no-squeaking #intro .btn::before {
  border-image: var(--bs-gradient-o) 1;
}

.kasou.no-squeaking #intro .btn:hover {
  color: var(--bs-orange);
}

.kasou.heat-management .intro-txt-l {
  width: 40rem;
}

.kasou.long-lasting-beauty .intro-txt-l {
  width: 27.7rem;
}

.kasou .intro-txt-l .s-ttl {
  color: var(--bs-blue);
  text-align: right;
}

.kasou .intro-txt-r {
  padding-left: 6rem;
}

.kasou.heat-management .intro-txt-r {
  width: calc(100% - 40rem);
}

.kasou.long-lasting-beauty .intro-txt-r {
  width: calc(100% - 27.7rem);
}

.kasou #dl {
  padding: 3rem 0 11.2rem;
  background: var(--bs-gray);
}

.kasou .i-ttl {
  color: #fff;
}

.kasou #dl .content-width {
  width: 96rem;
}

.kasou .dl-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kasou .dl-img {
  width: 40rem;
}

.kasou .dl-img img {
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, .25);
}

.kasou .dl-content {
  width: calc(100% - 50rem);
}

.kasou .s-ttl-h3 {
  margin-bottom: 4rem;
  font-size: 3.2rem;
  font-weight: 600;
  line-height: 1.3;
}

.kasou .s-txt {
  color: #707070;
}

.kasou #dl .s-txt {
  margin-bottom: 6rem;
}

.kasou #award {
  padding: 0;
}

.kasou #award .content-width {
  width: 144rem;
}

.kasou .award-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.kasou .award-img {
  width: 72rem;
}

.kasou .award-content {
  display: flex;
  justify-content: center;
  width: calc(100% - 72rem);
}

.kasou .award-content-inner {
  width: 53rem;
}

@media screen and (max-width: 768px) {
  .kasou .mv {
    height: 11rem;
    margin-top: 5rem;
  }

  .kasou .mv-text {
    font-size: 2.8rem;
    top: 50%;
    left: unset;
    text-align: center;
  }

  .kasou #intro {
    padding: 3rem 0 6rem;
  }

  .kasou .content-width {
    width: 100%;
  }

  .kasou #intro .content-width,
  .kasou #dl .content-width,
  .kasou .award-content-inner {
    width: calc(100% - 4rem);
  }

  .kasou .intro-img {
    margin-top: 2rem;
  }

  .kasou .intro-txt-wrap {
    flex-wrap: wrap;
  }

  .kasou .intro-txt-l,
  .kasou .intro-txt-r,
  .kasou.heat-management .intro-txt-l,
  .kasou.heat-management .intro-txt-r,
  .kasou.long-lasting-beauty .intro-txt-l,
  .kasou.long-lasting-beauty .intro-txt-r {
    width: 100%;
  }

  .kasou .intro-txt-l {
    padding-right: 0;
    border-right: 0;
    border-bottom: 1px solid var(--bs-black);
  }

  .kasou .intro-txt-l .s-ttl {
    margin-bottom: 1.5rem;
    text-align: left;
  }

  .kasou .intro-txt-r {
    padding-left: 0;
    padding-top: 3rem;
  }

  .kasou .s-ttl {
    text-align: left;
  }

  .kasou .intro-txt-r .s-ttl {
    margin-bottom: 2rem;
    font-size: 2.1rem;
  }

  .kasou #dl {
    padding: 2rem 0 6rem;
  }

  .kasou .i-ttl {
    padding-bottom: 2rem;
  }

  .kasou .dl-wrap{
    justify-content: center;
    flex-wrap: wrap;
  }

  .kasou .dl-img {
    width: 100%;
    max-width: 20rem;
  }

  .kasou .dl-content {
    width: 100%;
    margin-top: 3rem;
  }

  .kasou .s-ttl-h3 {
    font-size: 2.1rem;
    margin-bottom: 2rem;
  }

  .kasou #dl .s-txt {
    margin-bottom: 3rem;
  }

  .kasou #award .content-width {
    width: 100%;
  }

  .kasou .award-wrap {
    flex-wrap: wrap;
  }

  .kasou .award-img,
  .kasou .award-content {
    width: 100%;
  }

  .kasou .award-content {
    margin: 3rem auto 6rem;
  }
  
  .kasou #award .s-ttl-h3 {
    margin-bottom: 3rem;
  }

}