@charset "utf-8";

@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(//use.fontawesome.com/releases/v5.0.6/css/all.css);

/*
	font-family:"FontAwesome";
	font-family:"Font Awesome 5 Free";
*/


/*========================================
 Base／固定
========================================*/
body {font-family:"メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;}


/*===== FontSize 早見表(必要なもののみ残す) 　※ 16pxは1remで記載 ※ =====*/
html {
    --12px:calc(12 / 16 * 1rem);
    --13px:calc(13 / 16 * 1rem);
    --14px:calc(14 / 16 * 1rem);
    --15px:calc(15 / 16 * 1rem);
    --18px:calc(18 / 16 * 1rem);
    --20px:calc(20 / 16 * 1rem);
    --24px:calc(24 / 16 * 1rem);
    --30px:calc(30 / 16 * 1rem);
}


/* topへ戻る */
footer #totop{
    width:40px;
    height:40px;
    padding:0;
    text-indent:-9999px;
    background-color:#0079c7;
    border-radius:100%;
    position:fixed;
    bottom:10px;
    right:0;
    z-index:800;
    display:none;
    cursor:pointer;
}
footer #totop a {display:block;}
footer #totop::after{
    content:"\f106";
    font-family:"FontAwesome";
    font-size:40px;
    line-height:35px;
    text-indent:0;
    text-align:center;
    color:#fff;
    display:block;
    position:absolute;
    top:0;
    left:0;
    right:0;
}



/*========================================
 カスタム用 ／PC&SP
========================================*/
/*
ye ffef3e
bl 00afec
*/
/*===== class名でfontを使用する場合／下記の記述でfontを設定 =====*/
.Font13 {font-size:var(--13px);}
a {
    color: #fff;
    text-decoration: none;
}
a:hover {
    opacity: 0.7;
    transition: 0.3s;
}
main {
    margin-inline: auto;
    width: 100%;
    font-family: "Zen Maru Gothic", "Hiragino Maru Gothic ProN W4", "游ゴシック", "Noto Sans JP", sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
    color: #666;
}
main img {
    max-width: 100%;
}
.contentsWrap {
    padding: 5rem 0 7rem;
    max-width: 900px;
    width: 90%;
    opacity: 0;
    transition: all .3s;
}
.fadeIn {
    opacity: 1;
    animation: slideIn .8s ease-out 1 forwards;
}
 
@keyframes slideIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
  }
  65% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
  20%,100% {
    opacity: 1;
  }
}

.secTtl {
    position: relative;
    display: inline-block;
    padding: .5em 2em;
    margin-bottom: 2rem;
    border-radius: 10px;
    background-color: #0096df;
    color: #fff;
    filter: drop-shadow(5px 5px 0 rgba(0, 0, 0, 0.1));
}
.secTtl::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 1em;
    width: 20px;
    height: 20px;
    background-color: #0096df;
    clip-path: polygon(0 0px, 20px 0, 10px 10px);
}
.product .secTtl, .shop .secTtl {
    background-color: #ffe861;
    color: #666;
}
.product .secTtl::after, .shop .secTtl::after {
    background-color: #ffe861;
}
.small {
    font-size:var(--13px);
}

/*back*/
.top, .product, .shop {
    position:relative;
    width: 100%;
    background: #0096df;
}
.top::after, .product::after {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #ffe861 50%, transparent 50%),
    linear-gradient(315deg, #ffe861 50%, transparent 50%);
    background-size: 65px 65px;
    height: 40px;
    width: 100%;
    right:0;
    bottom: 0;
}
.about, .campaign {
    position:relative;
    width: 100%;
    background: #ffe861;
}
.about::after, .campaign::after {
    content: "";
    position: absolute;
    background: linear-gradient(45deg, #0096df 50%, transparent 50%),
    linear-gradient(315deg, #0096df 50%, transparent 50%);
    background-size: 65px 65px;
    height: 40px;
    width: 100%;
    right:0;
    bottom: 0;
}

/*top*/
.topImg {
    animation: topIn .8s ease-out 1 forwards;
}
@keyframes topIn {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  50% {
    transform: translateY(0);
  }
  65% {
    transform: translateY(5px);
  }
  100% {
    transform: translateY(0);
  }
  20%,100% {
    opacity: 1;
  }
}

/*about*/
.aboutInner {
    display: flex;
    align-items: center;
    flex-direction: row-reverse;
    gap: 2em;
    padding: 2rem 0;
}
.aboutImg {
    width: 30%;
}
.aboutTxt {
    margin: 0;
    width: 70%;
    font-size: var(--20px);
    font-weight: bold;
    text-align: left;
}

/*product*/
.productInner {
    display: flex;
    align-items: center;
    gap: 3em;
    padding: 2rem 0;
    text-align: left;
}
.productImg {
    width: 30%;
}
.productList {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    width: 70%;
    margin: auto;
    color: #fff;
}
.productList dt {
    padding: .5em;
    width:8em;
    border-bottom: 1px solid #fff;
}
.productList dd {
    margin: 0;
    padding: .5em;
    width: calc(100% - 8em);
    border-bottom: 1px solid #fff;
}

.btn {
    position: relative;
    display: block;
    margin: 2rem auto;
    padding: 1rem;
    max-width: 600px;
    background: #fff;
	border: 2px solid #666;
    border-radius: 99px;
    color: #666;
    font-size: var(--24px);
    font-weight: 600;
    line-height: 1.4;
}
.btn::before {
	position: absolute;
	content: "\f138";
	font-family: "FontAwesome";
	font-weight: 900;
	font-size: 2rem;
	color:#0096df;
	top: 48%;
	right: 1.5rem;
	transform: translatey(-50%);
}
.btn:hover {
	opacity:1;
	background-color:#0096df;
	color:#ffe861;
}
.btn:hover::before {
    color: #ffe861;
}
.shop .btn:hover {
	opacity:1;
	background-color:#ffe861;
	color:#0096df;
}
.shop .btn:hover::before{
	color:#0096df;
}


/*campaign*/
.campaignBox {
    margin: 2rem auto 4rem;
    font-size: var(--20px);
}
.campaignBox:last-child {
    margin-bottom:0;
}
.campaignBoxTtl {
    font-size: var(--24px);
    background-color: #fff;
    padding: .5em;
    margin-bottom: 2rem;
    border-bottom: 3px #0096df dotted;
    font-weight: bold;
}
.campaignTxt {
    font-weight: bold;
}
.attention {
    font-size: 1rem;
}

/*shop*/
.shopInner {
    margin:2rem auto;
    font-size:var(--20px);
    color:#fff;
}
.shopImg {
    margin-bottom: 2rem;
}

/* PC */
@media screen and (min-width: 768px) {
.pc {display: block;}
    
}


/* スマホ */
@media screen and (max-width: 767px) {
    .sp {display: none;}

    .contentsWrap {
        padding: 3rem 0 5rem;
    }

    .aboutInner {
        display: block;
        width: 100%;
        padding: 0;
    }
    .aboutImg {
        max-width: 200px;
        width: 100%;
        padding-bottom: 2rem;
    }
    .aboutTxt {
       width:100%;
        font-size: 1rem;
    }
    
    .productInner {
        display: block;
        width: 100%;
        padding: 0;
    }
    .productImg {
        max-width: 300px;
        width: 100%;
        padding-bottom: 2rem;
    }
    .productList {
        display: block;
        width: 100%;
        font-size: var(--15px);
    }
    .productList dt {
        width: 100%;
        padding:.3rem;
        border-radius: 5px;
        background:#fff;
        color:#666;
        text-align: center;
        border:none;
    }
    .productList dd {
        width: 100%;
        border:none;
        padding-bottom:1rem;
    }   
    .btn {
        font-size: 1rem;
    }
    .btn::before {
        font-size: 1.6rem;
        right:.8em;
    }

    .campaignBoxTtl {
        font-size: var(--18px);
        margin-bottom: 1rem;
    }
    .campaignTxt {
        font-size: 1rem;
        text-align: left;
    }

    .shopInner {
        font-size: 1rem;
        text-align:left;
    }
}