@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 {
	font-size: 1.6rem;
	font-feature-settings: "palt";
	letter-spacing: .8px;
}

img,
svg,
iframe {
	vertical-align: top;
}
img {
    max-width: 100%;	
    height: auto;
}
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
------------------------------------------------------------
*/

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

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

/* ---------- heading ---------- */

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

/* ---------- btn ---------- */


a.button.button.button:link,
a.button.button.button:hover,
a.button.button.button:visited,
a.button.button.button:active {
    color: #fff;
}

.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: #47bbb2;
    text-decoration: none;
    border-radius: 4.4rem;
    box-sizing: border-box;
    min-width: 18rem;
    padding: 1.5rem 1.4rem;
    border: 1px solid #47bbb2;
    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(../icon_shop.html) 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 {
    display: inline-block;
    vertical-align: middle;
    border-radius: 100%;
    width: 2.8rem;
    height: 2.8rem;
    padding:1.2rem;
}

.btn-circle span {
    display: block;
}

.btn-circle span:before {
    content: '';
    display: block;
    padding: 100% 0 0;
}

.btn-circle--online-shop {
    border-radius: 100%;
    background: #f25142 url(../icon_shop.html) no-repeat scroll 48% 52%;
    background-size: 54% auto;
    color: #fff;
    filter: drop-shadow( 0px 0px 16px rgba(0, 0, 0, 0.08) );
}

.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;
    }

}

/* ---------- banner ---------- */

.banner-block {
    display: block;
    text-align: center;
    margin: 72px auto;
}

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

.breadcrumbs a,
.breadcrumbs a:link,
.breadcrumbs a:hover,
.breadcrumbs a:focus {
    color: #47bcb2;
}

/* 色が設定されていなかったらデフォルトカラーにする */
.main a:not(.has-text-color),
.main a:not(.has-text-color):link,
.main a:not(.has-text-color):hover,
.main a:not(.has-text-color):focus,
.main a:not(.has-text-color):visited,
.main a:not(.has-text-color):active {
    color: #47bcb2;
}

/* 親に色が指定されていたら、それを優先 */
.main .has-text-color a:not(.has-text-color),
.main .has-text-color a:not(.has-text-color):link,
.main .has-text-color a:not(.has-text-color):hover,
.main .has-text-color a:not(.has-text-color):focus,
.main .has-text-color a:not(.has-text-color):visited,
.main .has-text-color a:not(.has-text-color):active {
    color: inherit;
}

.main a:hover,
.main a:focus {
    text-decoration: none;
}

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

.header {
    height: 80px;
    box-sizing: border-box;
    padding: 0 25px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1003;
    width: 100%;
    background: #fff;
}

.header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    margin: 0;
    transition: opacity .2s ease-in-out;
}

.header-logo__link {
    color: inherit;
    text-decoration: none;
    display: flex;
    align-items: center;
}

.header-logo__pic {
    position: relative;
    display: block;
    padding-right: 25px;
    margin-right: 20px;
    border-right: 1px solid #e5e5e5;
}


.header-logo__img {
    
}

.header-logo__sub-txt {
    font-size: 14px;
    white-space: nowrap;
    position: relative;
}

.header__gnav-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
} 

.header__gnav-link {
    display: block;
    text-decoration: none;
    color: inherit;
    font-size: 14px;
    font-weight: 700;
    padding: 1em 1.5em;
    white-space: nowrap;
}

.header__gnav-txt {
    display: block;
    position: relative;
}

.is-active .header__gnav-txt:after {
    content: '';
    display: block;
    width: 100%;
    height: 3px;
    background: #47bbb2;
    position: absolute;
    bottom: -.3em;
    left: 0;
}

.headmenu-wrapper {
    display: none;
    width: 70px;
    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: #47bbb2;
}

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

    .header {
        
    }

    .header-logo {
        
    }

    .header-logo__img {
        top: 0;
    }

    .hamburger {
        transform: scale(1);
    }

}

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

    .header-icon {
        position: relative;
        top: 0;
        right: 0;
    }

    .headmenu-wrapper {
        margin-left: 10px;
    }

}

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

    .header-logo {
        margin-right: auto;
    }

    .header__gnav {
        display: none;
    }

    .headmenu-wrapper {
        display: block;
    }

}

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: 80px;
    }
    
    body.is-header-slim .header-logo {
        
    }
    
    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 {
        
    }

    .header-logo__pic {
        padding-right: 12px;
        margin-right: 12px;
    }

    .header-logo__img {
        width: 93px;
    }

    .header-logo__sub-txt {
        font-size: 12px;
    }

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

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

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

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

    .footer .container {
        padding: 0;
    }

}

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

    .container {
        padding: 0 8vw;
    }

    .header {
        padding: 0 0 0 4vw;
    }

    .header-logo__pic {
        padding-right: 8px;
        margin-right: 8px;
    }

    .header-logo__img {
        width: 75px;
    }

    .header-logo__sub-txt {
        font-size: 6px;
    }

    .headmenu-wrapper {
        width: 50px;
        /* margin: 0; */
    }

    .hamburger {
        padding: 0;
    }

}

/* ---------- 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: #47bbb2;
    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;
    }

}

/* ---------- blog-contetnts ( WordPress editer contents ) ---------- */

/* 色が設定されていなかったらデフォルトカラーにする */
.blog-contetnts h1:not(.has-text-color),
.blog-contetnts h2:not(.has-text-color),
.blog-contetnts h3:not(.has-text-color),
.blog-contetnts h4:not(.has-text-color),
.blog-contetnts h5:not(.has-text-color) {
    color: #47bcb2;
}

/* 親に色が指定されていたら、それを優先 */
.blog-contetnts .has-text-color h1:not(.has-text-color),
.blog-contetnts .has-text-color h2:not(.has-text-color),
.blog-contetnts .has-text-color h3:not(.has-text-color),
.blog-contetnts .has-text-color h4:not(.has-text-color),
.blog-contetnts .has-text-color h5:not(.has-text-color) {
    color: inherit;
}

/* 色が設定されていなかったらデフォルトカラーにする */
.blog-contetnts a:not(.has-text-color),
.blog-contetnts a:not(.has-text-color):link,
.blog-contetnts a:not(.has-text-color):hover,
.blog-contetnts a:not(.has-text-color):focus,
.blog-contetnts a:not(.has-text-color):visited,
.blog-contetnts a:not(.has-text-color):active {
    color: #47bcb2;
}

/* 親に色が指定されていたら、それを優先 */
.blog-contetnts .has-text-color a:not(.has-text-color),
.blog-contetnts .has-text-color a:not(.has-text-color):link,
.blog-contetnts .has-text-color a:not(.has-text-color):hover,
.blog-contetnts .has-text-color a:not(.has-text-color):focus,
.blog-contetnts .has-text-color a:not(.has-text-color):visited,
.blog-contetnts .has-text-color a:not(.has-text-color):active {
    color: inherit;
}

.blog-contetnts h1,
.blog-contetnts h2,
.blog-contetnts h3,
.blog-contetnts h4,
.blog-contetnts h5 {
    line-height: 1.5;
}

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

    .blog-contetnts {
        font-size: 13px;
        line-height: 1.8;
    }

}

/* ---------- contents ---------- */

.section {
    padding: 1px 0;
}

.section:before, .section:after {
    content: '';
    display: block;
}

.section:before {
    margin-bottom: 72px;
}

.section:after {
    margin-top: 100px;
}

.section__heading {
    text-align: center;
    margin: 0;
}

.section__heading--en {
    font-size: 42px;
    text-transform: capitalize;
    font-family: Ubuntu,sans-serif;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.13;
}

.section__heading--ja .sec__heading__txt {
    font-size: 33px;
    line-height: 1.4;
    display: block;
    margin-bottom: 25px;
}

.section__heading--ja:before {
    content: attr(data-heading-en);
    display: block;
    color: #20aca0;
    text-transform: capitalize;
    font-family: Ubuntu,sans-serif;
    font-weight: 700;
    letter-spacing: .06em;
    line-height: 1.13;
    margin: 0 auto 10px;
}

.section__heading:after {
    content: '';
    display: block;
    margin: 12px auto 0;
    width: 38px;
    height:8px;
    background: url(../svg/line_dot_three.svg) center center;
    background-size: cover;
}

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

    

}

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

    .section__heading--en {
        font-size: 24px;
    }

    .section__heading--ja .sec__heading__txt {
        font-size: 21px;
        margin-bottom: 11px;
    }

}

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

    .section:before {
        margin-bottom: 8vw;
    }

    .section:after {
        margin-top: 8vw;
    }

    .section__heading:after {
        margin: 8px auto 0;
        width: 31px;
        height: 6px;
    }

    .section__heading--ja:before {
        font-size: 14px;
        margin: 0 auto .4em;
    }

}

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

    

}

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

    

}

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

.footer,
.footer-lang-list  {
    background: #47bcb2;
}

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

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

.footer-nav__button  {
    background: #47bcb2;
}

.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);
    }
}



