@charset "utf-8";
/* CSS Document */

/* 共通
=========================================*/
html,
body,
wrapper {
  height: 100%;
}
body {
  background: #ffffff;
  font-size: 16px;
  color: #191b1d;
  font-family: 'Kosugi Maru', sans-serif,'Roboto', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', 'メイリオ', Meiryo, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  letter-spacing: 0.05em;
  box-sizing: border-box;
}
a {
  display: block;
  text-decoration: none;
  color: #191b1d;
}
img {
  vertical-align: middle;
  outline: none;
  width: 100%;
  height: auto;
}
h2 {
  font-size: 2em;
  color: #ffe63f;
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: 0.1em;
  position: relative;
}
h2 small {
  display: block;
  font-size: 14px;
  padding-top: 14px;
  color: #666666;
  font-weight: normal;
}
p {
  line-height: 1.5;
  text-align: center;
  font-size: 1.2em;
  font-weight: 500;
}
ul {
  list-style: none;
}
*:focus {
  outline: none !important;
}
.sp_only{display: none;}

/* ヘッダー
=========================================*/
header {
  padding: 0 5%;
  position: fixed;
  top: 0;
  width: 100%;
  min-width: 1160px;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  z-index: 999;
  height: 80px;
}
h1 a {
  color: #ffe63f;
 }
.headerColor-default {
  background:rgba(255,230,63,0.7);
  transition: .8s ease;
}
.js_h1_white{
  color: #ffffff;
  transition: .8s ease;
}
h1 {
  margin: 0;
  padding: 0 0 0 5px;
  width: 80px;
  font-size: 2.2rem;
  letter-spacing: 0.25rem;
}
nav {
  margin: 0 0 0 auto;
}
nav ul {
  list-style: none;
  margin: 0;
  display: flex;
}
nav li {
  padding: 0 1em;
  font-size: 16px;
}
.nav__item a {
  text-align: left;
  display: inline-block;
  text-decoration: none;
  position: relative;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  color: #333333;
}
.nav__item a:hover {
  text-decoration: none;
}
.nav__item a:after {
  content: "";
  height: 1px;
  width: 2em;
  position: absolute;
  bottom: -.6em;
  left: 0;
  right: 0;
  margin: auto;
  background-color:#ffe63f;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: center right;
  transform-origin: center right;
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: opacity, -webkit-transform;
  transition-property: opacity, -webkit-transform;
  transition-property: opacity, transform;
  transition-property: opacity, transform, -webkit-transform;
}
.nav__item a:hover:after {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: center left;
  transform-origin: center left;
}
.fadein {
  opacity: 0.1;
  transform: translate(0, 50px);
  transition: all 0.8s;
}
.fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}

/* メインコンテンツ
=========================================*/
main{
  width: 100%;
  min-width: 1160px;
}
/*main-visual------------------*/
.main-visual {
  width: 90%;
  height: 100vh;
  min-height: 750px;
  display: flex;
  justify-content: center;
  align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #ffe63f;
  margin: 0 auto;
}
.main-visual-inner{
  width: 100%;
}
.main-visual__title {
  width: 660px;
  margin: 0 auto;
  padding: 0 0;
}
.main-visual__title h2{
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  color: #fff;
  margin: 0 auto;
  font-size: 2.8em;
  letter-spacing: 0.45rem;
}

.main-visual__title h2 span{
  text-orientation: upright;
-webkit-text-orientation: upright;
}


.scrolldown{
  position:absolute;
  bottom:10px;
  right:50%;
  animation:mousemove 1.6s ease-in-out infinite;
}
@keyframes mousemove{
    0%{bottom:10px;}
    50%{bottom:5px;}
   100%{bottom:10px;}
}
.scrolldown span{
  position: absolute;
  left:-22px;
  bottom:50px;
  color: #ffffff;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scrolldown span::after{
  content: "";
  position: absolute;
  top:10px;
  left:20px;
  width: 1px;
  height: 15px;
  background: #ffffff;
  animation: mousepathmove 1.4s linear infinite;
  opacity:0;
}
@keyframes mousepathmove{
  0%{
    height:0;
    top:10px;
    opacity: 0;
  }
  50%{
    height:15px;
    opacity: 1;
  }
  100%{
    height:0;
    top:30px;
    opacity: 0;
  }
}

/*company-cont------------------*/
.campany-cont {
  padding: 80px 0;
}
.campany-cont .inner {
  width: 800px;
  margin: 0 auto;
}
.campany-cont table {
  border-collapse: collapse;
  width: 100%;
  background-color: #fff;
  font-size: 15px;
}
.campany-cont table th {
  border-bottom: solid 2px #ffe63f;
  text-align: left;
  width: 180px;
  padding: 20px 0;
  padding-left: 15px;
  color: #666666;
}
.campany-cont table td {
  padding-left: 30px;
  border-bottom: solid 2px #ddd;
  text-align: left;
  line-height: 2.5rem;
}
.campany-cont .list{
  padding-left: 65px;
}
.campany-cont ol{
  padding: 20px 0;
}
.campany-cont ol li{
  line-height: 2;
}
/*contact-cont------------------*/
.contact-cont {
  padding: 80px 0;
}
.contact-cont h3 {
  font-size: 1.2em;
  padding-bottom: 20px;
  color: #191b1d;
}
.contact-cont h3 i{
  padding-right: 5px;
}
.contact-cont .inner {
  width: 800px;
  margin: 0 auto;
}
.contact-cont .inner ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.contact-cont .inner ul li{
  width: 380px;
  padding: 20px 0;
  background-color: #ffffff;
  text-align: center;
  margin-right: 2%;
  border: 1px solid #ddd;
}
.contact-cont .inner ul li a {
  text-decoration: underline;
    display: inline-block;
}

/* フッター
=========================================*/
footer .inner {
  width: 90%;
  margin: 0 auto;
  padding: 1.2em 0;
  border-top: 1px solid #ffe63f;
}
.copyright{
  color: #191b1d;
  font-size: 11px;
}

/* SP
=========================================*/
@media screen and (max-width: 750px){
  .pc_only {display: none;}
  .sp_only {display: block;}
  header {
    height: 58px;
    min-width: auto;
  }
  /* sp_nav ここから */
  header #nav {
    transition: all .6s;
    overflow-y: auto;
    width: 80%;
    height: 100vh;
    z-index: 200;
    top: 0;
    right: -80%;
    background-color: #fff;
    position: fixed;
  }
  nav ul li{
    font-size: 1.4em;
    padding: 2em 1em;
  }
  .nav__cart span{padding-left: 1.6em;}
  .nav__cart span:before{margin-top: -.65em;}
  header .nav_btn {
    width: 24px;
    height: 24px;
    z-index: 300;
    top: 20px;
    right: 4%;
    cursor: pointer;
    position: absolute;
  }
  .hamburger_line {
    transition: all .6s;
    width: 24px;
    height: 1px;
    left: 0;
    background-color:#3e3c3a;
    position: absolute;
  }
  .hamburger_line1 {top: 0;}
  .hamburger_line2 {top: 8px;}
  .hamburger_line3 {top: 16px;}
  .nav_bg {
    opacity: 0;
    transition: all .6s;
    width: 100vw;
    height: 100vh;
    z-index: 100;
    top: 0;
    left: 0;
    visibility: hidden;
    background-color: #000;
    cursor: pointer;
    position: fixed;
  }
  .nav_open header #nav {
    right: 0;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .nav_open .nav_bg {
    opacity: .8;
    visibility: visible;
  }
  .nav_open .hamburger_line1 {
    transform: rotate(45deg);
    top: 8px;
  }
  .nav_open .hamburger_line2 {
    width: 0;
    left: 50%;
  }
  .nav_open .hamburger_line3 {
    transform: rotate(-45deg);
    top: 8px;
  }
  /* sp_nav ここまで */
  p {font-size: 1em;}
  h1{width: 60px; font-size: 1.8rem;}
  .main-visual__title h2 {font-size: 1.8em;}

  /* メインコンテンツ
  =========================================*/
  main {min-width: auto;}
  .main-visual {
    height: 100vh;
    min-height: auto;
    padding-top: 0;
  }
  .main-visual-inner{
    width: 100%;
  }
  .main-visual__title {
    width: 80%;
    padding: 0 0;
    line-height: normal;
    height: auto;
  }
  .main-visual a{
    padding: 10px 0 60px;
  }
  .main-visual a::after{
    height: 50px;
  }

  /*campany-cont------------------*/
  .campany-cont .inner{width: 100%;}
  .campany-cont table{
    width: 90%;
    margin: 0 auto;
  }
  .campany-cont table tr,.campany-cont table th,.campany-cont table td{
    display: block;
    width: auto;
  }
  .campany-cont table th{
    border: none;
    text-align: left;
    padding: 4% 2%;
  }
  .campany-cont td{
    padding: 0 2% 4% 4%!important;
    text-align: left;
    line-height: 1.5;
  }
  .campany-cont ol{
    padding: 0 0 0 8%;
  }

  /*contact-cont------------------*/
  .contact-cont {width: 100%;}
  .contact-cont .inner{
    width: 90%;
    margin: 0 auto;
  }
  .contact-cont .inner ul li{
    width: 90%;
    margin: 0 auto;
  }
  .contact-cont .inner ul li:first-child{
    margin-bottom: 5%;
  }

   /*footer------------------*/
  footer .inner{width: 100%;}
  footer .navi{flex-direction: column;}
  .copyright{order: 2;}
  footer ul{order: 1;}
}
