@charset "UTF-8";
/*
Theme Name: SANDROOM
Theme URL: 
Description: 
Author: Kazuto Nishizawa
Version: 2025.02.06_2
Tags: 
License: 
License URI: 
*/
/* 変数 */
/* main */
/*=======================================================

								サイト全体共通CSSフォーマット

*=======================================================*/
/*--------------- SCSSでメディアクエリを設定 ---------------*/
/*主にiPhoneSE用：最も狭くなる場合*/
/*=======================================================

								アニメーション

*=======================================================*/
@keyframes fade_in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade_out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/*--------------- Custom Rest ---------------*/
a {
  text-decoration: none;
  color: #000;
}

html {
  font-size: 62.5%;
  /* 16px x 0.625 = 10px(=1rem) */
  scroll-behavior: smooth; /*ページ内リンクをスムーズスクロールで行う*/
}

body {
  font-size: 1.4rem; /* 14px */
  line-height: 1.7;
  font-family: "Zilla Slab", "BIZ UDPMincho", "Helvetica Neue", "Helvetica", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "BIZ UDPGothic", "Meiryo", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt" 1;
  background: #FFFFFF;
  color: #000;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) {
  ::i-block-chrome,
  body {
    font-feature-settings: "pkna";
  }
}
/*=======================================================

			Header Nav

*=======================================================*/
header {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: sticky;
  top: 0;
  background: #FFFFFF;
  z-index: 100;
}
@media only screen and (max-width: 560px) {
  header {
    height: 50px;
  }
}
header .nav_pc {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: start;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px;
  list-style-type: none;
  width: 100vw;
}
@media only screen and (max-width: 560px) {
  header .nav_pc {
    justify-content: center;
  }
}
header .nav_pc .left {
  margin-left: 30px;
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 560px) {
  header .nav_pc .left {
    margin-left: 0px;
  }
}
header .nav_pc .center {
  display: flex;
  flex-flow: row nowrap;
  gap: 30px;
  margin-left: 50px;
  font-size: 1.6rem;
  font-weight: 500;
}
@media only screen and (max-width: 560px) {
  header .nav_pc .center {
    display: none;
  }
}

/*=======================================================

						nav_floating

*=======================================================*/
.dimmer_nav {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  display: none;
  transition: all 0.2s linear;
  z-index: 200;
}

.dimmer_nav.show {
  display: block;
  animation: fade_in 0.2s linear 0s;
}

.nav_floating {
  position: fixed;
  top: 0;
  right: 0;
  display: none;
  z-index: 210;
}
@media only screen and (max-width: 560px) {
  .nav_floating {
    display: block;
  }
}
.nav_floating .icon_menu {
  position: absolute;
  top: 0;
  right: 0;
}
.nav_floating .icon_close_nav {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
}
.nav_floating .floating_expanded {
  position: absolute;
  top: 0;
  right: -220px;
  width: 220px;
  height: 100vh;
  background: #FFFFFF;
  box-shadow: 0px 0px 15px 0px rgba(0, 0, 0, 0.1);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.nav_floating .floating_expanded .top {
  padding: 80px 0 0 20px;
}
.nav_floating .floating_expanded .top a {
  font-size: 2.4rem;
}
.nav_floating .floating_expanded .center {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 0 0 20px;
}
.nav_floating .floating_expanded .center a {
  font-size: 1.8rem;
}

.nav_floating.show .icon_menu {
  display: none;
}
.nav_floating.show .icon_close_nav {
  display: block;
}
.nav_floating.show .floating_expanded {
  right: 0px;
}

/*=======================================================

			Footer

*=======================================================*/
footer {
  padding-top: 100px;
}
footer .nav_footer {
  display: flex;
  flex-flow: row;
  margin: 0 auto;
  width: -moz-fit-content;
  width: fit-content;
}
footer .nav_footer a {
  margin: 0 20px;
  color: #73798C;
}
footer .copyright {
  margin-top: 30px;
  font-size: 1.2rem;
  text-align: center;
  color: #73798C;
  margin-bottom: 10px;
}

/*=======================================================

			Section共通

*=======================================================*/
.section_primary {
  padding: 0;
  padding-top: 100px;
  height: -moz-fit-content;
  height: fit-content;
}
@media only screen and (max-width: 560px) {
  .section_primary {
    padding-top: 30px;
  }
}
.section_primary .title_section {
  font-size: 7rem;
  font-weight: 200;
  text-align: center;
  margin-bottom: 100px;
}
.section_primary .title_section.bottom_margin {
  margin-bottom: 40px;
}
@media only screen and (max-width: 560px) {
  .section_primary .title_section {
    font-size: 4.5rem;
    margin-bottom: 30px;
  }
}
.section_primary .text_description {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 50px;
  margin: 0 auto;
}
@media only screen and (max-width: 560px) {
  .section_primary .text_description {
    font-size: 1.4rem;
    width: calc(100vw - 60px);
  }
}

.section_kv .kv_video {
  width: 100vw;
}
@media only screen and (max-width: 560px) {
  .section_kv .kv_video {
    height: 100vw;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.section_kv .text_error {
  text-align: center;
  padding: 100px 0;
}

.button_archive {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  font-size: 1.6rem;
  line-height: 30px;
  border-radius: 15px;
  padding: 0 20px;
  margin: 0 auto;
  margin-top: 50px;
  border: solid 1px #000;
}

/*=======================================================

			アーカイブページのページネーション

*=======================================================*/
.navigation.pagination ul.page-numbers {
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  gap: 10px;
}
.navigation.pagination ul.page-numbers li {
  font-size: 1.8rem;
  width: 30px;
  height: 30px;
}
.navigation.pagination ul.page-numbers li a, .navigation.pagination ul.page-numbers li span {
  width: 100%;
  height: 100%;
  display: flex;
  flex-flow: row;
  align-items: center;
  justify-content: center;
}
.navigation.pagination ul.page-numbers li .current {
  background: #000;
  color: #FFFFFF;
  border-radius: 15px;
}
.navigation.pagination ul.page-numbers li a {
  border-radius: 15px;
}
.navigation.pagination ul.page-numbers li a:hover {
  background: #E0E4EB;
}

/*=======================================================

			Topページ： Worksセクション

*=======================================================*/
.gp_works {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(33.3333333333vw, 1fr));
  grid-auto-rows: auto;
  gap: 0;
  margin-bottom: 50px;
}
@media only screen and (max-width: 560px) {
  .gp_works {
    grid-template-columns: repeat(auto-fit, minmax(100vw, 1fr));
  }
}
.gp_works .item_works {
  width: 33.3333333333vw;
  height: 25vw;
  position: relative;
  background: #CCC;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
@media only screen and (max-width: 560px) {
  .gp_works .item_works {
    width: 100vw;
    height: 75vw;
  }
}
.gp_works .item_works img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.gp_works .item_works .title_work {
  position: absolute;
  bottom: 0;
  left: 0;
  background: #000;
  color: #FFFFFF;
  padding: 6px 10px;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.1s linear;
}
.gp_works .item_works:hover {
  transform: scale(0.96);
  z-index: 2;
}
.gp_works .item_works:hover .title_work {
  background: #FFFFFF;
  color: #000;
  font-size: 1.8rem;
  bottom: -1px;
  left: -1px;
}

/*=======================================================

			Topページ： Aboutセクション

*=======================================================*/
.section_about .gp_about {
  display: flex;
  flex-direction: row;
  width: 100vw;
}
@media only screen and (max-width: 560px) {
  .section_about .gp_about {
    flex-direction: column;
  }
}
.section_about .gp_about .gp_img {
  width: 50%;
}
@media only screen and (max-width: 560px) {
  .section_about .gp_about .gp_img {
    width: 100%;
  }
}
.section_about .gp_about .gp_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.section_about .gp_about .gp_text {
  width: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 560px) {
  .section_about .gp_about .gp_text {
    width: 100%;
    margin-top: 50px;
  }
}
.section_about .gp_about .gp_text .text_company {
  font-size: 2.4rem;
  font-weight: 700;
}
.section_about .gp_about .gp_text .text_description {
  font-size: 1.6rem;
  width: 70%;
  margin-top: 20px;
  text-align: left;
}
@media only screen and (max-width: 560px) {
  .section_about .gp_about .gp_text .text_description {
    width: calc(100vw - 60px);
  }
}
.section_about .gp_about .gp_text .text_name {
  font-size: 2.4rem;
  text-align: center;
  margin-top: 100px;
  font-weight: 700;
}
.section_about .gp_about .gp_text .text_name span {
  display: block;
  font-size: 1.4rem;
}

/*=======================================================

			作品詳細ページ：single-works.php

*=======================================================*/
main.signle_work {
  width: calc(100vw - 100px);
  margin: 0 auto;
}
@media only screen and (max-width: 560px) {
  main.signle_work {
    width: calc(100vw - 0px);
    margin-top: 20px;
  }
}
main.signle_work .gp_text {
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media only screen and (max-width: 560px) {
  main.signle_work .gp_text {
    padding: 25px 0;
    width: calc(100vw - 40px);
    margin: 0 auto;
  }
}
main.signle_work .gp_text .title_work {
  font-size: 5rem;
  font-weight: 300;
  line-height: 1.2;
}
@media only screen and (max-width: 560px) {
  main.signle_work .gp_text .title_work {
    font-size: 3rem;
  }
}
main.signle_work .gp_text .description_work {
  font-size: 1.6rem;
  width: 100%;
  max-width: 800px;
}
main.signle_work .img_kv {
  width: 100%;
}
main.signle_work .gp_img_video {
  display: flex;
  flex-direction: column;
  gap: 30px;
  margin-top: 50px;
}
@media only screen and (max-width: 560px) {
  main.signle_work .gp_img_video {
    margin-top: 25px;
  }
}
main.signle_work .gp_img_video video {
  width: 100%;
}
main.signle_work .gp_img_video img {
  width: 100%;
}

/*=======================================================

			Contactページ

*=======================================================*/
main.cotact .gp_iframe_form {
  margin: 0 auto;
  margin-top: 50px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (max-width: 560px) {
  main.cotact .gp_iframe_form {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 560px) {
  main.cotact .gp_iframe_form iframe {
    width: calc(100vw - 20px);
    height: 1500px;
  }
}/*# sourceMappingURL=style.css.map */