@charset "utf-8";
/* reset */
body,div,dl,dt,dd,ul,ol,li,p,h1,h2,h3,h4,h5,h6,th,td,pre,code,blockquote,form,fieldset,legend,input,textarea,figcaption,figure{margin:0;padding:0}table{border-collapse:collapse;border-spacing:0}fieldset,img{border:0}address,caption,cite,code,dfn,em,th,var{font-style:normal;font-weight:normal}li{list-style:none}caption,th{text-align:left}h1,h2,h3,h4,h5,h6{font-size:100%;font-weight:normal}q:before,q:after{content:''}abbr,acronym{border:0;font-variant:normal}sup{vertical-align:text-top}sub{vertical-align:text-bottom}input,textarea,select{font-family:inherit;font-size:inherit;font-weight:inherit}input,textarea,select{*font-size:100%}legend{color:#FFF}hr{display:none}img{vertical-align:bottom}select,input,button,textarea{font-size:99%}table{font-size:inherit;font:100%;border-collapse:collapse;border-spacing:0}pre,code,kbd,samp,tt{font-family:monospace;*font-size:108%;line-height:100%}.hd{display:block;width:0;height:0;overflow:hidden}.cf:before,.cf:after{content:"";display:table}.cf:after{clear:both}.cf{*zoom:1}article,aside,details,figcaption,figure,footer,header,hgroup,hr,menu,nav,section,main{display:block}*{margin:0;padding:0;box-sizing:border-box;max-height:999999px;outline:none;}*:focus{outline: none;}button{background-color:transparent;border:none;cursor:pointer;outline:none;padding:0;}
/*-----------------------------------------------
 * 01. Base
 * 02. Parts
 * 03. Header
 * 04. Footer
   -> removed
 * 05. About us
 * 06. Free E-BOOK
 * 07. Search Modal
 * 08. Infinitescroll
-------------------------------------------------*/
/*-----------------------------------------------
 * 01. Base
-------------------------------------------------*/
html{ font-size: 62.5%; }
body{
    -webkit-text-size-adjust: 100%;
    background-color: #F2EFEA;
    color: #111;
    font-family: 'DM Sans', 'Helvetica Neue', 'Helvetica', 'Arial', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ ゴシック', sans-serif;
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: normal;
    letter-spacing: 0.07em;
    line-height: 1.8;
    word-wrap: break-word;
}
#fullWrap{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    position: relative;
}
.pc{ display: block; }
.sp{ display: none; }
img{ max-width: 100%; height: auto; }
@media screen and (max-width:1152px){
    .sp{ display: block; }
    .pc{ display: none; }
}
@media screen and (max-width:768px){
    body{
        font-size: 12px;
        font-size: 1.2rem;
        min-width: 320px;
    }
}
::selection{
	background: #B7D4F9;
	color: #fff;
}
::-moz-selection{
    background: #B7D4F9;
    color:#fff;
}
/* mainContents */
#mainContents{
    color: #111;
    margin-top: 75px;
}
@media screen and (max-width:1152px){
    #mainContents{
        margin-top: 110px;
    }
}
/* Form reset */
input[type="text"] {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}
input[type="radio"] {
    display: none;
    border: 0;
    margin: 0;
}
input[type="checkbox"] {
    margin: 0;
    display: none;
}
input[type="submit"],
button[type="submit"] {
    background-color: transparent;
    cursor: pointer;
}
textarea {
    border: 0;
    outline: 0;
}
.radioWrap input,
.checkWrap input{
    display: none;
}
.input-wrap {
    width: 100%;
}
input:focus::-webkit-input-placeholder { color:transparent; }
input:focus:-moz-placeholder { color:transparent; }
input:focus::-moz-placeholder { color:transparent; }
/* PLACEHOLDER-COLOR */
input:-ms-input-placeholder { color: rgba(17, 17, 17, 0.3); }
input::-ms-input-placeholder { color: rgba(17, 17, 17, 0.3); }
input::placeholder { color: rgba(17, 17, 17, 0.3); }
/*-----------------------------------------------
 * 02. Parts
-------------------------------------------------*/
/* max-width */
.maxW{
    max-width: 1680px;
    margin: 0 auto;
    padding: 0 100px;
}
@media screen and (max-width:1152px){
    .maxW{
        max-width: 100%;
        padding: 0 10px;
    }
}
/* main background color */
.mainBg{
    background-color: #111;
}
/* a link */
a{ color: #111; text-decoration: underline; }
a:hover{ text-decoration: none;}
/* font serif */
.fontSerif_en{
    font-family: 'DM Serif Text', serif;
}
.fontSerif_jp{
    font-family: 'Noto Serif JP', serif;
}
/* opacity hover */
.oh { transition: opacity .3s ease; }
.oh:hover { opacity: .7; }
@media screen and (max-width:1152px){
    .oh:hover { opacity: 1; }
}
/* link border */
.linkB{
    display: table;
    height: 50px;
}
.linkB > a{
    border: 2px solid #111;
    border-radius: 25px;
    color: #111;
    display: table-cell;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 23px;
    letter-spacing: 0.01em;
    width: 100%;
    height: 50px;
    padding: 11px 25px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.linkB > a:hover {
    background-color: #111;
    color: #fff;
}
.linkB > a > span {
    display: inline-flex;
    padding-right: 22px;
    position: relative;
    white-space: nowrap;
}
.linkB > a > span:before {
    content: "";
    background-color: #111;
    width: 13px;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease-in-out;
}
.linkB > a:hover > span:before{
    background-color: #fff;
    right: -6px;
}
.linkB > a > span:after {
    content: "";
    background-color: transparent;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #111;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}
.linkB > a:hover > span:after{
    border-color: #fff;
    right: -6px;
}
.linkBW{
    display: table;
    height: 50px;
}
.linkBW > a{
    border: 2px solid #fff;
    border-radius: 25px;
    color: #fff;
    display: table-cell;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 23px;
    letter-spacing: 0.01em;
    width: 100%;
    height: 50px;
    padding: 11px 25px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.linkBW > a:hover {
    background-color: #fff;
    color: #111;
}
.linkBW > a > span {
    display: inline-flex;
    padding-right: 22px;
    position: relative;
    white-space: nowrap;
}
.linkBW > a > span:before {
    content: "";
    background-color: #fff;
    width: 13px;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease-in-out;
}
.linkBW > a > span:after {
    content: "";
    background-color: transparent;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #fff;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}
.linkBW > a:hover > span:before{
    background-color: #111;
    right: -6px;
}
.linkBW > a:hover > span:after{
    border-color: #111;
    right: -6px;
}
/* freshtrax__linkA */
.freshtrax__linkA{
    display: table;
    height: 60px;
}
.freshtrax__linkA a{
    border: 2px solid #111;
    border-radius: 30px;
    color: #111;
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0.01em;
    width: 100%;
    height: 60px;
    padding: 16px 30px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.freshtrax__linkA a:hover {
    background-color: #111;
    color: #fff;
}
.freshtrax__linkA a > span {
    display: inline-flex;
    position: relative;
    white-space: nowrap;
}
@media screen and (max-width:1152px){
    .freshtrax__linkA{
        height: 50px;
    }
    .freshtrax__linkA a{
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 13px;
        height: 50px;
        padding: 16px 50px;
    }
    .freshtrax__linkA a:hover {
        background-color: #fff;
        color: #111;
    }
}
/* freshtrax__linkAW */
.freshtrax__linkAW{
    display: table;
    height: 60px;
}
.freshtrax__linkAW a{
    border: 2px solid #fff;
    border-radius: 30px;
    color: #fff;
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 23px;
    letter-spacing: 0.01em;
    width: 100%;
    height: 60px;
    padding: 16px 30px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.freshtrax__linkAW a:hover {
    background-color: #fff;
    color: #111;
}
.freshtrax__linkAW a > span {
    display: inline-flex;
    position: relative;
    white-space: nowrap;
}
@media screen and (max-width:1152px){
    .freshtrax__linkAW{
        height: 50px;
    }
    .freshtrax__linkAW a{
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 13px;
        height: 50px;
        padding: 16px 50px;
    }
    .freshtrax__linkAW a:hover {
        background-color: #111;
        color: #fff;
    }
}
/* freshtrax__linkB */
.freshtrax__linkB{
    display: table;
    height: 50px;
}
@media screen and (max-width:1152px){
    .freshtrax__linkB{
        height: 40px;
    }
}
.freshtrax__linkB a{
    border: 2px solid #fff;
    border-radius: 25px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 23px;
    letter-spacing: 0.01em;
    height: 100%;
    padding: 0 25px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
@media screen and (max-width:1152px){
    .freshtrax__linkB a{
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 13px;
        padding: 0px 43px;
    }
}
.freshtrax__linkB a:hover {
    background-color: #fff;
    color: #111;
}
@media screen and (max-width:1152px){
    .freshtrax__linkB a:hover {
        background-color: #111;
        color: #fff;
    }
}
.freshtrax__linkB a > span {
    display: inline-flex;
    margin: 0 auto;
    padding-right: 22px;
    position: relative;
    white-space: nowrap;
}
@media screen and (max-width:1152px){
    .freshtrax__linkB a > span {
        padding-right: 0;
    }
}
.freshtrax__linkB > a > span:before{
    content: "";
    background-color: #fff;
    width: 13px;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease-in-out;
}
.freshtrax__linkB > a:hover > span:before{
    background-color: #111;
    right: -6px;
}
.freshtrax__linkB > a > span:after {
    content: "";
    background-color: transparent;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #fff;
    display: block;
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}
.freshtrax__linkB > a:hover > span:after{
    border-color: #111;
    right: -6px;
}
@media screen and (max-width:1152px){
    .freshtrax__linkB > a > span:before,
    .freshtrax__linkB > a > span:after{
        content: none;
    }
}
/*-----------------------------------------------
 * 03. Header
-------------------------------------------------*/
.header{
    width: 100%;
    height: 75px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    transition: all .3s ease-in-out;
}
@media screen and (max-width:1152px){
    .header{
        height: 55px;
    }
}
.header__wrap{
    width: 100%;
    height: 100%;
}
.header__wrap__in{
    width: 100%;
    height: 100%;
    position: relative;
}
/* js-header */
@media screen and (max-width:1152px){
    .header.active{
        top: -120px;
    }
    .header.on{
        top: 0 !important;
    }
}
/**
 * header__btrax
 */
.header__btrax{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition: all .3s ease-in-out;
}
.header__btrax.off{
    opacity: 0;
    pointer-events: none;
}
.category_only .header__btrax{
    display: none;
}
@media screen and (max-width:1152px){
    .header__btrax.off{
        opacity: 1;
        pointer-events: auto;
    }
    .category_only .header__btrax{
        display: block;
    }
}
.header__btrax__wrap{
    width: 100%;
    height: 100%; 
    display: flex;
    position: relative;
}
/* icon */
.header__btrax__icon{
    width: 45px;
    height: 45px;
    margin: auto 29px auto 0;
}
.header__btrax__icon a img{
    width: 100%;
}
@media screen and (max-width:1152px){
    .header__btrax__icon{
        width: 32px;
        height: 32px;
        margin-right: 0;
    }
}
/* nav */
.header__btrax__nav__lists{
    display: flex;
    height: 100%;
}
.header__btrax__nav__lists > li{
    height: 100%;
}
.header__btrax__nav__lists > li a{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 23px;
    letter-spacing: 0.01em;
    height: 100%;
    padding: 0 25px;
    text-decoration: none;
}
.header__btrax__nav__lists > li > a > span{
    display: flex;
    margin: 0 auto;
    position: relative;
    white-space: nowrap;
}
.header__btrax__nav__lists > li > a > span:before{
    content: "";
    background-color: #fff;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width .3s ease-in-out;
}
.header__btrax__nav__lists > li > a:hover > span:before{
    width: 100%;
}
@media screen and (max-width:1152px){
    .header__btrax__nav{
        -webkit-overflow-scrolling: touch;
        display: flex;
        width: calc(100% - -20px);
        height: calc(100vh - 55px);
        margin: 0 -10px;
        padding: 50px 0;
        pointer-events: none;
        position: absolute;
        top: 55px;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .header__wrap.active .header__btrax__nav{
        overflow: auto;
        pointer-events: auto;
    }
    .header__btrax__nav:after{
        content: "";
        background-color: #fff;
        width: 100%;
        height: 0;
        position: fixed;
        top: 55px;
        left: 0;
        z-index: -1;
        transition: height .3s ease-in-out;
    }
    .header__wrap.active .header__btrax__nav:after{
        height: 100%;
    }
    .header__btrax__nav__lists{
        display: block;
        height: auto;
        margin: auto;
        position: relative;
        z-index: 2;
    }
    .header__btrax__nav__lists > li{
        height: auto;
        margin-bottom: 30px;
        opacity: 0;
        transform: translateY(20px);
        transition: all .3s ease-in-out;
    }
    .header__btrax__nav__lists > li.active{
        opacity: 1;
        transform: translateY(0);
    }
    .header__btrax__nav__lists > li:last-child{
        margin-bottom: 0;
    }
    .header__btrax__nav__lists > li a{
        color: #111;
        display: block;
        font-size: 30px;
        font-size: 3rem;
        line-height: 39px;
        padding: 0;
        text-align: center;
    }
    .header__btrax__nav__lists > li > a > span{
        display: block;
        margin: auto;
    }
    .header__btrax__nav__lists > li > a > span:before,
    .header__btrax__nav__lists > li > a > span:after{
        content: none;
    }
}
.header__btrax__nav__lists > li.navRight{
    height: 50px;
    margin: auto;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
}
.header__btrax__nav__lists > li.navRight > a{
    border: 2px solid #fff;
    border-radius: 25px;
    transition: all .3s ease-in-out;
}
.header__btrax__nav__lists > li.navRight > a:hover{
    background-color: #fff;
    color: #111;
}
.header__btrax__nav__lists > li.navRight > a > span{
    padding-right: 22px;
    position: relative;
}
.header__btrax__nav__lists > li.navRight > a > span:before{
    width: 13px;
    height: 2px;
    margin: auto;
    top: 0;
    right: 0;
    left: auto;
    transition: all .3s ease-in-out;
}
.header__btrax__nav__lists > li.navRight > a > span:after{
    content: "";
    background-color: transparent;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #fff;
    display: block;  
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}
.header__btrax__nav__lists > li.navRight > a:hover > span:before{
    background-color: #111;
    right: -6px;
}
.header__btrax__nav__lists > li.navRight > a:hover > span:after{
    border-color: #111;
    right: -6px;
}
@media screen and (max-width:1152px){
    .header__btrax__nav__lists > li.navRight{
        width: 100%;
        height: auto;
        margin: auto;
        position: relative;
        top: auto;
        bottom: auto;
        right: auto;
    }
    .header__btrax__nav__lists > li.navRight > a{
        border: none;
        border-radius: none;
    }
    .header__btrax__nav__lists > li.navRight > a:hover{
        background-color: none;
    }
    .header__btrax__nav__lists > li.navRight > a > span{
        padding-right: 0;
    }
    .header__btrax__nav__lists > li.navRight > a > span:after{
        content: none;
    }
    /* mTrigger */
    .mTriggerWrap{
        width: 40px;
        height: 100%;
        margin-left: 10px;
        position: relative;
    }
    .mTrigger{
        display: block;
        width: 20px;
        height: 16px;
        margin: auto;
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
    }
    .mTrigger > span{
        background-color: #fff;
        display: block;
        width: 100%;
        height: 2px;
        position: absolute;
        left: 0;
        transition: all .3s ease-in-out;
    }
    .mTrigger > span:nth-child(1){
        top: 0;
        animation: menu-bar01 .6s forwards;
    }
    .mTrigger > span:nth-child(2){
        top: 7px;
        transition: all .15s .15s;
        opacity: 1;
    }
    .mTrigger > span:nth-child(3){
        bottom: 0;
        animation: menu-bar02 .6s forwards;
    }
    .mTrigger.active > span:nth-child(1){
        animation: active-menu-bar01 .6s forwards;
    }
    .mTrigger.active > span:nth-child(2){
        opacity: 0;
    }
    .mTrigger.active > span:nth-child(3){
        animation: active-menu-bar03 .6s forwards;
    }
}
@keyframes menu-bar01 {
  0% {
    transform: translateY(7px) rotate(45deg);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes menu-bar02 {
  0% {
    transform: translateY(-7px) rotate(-45deg);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(0);
  }
}
@keyframes active-menu-bar01 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(7px) rotate(0);
  }
  100% {
    transform: translateY(7px) rotate(45deg);
  }
}
@keyframes active-menu-bar03 {
  0% {
    transform: translateY(0) rotate(0);
  }
  50% {
    transform: translateY(-7px) rotate(0);
  }
  100% {
    transform: translateY(-7px) rotate(-45deg);
  }
}
/* langChange */
.header__btrax__langChange{
    display: flex;
    height: 100%;
    margin-left: auto;
    margin-right: 210px;
}
.header__btrax__langChange li{
    display: flex;
}
.header__btrax__langChange li a{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 23px;
    letter-spacing: 0.01em;
    height: 100%;
    text-decoration: none;
}
@media screen and (max-width:1152px){
    .header__btrax__langChange{
        margin-right: 0;
    }
    .header__btrax__langChange li:first-child:after{
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 18px;
    }
    .header__btrax__langChange li a{
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 18px;
    }
}
/**
 * header__category
 */
.header__category{
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    transition: all .3s ease-in-out;
}
.header__category:after{
    content: "";
    background-color: #111;
    width: calc(100% - -200px);
    height: 100%;
    margin-left: -100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
.header__category.off{
    opacity: 0;
    pointer-events: none;
}
.header__category__wrap{
    width: 100%;
    height: 100%; 
    display: flex;
    position: relative;
    z-index: 1;
}
@media screen and (min-width:1153px) and (max-width:1679px){
    .header__category__wrap:before{
        content: "";
        background-color: #111;
        width: calc(100% - -200px);
        height: 100%;
        margin-left: -100px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
    }
}
@media screen and (max-width:1152px){
    .header__category{
        width: calc(100% - -20px);
        margin-left: -10px;
        top: 55px;
        z-index: 0;
    }
    .header__category:after{
        content: none;
    }
    .header__category.off{
        opacity: 1;
        pointer-events: auto;
    }
    .header__category__wrap{
        background-color: #F2EFEA;
        box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
        align-items: center;
    }
}
/* icon */
.header__category__iconWrap{
    display: flex;
    align-items: center;
    height: 100%;
    margin-right: 34px;
    position: relative;
    z-index: 2;
}
@media screen and (max-width:1152px){
    .header__category__iconWrap{
        display: none;
    }
}
.header__category__icon__btrax{
    display: block;
    height: 45px;
    position: relative;
    z-index: 1;
}
.header__category__icon__btrax img{
    width: 45px;
}
.header__category__icon__title{
    color: #fff;
    display: block;
    font-size: 28px;
    font-size: 2.8rem;
    padding-bottom: 4px;
    padding-left: 10px;
    text-decoration: none;
}
/* category btn */
.header__category__btn{
    display: none;
    position: relative;
    z-index: 2;
}
@media screen and (min-width:1153px) and (max-width:1679px){
    .header__category__btn{
        display: flex;
        height: 100%;
    }
    .header__category__btn a{
        color: #fff;
        display: flex;
        align-items: center;
        height: 100%;
        font-size: 18px;
        font-size: 1.8rem;
        line-height: 23px;
        text-decoration: none;
    }
    .header__category__btn a:after{
        content: "";
        border-color: #fff;
        border-top: 2px solid;
        border-right: 2px solid;
        display: block;
        width: 7px;
        height: 7px;
        margin-top: 3px;
        margin-left: 10px;
        transform: rotate(-45deg);
        transition: all .3s ease-in-out;
    }
    .header__category__btn a.active:after{
        margin-top: 0;
        transform: rotate(135deg);
    }
}
@media screen and (max-width:1152px){
    .header__category__btn{
        display: block;
        margin-left: 10px;
    }
    .header__category__btn a{
        color: #111;
        display: flex;
        align-items: center;
        height: 100%;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 18px;
        text-decoration: none;
    }
    .header__category__btn a:after{
        content: "";
        border-color: #111;
        border-top: 2px solid;
        border-right: 2px solid;
        display: block;
        width: 7px;
        height: 7px;
        margin-top: 3px;
        margin-left: 10px;
        transform: rotate(-45deg);
        transition: all .3s ease-in-out;
    }
    .header__category__btn a.active:after{
        margin-top: 0;
        transform: rotate(135deg);
    }

}
/* category */
.header__category__nav{
    display: flex;
    height: 100%;
    position: relative;
    z-index: 1;
}
@media screen and (min-width:1153px) and (max-width:1679px){
    .header__category__nav{
        background-color: #F2EFEA;
        justify-content: center;
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        transition: all .3s ease-in-out;
        z-index: 0;
    }
    .header__category__nav.active{
        top: 75px;
    }
    .header__category__nav:before{
        content: "";
        background-color: #F2EFEA;
        width: calc(100% - -200px);
        height: 100%;
        margin-left: -100px;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }
}
@media screen and (max-width:1152px){
    .header__category__nav{
        background-color: #111;
        display: flex;
        width: 100%;
        height: 0;
        overflow: auto;
        position: absolute;
        top: 55px;
        transition: all .3s ease-in-out;
    }
    .header__category__nav.active{
        height: calc(100vh - 110px);
    }
}
.header__category__nav__lists{
    display: flex;
    height: 100%;
}
@media screen and (min-width:1153px) and (max-width:1679px){
    .header__category__nav__lists{
        position: relative;
        z-index: 1;
    }
}
@media screen and (max-width:1152px){
    .header__category__nav__lists{
        display: block;
        height: auto;
        margin: auto;
        opacity: 0;
        padding: 40px 0;
        pointer-events: none;
        position: relative;
        z-index: 2;
        transition: all .3s ease-in-out;
    }
    .header__category__nav.active .header__category__nav__lists{
        transition-delay: .3s;
        opacity: 1;
        pointer-events: auto;
    }
}
.header__category__nav__lists > li{
    height: 100%;
    opacity: 0;
    transform: translateX(20px);
    transition: all .3s ease-in-out;
}
.header__category.on .header__category__nav__lists > li{
    opacity: 1;
    transform: translateX(0);
}
@media screen and (max-width:1152px){
    .header__category__nav__lists > li{
        height: auto;
        margin-bottom: 30px;
        opacity: 1;
        transform: translateX(0);
    }
    .header__category__nav__lists > li:last-child{
        margin-bottom: 0;
    }
}
.header__category.on .header__category__nav__lists > li:nth-child(2) {
    transition-delay: 0s;
}
.header__category.on .header__category__nav__lists > li:nth-child(3) {
    transition-delay: 0.1s;
}
.header__category.on .header__category__nav__lists > li:nth-child(4) {
    transition-delay: 0.2s;
}
.header__category.on .header__category__nav__lists > li:nth-child(5) {
    transition-delay: 0.3s;
}
.header__category.on .header__category__nav__lists > li:nth-child(6) {
    transition-delay: 0.4s;
}
.header__category.on .header__category__nav__lists > li:nth-child(7) {
    transition-delay: 0.5s;
}
.header__category.on .header__category__nav__lists > li:nth-child(8) {
    transition-delay: 0.6s;
}
.header__category__nav__lists > li a{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 23px;
    letter-spacing: 0.01em;
    height: 100%;
    padding: 0 25px;
    text-decoration: none;
}
@media screen and (min-width:1153px) and (max-width:1679px){
    .header__category__nav__lists > li a{
        color: #111;
    }
}
@media screen and (max-width:1152px){
    .header__category__nav__lists > li a{
        font-size: 30px;
        font-size: 3rem;
        line-height: 39px;
    }
}
.header__category__nav__lists > li > a > span{
    display: flex;
    margin: 0 auto;
    position: relative;
    white-space: nowrap;
}
.header__category__nav__lists > li > a > span:before{
    content: "";
    background-color: #fff;
    width: 0;
    height: 1px;
    position: absolute;
    bottom: 0;
    left: 0;
    transition: width .3s ease-in-out;
}
@media screen and (min-width:1153px) and (max-width:1679px){
    .header__category__nav__lists > li > a > span:before{
        background-color: #111;
    }
}
.header__category__nav__lists > li > a:hover > span:before{
    width: 100%;
}
@media screen and (max-width:1152px){
    .header__category__nav__lists > li > a > span:before{
        content: none;
    }
}
/* header__category__nav__searchBtn */
.header__category__nav__searchBtn{
    width: 75px;
    height: 75px;
}
.header__category__nav__searchBtn a{
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
}
/*.header__category__nav__searchBtn a:before{
    font-family: "Font Awesome 5 Free";
    content: "\f002";
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all .3s ease-in-out;
}*/
.header__category__nav__searchBtn a:before{
    content: "";
    background-image: url(../images/common/search_icon_w.svg);
    background-repeat: no-repeat;
    background-position: 0 0;
    background-size: 100%;
    width: 20px;
    height: 22px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    transition: all .3s ease-in-out;
}
@media screen and (min-width:1153px) and (max-width:1679px){
    .header__category__nav__searchBtn a:before{
        background-image: url(../images/common/search_icon_b.svg);
    }
}
.header__category__nav__searchBtn a:hover:before{
    opacity: .6;
}
/* subscribeLink */
.header__category__subscribeLink{
    height: 50px;
    margin: auto 0;
    position: relative;
    z-index: 2;
}
@media screen and (max-width:1152px){
    .header__category__subscribeLink{
        display: table;
        height: 33px;
        margin: 0 10px 0 auto;
    }
}
.header__category__subscribeLink a {
    border: 2px solid #fff;
    border-radius: 25px;
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 23px;
    letter-spacing: 0.01em;
    height: 100%;
    padding: 0 25px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.header__category__subscribeLink a:hover{
    background-color: #F2EFEA;
    color: #111;
}
@media screen and (max-width:1152px){
    .header__category__subscribeLink a {
        border: 2px solid #111;
        border-radius: 20px;
        color: #111;
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 30px;
        padding: 0 20px;
    }
}
.header__category__subscribeLink a > span {
    display: flex;
    margin: 0 auto;
    padding-right: 22px;
    position: relative;
    white-space: nowrap;
}
.header__category__subscribeLink a > span:before{
    content: "";
    background-color: #fff;
    width: 13px;
    height: 2px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transition: all .3s ease-in-out;
}
.header__category__subscribeLink a > span:after{
    content: "";
    background-color: transparent;
    border-top: 2px solid;
    border-right: 2px solid;
    border-color: #fff;
    display: block;  
    width: 8px;
    height: 8px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}
@media screen and (max-width:1152px){
    .header__category__subscribeLink a > span:before{
        background-color: #111;
    }
    .header__category__subscribeLink a > span:after{
        border-color: #111;
    }
}
.header__category__subscribeLink a:hover > span:before{
    background-color: #111;
    right: -6px;
}
.header__category__subscribeLink a:hover > span:after{
    border-color: #111;
    right: -6px;
}
/* langChange */
.header__category__langChange{
    display: flex;
    height: 100%;
    margin-left: auto;
    margin-right: 40px;
    position: relative;
    z-index: 2;
}
.header__category__langChange li{
    display: flex;
}
.header__category__langChange li a{
    color: #fff;
    display: flex;
    align-items: center;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 23px;
    letter-spacing: 0.01em;
    height: 100%;
    text-decoration: none;
}
@media screen and (max-width:1152px){
    .header__category__langChange{
        display: none;
    }
}

/*-----------------------------------------------
 * 05. About us
-------------------------------------------------*/
.aboutUs{
    overflow: hidden;
    padding: 80px 0;
    position: relative;
}
@media screen and (max-width:1152px){
    .aboutUs{
        padding: 40px 0;
    }
}
.aboutUs:before{
    content: "";
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.aboutUs:after{
    content: "";
    background: url(../images/common/photo_1.jpg) no-repeat center / cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}
/* title */
.aboutUs__title{
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    line-height: 20px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
    position: relative;
    text-align: center;
    z-index: 2;
}
@media screen and (max-width:1152px){
    .aboutUs__title{
        font-size: 10px;
        font-size: 1rem;
    }
}
/* text */
.aboutUs__textWrap{
    max-width: 1040px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}
@media screen and (max-width:1152px){
    .aboutUs__textWrap{
        max-width: 100%;
        padding: 0 40px;
    }
}
.aboutUs__text{
    color: #fff;
    font-size: 45px;
    font-size: 4.5rem;
    line-height: 50px;
    margin-bottom: 40px;
    text-align: center;
}
@media screen and (max-width:1152px){
    .aboutUs__text{
        font-size: 20px;
        font-size: 2rem;
        line-height: 23px;
        margin-bottom: 20px;
    }
}
.aboutUs__text__link{
    height: 60px;
    text-align: center;
}
.aboutUs__text__link a {
    border: 2px solid #fff;
    background-color: #fff;
    border-radius: 30px;
    color: #111;
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0.01em;
    height: 100%;
    padding: 12px 67px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.aboutUs__text__link a:hover{
    background-color: transparent;
    color: #fff;
}
@media screen and (max-width:1152px){
    .aboutUs__text__link{
        height: 35px;
    }
    .aboutUs__text__link a {
        border-radius: 18px;
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 13px;
        padding: 9px 28px;
    }
    .aboutUs__text__link a:hover{
        background-color: #fff;
        color: #111;
    }
}
/*-----------------------------------------------
 * 06. Free E-BOOK
-------------------------------------------------*/
.free{
    background-color: #222;
    padding: 120px 0;
    position: relative;
    z-index: 1;
}
@media screen and (max-width:1152px){
    .free{
        padding: 60px 0;
    }
}
.free__wrap{
    position: relative;
    z-index: 1;
}
/* image */
.free__img{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    width: 50%;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 0;
}
@media screen and (max-width:1152px){
    .free__img{
        width: calc(100% - 20px);
        height: auto;
        margin: 0 10px 30px;
        padding-top: 54.3%;
        position: relative;
        top: auto;
        right: auto;
    }
}
/* text */
.free__text{
    color: #fff;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 20px;
    letter-spacing: 0.2em;
    width: 50%;
    margin-bottom: 30px;
}
.free__text--bottom{
    display: block;
    font-size: 45px;
    font-size: 4.5rem;
    line-height: 50px;
    margin-top: 10px;
}
@media screen and (max-width:1152px){
    .free__text{
        font-size: 10px;
        font-size: 1rem;
        line-height: 10px;
        width: 100%;
        margin-bottom: 30px;
        text-align: center;
    }
    .free__text--bottom{
        font-size: 28px;
        font-size: 2.8rem;
        line-height: 33px;
    }
}
/* link */
.free__link{
    height: 60px;
    display: table;
}
.free__link > a{
    border: 2px solid #fff;
    background-color: #fff;
    border-radius: 30px;
    color: #111;
    display: inline-block;
    font-size: 18px;
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 33px;
    letter-spacing: 0.01em;
    height: 60px;
    padding: 12px 67px;
    text-decoration: none;
    transition: all .3s ease-in-out;
}
.free__link > a:hover{
    background-color: transparent;
    color: #fff;
}
.free__link > a > span{
    display: inline-flex;
    white-space: nowrap;
}
@media screen and (max-width:1152px){
    .free__link{
        height: 44px;
        margin: 0 auto;
    }
    .free__link > a{
        background-color: transparent;
        color: #fff;
        height: 44px;
        padding: 4px 60px;
    }
    .free__link > a:hover{
        background-color: transparent;
        color: #fff;
    }
}
/*-----------------------------------------------
 * 07. Search Modal
-------------------------------------------------*/
.searchWrap{
    display: none;
    -webkit-overflow-scrolling: touch;
    background-color: #fff;
    width: 100%;
    height: 100%;
    overflow: auto;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 9999;
}
.search__in {
    display: flex;
    justify-content: center;
    align-items: center;
    height: auto;
    width: 100%;
    min-height: 100vh;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.search__in__wrap{
    width: 100%;
    margin-top: 30px;
    margin-bottom: 30px;
}
/**
 * Close
 */
.closeBtn{
    width: 80px;
    height: 80px;
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}
@media screen and (max-width:1152px){
    .closeBtn{
        width: 60px;
        height: 60px;
        top: 10px;
        right: 10px;
    }
}
.closeBtn a{
    display: block;
    width: 100%;
    height: 100%;
}
.closeBtn a > span{
    display: block;
    width: 50px;
    height: 50px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all .3s ease-in-out;
}
@media screen and (max-width:1152px){
    .closeBtn a > span{
        width: 40px;
        height: 40px;
    }
}
.closeBtn a:hover > span{
    transform: rotate(180deg);
}
.closeBtn a > span:before{
    content: "";
    background-color: #111;
    width: 100%;
    height: 6px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: rotate(45deg);
}
.closeBtn a > span:after{
    content: "";
    background-color: #111;
    width: 100%;
    height: 6px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transform: rotate(-45deg);
}
@media screen and (max-width:1152px){
    .closeBtn a > span:before,
    .closeBtn a > span:after{
        height: 4px;
    }
}
/**
 * Form
 */
.search__in__form{
    border-bottom: 2px solid rgba(0, 0, 0, 0.3);
    width: 100%;
    height: 90px;
    margin-bottom: 20px;
    padding-bottom: 10px;
}
@media screen and (max-width:1152px){
    .search__in__form{
        height: 40px;
    }
}
.search__in__form form{
    display: flex;
    width: 100%;
    height: 100%;
    position: relative;
}
.search__in__form--input{
    width: calc(100% - 120px);
    color: #111;
    font-size: 60px;
    font-size: 6rem;
    line-height: 65px;
    position: relative;
}
@media screen and (max-width:1152px){
    .search__in__form--input{
        width: calc(100% - 50px);
        font-size: 20px;
        font-size: 2rem;
    }
}
.focus__line{
    background-color: #111;
    width: 0;
    height: 2px;
    position: absolute;
    bottom: -12px;
    left: 0;
    transition: all .3s ease-in-out;
}
.search__in__form--input:focus ~ .focus__line{
    width: 100%;
}
.search__in__form--button{
    width: 120px;
    height: 100%;
    margin-left: auto;
    position: relative;
}
@media screen and (max-width:1152px){
    .search__in__form--button{
        width: 50px;
    }
}
.search__in__form--button:before{
    content: "";
    background-color: transparent;
    border-top: 6px solid;
    border-right: 6px solid;
    border-color: #111;
    display: block;
    width: 20px;
    height: 20px;
    margin: auto;
    position: absolute;
    top: 0;
    left: 10px;
    right: 0;
    bottom: 0;
    transform: rotate(45deg);
    transition: all .3s ease-in-out;
}
.search__in__form--button:hover:before{
    left: 30px;
}
@media screen and (max-width:1152px){
    .search__in__form--button:before{
        border-top: 3px solid;
        border-right: 3px solid;
        width: 10px;
        height: 10px;
    }
    .search__in__form--button:hover:before{
        left: 0;
    }
}
.search__in__form--button:after{
    content: "";
    background-color: #111;
    display: block;
    width: 40px;
    height: 6px;
    margin: auto;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    transition: all .3s ease-in-out;
}
.search__in__form--button:hover:after{
    left: 20px;
}
@media screen and (max-width:1152px){
    .search__in__form--button:after{
        width: 20px;
        height: 3px;
    }
    .search__in__form--button:hover:after{
        left: 0;
    }
}
.search__in__text{
    color: #000;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 23px;
}
@media screen and (max-width:1152px){
    .search__in__text{
        font-size: 10px;
        font-size: 1rem;
    }
}
/*-----------------------------------------------
 * 08. Infinitescroll
-------------------------------------------------*/
#infscr-loading {
    text-align: center;
    margin: 0 auto;
    clear: both;
    font-size: 15px;
}