@charset "utf-8";

@media(max-width: 1024px) {
.main {
  margin-bottom: 10px;
}
#pageHeader {
  padding: 60px 0 20px;
  margin-bottom: 40px;
  height: 180px;
}
#pageHeader::before {
  width: 160px;
}

#aside {
  width: 220px;
}
article#post-content {
  width: calc(100% - 260px);
}
/*===Header===========*/  
#header h1,
#header p.header-logo {
    max-width: 200px;
	margin: 0;
	padding: 0;
}
#header .header-inner {
    width: 100%;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 60px;
}
#header .nav-wrapper {
    display: block;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
}
@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#header #toggle-button {
    position: absolute;
    right: 8px;
    top: 8px;
    width: 64px;
    height: 44px;
    z-index: 5;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
#header #toggle-button span {
    height: 2px;
    width: 42px;
    border-radius:1px;
    background-color: #FA002C;
    position: relative;
    display: block;
    transition: all .2s ease-in-out;
}
#header #toggle-button span:before {
    top: -7px;
    visibility: visible;
}
#header #toggle-button span:after {
    top: 7px;
}
#header #toggle-button span:before{
    height: 2px;
    width: 42px;
    border-radius: 1px;
    background-color: #FA002C;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
}
#header #toggle-button span:after {
    height: 2px;
    width: 33px;
    border-radius: 1px;
    background-color: #FA002C;
    position: absolute;
    content: "";
    transition: all .2s ease-in-out;
}
#header #toggle-button:hover span, 
#header #toggle-button:hover span:before, 
#header #toggle-button:hover span:after {
    background: #FA002C;
}
#header input[type=checkbox] {
    display: none; 
}
#header input[type=checkbox]:checked ~ #nav-container {
    visibility: visible; 
    animation-name: fadeindown;
    animation-duration: 0.5s;
}
@keyframes fadeindown{
        from{
        opacity: 0;
        transform: translatey(-20px);
        }
        to{
        opacity: 1;
        transform: translatey(0);
        }
}
#header input[type=checkbox]:checked ~ #toggle-button {
    background: rgba(0,0,0,0);
}
#header input[type=checkbox]:checked ~ #toggle-button:hover span, 
#header input[type=checkbox]:checked ~ #toggle-button span {
    background: transparent;
}
#header input[type=checkbox]:checked ~ #toggle-button span:before {
    transform: rotate(30deg) translate(5px, 5px);
    background: #FFF;
}
#header input[type=checkbox]:checked ~ #toggle-button span:after {
    transform: rotate(-30deg) translate(5px, -5px);
    background: #FFF;
    width: 42px;
}
#header #nav-container {
    height: 100vh;
    width: 100vw;
    background: #FA002C;
    z-index: 2;
    visibility: hidden;
    position: fixed;
    box-sizing: border-box;
    padding: 20px 15px 100px;
    overflow-y: scroll;
}
#header #nav-container h2 {
    width: 200px;
    margin-bottom: 30px;
    display: block;
}
.menu {
    display: block;
    list-style: none;
    margin: 10px 20px;
    padding: 5px 0 0;
    border-top: solid 1px #EF9191;
    background: none;
}
.menu li {
    border-bottom: solid 1px #EF9191;
    margin-left: 0;
    position: relative;
    font-size: 18px;
}
.menu li a {
    display: block;
    padding: 24px 0 20px;
    text-decoration: none;
    color: #fff;
    line-height: 1em;
}
.menu li a::before,
.menu li a::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 2px;
  width: 12px;
  height: 1px;
  border-radius: 9999px;
  background-color: #FFF;
  transform-origin: calc(100% - 0.5px) 50%;
}
.menu li a::before {
  transform: rotate(45deg);
}
.menu li a::after {
  transform: rotate(-45deg);
}
.menu label {
    display: block;
    padding: 15px 0 12px;
    line-height: 1;
    color: #fff;
    cursor: pointer;
    position: relative;
}
.menu label::before,
.menu label::after {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  right: 2px;
  width: 14px;
  height: 1px;
  margin: auto 0;
  background-color: #FFF;
  transition: all 0.3s;
}
.menu label::before,
.menu label::after{
  background: #fff;
}
.menu label::after {
  transform: rotate(90deg);
}
.menu input {
    display: none;
}
.menu li ul {
    margin: 0 0 0 35px;
    padding: 0;
    list-style: none;
}
.menu #links01 li,
.menu #links02 li {
    height: 0;
    overflow: hidden;
    -webkit-transition: all 0.5s;
    -moz-transition: all 0.5s;
    -ms-transition: all 0.5s;
    -o-transition: all 0.5s;
    transition: all 0.5s;
    border:none;
    border-top: solid 1px #EF9191;
    opacity: 0;
}
.menu #menu_bar01:checked ~ #links01 li,
.menu #menu_bar02:checked ~ #links02 li {
    display: flex;
    align-items: center;
    height: 54px;
    opacity: 1;
}
#header ul.h-sns-list {
    display: block;
    margin: 30px 20px 0;
    list-style: none;
    padding: 0;
    border:solid 1px #EF9191
}
#header ul.h-sns-list li {
    display: block;
    background-size: 20px auto;
    border-bottom: solid 1px #EF9191;
}
#header ul.h-sns-list li:last-child {
    border-bottom: none;
}
#header ul.h-sns-list li.link-facebook {
    background: url(../img/icon/icon-facebook_w.svg) no-repeat 12px 50%;
}
#header ul.h-sns-list li.link-youtube {
    background: url(../img/icon/icon-youtube_w.svg) no-repeat 12px 50%;
}
#header ul.h-sns-list li.link-instagram {
    background: url(../img/icon/icon-instagram_w.svg) no-repeat 12px 50%;
}
#header ul.h-sns-list li.link-newsroom {
    background: url(../img/icon/icon-newsroom_w.svg) no-repeat 12px 50%;
}
#header ul.h-sns-list li a {
    display: block;
    padding: 12px 0 12px 45px;
    color: #FFF;
}
#header ul.h-sub-menulist {
    display: block;
    margin: 30px 20px;
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    border:solid 1px #EF9191
}
#header ul.h-sub-menulist li {
    width: 50%;
    background-size: 20px auto;
    position: relative;
}
#header ul.h-sub-menulist li::before {
  content: '';
  position: absolute;
  top: calc(50% - 4px);
  transform: translateY(-50%);
  right: 13px;
  width: 8px;
  height: 8px;
  border-top: 0.1rem solid #FFF;
  border-right: 0.1rem solid #FFF;
  transform: rotate(45deg);
  transition: all 0.45s cubic-bezier(0.65, 0, 0.076, 1);
}
#header ul.h-sub-menulist li:nth-child(n+3) {
    border-top: solid 1px #EF9191;
}
#header ul.h-sub-menulist li:nth-child(even) {
    border-left: solid 1px #EF9191;
}
#header ul.h-sub-menulist li a {
    padding: 12px;
    color: #FFF;
    line-height: 1.2em;
    font-size: 13px;
    display: flex;
    align-items: center;
    width: 100%;
    height: 46px;
}
/*==============*/
.sec-inner {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}
/*==============*/
#top-news .top-news_section {
    display: block;
}
#top-news .top-news_ssectionHead {
    width: 100%;
    margin-bottom: 30px;
}
#top-news .top-news_ssectionBody {
    width: 100%;
}
#top-news .top-newstab {
  width: 100%;
  margin: 0;
}
#mv {
    width: 90vw;
    height: 55vh;
    box-sizing: border-box;
    position: relative;
    margin: 0 auto;
}
#mv .scroll {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom:5px;
    color:  var(--color-baseBlue);
    font-size: 12px;
}
#mv .scroll::before {
  animation: scroll 2s infinite;
  background-color:  var(--color-baseBlue);
  top: -75px;
  content: "";
  height: 60px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
#mv .scroll::after {
    content: '';
    display: inline-block;
    vertical-align: middle;
    color:  var(--color-baseBlue);
    line-height: 1;
    width: 0.6em;
    height: 0.6em;
    border: 0.1em solid currentColor;
    border-left: 0;
    border-bottom: 0;
    box-sizing: border-box;
    transform: translateY(-25%) rotate(135deg);
    position: absolute;
    left: calc(50% - 0.35em);
    bottom:35px;
}
.splide {
    width: 90vw;
    height: 55vh;
    box-sizing: border-box;
}
.splide__slide img {
  width: 90vw;
  height: 55vh;
  object-fit: cover;
}
}

/*======================================================================*/
@media(max-width: 840px) {
.moreview {
  width: 100%;
  height: auto;
  position: relative;
  border:solid 1px var(--color-baseBlue);
  border-radius: 1.625rem;
  background-color: var(--color-baseBlue);
}
.moreview .circle .icon.arrow::before {
  border-top: 0.125rem solid #FFF;
  border-right: 0.125rem solid #FFF;
}
.moreview .button-text {
  margin: 0;
  color: #FFF;
}
.moreview .button-text.opennew {
  background: url(../img/icon/icon-opennew_w.svg) no-repeat 92% center;
  background-size: 16px auto;
  padding-right: 20px;
}
.moreview:hover .circle {
  width: 100%;
  background: none;
}
.moreview:hover .circle .icon.arrow{
  background: none;
  transform: none;
}
.moreview:hover .circle .icon.arrow::before{
  display: none;
}
.moreview:hover .button-text  {
  color: #222;
}

/* -----------------------------------------------------------------------------
 footer
----------------------------------------------------------------------------- */

footer #f-head {
  background: #222937;
  padding: 40px 20px;
}
footer .sec-inner {
  display: block;
}
footer .f-sns {
  width: 100%;
}
footer h3.f-logo img {
  max-width: 140px;
}
footer .f-sns-list {
  display: flex;
  flex-direction:row;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 20px;
}
footer .f-sns-list li {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 13px;
}
footer .f-sns-list li.link-facebook {
  background: url(../img/icon/icon-facebook_w.svg) no-repeat 0 50%;
  background-size: 22px auto;
}
footer .f-sns-list li.link-youtube {
  background: url(../img/icon/icon-youtube_w.svg) no-repeat 0 50%;
  background-size: 22px auto;
}
footer .f-sns-list li.link-instagram {
  background: url(../img/icon/icon-instagram_w.svg) no-repeat 0 50%;
  background-size: 22px auto;
}
footer .f-sns-list li.link-newsroom {
  background: url(../img/icon/icon-newsroom_w.svg) no-repeat 0 50%;
  background-size: 22px auto;
}
footer .f-sns-list li:nth-child(1) {
  order:2;
  margin-left: 25px;
}
footer .f-sns-list li:nth-child(2) {
  order:4;
  margin-left: 22px;
}
footer .f-sns-list li:nth-child(3) {
  order:1;
}
footer .f-sns-list li:nth-child(4) {
  order:2;
}
footer .f-sns-list li:nth-child(5) {
  order:5;
}
footer .f-sns-list li a {
  padding: 4px 0 4px 30px;
}
footer .f-h-nav {
  width: 100%;
  padding: 0;
}
footer .f-h-brandlist {
  display: none;
}
footer #f-bottom .sec-inner {
  align-items: center;
  padding: 0;
}
footer .f-h-brandsitelist {
  display: block;
  margin-top: 20px;
  border-top: solid 1px #4B4B4B;
  border-bottom: solid 1px #4B4B4B;
  padding: 20px 0;
}
footer .f-h-brandsitelist h4 {
  display: none;
}
footer .f-h-brandsitelist ul {
  width: 100%;
  display: block;
  border-left:none;
  padding-left: 0;
}
footer .f-h-brandsitelist ul li {
  width: 100%;
  margin-bottom: 15px;
}
footer .f-h-brandsitelist ul li+li {

}
footer .f-h-brandsitelist ul li a {
  color: #FFF;
  text-align: left;
}
footer .f-h-brandsitelist ul li a h5 {
  font-size: 14px;
  opacity: 0.6;
}
footer #f-bottom {
  background: #222937;
}
footer #f-bottom .sec-inner {
  display: block;
  align-items: center;
  padding: 0 20px 15px;
}
footer .f-b-nav ul {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
footer .f-b-nav ul li {
  text-align: left;
  margin-right: 20px;
}
footer .f-b-nav ul li+li {
  margin-left: 0;
} 
footer .f-b-nav ul li a {
  font-size: 12px;
  color: #FFF;
  display: block;
  text-align: left;
}
footer .copyright {
  font-size: 12px;
  letter-spacing: 0.05em;
  color: #FFF;
  margin-top: 30px;
}

/*==#our-brand =======*/

#our-brand {
    position: relative;
    margin-top: 40px;
    padding-bottom: 40px;
}
#our-brand .brandlist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: 30px auto 0;
}
#our-brand .brandlist li {
    width: 48%;
    background: #FFF;
    box-shadow: 0px 0px 5px -3px rgba(0,0,0,0.4);
    margin-bottom: 3%;
}
#our-brand .brandlist li:hover {
    box-shadow: 0px 0px 0 0 rgba(0,0,0,0.4);
}
#our-brand .brandlist li+li {
    margin-left: 0;
}
#our-brand .brandlist li img {
    width: 100%;
     border:solid 1px #eee;
}
#our-brand .brandlist li img:hover {
    width: 100%;
     border:solid 2px #ccc;
}



}


/*======================================================================*/
@media(max-width: 480px) {

#header h1,
#header p.header-logo {
  max-width: 150px;
	margin: 0;
	padding: 0;
}
#header .header-inner {
    height: 50px;
}
#header h1 a span ,
#header p.header-logo a span {
  font-size: 18px;
  margin-left: 10px;
}
h3.sub-ttl {
  color: #222;
  font-weight: 700;
}
#breadcrumb {
    width: auto !important;
    margin: 0 auto 0 20px;
}
#breadcrumb ul {
    display: flex;
    flex-direction: row;
    overflow-x: scroll;
    word-break: keep-all;
    white-space: nowrap;
    align-items: center;
}
#breadcrumb ul li.home {
    width: auto;
}
#breadcrumb ul li.home img {
    display: none;
}
#breadcrumb ul li.home .hometext {
    display: block;
}
#pageHeader {
  padding: 40px 0 10px;
  margin-bottom: 40px;
  height: 110px;
}
#pageHeader::before {
  width: 160px;
}
.anime-up.displayed span {
    animation: showText 0.8s backwards;
    display: inline-block;
}
.anime-up.displayed > span {
    overflow: hidden;
}
.anime-up.displayed > span > span {
    animation: showTextFromBottom 0.5s backwards;
}
@keyframes showTextFromBottom {
    0% {
        transform: translateY(50px);
    }
    100% {
        transform: translateY(0px);
    }
}
.main {
    margin-top: 70px;
}

.sp480 {
    display: block;
}
h1.page-ttl span,
h2.page-ttl span {
  letter-spacing: -0.05em;
}
h2.sec-ttl {
  font-size: 11px;
  margin-bottom: 5px;
}

h3.sec-cont_ttl span {
  margin-bottom: 4px;
}

#top-news {
    padding: 40px 0 40px;
}
#top-news .top-newstab {
    margin: 0 auto 30px;
}
#top-news label.tab_menu {
    height: 50px;
    line-height: 50px;
    font-size: 13px;
    font-weight: 600;
}
#top-news .tab_contents {
    padding: 20px 0 0;
}
#top-news .top-newsList li a {
    display: block;
    padding: 5px 0 8px;
}
#top-news .top-newsList li .date{
    font-size: 14px;
    width: auto;
    display: inline-block;
    margin-right: 10px;
}
#top-news .top-newsList li .cate {
    margin-right: 0;
    padding: 4px 0 2px;
}
#top-news .top-newsList li .headline{
    width: 100%;
    margin-top: 8px;
}




}

/*======================================================================*/
@media(max-width: 320px) {

}