@charset "utf-8";
/*################################################

---------------- ブレイクポイント ----------------

記述：モバイルファースト
ブレイクポイント：640px,960px,1280px
640px未満：				スマホ
640px以上960未満：	タブレット
960px以上：				PC
1280px:可変サイズの最大値

----------------- フォントサイズ -----------------
【px指定】
body：320～1280pxの間で14～18pxまで流動的に可変　←基準

/*============= 【base】 ==============*/
html {
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'sans-serif';
  font-size: calc(14px + ((1vw - 3.2px) * 0.42));
  line-height: 1.5;
  color: #111;
}

* {
  margin: 0 auto;
  padding: 0;
  word-break: break-all;
  list-style-type: none;
  border-style: none;
  font-style: normal;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body p {
  font-size: 18px;
  line-height: 160%;
    margin-bottom: 10px;
}

header {
  min-height: 0vw;
  background: #ccc;
}

header#hdr {
  display: none !important;
    z-index: -1;    
}

header img {
  width: 100%;
}

h1 {
  font-size: calc(24px + ((1vw - 3.2px) * 1.67));
  text-align: center;
}

h1 span {
  font-size: calc(16px + ((1vw - 3.2px) * .42));
}

h1:after {
  content: "";
  display: block;
  min-width: 40px;
  width: 6%;
  height: 4px;
  margin: calc(16px + ((1vw - 3.2px) * 0.83)) auto 0;
  background: #c70012;
}

a {
  text-decoration: none;
  color: #00aac6 !important;
}


img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

#loader img{
    margin: 0 auto;
}

figure.wp-block-gallery.has-nested-images {
  display: flex;
    flex-wrap: wrap;
}

.wp-block-gallery.has-nested-images.columns-default figure.wp-block-image:not(#individual-image) {
  padding: 5px;
}

.wp-block-column {
  padding: 10px;
}

main > section:nth-child(even) {
  background: #fff;
}

main > section:nth-child(odd) {
  background: #efefef;
}

section{
    margin-bottom: 0;
}

.content-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(32px + ((1vw - 3.2px) * 3.33)) calc(16px + ((1vw - 3.2px) * 1.67));
}

h2 {
  padding-bottom: 4px;
  border-bottom: 2px solid #c70012;
  font-size: calc(20px + ((1vw - 3.2px) * 1.25));
    margin-bottom: 40px;
    font-weight: 800;
}

h2 span {
  padding-left: .5em;
  font-size: 50%;
}

h3 {
  font-size: calc(16px + ((1vw - 3.2px) * 1.25));
    font-weight: 800;
    margin-bottom: 25px;
}

.popup {
  display: block;
}

.link {
  color: #0083c7;
}

.list {
  padding-left: 1em;
  text-indent: -1em;
}

.btn {
  display: block;
  padding: 8px;
  border-radius: 4px;
  font-size: 90%;
  text-align: center;
  color: #fff;
  background: #c70012;
}

.d-flex {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-flex-align: center;
  align-items: center;
}

/*============= 【sns】 ==============*/

.sns_b li:first-child {
  margin-left: 0;
}

.sns_b li img {
  width: 40px;
  height: 40px;
}

.sns_b li {
  position: relative;
  left: -50%;
  float: left;
  margin-left: 10px;
}

/*============= 【store】 ==============*/
.store-wrap {
  align-items: flex-start;
  margin: -4px;
}

.store,
.store-txt {
  padding: 4px;
}

.store {
  width: 50%;
  margin: 0;
}

.store-img {
  border-radius: 4px;
}

.store-txt {
  font-size: calc(10px + ((1vw - 3.2px) * 0.42));
}

.store-info {
  display: inline-block;
  position: relative;
  float: right; 
  font-size: 90%;
}

.store-info:after {
  content: '';
  display: block;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0%;
  background: #000;
}

/*============= 【footer】 ==============*/
footer {
  position: relative;
  height: 10vh;
  background: #000;
}

.footer-logo,
.footer-pagetop {
  position: absolute;
  top: 50%;
}

.footer-logo {
  left: 50%;
  transform: translate(-50%,-50%);
  height: 60%;
}

.footer-pagetop {
  right: 5vw;
  transform: translateY(-40%);
  width: calc(32px + ((1vw - 3.2px) * 0.83));
  color: #c70012;
}

/*============= 【action】 ==============*/
.link:hover {
  filter: hue-rotate(180deg);
}

.store:hover .store-info:after {
  transition: .3s ease-in-out;
  width: 100%;
}

.store:hover .store-img,
.sns-icon:hover {
  transition: .3s ease-in-out;
  filter: brightness(.7);
}

/*============= 【media query】 ==============*/
@media (min-width:640px) {
  
}


@media (min-width:960px) {
  .store-wrap {
    margin: -8px;
  }

  .store,
  .store-txt {
    padding: 8px;
  }
  
  .store {
    width: 33.3%;
    width: calc(100%/3); 
  }
}

@media (min-width:1280px) {
  body {
    font-size: 18px;
  }

  h1 {
    font-size: 40px;
  }
  
  h1 span {
    font-size: 20px;
  }

  h1:after {
    margin: 20px auto 60px;
  }
  
  .content-wrap {
    padding: 64px 32px;
  }

  .content-wrap > h2 {
    font-size: 32px;
  }
}