@charset "utf-8";

/* ナビゲーションのCSS */
* {
  margin: 0;
  padding: 0;
}

/*==================================================
ナビゲーション　ここから
====================================================*/
/*========= 必ず入れるCSS ===============*/
a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

a:hover {
  -webkit-transition: all 0.3s ease;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (min-width: 480px) {
  a:hover {
    filter: alpha(opacity=90);
    -moz-opacity: 0.9;
    opacity: 0.9;
  }
}

/*===========================================================*/
/*　 ドロップダウンメニュー（上） */
/*===========================================================*/
/*========= ナビゲーションドロップダウンのためのCSS ===============*/
nav ul {
  list-style: none;
  display: flex;
  justify-content: flex-end;
}

nav ul.nav01c {
  width: 900px;
}

nav ul.btn-cat_wrap {
  width: 150px;
  justify-content: flex-end;
  padding: 0 10px 0 0;
}

nav ul ul {
  display: block;
}

nav ul li {
  position: relative;
}

nav ul li a {
  display: block;
  text-decoration: none;
  color: #000000;
  padding: 0;
  transition: all .2s;
}

nav ul li li a {
  padding: 18px 20px;
}

nav ul li a:hover {
  color: #fff;
}

nav ul li.list-sp {
  display: none;
}

nav ul.btn-cat_wrap a.button {
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  background: #f0ff12;
  color: #000000;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  border-radius: 16px;
  padding: 10px 14px;
  outline: none;
  transition: ease .2s;
}

nav ul.btn-cat_wrap a.button:hover {
  color: #ffffff;
}

nav ul.btn-cat_wrap a.button::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  content: '';
  background: #000000;
  transform-origin: left bottom;
  transform: scale(1, 0);
  transition: transform .3s;
}

nav ul.btn-cat_wrap a.button:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

nav ul.btn-cat_wrap .button span {
  position: relative;
  z-index: 3;
  color: #000000;
}

nav ul.btn-cat_wrap .button:hover span {
  color: #ffffff;
}

/*  お客様の声の「New」マーク  */
.icons-new02 {
  width: auto;
  margin: auto;
  position: absolute;
  padding: 0px 2px;
  color: #000000;
  font-size: 12px;
  border-radius: 3px;
  top: -15px;
  left: 0px;
  background-color: #f0ff12;
  height: auto;
  font-weight: 600;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
/* nav ul li.has-child::before {
  content: '';
  position: absolute;
  right: 20px;
  top: 5px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #000000;
  border-right: 2px solid #000000;
  transform: rotate(135deg);
} */

nav ul li.has-child a.icon-arrow::after {
  content: '';
  margin: 0;
  width: 6px;
  height: 6px;
  display: block;
  border: 1px solid #000000;
  border-color: transparent #000000 #000000 transparent;
  transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  position: absolute;
  left: 95px;
  top: 4px;
  transition: all .1s linear;
  background: none;
  border-radius: 0;
}

nav ul li.has-child a.icon-arrow:hover::after {
  content: '';
  margin: 0;
  width: 6px;
  height: 6px;
  display: block;
  border: 1px solid #000000;
  border-color: transparent #000000 #000000 transparent;
  transform: rotate(225deg);
  -ms-transform: rotate(225deg);
  -webkit-transform: rotate(225deg);
  position: absolute;
  left: 95px;
  top: 18px;
  transition: all .1s linear;
  background: none;
  border-radius: 0;
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav li.has-child ul {
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 4;
  background: #ffffff;
  border: 2px solid #000000;
  visibility: hidden;
  opacity: 0;
  transition: all .3s;
  width: 210%;
}

/*hoverしたら表示*/
nav li.has-child:hover>ul,
nav li.has-child ul li:hover>ul,
nav li.has-child:active>ul,
nav li.has-child ul li:active>ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a {
  border-bottom: solid 1px rgba(255, 255, 255, 0.4);
}

nav li.has-child ul li a {
  border-bottom: 2px solid #000000;
}

nav li.has-child ul li:last-child a {
  border-bottom: none;
}

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active {
  background: #000000;
  color: #ffffff;
}

@media screen and (max-width:1200px) {
  nav ul li a {
    padding: 20px;
  }

  nav ul li li a {
    padding: 10px 20px;
  }

  nav ul li.has-child::before {
    display: none;
  }

  nav {
    padding: 0;
  }

  nav ul {
    display: block;
  }

  nav ul li a {
    border-bottom: 2px solid #000000;
  }

  /*矢印の位置と向き*/
  nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }

  nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }

  nav ul.btn-cat_wrap li {
    margin-right: 0;
  }

  nav ul.btn-cat_wrap a.button {
    width: 100%;
    padding: 20px 10px;
    border: none;
    font-size: 22px;
  }

  /*==矢印の設定*/
  /*2階層目を持つliの矢印の設定*/
  nav ul li.has-child a.icon-arrow::after {
    display: none;
  }

  nav ul li.has-child a.icon-arrow:hover::after {
    display: none;
  }
}

/*===========================================================*/
/*　 スクロール途中から上部固定 */
/*===========================================================*/
#header {
  position: fixed;
  /*fixedを設定して固定*/
  height: 70px;
  /*高さ指定*/
  width: 100%;
  /*横幅指定*/
  z-index: 999;
  /*最前面へ*/
  /*以下はレイアウトのためのCSS*/
  display: flex;
  justify-content: space-between;
  align-items: center;
  text-align: center;
  padding: 20px 0 20px 0;
  background: rgba(255, 255, 255, 0.7);
}

@media screen and (max-width:1200px) {

  #header,
  #header.UpMove,
  #header.DownMove {
    animation: none;
    padding: 0;
    display: block;
  }
}

/*==================================================
　 クリックしたらナビが上から下に出現
===================================*/
@media screen and (max-width:1200px) {
  #g-nav {
    /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
    position: fixed;
    z-index: 999;
    /*ナビのスタート位置と形状*/
    top: -120%;
    left: 0;
    width: 100%;
    height: 100vh;
    /*ナビの高さ*/
    background: #f1f1f1;
    /*動き*/
    transition: all 0.6s;
  }

  /*アクティブクラスがついたら位置を0に*/
  #g-nav.panelactive {
    top: 0;
  }

  /*ナビゲーションの縦スクロール*/
  #g-nav.panelactive #g-nav-list {
    /*ナビの数が増えた場合縦スクロール*/
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100vh;
    /*表示する高さ*/
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }

  /*ナビゲーション*/
  #g-nav ul {
    /*ナビゲーション天地中央揃え*/
    width: 90%;
    margin: 70px auto 0 auto;
  }

  #g-nav ul ul {
    width: 100%;
    margin: 0;
  }

  /* #g-nav ul li.has-child {
    display: none;
  } */
  /*プルダウンナビのCSS*/
  #g-nav ul li.has-child ul.ps_pd {
    display: none;
  }

  #g-nav ul li.has-child ul.ps_pd li {
    display: none;
  }

  /*リストのレイアウト設定*/
  #g-nav li {
    list-style: none;
    text-align: left;
  }

  #g-nav li a.sp_pd {
    color: #000000;
    text-decoration: none;
    padding: 10px 10px 10px 8%;
    display: block;
    letter-spacing: 0.1em;
    margin: 0;
  }

  #g-nav li.list-sp a {
    /* padding: 20px 0 20px 14%; */
  }

  nav ul li.list-sp {
    display: block;
    background: #ffffff;
  }

  .icons-new02 {
    top: 14px;
    left: -10px;
  }
}

/*==================================================
　 3本線が奥行きを持って回転して×に
===================================*/
.g-nav-openbtn {
  display: none;
}

@media screen and (max-width:1200px) {
  .g-nav-openbtn {
    display: block;
    position: fixed;
    z-index: 9999;
    top: 10px;
    right: 20px;
    cursor: pointer;
    width: 50px;
    height: 50px;
  }

  /*ボタン内側*/
  .g-nav-openbtn .openbtn-area {
    transition: all .4s;
  }

  .g-nav-openbtn span {
    display: inline-block;
    transition: all .2s;
    position: absolute;
    left: 6px;
    height: 2px;
    /*  border-radius: 2px;*/
    background: #000000;
    width: 80%;
  }

  .g-nav-openbtn span:nth-of-type(1) {
    top: 10px;
  }

  .g-nav-openbtn span:nth-of-type(2) {
    top: 25px;
  }

  .g-nav-openbtn span:nth-of-type(3) {
    top: 40px;
  }

  /*activeクラスが付与されると
 線と周りのエリアが回転して×になる*/
  .g-nav-openbtn.active .openbtn-area {
    transform: rotateY(-360deg);
  }

  .g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-135deg);
    width: 80%;
  }

  .g-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
  }

  .g-nav-openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(135deg);
    width: 80%;
  }
}

/*==================================================
　 左から右に線が伸びる（下部）
===================================*/
ul.nav01c li a {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  display: block;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  text-align: left;
  color: #000000;
  line-height: 1.4;
}

ul.nav01c .nav-list a.sp_pd.icon-arrow {
  cursor: default;
}

ul.nav01c .nav-list a.sp_pd {
  cursor: pointer;
}

ul.ps_pd a span {
  font-size: 14px;
}

ul.nav01c li .nav-list {
  margin: 0 30px 0 0;
}

ul.nav01c li.sp_liist {
  display: none;
}

ul.nav01c li.current a,
ul.nav01c li a:hover {
  color: #000000;
}

ul.nav01c li a::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform .3s;
}

ul.nav01c li li a::after {
  display: none;
}

/*現在地とhoverの設定*/
ul.nav01c li.current a::after,
ul.nav01c li a:hover::after {
  transform: scale(1, 1);
  /*X方向にスケール拡大*/
}

@media screen and (max-width:1200px) {
  ul.nav01c li a::after {
    display: none;
  }

  ul.nav01c li.sp_liist {
    display: block;
  }
}

/*-------------------- レイアウト部分 --------------------*/
/* header */
#header p.logo {
  position: relative;
  display: block;
  width: 160px;
  height: auto;
  top: 10px;
  left: 2%;
}

#header #g-nav-list {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#header #g-nav {
  width: 1090px;
}

@media screen and (max-width:1200px) {
  #header p.logo {
    position: absolute;
    top: 22px;
    left: 20px;
    width: 120px;
    padding: 0;
    z-index: 9999;
  }

  #header #g-nav {
    width: 100%;
  }

  #header #g-nav-list {
    flex-direction: column;
    justify-content: center;
    /* 20210703 変更部分 */
  }
}

/*  ----  パンクズリスト　ここから  ----  */
#breadcrumbs {
  display: block;
  position: relative;
  top: 90px;
  width: 100%;
  height: 30px;
}

#breadcrumbs ul {
  width: 980px;
  height: 100%;
  margin-right: auto;
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  justify-content: flex-start;
}

#breadcrumbs ul li a,
#breadcrumbs ul li span {
  height: 100%;
  position: relative;
  text-decoration: none;
  font-size: 12px;
  color: #000000;
  padding-right: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

#breadcrumbs ul li a::after {
  content: "";
  background-image: url(../images/icon_breadcrumbs.png);
  background-size: 4px 8px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 4px;
  height: 8px;
  display: block;
  position: relative;
  position: absolute;
  top: 11px;
  right: 0;
}

#breadcrumbs ul li span::after {
  content: "";
  background-size: 12.5px 30px;
  background-repeat: no-repeat;
  background-position: center top;
  width: 12.5px;
  height: 30px;
  display: block;
  position: relative;
  position: absolute;
  top: 0;
  right: 0;
}

#breadcrumbs ul li:nth-child(n+2) {
  padding-left: 15px;
}

@media (max-width: 1200px) {
  #breadcrumbs {
    display: none;
  }
}

/*  ----  //  パンクズリスト　ここまで  ----  */
/*==================================================
//　　ナビゲーション　ここまで
====================================================*/


/*------------------------------------------
ページのトップへ戻る ここから
------------------------------------------*/
/*
#toTop {
 position: relative;
 display: block;
 z-index: 99;
}

#toTop a {
 -webkit-transition: 0.3s;
 -moz-transition: 0.3s;
 -o-transition: 0.3s;
 transition: 0.3s;
 display: block;
 position: absolute;
 top: 0;
 right: 0;
 width: 60px;
 height: 60px;
 background: 333333;
}
#toTop a:hover {
 opacity: 0.8;
}
*/
/*--------------------------*/
#toTop {
  position: fixed;
  display: block;
  bottom: 70px;
  right: 20px;
  z-index: 99;
}

#toTop a {
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: 333333;
}

#toTop a:hover {
  opacity: 0.8;
}

/*------------------------------------------
// ページのトップへ戻る ここまで
------------------------------------------*/






/*------------------------------------------
　　footer ここから
-------------------------------------------*/
.flex_bet {
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}

#footer {
  border-top: 2px solid #ccc;
  padding: 20px 0 0 0;
}

#footer .footer-logo {
  width: 1150px;
  width: 120px;
  height: 100%;
  margin: 0 auto 20px;
}

#footer>.flex_bet {
  width: 1150px;
  margin: 0 auto;
}

#footer>.flex_bet ul {
  letter-spacing: -.40em;
  margin-bottom: 0;
}

#footer>.flex_bet ul li {
  display: inline-block;
  vertical-align: top;
  letter-spacing: normal;
  font-size: 12px;
  margin-right: 15px;
}

#footer>.flex_bet ul li a {
  color: #333;
}

#footer>.flex_bet ul li a:after {
  content: '>';
  display: inline-block;
  margin-left: 5px;
}

#footer>.flex_bet ul li a:hover {
  opacity: 0.75;
}

@media screen and (max-width: 1150px) {
  #footer>.flex_bet ul li {
    width: 47%;
    margin-right: 0;
    margin-bottom: 15px;
    text-align: left;
  }

  #footer>.flex_bet ul li:nth-child(even) {
    width: 53%;
  }
}

#footer>.flex_bet #copyright {
  color: #333;
  font-size: 14px;
}

@media screen and (max-width: 1150px) {
  #footer>.flex_bet #copyright {
    display: block;
    text-align: center;
    font-size: 10px;
    width: 100%;
    padding: 10px 0 15px;
    color: #666;
  }
}

@media screen and (max-width: 1150px) {
  #footer>.flex_bet {
    width: 100%;
  }
}

@media screen and (max-width: 1150px) {
  #footer {
    /*  border-top: none;*/
    padding: 20px 5% 0 5%;
  }
}

@media screen and (max-width: 480px) {
  #footer>.flex_bet ul {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  #footer>.flex_bet ul li {
    width: 100%;
  }

  #footer>.flex_bet ul li:nth-child(even) {
    width: 100%;
  }
}

/*------------------------------------------
// footer ここまで
-------------------------------------------*/