@charset "utf-8";

html {
  font-size: 100%;
}


a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

nav {
  display: flex;
}

body {
  letter-spacing: 0.05em;
}

h3 {
  margin: 0;
}

h4 {
  margin: 0;
}

/*---------------
基本レイアウト
---------------*/

#wrapper {
  background: linear-gradient(45deg, #edf9fa, #def3f7, #d3f3f5, #edf9fa);
  background-size: 200% 200%;
  animation: bggradient 15s ease infinite;
}

@keyframes bggradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

.header_main-width {
  width: 62%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 2%;
}

@media only screen and (max-width: 768px) {
  .header_main-width {
    width: 90%;
  }
}

.main_width {
  width: 62%;
  margin: 0 auto;
  padding-left: 2%;
  padding-right: 2%;
}

@media only screen and (max-width: 768px) {
  .main_width {
    width: 80%;
  }
}

/*---------------
header
---------------*/

header {
  background: #020202;
  opacity: 0.6;
  height: 5vw;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
}

@media only screen and (max-width: 1199px) {
  header {
    height: 60px;
  }
}

@media only screen and (max-width: 768px) {
  header {
    height: 50px;
    background: #6d6868;
    opacity: 1;
  }
}

@media only screen and (max-width: 600px) {
  header {
    height: 32px;
    background: #6d6868;
    opacity: 1;
  }
}

header #hd_logo {
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 1000;
}

header #hd_logo.is-active {
  display: none;
}


header #hd_logo img {
  width: 10vw;
  height: 2.44vw;
}

@media only screen and (max-width: 1199px) {
  header #hd_logo img {
    width: 12vw;
    height: 2.93vw;
  }
}

@media only screen and (max-width: 768px) {
  header #hd_logo img {
    width: 90px;
    height: 22px;
  }
}

/*---------------
ハンバーガーメニュー
---------------*/

.burger {
  display: none;
}

@media only screen and (max-width: 768px) {
  .burger {
    display: block;
    width: 24px;
    height: 24px;
    background-image: url(../img/burger.svg);
    background-size: 30px;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: auto;
    margin-bottom: auto;
    cursor: pointer;
    border-radius: 4px;
    position: relative;
    z-index: 10;
  }
}

.burger:hover {
  background-color: rgb(160, 152, 152);
}

.burger.is-active {
  background-image: url(../img/close.svg);
}

.sp-nav-box {
  display: none;
}

@media only screen and (max-width: 768px) {
  .sp-nav-box.is-active {
    position: fixed;
    list-style: none;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: rgb(124, 43, 43);
    z-index: 1;
    padding-top: 100px;
    align-items: center;
    display: flex;
    flex-direction: column;
  }
}

.sp-nav_list {
  padding-left: 0;
}

.sp-nav_list li {
  list-style: none;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 20px;
  display: flex;
  padding: 0;
  margin-top: 34px;
  justify-content: center;
}

.sp-nav_list li a {
  color: #fff;
}

.pc-nav {
  display: flex;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 20px;
  list-style: none;
  align-items: center;
  padding-left: 0;
}

@media only screen and (max-width: 1199px) {
  .pc-nav {
    font-size: 14px;
  }
}

@media only screen and (max-width: 768px) {
  .pc-nav {
    display: none;
  }
}

.pc-nav li:nth-child(n+2) {
  margin-left: 10vw;
}

@media only screen and (max-width: 1199px) {
  .pc-nav li:nth-child(n+2) {
    margin-left: 6vw;
  }
}

.pc-nav a {
  color: #fff;
  transition: 0.2s;
}

.pc-nav a:hover {
  color: rgb(124, 43, 43);
}

/*---------------
first view
---------------*/

.fv {
  background-image: url(../img/bg.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  height: 0;
  margin: 0;
  position: relative;
  padding-top: 68%;
}

.fv_text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 2vw;
  letter-spacing: 1em;
  color: #ffffff;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding-left: 2%;
  display: flex;
  overflow: hidden;
}

.fv_text p {
  color: #fff;
  font-size: 2vw;
  letter-spacing: 1em;
  margin: 0;

  /* ここからアニメーション関係 */
  opacity: 0;
  animation: textanimation 4s forwards;
}

@media only screen and (max-width: 768px) {
  .fv_text p {
    font-size: 4vw;
  }
}

/* 1文字目 */
.fv_text p:nth-child(1) {
  animation-delay: 7s
}

/* 2文字目 */
.fv_text p:nth-child(2) {
  animation-delay: 7.1s
}

/* 3文字目 */
.fv_text p:nth-child(3) {
  animation-delay: 7.2s
}

/* 4文字目 */
.fv_text p:nth-child(4) {
  animation-delay: 7.3s
}

/* 5文字目 */
.fv_text p:nth-child(5) {
  animation-delay: 7.4s
}

/* 6文字目 */
.fv_text p:nth-child(6) {
  animation-delay: 7.5s
}

/* 7文字目 */
.fv_text p:nth-child(7) {
  animation-delay: 7.6s
}

/* 8文字目 */
.fv_text p:nth-child(8) {
  animation-delay: 7.7s
}

/* 9文字目 */
.fv_text p:nth-child(9) {
  animation-delay: 7.8s
}

/* 10文字目 */
.fv_text p:nth-child(10) {
  animation-delay: 7.9s
}

/* 11文字目 */
.fv_text p:nth-child(11) {
  color: rgb(124, 43, 43);
  animation-delay: 8.4s
}

/* 12文字目 */
.fv_text p:nth-child(12) {
  color: rgb(124, 43, 43);
  animation-delay: 8.9s
}

@keyframes textanimation {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.fv_text2 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 6vw;
  letter-spacing: 0.2em;
  color: #fff;
  display: inline-block;
  margin: 0;
  position: absolute;
  top: 22%;
  right: 16%;
  opacity: 0;
}

.fv_text2.load {
  opacity: 1;
  transition: all 1.5s;
  opacity: 0.6;
  color: transparent;
  background-color: #fff;
  background-image: radial-gradient(circle, rgb(247, 219, 118) 0%, rgba(253, 243, 142, 0) 75%);
  background-repeat: no-repeat;
  background-size: 0em 0em;
  background-position: 0% 0%;
  -webkit-background-clip: text;
  background-clip: text;
  animation-name: kirari;
  animation-duration: 3s;
  animation-iteration-count: fowards;
  animation-timing-function: ease-in-out;
}

@keyframes kirari {
  0% {
    background-size: 0em 0em;
    background-position: 0% 50%;
  }

  50% {
    background-size: 2em 2em;
  }

  100% {
    background-size: 0em 0em;
    background-position: 100% 50%;
  }
}

.fv_text3 {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 1.5vw;
  letter-spacing: 0.2em;
  color: #fff;
  display: inline-block;
  margin: 0;
  position: absolute;
  top: 34%;
  right: 12%;
  opacity: 0;
}

@media only screen and (max-width: 768px) {
  .fv_text3 {
    font-size: 2vw;
    right: 6%;
  }
}

.fv_text3.load {
  opacity: 1;
  transition: all 3s;
}

.fv_text3 span {
  color: rgb(124, 43, 43);
}

.loop_box {
  position: absolute;
  bottom: 24%;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  overflow: hidden;
  display: flex;
}

@keyframes loop_animation_left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-100%);
  }
}

@media only screen and (max-width: 768px) {
  .loop_box {
    display: none;
  }
}

.loop_text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 2vw;
  letter-spacing: 0.2em;
  color: #fff;
  width: 100%;
  text-align: center;
  animation: loop_animation_left 11s linear forwards;
  white-space: nowrap;
  margin-left: 1.5em;
}

.loop_text span {
  font-size: 1vw;
  margin-left: 2.5em;
}

.loop_text span:nth-child(2) {
  color: rgb(124, 43, 43);
  font-size: 2vw;
  margin-left: 2em;
}

.loop_text span:nth-child(3) {
  font-size: 2vw;
  margin-left: 2em;
}

.loop_text span:nth-child(4) {
  color: rgb(124, 43, 43);
  font-size: 1vw;
  margin-left: 2em;
}

.loop_text span:nth-child(6) {
  color: rgb(124, 43, 43);
  font-size: 2vw;
  margin-left: 2em;
}

.loop_text span:nth-child(8) {
  color: rgb(124, 43, 43);
  font-size: 1vw;
  margin-left: 2em;
}

/*---------------
loading
---------------*/

.fv_logo_loading {
  background-color: #071237;
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 999;
}

.fv_logo_loading.load {
  opacity: 0;
  transition: all 1s;
  z-index: 1;
}

.fv_logo_loading.load.none {
  display: none;
}

.fv_logo_loading img {
  position: absolute;
  top: 50%;
  left: auto;
  width: 7vw;
  height: 7vw;
  border-radius: 50%;
  box-shadow:
    inset 0 0 50px #fff,
    inset 20px 0 80px rgb(196, 179, 26),
    inset -20px 0 80px rgb(238, 236, 175),
    inset 20px 0 300px rgb(196, 179, 26),
    inset -20px 0 300px rgb(238, 236, 175),
    0 0 50px #fff,
    -10px 0 80px rgb(196, 179, 26),
    10px 0 80px rgb(238, 236, 175);
  animation: zoom-in-anim 2s forwards;
}

@media only screen and (max-width: 768px) {
  .fv_logo_loading img {
    width: 15vw;
    height: 15vw;
  }
}

@keyframes zoom-in-anim {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.2);
  }
}

.load_text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 1.5vw;
  position: absolute;
  top: 66vh;
  left: 50%;
  transform: translateX(-50%);
  letter-spacing: 1em;
  color: #fff;
  padding-left: 2%;
  text-shadow: 0 0 10px #fff, 0 0 15px #fff;
  width: 100%;
  text-align: center;
}

@media only screen and (max-width: 1199px) {
  .load_text {
    font-size: 2vw;
    top: 58vh;
  }
}

@media only screen and (max-width: 768px) {
  .load_text {
    font-size: 3vw;
    top: 64vh;
  }
}

@media only screen and (max-width: 600px) {
  .load_text {
    font-size: 3vw;
    top: 64vh;
  }
}

/*---------------
intro
---------------*/

#intro {
  height: 860px;
}

@media only screen and (max-width: 600px) {
  #intro {
    height: 700px;
  }
}

#intro .section_title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 1.6vw;
  letter-spacing: 0.2em;
  color: rgb(124, 43, 43);
  padding-top: 12vw;
  padding-bottom: 0;
}

@media only screen and (max-width: 768px) {
  #intro .section_title {
    font-size: 20px;
    padding-top: 100px;
  }
}

.intro_flex {
  display: flex;
}

@media only screen and (max-width: 600px) {
  .intro_flex {
    flex-direction: column;
  }
}

.intro_text_box {
  width: 50%;
  height: 30%;
  margin-top: 40px;
}

@media only screen and (max-width: 600px) {
  .intro_text_box {
    width: 100%;
  }
}

.intro_text_box p {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.75;
  color: #442122;
}

@media only screen and (max-width: 768px) {
  .intro_text_box p {
    font-size: 12px;
  }
}

.intro_text_box p span:nth-child(1) {
  display: block;
}

.intro_text_box p span:nth-child(2) {
  display: block;
}

.intro_img_box {
  width: 50%;
  position: relative;
}

@media only screen and (max-width: 600px)  {
  .intro_img_box {
    margin-top: 60px;
    margin-bottom: 20px;
    width: 100%;
  }
}

.intro_img_box img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 768px) {
  .intro_img_box img {
    width: 100px;
    height: 100px;
  }
}

.link_title_box {
  display: flex;
  justify-content: space-between;
  margin-top: 3em;
  margin-bottom: 1em;
}

@media only screen and (max-width: 768px) {
  .link_title_box {
    flex-direction: column;
    margin-top: 4em;
    align-items: center;
  }
}

.link_title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: 0.2em;
  font-size: 1.4vw;
  margin-top: 1.5em;
  margin-bottom: 1.5em;
}

@media only screen and (max-width: 768px) {
  .link_title {
    font-size: 16px;
  }
}

.link_title a {
  padding-bottom: 5px;
  position: relative;
}

.link_title a::before {
  background: #81383b;
  content: '';
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: center top;
  transform: scale(0, 1);
  transition: transform .3s;
}

.link_title a:hover::before {
  transform-origin: center top;
  transform: scale(1, 1);
}


.link_title a {
  color: #81383b;
  transition: 0.2s;
}

.link_title a:hover {
  color: #d3c2c2;
}

/*---------------
footer
---------------*/

footer {
  width: 100%;
  height: 9vh;
}

@media only screen and (max-width: 768px) {
  footer {
    height: 6vh;
  }
}

@media only screen and (max-width: 600px) {
  footer {
    height: 40px;
  }
}

footer .main_width {
  height: 100%;
  padding-left: 2%;
  padding-right: 2%;
}

.footer_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.footer_logo img {
  width: 10vw;
  height: 2.37vw;
}

@media only screen and (max-width: 600px) {
  .footer_logo img {
    width: 80px;
    height: 18.96px;
  }
}

footer p small {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 1vw;
  align-items: center;
  color: rgb(124, 43, 43);
}

@media only screen and (max-width: 600px) {
  footer p small {
    font-size: 10px;
  }
}

/*---------------
about
---------------*/

#about {
  height: 100vh;
}

#about .main_width {
  width: 80%;
  padding-left: 2%;
  padding-right: 2%;
}

#about .section_title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.2em;
  color: rgb(124, 43, 43);
  padding-top: 30%;
  padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  #about .section_title {
    font-size: 30px;
    padding-top: 300px;
  }
}

@media only screen and (max-width: 600px) {
  #about .section_title {
    font-size: 30px;
    padding-top: 200px;
  }
}

.about_flex {
  display: flex;
}

@media only screen and (max-width: 600px) {
  .about_flex {
    flex-direction: column;
  }
}

.about_text_box {
  width: 50%;
}

@media only screen and (max-width: 600px) {
  .about_text_box {
    width: 100%;
  }
}

.about_text_box p {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin: 0;
  color: #442122;
}

@media only screen and (max-width: 600px) {
  .about_text_box p {
    font-size: 12px;
  }
}

.about_img {
  width: 50%;
  text-align: center;
}

@media only screen and (max-width: 600px) {
  .about_img {
    width: 100%;
    text-align: right;
  }
}

.about_img img {
  width: 200px;
  height: 281.4px;
  margin-top: -130px;
}

@media only screen and (max-width: 1199px) {
  .about_img img {
    width: 150px;
    height: 211px;
    margin-top: -50px;
  }
}

@media only screen and (max-width: 600px) {
  .about_img img {
    width: 80px;
    height: 112.5px;
    margin-top: 50px;
  }
}

/*---------------
works
---------------*/

#works {
  height: auto;
}

#works .main_width {
  width: 80%;
  padding-left: 2%;
  padding-right: 2%;
}

#works .section_title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.2em;
  color: rgb(124, 43, 43);
  padding-top: 30%;
  padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  #works .section_title {
    font-size: 30px;
    padding-top: 300px;
  }
}

@media only screen and (max-width: 600px) {
  #works .section_title {
    font-size: 30px;
    padding-top: 200px;
  }
}

.work_flex {
  display: flex;
}

@media only screen and (max-width: 600px) {
  .work_flex {
    flex-direction: column;
  }
}

.work_img {
  background: #111;
  height: 240px;
}

@media only screen and (max-width: 600px) {
  .work_img {
    width: 250px;
    height: 200px;
  }
}

.work_img a img:hover {
  opacity: 0.5;
  transition: 0.3s;
}

.thumnail_box img {
  width: 300px;
  height: 240px;
}

@media only screen and (max-width: 600px) {
  .thumnail_box img {
    width: 250px;
    height: 200px;
    transition: 0.25s;
  }
}

.thumnail_box span {
  display: block;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 18px;
  margin-top: 20px;
}

.STN {
  margin-top: 150px;
  margin-bottom: 150px;
}

@media only screen and (max-width: 600px) {
  .STN {
  margin-top: 100px;
  margin-bottom: 100px;
}
}

@media only screen and (max-width: 600px) {
  .STN_logo {
    text-align: center;
  }
}

@media only screen and (max-width: 600px) {
  .STN_logo img {
    width: 201px;
    height: 71px;
    text-align: center;
  }
} 

.meikin {
  margin-top: 150px;
  margin-bottom: 150px;
}

@media only screen and (max-width: 600px) {
  .meikin {
  margin-top: 100px;
  margin-bottom: 200px;
}
}

@media only screen and (max-width: 600px) {
  .meikin_logo {
    text-align: center;
  }
}

@media only screen and (max-width: 600px) {
  .meikin_logo img {
    width: 127px;
    height: 120px;
    text-align: center;
  }
}

.lessismoreInc {
  color: #020202;
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.2em;
  width: fit-content;
  transition: 0.25s;
}

.lessismoreInc:hover {
  color: #b3b0b0;
}

.w_text {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.1em;
  color: #0a778d;
  display: block;
}

.work_text {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: 1vw;
  width: 50%;
  padding-left: 10%;
  line-height: 1.75;
}

@media only screen and (max-width: 600px) {
  .work_text {
    padding-top: 160px;
    width: 100%;
    padding-left: 0;
  }
}

.work_text p {
  margin: 0;
}

.work_text p span:nth-child(1) {
  font-size: 16px;
  color: #161414;
  line-height: 1em;
}

@media only screen and (max-width: 600px) {
  .work_text p span:nth-child(1) {
    line-height: 1.75em;
  }
}

.work_text p span:nth-child(2) {
  display: block;
  margin-top: 20px;
  margin-bottom: 20px;
  line-height: 1.75;
  font-size: 16px;
  color: #020202;
}

.work_text p span:nth-child(3) {
  display: block;
  line-height: 1.75;
  font-size: 14px;
  color: #020202;
}

.lessismore_logo {
  padding-top: 20px;
  text-align: right;
}

.lessismore_logo img {
  width: 200px;
  height: 69.57px;
}

@media only screen and (max-width: 600px) {
  .lessismore_logo img {
    width: 180px;
    height: 62.34px;
  }
}

/*---------------
contact
---------------*/

#contact {
  height: 100vh;
}

#contact .main_width {
  width: 80%;
  padding-left: 2%;
  padding-right: 2%;
}

#contact .section_title {
  font-family: 'Times New Roman', Times, serif;
  font-weight: 400;
  font-size: 40px;
  letter-spacing: 0.2em;
  color: rgb(124, 43, 43);
  padding-top: 30%;
  padding-bottom: 40px;
}

@media only screen and (max-width: 768px) {
  #contact .section_title {
    font-size: 30px;
    padding-top: 200px;
  }
}

.contact_flex {
  display: flex;
}

@media only screen and (max-width: 600px) {
  .contact_flex {
    flex-direction: column;
  }
}

.contact_text_box {
  width: 50%;
  padding-right: 2%;
}

@media only screen and (max-width: 600px) {
  .contact_text_box {
    width: 100%;
  }
}

.contact_text_box p {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.1em;
  line-height: 1.75;
  margin: 0;
  color: #442122;
}

.contact_text_box p:nth-child(2) {
  margin-top: 10px;
}

.contact_text_box .contact_text {
  font-family: "Times New Roman", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  font-weight: 400;
  font-size: 16px;
  margin-top: 40px;
}

@media only screen and (max-width: 600px) {
  .contact_text_box .contact_text {
    font-size: 14px;
    margin-top: 20px;
  }
}

.contact_img {
  padding-left: 2%;
}

@media only screen and (max-width: 600px) {
  .contact_img {
    padding-left: 0;
  }
}

.contact_img img {
  width: 24vw;
  height: 5.69vw;
}

@media only screen and (max-width: 600px) {
  .contact_img img {
    width: 40vw;
    height: 9.48vw;
    margin-top: 60px;
  }
}