@font-face {
  font-family: 'Futura Condensed';
  src: url("../fonts/Futura Condensed/Futura Condensed Medium.ttf");
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'DKCrayonCrumble';
  src: url("../fonts/DKCrayonCrumble.ttf");
  font-weight: 400;
  font-style: normal;
}

:root {
  --scaler1: calc(100vw / 1880);
  --scaler2: calc((100vw - 1366px) / (1880 - 1366));
  --scaler3: calc(100vw / 375);
  --scaler4: calc((100vw - 375px) / (768 - 375));
  --text-color: #222;
  --fallback-fonts: "Myriad Pro", system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --font1: 'Noto Sans JP', var(--fallback-fonts);
  --font2: 'Futura Condensed', var(--fallback-fonts);
  --font3: 'DKCrayonCrumble', var(--fallback-fonts);
  --font4: 'HiraKakuStdN W3',  var(--fallback-fonts);
  --color1: #3499CC;
  --color2: #FFC600;
  --color3: #D5293A;
  --color4: #86D9E9;
  --color5: #29ABE2;
}

@media (max-width: 1366px) {
  :root {
    --scaler2: 0px;
  }
}

@media (max-width: 375px) {
  :root {
    --scaler4: 0px;
  }
}

@media (min-width: 768px) {
  :root {
    --scaler4: 1px;
  }
}

@media (min-width: 1880px) {
  :root {
    --scaler1: 1px;
    --scaler2: 1px;
  }
}

body{
  color: var(--text-color);
  font-size: 15px;
  font-family: var(--font1), var(--fallback-fonts);
}

#inner-wrapper{
  max-width: 1920px;
  margin: 0 auto;
  position: relative;
}

iframe{
  max-width: 100%;
}

img{
  max-width: 100%;
  height: auto;
}

a, a:hover{
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6{
  line-height: 1.4;
}

h1 a,
h1 a:hover, h2 a,
h2 a:hover, h3 a,
h3 a:hover, h4 a,
h4 a:hover, h5 a,
h5 a:hover, h6 a,
h6 a:hover{
  color: inherit;
}

h1{
  font-size: 1.8em;
}

h2{
  font-size: 1.6em;
}

h3, h4, h5, h6{
  font-size: 1.4em;
}

p{
  margin-bottom: 1.4em;
}

.fa{
  line-height: inherit;
}

@media (min-width: 992px) {
  .container{
    max-width: 1880px;
  }
  #content .container{
    max-width: 1790px;
  }
}

.hr{
  border-top: 1px solid #eee;
}

.header{
  padding: 70px 0;
  background-color: white;
  position: relative;
}

@media (max-width: 991.98px) {
  .header{
    padding: 30px 0;
  }
}

.header .header-branding{
  font-size: 30px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  font-family: var(--font2);
}

@media (min-width: 992px) {
  .header .header-branding {
    font-size: calc(45 * var(--scaler1));
  }
}

.header-menu{
  font-size: 14px;
}

.header-menu ul{
  padding: 0;
  margin: 0;
  list-style: none;
}

@media (min-width: 992px) {
  .header-menu .ul-lv1{
    font-weight: 300;
  }
  .header-menu .ul-lv1 > li{
    padding: 0 20px;
    position: relative;
  }
  .header-menu .ul-lv1 ul{
    position: absolute;
    top: 100%;
    right: 0;
    z-index: 1000;
    text-align: right;
    width: 180px;
    background-color: white;
    box-shadow: 0px 1px 5px #888;
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    margin-top: 30px;
  }
  .header-menu .ul-lv1 ul li{
    padding: 10px 20px;
  }
  .header-menu .ul-lv1 ul li:first-child{
    padding-top: 20px;
  }
  .header-menu .ul-lv1 ul li:last-child{
    padding-bottom: 20px;
  }
  .header-menu .ul-lv1 ul ul{
    top: 0;
    right: 100%;
  }
  .header-menu .ul-lv1 li:hover > ul{
    visibility: visible;
    opacity: 1;
    margin-top: 0;
  }
}

@media (max-width: 991.98px) {
  .header-menu{
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: white;
    padding-top: 30px;
    padding-bottom: 50px;
    max-height: calc(100vh - 150px);
    overflow: auto;
    visibility: hidden;
    opacity: 0;
    transition: .3s;
    box-shadow: 0px 1px 5px #888;
  }
  .header-menu.active{
    opacity: 1;
    visibility: visible;
  }
  .header-menu .ul-lv1{
    font-size: 20px;
    font-weight: 300;
  }
  .header-menu .ul-lv1 > li{
    text-align: center;
    padding: 20px;
    margin-top: -50px;
    transition: .3s;
  }
  .header-menu.active .ul-lv1 > li{
    margin-top: 0;
  }
}

.header-menu-button{
  width: 32px;
  cursor: pointer;
}

@media (min-width: 992px) {
  .header-menu-button{
    margin-left: 80px;
  }
}

.header-menu-button span{
  display: block;
  width: 100%;
  height: 3px;
  background-color: currentColor;
  margin: 8px 0;
  transition: .3s;
}

.header-menu-button span:first-child {
  -webkit-transform-origin: 0% 0%;
          transform-origin: 0% 0%;
}

.header-menu-button span:last-child {
  -webkit-transform-origin: 0% 100%;
          transform-origin: 0% 100%;
}

.header-menu-button.active span:first-child {
  -webkit-transform: rotateZ(45deg) scaleX(1.2) translateY(-3px);
          transform: rotateZ(45deg) scaleX(1.2) translateY(-3px);
}

.header-menu-button.active span:nth-child(2) {
  opacity: 0;
}

.header-menu-button.active span:last-child {
  -webkit-transform: rotateZ(-45deg) scaleX(1.2) translateY(3px);
          transform: rotateZ(-45deg) scaleX(1.2) translateY(3px);
}

.page-banner{
  position: relative;
  overflow: hidden;
}

.page-banner .banner-content{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 50px 20px 30px;
}

@media (min-width: 992px) {
  .page-banner .banner-content{
    padding-left: 70px;
    padding-right: 70px;
  }
}

.page-banner .banner-content .banner-title{
  font-size: 30px;
  font-weight: 900;
  font-style: italic;
  text-align: center;
}

@media (min-width: 992px) {
  .page-banner .banner-content .banner-title {
    font-size: calc(73 * var(--scaler1));
  }
}

@media (max-width: 575.98px) {
  .page-banner .banner-content .banner-title{
    font-size: 20px;
  }
}

.button-style-1{
  font-family: var(--font4);
  background-color: var(--color1);
  color: white;
  border: 0;
  font-size: 14px;
  text-transform: uppercase;
  padding: 20px 30px;
}

@media (max-width: 991.98px) {
  .button-style-1{
    padding: 10px 15px;
  }
}

.button-hover-anim-1{
  position: relative;
  overflow: hidden;
}

.button-hover-anim-1::before{
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: calc(-80% - 35px);
  width: 80%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.15);
  z-index: 10;
  -webkit-transform: skewX(-45deg);
          transform: skewX(-45deg);
  overflow: hidden;
  transition: .6s;
}

.button-hover-anim-1:hover::before{
  left: calc(100% + 35px);
  right: auto;
}

.product-cate-item .item-content{
  padding: 30px;
  color: #444;
}

.product-cate-item .cate-name-en{
  font-weight: 400;
  font-family: var(--font3);
  font-size: 15px;
  color: #000;
}

.product-cate-item .cate-name{
  font-size: 30px;
  margin-bottom: 20px;
  line-height: 1.3;
  color: var(--color1);
  font-weight: 300;
}

@media (min-width: 992px) {
  .product-cate-item .cate-name{
    font-size: 42px;
  }
}

.product-cate-item .item-text{
  line-height: 1.6;
  font-size: 15px;
}

.product-cate-item .item-link-button{
  display: block;
  margin: 40px auto 0;
  max-width: 350px;
}

.news-item{
  margin-bottom: 50px;
}

.news-item .item-thumb .ratio {
  --ratio: 1.62;
}

.news-item .item-content{
  border: 1px solid #ccc;
  border-top: 0;
  padding: 20px 20px;
  background-color: white;
}

.news-item .item-tag{
  display: inline-block;
  margin-bottom: 8px;
  padding: 0 10px;
  line-height: 20px;
  border-radius: 20px;
  font-size: 12.5px;
  font-weight: 500;
  color: white;
  background-color: var(--color1);
}

.news-item .item-time{
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 8px;
  color: #555;
}

.news-item .item-title{
  margin: 0;
  font-size: 17px;
  color: #000;
  font-weight: 400;
}

@media (min-width: 992px) {
  .news-item .item-title{
    min-height: 80px;
  }
}

.footer{
  padding: 60px 0;
  border-top: 1px solid #eee;
}

@media (min-width: 992px) {
  .footer{
    padding: 100px 0;
  }
}

.footer-menu{
  padding: 0;
  margin: 0;
  list-style: none;
  line-height: 1;
  color: #000;
  font-weight: 300;
}

.footer-menu > li{
  padding: 0 20px;
  border-left: 1px solid;
  margin-bottom: 20px;
}

.footer-menu > li:first-child{
  border: 0;
}

.copyright{
  font-weight: 300;
  color: #555;
  font-size: 11px;
  margin-top: 60px;
  text-align: center;
}

@media (min-width: 992px) {
  .sidebar-col{
    max-width: 395px;
  }
  .main-col{
    max-width: 1320px;
  }
}

::-webkit-input-placeholder {
  color: #B3B3B3;
  font-size: 14px;
}

::-moz-placeholder {
  color: #B3B3B3;
  font-size: 14px;
}

:-ms-input-placeholder{
  color: #B3B3B3;
  font-size: 14px;
}

::-ms-input-placeholder {
  color: #B3B3B3;
  font-size: 14px;
}

::placeholder {
  color: #B3B3B3;
  font-size: 14px;
}

@media (min-width: 576px) and (max-width: 991.98px) {
  .sidebar-block{
    width: 33.33%;
    padding: 0 15px;
  }
}

.sidebar-search input{
  border: 1px solid #999;
  width: 100%;
  padding-right: 40px;
  background-image : url(icon-search.png);
  background-repeat: no-repeat;
  background-position: center right 10px;
  background-size: 20px auto;
}

.sidebar-menu{
  padding: 0;
  list-style: none;
  font-size: 20px;
  font-weight: 300;
}

.sidebar-menu li{
  padding: 26px 15px;
  border-bottom: 1px dashed #eee;
  color: #000;
  transition: .3s;
}

.sidebar-menu li:hover {
  color: var(--color1);
}

.section-view-more-button{
  font-family: var(--font4);
  font-size: 14px;
  text-transform: uppercase;
  color: #000;
  transition: .3s;
}

.section-view-more-button:hover{
  color: #000;
}

.section-view-more-button img {
  transition: .3s;
}

.section-view-more-button:hover {
  color: var(--color1);
}

.section-view-more-button:hover img{
  margin-left: 10px !important;
  margin-right: 10px;
}

.product-item{
  margin-bottom: 60px;
}

.product-item .thumb{
  margin-bottom: 10px;
}

.product-item .thumb .ratio {
  --ratio: .67;
}

.product-item .product-name{
  font-size: 20px;
  font-weight: 700;
  color: #000;
  margin-bottom: 15px;
}

.product-item .info-1{
  font-size: 12px;
  font-weight: 700;
  color: var(--scheme-color);
  margin-bottom: 15px;
}

.product-item .info-2{
  font-size: 12px;
  font-weight: 300;
  margin-bottom: 30px;
}

@media (max-width: 575.98px) {
  .product-item .info-2{
    margin-bottom: 10px;
  }
}

.product-item .detail-link-button{
  display: block;
  width: 100%;
  background-color: var(--scheme-color);
  margin-bottom: 10px;
  padding: 15px 20px;
  border: 0;
  color: white;
  font-size: 20px;
  font-weight: 700;
}

.product-item .video-link-button{
  display: block;
  width: 100%;
  background-color: #666;
  margin-bottom: 10px;
  padding: 5px 12px;
  border: 0;
  color: white;
  font-size: 20px;
  font-weight: 700;
  transition: .3s;
}

.product-item .video-link-button:hover {
  background-color: var(--color1);
}

.pagination{
  padding: 0;
  list-style: none;
}

.pagination li{
  margin: 4px;
  font-size: 23px;
  background-color: #ccc;
  color: #000;
}

.pagination li.active{
  background-color: var(--color1);
  color: white;
}

.pagination li span,
.pagination li a{
  display: block;
  min-width: 38px;
  line-height: 38px;
  text-align: center;
}

.general-section-title{
  font-size: 40px;
  font-weight: 700;
  color: var(--color5);
  margin-bottom: 30px;
  line-height: 1;
  margin-top: -5px;
}
.general-section-title-2{
  font-size: 40px;
  font-weight: 700;
  color: var(--color2);
  margin-bottom: 30px;
  line-height: 1;
  margin-top: -5px;
}
.general-section-title-3{
  font-size: 40px;
  font-weight: 700;
  color: var(--color3);
  margin-bottom: 30px;
  line-height: 1;
  margin-top: -5px;
}

@media (max-width: 575.98px) {
  .general-section-title{
    font-size: 30px;
  }
  .general-section-title-2{
    font-size: 30px;
  }
  .general-section-title-3{
    font-size: 30px;
  }
}
