@charset "UTF-8";

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: '';
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  text-decoration: none;
  color: #252525;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

address {
  font-style: normal;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "A-OTF UD黎ミン Pr6N", "ITC Galliard Pro", "Garamond", 'YuMincho', 'Meiryo', serif;
  width: 100%;
  margin: 0 auto;
  color: #252525;
  font-size: 1.6em;
}

/* スクロール値を計測 */
.num {
  margin: 0;
  position: fixed;
  right: 10px;
  top: 10px;
}

.font {
  font-family: 'Futura', 'Yu Gothic', "游ゴシック", 'YuGothic', "游ゴシック体", 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
  display: block;
  letter-spacing: 0.05em;
  color: #00000059;
}

h2 {
  font-size: 3rem;
}

h3 {
  line-height: 1.8;
  font-size: 3.6rem;
  font-family: "A-OTF UD黎ミン Pr6N", serif;
}

#view_size {
  font-size: 2.4rem;
}

#header_wrapper {
  position: sticky;
  top: 0px;
  left: 0px;
  width: 100%;
  background-color: #ffffff;
  z-index: 999;
  display: flex;
  align-items: center;
  text-align: center;

}

#header_wrapper h1 {
  width: 20%;
  padding-right: 13rem;
  font-weight: bold;
  font-size: 3rem;
  /* line-height: 8rem; */
}

#header_wrapper h1 a {
  display: block;

}

#header_wrapper header {
  width: 80%;
  /* margin: 0 auto; */
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  height: 8rem;

}


#header_wrapper.UpMove {
  animation: UpAnime 0.5s forwards;
}

@keyframes UpAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }

  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}

/*　下に下がる動き　*/

#header_wrapper.DownMove {
  animation: DownAnime 0.5s forwards;
}

@keyframes DownAnime {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

header nav {
  padding-left: 9rem;
}

header nav ul {
  display: flex;
  flex-wrap: wrap;
}

header nav ul li {
  padding-right: 7.6rem;
}

header nav ul li a {
  display: block;
  /* line-height: 8rem; */
  position: relative;

}

header nav ul li a::after {
  position: absolute;
  content: '';
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: #b1a521;
  transition: all 0.5s ease 0s;
}

header nav ul li a:hover {
  cursor: pointer;

}

header nav ul li a:hover::after {
  width: 100%;

}


.sns {
  display: flex;
  flex-wrap: wrap;
  margin-right: 5rem;
}

.sns li {
  padding-right: 3rem;
}

.sns li a {
  display: block;
  /* line-height: 8rem; */
}

/* ハンバーガー */
.openbtn1 {
  position: fixed;
  z-index: 9999;
  /*ボタンを最前面に*/
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: none;
}

/*×に変化*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s;
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 2px;
  background-color: #252525;
  width: 45%;
}

.openbtn1 span:nth-of-type(1) {
  top: 15px;
}

.openbtn1 span:nth-of-type(2) {
  top: 23px;
}

.openbtn1 span:nth-of-type(3) {
  top: 31px;
}

.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn1.active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}


/* TOP画像 */

.main_imgBox {
  height: 65rem;
  overflow: hidden;
  position: relative;
}

.main_img {
  z-index: 10;
  opacity: 0;
  width: 100%;
  height: 70rem;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 36s 0s infinite;
  animation: anime 36s 0s infinite;
}

.main_img:nth-of-type(2) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

.main_img:nth-of-type(3) {
  -webkit-animation-delay: 12s;
  animation-delay: 12s;
}

.main_img:nth-of-type(4) {
  -webkit-animation-delay: 18s;
  animation-delay: 18s;
}

.main_img:nth-of-type(5) {
  -webkit-animation-delay: 24s;
  animation-delay: 24s;
}

.main_img:nth-of-type(6) {
  -webkit-animation-delay: 30s;
  animation-delay: 30s;
}

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

  8% {
    opacity: 1;
  }

  17% {
    opacity: 1;
  }

  25% {
    opacity: 0;
    transform: scale(1.2);
    z-index: 9;
  }

  100% {
    opacity: 0;
  }

}



/* キャンペーン */
#campaign {
  width: 94%;
  margin: 0 auto;
}

#campaign h2 {
  text-align: center;
  margin: 18rem 0 7rem 0;
}

#campaign ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
}

#campaign ul li {
  width: 30%;
}

#campaign .c_img {
  width: 100%;
  transition: all 0.3s ease 0s;

}

#campaign .c_img img {
  width: 100%;
  height: auto;
  /* object-fit: contain; */
}


#campaign ul li .c_img:hover {
  opacity: 0.6;

}

#campaign .c_cap {
  line-height: 1.5;
  transition: all 0.3s ease 0s;

}

#campaign .c_cap:hover {
  color: #b1a521;

}



.sub_title {
  font-size: 1.7rem;
  font-weight: bold;
  /* letter-spacing: 0.05em; */
  /* font-variant:unset; */
  /* font-feature-settings: "palt"; */
  padding-top: 3rem;

}

.time_title {
  font-size: 1.2rem;
  padding: 1.5rem 0;
  display: flex;
  flex-wrap: wrap;
}

.cap {
  font-size: 1.3rem;
  overflow-wrap: break-word;
}

.font {
  padding-right: 5px;
}

/* Gallery */

section .gallery_wrap {
  width: 80.5%;
  margin: 21.8rem auto;
  display: flex;
  flex-wrap: wrap;
}

.b_title {
  width: 50%;
}


.b_title h3 {
  padding: 4rem 0;

}

.b_title p {
  width: 80%;
  line-height: 2.2;
  overflow-wrap: break-word;
  margin-bottom: 8rem;

}

.view_more {
  font-size: 2.4rem;

}


.btn01 {
  border: 1px solid #252525;
  padding: 0.8rem 3rem;
  display: inline-block;
  position: relative;

  outline: none;
  /*はみ出す背景色を隠す*/
  overflow: hidden;
}

.btn01:hover {
  color: #fff;
  border-color: transparent;
  /*色の変化を遅らせる*/
  transition-delay: .6s;
}

/*線の設定*/
.btn01 span {
  display: block;
  z-index: 2;
}

.borderleft span::before,
.borderleft span::after {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  width: 0;
  height: 1px;
  /*線の形状*/
  background: #252525;
  /*アニメーションの設定*/
  transition: all .3s;
}

/*左上線*/
.borderleft span::before {
  left: 0;
  top: 0;
}

/*左下線*/
.borderleft span::after {
  left: 0;
  bottom: 0;
}

/*hoverをすると線が伸びる*/
.borderleft:hover span::before,
.borderleft:hover span::after {
  width: 100%;
}

/*背景の設定*/
.borderleft::before {
  content: '';
  /*絶対配置で線の位置を決める*/
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: -1;
  /*背景の形状*/
  height: 100%;
  width: 0;
  background: #252525;
  /*アニメーションの設定*/
  transition: all .3s;
}

/*hoverをすると背景が伸びる*/
.borderleft:hover::before {
  width: 100%;
  /*0.4秒遅れてアニメーション*/
  transition-delay: .4s;
}


/* 画像 */
.b_img {
  width: 50%;
  position: relative;
}

.b_img_l {
  position: absolute;
  top: 18px;
  right: 12px;
  z-index: -9;
}

.b_img_l img {
  width: 110%;
}

.b_img_r {
  position: absolute;
  top: 170px;
  left: 0;

}

.b_img_r img {
  width: 100%;

}

#box02 {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s;
}

#box03 {
  opacity: 0;
  transform: translateY(40px);
  transition-delay: 200ms;
  transition: all 1s;

}








/* works */

.works h2 {
  width: 88.6%;
  margin-left: auto;
  margin-top: 20rem;
  padding: 6rem 0;
}


.slider_wrap {
  margin-bottom: 20rem;
  margin-top: 20rem;

}


.slider {
  width: 90%;
  margin-left: auto;
  /* margin: 0 auto; */
  position: relative;

}

.slider::after {
  content: "";
  display: block;
  width: 95%;
  height: 1px;
  background-color: #252525;
  position: absolute;
  bottom: 0;
  left: 20px;
}

.box {
  margin: 0 2rem 0;
}

.box>div {
  /* width: 40rem; */
  overflow: hidden;
}

.box>div a img {
  width: 100%;
  overflow: hidden;
  object-fit: contain;
  transform: scale(1);
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.box>div a:hover img {
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}


.box h3 {
  padding: 1rem 0;
}

.box p {
  font-size: 1.6rem;
  padding-bottom: 8rem;
}


.slick-list {
  overflow: visible;
}

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.slide-arrow {
  position: absolute;
  bottom: -20%;
  right: 10%;
}


.prev-arrow {
  display: inline-block;
  position: absolute;
  width: 4%;
  right: 120px;
  bottom: -80px;
  cursor: pointer;
  transform: scale(1);
  -webkit-transition: .2s ease-in;
  transition: .2s ease-in;
  opacity: 1;
}

.prev-arrow:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0.5;

}

.next-arrow {
  display: inline-block;
  position: absolute;
  width: 4%;
  right: 40px;
  bottom: -80px;
  cursor: pointer;
  transform: scale(1);
  -webkit-transition: .2s ease-in;
  transition: .2s ease-in;
  opacity: 1;
}

.next-arrow:hover {
  -webkit-transform: scale(0.9);
  transform: scale(0.9);
  opacity: 0.5;

}

.all_works {
  width: 88.6%;
  margin-left: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding: 4rem 0;
}

.all_works div {
  padding-left: 2rem;
}

.all_works div img {
  width: 20%;
  transition: 0.5s ease-in-out;

}

.all_works div:hover img {
  transform: rotate(360deg);
}

/* .all_works a {
    background:
      linear-gradient(currentColor 0 0) 0    100%/var(--d, 0) 3px no-repeat,
      linear-gradient(currentColor 0 0) 100% 100%/var(--d, 0) 3px no-repeat;
    transition:0.5s;
  }
  
  .all_works a:hover {
    --d: 51%;
  } */


/* About */

.first-v2 {
  position: relative;
  background-image: url(../img/about_dark.png);
  width: 100%;
  padding-bottom: 51.24%;
  background-size: cover;
  /* padding-top: unquote("min(100vh,75%)"); */

}

.a_title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%);
  color: #fff;
  line-height: 1.5;
  /* font-size: unquote('max(3vw, 16px)'); */
}

.a_title h2 {
  padding-bottom: 4rem;
}

.a_link {
  position: absolute;
  width: 50%;
  top: 50%;
  left: 20%;
  transform: translateY(-50%);

}



.a_link a {
  color: #fff;
  display: inline-block;
  font-size: 2.4rem;
  border: 1px solid #fff;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  line-height: 300px;
  cursor: pointer;
  transition: all 0.3s ease 0s;

}

.a_link a:hover {
  background: #fff;
  color: #252525;
  opacity: 0.7;
}











/* Footer */

footer {
  width: 100%;
}

.footer_wrap {
  display: flex;
  /* margin: 150px 0 50px 0; */
  padding-top: 5rem;
  border-top: 1px solid #252525;
  width: 94%;
  margin: 15rem auto 5rem;

}

.footer_title {
  width: 40%;

}

.footer_right {
  display: flex;
  flex-wrap: wrap;
  width: 60%;
}

.copylight {
  padding-left: 4rem;
}



.footer_title p {
  font-size: 3rem;
  color: #252525;

}

.f_font {
  font-family: "A-OTF UD黎ミン Pr6N L", "ITC Galliard", Garamond, 'YuMincho', 'Meiryo', serif;
  font-size: 11.5px;
  letter-spacing: 0.05em;
  display: block;
  padding-top: 90px;
  line-height: 1.5em;

}

.f_title {
  font-size: 1.4rem;
  letter-spacing: 0.1em;
}

.f_font span {
  padding-left: 0.5rem;

}

.f_font a {
  text-decoration: underline;

}

#campaign h2,
#Journal h2 {
  letter-spacing: 0.05em;
}

@media screen and (max-width:1080px) {
  h2 {
    font-size: 2.4rem;
  }

  h3 {
    line-height: 1.8;
    font-size: 3rem;
    font-family: "A-OTF UD黎ミン Pr6N", serif;
  }

  #header_wrapper h1 {
    padding-right: 0;

  }

  header nav {
    padding-left: 10rem;
  }

  #campaign {
    width: 100%;
  }

  #campaign ul li {
    width: 30%;
  }

  #campaign .c_img {
    width: 100%;
  }

  #campaign .c_img img {
    object-fit: contain;

  }

  .b_img_l {
    position: absolute;
    top: 10px;
    right: 0;
    z-index: -9;
  }

  .b_img_r {
    position: absolute;
    top: 350px;
    left: 0;
  }

  .box>div {
    width: auto;
  }



}

@media screen and (max-width:768px) {



  #g-nav {
    display: none;
    /*position:fixed;にし、z-indexの数値を小さくして最背面へ*/
    position: fixed;
    z-index: -1;
    opacity: 0;
    /*はじめは透過0*/
    /*ナビの位置と形状*/
    /* top: 0;
        width: 100%;
        height: 100vh; */
    /*ナビの高さ*/
    background: #999;
    /*動き*/
    transition: all 0.3s;
  }

  /*アクティブクラスがついたら透過なしにして最前面へ*/
  #g-nav.panelactive {
    opacity: 1;
    z-index: 999;
    display: block;
    top: 0;
    width: 100%;
    height: 100vh;
  }

  /*ナビゲーション*/
  #g-nav nav ul {
    display: none;
    /*ナビゲーション天地中央揃え*/
    position: absolute;
    /* z-index: 999; */
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
  }

  #g-nav.panelactive ul {
    display: block;
    width: 100%;
  }

  /*リストのレイアウト設定*/

  #g-nav li {
    list-style: none;
    text-align: center;
  }

  /* #g-nav nav li a {
        color: #333;
        text-decoration: none;
        padding: 10px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: bold;
    } */

  .openbtn1 {
    display: inline-block;
    padding-right: 1rem;
  }

  #header_wrapper header {
    width: 100%;

  }

  #header_wrapper h1 {
    padding: 2rem 2rem;
  }

  header nav ul li {
    padding: 3rem 0;
  }

  #g-nav .sns {
    position: absolute;
    z-index: 999;
    top: 70%;
    left: 50%;
    transform: translateX(-50%);
  }

  .sns li {
    padding: 2rem 0;
  }

  .sns li a {
    text-align: center;

  }

  .sns li a img {
    width: 30px;
  }

  #campaign ul li {
    width: 46.5%;
  }

  #campaign ul {
    width: 90%;
    margin: 0 auto;
    justify-content: space-between;
  }

  #campaign ul li:nth-of-type(3) {
    padding-top: 3rem;
  }


  .sub_title {
    font-size: 1.4rem;
    padding-top: 1rem;
  }

  .time_title {
    font-size: 1rem;
    padding: 1rem 0;
    display: flex;
    flex-wrap: wrap;
  }

  section .business_wrap {
    width: 90%;
  }

  section .gallery_wrap {
    width: 90%;
  }

  .b_title {
    width: 100%;
  }

  .b_img {
    width: 100%;
    height: 638px;
  }

  .b_img_l {
    position: absolute;
    top: 0;

  }

  .b_img_r {
    position: absolute;
    top: 80px;
    left: 80px;
  }

  .b_title p {
    margin-bottom: 5rem;
  }

  .slider_wrap {
    margin-bottom: 15rem;
    margin-top: 15rem;
  }

  .works h2 {
    width: 87.8%;
    margin-top: 10rem;
    padding: 4rem 0;
  }

  .box {
    margin: 0 1rem 0;
  }

  .a_link {
    position: absolute;
    width: 50%;
    top: 50%;
    left: 12%;
    transform: translateY(-50%);
  }

  .a_link a {
    font-size: 2rem;
    width: 200px;
    height: 200px;
    line-height: 200px;

  }

  .a_title h3 {
    font-size: 2.8rem;
  }

  .copylight {
    padding-left: 0;
    padding: 5rem 0;
  }

  .f_font {
    padding-top: 30px;
  }

  .contact {
    padding-top: 1rem;
  }

  .footer_right {
    padding-left: 3rem;

  }

  .footer_title p {
    padding-left: 2rem;
  }




}

@media screen and (max-width:480px) {
  #header_wrapper {
    background-color: transparent;
    position: fixed;
  }

  .main_imgBox {
    height: 100vh;
    width: 100%;
  }

  #campaign h2 {
    text-align: center;
    margin: 10rem 0 1rem 0;
  }

  #campaign ul li {
    width: 100%;
    padding-top: 3rem;
  }

  .sub_title {
    font-size: 1.6rem;
  }

  h3 {
    line-height: 1.8;
    font-size: 2.6rem;
    font-family: "A-OTF UD黎ミン Pr6N", serif;
  }

  h2 {
    font-size: 2rem;
  }

  .b_title p {
    width: 90%;
    line-height: 2.2;
    overflow-wrap: break-word;
    margin-bottom: 4rem;
  }

  .b_img_l img {
    width: 105%;
  }

  .b_img_l {
    position: absolute;
    top: 0;
  }

  .b_img_r {
    width: 80%;
    position: absolute;
    top: 330px;
    left: 5px;
  }

  .works h2 {
    width: 90%;
    margin: 0 auto;
    padding: 4rem 0;
  }

  .slider {
    width: 95%;
    margin: 0 auto;
  }

  .slider::after {
    width: 95%;
    left: 3%;
  }

  .box p {
    font-size: 1.6rem;
    padding-bottom: 6rem;
  }

  .all_works {
    width: 90%;
    margin: 0 auto;
    align-items: center;
    padding: 2rem 0;
  }

  .all_works div {
    padding-left: 2rem;
    width: 50px;
  }

  .all_works div img {
    width: 60%;
    display: inline-block;


  }

  #view_size {
    font-size: 1.6rem;
  }

  .all_works div {
    padding-left: 1rem;
  }

  .prev-arrow {
    width: 6%;
    right: 60px;
    bottom: -40px;
  }

  .next-arrow {
    width: 6%;
    right: 20px;
    bottom: -40px;
  }

  .first-v2 {
    position: relative;
    background-image: url(../img/about_dark.png);
    width: 100%;
    height: 75vh;
    background-size: cover;
  }

  .a_title {
    position: absolute;
    top: 30%;
    left: 10%;
  }

  .a_title h2 {
    padding-bottom: 3rem;
  }

  .a_link {
    position: absolute;
    width: 50%;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);

  }

  .footer_wrap {
    display: flex;
    flex-wrap: wrap;
    width: 94%;
    margin: 15rem auto 5rem;

  }

  .footer_wrap .footer_right {
    width: 100%;
    padding-left: 2rem;
    margin-top: 3rem;
  }

  .footer_title {
    width: 100%;
    padding: 2rem 0;
  }

  .footer_title p {
    padding-left: 2rem;

  }

  .footer_right .contact {
    width: 100%;

  }

  .footer_right .copylight {
    width: 100%;
    margin: 3rem 0;
  }

  .f_font {
    display: block;
    padding-top: 30px;
    width: 100%;

  }

  .f_title {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
  }

  .f_font span {
    padding-left: 0.5rem;

  }

  .f_font a {
    text-decoration: underline;

  }


}