/* CSS Document */

html{
    font-family: "Yu Gothic Pr6N M", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", "メイリオ", sans-serif;
    line-height: 1.8;
    font-size: 62.5%;
    color: #333;
}
body{
  width: 100%;
  margin: 0;
}
#sidebar{
  display: none!important;
}

img{
  width: 100%;
  vertical-align: top;
}
ul{
  padding-left: 0;
}
ul li{
  list-style: none;
}
.sp{
  display: block!important;
}
.pc{
  display: none!important;
}
a{
  text-decoration: none;
}
a:hover {
    opacity: 0.7;
}
@media screen and (min-width: 768px) {
  .sp{
    display: none!important;
  }
  .pc{
    display: block!important;
  }
}

@media screen and (min-width: 835px) and (max-width: 1024px) {
  html {
      font-size: 60%;
  }
}



/* ヘッダー -------------- */
header{
  padding-top: 60px;
  padding-top: 16vw;
}
.header_area{
  width: 100%;
  height: 60px;
  height: 16vw;
  background-color: #ffffff;
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  transition: all 500ms ease; 
  box-sizing: border-box;
}
.header_area > ul{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 6.66%;
  padding-right: 6.66%;
  margin: 0;
  height: 100%;
}
.header_area > ul .logo{
  width: 30%;
}

/* ナビメニュー */
.menu_icon_area {
  width: 11%;
  cursor: pointer;
}
.menu_icon{
}
.is_close{
  width: 35px;
  width: 9.34vw;
  height: 32px;
  height: 8.5vw;
  background: url("../img/common/icon_menu_close.svg") no-repeat;
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}
.is_open{
  width: 35px;
  width: 9.33vw;
  height: 30px;
  height: 8vw;
  background: url("../img/common/icon_menu_open.svg") no-repeat;
  visibility: visible;
  opacity: 1;
  transition: 0.3s;
}

.menu_area{
  display: none;
  background-color: #333333;
  padding: 35px 6.66%;
}
.menu_nav_list li{
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
}
.menu_nav_list li::before{
  content: "";
  background-color: #ffffff;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.menu_nav_list li a{
  color: #ffffff;
  text-decoration: none;
}

.is_fixed{
  height: 100%;
  overflow: hidden;
}

@media screen and (min-width: 768px){
  header{
    padding-top: 100px;
    padding-top: 7.14vw;
  }
  .header_area{
    width: 100%;
    height: 100px;
    height: 7.14vw;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-left: 3.21%;
    padding-right: 3.21%;
  }
  .header_area > ul{
    width: 12.3%;
    padding: 0;
  }
  .header_area > ul .logo{
    width: 100%;
  }
  .menu_icon_area{
    display: none;
  }
  
  .menu_area{
    display: initial;
    background-color: initial;
    padding: 0;
    width: 69.6%;
  }
  .menu_nav_list{
    display: flex;
    justify-content: end;
    align-items: center;
    margin: 0;
  }
  .menu_nav_list li{
    font-size: 1.2vw;
    margin-bottom: 0;
    padding-left: 0;
  }
  .menu_nav_list li::before{
    display: none;
  }
  .menu_nav_list li:nth-child(n+2){
    margin-left: 6.2%;
  }
  .menu_nav_list li:last-child{
    width: 26%;
  }
  .menu_nav_list li:last-child a{
    color: #ffffff;
    width: 100%;
    display: block;
    padding-top: 10px;
    padding-bottom: 10px;
    text-align: center;
    background-color: #333;
  }
  .menu_nav_list li a{
    color: #333;
    text-decoration: none;
    font-weight: bold;
  }
}
@media screen and (min-width: 1400px){
  header{
    padding-top: 100px;
  }
  .header_area{
    width: 100%;
    height: 100px;
    background-color: #ffffff;
    display: flex;
  }
  .header_area > ul{
    max-width: 165px;
  }
  .menu_area{
    width: 59.6%;
  }
  .menu_nav_list li{
    font-size: 1.6rem;
    margin-bottom: 0;
    padding-left: 0;
  }
}

/* フッター -------------- */
.footer_area{
  width: 100%;
  background-color: #f5f5f5;
  padding-top: 35px;
  padding-bottom: 40px;
}
.footer_area .menu_list{
  padding-left: 6.66%;
  padding-right : 6.66%;
  padding-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: auto;
}
.footer_area .menu_list li{
  font-size: 1.6rem;
  margin-bottom: 20px;
  padding-left: 20px;
  position: relative;
  box-sizing: border-box;
}
.footer_area .menu_list li:nth-child(odd) {
  width: 48%;
}
.footer_area .menu_list li:nth-child(even) {
  width: 52%;
}
.footer_area .menu_list li::before{
  content: "";
  background-color: #333;
  width: 10px;
  height: 1px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.menu_list li a{
  color: #333;
  text-decoration: none;
}
.footer_area .link{
  text-align: center;
  font-size: 1.2rem;
}
.footer_area .link a{
  color: #333;
}
.footer_area .link p{
  margin-bottom: 3px;
}
.footer_area .link .pp{
  letter-spacing: 0.05em;
}
.footer_area .copy {
    color: #B1B1B1;
    text-align: center;
}
.footer_logo{
  background-color: #ffffff;
  padding-top: 17px;
  padding-bottom: 17px;
}
.footer_logo img{
  display: block;
  width: 21.3%;
  max-width: 100px;
  margin: 0 auto;
}
@media screen and (min-width: 768px){
  footer{
  }
  .footer_area{
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .footer_area .menu_list{
    max-width: 730px;
    margin: auto;
    padding-bottom: 50px;
  }
  .footer_area .menu_list li{
    margin-bottom: 0;
  }
  .footer_area .menu_list li:nth-child(odd) {
    width: initial;
  }
  .footer_area .menu_list li:nth-child(even) {
    width: initial;
  }
  .footer_logo{
    padding-top: 24px;
    padding-top: 1.71vw;
    padding-bottom: 24px;
    padding-bottom: 1.71vw;
  }
  .footer_logo img{
    display: block;
    width: 21.9%;
    max-width: 160px;
    margin: 0 auto;
  }
}

@media screen and (min-width: 1400px){
  footer{
  }
  .footer_area .menu_list{
    padding-left: 0;
    padding-right : 0;
  }
  .footer_logo{
    padding-top: 24px;
    padding-bottom: 24px;
  }
}