@charset "UTF-8";
/* -------------------------------------------- */
/* ----------------- mixin --------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ----------------- NOTO --------------- */
/* -------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho&display=swap");
/* -------------------------------------------- */
/* ----------------- Bebas --------------- */
/* -------------------------------------------- */
/* -------------------------------------------- */
/* ----------------- MINCHO --------------- */
/* -------------------------------------------- */
/* ----- break point ----- */
/* -------------------------------------------- */
/* ----------------- base --------------- */
/* -------------------------------------------- */
html {
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  scroll-behavior: smooth;
  background: #fffdfd;
  overflow-x: hidden;
}

body {
  margin: 0 !important;
}

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

.mg {
  margin: 100px 0;
}
@media only screen and (max-width: 800px) {
  .mg {
    margin: 80px 0;
  }
}

.h2 {
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-style: normal;
  letter-spacing: 20px;
  font-size: 100px;
  margin-left: 100px;
  position: relative;
}
@media only screen and (max-width: 800px) {
  .h2 {
    font-size: 60px;
    margin-left: 20px;
  }
}

.deco_ttl {
  font-size: 250px;
  color: #f0f0f0;
  position: absolute;
  top: 0px;
  left: 100px;
  z-index: -5;
  display: inline-block;
}
@media only screen and (max-width: 800px) {
  .deco_ttl {
    font-size: 80px;
    left: 5px;
  }
}

.cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 20px; /* 丸の大きさ */
  height: 20px;
  background-color: rgba(255, 255, 255, 0.8); /* 白色 */
  border-radius: 50%;
  pointer-events: none; /* クリックを邪魔しない */
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease-out;
  mix-blend-mode: difference; /* 背景とブレンド */
}
@media only screen and (max-width: 800px) {
  .cursor {
    display: none;
  }
}

.bg img {
  width: 100vw;
  height: 300px;
}

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

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

.slide {
  opacity: 0;
  transform: translateX(-50px); /* 初期位置（左に50pxずらす） */
  transition: opacity 0.6s ease-out, transform 0.6s ease-out; /* アニメーション */
}
.slide.show {
  opacity: 1;
  transform: translateX(0); /* 元の位置に */
}

/* -------------------------------------------- */
/* ----------------- module --------------- */
/* -------------------------------------------- */
.header {
  width: 100vw;
  height: 80px;
  background: linear-gradient(to bottom, #00CCCC, #0099CC, #006699);
  display: flex;
  align-items: center;
  justify-content: space-between;
  top: 0;
  z-index: 99;
  /* ロゴ画像を中央揃え */
}
@media only screen and (max-width: 800px) {
  .header {
    height: 60px;
    justify-content: left;
  }
}
.header > div {
  display: flex;
  align-items: center;
  height: 80px;
}
.header img {
  width: 100px;
  height: 80px;
}
@media only screen and (max-width: 800px) {
  .header img {
    width: 50px;
    height: 50px;
  }
}
.header a {
  display: flex;
  align-items: center;
  justify-content: left;
  height: 80px;
  font-size: 25px;
  text-decoration: none;
  color: #fff;
  padding-left: 20px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
}
@media only screen and (max-width: 800px) {
  .header a {
    height: 50px;
    font-size: 17px;
    padding-left: 8px;
  }
}
.header .menu {
  width: 50vw;
  height: 80px;
  background: linear-gradient(to bottom, #00CCCC, #0099CC, #006699);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
}
@media only screen and (max-width: 800px) {
  .header .menu {
    display: none;
  }
}
.header .menu .block {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 800px) {
  .header .menu .block {
    width: 100vw;
    height: 100vh;
    background: linear-gradient(to bottom, #00CCCC, #0099CC, #006699);
    flex-direction: column;
    justify-content: center;
  }
  .header .menu .block a {
    font-size: 17px;
  }
}
.header .menu .link {
  position: relative;
  text-decoration: none;
  color: #fff;
  font-size: 17px;
  padding: 0 20px;
  transition: color 0.3s ease-in-out;
}
.header .menu .link:hover {
  color: #FFD700;
  transform: scale(1.2);
  transition: 0.5s ease-in-out;
}
@media only screen and (max-width: 800px) {
  .header .menu .link {
    font-size: 25px;
  }
}

.progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 5px; /* バーの高さ */
  background: #FFD700; /* バーの色 */
  z-index: 9999;
  transition: width 0.1s ease-out;
}

.slide-menu {
  transition: all 0.4s;
  width: 50vw;
  height: 100vh;
  top: 0;
  right: 0;
  background: linear-gradient(to bottom, #00CCCC, #0099CC, #006699);
  transform: translateX(100%);
  padding: 10% 0;
  position: fixed;
  z-index: 10001;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.slide-menu.fixed {
  transform: translateX(0);
}
@media only screen and (max-width: 800px) {
  .slide-menu {
    width: 100vw;
  }
}
.slide-menu .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 5%;
  gap: 20px; /* リンクの間隔を調整 */
}
.slide-menu .container a {
  color: white; /* リンクの色 */
  text-decoration: none;
  font-size: 18px;
  padding: 10px 0;
  width: 100%;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .slide-menu .container {
    display: flex;
    flex-direction: column;
    align-items: center; /* 中央寄せ */
    justify-content: center; /* 縦方向に中央寄せ */
    width: 100%;
    height: 100%;
    gap: 20px; /* リンクの間隔を調整 */
  }
  .slide-menu .container a {
    color: white; /* リンクの色 */
    text-decoration: none;
    font-size: 18px;
    padding: 10px 0;
    width: 100%;
    text-align: center;
  }
}
.slide-menu .line {
  content: "";
  width: 60%;
  height: 1px;
  background: rgba(255, 215, 0, 0.7);
}
.slide-menu .slmenu-under {
  padding: 10%;
}
.slide-menu .slmenu-under img {
  width: 60px;
  height: 60px;
}
.slide-menu .slmenu-under p {
  color: #fff;
  font-size: 17px;
}
.slide-menu .slmenu-under p a {
  text-decoration: none;
  color: #fff;
  font-size: 17px;
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* 半透明の暗転 */
  z-index: 10000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s;
}

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

.nav-link {
  text-decoration: none;
  color: #fff;
  margin-left: 20px;
  position: relative;
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0px;
  width: 0;
  height: 2px;
  background-color: #FFD700;
  transition: all 0.3s ease-in-out;
  transform: translateX(-50%);
}
@media only screen and (max-width: 800px) {
  .nav-link::after {
    bottom: 4px;
  }
}
.nav-link:hover::after {
  width: 35%;
}
.nav-link.active::after {
  width: 35%;
  background-color: #ffdf33;
}

.ham {
  display: block;
  width: 40px;
  height: 30px;
  position: fixed;
  top: 35px;
  right: 30px;
  cursor: pointer;
  z-index: 99999;
  background: transparent;
}
@media only screen and (max-width: 800px) {
  .ham {
    top: 25px;
    right: 15px;
  }
}
.ham span {
  width: 100%;
  height: 2px;
  background-color: #FFD700;
  position: absolute;
  left: 0;
}
.ham span:nth-of-type(1) {
  top: 0;
}
.ham span:nth-of-type(2) {
  top: 10px;
}
.ham.active span {
  transition: all 0.4s;
}
.ham.active span:nth-of-type(1) {
  transform: rotate(45deg);
  top: 10px;
}
.ham.active span:nth-of-type(2) {
  transform: rotate(-45deg);
  bottom: 8px;
}

footer {
  text-align: center;
  background: linear-gradient(to bottom, #00CCCC, #0099CC, #006699);
  padding-bottom: 10px;
}
@media only screen and (max-width: 800px) {
  footer {
    padding-bottom: 60px;
  }
}
footer .footer_flex {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
}
@media only screen and (max-width: 800px) {
  footer .footer_flex {
    display: block;
    height: auto;
  }
}
footer .footer_flex .left {
  color: #fff;
  text-align: left;
  margin: 30px auto;
}
footer .footer_flex .left .content {
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footer_flex .left .content p {
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 25px;
  padding-left: 20px;
}
footer .footer_flex .left img {
  width: 100px;
}
footer .footer_flex .left p {
  color: #fff;
  padding-left: 20px;
  font-size: 15px;
}
footer .footer_flex .left a {
  color: inherit; /* 親要素の色を引き継ぐ */
  text-decoration: none; /* アンダーラインを消す */
}
footer .footer_flex .center .content {
  width: 33vw;
  display: grid;
}
@media only screen and (max-width: 800px) {
  footer .footer_flex .center .content {
    width: 100vw;
  }
}
footer .footer_flex .center .content p {
  color: #fff;
  font-size: 13px;
  margin: 5px !important;
}
footer .footer_flex .right {
  width: 33vw;
  display: grid;
}
@media only screen and (max-width: 800px) {
  footer .footer_flex .right {
    display: none;
  }
}
footer .footer_flex .right a {
  color: #fff;
  text-decoration: none;
  margin: 8px;
}
footer small {
  color: #fff;
}

/* -------------------------------------------- */
/* ----------------- page --------------- */
/* -------------------------------------------- */
.fv {
  /* 上下に動く矢印アニメーション */
  /* フェードイン・アウトするテキスト */
}
.fv .fv-img {
  width: 80vw;
  height: calc(100vh - 80px);
  background: url(../image/fv/fv-pc.jpeg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media only screen and (max-width: 800px) {
  .fv .fv-img {
    width: 100vw;
    height: 90vh;
  }
}
.fv .fv-img .background-mask {
  width: 80vw;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 800px) {
  .fv .fv-img .background-mask {
    width: 100vw;
  }
}
.fv .fv-img .square {
  background: linear-gradient(to bottom, #00CCCC, #0099CC, #006699);
  width: 60vw;
  height: 100vh;
  position: absolute;
  top: 60px;
  right: 0;
  z-index: -5;
}
@media only screen and (max-width: 800px) {
  .fv .fv-img .square {
    width: 70vw;
    height: 100vh;
  }
}
.fv .fv-img .copy {
  letter-spacing: 10px;
  font-family: "Shippori Mincho", serif;
  font-weight: 400;
  font-style: normal;
  color: #fff;
  font-size: 60px;
  position: absolute;
  top: 40vh;
  left: 5vw;
}
.fv .fv-img .copy span {
  font-size: 40px;
}
@media only screen and (max-width: 800px) {
  .fv .fv-img .copy span {
    font-size: 20px;
  }
}
@media only screen and (max-width: 800px) {
  .fv .fv-img .copy {
    font-size: 36px;
    text-align: center;
    width: 90vw;
    top: 30vh;
    left: calc(50% - 45vw);
  }
}
.fv .fv-img .sub-copy {
  color: #fff;
  font-size: 30px;
  letter-spacing: initial;
  position: relative;
  left: 100px;
}
@media only screen and (max-width: 800px) {
  .fv .fv-img .sub-copy {
    font-size: 14px;
    width: 320px;
    top: 50px;
    left: calc(50% - 160px);
  }
}
.fv .fv-img .sub-copy::before {
  content: "";
  width: 100px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 55%;
  left: -110px;
}
@media only screen and (max-width: 800px) {
  .fv .fv-img .sub-copy::before {
    display: none;
    position: initial;
  }
}
.fv .scroll-down {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  text-align: center;
  color: #FFD700;
  font-size: 14px;
  z-index: 999;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
  /* SCROLL テキスト */
  /* 矢印 */
  /* スクロールしたら消える */
}
.fv .scroll-down span {
  display: block;
  margin-bottom: 5px;
  font-size: 20px;
  letter-spacing: 2px;
  animation: fadeInOut 2s infinite;
  font-family: "Bebas Neue", serif;
  font-weight: 400;
  font-style: normal;
}
.fv .scroll-down .arrow {
  width: 20px;
  height: 20px;
  border-left: 2px solid #FFD700;
  border-bottom: 2px solid #FFD700;
  transform: rotate(-45deg);
  margin: 0 auto;
  animation: bounce 1.5s infinite;
}
.fv .scroll-down.hide {
  opacity: 0;
  pointer-events: none;
}
@keyframes bounce {
  0%, 100% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(10px) rotate(-45deg);
  }
}
@keyframes fadeInOut {
  0%, 100% {
    opacity: 0.5;
  }
  50% {
    opacity: 1;
  }
}

.action {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.action .container {
  background: #EAEAE4;
  width: 500px;
  padding: 50px;
}
@media only screen and (max-width: 800px) {
  .action .container {
    padding: 30px;
  }
}
.action .container .txt {
  color: #474646;
  font-size: 20px;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .action .container .txt {
    font-size: 16px;
  }
}
.action .container .tel-btn,
.action .container .form-btn {
  width: 200px;
  height: 50px;
  margin: 30px auto;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  color: #474646;
  background: rgba(255, 215, 0, 0.6);
}
.action .container .tel-btn a,
.action .container .form-btn a {
  text-decoration: none;
  color: #474646;
  font-family: "Noto Sans JP", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: 20px;
}

.about {
  margin-bottom: 300px;
}
@media only screen and (max-width: 800px) {
  .about {
    margin-bottom: 100px;
  }
}
.about .container {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 800px) {
  .about .container {
    display: block;
  }
}
.about .container .text {
  width: 500px;
  padding: 4%;
  line-height: 2rem;
  margin: 50px;
  background: #fff;
}
.about .container .text span {
  font-weight: bold;
}
@media only screen and (max-width: 800px) {
  .about .container .text {
    width: 90vw;
    margin: 50px auto;
  }
  .about .container .text span {
    font-size: 20px;
  }
}
.about .container .text .to-company {
  width: 200px;
  height: 50px;
  margin: 20px auto;
  background: #EAEAE4;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}
.about .container .text .to-company a {
  width: 200px;
  height: 50px;
  text-decoration: none;
  color: #474646;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about .container .box_image {
  margin-top: 100px;
  transform: translate(-150px, 200px);
  position: relative;
  z-index: -5;
}
@media only screen and (max-width: 800px) {
  .about .container .box_image {
    margin: 40px auto;
    text-align: center;
    transform: translate(0);
  }
}
.about .container .box_image img {
  width: 600px;
}
@media only screen and (max-width: 800px) {
  .about .container .box_image img {
    width: 90vw;
  }
}

.works p {
  text-align: center;
  margin-top: 200px;
}
@media only screen and (max-width: 800px) {
  .works p {
    margin-top: 50px;
  }
}
.works .parent {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 50px;
  grid-row-gap: 100px;
  width: 100vw;
  height: 100%;
}
@media only screen and (max-width: 1200px) {
  .works .parent {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media only screen and (max-width: 800px) {
  .works .parent {
    display: block;
  }
}
.works .parent .image-container {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.works .parent .image-container img {
  display: block;
  width: 490px; /* 画像サイズ */
  height: auto;
  transition: opacity 0.3s ease-in-out;
}
@media only screen and (max-width: 800px) {
  .works .parent .image-container img {
    width: 90vw;
  }
}
.works .parent .image-container .hover-img {
  position: absolute;
  top: 0px;
  opacity: 0;
}
.works .parent .image-container:hover .hover-img {
  opacity: 1;
}
.works .parent .image-container p {
  text-align: center;
  margin-top: 0px !important;
}

.qa .faq-box {
  width: 80vw;
  margin: 30px auto;
}
@media only screen and (max-width: 800px) {
  .qa .faq-box {
    width: 95vw;
  }
}
.qa .faq-box .faq-header {
  font-size: 42px;
  border-bottom: 1px dotted #ccc;
  padding: 24px;
}
@media only screen and (max-width: 800px) {
  .qa .faq-box .faq-header {
    font-size: 25px;
  }
}
.qa .faq-box .faq-content {
  margin: 0 auto;
  width: 80vw;
}
@media only screen and (max-width: 800px) {
  .qa .faq-box .faq-content {
    width: 95vw;
  }
}
.qa .faq-box .faq-question {
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
}
.qa .faq-box .panel-title {
  font-size: 24px;
  width: 100%;
  position: relative;
  margin: 0;
  padding: 10px 10px 0 48px;
  display: block;
  cursor: pointer;
}
@media only screen and (max-width: 800px) {
  .qa .faq-box .panel-title {
    font-size: 18px;
    width: 80vw;
  }
}
.qa .faq-box .panel-content {
  font-size: 18px;
  padding: 0px 14px;
  margin: 0 40px;
  height: 0;
  overflow: hidden;
  z-index: -1;
  position: relative;
  opacity: 0;
  transition: 0.4s ease;
}
@media only screen and (max-width: 800px) {
  .qa .faq-box .panel-content {
    font-size: 15px;
    margin: 0 auto;
    width: 95vw;
  }
}
.qa .faq-box .panel:checked ~ .panel-content {
  height: auto;
  opacity: 1;
  padding: 14px;
}
@media only screen and (max-width: 800px) {
  .qa .faq-box .panel:checked ~ .panel-content {
    padding: 10px 0;
  }
}
.qa .faq-box .plus {
  position: absolute;
  margin-left: 20px;
  margin-top: 4px;
  z-index: 5;
  font-size: 42px;
  line-height: 100%;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  transition: 0.2s ease;
}
.qa .faq-box .panel:checked ~ .plus {
  transform: rotate(45deg);
}
.qa .faq-box .panel {
  display: none;
}

.form .container {
  width: 80vw;
  margin: 100px auto;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .form .container .txt {
    font-size: 15px;
  }
}
.form .container .form-txt {
  width: 600px;
  height: 50px;
  margin: 20px auto;
  display: block;
}
@media only screen and (max-width: 800px) {
  .form .container .form-txt {
    width: 70vw;
    margin: 0 auto;
  }
}
.form .container .form-txt span {
  color: red;
  font-size: 12px;
}
.form .container .checkbox {
  width: 600px;
  margin: 10px auto;
  text-align: center;
}
@media only screen and (max-width: 800px) {
  .form .container .checkbox {
    width: 80vw;
  }
}
.form .container .txtarea {
  width: 600px;
  height: 300px;
  display: block;
  margin: 10px auto;
}
@media only screen and (max-width: 800px) {
  .form .container .txtarea {
    width: 80vw;
  }
}
.form .container .submit-btn {
  width: 200px;
  height: 50px;
  display: block;
  margin: 10px auto;
  background: linear-gradient(to bottom, #00CCCC, #0099CC, #006699);
  border: none;
  color: #fff;
  box-shadow: 2px 2px 4px gray;
}
.form .container .submit-btn:active {
  transform: translate(2px 2px);
  box-shadow: none;
}

.sp-action {
  display: none;
}
@media only screen and (max-width: 800px) {
  .sp-action {
    display: flex;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  .sp-action .content {
    position: fixed;
    bottom: 0;
    left: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
    height: 50px;
    z-index: 99999;
  }
  .sp-action .content .tel, .sp-action .content .form {
    width: 50vw;
    border: 1px solid #474646;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    font-weight: bold;
    font-family: "Noto Sans JP", serif;
    font-optical-sizing: auto;
    font-style: normal;
  }
  .sp-action .content .tel a, .sp-action .content .form a {
    text-decoration: none;
    color: #474646;
  }
}
.sp-action.visible {
  opacity: 1;
  visibility: visible;
}

.company-info {
  max-width: 800px;
  margin: 50px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.company-info h2 {
  font-size: 24px;
  text-align: center;
  margin-bottom: 20px;
  font-weight: bold;
}

.company-table {
  width: 100%;
  border-collapse: collapse;
}
.company-table th, .company-table td {
  padding: 12px;
  border-bottom: 1px solid #ddd;
}
.company-table th {
  background: #EAEAE4;
  text-align: left;
  width: 30%;
  font-weight: bold;
}
.company-table td {
  width: 70%;
}
.company-table a {
  color: linear-gradient(to bottom, #00CCCC, #0099CC, #006699);
  text-decoration: none;
  transition: color 0.3s;
}
.company-table a:hover {
  color: #0056b3;
}/*# sourceMappingURL=style.css.map */