@charset "utf-8";
/*################################################

---------------- ブレイクポイント ----------------

記述：モバイルファースト
ブレイクポイント：640px,960px,1280px
640px未満：				スマホ
640px以上960未満：	タブレット
960px以上：				PC
1280px:可変サイズの最大値

----------------- フォントサイズ -----------------
【px指定】
body：320～1280pxの間で14～18pxまで流動的に可変　←基準

------------- テーマカラー： #c70012 -------------
上記カラーを置換するとテーマカラーを変更できます。

################################################*/

/*============= 【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: 1.4rem;
  line-height: 1.8;
  color: #111;
    letter-spacing: 0.12rem;
}

* {
  margin: 0 auto;
  padding: 0;
  word-break: break-all;
  list-style-type: none;
  border-style: none;
  font-style: normal;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/***** ▼header▼ *****/
.main_h {
  position: fixed;
  top: 0px;
  max-height: 70px;
  z-index: 999;
  width: 100%;
  padding-top: 17px;
  background: none;
  overflow: hidden;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  opacity: 0;
  top: -100px;
  padding-bottom: 6px;
  
}
@media only screen and (max-width: 766px) {
  .main_h {
    padding-top: 25px;
  }
}

.open-nav {
  max-height: 400px !important;
}
.open-nav .mobile-toggle {
  transform: rotate(-90deg);
  -webkit-transform: rotate(-90deg);
}

.sticky {
  background-color: rgba(255, 255, 255, 0.93);
  opacity: 1;
  top: 0px;
  border-bottom: 1px solid gainsboro;
}

.logo {
  width: 130px;
  float: left;
  display: block;
  margin-top: 0;
  line-height: 1;
  margin-bottom: 10px;
}
@media only screen and (max-width: 766px) {
  .logo {
    float: none;
  }
}

nav {
  float: right;
  width: 80%;
}
@media only screen and (max-width: 766px) {
  nav {
    width: 100%;
  }
}
nav ul {
    list-style: none;
    overflow: hidden;
    text-align: center;
    float: right;
}
@media only screen and (max-width: 766px) {
  nav ul {
    padding-top: 10px;
    margin-bottom: 22px;
    float: left;
    text-align: center;
    width: 100%;
  }
}
nav ul li {
  display: inline-block;
  margin-left: 35px;
  line-height: 1.5;
}
@media only screen and (max-width: 766px) {
  nav ul li {
    width: 100%;
    padding: 7px 0;
    margin: 0;
  }
}

nav ul a {
    color: #4d4848;
    font-size: 1.4rem;
    font-weight: 700;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  font-size: 20px;
  position: absolute;
  right: 22px;
  top: 0;
  width: 30px;
  -webkit-transition: all 200ms ease-in;
  -moz-transition: all 200ms ease-in;
  transition: all 200ms ease-in;
}
@media only screen and (max-width: 766px) {
  .mobile-toggle {
    display: block;
  }
}
.mobile-toggle span {
  width: 30px;
  height: 4px;
  margin-bottom: 6px;
  border-radius: 1000px;
  background: #8f8f8f;
  display: block;
}

.row {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  padding: 0 2%;
}
@-webkit-keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
  }
}
@keyframes scroll {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }

  100% {
    opacity: 0;
    -webkit-transform: translateY(20px);
    -ms-transform: translateY(20px);
    transform: translateY(20px);
  }
}
/***** ▲header▲ *****/

.header {
  min-height: 40vw;
  background: #ccc;
}

.header img {
  width: 100%;
}

h1 {
  font-size: calc(24px + ((1vw - 3.2px) * 1.67));
  text-align: center;
    font-weight: 900;
    color: #008ece;
}

h1 span {
    margin-top: 20px;
    display: block;
  font-size: calc(16px + ((1vw - 3.2px) * .42));
    font-weight: 700;
    color: #1B1B1B;
}

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: #0076CC;
}

a:hover{
    color: #E00045;
}

img {
  display: block;
  max-width: 100%;
  max-height: 100%;
}

main > section:nth-child(even) {
  background: #fff;
}

main > section:nth-child(odd) {
  background: #efefef;
}

.content-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(32px + ((1vw - 3.2px) * 3.33)) calc(16px + ((1vw - 3.2px) * 1.67));
}

.content-wrap > *:not(:last-child) {
  margin-bottom: calc(10px + ((1vw - 3.2px) * 1.04));
}

.content-wrap > h2 {
  padding-bottom: 8px;
  border-bottom: 5px solid #008ece;
  margin-bottom: calc(15px + ((1vw - 3.2px) * 0.52));
    font-weight: 900;
}

.content-wrap > h2 span {
  padding-left: .5em;
  font-size: 50%;
}

h3{
    font-size: calc(16px + ((1vw - 3.2px) * 0.42));
    font-weight: 900;
    padding: 1rem 2rem;
    color: #fff;
    background: #008ece;
    -webkit-box-shadow: 5px 5px 0 #0066bf;
    box-shadow: 5px 5px 0 #0066bf;
    margin-bottom: 15px;
    font-weight: 900;
}

h4 {
    font-size: calc(16px + ((1vw - 3.2px) * 0.42));
    font-weight: 900;
    padding-bottom: 4px;
    border-bottom: 3px solid #008ece;
    margin-bottom: 15px;
    font-weight: 900;
}

.box2{
    width: 100%;
    margin-bottom: calc(10px + ((1vw - 3.2px) * 1.04));
    padding: 5px;
}

.box3 {
    width: 100%;
    padding: 5px;
    margin: 0px;
}

.box-inner{
    border: 1px solid #6F6F6F;
    border-radius: 5px;
    padding: 20px;
}

.box-inner2{
    padding: 10px;
}

.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;
}

.mb10{
    margin-bottom: 10px;
}
/*============= 【Q & A】 ==============*/
.accordion-box{
    margin-bottom: calc(3rem + ((1vw - .32rem) * 1.04));
}
.accordion-box .block .acc-btn{
	position:relative;
	font-size:calc(1.4rem + ((1vw - .32rem) * 0.21));
	line-height:170%;
	color:#252525;
	font-weight:500;
	cursor:pointer;
	padding:15px 25px 15px;
	padding-right: 50px;
	border:1px solid #dddddd;
	background-color: #ffffff;
	-webkit-transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
	transition:all 500ms ease;
	margin-bottom: 20px;
}
.accordion-box .block .acc-btn.active{
	background-color: #00aee3;
	border-color: #00aee3;
	color:#ffffff;
	margin-bottom: 0px;
}
.accordion-box .block .icon{
	position:absolute;
	right: 15px;
	top:15px;
	height: 30px;
	width: 30px;
	font-size: 18px;
	line-height: 30px;
	color: #252525;
	text-align: center;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.accordion-box .block .acc-btn.active .icon:before{
	position: absolute;
	left: 0;
	top: 0;
	height: 30px;
	width: 30px;
	line-height: 30px;
	opacity:1;
	z-index: 1;
	color: #ffffff;
	font-size: 18px;
	content: "\f146";
	font-family: "FontAwesome";
	text-align: center;
	transition:all 500ms ease;
	-moz-transition:all 500ms ease;
	-webkit-transition:all 500ms ease;
	-ms-transition:all 500ms ease;
	-o-transition:all 500ms ease;
}
.accordion-box .block .acc-content{
	position:relative;
	display:none;
	background-color: #ffffff;
}
.accordion-box .block .content{
	position:relative;
	padding: 20px 25px;
	margin-bottom: 0;
}
.accordion-box .block .acc-content.current{ 
	display: block;
}
.accordion-box .block .content .text{
	display: block;
	font-size: calc(1.2rem + ((1vw - .32rem) * 0.21));
	line-height: 170%;
	color: #777777;
}
.accordion-box .block .content .text2{
	display: block;
	font-size: 14px;
	line-height: 30px;
	color: #777777;
}
/*============= 【Q & A】 ==============*/

.voice-box {
    background-color: #f2f2f2;
    margin: 2em 0;
    padding: 2em;
    position: relative;
    font-size: 16px;
    letter-spacing: 0.3rem;
}
.voice-box::after {
    content: "";
    border-color: #fff #fff #fff #c6c6c6;
    border-style: solid;
    border-width: 0 0 24px 24px;
    bottom: 0;
    position: absolute;
    right: 0;
}

.marker{
 background: linear-gradient(transparent 75%, #c1e0ff 75%);
font-weight: bold; 
}

/*============= 【sns】 ==============*/
.sns-wrap {
  width: 70%;
  max-width: 240px;
}

.sns-icon {
  width: 25%;
}

/*============= 【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;
}

/*============= 【youtube】 ==============*/

.youtube-wrap {
    width: 100%;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin: 0px auto;
    background: #ccc;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

/*============= 【button】 ==============*/

.btn,
a.btn,
button.btn {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}

a.btn-flat {
    overflow: hidden;
    padding: 1.5rem 6rem;
    color: #fff;
    border-radius: 0;
    background: #df0000;
}

a.btn-flat span {
  position: relative;
}

a.btn-flat:before {
  position: absolute;
  top: 0;
  left: /*30px*/0;
  width: 150%;
  height: 500%;
  content: '';
  -webkit-transition: all .5s ease-in-out;
  transition: all .5s ease-in-out;
  -webkit-transform: translateX(-98%) translateY(-70%) rotate(135deg);
  transform: translateX(-98%) translateY(-70%) rotate(135deg);
  background: #2daa00;
}

a.btn-flat:hover:before {
  -webkit-transform: translateX(-9%) translateY(-25%) rotate(135deg);
  transform: translateX(-9%) translateY(-25%) rotate(135deg);
}

/*============= 【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) {
    .box2{
        width: 50%;
        width: calc(100%/2); 
    }
    .box3{
        width: 33.3%;
        width: calc(100%/3); 
    }
  .store-wrap {
    margin: -8px;
  }

  .store,
  .store-txt {
    padding: 8px;
  }
  
  .store {
    width: 33.3%;
    width: calc(100%/3); 
  }
}

@media (min-width:1280px) {
  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;
  }
}