:root{
  --per: calc(375/750);
  --blue: #003469;
  --light-blue: #004d96;
  --gray: #000;
  --light-gray: #cbcbcb;
  --white: #fff;
}

@media (max-width:767px){
  .pc{
    display: none !important;
  }
}
@media (min-width:768px){
  .sp{
    display: none !important;
  }
}

.en{
  /*font-family: 'Didact Gothic', sans-serif;*/
  font-family: 'Hind', sans-serif;
}

body{
  font-family: 'Noto Sans JP', sans-serif;
}
@media (min-width:768px){
  body{
    min-width: 1280px;
  }
}

a:hover,
a:hover img{
  opacity: 0.7;
  transition: opacity 0.6s ease;
}

#global-header{
  display: -webkit-flex;
  display: flex;
  align-items: flex-start;
  width: 100%;
  height: calc(110px*var(--per));
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 99;
}
#global-header #logo{
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(110px*var(--per));
  height: calc(110px*var(--per));
}
#global-header #logo img{
  width: calc(74px*var(--per));
}
#global-header #menu{
  width: calc(110px*var(--per));
  height: calc(110px*var(--per));
  background-image: url("../images/top/menu.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: calc(45px*var(--per));
  border-left: 1px solid #ddd;
}
#global-header #menu.active{
  background-image: url("../images/top/close.png");
  background-size: calc(37px*var(--per));
}
.header-sub-navi{
  margin-left: auto;
}
.header-sub-navi li{
  width: calc(110px*var(--per));
  border-left: 1px solid #ddd;
  overflow: hidden;
}
@media (max-width:767px){
  #global-header nav{
    /*display: none;*/
    position: fixed;
    top: calc(110px*var(--per));
    left: 0;
    width: 100%;
    height: 0;
    background: #fff;
    overflow: hidden;
    border-top: 1px solid var(--light-gray);
    box-sizing: border-box;
    transition: height 0.6s ease;
  }
  #global-header nav.active{
    height: calc(100vh - 110px*var(--per));
    overflow: auto;
  }
  .header-navi{
    padding-top: calc(45px*var(--per));
  }
  .header-navi li a{
    display: flex;
    align-items: center;
    width: auto;
    height: calc(106px*var(--per));
    padding-left: calc(72px*var(--per));
    font-size: calc(36px*var(--per));
    color: #000;
    font-weight: bold;
    text-decoration: none;
    letter-spacing: 0.135em;
    border-bottom: 1px solid var(--light-gray);
    position: relative;
  }
  .header-navi li.toggle > a:before,
  .header-navi li.toggle > a:after{
    content: "";
    display: block;
    height: 1px;
    width: calc(48px*var(--per));
    background: #000;
    position: absolute;
    top: 50%;
    right: calc(32px*var(--per));
    transition: transform 0.6s ease;
  }
  .header-navi li.toggle > a:after{
    transform: rotate(-90deg);
  }
  .header-navi li.toggle.active > a:after{
    transform: rotate(0deg);
  }
  .header-lower-navi,
  .header-lower-title{
    display: none;
  }
  .header-lower-navi li a{
    padding-left: calc(108px*var(--per));
    color: #fff;
    font-size: calc(32px*var(--per));
    background-color: var(--light-blue);
    border-bottom: 1px solid var(--light-blue);
  }
  .header-lower-navi li:nth-of-type(even) a{
    background-color: #0f579c;
  }
  .header-link,
  .header-contact,
  .header-search{
    width: calc(576px*var(--per));
    margin: 0 auto calc(48px*var(--per));
    border: 1px solid #c3c3c3;
  }
  .header-link{
    margin-top: calc(80px*var(--per));
  }
  .header-contact a{
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(104px*var(--per));
    color: #000;
    font-size: calc(30px*var(--per));
    letter-spacing: 0.135em;
    text-decoration: none;
  }
  .header-contact a:before{
    content: "";
    display: inline-block;
    width: calc(42px*var(--per));
    height: calc(31px*var(--per));
    margin-right: 0.5em;
    background-image: url("../images/ico_mail.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
  }
  .header-search{
    position: relative;
  }
  .header-search input[type=text]{
    width: 100%;
    height: calc(104px*var(--per));
    padding: 0.5em 1.0em;
    border: none;
    box-shadow: none;
    font-size: calc(36px*var(--per));
    letter-spacing: 0.135em;
    box-sizing: border-box;
  }
  .header-search-btn{
    width: calc(104px*var(--per));
    position: absolute;
    top: 0;
    right: 0;
  }
  .header-search input:focus{
    outline: none;
  }
  .header-sns{
    display: flex;
    justify-content: center;
    margin-top: calc(64px*var(--per));
    margin-bottom: calc(300px*var(--per));
  }
  .header-sns .header-sns-icon{
    width: calc(94px*var(--per));
    margin: 0 calc(55px*var(--per));
  }
}
@media (min-width:768px){
  #global-header{
    display: -webkit-flex;
    display: flex;
    align-items: flex-start;
    width: auto;
    height: 100px;
    padding-right: 20px;
    background: #fff;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 99;
  }
  #global-header #logo{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 110px;
    height: 100px;
    overflow: hidden;
  }
  #global-header #logo img{
    width: 74px;
    height: auto;
  }
  #global-header nav{
    display: block;
    align-items: flex-end;
    width: clamp(840px, 56.666666667%, 1020px);
    height: auto;
    margin-left: min(140px,7.777777%);
    margin-right: 20px;
    overflow: visible;
    border-top: none;
    position: relative;
    top: 0;
    z-index: 1;
  }
  #global-header #menu{
    display: none;
  }
  .header-navi{
    display: -webkit-flex;
    display: flex;
    justify-content: space-between;
    padding-top: 0;
  }
  .header-navi li{
    position: relative;
  }
  .header-navi li:not(:first-child){
    margin-left: auto;
  }
  .header-navi li a{
    display: -webkit-flex;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    height: 100px;
    padding-bottom: 30px;
    color: var(--light-blue);
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 0.075em;
    text-decoration: none;
    box-sizing: border-box;
    border-bottom: none;
  }
  .header-navi > li:first-child > a:after{
    content: url("../images/top/arrow_bottom.png");
    display: inline-block;
    margin-left: 0.25em;
  }
  .header-sub-navi{
    display: -webkit-flex;
    display: flex;
    margin-left: auto;
    align-items: flex-start;
    border-right: 1px solid #ddd;
    z-index: 0;
  }
  .header-sub-navi li{
    width: 76px;
    overflow: hidden;
  }
  .header-lower-navi{
    display: flex;
    width: 100%;
    height: 0;
    margin: 0;
    background: #fff;
    /*border-top: 1px solid #ddd;*/
    position: fixed;
    top: 100px;
    left: 0;
    overflow: hidden;
    /*opacity: 0;*/
    transition: all 0.6s ease;
  }
  .header-navi li:hover .header-lower-navi{
    height: 436px;
    opacity: 1;
  }
  .header-lower-title{
    display: flex;
    flex-flow: column;
    align-items: flex-end;
    justify-content: center;
    width: 32%;
    height: 436px;
    padding-right: 48px;
    background: var(--light-blue);
    color: #fff;
    font-size: 34px;
    font-weight: bold;
    font-family: "Hind", sans-serif;
    letter-spacing: 0.065em;
    text-align: right;
    line-height: 1.2;
    box-sizing: border-box;
  }
  .header-lower-title span{
    display: block;
    font-size: 16px;
    font-weight: normal;
    letter-spacing: 0.135em;
  }
  .header-lower-category{
    width: 68%;
  }
  .header-lower-category ul{
    display: flex;
    flex-flow: row wrap;
    width: 950px;
    padding-top: 45px;
  }
  .header-lower-navi li{
    width: 273px;
    margin-left: auto;
  }
  .header-lower-navi li a{
    flex-direction: column;
    align-items: flex-start;
    height: auto;
    padding-bottom: 25px;
    color: #000;
    font-size: 16px;
  }
  .header-lower-navi li a:before{
    content: "";
    display: block;
    width: 100%;
    height: 138px;
    margin-bottom: 5px;
  }
  .header-lower-navi li:nth-of-type(1) a:before{
    content: url("../images/snavi_1.jpg");
  }
  .header-lower-navi li:nth-of-type(2) a:before{
    content: url("../images/snavi_2.jpg");
  }
  .header-lower-navi li:nth-of-type(3) a:before{
    content: url("../images/snavi_3.jpg");
  }
  .header-lower-navi li:nth-of-type(4) a:before{
    content: url("../images/snavi_4.jpg");
  }
  .header-lower-navi li:nth-of-type(5) a:before{
    content: url("../images/snavi_5.jpg");
  }
  .header-lower-navi li:nth-of-type(6) a:before{
    content: url("../images/snavi_6.jpg");
  }
  .header-link,
  .header-contact,
  .header-sns{
    display: none;
  }
  .header-search{
    background: #fff;
    border-left: 1px solid #c3c3c3;
    border-bottom: 1px solid #c3c3c3;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1;
    transform: translateX(100%);
    transition: transform 0.6s ease;
  }
  .header-search.active{
    transform: translateX(0%);
  }
  .header-search input[type=text]{
    width: 420px;
    height: 48px;
    margin: 14px;
    padding: 0.5em 1.0em;
    border: none;
    box-shadow: none;
    font-size: 18px;
    letter-spacing: 0.135em;
    box-sizing: border-box;
    background: url("../images/btn_search.png") no-repeat right center;
  }
  input::placeholder-shown{
    color: #333;
  }
  input::-webkit-placeholder-shown{
    color: #333;
  }
  .header-search-btn{
    width: 48px;
    position: absolute;
    top: 0;
    right: 0;
    opacity: 0;
  }
  .header-search input:focus{
    outline: none;
  }
}

footer{
  padding-bottom: calc(100px*var(--per));
  background: var(--light-blue);
}
.footer-sns{
  margin-bottom: calc(85px*var(--per));
  padding-top: calc(100px*var(--per));
  padding-bottom: calc(100px*var(--per));
  text-align: center;
  background: #fff;
}
.footer-sns-icon{
  display: inline-block;
  width: calc(95px*var(--per));
  height: calc(95px*var(--per));
  margin: 0 calc(55px*var(--per));
}
.footer-navi{
  width: calc(578px*var(--per));
  margin: 0 auto;
  border-top: 1px solid var(--light-gray);
  border-left: 1px solid var(--light-gray);
  overflow: hidden;
}
.footer-navi li{
  width: 50%;
  border-bottom: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
  box-sizing: border-box;
  float: left;
}
.footer-navi li a{
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: calc(140px*var(--per));
  color: var(--white);
  font-size: calc(28px*var(--per));
  font-weight: bold;
  letter-spacing: 0.125em;
  text-decoration: none;
}
.footer-navi li a span{
  display: block;
  font-size: calc(22px*var(--per));
}
.footer-sub-navi{
  width: calc(578px*var(--per));
  margin: 0 auto;
  margin-top: calc(60px*var(--per));
  margin-bottom: calc(110px*var(--per));
  border-top: 1px solid var(--light-gray);
  border-left: 1px solid var(--light-gray);
  overflow: hidden;
}
.footer-sub-navi li{
  width: 50%;
  border-bottom: 1px solid var(--light-gray);
  border-right: 1px solid var(--light-gray);
  box-sizing: border-box;
  float: left;
}
.footer-sub-navi li a{
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: calc(80px*var(--per));
  color: var(--white);
  font-size: calc(24px*var(--per));
  font-weight: bold;
  letter-spacing: 0.075em;
  text-decoration: none;
  line-height: 1;
}
.footer-logo{
  text-align: center;
}
.footer-logo img{
  height: calc(40px*var(--per));
}
.footer-contact{
  margin-top: calc(60px*var(--per) - 0.5em);
  margin-bottom: calc(50px*var(--per) - 0.5em);
  color: var(--white);
  font-size: calc(24px*var(--per));
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 2.0;
}
.footer-link{
  display: grid;
  grid-template-columns: 1.3fr 1.1fr 1.3fr;
  width: calc(570px*var(--per));
  margin: 0 auto;
}
.footer-link li:nth-of-type(n+4){
  margin-top: calc(40px*var(--per));
}
.footer-link li a{
  display: -webkit-flex;
  display: flex;
  align-items: center;
  color: var(--white);
  font-size: calc(24px*var(--per));
  letter-spacing: 0.08em;
  text-decoration: none;
  line-height: 1;
}
.footer-link li a:before{
  content: "";
  display: inline-block;
  width: calc(30px*var(--per));
  height: calc(30px*var(--per));
  margin-right: 0.5em;
  background: url("../images/top/arrow_footer.png") no-repeat center / contain;
}
.copyright{
  margin-top: calc(90px*var(--per) - 0.25em);
  color: var(--white);
  font-size: calc(24px*var(--per));
  letter-spacing: 0.08em;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 768px){
  footer{
    padding-bottom: 90px;
  }
  .footer-sns{
    margin-bottom: 90px;
    text-align: center;
  }
  .footer-sns-icon{
    display: inline-block;
    width: 64px;
    height: 64px;
    margin: 0 37px;
  }
  .footer-navi{
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    border-top: none;
    width: auto;
    max-width: 1200px;
  }
  .footer-navi li{
    flex: auto;
    width: auto;
    padding: 0;
    border-bottom: none;
  }
  .footer-navi li a{
    flex-direction: row;
    height: auto;
    font-size: 17px;
    font-weight: normal;
    line-height: 1;
  }
  .footer-navi li a span{
    display: inline;
    font-size: 17px;
  }
  .footer-sub-navi{
    margin-top: 30px;
    margin-bottom: 90px;
    padding-top: 30px;
    padding-bottom: 75px;
    border-left: none;
    width: auto;
    max-width: 1200px;
  }
  .footer-sub-navi li{
    width: 25%;
    border-bottom: none;
  }
  .footer-sub-navi li:first-child{
    border-left: 1px solid var(--light-gray);
  }
  .footer-sub-navi li a{
    height: auto;
    padding: 0;
    font-size: 18px;
    font-weight: normal;
    line-height: 1;
  }
  .footer-logo img{
    width: 224px;
    height: auto;
  }
  .footer-contact{
    margin-top: 60px;
    margin-bottom: 0;
    font-size: 18px;
    letter-spacing: 0.075em;
    line-height: 1;
  }
  .footer-link{
    display: -webkit-flex;
    display: flex;
    justify-content: center;
    width: auto;
    margin-top: 1.0em;
    margin-bottom: 74px;
  }
  .footer-link li{
    padding: 0 1.0em;
    border-right: 1px solid var(--light-gray);
  }
  .footer-link li:last-child{
    border-right: none;
  }
  .footer-link li:nth-of-type(n+4){
    margin-top: 0;
  }
  .footer-link li a{
    font-size: 18px;
    letter-spacing: 0.08em;
    line-height: 1;
  }
  .footer-link li a:before{
    display: none;
  }
  .copyright{
    margin-top: 0;
    font-size: 14px;
    line-height: 1;
  }
}

#shop{
  padding-top: calc(140px*var(--per));
  padding-bottom: calc(100px*var(--per));
  background: #eaeaea;
}
.shop-banner{
  width: calc(500px*var(--per));
  margin: 0 auto;
}
.shop-banner:not(:last-child){
  margin-bottom: calc(65px*var(--per));
}
.shop-banner a{
  color: #666;
  font-size: calc(24px*var(--per));
  letter-spacing: 0.035em;
  line-height: 1;
  text-decoration: none;
}
.shop-banner a span{
  font-size: calc(30px*var(--per));
  font-weight: 700;
}
.shop-banner a img{
  display: inline-block;
  margin-bottom: calc(25px*var(--per));
}
@media (min-width: 768px){
  #shop{
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: repeat(4,280px);
    column-gap: 20px;
    justify-content: center;
    padding-top: 115px;
    padding-bottom: 115px;
    background: #eaeaea;
  }
  .shop-banner{
    width: auto;
    margin: 0 auto;
  }
  .shop-banner:not(:last-child){
    margin-bottom: 0;
  }
  .shop-banner a{
    color: #333;
    font-size: 16px;
    letter-spacing: 0.035em;
    line-height: 1;
    text-decoration: none;
  }
  .shop-banner a span{
    display: inline-block;
    margin-bottom: 15px;
    font-size: 20px;
    font-weight: 500;
  }
  .shop-banner a img{
    display: inline-block;
    margin-bottom: 15px;
  }
}
