@charset "UTF-8";

/*=======================================
    Base
=======================================*/
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  font-family: "YuGothic", "游ゴシック", "Yu Gothic", "游ゴシック体", "Meiryo UI", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 180%;
  color: #333;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

div,
h1,
h2,
h3,
h4,
h5,
p,
a,
hr,
dl,
dt,
dd,
img,
video,
article,
ul,
li,
header {
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}


@media screen and (min-width: 769px) {
  .br_sp {
    display: none;
  }

  .pc_none {
    display: none;
  }

}


@media screen and (max-width: 768px) {
  .br_pc {
    display: none;
  }

  .sp_none {
    display: none;
  }

}

a {
  text-decoration: none;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a:hover {
  opacity: 0.5;
}

p {
  line-height: 180%;
}

address {
  font-style: normal;
}

.bold {
  font-weight: bold;
}

/*====================
 *   HEADER
 *====================*/

header {
  width: 100%;
}

.header {
  height: 64px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}

.header h1 {
  display: flex;
  align-items: center;
}

.header .nav_wrapper {
  display: flex;
  align-items: center;
}

.header .h_nav {
  display: flex;
  position: relative;
}

.header li {
  list-style: none;
  font-weight: bold;
}

.header li a,
.header li a:hover {
  color: currentColor;
}

.header .h_nav li {
  vertical-align: middle;
  position: relative;
}

.header .h_nav.local li a::after {
  content: "";
  width: 3px;
  height: 3px;
  border-right: 2px solid #0E6EB8;
  border-bottom: 2px solid #0E6EB8;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
}

.header .h_nav.shop li {
  margin: 0;
}

.header .h_nav.shop li a {
  background: #111111;
  color: #fff;
  padding: 0 65px 0 48px;
  display: flex;
  align-items: center;
}

.header .h_nav.shop li a::after {
  content: "";
  width: 3px;
  height: 3px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position: absolute;
  top: calc(100%/2 - 5px);
  right: 34px;
  left: unset;
}

/*pc style---------------*/
@media screen and (min-width: 781px) {
  header {
    border-bottom: 1px solid #0E6EB8;
  }

  .header {
    max-width: 1366px;
  }

  .header h1 img {
    width: 120px;
    height: 39px;
  }

  .header .h_nav li {
    margin: 20px;
    display: flex;
    align-items: center;
  }

  .header li {
    padding: 0 0 0 16px;
  }

  .header .h_nav.local li a::after {
    top: 8px;
    left: 0;
  }

  .header .h_nav.shop li a {
    height: 64px;
  }
}

@media screen and (max-width: 780px) {

  .header {
    background-color: #fff;
    position: fixed;
    width: 100%;
    height: 51px;
    padding: 0 0;
    z-index: 50;
    border-bottom: 1px solid #0e6eb8;
    top: 0;
  }

  .header h1 img {
    padding-left: 8px;
    width: 94px;
    height: 30px;
  }

  /*-----is-open ---------------------*/
  .header .sp_menu {
    background-color: #0e6eb8;
    cursor: pointer;
    display: block;
    height: 51px;
    position: relative;
    transition: 300ms;
    width: 50px;
    z-index: 3;
  }

  .header .sp_menu.is-open .sp_menu_inner {
    background: rgba(255, 255, 255, 0);
    /* left: calc(63% - 19px); */
  }

  .header .sp_menu.is-open .sp_menu_inner::before {
    bottom: 0;
    transform: rotate(-45deg);
    transition: bottom 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms cubic-bezier(.23, 1, .32, 1),
      transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms cubic-bezier(.23, 1, .32, 1),
      transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    width: 20px;
  }

  .header .sp_menu.is-open .sp_menu_inner::after {
    top: 0;
    transform: rotate(45deg);
    transition: top 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms cubic-bezier(.23, 1, .32, 1),
      transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms cubic-bezier(.23, 1, .32, 1),
      transform 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    width: 20px;
  }

  .header .sp_menu_inner {
    background-color: #fff;
    border-radius: 100px;
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    top: 49%;
    transform: translate(-50%, -50%);
    transition: all 0ms 300ms;
    transition: 300ms;
    width: 20px;
  }

  .header .sp_menu_inner::before {
    background-color: #fff;
    border-radius: 100px;
    bottom: 5px;
    content: '';
    height: 2px;
    position: absolute;
    right: 0;
    transition: bottom 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms 300ms cubic-bezier(.23, 1, .32, 1),
      transform 300ms cubic-bezier(.23, 1, .32, 1);
    transition: bottom 300ms 300ms cubic-bezier(.23, 1, .32, 1),
      transform 300ms cubic-bezier(.23, 1, .32, 1);
    width: 20px;
  }

  .header .sp_menu_inner:after {
    background-color: #fff;
    border-radius: 100px;
    content: '';
    height: 2px;
    position: absolute;
    right: 0;
    top: 5px;
    transition: top 300ms 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms 300ms cubic-bezier(.23, 1, .32, 1),
      transform 300ms cubic-bezier(.23, 1, .32, 1);
    transition: top 300ms 300ms cubic-bezier(.23, 1, .32, 1),
      transform 300ms cubic-bezier(.23, 1, .32, 1);
    width: 20px;
  }


  .header .h_nav.shop li a {
    height: 51px;
  }

  #nav_list {
    background-color: #fff;
    height: 100vh;
    left: 100%;
    overflow: auto;
    position: fixed;
    text-align: center;
    top: 51px;
    transition: all .5s;
    width: 100%;
  }

  #nav_list .h_nav {
    display: block;
    padding: 0;
  }

  #nav_list .h_nav li {
    width: 100%;
    border-bottom: 1px solid #0e6eb8;
  }

  #nav_list .h_nav li a {
    color: #333;
    display: block;
    font-weight: 700;
    letter-spacing: .7px;
    line-height: 27px;
    position: relative;
    text-align: center;
    padding-top: 16px;
    padding-bottom: 12px;
  }

  #nav_list .h_nav li a::after {
    width: 5px;
    height: 5px;
    right: 29px;
    top: 44%;
  }

  #nav_list.layer {
    left: 0;
  }
}



/*====================
 *   FOOTER
 *====================*/
footer {
  background: #8999A6;
  width: 100%;
  text-align: center;
}

.footer_wrapper {
  color: #fff;
  margin: 0 auto;
  text-align: left;
}


@media screen and (max-width: 1000px) and (min-width: 781px) {
  .footer_wrapper {
    padding: 0 10px;
  }
}

.footer_wrapper .container_logo {
  display: flex;
  flex-direction: column;
  margin-bottom: 24px;
}

.footer_wrapper .container_logo img {
  height: 71px;
  width: 205px;
  margin-bottom: 8px;
}

.footer_wrapper .container_logo p {
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 0.12em;
}

.footer_info address {
  margin-bottom: 32px;
}

.footer_info address dt {
  font-weight: bold;
}

.footer_info .container_security {
  display: flex;
  margin: 0 0 40px 0;
}

.footer_info .container_security .logo_iso {
  width: 188px;
}

.footer_info .container_security .logo_pmark {
  width: 113px;
  margin-left: 8px;
}

.footer_info .product_list li a {
  color: #fff;
}

.footer_info .product_list li a:hover,
.footer_info .product_list li a:hover::before {
  color: #0e6eb8;
  opacity: 1;
}

.footer_info .product_list li {
  list-style-type: none;
  margin: 0 0 12px 0;
}

.footer_info .product_list li:last-child {
  margin-bottom: 0;
}

.footer_info .product_list li a:before {
  content: "> "
}

.footer_info .product_list .sub_list li {
  margin-left: 20px;
  margin-top: -10px;
}

.footer small {
  text-align: left;
}

footer .copyright_col {
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 1.5px;
}

/*pc style---------------*/
@media screen and (min-width: 781px) {

  footer {
    padding: 64px 0 24px;
  }

  .footer_wrapper {
    max-width: 1000px;
  }

  .footer_wrapper .container_logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .footer_wrapper .container_logo img {
    margin-bottom: 8px;
  }


  .footer_info {
    display: flex;
    flex-direction: row;
    justify-content: space-between
  }

  .footer_info .wrap_left {
    width: 51%;
  }

  .footer_info .wrap_right {
    width: 46%;
  }

  .footer_info address {
    margin-bottom: 32px;
  }

  .footer_info .container_security {
    display: flex;
  }

  .footer_info .container_security .logo_iso {
    width: 188px;
  }

  .footer_info .container_security .logo_pmark {
    width: 113px;
    margin-left: 8px;
  }

  footer .copyright_col {
    display: block;
    text-align: right;
    margin: 0 0 0 auto;
  }
}

/*sp style---------------*/
@media screen and (max-width: 780px) {

  footer {
    padding: 32px 32px 24px;
  }

  .footer_wrapper .container_logo {
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
  }

  .footer_wrapper .container_logo img {
    margin-bottom: 8px;
  }


  .footer_info {
    display: flex;
    flex-direction: column;
    justify-content: space-between
  }

  .footer_info address {
    margin-bottom: 32px;
  }


  .footer_info .container_security {
    display: flex;
  }

  .footer_info .container_security .logo_iso {
    width: 58%;
  }

  .footer_info .container_security .logo_pmark {
    width: 34%;
    margin-left: 8px;
  }

  .footer_info .product_list li a,
  .footer_info .product_list li a,
  .footer_info .product_list li a:hover,
  .footer_info .product_list li a:hover {
    color: #fff;
  }

  .footer small {
    display: block;
  }
}