@charset "utf-8";

:root {
  --main-color: #fefbf6;
  --sub-color: #23160b;
}

:root {
  --content-width-sm: 800px;
  --content-width: 960px;
  --content-width-lg: 1088px;
}

body {
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: normal;
  background: var(--main-color);
  font-family: "KoHo", sans-serif;
}

.l_container-sm,
.l_container,
.l_container-lg {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}

.l_container-sm {
  max-width: calc(var(--content-width-sm) + 32px);
}

.l_container {
  max-width: calc(var(--content-width) + 32px);
}

.l_container-lg {
  max-width: calc(var(--content-width-lg) + 32px);
}

.l_contents {
  padding: 80px 0;
}

@media screen and (min-width: 1080px) {
  .l_contents {
    padding: 120px 0;
  }
}

/* header */
.l_header {
  background: var(--sub-color);
  height: 64px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: end;
  position: fixed;
  top: 0;
  padding: 0 16px;
  z-index: 200;
}

@media screen and (max-width: 1080px) {
  .l_header {
    background: transparent;
  }
}

@media screen and (min-width: 1080px) {
  .l_header {
    position: sticky;
  }
}

@media screen and (max-width: 1080px) {
  .l_header_nav {
    display: none;
  }
}

.l_header_nav_list {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  height: 100%;
}

@media screen and (max-width: 1080px) {
  .l_header_nav_list {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 24px;
  }
}

.l_header_nav_item {
  color: var(--main-color);
  font-weight: bold;
}

.l_header_nav_item:hover {
  transform: scale(1.2);
}

.l_header_nav_link {
  display: flex;
  height: 100%;
  align-items: center;
}

.m_hamburger {
  width: 32px;
  height: 19px;
  display: flex;
  position: relative;
}

@media screen and (min-width: 1080px) {
  .m_hamburger {
    display: none;
  }
}

.m_hamburger_bar {
  position: absolute;
  background: var(--sub-color);
  width: 100%;
  height: 1px;
}

.m_hamburger_bar:nth-child(1) {
  top: 0;
}

.m_hamburger_bar:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}

.m_hamburger_bar:nth-child(3) {
  top: 100%;
  transform: translateY(-100%);
}

/* top_kv */
.top_kv {
  height: 100vh;
  position: relative;
  background: url(../img/top_kv.jpg) center / 130% no-repeat;
}

@media screen and (min-width: 1080px) {
  .top_kv {
    background: url(../img/top_kv.jpg) center / 50% no-repeat;
  }
}

.top_kv::after {
  content: "";
  position: fixed;
  width: 64px;
  height: 100vh;
  background: var(--sub-color);
  top: 0;
  left: 0;
  z-index: 150;
}

@media screen and (max-width: 1080px) {
  .top_kv::after {
    display: none;
  }
}

.top_kv::before {
  content: "";
  position: fixed;
  width: 64px;
  height: 100vh;
  background: var(--sub-color);
  top: 0;
  right: 0;
  z-index: 150;
}

@media screen and (max-width: 1080px) {
  .top_kv::before {
    display: none;
  }
}

.top_kv_inner {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.top_kv_ttl-wrapper {
  position: absolute;
  top: 35%;
  -webkit-animation: top_kv_ttl-wrapper 120s linear infinite;
  animation: top_kv_ttl-wrapper 120s linear infinite;
  z-index: 100;
}

.top_kv_ttl-wrapper__loop {
  display: flex;
  gap: 56px;
}

@keyframes top_kv_ttl-wrapper {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.top_kv_ttl {
  font-weight: bold;
  font-size: 56px;
  white-space: nowrap;
}

@media screen and (min-width: 768px) {
  .top_kv_ttl {
    font-size: 72px;
  }
}

.top_kv_ttl.top_kv_ttl__sub {
  color: transparent;
  -webkit-text-stroke: 1px var(--sub-color);
}

/* section_ttl */
.top_section_ttl {
  text-align: center;
  font-size: 48px;
  font-weight: bold;
  color: var(--sub-color);
}

@media screen and (min-width: 1080px) {
  .top_section_ttl {
    font-size: 72px;
  }
}

/* top_service */
.top_service {
  position: relative;
  z-index: 0;
}

.top_service_list-wrapper {
  margin-top: 64px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  overflow: hidden;
}

.top_service_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.top_service_item {
  width: 343px;
  height: 343px;
  padding: 8px;
  background: transparent;
  border: 1px solid var(--sub-color);
}

.top_service_item:not(:first-child) {
  margin-left: 40px;
}

.top_service_contents-wrapper {
  padding: 16px 8px;
  background: var(--sub-color);
  height: 327px;
}

.top_service_desc-wrapper {
  text-align: center;
  border-bottom: 1px solid var(--main-color);
  padding-bottom: 24px;
}

.top_service_desc_num {
  font-size: 32px;
  font-weight: bold;
  color: var(--main-color);
}

.top_service_desc {
  font-size: 24px;
  font-weight: bold;
  color: var(--main-color);
}

.top_service_txt-wrapper {
  margin-top: 24px;
}

.top_service_txt {
  color: var(--main-color);
}

.top_service_comment {
  text-align: end;
  margin-top: 64px;
  font-size: 20px;
  color: var(--sub-color);
}

@media screen and (min-width: 1080px) {
  .top_service_comment {
    margin-top: 80px;
    font-size: 36px;
  }
}

.top_service_img_wrapper01 {
  position: absolute;
  top: 5%;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (min-width: 1080px) {
  .top_service_img_wrapper01 {
    width: 400px;
    height: 350px;
    top: 0;
  }
}

.top_service_img_wrapper02 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 200px;
  height: 200px;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (min-width: 1080px) {
  .top_service_img_wrapper02 {
    width: 400px;
    height: 350px;
  }
}
.top_service_img {
  object-fit: cover;
  height: 100%;
}

/* top_skill */
.top_skill {
  position: relative;
  z-index: 0;
}

.top_skill_list-wrapper {
  overflow: hidden;
  margin-top: 64px;
  position: relative;
  height: 431px;
}

@media screen and (min-width: 1080px) {
  .top_skill_list-wrapper {
    height: 447px;
  }
}

.top_slill_list {
  display: flex;
  flex-shrink: 0;
}

.top_skill_item {
  width: 343px !important;
  height: 361px !important;
  background: transparent;
  border: 2px solid var(--sub-color);
  border-radius: 2000px;
  padding: 16px;
}

.top_skill_contents-wrapper {
  width: 238px;
  margin: 0 auto;
}

.top_skill_item_img-wrapper {
  width: 138px;
  height: 146px;
  margin: 0 auto;
}

.top_skill_txt-wrapper {
  margin: 16px auto;
}

.top_skill_desc {
  font-size: 24px;
  color: var(--sub-color);
  font-weight: bold;
  text-align: center;
}

.top_skill_txt {
  font-size: 14px;
  line-height: 1.5;
  text-align: center;
  margin-top: 8px;
}

.top_skill_nav {
  position: absolute;
  top: 96%;
  width: 48px;
  height: 48px;
}

@media screen and (min-width: 1080px) {
  .top_skill_nav {
    width: 64px;
    height: 64px;
    top: 93%;
  }
}

.top_skill_nav__prev::after {
  content: "";
  background: url(../img/skill_prev.png) center / cover;
  width: 100%;
  height: 100%;
}

.top_skill_nav__next::after {
  content: "";
  background: url(../img/skill_next.png) center / cover;
  width: 100%;
  height: 100%;
}

.top_skill_nav__prev {
  left: auto;
  right: calc(50% + 106px);
}

.top_skill_nav__next {
  right: auto;
  left: calc(50% + 106px);
}

.top_skill_img-wrapper01 {
  position: absolute;
  top: 10%;
  right: 0;
  width: 200px;
  height: 200px;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (min-width: 1080px) {
  .top_skill_img-wrapper01 {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    height: 400px;
    z-index: -1;
    opacity: 0.5;
  }
}

.top_skill_img-wrapper02 {
  position: absolute;
  bottom: 0;
  left: -5%;
  width: 200px;
  height: 200px;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (min-width: 1080px) {
  .top_skill_img-wrapper02 {
    position: absolute;
    bottom: 0;
    left: -5%;
    width: 400px;
    height: 400px;
    z-index: -1;
    opacity: 0.5;
  }
}

/* top_case */
.top_case {
  position: relative;
  z-index: 0;
  width: 100%;
}

.top_case_list-wrapper {
  margin-top: 64px;
}

.top_case_item:nth-child(2) {
  margin-top: 40px;
}

@media screen and (max-width: 768px) {
  .top_case_item {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

@media screen and (min-width: 768px) {
  .top_case_item {
    display: flex;
    gap: 48px;
  }
}

@media screen and (min-width: 1080px) {
  .top_case_item:nth-child(2) {
    flex-flow: row-reverse;
  }
}

.top_case_link_img-wrapper {
  width: 343px;
  height: 250px;
  margin: 0 auto;
}

.top_case_link_img-wrapper:hover {
  transform: scale(1.1);
}

@media screen and (min-width: 768px) {
  .top_case_link_img-wrapper {
    width: 50%;
    height: 342px;
  }
}

.top_case_link_img {
  object-fit: cover;
  height: 100%;
}

.top_case_link_desc-wrapper {
  margin-top: 40px;
  width: 343px;
}

@media screen and (min-width: 1080px) {
  .top_case_link_desc-wrapper{
    width: 50%;
    height: 508px;
  }
}

.top_case_link {
  display: block;
  height: 100%;
}

.top_case_txt{
  font-size: 16px;
}

.top_case_desc:nth-child(2){
  margin-top: 24px;
}

.top_case_img-wrapper01 {
  position: absolute;
  top: 3%;
  right: 70%;
  width: 100px;
  height: 100px;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (min-width: 1080px) {
  .top_case_img-wrapper01 {
    width: 215px;
    height: 215px;
    top: 5%;
  }
}

.top_case_img-wrapper02 {
  position: absolute;
  top: 3%;
  left: 70%;
  width: 100px;
  height: 100px;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (min-width: 1080px) {
  .top_case_img-wrapper02 {
    width: 215px;
    height: 215px;
    top: 5%;
  }
}

.top_case_img-wrapper03 {
  position: absolute;
  top: 22%;
  right: 15%;
  width: 417px;
  height: 254px;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (max-width: 1080px) {
  .top_case_img-wrapper03 {
    display: none;
  }
}

.top_case_img-wrapper04 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 330px;
  height: 343px;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (max-width: 1080px) {
  .top_case_img-wrapper04 {
    display: none;
  }
}

/* top_about */
.top_about {
  position: relative;
  z-index: 0;
}

.top_about_contents-wrapper {
  margin-top: 64px;
}

@media screen and (min-width: 1080px) {
  .top_about_contents-wrapper {
    display: flex;
    justify-content: center;
    gap: 72px;
  }
}

.top_about_contents_img-wrapper {
  width: 343px;
  height: 343px;
  border: 1px solid var(--sub-color);
  margin: auto;
  border-radius: 400px;
}

/* @media screen and (min-width: 1080px) {
  .top_about_contents_img-wrapper {
    width: 508px;
    height: 532px;
  }
} */

.top_about_contents_img {
  height: 100%;
  object-fit: cover;
  border-radius: 300px;
}

.top_about_txt-wrapper {
  margin: 40px auto 0;
  padding: 8px;
  background: transparent;
  width: 343px;
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1080px) {
  .top_about_txt-wrapper {
    margin-top: 0;
    width: 60%;
  }
}

.top_about_txt {
  color: var(--sub-color);
  padding: 8px;
  line-height: 2;
  height: 100%;
}

.top_about_img-wrapper01 {
  position: absolute;
  top: 5%;
  right: 63%;
  width: 120px;
  height: 120px;
  z-index: -1;
}

@media screen and (min-width: 1080px) {
  .top_about_img-wrapper01 {
    width: 200px;
    height: 200px;
  }
}

.top_about_img-wrapper02 {
  position: absolute;
  top: 5%;
  left: 63%;
  width: 120px;
  height: 120px;
  z-index: -1;
}

@media screen and (min-width: 1080px) {
  .top_about_img-wrapper02 {
    position: absolute;
    width: 200px;
    height: 200px;
  }
}

/* top_contact */
.top_contact {
  position: relative;
  z-index: 0;
}

.wpcf7-form {
  width: 343px;
  margin: 64px auto 0;
}

@media screen and (min-width: 768px) {
  .wpcf7-form {
    width: 640px;
    margin: 64px auto 0;
  }
}

.contact_form_heading {
  font-size: 20px;
  font-weight: bold;
}

.contact_form_heading:not(:first-child) {
  margin-top: 40px;
}

.contact_form_detail {
  border: 1px solid var(--sub-color);
  margin-top: 16px;
  width: 343px;
  height: 60px;
}

@media screen and (min-width: 768px) {
  .contact_form_detail {
    width: 640px;
  }
}

.contact_form_detail_textarea {
  height: 324px;
  width: 343px;
}

@media screen and (min-width: 768px) {
  .contact_form_detail_textarea {
    width: 640px;
    height: 329px;
  }
}

.wpcf7 input[type="text"] {
  width: 343px;
  height: 60px;
  padding: 8px;
  outline: none;
  background: transparent;
}

@media screen and (min-width: 768px) {
  .wpcf7 input[type="text"] {
    width: 640px;
  }
}

.wpcf7 input[type="tel"] {
  width: 343px;
  height: 60px;
  padding: 8px;
  outline: none;
  background: transparent;
}

@media screen and (min-width: 768px) {
  .wpcf7 input[type="tel"] {
    width: 640px;
  }
}

.wpcf7 input[type="email"] {
  width: 343px;
  height: 60px;
  padding: 8px;
  outline: none;
  background: transparent;
}

@media screen and (min-width: 768px) {
  .wpcf7 input[type="email"] {
    width: 640px;
  }
}

.wpcf7 textarea {
  height: 324px;
  width: 343px;
  padding: 8px;
  outline: none;
  background: transparent;
}

@media screen and (min-width: 768px) {
  .wpcf7 textarea {
    width: 640px;
    height: 329px;
  }
}

.wpcf7 input[type="submit"] {
  margin: 40px auto 0;
  width: 343px;
  height: 72px;
  border: 1px solid var(--sub-color);
  display: flex;
  justify-content: center;
  align-items: center;
}

.conatct_form_btn {
  width: 100%;
  height: 100%;
}

.contact_form_btn_input {
  height: 100%;
  width: 100%;
  font-size: 32px;
  color: var(--sub-color);
  font-weight: bold;
  display: inline-block;
}

.top_contact_img-wrapper01 {
  position: absolute;
  top: 3% !important;
  left: 0 !important;
  width: 140px;
  height: 140px;
  transform: rotate(15deg);
  opacity: 0.5;
  z-index: -1;
}

@media screen and (min-width: 1080px) {
  .top_contact_img-wrapper01 {
    top: 3% !important;
    left: 3% !important;
    width: 300px;
    height: 300px;
  }
}

.top_contact_img-wrapper02 {
  position: absolute;
  top: 11% !important;
  right: 3% !important;
  width: 115px;
  height: 125px;
  opacity: 0.5;
  z-index: -1;
}

@media screen and (min-width: 1080px) {
  .top_contact_img-wrapper02 {
    top: 8% !important;
    right: 3% !important;
    width: 225px;
    height: 239px;
  }
}

.top_contact_img-wrapper03 {
  position: absolute;
  top: 50% !important;
  left: -5% !important;
  width: 170px;
  height: 165px;
  opacity: 0.5;
  z-index: -1;
}

@media screen and (min-width: 1080px) {
  .top_contact_img-wrapper03 {
    top: 55% !important;
    left: 10% !important;
    width: 242px;
    height: 256px;
  }
}

.top_contact_img-wrapper04 {
  position: absolute;
  top: 38% !important;
  right: 0 !important;
  width: 115px;
  height: 145px;
  opacity: 0.5;
  z-index: -1;
}

@media screen and (min-width: 1080px) {
  .top_contact_img-wrapper04 {
    top: 40% !important;
    right: 6% !important;
    width: 272px;
    height: 257px;
  }
}

.top_contact_img-wrapper05 {
  position: absolute;
  bottom: 3% !important;
  left: 50% !important;
  transform: translateX(-30%);
  width: 200px;
  height: 125px;
  opacity: 0.5;
  z-index: -1;
}

@media screen and (min-width: 768px) {
  .top_contact_img-wrapper05 {
    bottom: 5% !important;
  }
}
/* footer */
.l_footer {
  padding-bottom: 24px;
  position: relative;
  z-index: 0;
}

@media screen and (min-width: 1080px) {
  .l_footer {
    padding-bottom: 88px;
  }
}

@media screen and (min-width: 1080px) {
  .l_footer::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 64px;
    background: var(--sub-color);
    bottom: 0;
    left: 0;
  }
}

.l_footer_contents-wrapper {
  display: flex;
  justify-content: space-between;
}

@media screen and (min-width: 768px) {
  .l_footer_contents-wrapper {
    flex-direction: column;
  }
}

.l_footer_nav_list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

@media screen and (min-width: 768px) {
  .l_footer_nav_list {
    display: flex;
    flex-direction: row;
  }
}

.l_footer_nav_item {
  font-weight: bold;
  color: var(--sub-color);
}

.l_footer_nav_item:hover {
  transform: scale(1.2);
}

.l_footer_link {
  display: flex;
  height: 100%;
  align-items: center;
}

.l_footer_img_contents-wrapper {
  display: flex;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .l_footer_img_contents-wrapper {
    margin-top: 40px;
    flex-direction: row;
  }
}

.l_footer_img-wrapper {
  width: 212px;
  height: 148px;
  border: 1px solid var(--sub-color);
}

@media screen and (min-width: 768px) {
  .l_footer_img-wrapper {
    width: 425px;
    height: 296px;
  }
}

.l_footer_img {
  object-fit: cover;
  height: 100%;
}

.l_footer_instagram_link-wrapper:hover {
  transform: scale(1.2);
}

.l_footer_x_link-wrapper:hover {
  transform: scale(1.2);
}

.l_footer_instagram_link-wrapper {
  width: 40px;
  height: 40px;
}

.l_footer_x_link-wrapper {
  width: 40px;
  height: 40px;
}

.l_footer_instagram_link {
  width: 100%;
  height: 100%;
}

.l_footer_x_link {
  width: 100%;
  height: 100%;
}

.l_footer_logo_link-wrapper {
  display: flex;
  gap: 32px;
  margin-top: 40px;
}

@media screen and (min-width: 768px) {
  .l_footer_logo_link-wrapper {
    margin-top: 0;
    align-items: end;
    margin-left: 40px;
  }
}

.l_footer_copyright {
  text-align: center;
}

.l_footer_copy {
  font-size: 14px;
  color: var(--sub-color);
}

.l_footer_logo_img {
  object-fit: cover;
  height: 100%;
}

.l_footer_img-wrapper01 {
  position: absolute;
  width: 150px;
  height: 150px;
  bottom: 5%;
  right: 10%;
  z-index: -1;
  opacity: 0.5;
}

@media screen and (min-width: 768px) {
  .l_footer_img-wrapper01 {
    position: absolute;
    width: 250px;
    height: 300px;
    bottom: 25%;
    right: 10%;
    z-index: -1;
    opacity: 0.5;
  }
}

/* thanks */
.thanks_contents-wrapper {
  background: var(--main-color);
  position: relative;
  height: 100vh;
}

.thanks_inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}

.thanks_ttl {
  color: var(--sub-color);
  text-align: center;
  font-weight: bold;
  font-size: 32px;
}

@media screen and (min-width: 1080px) {
  .thanks_ttl {
    font-size: 56px;
  }
}

.thanks_txt {
  color: var(--sub-color);
  text-align: center;
  width: 100%;
  margin-top: 40px;
}

.thanks_btn-wrapper {
  width: 343px;
  height: 74px;
  margin: 40px auto 0;
  border: 1px solid var(--sub-color);
}

.thanks_btn {
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--sub-color);
  font-size: 32px;
  font-weight: bold;
  width: 100%;
  height: 100%;
}

/* js */
.js_body.is-active {
  overflow: hidden;
}

.js_nav.is-active {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  height: 100vh;
  width: 100%;
  background-image: linear-gradient(
    to right,
    var(--sub-color) 80%,
    rgba(35, 22, 11, 0.5) 80%
  );
  transition: 0.5s;
}

.js_nav.is-active .l_header_nav_list {
  position: absolute;
  height: 100vh;
  top: 50%;
  left: 10%;
  transform: translateY(-50%);
}

.js_hamburger.is-active .m_hamburger_bar:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.5s;
}

.js_hamburger.is-active .m_hamburger_bar:nth-of-type(2) {
  opacity: 0;
}

.js_hamburger.is-active .m_hamburger_bar:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: 0.5s;
}

/* cursor */
html,
body,
a,
button,
input,
textarea {
  cursor: none;
}

.cursor {
  position: fixed;
  top: -5px;
  left: -5px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--sub-color);
  z-index: 1000;
  transition: width 0.5s, height 0.5s, top 0.5s, left 0.5s;
  transform: translate(0, 0);
  pointer-events: none;
}

@media screen and (max-width: 1080px) {
  .cursor {
    display: none;
  }
}

.cursor.cursor--hover {
  top: -20px;
  left: -20px;
  width: 40px;
  height: 40px;
  background: #87cefa;
  opacity: 0.5;
}
