@charset "UTF-8";
/* リセットCSS 
===================================== */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
button,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
  overflow: auto;
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

ol,
ul {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
}

li,
dd {
  list-style-type: none;
}

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

caption,
th,
td {
  font-weight: normal;
  text-align: left;
  vertical-align: middle;
}

q,
blockquote {
  quotes: none;
}

q:before, q:after {
  content: "";
  content: none;
}

blockquote:before, blockquote:after {
  content: "";
  content: none;
}

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

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

/* 基本設定
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  background: #fff;
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.45;
  font-weight: 500;
}

a {
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.inner {
  max-width: 100%;
  margin: 0 auto;
  width: 1200px;
}

/* 共通バーツ
===================================== */
.section-title {
  color: #565656;
  text-align: center;
  font-family: Arial;
  font-size: 50px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 10px;
}

@media (max-width: 767px) {
  .sp-hidden {
    visibility: hidden;
    opacity: 0;
  }
}

/* ハンバーガー
===================================== */
.sp-use {
  visibility: hidden;
  opacity: 0;
}
@media (max-width: 767px) {
  .sp-use {
    visibility: visible;
    opacity: 1;
  }
}

.drawer-icon {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 300;
  /* アクティブなときに45度傾いて重なり合いバツをつくる */
}
.drawer-icon .drawer-icon__bars {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #565656;
  position: relative;
  display: inline-block;
  transition: 0.4s;
}
.drawer-icon.is-active .drawer-icon__bars {
  background-color: #fff;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  top: 30px;
  background: #565656;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  top: 30px;
  background: #565656;
}

.drawer-icon__bar1 {
  position: absolute;
  width: 27px;
  height: 2.25px;
  background: #fff;
  left: calc(50% - 13.5px);
  transition: 0.4s;
}

.drawer-icon__bar2 {
  position: absolute;
  width: 22px;
  height: 2.25px;
  background: #fff;
  left: calc(55% - 13.5px);
  transition: 0.4s;
}

.drawer-icon__bar3 {
  position: absolute;
  width: 32px;
  height: 2.25px;
  background: #fff;
  left: calc(47% - 13.5px);
  transition: 0.4s;
}

/* 横棒を上から幅と作って並べる */
.drawer-icon__bar1 {
  top: 20px;
}

.drawer-icon__bar2 {
  top: 30px;
}

.drawer-icon__bar3 {
  top: 40px;
}

/* クリック時に出てきたコンテンツの装飾 */
.drawer-content {
  padding: 10px 0 0 14px;
  width: 375px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #565656;
  z-index: 299;
  transform: translateX(105%);
  /* ↑元々出てない状態を作るので100％より少しひっこめておく */
  /*   transition　でアニメーションつける */
  transition: transform 0.5s ease 0S;
  color: #fff;
}
.drawer-content.is-active {
  transform: translateX(0);
}
.drawer-content .main__nav__en {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 2.28px;
}
.drawer-content .main__nav__jp {
  font-size: 10px;
}
.drawer-content .main__sns {
  margin-top: 52px;
}
.drawer-content .main__sns .sns__icon {
  display: flex;
  text-align: center;
  justify-content: center;
}
.drawer-content .main__sns .sns__icon li:not(:first-child) {
  margin-left: 38px;
}
.drawer-content .main__sns .sns__icon .sns__logo {
  font-size: 35px;
  display: block;
  width: 40px;
  height: 40px;
}

.drawer-main__logo {
  width: 120px;
  left: 0;
}

.drawer-content__items {
  padding-top: 58px;
  padding-left: 40px;
}
.drawer-content__items .menu-item {
  font-size: 24px;
  font-weight: 200;
  letter-spacing: 2.28px;
  margin-bottom: 32px;
}
.drawer-content__items .menu-item br {
  display: none;
}
.drawer-content__items .menu-item span {
  font-size: 10px;
}

.drawer-content__item {
  margin-bottom: 15px;
}

/* ハンバーガーアクティブ時の背景設定 */
.drawer-backgraund {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 298;
  display: none;
}
.drawer-backgraund.is-active {
  display: block;
}

/* header
===================================== */
.header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 80px;
  background: #e5e5e5;
  opacity: 0.7;
}
@media (max-width: 767px) {
  .header {
    height: 80px;
  }
}

.header-inner {
  width: 70%;
  height: 100%;
  margin: 0 auto;
  display: flex;
  position: relative;
}
@media (max-width: 767px) {
  .header-inner {
    width: 100%;
    padding: 0 20px;
  }
}

.logo {
  color: #000;
  font-size: 30px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: -2px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-nav {
  position: absolute;
  right: 0;
  height: 100%;
}

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

.menu-item {
  font-size: 16px;
  font-weight: 700;
  padding: 15px 30px;
}

/* main
===================================== */
.mv-hero {
  height: 830px;
}
@media (max-width: 767px) {
  .mv-hero {
    height: 750px;
  }
}

.mv-text {
  height: 40%;
  width: 70%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
  position: relative;
  color: #000;
  font-size: 60px;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 6px;
}
@media (max-width: 767px) {
  .mv-text {
    margin: 0 20px;
    font-size: 30px;
    letter-spacing: 3px;
  }
}
.mv-text .mv-title {
  position: absolute;
  top: 38%;
  left: 0;
}
@media (max-width: 767px) {
  .mv-text .mv-title {
    top: 45%;
  }
}
.mv-text .mv-title02 {
  position: absolute;
  top: 40%;
  left: 2px;
  opacity: 0.1;
  z-index: -1;
}
@media (max-width: 767px) {
  .mv-text .mv-title02 {
    top: 47%;
  }
}
.mv-text .mv-title-lead {
  position: absolute;
  bottom: 92px;
  font-size: 16px;
  font-weight: 100;
  letter-spacing: 0;
}

.mv-img {
  height: 50%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.mv-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
@media (max-width: 767px) {
  .mv-img img {
    -o-object-position: 56% 50%;
       object-position: 56% 50%;
  }
}

/* work
===================================== */
.work {
  padding-top: 100px;
}
@media (max-width: 767px) {
  .work {
    margin-top: 40px;
  }
}

@media (min-width: 1200px) {
  .work-inner {
    margin-bottom: 100px;
  }
}

.work-content {
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 50px 30px;
}
@media (max-width: 767px) {
  .work-content {
    margin-top: 15px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-gap: 10px;
    padding: 0 10px;
  }
}

.work-item {
  font-family: Arial;
}
@media (max-width: 767px) {
  .work-item {
    margin: 20px auto 0;
  }
}
.work-item .item-img img {
  width: 100%;
}
.work-item .item-body {
  padding: 0 20px;
}
.work-item .item-title {
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  margin-top: 15px;
}
@media (max-width: 767px) {
  .work-item .item-title {
    margin-top: 10px;
  }
}
.work-item .item-date {
  color: #959595;
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 14px;
  margin-top: 5px;
}
.work-item .item-text {
  color: #382620;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 14px;
  margin-top: 5px;
}

/* service
===================================== */
.service-inner {
  padding-top: 100px;
}

.service-content {
  width: 80%;
  margin: 40px auto 0;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .service-content {
    margin: 20px 0 0;
  }
}

.service-item {
  width: 33%;
  height: 100%;
  padding: 20px;
  background-color: #fff;
}
.service-item .item-head {
  margin-top: 20px;
}
.service-item .item-head .item-img {
  width: 100px;
  height: 100px;
  margin: auto;
  display: block;
}
.service-item .item-head i {
  font-size: 100px;
  text-align: center;
}
.service-item .item-body {
  margin-top: 20px;
}
.service-item .item-title {
  color: #000;
  font-family: Arial;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  text-align: center;
}
.service-item .item-text {
  color: #000;
  font-family: Arial;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  margin-top: 10px;
}
@media (max-width: 767px) {
  .service-item .item-text {
    margin: 10px 15px;
  }
}

/* about
===================================== */
.about-inner {
  padding-top: 100px;
}
@media (min-width: 1200px) {
  .about-inner {
    margin-bottom: 100px;
  }
}

.about-content {
  display: flex;
  margin: 80px auto;
}
@media (min-width: 1200px) {
  .about-content {
    width: 70%;
  }
}
@media (max-width: 767px) {
  .about-content {
    display: block;
    margin: 20px;
    max-width: 100%;
  }
}

.about-item {
  margin: 0 auto;
}

.about-icon {
  max-width: 290px;
  max-height: 310px;
  margin-right: 30px;
}
@media (max-width: 767px) {
  .about-icon {
    max-width: 100px;
    max-height: 310px;
    margin: 0 auto;
  }
}
.about-detail {
  max-width: 100%;
  font-family: Arial;
}
@media (min-width: 1200px) {
  .about-detail {
    max-width: 550px;
  }
}

.about-copy {
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .about-copy {
    font-size: 24px;
    text-align: center;
  }
}

.about-name {
  margin-top: 10px;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
}
@media (max-width: 767px) {
  .about-name {
    margin-bottom: 16px;
    text-align: center;
  }
}

.about-text {
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
}

/* contact
===================================== */
.contact-inner {
  padding-top: 100px;
  margin-bottom: 100px;
}

.contact-content {
  margin: 50px auto;
  max-width: 50%;
}
@media (max-width: 767px) {
  .contact-content {
    margin: 30px;
    max-width: 100%;
  }
}

.contact-item {
  margin: 0 auto 16px;
  padding: 8px 0;
  display: flex;
  flex-wrap: wrap;
}

.contact-message {
  text-align: center;
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: bold;
}

.contact-requireLabel {
  color: #ffffff;
  background-color: #dd0000;
  padding: 1px 4px;
  font-size: 12px;
  letter-spacing: 1px;
  margin-left: 5px;
}

.contact-inputBox {
  padding: 0;
  margin-right: 0;
  margin-left: 0;
  align-items: center;
  width: 100%;
  position: relative;
  display: flex;
}
.contact-inputBox .inputBox {
  border-radius: 0;
  border: 3px solid #d8d8d8;
  font-size: 1rem;
  line-height: 1.5;
  width: 100%;
  padding: 6px 12px;
  outline: none;
  margin-top: 5px;
  color: #7d7d7d;
  border-radius: 10px;
}
.contact-inputBox .inputBox::-moz-placeholder {
  font-weight: 100;
  color: #b0b0b0;
}
.contact-inputBox .inputBox::placeholder {
  font-weight: 100;
  color: #b0b0b0;
}

.btn {
  padding: 20px 60px;
  margin: 50px auto;
  background-color: #fff;
  color: #000;
  display: block;
  font-size: 18px;
  font-weight: bold;
  border-radius: 50px;
  transition: 1s;
}

.btn:hover {
  opacity: 0.7;
  cursor: pointer;
  transition: 0.3s;
  transform: translate3d(0px, 5px, 1px);
  background-color: #9b9b9b;
  color: #fff;
}

/* footer
===================================== */
.copyright {
  font-size: 12px;
  float: none;
  text-align: right;
}

footer {
  background-color: #565656;
  color: #fff;
  padding: 20px;
}

/* to-top
===================================== */
.to-top {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  color: #333;
  position: fixed;
  bottom: 55px;
  right: 100px;
  text-decoration: none;
  display: block;
  width: 100px;
  padding: 16px 20px;
  text-align: right;
  transform: rotate(90deg);
  transform-origin: bottom right;
  cursor: pointer;
  /* 表示された時の動きJSで.is-show の付外し指示している */
}
.to-top .arrow1 {
  width: 51px;
  height: 2px;
  background: #333;
  position: absolute;
  top: 50%;
  right: 62px;
}
.to-top .arrow2 {
  width: 2px;
  height: 12px;
  background: #333;
  position: absolute;
  top: calc(50% + 2px);
  right: 110px;
  transform: rotate(-130deg);
  transform-origin: top left;
}
.to-top:hover {
  bottom: 80px;
}
@media (max-width: 767px) {
  .to-top {
    bottom: 55px;
    right: 60px;
  }
}
.to-top.is-show {
  opacity: 1; /* opacity:値; 値の部分には「0.0～1.0」小さいほど透明 */
  visibility: visible;
}