@charset "UTF-8";
/*パソコンは表示させない*/
@media screen and (min-width: 768px) {
  .NoPc{display: none !important;}
}
/*スマホは表示させない*/
@media screen and (max-width: 769px) {
  .NoSp{display: none !important;}
}
/*--------------------------------*/
*{
  font-feature-settings: "palt";
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}
a {transition: all 0.4s;-webkit-transition: 0.4s;transition: 0.4s;}
a:hover {transition: all 0.3s;-webkit-transition: 0.3s;transition: 0.3s;}
*:focus {
outline: none;
}
a:link{
  color: #0000ee;
/*  text-decoration: underline;*/
}
a:active{
  color: #ff0000;
}
a:hover{
  color: #0000ee;
  text-decoration: none;
}
a:visited{
  color: #551a8b;
}
/*---------------------------------------------------------------*/
/*　　　　SP css　　　　*/
/*---------------------------------------------------------------*/
body {
  font-size: 4vw;
  min-width: 100%;
  max-width: 100%;
  color: #222222;
  line-height: 1.4;
  overflow-x: hidden;
  margin: 0 auto;
  background-color: #fff;
  font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}
/*---------------------------------------------------------------*/
/*--//バーガーメニュー--*/
body.fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
  height: 100vh;
  overscroll-behavior: none;
}
.MenuSlide_icon {
  cursor: pointer;
  display: block;
  height: 16vw;
  margin: 0;
  padding: 2vw 3vw 0;
  z-index: 1001;
  background-color: #fff;
  position: relative;
}
.MenuSlide_icon > span {
  display: block;
  height: .8vw;
  width: 10vw;
  margin: 2.4vw 0;
  background: #005db2;
}
.MenuSlide_icon.active > span {
  background: #005db2;
}
.MenuSlide_icon.active > span:first-of-type {
  transform: rotate(45deg);
  margin: 6vw 0 0;
}
.MenuSlide_icon.active > span:nth-child(2) {
  height: 0;
}
.MenuSlide_icon.active > span:last-of-type {
  transform: rotate(-45deg);
  margin: -3vw 0 0;
}

/* メニュー全体 */
.MenuSlide {
  position: fixed;
  top: 0;
  right: -100%; /* 初期状態は画面外 */
  width: 80vw;
  height: 100%;
  background: #fff;
  transition: right 0.3s ease;
  z-index: 1000;
  padding: 15vw 4vw;
  background-color: #005db2;
  background-color: rgba(0,93,178,.9);
}
.MenuSlide.active {
  right: 0; /* 表示時に画面内へスライド */
}

.MenuSlideUl{

}
.MenuSlideUl > li{
  padding: 3vw 2vw;
  border-bottom: 1px solid #eff8ff;
}
.MenuSlideUl li > a{
  text-decoration: none;
  display: block;
}
.MenuSlideUl li > a::before{
  content: '▶︎';
  color: #fff;
  margin-right: 3vw;
}
.MenuSlideUl li > a > span{
  color: #fff;
  font-size: 5vw;
}
.MenuSlideUl li > span{
  color: #fff;
  font-size: 5vw;
}
.MenuSlideUl_LinkList{
  padding: 2vw 4vw;
}
.MenuSlideUl_LinkList li{
  padding: 3vw 2vw;
  border-bottom: 1px solid #c7e2f7;
}
.MenuSlideUl_LinkList li > a{
  text-decoration: none;
  display: block;
}
.MenuSlideUl_LinkList li > a::before{
  content: '・';
}
.MenuSlideUl_LinkList li > a > span{
  color: #fff;
}
/*---------------------------------------------------------------*/
/*--//header--*/
header{
  position: fixed;
  top: 0;
  z-index: 500;
  height: 16vw;
  width: 100%;
  border-bottom: 1px solid #34c1ff;
  background-color: rgba(17,160,220,1);
}
.headerIn{
  position: relative;
  width: 100vw;
  height: 16vw;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background-color: rgba(17,160,220,1);
  border-bottom: 1px solid #34c1ff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.headerIn > a{
  display: block;
  width: 48vw;
  margin: 0 0 0 2vw;
  transform: scale(1.05);  
}
.headerIn > a > img{
  width: 100%;
}
.headerLink{
  height: 16vw;
  margin: 0 0 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.headerLink > p{
  display: block;
  width: 16vw;
  height: 16vw;
}
.headerLink > p > a{
  display: block;
  width: 16vw;
  height: 16vw;
  text-align: center;
  border-radius: 0;
  border: none;
}
.headerLink > p > a.AfterLogin{
  background-color: #931533;
  background-image: url(/assets/images/global/icon_member.svg);
  background-repeat: no-repeat;
  background-position: center 2vw;
  background-size: 50%;
transition: all .4s ease;
}
.headerLink > p > a.AfterLogin:hover{
  background-color: #d55e7b;
}
.headerLink > p > a.BeforeLogin{
  background-color: #079a41;
  background-image: url(/assets/images/global/icon_member.svg);
  background-repeat: no-repeat;
  background-position: center 2vw;
  background-size: 50%;
transition: all .4s ease;
}
.headerLink > p > a.BeforeLogin:hover{
  background-color: #48cb7b;
}
.headerLink > p > a > span{
  display: block;
  color: #fff;
  font-size: 3vw;
  letter-spacing: 0.08em;
  padding: 12vw 0 0;
}
.headerLink > strong{
  display: block;
  width: 16vw;
  height: 16vw;
  margin: 0 1px;
}
.headerLink > strong > a{
  display: block;
  width: 16vw;
  height: 16vw;
  text-align: center;
  background-color: #09709b;
  background-image: url(/assets/images/global/icon_login.svg);
  background-repeat: no-repeat;
  background-position: 16px 10px;
  background-size: 50%;
transition: all .4s ease;
}
.headerLink > strong > a:hover{
  background-color: #78cdf1;
}
.headerLink > strong > a > span{
  display: block;
  color: #fff;
  font-size: 3vw;
  letter-spacing: 0.08em;
  padding: 12vw 0 0;
}

/*---------------------------------------------------------------*/
/*--//allH2--*/
.H2Title{
  position: relative;
  text-align: center;
  margin:  12vw 0 0;
}
.H2Title > span{
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 7vw;
  color: #333333;
  font-weight: 200;
}
.H2Title::before{
  content: 'HIRATSUKA';
  position: absolute;
  top: -2vw;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 12vw;
  color: #f8f8f8;
  font-weight: 900;
  white-space: nowrap;
}


/*---------------------------------------------------------------*/
/*--//パンくず--*/
.BreadCrumb{
  margin: 17vw 1vw 1vw;
}
.BreadCrumb a,
.BreadCrumb span{
  text-decoration: none;
  color: #3d3d3d;
  font-size: 2.8vw;
}
.BreadCrumb > ol{
  width: 100%;
  margin: auto;
    display: -webkit-flex;
    display: flex;
}
.BreadCrumb__item{
  padding: 0 1vw 0 0;
}
.BreadCrumb__item::after{
  content: '';
  display: inline-block;
  vertical-align: middle;
  width: 1.5vw;
  height: 1.5vw;
  border: 1px solid;
  margin-left: -1vw;
  border-color: #565656 #565656 transparent transparent;
  transform: rotate(45deg);
}
.BreadCrumb__item:last-of-type::after{
  content: '';
  width: 0;
  height: 0;
  border: none;
}
.BreadCrumb__link{

}

/*---------------------------------------------------------------*/
/*--//footer--*/
footer{
  background-color: #eaeaea;
  padding: 8vw 0 0;
  margin: 16vw 0 0;
}
footer > div{
  width: 94vw;
  margin: auto;
}
footer > div > h2{
  width: 60vw;
  margin: auto;
}
footer > div > h3{
  padding: 8vw 0 3vw;
}
footer > div > h3 > span{
  font-size: 4vw;
  font-weight: 600;
}

.footerUl_shop{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footerUl_shop > li{
  width: 45.5vw;
  padding: 3vw;
  margin-bottom: 3vw;
  background-color: #f2f2f2;
}
.footerUl_shop > li > strong{
  font-size: 3.5vw;
  font-weight: 500;
  display: block;
}
.footerUl_shop > li > p{
  font-size: 3vw;
  font-weight: 300;
  display: block;
  line-height: 1.4;
  padding: 2vw 0;
}
.footerUl_shop > li > span{
  font-size: 3vw;
  font-weight: 300;
  display: block;
}

.footerUl_link{
margin: 12vw 0 8vw;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footerUl_link > li{
  width: 45.5vw;
  padding: 3vw;
}
.footerUl_link > li > h3{
  font-size: 4vw;
  font-weight: 600;
  padding: 0 0 1vw;
}
.footerUl_link > li > div{
  line-height: 1.6;
}
.footerUl_link > li > div > a{
  color: #333;
  font-size: 3.4vw;
  font-weight: 300;
  text-decoration: underline;
}
.footerUl_link > li > div > a:hover{
  text-decoration: none;
}

.footerInformation{
  padding: 10vw 0 0 0;
  border-top: 1px solid #f0f0f0;
}
.footerInformation > p{
  font-size: 3vw;
  font-weight: 300;
  line-height: 1.3;
}

.copyright{
  font-size: 2vw;
  font-weight: 300;
  display: block;
  text-align: center;
  padding: 0 0 2vw 0;
  margin: 10vw auto 0;
}


/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
/*　　　　PC css　　　　*/
/*-----------------------------------------------------------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
/*---------------------------------------------------------------*/
/*--//body--*/
body {
  font-size: 16px;
  min-width: 100%;
  max-width: 100%;
  color: #333;
  line-height: 1.4;
  letter-spacing: .1em;
  overflow-x: hidden;
  margin: 0 auto;
  background-color: #fff;
  font-family: YuGothic,'Yu Gothic','ヒラギノ角ゴシック','Hiragino Sans',sans-serif;
}
/*---------------------------------------------------------------*/
/*--//header--*/
header{
  position: fixed;
  top: 0;
  z-index: 500;
  height: 70px;
  width: 100%;
  border-bottom: 1px solid #34c1ff;
  background-color: rgba(17,160,220,1);
}
.headerIn{
  position: relative;
  width: 1000px;
  height: 70px;
  letter-spacing: 0.1em;
  margin: 0 auto;
  background-color: rgba(17,160,220,1);
  border-bottom: 1px solid #34c1ff;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
}
.headerIn > a{
  display: block;
  width: 220px;
  transform: scale(1.05);  
}
.headerIn > a:hover{
  opacity: 0.6;
}
.headerIn > a > img{
  width: 100%;
}

.headerUl{
  margin: 0 0 0 20px;
    display: -webkit-flex;
    display: flex;
}
.headerUl li{
  width: 120px;
  height: 70px;
  text-align: center;
  margin: 0 1px 0 0;
}
.headerUl li > a{
  width: 120px;
  height: 70px;
  display: block;
}
.headerUl li > a > span{
  position: relative;
  font-size: 14px;
  letter-spacing: .2.4em;
  color: #fff;
  width: 120px;
  height: 70px;
  padding: 15px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #2cb3ec;
transition: all .4s ease;
}
.headerUl li > a:hover > span{
  color: #2cb3ec;
  background-color: #c8eaf8;
}
.headerUl li > a > span::after{
  position: absolute;
  bottom: 4px;
  content: '';
  display: block;
  width: 8px;
  height: 8px;
  border: 1px solid;
  border-color:  transparent transparent #8fd7f6 #8fd7f6;
  transform: rotate(-45deg);
}

.headerLink{
  height: 70px;
  margin: 0 0 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
}
.headerLink > p{
  display: block;
  width: 194px;
  height: 58px;
}
.headerLink > p > a.AfterLogin{
  display: block;
  width: 194px;
  height: 58px;
  background-color: #931533;
  border: 2px solid #f6f6f6;
  border-radius: 40px;
  background-image: url(/assets/images/global/icon_member.svg);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 18%;
transition: all .4s ease;
}
.headerLink > p > a.AfterLogin:hover{
  background-color: #d55e7b;
}
.headerLink > p > a.BeforeLogin{
  display: block;
  width: 194px;
  height: 58px;
  background-color: #079a41;
  border: 2px solid #f6f6f6;
  border-radius: 40px;
  background-image: url(/assets/images/global/icon_member.svg);
  background-repeat: no-repeat;
  background-position: 4px center;
  background-size: 18%;
transition: all .4s ease;
}
.headerLink > p > a.BeforeLogin:hover{
  background-color: #48cb7b;
}
.headerLink > p > a > span{
  display: block;
  color: #fff;
  font-size: 14px;
  padding: 7px 0 5px 50px;
}
.headerLink > p > a > strong{
  display: block;
  color: #fff;
  font-size: 20px;
  letter-spacing: .4em;
  padding: 0 0 0 55px;
}

.headerLink > strong{
  display: block;
  width: 70px;
  height: 70px;
  margin: 0 0 0 5px;
}
.headerLink > strong > a{
  display: block;
  width: 70px;
  height: 70px;
  text-align: center;
  background-color: #09709b;
  background-image: url(/assets/images/global/icon_login.svg);
  background-repeat: no-repeat;
  background-position: 16px 10px;
  background-size: 46%;
transition: all .4s ease;
}
.headerLink > strong > a:hover{
  background-color: #78cdf1;
}
.headerLink > strong > a > span{
  display: block;
  color: #fff;
  font-size: 13px;
  padding: 52px 0 0 0;
}

/*---------------------------------------------------------------*/
/*--//allH2--*/
.H2Title{
  position: relative;
  text-align: center;
  margin:  80px 0 0;
}
.H2Title > span{
  position: relative;
  z-index: 2;
  display: inline-block;
  font-size: 30px;
  color: #333333;
  font-weight: 200;
}
.H2Title::before{
  content: 'HIRATSUKA';
  position: absolute;
  top: -11px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  font-size: 50px;
  color: #f8f8f8;
  font-weight: 900;
  white-space: nowrap;
}

/*---------------------------------------------------------------*/
/*--//パンくず--*/
.BreadCrumb{
  margin: 75px auto 20px;
  width: 1000px;
}
.BreadCrumb a,
.BreadCrumb span{
  text-decoration: none;
  color: #3d3d3d;
  font-size: 12px;
}
.BreadCrumb > ol{
  width: 1000px;
  margin: auto;
    display: -webkit-flex;
    display: flex;
}
.BreadCrumb__item{
  padding: 0 10px 0 0;
}
.BreadCrumb__item::after{
  content: '';
  display: inline-block;
  width: 8px;
  height: 8px;
  border: 1px solid;
  margin-left: 2px;
  border-color: #565656 #565656 transparent transparent;
  transform: rotate(45deg);
}
.BreadCrumb__item:last-of-type::after{
  content: '';
  width: 0;
  height: 0;
  border: none;
}
.BreadCrumb__link{

}

/*---------------------------------------------------------------*/
/*--//footer--*/
footer{
  background-color: #eaeaea;
  padding: 40px 0 0;
  margin: 80px 0 0;
}
footer > div{
  width: 1000px;
  margin: auto;
}
footer > div > h2{
  width: 320px;
  margin: auto;
}
footer > div > h3{
  padding: 40px 0 10px;
}
footer > div > h3 > span{
  font-size: 16px;
  font-weight: 600;
}

.footerUl_shop{
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footerUl_shop > li{
  width: 240px;
  padding: 20px;
  margin-bottom: 0;
  background-color: #f2f2f2;
}
.footerUl_shop > li > strong{
  font-size: 14px;
  font-weight: 300;
  display: block;
}
.footerUl_shop > li > p{
  font-size: 13px;
  font-weight: 300;
  display: block;
  line-height: 1.3;
  padding: 15px 0;
}
.footerUl_shop > li > span{
  font-size: 14px;
  font-weight: 300;
  display: block;
}

.footerUl_link{
margin: 60px 0 30px;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
}
.footerUl_link > li{
  width: 240px;
  padding: 0;
}
.footerUl_link > li > h3{
  font-size: 16px;
  font-weight: 600;
  padding: 0 0 20px;
}
.footerUl_link > li > div{
  line-height: 1.6;
}
.footerUl_link > li > div > a{
  color: #333;
  font-size: 14px;
  font-weight: 300;
  text-decoration: underline;
}
.footerUl_link > li > div > a:hover{
  text-decoration: none;
}

.footerInformation{
  padding: 30px 0 0 0;
  border-top: 1px solid #f0f0f0;
}
.footerInformation > p{
  font-size: 14px;
  font-weight: 300;
  line-height: 1.3;
}

.copyright{
  font-size: 14px;
  font-weight: 300;
  display: block;
  text-align: center;
  padding: 0 0 10px 0;
  margin: 80px auto 0;
}

}/*--　PC css終了　--*/
