@charset "utf-8";

html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  font-size: 16px;
  font-size: 1.6rem;
  font-family: 游明朝,"Yu Mincho",YuMincho,"Hiragino Mincho ProN","Hiragino Mincho Pro",HGS明朝E,メイリオ,Meiryo,serif;
}
img {
  width: 100%;
  height: auto;
}
p {
  line-height: 1.7;
}
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
a:hover {
  cursor: pointer;
}

/*======= layout =======*/
.content-wrap + .content-wrap {
  margin-top: 120px;
}
.inner {
  margin: 0 auto;
  width: 1000px;
  max-width: 100%;
}
.inner + .inner {
  margin-top: 60px;
}
.list-basic {
  margin-top: 30px;
  width: 100%;
}
.list-basic tr {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
}
.list-basic tr th {
  padding-left: 30%;
  width: 50%;
  vertical-align: middle;
}
.list-basic tr td {
  padding: 20px 0;
  width: 50%;
  text-align: left;
  line-height: 2;
}
.list-col2 {
  margin: 50px 0;
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
.list-col2 > * {
  width: 50%;
}
.list-col2 > * + * {
  padding-left: 5%;
}
.list-nav {
  display: flex;
  flex-wrap: wrap;
}
.list-nav li {
  margin-right: 50px;
  padding-bottom: 15px;
  position: relative;
}
.list-nav li:before {
  content: "/";
  position: absolute;
  top: 0;
  right: -25px;
}
.list-products {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.list-products li {
  margin-bottom: 30px;
  width: 24%;
  text-align: center;
}
.list-products li img {
  margin-bottom: 10px;
}
.list-products li h5 {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5;
}
.list-products li p {
  font-size: 12px;
  font-size: 1.2rem;
}
.mt30 {
  margin-top: 30px;
}
.mt60 {
  margin-top: 60px;
}

/*======= common parts =======*/
.gray {
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: grayscale(100%);
}
/*text*/
.ttl-xl {
  margin-bottom: 30px;
  font-size: 43px;
  font-size: 4.3rem;
  line-height: 1.5;
  text-align: center;
}
.ttl-lg {
  font-size: 34px;
  font-size: 3.4rem;
  letter-spacing: 2px;
}
.ttl-md {
  margin-bottom: 35px;
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 2px;
}
.ttl-sm {
  font-size: 18px;
  font-size: 1.8rem;
}
.txt-sm {
  font-size: 12px;
  font-size: 1.2rem;
}
p + .txt-sm,
.ttl-sm + .txt-sm {
  padding-top: 15px;
}
.ttl-sm + p,
.ttl-sm +ul {
  padding-top: 10px;
}
.txt-border {
  padding-bottom: 3px;
  border-bottom: 1px solid #000;
}
.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.bold {
  font-weight: bold;
}
.ttl-ico img {
  margin-right: 15px;
  width: auto;
  height: 25px;
}
.txt-lg {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 2.2
}
/*btn*/
.btn-basic {
  margin-top: 30px;
  border: 1px solid #000;
  padding: 10px 25px;
  display: inline-block;
}
.btn-basic:hover {
  opacity: .5;
  transition: .2s;
}
.btn-lg {
  margin-left: auto;
  margin-right: auto;
  padding: 20px;
  width: 400px;
  text-align: center;
  border: 1px solid #000;
  display: block;
}
.btn-lg:hover {
  opacity: .5;
  transition: .2s;
}
.btn-bk {
  padding: 30px;
  width: 500px;
  color: #fff;
  background: #000;
}

/*animation - fade*/
.fade-in {
  opacity: 0;
  transition-duration: 1.5s;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 50px);
}
.fade-in-down {
  transform: translate(0, -50px);
}
.fade-in-left {
  transform: translate(-50px, 0);
}
.fade-in-right {
  transform: translate(50px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}
/*animation-text*/
.txt-animation,
.txt-animation02 {
  opacity:0;
}
.txt-animation span,
.txt-animation02 span {
  opacity: 0;
  -webkit-transition: .6s ease-in-out;
  transition: .6s ease-in-out;
}
.txt-animation02 {
    -webkit-transition: 2s ease-in-out;
    transition: 2s ease-in-out;
}

/*======= header =======*/
header {
  padding: 25px 2%;
  height: 100px;
  background: #fff;
  width: 100%;
  position: fixed;
  top: 0;
  z-index: 100;
}
header .nav-lang ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: right;
  position: absolute;
  top: 10px;
  right: 2%;
}
header .nav-lang ul li {
  display: inline-flex;
}
header .nav-lang ul li + li {
  margin-left: 10px;
  padding-left: 15px;
  position: relative;
}
header .nav-lang ul li + li:before {
  content: "|";
  position: absolute;
  top: 0;
  left: 0;
}
header .nav-lang ul li,
header .nav-lang ul li a {
  font-size: 12px;
  font-size: 1.2rem;
  vertical-align: middle;
}
  
header .nav-lang ul li a {
  cursor: pointer !important;
}
header > div {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
header h1 {
  width: 244px;
}
header .nav-global ul {
  padding-top: 20px;
  display: flex;
  flex-wrap: wrap;
  vertical-align: middle;
}
header .nav-global ul li + li {
  margin-left: 50px;
}
header .nav-global ul li {
  font-size: 14px;
  font-size: 1.4rem;
}
header .nav-global ul li a img {
  width: 12px;
  position: relative;
  bottom: 2px;
}
header .nav-global ul li.current {
  color: #b89700;
  position: relative;
}
header .nav-global ul li.current:after {
  content: "";
  width: 50%;
  height: 1px;
  position: absolute;
  bottom: -10px;
  left: 25%;
  background-image: -webkit-linear-gradient(left, transparent, #b89700 25%, #b89700 75%, transparent);
  background-image: linear-gradient(to right, transparent, #b89700 25%, #b89700 75%, transparent);
}

/*======= mv =======*/
.bx-wrapper {
  border:none!important;
  box-shadow: none!important;
}
.mv {
  margin: 100px 0 60px 0;
  width: 100%;
}
.slider li img:hover {
  cursor: default !important;
}
.mv-sub {
  margin: 200px 0 120px 0;
}
.mv-sub .ttl-lg {
  margin-bottom: 50px;
}

/*======= copy =======*/
.copy {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  text-align: center;
}
.copy > div {
  padding: 130px 80px 0 80px;
  width: 50%;
  min-width: 500px;
}
.copy > img {
  width: calc((100% - 50%) / 2);
  max-width: calc((100% - 500px) / 2);
}
.copy > img:first-child {
  padding-top: 200px;
}
.copy > div > img {
  margin-right: -180px;
  position: relative;
  z-index: 100;
}
.copy p {
  margin-bottom: 30px;
}

/*======= tw =======*/
.tw {
  text-align: center;
}
.tw > div > div  {
  margin: 0 auto;
}

/*======= footer =======*/
footer {
  margin-top: 120px;
  padding: 50px 0 30px 0;
  background: #eee;
  text-align: center;
}
footer .inner > a {
  margin-bottom: 50px;
  width: 260px;
  display: inline-block;
}
footer p + p {
  margin-top: 8px;
}
footer .inner > div p a {
  padding-bottom: 2px;
  border-bottom: 1px solid #000;
}
footer .inner > div p a img {
  width: 13px;
  position: relative;
  bottom: 3px;
}
footer small {
  padding-top: 50px;
  display: block;
}

/*======= craftsman =======*/
.list-craftsman > div {
  display: flex;
  flex-wrap: wrap;
}
.list-craftsman > div + div {
  margin-top: 100px;
}
/*profile*/
.list-craftsman > div > div {
  width: 200px;
}
.list-craftsman h3 {
  margin-bottom: 10px;
}
.list-craftsman h4 {
  margin-bottom: 25px;
}
.list-craftsman p {
  margin-bottom: 25px;
}
/*history*/
.list-craftsman table {
  padding-left: 5%;
  width: calc(100% - 200px);
  display: block;
}
.list-craftsman table tr {
  padding: 20px 0;
  display: block;
}
.list-craftsman table tr:first-child {
  padding-top: 0;
}
.list-craftsman table tr + tr {
  border-top: 1px solid #eee;
}
.list-craftsman table tr td {
  padding-left: 20px;
  line-height: 1.8;
}

/*======= about =======*/
.access.list-col2 p + .ttl-sm {
  margin-top: 30px;
}
.access.list-col2 ul {
  padding-bottom: 15px;
}
.access.list-col2 ul li + li {
  margin-top: 8px;
}
.access.list-col2 .txt-sm {
  line-height: 1.7;
}

/*======= products =======*/
#page-products .mv-sub {
  margin-bottom: 50px;
}
#page-products .content-wrap + .content-wrap,
#page-products .inner + .inner {
  margin-top: 0;
}
#page-products .content-wrap {
  padding-top: 130px;
}
.category {
  background: #fff;
  position: sticky;
  top: 100px;
}

/*======= contact =======*/
.form-wrap {
  position: relative;
  width: 100%;
  height: 900px;
  overflow-y: scroll;
}
.form-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*==============
sp
==============*/
@media screen and (max-width:900px) {
  body {
    font-size: 14px;
    font-size: 1.4rem;
  }
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }

  /*======= layout =======*/
  .content-wrap + .content-wrap {
    margin-top: 100px !important;
  }
  .inner {
    padding: 0 2%;
    width: 100%;
  }
  .inner + .inner {
    margin-top: 30px;
  }
  .list-basic tr th {
    padding-left: 2%;
    width: 30%;
  }
  .list-basic tr td {
    padding: 15px 0;
    width: 70%;
  }
  .list-col2 {
  margin: 50px 0;
    display: block;
  }
  .list-col2 > * {
    width: 100%;
  }
  .list-col2 > * + * {
    margin-top: 20px;
    padding-left: 0;
  }
  /*作品カテゴリ*/
  .list-nav li {
    margin-right: 30px;
    padding-bottom: 10px;
  }
  .list-nav li:before {
    right: -18px;
  }
  .list-products li {
    margin-bottom: 20px;
    width: 48%;
  }
  .list-products li img {
    margin-bottom: 5px;
  }
  .list-products li h5 {
    margin-bottom: 5px;
  }

  /*======= common parts =======*/
  /*text*/
  .ttl-xl {
    margin-bottom: 5px;
    font-size: 28px;
    font-size: 2.8rem;
  }
  .ttl-lg {
    font-size: 24px;
    font-size: 2.4rem;
  }
  .ttl-md {
    font-size: 20px;
    font-size: 2.0rem;
  }
  .ttl-sm {
    font-size: 16px;
    font-size: 1.6rem;
  }
  .ttl-xl + .txt-lg {
    margin-top: 30px;
  }
  .txt-lg {
    font-size: 16px;
    font-size: 1.6rem;
  }
  /*animation - fade*/
  .fade-in-right {
    transform: translate(0, 50px);
  /*スマホでは下から出現*/
  }
  .btn-lg {
    width:96%;
  }
  .btn-bk {
    width: 96%;
  }
  /*======= header =======*/
  header {
    padding: 10px 2%;
    height: 65px;
  }
  header > div {
    height: 100%;
  }
  header h1,
  header h1 a,
  header h1 a img {
    width: auto;
    height: 100%;
  }
  .NavMenu ul li:last-child a {
    padding-top: 80px;
    color: #9b9b9b;
  }

  /*======= humburger =======*/
  /*ナビのスタイル*/
  nav.NavMenu{
    position: fixed;
    z-index: 12;
    top: 0;
    left: 0;
    background: #000;
    opacity: 0.8;
    text-align: center;
    width: 100%;
    height: 100%;
    display: none;
  }
  nav.NavMenu ul{
    width: 100%;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
  }
  nav.NavMenu ul li{
    font-size: 24px;
    list-style-type: none;
    width: 100%;
    padding-bottom: 0px;
  }
  nav.NavMenu ul li:last-child{
    padding-bottom: 0;
  }
  nav.NavMenu ul li a{
    display: block;
    color: #fff;
    padding: 25px 0;
    font-weight: bold;
    font-size: 18px;
  }
  /*ボタンのスタイル*/
  .Toggle {
    position: fixed;
    right:2%;
    top: 10px;
    width: 45px;
    height: 45px;
    cursor: pointer;
    z-index: 200;
    display: block;
  }
  .Toggle span {
    display: block;
    position: absolute;
    width: 30px;
    border-bottom: solid 1px #000;
    -webkit-transition: .35s ease-in-out;
    -moz-transition: .35s ease-in-out;
    transition: .35s ease-in-out;
    left: 6px;
  }
  .Toggle span:nth-child(1) {
    top: 9px;
  }
  .Toggle span:nth-child(2) {
    top: 20px;
  }
  .Toggle span:nth-child(3) {
    top: 31px;
  }
  .Toggle.active span:nth-child(1) {
    top: 22px;
    left: 6px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
    border-bottom: solid 1px #000;
    }
    .Toggle.active span:nth-child(2),
    .Toggle.active span:nth-child(3) {
    top: 22px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
    border-bottom: solid 1px #000;
  }
  
  /*======= mv =======*/
  .mv {
      margin: 65px 0 40px 0;
  }
  .mv-sub {
    margin: 120px 0 60px 0;
  }
  .mv-sub .ttl-lg {
    margin-bottom: 30px;
  }

  /*======= copy =======*/
  .copy {
    display: block;
  }
  .copy > div {
    padding: 0 2%;
    width: 100%;
    min-width: 100%;
  }
  .copy > img {
    width: 100%;
    max-width: 100%;
  }
  .copy > div > img {
    margin-right: 0;
  }
  .copy p {
    margin-bottom: 15x;
  }
  
  /*======= tw =======*/
  .tw {
    padding-top: 50px;
  }
  
  /*======= footer =======*/
  footer {
    margin-top: 100px;
    padding: 30px 0 20px 0;
  }
  footer .inner > a {
    margin-bottom: 30px;
    width: 180px;
  }
  footer small {
    padding-top: 30px;
  }

  /*======= craftsman =======*/
  /*profile*/
  .list-craftsman > div > div > img {
    width: 100%;
  }
    .list-craftsman h4 {
      margin-bottom: 15px;
    }
  .list-craftsman p {
    margin-bottom: 15px;
  }
  /*history*/
  .list-craftsman table {
    padding-left: 0;
    width: 100%;
  }
  .list-craftsman table tr {
    padding: 15px 0;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
  }
  .list-craftsman table tr th {
    width: 20%;
  }
  .list-craftsman table tr td {
    padding-left: 1%;
    width: calc(100% - 20%);
  }

  /*======= products =======*/
  .category {
    padding-top: 10px;
    top: 65px;
    background: #efefef;
  }
}

