@charset "utf-8";
/* ========================================
styles.css
-------------------------------------------
- Reset
- Common
- Typography
- Links
- Layout
- Header
- Footer
======================================== */
/* ----------------------------------------
- Reset
  A (more) Modern CSS Reset
---------------------------------------- */
*,*::before,*::after{-webkit-box-sizing:border-box;box-sizing:border-box}
html{-moz-text-size-adjust:none;-webkit-text-size-adjust:none;-ms-text-size-adjust:none;text-size-adjust:none}
body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}
ul[role='list'],ol[role='list']{list-style:none}
body{min-height:100vh;line-height:1.5}
h1,h2,h3,h4,button,input,label{line-height:1.1}
h1,h2,h3,h4{text-wrap:balance}
a:not([class]){-webkit-text-decoration-skip:ink;text-decoration-skip-ink:auto;color:currentColor}
img,picture{max-width:100%;display:block}
input,button,textarea,select{font:inherit}
textarea:not([rows]){min-height:10em}
:target{scroll-margin-block:5ex}
/* ----------------------------------------
- Common
---------------------------------------- */
html,
body {
  background:#fff;
  margin: 0;
  padding: 0;
}
html{
  font-size: 62.5%;
}
body {
  color: #000;
  font-family: BlinkMacSystemFont,Roboto,"Segoe UI","Helvetica Neue",HelveticaNeue,YuGothic,"Yu Gothic Medium","Yu Gothic",Verdana,Meiryo,sans-serif;
  font-size: 1.6rem;
/* For SP */
}
@media (max-width: 767px) {
body {font-size: 1.4rem}}
/* column box */
.column-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
/* clear */
.clear {
  clear: both;
}
.cf::after {
  content: "";
  display: block;
  clear: both;
}
/* For Mobile */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* For PC */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* img */
img {
  display: inline-block;
  vertical-align: top;
}
/* Video */
video {
  position: absolute;
  width: 100%;
  height: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
/* ----------------------------------------
- Typography
---------------------------------------- */
.content-head02 {
  font-size: 2rem;
  margin-bottom: 1em;
}
@media (max-width: 767px) {
  .content-head02 {
    font-size: 2.4rem;
  }
}
/* ----------------------------------------
- Links
---------------------------------------- */
a {
  color: #000;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}
.link-arrow::before {content: "";display: inline-block;width: .5em;height: .5em;margin: 0 .5em 1px 0;border-top: 1px solid;border-right: 1px solid;border-color: #000 #000 transparent transparent;-webkit-transform: rotate(45deg);transform: rotate(45deg);}
a.btn {
  display: block;
}
a.ov:hover img {
  opacity: .7;
  -webkit-transition: all .5s;
  transition: all .5s;
}
/* ----------------------------------------
- Layout
---------------------------------------- */
#globalheader,
.main,
#globalfooter {
  display: block;
  width: 100%;
}
.main {
  padding: 0;
}
.content {
  margin: 0 auto;
  max-width: 1620px
}
.content.w-large {max-width: 1280px;}
.content.w-medium {max-width: 1024px;}
.content.w-small {max-width: 800px;}
@media (max-width: 767px) {
  .content {
    padding: 0 10px;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .content {
    padding: 0 1em;
  }
}
/* ----------------------------------------
- Header
---------------------------------------- */
#globalheader .content,
#globalnav .nav-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#globalheader.is-fixed {
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 10;
}
@media (max-width: 767px) {
#globalheader.is-fixed {position: relative}}
#globalheader .content {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 1em;
}
#globalheader .content .logo a {
    display: block;
  }
#globalheader .content .logo img {
    width: 90px;
  }
@media (max-width: 767px) {
#globalheader .content {padding: 10px;}
#globalheader .content .logo img {
    width: 48px;}
#globalheader .content .hamburger {
    position: fixed;
    top: 10px;
    right: 10px;
    width: 48px;
    height: 40px;
    margin: 0;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    z-index: 20}
#globalheader .content .hamburger:focus {outline: 0;}
#globalheader .content .hamburger span {
      display: block;
      width: 36px;
      height: 3px;
      background-color: #000;
      margin: 5px 0 5px 12px;
      -webkit-transition: 0.4s;
      transition: 0.4s;}
#globalheader .content .hamburger span:nth-child(2) {
      width: 24px;
      margin-left: 24px;}
#globalheader .content .hamburger.active span:nth-child(1) {-webkit-transform: rotate(45deg) translate(0, 0);transform: rotate(45deg) translate(0, 0);}
#globalheader .content .hamburger.active span:nth-child(2) {width: 36px;margin-left: 12px;-webkit-transform: rotate(-45deg) translate(6px, -6px);transform: rotate(-45deg) translate(6px, -6px);}}
#globalheader.is-fixed .content .logo img {
  width: 72px;
}
@media (max-width: 767px) {
#globalheader.is-fixed .content .logo img {width: 48px}}
/* Navigation */
#globalnav {
  position: relative;
  width: calc(100% - 96px);
}
#globalnav .nav-content {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
    padding: 0;
  }
#globalnav .nav-content li {
      margin: 0 1.5em;
    }
#globalnav .nav-content a {
      display: block;
      position: relative;
      padding: .5em;
      font-size: 1.6rem;
      font-family: Roboto;
      font-weight: 600;
      text-transform: uppercase;
      line-height: 1.1;
      border-bottom: 2px
    }
#globalnav .nav-content a::after {content: "";position: absolute;left: 0;width: 100%;height: 2px;background: #000;bottom: 0;-webkit-transform: scale(0, 1);transform: scale(0, 1);-webkit-transform-origin: right top;transform-origin: right top;-webkit-transition: -webkit-transform 0.5s;transition: -webkit-transform 0.5s;transition: transform 0.5s;transition: transform 0.5s, -webkit-transform 0.5s;}
#globalnav .nav-content a:hover {text-decoration: none;}
#globalnav .nav-content a:hover::after {-webkit-transform: scale(1, 1);transform: scale(1, 1);-webkit-transform-origin: left top;transform-origin: left top;}
#globalnav .nav-content .current a::after {
      -webkit-transform: scale(1, 1);
              transform: scale(1, 1);
    }
@media (max-width: 767px) {
#globalnav {display: none;position: fixed;top: 0;right: 0;width: 250px;height: 100vh;background-color: #f2f2f2;padding: 10px;z-index: 5;-webkit-transition: top 0.3s ease;transition: top 0.3s ease;}
#globalnav .nav-content {
    margin-top: 48px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;}
    #globalnav .nav-content li {
      width: 100%;
      margin: 0 0 1em;
      padding: 0 1em;
    }
    #globalnav .nav-content a {
      padding-left: 1em;
    }
    #globalnav .nav-content a::before {
      content: "";
      position: absolute;
      top: 50%;
      left: 0;
      -webkit-transform: translate(0, -50%);
              transform: translate(0, -50%);
      width: 8px;
      height: 2px;
      background: #000;
    }
    #globalnav .nav-content a::after,
    #globalnav .nav-content .current a::after {
      display: none;
    }}
@media (min-width: 768px) and (max-width: 1024px) {
    #globalnav .nav-content li {
      margin: 0 .5em;
    }
    #globalnav .nav-content a {
      font-size: 1.4rem;
    }}
/* breadcrumb */
.breadcrumb .content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 24px;
}
.breadcrumb .content li {
    font-size: 1.4rem;
    line-height: 1.1;
  }
.breadcrumb .content li:not(:last-of-type)::after {
    content: "・";
    margin: 0 .5em;
    color: #222;
  }
.breadcrumb .content a,.breadcrumb .content span {
    color: #222;
  }
.breadcrumb .content em,.breadcrumb .content h1 {
    font-size: 100%;
    font-weight: bold;
  }
@media (max-width: 767px) {
.breadcrumb .content {padding: 10px;}
.breadcrumb .content li {
    font-size: 1.2rem;}}
/* ----------------------------------------
- Footer
---------------------------------------- */
#globalfooter .content {
    padding: 1em 1.5em;
  }
#globalfooter .copyright {
    font-size: 1.4rem;
  }
@media (max-width: 767px) {
#globalfooter .content {
    padding: 10px;}
#globalfooter .copyright {
    font-size: 1.2rem;}}
/* ----------------------------------------
- Section
---------------------------------------- */
.section {
  margin: 0;
  padding: 64px 0;
}
@media (max-width: 767px) {
.section {padding: 48px 0}}
.section-hero {
  position: relative;
  padding: 10px 0;
}
.section-hero .hero-image {
    display: block;
    position: relative;
    margin: 0;
    padding: 0 10px;
  }
.section-hero .hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    z-index: 2;
  }
.section-hero .hero-text .title {
      margin-bottom: .5em;
      padding: .25em 1em;
      background: #fff;
      font-size: 2.4rem;
      font-family: Roboto;
      font-weight: 600;
      white-space: nowrap;
    }
@media (max-width: 767px) {
.section-hero .hero-image {
    padding: 0;}
    .section-hero .hero-image figure {
      position: absolute;
      top: 0;
      width: 100%;
      opacity: 0;
      -webkit-animation: fade 15s infinite;
              animation: fade 15s infinite;
    }
    .section-hero .hero-image img {
      -o-object-fit: cover;
         object-fit: cover;
    }
    .section-hero .hero-image figure:nth-child(1) {
      -webkit-animation-delay: 0s;
              animation-delay: 0s;
    }
    .section-hero .hero-image figure:nth-child(2) {
      -webkit-animation-delay: 5s;
              animation-delay: 5s;
    }
    .section-hero .hero-image figure:nth-child(3) {
      -webkit-animation-delay: 10s;
              animation-delay: 10s;
    }
    .section-hero .hero-text .title {
      font-size: 2rem;
    }}
@media (min-width: 768px) and (max-width: 1024px) {
.section-hero .hero-image {
    padding: 0;}}
@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  15% {
    opacity: 1;
  }
  30% {
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
.text p {
  margin-bottom: 1.5em;
}
/* ----------------------------------------
- Parts
---------------------------------------- */
.button-link {
  margin: 0 auto;
  padding: 0 4px 4px 0;
  text-align: center;
}
.button-link a,
  .button-link span {
    display: inline-block;
    position: relative;
    padding: .5em 2em .5em 1em;
    background: #000;
    color: #fff;
    line-height: 1.1;
    text-align: center;
    -webkit-transition: all .3s;
    transition: all .3s;
    z-index: 1;
  }
.button-link a::before, .button-link a::after, .button-link span::before, .button-link span::after {
    content: "";
    position: absolute;
    display: inline-block;
  }
.button-link a::before,
  .button-link span::before {
    top: 4px;
    left: 4px;
    width: 100%;
    height: 100%;
    border: 1px solid #000;
    z-index: 1;
  }
.button-link a::after,
  .button-link span::after {
    top: 50%;
    right: 4px;
    width: 1em;
    height: 1em;
    background: url(/images/ico_arrow_f.svg) no-repeat center center;
    background-size: contain;
    -webkit-transform: translate(0,-50%);
            transform: translate(0,-50%);
  }
.button-link a:hover {
    color: #000;
    background: #fff;
    text-decoration: none;
    -webkit-transform: translate(4px,4px);
            transform: translate(4px,4px)
  }
.button-link a:hover::before {top: 0;left: 0;}
.button-link a:hover::after {background-image: url(/images/ico_arrow.svg);}
a:hover .button-link span {
  color: #000;
  background: #fff;
  text-decoration: none;
  -webkit-transform: translate(4px,4px);
          transform: translate(4px,4px)
}
a:hover .button-link span::before {top: 0;left: 0;}
a:hover .button-link span::after {background-image: url(/images/ico_arrow.svg);}
.button-link.white a,
  .button-link.white span {
    background: #fff;
    color: #000;
  }
.button-link.white a::before,
  .button-link.white span::before {
    border: 1px solid #fff;
  }
.button-link.white a::after,
  .button-link.white span::after {
    background-image: url(/images/ico_arrow.svg);
  }
.button-link.white a:hover {
    color: #fff;
    background: #000
  }
.button-link.white a:hover::after {background-image: url(/images/ico_arrow_f.svg);}
.button-link.white a:hover::before {border: 1px solid #000;}
/* ----------------------------------------
- Pages
---------------------------------------- */
/* About */
#about .section .content {
    text-align: center
  }
#about .section .content:not(:last-child) {margin-bottom: 4em;}
#about .about-logo {
    max-width: 200px;
    margin: 0 auto 1.5em;
  }
#about .company-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid #d9d9d9;
    text-align: left;
  }
#about .company-table th,#about .company-table td {
      padding: 1em 2em;
      border-bottom: 1px solid #d9d9d9;
    }
#about .company-table th {
      white-space: nowrap;
      background: #f2f2f2;
    }
#about .company-table td {
      vertical-align: top;
    }
@media (max-width: 767px) {
    #about .company-table th,#about .company-table td {
      padding: .5em 1em;
    }}
/* Stocklist */
#stocklist .section {
    padding: 0;
  }
#stocklist .stocklist-list {
    border-top: 1px solid #d9d9d9;
    margin: 0;
    padding: 1.5em 0 0;
  }
#stocklist .stocklist-list li {
      margin-bottom: 1.5em;
      border-bottom: 1px solid #d9d9d9;
    }
#stocklist .stocklist-list .column-box:not(:last-child) {
      margin-bottom: 1em;
    }
#stocklist .stocklist-list .column-box a {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: start;
          -ms-flex-align: start;
              align-items: flex-start;
      width: 100%;
      margin-bottom: 1.5em;
    }
#stocklist .stocklist-list .text {
      margin-right: 2em;
    }
#stocklist .stocklist-list .label {
      margin-bottom: .5em;
      font-size: 1.2rem;
    }
#stocklist .stocklist-list .label span::before,#stocklist .stocklist-list .label span::after {
        content: "-";
        display: inline;
      }
#stocklist .stocklist-list .label span::before {
        padding-right: .2em;
      }
#stocklist .stocklist-list .label span::after {
        padding-left: .2em;
      }
#stocklist .stocklist-list .title {
      margin: 0;
      font-size: 1.8rem;
      font-weight: bold;
    }
#stocklist .stocklist-list .button-link {
      margin: -4px 0 0 0;
    }
@media (max-width: 767px) {
    #stocklist .stocklist-list .title {
      font-size: 1.6rem;
    }
    #stocklist .stocklist-list .button-link {
      margin-top: -2px;
    }}
@media (max-width: 360px) {
    #stocklist .stocklist-list .button-link {
      width: 100%;
      margin-top: 8px;
    }}
/* Collection */
.collection-content {
  padding: 0 10px 40px;
}
.collection-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-column-gap: 20px;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  grid-row-gap: 20px;
  row-gap: 20px;
}
.collection-list > a,
  .collection-list .pict {
    display: block;
    position: relative;
    overflow: hidden;
  }
.collection-list a img {
    -webkit-transition: 0.5s;
    transition: 0.5s;
  }
.collection-list > a:hover img {-webkit-transform: scale(1.1, 1.1);transform: scale(1.1, 1.1);}
.collection-list .pict {
    margin: 0 0 1em;}
.collection-list .title {
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;}
#collection-index-list {
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 32px;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  grid-row-gap: 48px;
  row-gap: 48px;
  margin: 0 10px;
}
#collection-index-list a:hover img {
    opacity: .8;
  }
@media (max-width: 767px) {
  .collection-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    grid-row-gap: 12px;
    row-gap: 12px;
  }
    .collection-list .title {
      font-size: 1.4rem;
    }
  #collection-index-list {
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 12px;
    -webkit-column-gap: 12px;
       -moz-column-gap: 12px;
            column-gap: 12px;
    grid-row-gap: 32px;
    row-gap: 32px;
    margin: 0 auto;
  }
}
@media (min-width: 768px) and (max-width: 1024px) {
  #collection-index-list {
    grid-column-gap: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    grid-row-gap: 32px;
    row-gap: 32px;
  }
}
