@charset "UTF-8";
/* CSS Document */

@font-face {
  font-family: 'LINE Seed JP';
  src: url('fonts/LINESeedJP_OTF_Th.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('fonts/LINESeedJP_OTF_Rg.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'LINE Seed JP';
  src: url('fonts/LINESeedJP_OTF_Bd.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
}



html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
}

body {
  color: #000;
  font-family: "LINE Seed JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: left;
  width: 100%;
  overflow-x: hidden;
}

body.fixde {
  height: 100vh;
  overflow: hidden;
}

img {
  width: 100%;
}

.br {
  display: inline-block;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 95px;
  background: rgba(0, 0, 0, 0.2);
  z-index: 100;
  transition: 0.4s;
  transition-timing-function: ease-out;
  backdrop-filter: blur(5px);
}

.header.active {
  background: rgba(255, 255, 255, 0.25);
}

.header__wapper {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header__wapper__h1__a__image {
  width: 130px;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
  filter: brightness(0) invert(1);
  position: relative;
  z-index: 99999;
}

.header.active .header__wapper__h1__a__image {
  filter: none;
}

.header .header__wapper__h1__a__image.active {
  filter: brightness(0) invert(1);
}

.header__pcnav__ul {
  display: flex;
  align-items: center;
  gap: 35px;
}

.header__pcnav__ul__li a {
  font-size: 1.4rem;
  color: #FFFFFF;
  transition: 0.4s;
  transition-timing-function: ease-in-out;
}

.header.active .header__pcnav__ul__li a {
  color: #000;
}

.header__button {
  position: relative;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 50px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.5);
  color: #FFFFFF !important;
  border: solid 1px #FFFFFF;
}

.header__button span {
  width: 11px;
  height: 11px;
  border-right: solid 1.2px #FFFFFF;
  border-bottom: solid 1.2px #FFFFFF;
  transform: rotate(45deg) translate(0px, -5px);
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.header__button:hover span {
  transform: rotate(45deg) translate(5px, 0px);
}

.header__button__ul {
  position: absolute;
  display: flex;
  flex-direction: column;
  width: 180px;
  gap: 5px;
  padding: 10px 0;
  visibility: hidden;
  opacity: 0;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.header__pcnav__ul__li:last-child:hover .header__button__ul {
  opacity: 1;
  visibility: inherit;
}

.header__button__ul__li:nth-child(1) a {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 60px;
  border-radius: 15px;
  transition: 0.4s;
  transition-timing-function: ease-out;
  background: linear-gradient(90deg, #0c72b5, #0288d1, #0c72b5) 0 / 200% 100%;
  color: #FFFFFF !important;
  margin: 0 auto;
}

.header__button__ul__li:nth-child(1) a:hover {
  background-position: 100% 0;
}

.header__button__ul__li:nth-child(1) a span {
  width: 11px;
  height: 11px;
  border-right: solid 1.2px #FFFFFF;
  border-bottom: solid 1.2px #FFFFFF;
  transform: rotate(-45deg);
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.header__button__ul__li:nth-child(1) a:hover span {
  transform: rotate(-45deg) translate(7px, 7px);
}

.header__button__ul__li:nth-child(2) a {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 180px;
  height: 60px;
  border-radius: 15px;
  transition: 0.4s;
  transition-timing-function: ease-out;
  background: linear-gradient(90deg, #F6AE01, #EC7101, #F6AE01) 0 / 200% 100%;
  color: #FFFFFF !important;
  margin: 0 auto;
}

.header__button__ul__li:nth-child(2) a:hover {
  background-position: 100% 0;
}

.header__button__ul__li:nth-child(2) a span {
  width: 11px;
  height: 11px;
  border-right: solid 1.2px #FFFFFF;
  border-bottom: solid 1.2px #FFFFFF;
  transform: rotate(-45deg);
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.header__button__ul__li:nth-child(2) a:hover span {
  transform: rotate(-45deg) translate(7px, 7px);
}

.menu {
  display: none;
}

.header__spnav {
  display: none;
}


@media (max-width: 1280px) {
  .header__pcnav__ul {
    gap: max(15px, 2vw);
  }
}


@media (max-width: 1023px) {
  .header__pcnav {
    display: none;
  }

  .menu {
    display: block;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 99999;
  }

  .menu span {
    position: absolute;
    display: block;
    top: 35%;
    width: 100%;
    height: 2px;
    background: #FFFFFF;
    transition: 0.4s;
    transition-timing-function: ease-out;
  }

  .header.active .menu span {
    background: #000000;
  }

  .menu span:nth-child(2) {
    top: 65%;
  }

  .menu.active span:nth-child(1) {
    top: 50%;
    rotate: 45deg;
    background: #FFFFFF;
  }

  .menu.active span:nth-child(2) {
    top: 50%;
    rotate: -45deg;
    background: #FFFFFF;
  }

  .header__spnav {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100lvh;
    overflow-y: scroll;
    background: #242424;
    visibility: hidden;
    opacity: 0;
    transition: 0.4s;
    transition-timing-function: ease-out;
    z-index: 99990;
  }

  .header__spnav a {
    color: #FFFFFF;
  }

  .header__spnav.open {
    visibility: initial;
    opacity: 1;
  }

  .header__spnav__ul {
    width: 100%;
    padding-bottom: 30px;
    border-bottom: solid 1px #5A5A5A;
    margin-bottom: 30px;
  }

  .header__spnav__ul__li {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 20px;
  }

  .header__spnav__ul__li__a {
    font-weight: 700;
  }

  .header__spnav__ul:nth-child(1) {
    padding-top: 120px;
  }

  .header__spnav__ul__li__ul {
    width: 90%;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }

  .header__spnav__ul__li__ul__li__a {
    font-size: 1.4rem;
  }

  .header__spnav__ul:nth-child(3) .header__spnav__ul__li__ul {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
  }

  .header__spnav__ul:nth-child(3) .header__spnav__ul__li__ul__li {
    width: calc(100% / 2 - 10px);
  }

  .header__spnav__ul:nth-child(3) .header__spnav__ul__li__ul__li__a {
    font-weight: 700;
  }

  .header__spnav__flex {
    display: flex;
    justify-content: center;
    width: 90%;
    margin: 0 auto 30px;
    gap: 20px;
  }

  .header__spnav__flex .header__spnav__ul {
    width: calc(100% / 2 - 10px);
    padding: 0;
    margin: 0;
    border: none;
  }

  .header__spnav__flex .header__spnav__ul__li {
    width: 100%;
  }

  .header__spnav__flex .header__spnav__ul__li__ul {
    width: 100%;
    flex-direction: column;
  }

  .header__spnav__button {
    display: flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    width: 200px;
    height: 60px;
    border-radius: 100px;
    transition: 0.4s;
    transition-timing-function: ease-out;
    background: linear-gradient(90deg, #0c72b5, #0288d1, #0c72b5) 0 / 200% 100%;
    color: #FFFFFF;
    margin: 0 auto 100px;
  }

  .header__spnav__button span {
    width: 11px;
    height: 11px;
    border-right: solid 1.2px #FFFFFF;
    border-bottom: solid 1.2px #FFFFFF;
    transform: rotate(-45deg);
    transition: 0.4s;
    transition-timing-function: ease-out;
  }
}


@media (max-width: 600px) {

  .header {
    height: 60px;
  }

  .header__wapper__h1__a__image {
    width: 100px;
  }

  .header__spnav__ul__li__ul {
    flex-direction: column;
  }

  .header__spnav__ul:nth-child(3) .header__spnav__ul__li__ul {
    flex-direction: row;
  }
}





.breadcrumbs {
  position: absolute;
  top: 125px;
  left: 5%;
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.breadcrumbs__li {
  color: #FFFFFF;
}

.breadcrumbs__li:nth-child(even) {
  width: 8px;
  height: 8px;
  border-bottom: solid 2px #FFFFFF;
  border-right: solid 2px #FFFFFF;
  rotate: -45deg;
}

.breadcrumbs__li__a {
  position: relative;
  color: #FFFFFF;
}

.breadcrumbs__li__a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  clip-path: inset(0 100% 0 0);
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.breadcrumbs__li__a:hover::after {
  clip-path: inset(0 0 0 0);
}

@media (max-width: 1024px) {
  .breadcrumbs {
    font-size: 1.4rem;
  }
}

@media (max-width: 600px) {
  .breadcrumbs {
    top: 80px;
    font-size: 1.2rem;
  }

  .breadcrumbs__li:not(:last-child) {
    display: none;
  }
}





.banner-wrapper {
  position: fixed;
  z-index: 100;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 80px;
  padding: 0 15px;
  background-color: #00000038;
  border-radius: 20px 0 0 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
  overflow: hidden;
  transition: width 0.3s ease, height 0.3s ease;
  z-index: 10;
}

.banner-wrapper.collapsed {
  width: 200px;
  height: 50px;
}

.banner-content {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-grow: 1;
  position: relative;
  width: 90%;
}

.banner-text {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: opacity 0.3s ease;
}

.banner-image {
  height: auto;
  width: 46%;
  opacity: 1;
  transition-delay: 0s;
  transition: width 0.3s ease, height 0.3s ease;
}

.banner-text {
  color: white;
  font-size: 11px;
  font-weight: bold;
  opacity: 0;
  margin-left: 10px;
}

.collapsed .banner-image {
  opacity: 0;
  transition-delay: 0.3s;
  display: none;
}

.collapsed .banner-text {
  opacity: 1;
  transition-delay: 0s;
}

.toggle-button {
  display: block;
  width: 30px;
  height: 30px;
  border: none;
  border-radius: 50%;
  background-color: white;
  color: #000000;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.toggle-button.rotated {
  transform: rotate(45deg);
  width: 32px;
}


@media (max-width: 600px) {
  .toggle-button {
    display: none;
  }

  .banner-wrapper {
    width: 100%;
    height: auto;
    padding: 10px 0 15px;
    border-radius: 10px 10px 0 0;
  }
}






.bottom__contents {
  display: flex;
}


@media (max-width: 1023px) {
  .bottom__contents {
    flex-direction: column;
  }
}



.secDownload {
  position: relative;
  width: 50%;
  background: url(images/common/dw-image.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.secDownload::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #0C72B5, #5AB2E1);
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.75;
}

.secDownload__wapper {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  width: 80%;
  max-width: 720px;
  margin-left: auto;
}

.secDownload__wapper__strong {
  font-size: 5rem;
  font-weight: 400;
}

.secDownload__wapper__h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.secDownload__wapper__p {
  margin-bottom: 30px;
}

.secDownload__wapper__button {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  width: 300px;
  height: 60px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
}

.secDownload__wapper__button span {
  width: 11px;
  height: 11px;
  border-right: solid 1.2px #FFFFFF;
  border-bottom: solid 1.2px #FFFFFF;
  transform: rotate(-45deg);
  transition: 0.4s;
  transition-timing-function: ease-out;
  display: block;
}

.secDownload__wapper__button:hover span {
  transform: rotate(-45deg) translate(7px, 7px);
}

@media (max-width: 1023px) {
  .secDownload {
    width: 100%
  }

  .secDownload__wapper {
    margin: 0 auto;
  }

  .secDownload__wapper__strong {
    font-size: 4.7rem;
  }

  .secDownload__wapper__h2 {
    font-size: 2rem;
  }

  .secDownload__wapper__p {
    margin-bottom: 50px;
  }
}


@media (max-width: 600px) {
  .secDownload__wapper__strong {
    font-size: 4.4rem;
  }

  .secDownload__wapper__h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}



.secContact {
  position: relative;
  width: 50%;
  background: url(images/common/co-image.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 100px 0;
}

.secContact::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(90deg, #0C72B5, #5AB2E1);
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0.75;
}

.secContact__wapper {
  position: relative;
  z-index: 1;
  color: #FFFFFF;
  width: 80%;
  max-width: 720px;
  margin-left: 10%;
}

.secContact__wapper__strong {
  font-size: 5rem;
  font-weight: 400;
}

.secContact__wapper__h2 {
  font-size: 2.2rem;
  margin-bottom: 30px;
}

.secContact__wapper__p {
  margin-bottom: 30px;
}

.secContact__wapper__buttonArea {
  display: flex;
  gap: 15px;
}

.secContact__wapper__button {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
  height: 60px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.7);
  color: #FFFFFF;
  width: 50%;
  max-width: 300px;
}

.secContact__wapper__button span {
  width: 11px;
  height: 11px;
  border-right: solid 1.2px #FFFFFF;
  border-bottom: solid 1.2px #FFFFFF;
  transform: rotate(-45deg);
  transition: 0.4s;
  transition-timing-function: ease-out;
  display: block;
}

.secContact__wapper__button:hover span {
  transform: rotate(-45deg) translate(7px, 7px);
}


@media (max-width: 1023px) {
  .secContact {
    width: 100%
  }

  .secContact__wapper {
    margin: 0 auto;
  }

  .secContact__wapper__strong {
    font-size: 4.7rem;
  }

  .secContact__wapper__h2 {
    font-size: 2rem;
  }

  .secContact__wapper__p {
    margin-bottom: 50px;
  }
}


@media (max-width: 600px) {
  .secContact__wapper__strong {
    font-size: 4.4rem;
  }

  .secContact__wapper__h2 {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }

  .secContact__wapper__button {
    width: 300px;
  }

  .secContact__wapper__buttonArea {
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
  }
}





.footer {
  padding: 150px 0 75px;
  background: #242424;
}

.footer__wapper {
  position: relative;
  width: 90%;
  max-width: 1440px;
  margin: 0 auto;
}

.footer__wapper__top {
  display: flex;
  justify-content: space-between;
  margin-bottom: 50px;
  gap: 50px;
}

.footer__wapper__top__left {
  color: #FFFFFF;
  line-height: 2;
}

.footer__wapper__top__left__logo {
  display: block;
  width: 150px;
  margin-bottom: 40px;
}

.footer__wapper__top__left__logo img {
  filter: brightness(0) invert(1);
}

.footer__wapper__top__left__h2 {
  font-size: 1.6rem;
}

.footer__wapper__top__left__address {
  font-size: 1.4rem;
}

.footer__wapper__top__left__tel {
  font-size: 1.4rem
}

.footer__wapper__top__right {
  max-width: 800px;
  flex: 1;
}

.footer__wapper__top__right a {
  color: #FFFFFF;
}

.footer__wapper__top__right__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: flex-end;
}

.footer__wapper__top__right__ul__li {
  width: 250px;
  margin-bottom: 20px;
}

.footer__wapper__top__right__ul__li__p {
  margin-bottom: 25px;
}

.footer__wapper__top__right__ul__li__ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 1.4rem;
}

.footer__wapper__ul {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin-bottom: 30px;
}

.footer__wapper__ul__li__a {
  color: #FFFFFF;
  font-size: 1.2rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 50px;
  color: #FFFFFF;
}

.footer__bottom__left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer__bottom__left img {
  display: block;
  width: 80px;
  height: 80px;
}

.footer__bottom__left p {
  line-height: 2.8rem;
  font-size: 1.2rem;
}

.footer__bottom__copy {
  font-size: 1.2rem;
}

.top__button {
  z-index: 1;
  position: absolute;
  top: 0;
  right: 0;
  color: #FFFFFF;
  writing-mode: vertical-lr;
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  gap: 10px;
  font-size: 1.4rem;
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.top__button:hover {
  opacity: 0.5;
}

.top__button span {
  position: relative;
  display: block;
  width: 40px;
  height: 40px;
  background: #000000;
  border: solid 1px #FFFFFF;
  border-radius: 50%;
}

.top__button span::after {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-right: solid 1.2px #FFFFFF;
  border-bottom: solid 1.2px #FFFFFF;
  transform: rotate(-135deg);
  top: 16px;
  left: 13px;
  position: absolute;
}

@media (max-width: 1023px) {
  .footer {
    padding: 125px 0;
  }

  .footer__wapper__ul {
    gap: 25px;
  }
}

@media (max-width: 600px) {

  .footer__wapper__top {
    justify-content: center;
  }

  .footer__wapper__top__right {
    display: none;
  }

  .footer__bottom {
    flex-direction: column;
  }

  .footer__wapper__ul {
    margin-bottom: 50px;
  }

}


.link {
  position: relative;
}

.link::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #FFFFFF;
  clip-path: inset(0 100% 0 0);
  transition: 0.4s;
  transition-timing-function: ease-out;
}

.active .link::after {
  background: #000000;
}

.link:hover::after {
  clip-path: inset(0 0 0 0);
}

.scroll-event {
  opacity: 0;
  transform: translateY(50px);
  transition: 0.75s;
  transition-timing-function: ease-out;
}

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