@charset "utf-8";
/*--------------------------
色設定
---------------------------*/
:root {
  --text-color: #333333;
  --background-color: #ffffff;
  --maincolor: #eee93a;
  --bordercolor: #707070;
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
共通用CSS
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html,
body {
  width: 100%;
  position: relative;
}
html {
  font-size: 62.5%;
  overflow-x: hidden;
}
body {
  color: var(--text-color);
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN,
    "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", YuGothic, "游ゴシック", Meiryo,
    "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  line-height: 1.5;
  word-wrap: break-word;
  font-size: 1.6rem;
  overflow-x: hidden;
}
img {
  width: auto;
  max-width: 100%;
  height: auto;
}
ul {
  -webkit-padding-start: 0px;
  -moz-padding-start: 0px;
  padding-start: 0px;
  padding: 0px;
  margin: 0px;
  list-style-type: none;
}
a {
  text-decoration: none;
  transition: 0.2s;
}
a:hover {
  opacity: 0.7;
}

.flex {
  display: -moz-flex;
  display: -webkit-flex;
  display: flex;
}
.inner {
  width: 100%;
  max-width: 1000px;
  padding: 0 20px;
  margin: 0 auto;
}
.inner02 {
  width: 93%;
  max-width: 1560px;
  padding: 0 20px;
  margin: 0 auto;
}
.inner03 {
  width: 100%;
  max-width: 1140px;
  padding: 0 20px;
  margin: 0 auto;
}
.futura {
  font-family: "futura-pt", sans-serif !important;
}
.page-link {
  margin-top: -58px;
  padding-top: 58px;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 1.5rem;
  }
  .inner02 {
    width: 100%;
  }
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
ふわっとさせる
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
.fadeintext {
  opacity: 0; /* 初期状態では透明（非表示） */
  transform: translateX(-10%); /* 初期位置を左にずらす */
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes slideInFromLeft {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}
.animated-block {
  animation: fadeIn 0.5s ease-in-out, slideInFromLeft 1s ease-in-out;
  animation-fill-mode: forwards;
}

.fadeIn {
  transform: translateY(0px);
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
固定背景/共通見出し
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
.wrap {
  position: relative;
  z-index: 2;
  min-height: 98svh;
}
.bg {
  background-image: url(../img/bg_02.jpg);
  background-repeat: no-repeat;
  background-size: contain;
  background-attachment: fixed;
  background-position: left;
}
.bg::after {
  content: "";
  position: absolute;
  z-index: 1;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: white;
  opacity: 0.7;
}
.commontitle {
  font-size: 4rem;
  font-weight: bold;
  line-height: 1;
}
.sectionblock {
  margin-top: 80px;
}
main {
  padding-bottom: 400px;
}
main.under-page {
  margin: 100px 0 0;
}
@media screen and (max-width: 768px) {
  .bg {
    width: 100%;
    height: 80%;
    top: 0;
    bottom: 0;
    margin: auto;
  }
  .bg {
    background-image: none;
  }
  .bg::before {
    content: "";
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100vh;
    background: url(../img/bg_02.jpg) center no-repeat;
    background-size: 150%;
  }
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
ヘッダー
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
header {
  width: 100%;
  position: fixed;
  z-index: 5;
  top: 0;
}
.header-logo {
  /* width: 75px; */
  margin-left: 15px;
  cursor: pointer;
  width: 43%;
  max-width: 290px;
  display: flex;
  align-items: center;
}
.header-wrap {
  justify-content: space-between;
}
.header-contact a {
  font-size: 1.4rem;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 75px;
  width: 155px;
  background-color: var(--maincolor);
}
@media screen and (max-width: 768px) {
  .header-contact a {
    height: 60px;
    width: 130px;
  }
  .header-logo {
    /* width: 60px; */
  }
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
FV
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/

.fv {
  width: 100%;
  height: 900px;
  height: clamp(500px, 95vh, 969px);
  background: url(../img/bg_01.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fv-wrap {
  align-items: center;
  justify-content: center;
}
.fv-logo {
  width: 45%;
  width: calc(100% - (clamp(10px, 3%, 60px) + clamp(400px, 51.17vw, 805px)));
  margin-right: 3%;
  margin-right: clamp(10px, 3%, 60px);
}
.fv-text {
  width: 60%;
  width: clamp(400px, 51.17vw, 805px);
}
.futura.maincatch {
  font-size: 10rem;
  font-size: clamp(3rem, 6.25vw, 10rem);
  line-height: 1;
}
.subcatch {
  font-size: 2.6rem;
  font-size: clamp(1.4rem, 1.56vw, 2.6rem);
  font-weight: bold;
  margin-top: 3rem;
}
.catch-color {
  color: var(--maincolor);
}
.catch-bg {
  display: inline-block;
  padding: 3px 5px;
  position: relative;
  z-index: 1;
}
.third-text-liner {
  position: relative;
}
.third-text-liner::after {
  content: "";
  position: absolute;
  display: inline-block;
  height: 5px;
  width: 0;
  left: 0;
  bottom: -10px;
  background: rgb(238, 119, 58);
  background: -moz-linear-gradient(
    90deg,
    rgba(238, 119, 58, 1) 0%,
    rgba(238, 233, 58, 1) 100%
  );
  background: -webkit-linear-gradient(
    90deg,
    rgba(238, 119, 58, 1) 0%,
    rgba(238, 233, 58, 1) 100%
  );
  background: linear-gradient(
    90deg,
    rgba(238, 119, 58, 1) 0%,
    rgba(238, 233, 58, 1) 100%
  );
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#ee773a",endColorstr="#eee93a",GradientType=1);
}
.addliner .third-text::after,
.js-kv-played .third-text-liner::after {
  width: 100%;
  transition: width 0.7s cubic-bezier(0.785, 0.135, 0.15, 0.86) 1.2s;
}
/* .catch-bg::before {
    content: "";
    display: block;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    background: var(--maincolor);
    width: 0;
} */
.first-text,
.second-text,
.third-text {
  opacity: 0;
}
.js-kv-played .first-text {
  opacity: 1;
  transition: opacity 0.8s ease-in-out 0.3s;
}
.js-kv-played .second-text {
  opacity: 1;
  transition: opacity 0.8s ease-in-out 0.3s;
}
.js-kv-played .third-text {
  opacity: 1;
  transition: opacity 0.8s ease-in-out 0.8s;
}

@media screen and (max-width: 768px) {
  .fv {
    height: 100vh;
  }
  .fv-wrap {
    display: block;
  }
  .fv-logo {
    width: 100%;
    max-width: 400px;
    margin: 0 auto 6%;
  }
  .fv-text {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }
  .futura.maincatch {
    font-size: clamp(3rem, 10.67vw, 10rem);
  }
  .subcatch {
    font-size: 2rem;
    font-size: clamp(1.4rem, 5.33vw, 2.6rem);
    margin-top: 2rem;
  }
}
@media screen and (max-width: 500px) {
  .fv {
    height: 90svh;
  }
  .fv-logo {
    width: 85%;
  }
}
/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
コンセプト
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
.concept-title {
  font-size: 2rem;
  font-weight: bold;
  margin: 35px 0;
}
.concept-img {
  width: 45%;
  width: calc(100% - (clamp(10px, 3%, 50px) + clamp(200px, 51.17vw, 510px)));
  margin-left: 1%;
  margin-left: clamp(10px, 3%, 50px);
  margin-top: 85px;
}
.concept-text {
  width: 50%;
  width: clamp(200px, 51.17vw, 510px);
}
.concept-textblock p {
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .concept-wrap {
    display: block;
  }
  .concept-text {
    width: 100%;
  }
  .concept-img {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
  }
  .concept-title {
    margin: 25px 0;
    font-size: 1.7rem;
    font-size: clamp(1.6rem, 4.53vw, 2rem);
  }
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
サービス
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
.service-title {
  margin-bottom: 60px;
}
.service-topic {
  width: 65%;
  width: clamp(50%, 75vw, 1280px);
  height: 420px;
  position: relative;
  margin-bottom: 80px;
}
.service-topic-text {
  background-color: #fff;
  max-width: 460px;
  padding: 30px 50px;
  box-shadow: 0px 0px 10px 0px rgba(77, 77, 77, 0.3);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(77, 77, 77, 0.3);
  -moz-box-shadow: 0px 0px 10px 0px rgba(77, 77, 77, 0.3);
  position: absolute;
  right: -25%;
  margin: auto;
  top: 60px;
}
.topic01 {
  background: url(../img/service_01.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.topic02 {
  background: url(../img/service_02.jpg) no-repeat;
  background-position: right center;
  background-size: cover;
}
.topic03 {
  background: url(../img/service_03.jpg) no-repeat;
  background-position: center;
  background-size: cover;
}
.service-topic.reverse {
  margin-left: auto;
}
.service-topic.reverse .service-topic-text {
  left: -25%;
  right: auto;
}
.service-topic-text-title {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 2rem;
}
.service-topic-text-subtitle {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 2rem;
}
.service-topic-maintext {
  font-size: 1.4rem;
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .service-topic {
    width: 100%;
    height: 300px;
    margin-bottom: 55%;
    margin-bottom: calc(200px + 10%);
  }
  .service-topic-text {
    width: 90%;
    left: 0;
    right: 0;
    margin: auto;
    padding: 20px;
    top: 50%;
  }
  .service-topic.reverse .service-topic-text {
    left: 0;
    right: 0;
  }
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
問合せ
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.contact {
  margin-top: 100px;
}
.contacttitle {
  text-align: center;
  margin-bottom: 90px;
}
.contact-notetext {
  border-bottom: 1px solid var(--bordercolor);
  padding-bottom: 4rem;
  margin-bottom: 3rem;
}
.contactform {
  width: 100%;
}
.contactform input[type="text"],
.contactform input[type="email"],
.contactform input[type="tel"],
.contactform textarea {
  width: 100%;
  height: 54px;
  background-color: #f1f1f1;
  border: 1px solid var(--bordercolor);
  border-radius: 7px;
  padding: 5px 20px;
}
.contactform textarea {
  height: 300px;
  padding: 20px;
}
.formtopic {
  margin-bottom: 25px;
}
.fromtitle {
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 10px;
}
.hissu {
  background-color: #c70505;
  color: #fff;
  font-size: 1.2rem;
  padding: 3px 7px;
  margin-left: 10px;
  display: inline-block;
}
.btncheck {
  background-color: var(--maincolor);
  color: var(--text-color);
  padding: 30px 30px;
  font-family: Hiragino Sans, "ヒラギノ角ゴシック", Hiragino Kaku Gothic ProN,
    "ヒラギノ角ゴ ProN W3", Roboto, "Droid Sans", YuGothic, "游ゴシック", Meiryo,
    "メイリオ", Verdana, "ＭＳ Ｐゴシック", sans-serif;
  font-weight: bold;
  transition: 0.3s;
  opacity: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
}
.btncheck img {
  width: 24px;
  margin-left: 10px;
}
.btncheck:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.privacy-policy {
  margin-top: 30px;
  margin-bottom: 70px;
}
.policy-inner {
  border: 1px solid var(--bordercolor);
  border-radius: 7px;
  width: 100%;
  height: 300px;
  background-color: #fff;
  overflow-y: scroll;
  padding: 30px;
}
.policy-topic {
  margin-bottom: 50px;
}
.policy-maintitle {
  font-size: 1.8rem;
  margin-bottom: 30px;
}
.policy-subtitle {
  margin-bottom: 10px;
}
.policy-topic p {
  line-height: 2;
}
.guest-recaptcha-wrap {
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 300px;
  }
  .btncheck {
    padding: 25px 25px;
  }
}
@media screen and (max-width: 500px) {
  .btncheck {
    padding: 25px 22px;
  }
}
@media screen and (max-width: 330px) {
  .btncheck {
    padding: 25px 10px;
    font-size: 1.4rem;
  }
  .btncheck img {
    width: 20px;
  }
}
/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
フッター
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
footer {
  /* margin-top: 100px; */
  position: absolute;
  width: 100%;
  bottom: 0;
}
.footer-logo {
  max-width: 170px;
  margin: 0 auto 50px;
}
.footer-wrap .flex {
  justify-content: space-between;
  padding: 0 20px 30px;
  font-size: 1.4rem;
  color: #999999;
}
.footer-operation a {
  position: relative;
}
.footer-operation a::after {
  content: "";
  background: url(../img/external-link.png) no-repeat;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 6px;
}

/* /_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_
デバイスごと
/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_/_*/
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }

  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
.footer-sns {
  text-align: center;
}
.footer-sns img {
  width: 35px;
  height: auto;
}
