/*================================================

---------------- ブレイクポイント ----------------

記述：モバイルファースト
ブレイクポイント：640px,960px,1280px
640px未満：					スマホ
640px以上960未満：	タブレット
960px以上：					PC
1280px:可変サイズの最大値

----------------- フォントサイズ -----------------
【rem指定 .1rem = 1px】
html：	{ font-size: 62.5%; } = 10px
body：	320～1280pxの間で14～18pxまで流動的に可変　←基準
body内子要素：remまたは％で指定。
％指定の場合はbodyの基準値に応じて可変

---------------- 可変サイズの説明 ----------------

式：calc(ZZ + ((1vw - XX) * YY))

-ZZ：	基準値
-XX：	ビューポートの最小値 / 100
-YY：	100 * (フォントサイズ最大最小値の差) / (ビューポート最大最小値の差)
ビューポート最小値：320px(iPhone SE)
ビューポート最大値：1280px

XX = 320px / 100 = 3.2px = .32rem
YY = 100 * (ZZmax - ZZ) / (1280px - 320px)
	 = 100(ZZmax - ZZ) / 960px

▼本ページ内での簡略式▼
calc(ZZ + ((1vw - .32) * (100(ZZmax - ZZ) / 960px)))

@media (min-width:1280px){
	ここに最大値を記述してます。
}

------------- テーマカラー： #c70012 -------------
上記カラーを置換するとテーマカラーを変更できます。

==================================================*/


/***** ▼base▼ *****/
html {
	-ms-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 62.5%;/*10px*/
}

body {
	/*文字色*/
	color: #111;
	font-family: 'Noto Sans JP', 'Lucida Grande', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'sans-serif';
	font-size: calc(1.4rem + ((1vw - .32rem) * .41));
	line-height: 1.5;
    letter-spacing:0.14rem;
}

* {
	margin: 0 auto;
	padding: 0;
	word-break: break-all;
	list-style-type: none;
	border-style: none;
	font-style: normal;
    -webkit-font-smoothing: antialiased;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

img {
	display: block;
	max-width: 100%;
}

li{
	text-indent:-1rem;
}

a {
	color: #f90;
	text-decoration: none;
}

#spinner div{
	background: #c70012;
}

.loder-bg{
	/*ローダー背景*/
	background: #fff;
}
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}
main > section:nth-child(even){
	/*セクション背景(偶数)*/
  background: #fbfbfb;
}

main > section:nth-child(odd){
	/*セクション背景(奇数)*/
  background: #efefef;
}

.content-wrap{
	max-width: 1280px;
  margin: 0 auto;
	padding: calc(3.4rem + ((1vw - .32rem) * 3.33)) calc(1.6rem + ((1vw - .32rem) * 1.66));
}

.content-wrap > *:not(:last-child){
	/*.content-wrap直下の子要素に任意のmargin-bottomを付与*/
	margin-bottom: calc(0.8rem + ((1vw - .32rem) * 0.21));
}

.content-wrap > h1{
	font-size: calc(1.6rem + ((1vw - .32rem) * 0.83));
	text-align: center;
    
}

.content-wrap > h1 span{
	font-size: 120%;
  line-height: 2;
  display: inline-block;
}

.content-wrap > h1:after {
	display:block;
	min-width: 40px;
	width:6%;
	height:4px;
	margin: calc(1.5rem + ((1vw - .32rem) * .52)) auto 0;
	background: #c70012;
	content:"";
}

.content-wrap > h2 {
	display: inline-block;
	width: 100%;
	text-align: center;
	font-size: calc(1.6rem + ((1vw - .32rem) * 1.67));
	line-height: 2;
    color: #FFFFFF;
    background-color: #C80003;
    padding: 10px;
}

.content-wrap > h3{
    text-align: center;
    color: #000000;
    font-size: calc(1.4rem + ((1vw - .32rem) * 0.42));
}

.d-flex {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.flex-container-4{
    width: 100%;
    padding: 10px;
    display: flex;
    margin: 0 0 10px 0;
}

.flex-container-2{
    width: 100%;
    padding: calc(0.2rem + ((1vw - .32rem) * 0.83)) calc(0rem + ((1vw - .32rem) * 1.04));
    margin: 0 0 10px 0;
    position: relative;
}

.container-inner{
    background-color: #F1F1F1;
    border: 1px solid #B7B7B7;
    padding: 10px;
}

.red{
    color: #D00003;
}

.blue{
    color: #0F99F1;
}

.green{
    color: #00AD3F;
}

.brpc {
  display: none;
}

.brsp {
  display: block;
}

.banner-attention {
  font-size: 80%;
  text-align: left;
}
/***** ▲base▲ *****/


/***** ▼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▲ *****/

.top-info{
    background-color: #F6FFC4;
    padding: 18px;
    border: #B4B4B4 1px solid;
    margin-bottom: 60px !important;
}

.top-info h2{
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 18px
}

.top-info p{
    font-size: 16px;
    font-weight: 500;
}

/***** ▼introduction▼ *****/
.intro-cap,
.intro-attention {
  text-align: left;
}
/***** ▲introduction▲ *****/

/***** ▼campaign▼ *****/
#campaign .campaign-inner {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 10px;
    border: 2px solid #2aabe4;
    font-size: 110%;
}
/***** ▼Special-Campaign▼ *****/
#campaign .campaign-inner.special-camp {
	filter: drop-shadow(2px 4px 16px #15151515);
	background: #ffffff;
	padding: 40px 20px;
	border-radius: 8px;
	margin-bottom: 110px;
}
#campaign .campaign-inner.special-camp h2 {
	width:100%;
	margin-bottom: 45px;
	position: relative;
	text-align: center;
	border-bottom: solid 1px;
	padding-bottom: 15px;
}

.special-camp h2 span {
	position: absolute;
	top: -105px;
	left: -35px;
	width: 100px;
	display: inline-block;
	text-align: center;
	height: 180px;
}	

#campaign .campaign-inner.special-camp p {
	line-height:1.8;
}
#campaign .special-camp .campaign-left, #campaign .special-camp .campaign-right {
	margin-bottom:20px;
	padding:20px 20px;
	border-radius: 4px;
}

#campaign .campaign-inner:last-of-type p {
	width:100%;
	margin-bottom: 31px;
}

#campaign .campaign-inner:last-of-type .btn {

background: #ffa927;

padding:10px;

border-radius:8em;

max-width: 640px;

width: 100%;
}
/***** ▲Special-Campaign▲ *****/
#campaign .campaign-left {
    background: #2aabe4;
    color: #fff;
    width: 100%;
    padding: 5px;
    text-align: center;
}

#campaign .campaign-right {
    width: 100%;
    padding: 10px;
    font-size: calc(1.2rem + ((1vw - .32rem) * 0.21));
}

/***** ▲campaign▲ *****/

/***** ▼tokuten▼ *****/
.tokuten-wrap{ 
    font-size: calc(1rem + ((1vw - .32rem) * 0.21));
}

.tokuten-wrap p{ 
    margin-bottom: calc(0.4rem + ((1vw - .32rem) * 0.42));
}

.tokuten-wrap h2{
    font-size: calc(1.4rem + ((1vw - .32rem) * 0.42));
    font-weight: 700;
    margin-bottom: calc(0.8rem + ((1vw - .32rem) * 0.21));
}

.tokuten-wrap figure{ 
    width: 90%;
}

/***** ▲tokuten▲ *****/

/***** ▼attention▼ *****/
.attention-wrap > h4{
    text-align: center;
    color: #232323;
    font-size: calc(1.6rem + ((1vw - .32rem) * 0.83));
    padding-bottom: 10px;
    border-bottom: #5A5A5A dotted 1px;
    margin-bottom: 10px;
    font-weight: bold;
}

.attention-wrap > h4 span{
    display: block;
    font-size: calc(1.2rem + ((1vw - .32rem) * 0.21));
}

.attention-wrap {
    font-size: calc(1.2rem + ((1vw - .32rem) * 0.21));
    width: 100%;
    padding: calc(1rem + ((1vw - .32rem) * 1.56));
    border: #a40000 2px dotted;
    background-color: #f2fcff;
}

.attention-wrap p{
    margin-bottom: 10px;
}

.attention-wrap p:nth-child(odd){
    margin-bottom: 10px;
    padding-left: 10px;
}

.attention-bold{
    font-size: calc(1.6rem + ((1vw - .32rem) * 0.21));
}

/***** ▲attention▲ *****/


/***** ▼about point▼ *****/
.point-wrap{
    font-size: calc(1rem + ((1vw - .32rem) * 0.21));
}

.point-wrap h2{
    font-size: calc(1.2rem + ((1vw - .32rem) * 0.63));
    border-bottom: 2px #5C5C5C solid;
    padding-bottom: 0.3rem;
    margin-bottom: calc(0.8rem + ((1vw - .32rem) * 0.21));
    text-align: left;
}

.point-wrap h2 .title{
    position: absolute;
    top:-5px;
    right: 0;
    padding: 5px;
    color: #FFFFFF;
    background-color: #CC0003;
    text-align: center;
    font-size: 1.2rem;
}

.point-wrap article{
    padding: calc(0rem + ((1vw - .32rem) * 1.04));
    font-size: calc(1.2rem + ((1vw - .32rem) * 0.21));
}

.point-wrap p{ 
    margin-bottom: calc(1rem + ((1vw - .32rem) * -0.21));
}

.point-wrap figure{ 
    width: 60%;
    padding: 10px 0;
}

.point-wrap p span {
    font-size: 1.25rem;
    color: #ca0000;
}

/***** ▲about point▲ *****/

/***** ▼join▼ *****/
.kiyaku-wrap {
    width: 100%;
    text-align: center;
    font-size: calc(1.4rem + ((1vw - .32rem) * 0.42));
}

.kiyaku-wrap p{ 
    margin-bottom: calc(0.4rem + ((1vw - .32rem) * 0.42));
}

.kiyaku-wrap > h2{ 
    width: 100%;
    font-size: calc(1.8rem + ((1vw - .32rem) * 1.88));
    margin: calc(2rem + ((1vw - .32rem) * -1.04)) auto calc(1.5rem + ((1vw - .32rem) * 2.08));
    padding: calc(2rem + ((1vw - .32rem) * -1.04));
    border: 2px #5FB100 solid;
}

.kiyaku-wrap p span{
    font-size: 1.1rem;
    display: block;
    text-align: left;
}
/***** ▲join▲ *****/

/***** ▼integration▼ *****/

.integration-wrap{
    width: 100%;
    text-align: center;
    font-size: calc(1.4rem + ((1vw - .32rem) * 0.63));
}

.integration-wrap > h2{ 
    width: 100%;
    font-size: calc(1.8rem + ((1vw - .32rem) * 1.88));
    margin: calc(2rem + ((1vw - .32rem) * -1.04)) auto calc(1.5rem + ((1vw - .32rem) * 2.08));
    padding: calc(2rem + ((1vw - .32rem) * -1.04));
    border: 2px #5FB100 solid;
    font-weight: bold;
}

.integration-wrap > h3{ 
    width: 100%;
    font-size: calc(1.8rem + ((1vw - .32rem) * 0.63));
    margin: calc(2rem + ((1vw - .32rem) * -1.04)) auto calc(1.5rem + ((1vw - .32rem) * 2.08));
}

.integration-wrap > h4{
    font-size: calc(1.3rem + ((1vw - .32rem) * 1.15));
    margin-bottom: 5px;
    color: #C40003;
}

.integration-wrap .merit{
    width: 100%;
    padding: calc(1rem + ((1vw - .32rem) * 0.52));
    margin-bottom: calc(1rem + ((1vw - .32rem) * 0.52));
}

.integration-wrap .merit > h3{
    width: 100%;
    font-size: calc(1.8rem + ((1vw - .32rem) * 0.63));
    margin-bottom: calc(0.5rem + ((1vw - .32rem) * 0.52));
}


.integration-wrap .merit p{ 
    margin-bottom: calc(0.4rem + ((1vw - .32rem) * 0.42));
    font-size: calc(1.2rem + ((1vw - .32rem) * 0.21));
}

.integration-wrap .step{
    width: 100%;
    margin-bottom: calc(1.5rem + ((1vw - .32rem) * 1.56));
}

.integration-wrap .step > h2{
    width: 100%;
    border-radius: 5px;
    color: #FFFFFF;
    background-color: #88BC00;
    font-size: calc(1.8rem + ((1vw - .32rem) * 0.63));
    padding: calc(0.5rem + ((1vw - .32rem) * 0.31));
    margin-bottom: calc(0.5rem + ((1vw - .32rem) * 0.52));
}

.integration-wrap .step > h3{
    width: 100%;
    calc(1.8rem + ((1vw - .32rem) * 0.21));
    margin-bottom: calc(0.8rem + ((1vw - .32rem) * 0.21));
 }

.integration-wrap .step p{ 
    font-size: calc(1rem + ((1vw - .32rem) * 0.21));
    margin-bottom: calc(0.4rem + ((1vw - .32rem) * 0.42));
    text-align: left;
}

.integration-wrap .step p span{
    font-size: calc(1.4rem + ((1vw - .32rem) * 0.21));
}

/***** ▲integration▲ *****/

/***** ▼qa▼ *****/

.qa-wrap{
    
}
.qa-wrap > h2{ 
    width: 100%;
    font-size: calc(1.8rem + ((1vw - .32rem) * 0.63));
    margin: calc(2rem + ((1vw - .32rem) * -1.04)) auto calc(1rem + ((1vw - .32rem) * 1.56));
    padding: calc(1.8rem + ((1vw - .32rem) * -1.04));
    background-color: #FFFEC4;
    text-align: center;
}
/***** ▲qa▲ *****/

/*****▼ action ▼*****/
/*ホバー時に半透過*/
.hover-opacity{
	transition: .5s;
}
.hover-opacity:hover{
	opacity: .5;
}
/*△ホバー時に半透過△*/
/*スクロール時に半透過*/
.js_translucent{
	opacity: .4!important;
}
/*△スクロール時に半透過△*/
/*****▲ action ▲*****/

/*****▼ アコーディオン ▼*****/
.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;
}
/*****▲ アコーディオン ▲*****/

/***** ▼button▼ *****/
.btn-wrap{
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-ms-flex-pack: justify;
  justify-content: space-between;
}

.btn{
	display: block;
	padding: 10px;
	color: #fff;
	font-size: 90%;
	text-align: center;
}

.sns-wrap{
	width: 70%;
	max-width: 250px;
}

.sns-btn{
	width: 30%;
}


.shopping-link {
    width: 100%;
    margin: 10px auto;
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
}

.shopping-link2 {
    width: 100%;
    margin: 10px auto;
    text-align: center;
    font-size: 3.4rem;
    font-weight: 600;
}

.shopping-link a {
    color: #fff;
    display: block;
    text-decoration: none;
}

.shopping-link2 a {
    color: #fff;
    display: block;
    text-decoration: none;
}

.button {
    width: 100%;
    height: auto;
    background-color: 
    #06F;
    border-radius: 5px;
    font-size: 1.8rem;
    font-weight: bold;
    text-align: center;
    line-height: 53px;
    display: block;
    color:#fff;
}
.button:hover {
    background-color: 
    #6CF;
    transition: .3s;
}

.button img{
    width: 10%;
    display: inline-block;
}
/***** ▲button▲ *****/

/***** ▼modal▼ *****/
.modal-wrap{
    width: 100%;
    margin-bottom: calc(3rem + ((1vw - .32rem) * 3.13));
}

.modal, .modal-box {
    z-index: 2000;
}

.modal-sandbox {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: transparent;
}

.modal {
  display: none; 
  position: fixed;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: rgb(0,0,0);
  background: rgba(0,0,0,.8);
  overflow: auto;
}

.modal-box {
  position: relative;
  width: 80%;
  max-width: 920px;
  margin: 100px auto;
  animation-name: modalbox;
  animation-duration: .4s;
  animation-timing-function: cubic-bezier(0,0,.3,1.6);
}

.modal-header {
  padding: 20px 40px;
  background: #957E00;
  color: #ffffff;
}

.modal-body {
  background: #ECEFF1;
  padding: 30px 30px;
  font-size: 14px;
  line-height: 140%;
}

.modal-body p{
    white-space: pre-wrap;
    text-align: left;
}

.modal-box h1{
	font-size:26px;
	border-bottom:none;
}

.modal-box h1::before {
	display:none;
}

.modal-body p{
	margin-bottom:10px;
}

.modal-body .name{
	font-size:20px;
	font-weight: 800;
}

.modal-body hr{
	border-bottom:1px #999999 solid;
	margin: 20px auto;
	width: 70%;
}

/* Close Button */
.close-modal {
  text-align: right;
  cursor: pointer;
}

/* Animation */
@-webkit-keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

@keyframes modalbox {
  0% {
    top: -250px; 
    opacity: 0;
  }
  100% {
    top: 0; 
    opacity: 1;
  }
}

/***** ▲modal▲ *****/

/***** ▼footer▼ *****/
footer{
	height: 7vh;
	background: #000;
}

.footer-logo img{
	height: 6vh;
}

.footer-pagetop {
  position: fixed;
  bottom: 2vh;
  right: 5vw;
	z-index: 100;
	color: #c70012;
}
/***** ▲footer▲ *****/

/***** ▼2021.5.4 add*****/
.table-wrap{
    width: 100%;
}
.table-wrap p{
    margin-bottom: 20px;
}
table {
  border-collapse: collapse;
  margin: 20px auto;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

table tr {
  padding: .35em;
  border-bottom: 2px solid #fff;
}
table th, table td {
    padding: 1em 10px 1em 1em;
    border-right: 2px solid #fff;
    text-align: center;
}
table th {
  font-size: .85em;
}
table thead tr{
  background-color: #167F92;
  color:#fff;
}
table tbody th {
    background-color: #3eb745;
    color: #fff;
}
.txt{
   font-size: .85em;
}
.price{
  color: #167F92;
  font-weight: 900;
}
.non{
  background-color:#fbfbfb;
}
@media screen and (max-width: 640px) {
  table {
    border: 0;
    width:100%
  }
  table th{
    background-color: #167F92;
    display: block;
    border-right: none;
  }
  table thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  table tr {
    display: block;
    margin-bottom: .625em;
  }
  table td {
    border-bottom: 1px solid #bbb;
    display: block;
    font-size: .8em;
    text-align: right;
    position: relative;
    padding: .625em .625em .625em 4em;
    border-right: none;
  }
  
  table td::before {
    content: attr(data-label);
    font-weight: bold;
    position: absolute;
    left: 10px;
    color: #167F92;
  }
  table td:last-child {
    border-bottom: 0;
  }
  table tbody th {
    color: #fff;
}
}

/***** ▲2021.5.4 add▲*****/

@media (min-width:640px){
  .content-wrap > h1 span{
    font-size: 100%;
    line-height: 1.5;
  }
  
  .brpc {
    display: block;
  }

  .brsp {
    display: none;
  }
  
  .banner-attention {
    text-align: center;
  }
  
	.store-wrap figure{
		width: 48%;
		margin: 1%;
	}
    .flex-container-4{
        width: 50%;
    }
    .flex-container-2{
        width: 50%;
    }
    
    #campaign .campaign-inner{
		border: none;
	}
	
	#campaign  .campaign-left{
		width: 25%;
		padding: 20px;
	}
	
	#campaign  .campaign-right{
		width: 75%;
		padding: 20px;
	}
}

@media (min-width:960px){
  
  .intro-cap,
  .intro-attention {
    text-align: center;
  }
    .shopping-link{
        width: 80%;
    }
    .flex-container-2 {
    width: 50%;
    }
	.store-wrap figure{
		width: calc((100% / 3) - 2%);
	}
    .flex-container-4{
        width: 25%;
    }
    .point-wrap h2 .title{
        font-size: 1.8rem;
    }
    .kiyaku-wrap{
    width: 80%;
    }
    .attention-wrap{
        width: 80%;
    }
    .modal-wrap{
        width: 80%;
    }
    .kiyaku-wrap > h2{ 
    }
    .integration-wrap .merit{
        width: 80%;
     }
    .integration-wrap > h2{ 
        width: 80%;
    }
    .integration-wrap .step{
        width: 80%;
    }
}

@media (min-width:1280px){
	/*▼可変サイズの最大値▼*/
	body{
		font-size: 1.8rem;
	}
	
	.content-wrap{
		padding: 6.4rem 3.2rem;
	}
	
	
	.content-wrap > h2{
		font-size: 3.4rem;
	}
	
	.content-wrap > h1:after {
		margin: 2rem auto 6rem;
	}
	/*▲可変サイズの最大値▲*/

	.special-camp h2 span {
		width:180px;
		left: -50px;
	}
}