@charset "utf-8";

/*
------------------------------------------------------------
base
------------------------------------------------------------
*/

html{
	font-size: 10px;
}

body{
	/*overflow-x: hidden;短いページでもスクロールバーを出す。*/
	color: #333;
    /*font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;*/
    font-family: 'Noto Sans JP', "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", メイリオ, Meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;/*スマホで横向きにしたとき文字サイズが変わらないようにする。*/
}

.main, #content {
	font-size: 1.6rem;
	font-feature-settings: "palt";
	letter-spacing: .8px;
}

@media screen and (max-width: 1030px){
    
}

_:lang(x)::-ms-backdrop, .selector {
	font-family: "Segoe UI", Meiryo, sans-serif;
}
@media all and (-ms-high-contrast:none) {
	*::-ms-backdrop, template {
		visibility: hidden;
		width: 0px;
		height: 0px;
		overflow: hidden;
		speak:none;
	}
}

img,
svg,
iframe {
	vertical-align: top;
}
img {
	max-width: 100%;	
}
em,i {
	font-style: normal;
}
a:hover {
    
}
a:active,a:hover {
    
}

*.over {
    transition: opacity .2s ease-in-out;
}

*.over:hover {
    opacity: .7;
}


/* タッチデバイスでホーバーを無効。
ページを戻ってくるとホバーが効いたままになっているのを防ぐ。 */
@media (hover:none) {
    a:hover { 
    	color: inherit !important;
    }
    a:hover {
		opacity: 1 !important;
	}
}

/*
------------------------------------------------------------
utility
------------------------------------------------------------
*/


.hidden {
    visibility: hidden;
}

.hide {
    display: none;
}

.clearfix:after {
	content: "";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.inline-block{
	display: inline-block;
}

/* show hide */
@media screen and (min-width: 768px) {
	.is-sp {
		display: none;
	}
}
@media screen and (max-width: 767px){
	.is-pc {
		display: none;
	}
}

@keyframes fade-in {
    0% {
      display: none;
      opacity: 0;
    }

    1% {
      display: block;
      opacity: 0;
    }

    100% {
      display: block;
      opacity: 1;
    }
}

@-webkit-keyframes fade-in {
    0% {
      display: none;
      opacity: 0;
    }

    1% {
      display: block;
      opacity: 0;
    }

    100% {
      display: block;
      opacity: 1;
    }
}

@keyframes fade-out {
    0% {
      display: block;
      opacity: 1;
    }

    99% {
      display: block;
      opacity: 0;
    }

    100% {
      display: none;
      opacity: 0;
    }
}

@-webkit-keyframes fade-out {
    0% {
        display: block;
        opacity: 1;
      }
  
      99% {
        display: block;
        opacity: 0;
      }
  
      100% {
        display: none;
        opacity: 0;
      }
}

.fadeIn {
    animation-duration: 0.5s;
    animation-name: fade-in;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-name: fade-in;
    animation-fill-mode: forwards;
}

.fadeOut {
    animation-duration: 0.5s;
    animation-name: fade-out;
    -webkit-animation-duration: 0.5s;
    -webkit-animation-name: fade-out;
    animation-fill-mode: forwards;
}

/*
------------------------------------------------------------
plugin
------------------------------------------------------------
*/

.slick-dotted {
	margin-bottom: 8vw;
}

.slick-dotted.slick-slider {
	margin-bottom: 0;
}

.slick-dots {
    margin: 30px 0 40px;
    position: static;
}

.slick-dots li {
	vertical-align: middle;
}

.slick-dots li button:before {
	opacity: 1;
	color: #e6e6e6;
}

.slick-dots li.slick-active button:before {
	opacity: 1;
	color: #5cacd0;
}

.js-focus-visible :focus:not(.focus-visible) {
    outline: none;
}

/*
------------------------------------------------------------
components
------------------------------------------------------------
*/

.ttl {
    margin-top: 0;
    margin-bottom: 0;
    line-height: 1.45;
    font-feature-settings: "palt";
	letter-spacing: .8px;
}

.btn {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    background: transparent;
    display: inline-block;
    width: auto;
    text-align: center;
    color: #5cacd0;
    text-decoration: none;
    border-radius: 4.4rem;
    box-sizing: border-box;
    min-width: 18rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid #5cacd0;
    font-weight: bold;
    font-size: 1.6rem;
}

.btn {
    padding:1.1rem .4rem;
    min-width: 23rem;
}

@media print,only screen and (min-width: 961px) {
    .btn:hover {
        
    }
}

.btn--online-shop {
    min-width: 24rem;
    font-weight: 700;
    letter-spacing: .01em;
    border: 1px solid #f25142;
    background: #f25142;
    color: #fff;
}

.btn--online-shop {
    padding-top:1.2rem;
    padding-bottom:1.2rem;
}

.btn--online-shop:hover {
    color: #fff;
}

/*
@media only screen and (max-width: 960px) {
    .btn--online-shop {
        font-size:1.2rem;
        letter-spacing: .04em;
        padding: .6rem 0
    }
}
*/
.btn--online-shop span {
    display: inline-block;
    background: url(https://www.dreams6.com/assets/images/icon_shop.svg) no-repeat scroll 0 50%;
    background-size: 1.7rem 1.4rem;
    padding: 0 0 0 2.1rem
}

.btn--online-shop span {
    background-size:1.9rem 1.6rem;
    padding: 0 0 0 2.8rem
}

@media only screen and (max-width: 320px) {
    /* .btn--online-shop span {
        padding-left:0;
        background: none
    } */
}

.btn-circle {
    border-radius: 100%;
    width: 2.8rem;
    height: 2.8rem;
    padding:1.2rem;
}

.btn-circle--online-shop {
    border-radius: 100%;
    background: #f25142 url(https://www.dreams6.com/assets/images/icon_shop.svg) no-repeat scroll 52% 52%;
    background-size: 54% auto;
    color: #fff;
}

.btn-contaienr--center {
    text-align: center;
}

@media print,only screen and (max-width: 767.98px) {

    .btn-circle {
        border-radius: 100%;
        width: 1rem;
        height: 1rem;
        padding:1.2rem;
    }

    .btn-contaienr--center--sp {
        text-align: center;
    }

}

/*
------------------------------------------------------------
common
------------------------------------------------------------
*/

.main, #content {
    padding: 140px 0 0;
}

.container {
    max-width: calc( 1240px + 80px * 2);
    padding: 0 80px;
	margin-left: auto;
	margin-right: auto;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 140px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1003;
    width: 100%;
    background: #fff;
}

.header-logo {
    max-width: 275px;
    width: calc( 275 / 2000 * 100% );
    margin: 0;
    margin-left: calc( 48 / 2000 * 100% );
    margin-right: auto;
    transition: opacity .2s ease-in-out;
}

.header-logo__img {
    position: relative;
    top: -5px;
}

.header__online-shop-btn--sp {
    display: none;
}

.headmenu-wrapper {
    width: 130px;
    box-sizing: border-box;
    text-align: left;
    padding-left: 24px; 
    margin-left: 30px;
    position: relative;
}

.headmenu-wrapper:before {
    content: '';
    display: block;
    width: 2px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 50%;
    background: #5cacd0;
    transform: translate(0,-50%);
}

.headmenu {
    
}

.hamburger {
    transform: scale(1.4);
    vertical-align: middle;
}

.hamburger-box {
    vertical-align: middle;
    top: -2px
}

.hamburger .hamburger-inner, 
.hamburger .hamburger-inner:after, 
.hamburger .hamburger-inner:before {
    background-color: #5cacd0;
}




@media print,only screen and (max-width: 1399.98px) {

    .header {
        height: 120px;
    }

    .header-logo {
        width: 192px;
        margin-left: 35px;
    }

    .header-logo__img {
        top: 0;
    }

    .hamburger {
        transform: scale(1.2);
    }

}

@media print,only screen and (max-width: 1199.98px) {



}

@media print,only screen and (max-width: 991.98px) {



}

body.is-header-slim .header {
    position: fixed;
    transition: none;
    transform: translate(0,-100%);
}

body.is-header-slim.is-header-show .header {
    transition: transform .3s ease-in-out;
    transform: translate(0,0);
}

@media print,only screen and (min-width: 768px) {

    body.is-header-slim .main,
    body.is-header-slim #content {
    
    }
    
    body.is-header-slim .header {
        height: 90px;
    }
    
    body.is-header-slim .header-logo {
        width: calc( 275px * .60 );
        margin-left: calc( 48 * .8 / 2000 * 100% );
    }
    
    body.is-header-slim .header-logo__img {
        /* top: -3px; */
    }
    
    body.is-header-slim .header__online-shop-btn__wrapper  {
        transform: scale( .72 );
        transform-origin: center right;
    }
    
    body.is-header-slim .headmenu-wrapper {
        width: calc( 130px * .71 );
        padding-left: calc( 24px * .4 ); 
        margin-left: calc( 30px * .71 );
    }
    
    body.is-header-slim .hamburger  {
        transform: scale( .9 );
    }

    body.is-header-slim .gnav {
        padding-top: 90px;
    }

}

@media print,only screen and (max-width: 767.98px) {

    .main, #content {
        padding-top: 62px;
    }

    .container {
        padding: 0 10vw;
    }

    .header {
        height: 62px;
    }

    .header-logo {
        width: 120px;
        margin-left: 1.8vw;
    }

    .header__online-shop-btn {
        display: none;
    }

    .header__online-shop-btn--sp {
        display: block;
    }

    .headmenu-wrapper {
        width: 70px;
        padding-left: 0px; 
        margin-left: 18px;
    }
    
    .headmenu-wrapper:before {
        width: 1px;
        height: 60%;
    }

    .hamburger {
        transform: scale(.8);
    }

}

@media print,only screen and (max-width: 575.98px) {

    .container {
        padding: 0 8vw;
    }

}

/* ---------- gnav ---------- */

.gnav-cover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1001;
    background: #fff;
    opacity: 0;
}

.gnav {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 360px;
    max-width: 94%;
    z-index: 1002;
    background: #5cacd0;
    color: #fff;
    padding-top: 140px;
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    opacity: 0;
    transform: translate(40%, 0);
}

.gnav__item {
    -webkit-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    /* opacity: 0;
    transform: translate(40%, 0); */
}

.gnav__list {
    list-style: none;
    margin: 0;
    padding: 10% 15%;
    font-size: 1.8rem;
    font-weight: bold;
    font-weight: 500;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-smoothing: antialiased;
    letter-spacing: .08em;
}

.gnav__list.show {
    opacity: 1;
    transform: translate(0, 0);
}

.gnav__link {
    display: block;
    color: inherit;
    text-decoration: none;
    padding: .4em 0
}

.gnav__link:hover {
    
}

@media print,only screen and (max-width: 767.98px) {

    .gnav {
        padding-top: 60px;
    }

}

/* ---------- gnav open ---------- */

body.is-gnav-open .header {
    background: rgba(255,255,255,0);
}

body.is-gnav-open .hamburger .hamburger-inner, 
body.is-gnav-open .hamburger .hamburger-inner:after, 
body.is-gnav-open .hamburger .hamburger-inner:before {
    background-color: #fff;
}

body.is-gnav-open .gnav-cover {
    opacity: .85;
}

body.is-gnav-open .gnav {
    opacity: 1;
    transform: translate(0, 0);
}

body.is-gnav-open .gnav__item {
    
}


@media print,only screen and (max-width: 575.98px) {

    body.is-gnav-open .header-logo {
        opacity: 0;
    }

}


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

.footer {
	background: #5cacd0;
}

.footer-lang-list {
	background: #5cacd0;
	border: 1px solid rgba(255,255,255,.3);
}

.footer-lang-list__item:after {
    background: rgba(255,255,255,.3);
}

.footer-nav__button {
    background: #5cacd0;
}

.footer-menu {
    border-top-color: rgba(255,255,255,.3);
}

.footer-menu__item {
    border-right-color: rgba(255,255,255,.3);
    border-bottom-color: rgba(255,255,255,.3);
}

@media print, only screen and (min-width: 961px) {
	.footer-nav {
		border-bottom-color: #fff;
		border-bottom-color: rgba(255,255,255,.3);
	}
}

@media only screen and (max-width: 960px) {
    .footer-container {
        padding: 0;
    }
}
