@charset "UTF-8";

/* ---------- header ---------- */
.site-title {
  padding: 2.5rem 0;
}

.site-title p, .subMenu-pc {
  display: none;
}


/* ---------- humburger ---------- */
.hamNav {
  position: relative;
  width: 6rem;
  font-size: 1.6rem;
  float: none;
  /* opacity: 0.8; */
}
/* ---------- .gnavBtn ---------- */
/*   ボタンタグ設定   */
button.gnavBtn {
  display: block;
  background: #fff;
  box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 0.5rem;
  padding: 5px 15px 15px;
  width: 60px;
  height: 60px;
  color: #333;
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999;
  outline: none;
  transition: 0.5s;
}
/*   ハンバーガーボタン3本線   */
button span.bar {
  display: block;
  height: 2px;
  background-color: #000;
  margin: 5px 0 7px;
  transition: 0.3s;
  transform-origin: 0 0;
}
button span.bar:last-child {
  margin-bottom: 0;
}
/*  メニューアクティブ時  */
button.active span.bar {
  width: 34px;
}
button.active .bar1 {
  transform: rotate(33deg);
}
button.active .bar2 {
  opacity: 0;
}
button.active .bar3 {
  transform: rotate(-33deg);
}
button.gnavBtn:hover span {
  opacity: 0.6;
}
button.active.gnavBtn:hover .bar2 {
  opacity: 0;
}

/*------------- .gnavBtn li -------------*/
.hamNav ul.main-menu {
  background: #fff;
  width: 30rem;
  padding: 0 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0.2rem 0.2rem 0.5rem rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 6.5rem;
  right: -30rem;
  transition: 0.5s;
}
.hamNav.active ul {
  right: 0;
}
.hamNav li {
  border-bottom: 1px #777 dotted;
}
.hamNav li a {
  display: block;
  height: 7rem;
  margin: 0 auto;
  color: #333;
  font-size: 1.8rem;
  font-weight: 500;
  text-decoration: none;
  line-height: 7rem;
  padding-left: 6rem;
  transition: .5s;
}
.hamNav li a:hover {
  opacity: 1;
}
.hamNav ul.main-menu > li:nth-child(1) > a {
  background: url(../img/icon-home.png) no-repeat 1rem center;
}
.hamNav ul.main-menu > li:nth-child(2) > a {
  background: url(../img/icon-bag.png) no-repeat 1rem center;
}
.hamNav ul.main-menu > li:nth-child(3) > a {
  background: url(../img/icon-company.png) no-repeat 1rem center;
}
.hamNav ul.main-menu > li:nth-child(4) > a {
  background: url(../img/icon-mail.png) no-repeat 1rem center;
  border-bottom: none;
}

.hamNav ul.item-menu {
  padding-left: 5rem;
}
.hamNav ul.item-menu li {
  border-top: 1px #777 dotted;
  border-bottom: none;
}
.hamNav ul.item-menu li a {
  background: none;
  height: 6rem;
  line-height: 6rem;
  padding-left: 2.5rem;
  position: relative;
}
.hamNav ul.item-menu li a::before {
  content: "-";
  display: block;
  font-weight: normal;
  position: absolute;
  top: 50%;
  left: 1rem;
  transform: translateY(-50%);
}

.hamNav.active .modal-bg {
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, .2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.gNav-pc {
  display: none;
}



/* ---------- breadclumb ---------- */

.breadclumb {
  margin: 1rem auto 0;
  font-size: 1.4rem;
}
.breadclumb ul {
  display: flex;
}
.breadclumb li {
  position: relative;
  padding-right: 3rem;
}
.breadclumb li::after {
  content: "";
  display: block;
  width: 0.5rem;
  height: 0.5rem;
  border-top: 0.1rem #333 solid;
  border-right: 0.1rem #333 solid;
  position: absolute;
  top: 30%;
  right: 1.5rem;
  transform: rotate(45deg);
}
.breadclumb li:last-child::after {
  display: none;
}
.breadclumb li a {
  text-decoration: underline;
}



/* ---------- main ---------- */

main h2 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 5.6rem;
  position: relative;
}
h2::before {
  content: '';
  display: inline-block;
  width: 8.8rem;/*線の長さ*/
  height: 0.1rem;/*線の太さ*/
  background-color: #b6a39e;/*線の色*/
  position: absolute;
  left: 50%;
  bottom: -4px;/*線の上下位置*/
  transform: translateX(-50%);/*位置調整*/
}




/* ---------- footer ---------- */

footer {
  background: #000;
  color: #fff;
}
footer a {
  color: #fff;
}

.footer-info {
  margin-bottom: 5rem;
}
.footer-info .site-name {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  font-size: 4.8rem;
  padding: 3rem 0 2rem;
}
.contact-btn a,
.footer-nav .youtube a {
  display: block;
  max-width: 30rem;
  margin: 2rem 0;
  background: url(../img/icon-mail-wh.svg) no-repeat 4.5rem center;
  background-size: 4rem;
  font-size: 2rem;
  padding: 1rem 0 1rem 10rem;
  border: 0.1rem #fff solid;
  border-radius: 1rem;
  position: relative;
}
.footer-nav .youtube a {
  margin-left: 1.8rem;
  background: none;
  padding: 0.8rem 0 1rem 6.5rem;
}
.contact-btn a::after,
.footer-nav .youtube a::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border: 0.6rem transparent solid;
  border-left: 0.7rem #fff solid;
  position: absolute;
  top: 50%;
  right: 4.5rem;
  transform: translateY(-50%);
}

.bnr-first {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 8rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 999;
}

.footer-nav h3 {
  font-weight: bold;
  border-left: 0.5rem #fff solid;
  padding: 0.2rem 1.5rem;
  margin-bottom: 1rem;
}
.footer-nav ul {
  margin-bottom: 4rem;
}
.footer-nav li {
  padding-left: 1.8rem;
  margin-bottom: 0.7rem
}
.footer-nav .relation li a {
  position: relative;
}
.footer-nav .relation li a::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.5rem;
  background: url(../img/open_in_new_wiindow-wh.svg) no-repeat center center;
  position: absolute;
  top: 50%;
  right: -3rem;
  transform: translateY(-50%);
}

.copyright {
  font-family: 'Noto Serif JP', serif;
  font-size: 1.2rem;
  text-align: center;
  padding: 1rem 0 8rem;
}





/* ---------- PAGE TOP ---------- */

#page-top {
  display: none;
}





/*-------------------------------
Tab 750-
---------------------------------*/
@media screen and (min-width:750px) {

  /* ---------- footer ---------- */

  .footer-top {
    display: flex;
  }

  .footer-info {
    width: 40%;
  }
  .footer-guide {
    width: 60%;
    padding-left: 5rem;
  }

  .bnr-first {
    position: static;
    height: auto;
    margin: 4rem auto;
  }

  .copyright {
    font-family: 'Noto Serif JP', serif;
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem 0;
  }



}

/*-------------------------------
Tab 800-
---------------------------------*/
@media screen and (min-width:800px) {

  /* ---------- header ---------- */

  header .inner {
    display: flex;
    justify-content: space-between;
  }

  .subMenu-pc {
    display: block;
    position: relative;
  }
  .subMenu-pc p:first-child {
    padding: 2.3rem 15rem 0 0;
  }
  .subMenu-pc p:last-child {
    position: absolute;
    top: 0;
    right: 0;
  }

  .hamNav {
    display: none;
  }

  .gNav-pc {
    display: block;
    background: #000;
    padding: 0.8rem 0.5rem;
  }

  .gNav-pc ul {
    display: flex;
    justify-content: space-between;
  }
  .gNav-pc li {
    width: 24%;
  }
  .gNav-pc li a {
    display: block;
    background: #fff no-repeat 1.5rem center;
    font-size: 1.8rem;
    font-weight: 500;
    padding: 1rem 0.5rem 1rem 5.5rem;
    border-radius: 0.5rem;
  }
  .gNav-pc li:nth-child(1) a {
    background-image: url(../img/icon-home.png);
  }
  .gNav-pc li:nth-child(2) a {
    background-image: url(../img/icon-bag.png);
  }
  .gNav-pc li:nth-child(3) a {
    background-image: url(../img/icon-company.png);
  }
  .gNav-pc li:nth-child(4) a {
    background-image: url(../img/icon-mail.png);
  }



  /* ---------- main ---------- */

  main h2 {
    font-size: 4rem;
  }



  /* ---------- PAGE TOP ---------- */

  #page-top {
    display: block;
  }
  #page-top a {
    display: block;
    width: 8rem;
    height: 8rem;
    background: #000;
    border: 0.5rem #fff solid;
    border-radius: 50%;
    padding-top: 7rem;
    overflow: hidden;
    position: fixed;
    bottom: 2rem;
    right: 2rem;
  }
  #page-top a::before {
    content: "";
    display: block;
    width: 1.7rem;
    height: 1.7rem;
    border-top: 0.4rem #fff solid;
    border-left: 0.4rem #fff solid;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
  }




}
/*-------------------------------
Tab 950-
---------------------------------*/
@media screen and (min-width:950px) {

  /* ---------- header ---------- */
  .site-title p {
    display: block;
    padding-top: 1rem;
  }






}



/*-------------------------------
PC 1000-
---------------------------------*/
@media screen and (min-width:1000px) {

  /* ---------- footer ---------- */

  .footer-info {
    width: 35%;
  }
  .footer-guide {
    width: 65%;
    padding-left: 5rem;
  }

  .footer-nav {
    display: flex;
  }
  .footer-nav .mySite {
    width: 48%;
  }
  .footer-nav .relation-box {
    width: 52%;
    padding-left: 2%;
  }




}



/*-------------------------------
PC 1100-
---------------------------------*/
@media screen and (min-width:1100px) {

  /* ---------- header ---------- */
  .site-title {
    display: flex;
    align-items: flex-end
  }



}






