@charset "utf-8";

/* Global
---------------------------------------------------------- */
* {
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}
html {
    width: 100%;
    height: 100%;
    font-style: normal;
    font-size: 62.5%;
    color: #000;
    overflow: hidden;
    overflow-y: scroll;
}
body {
    font-family: YakuHanJPs,"Noto Sans JP","Hiragino Kaku Gothic ProN","Yu Gothic",YuGothic,Meiryo,sans-serif;
    position:relative;
    height: 100%;
    z-index: 0;
    margin: 0;
    font-size: 1.5rem;
    line-height: 2;
    letter-spacing: 0.002em;
	font-feature-settings:"palt";
    font-feature-settings: 'pkna' 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
}

/* Animation
---------------------------------------------------------- */
.fadein,
.fadein_left,
.fadeinup {
  opacity: 0;
  animation-duration: 1.5s;
  animation-fill-mode: both;
}
/* fadeIn */
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    10% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
.fadeIn {
    animation-name: fadeIn;
}
/* fadeInUp */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30%, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.fadeInUp {
    animation-name: fadeInUp;
}
/* fadeInLeft */
@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-100%, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
.fadeInLeft {
    animation-name: fadeInLeft;
}
.effect_bg {
    opacity: 0;
}
.show2 .effect_bg {
    opacity: 1;
}
.effect {
    position: relative;
    overflow: hidden;
    display: inline-block;
}
.effect::before {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    left: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(to right, #121212 0%, #000000 100%);
    z-index: 2;
    transform: translate3d(-101%, 0, 0);
    transition: 0.3s all 0.1s cubic-bezier(0, 1.07, 1, 1);
}
.show.effect::before {
    transform: translate3d(0, 0, 0);
}
.show2.effect::before {
    transform: translate3d(105%, 0, 0);
}

/* Misc.
---------------------------------------------------------- */
.cf::after {
    content: "";
    display: block;
    clear: both;
}
.hidden {
	display: none;
}
.t-bold {
	font-weight:bold;
	font-weight: 700;
}
.t-center {
    text-align: center;
}
.t-right {
	text-align:right;
}
a {
    color: #000;
    outline: none;
    overflow: hidden;
    text-decoration: underline;
    transition: .2s linear;
}
a:hover {
    color: #000;
    text-decoration: none;
}
a[href^="tel:"] {
	cursor: default;
}
.img-btn {
    transition: all .3s ease-in-out;
}
.img-btn:hover {
    opacity:0.75;
}
.show-mobile-inline,
.show-mobile {
    display: none;
}
.hide-mobile {
    display: block;
}
.hide-mobile-inline {
	display: inline-block;
}
@media only screen and (max-width: 767px) {
	.show-mobile {
		display: block;
	}
	.show-mobile-inline {
		display: inline-block;
	}
	.hide-mobile {
		display: none;
	}
	.hide-mobile-inline {
		display: none;
	}
}

/* Header
---------------------------------------------------------- */
header {
    width: 100%;
    background-color: #c19a64;
}
.header__nav {

}
.header__nav ul {
    display: flex;
    justify-content: flex-end;
}
.header__nav ul a {
    display: block;
    color: #fff;
    text-decoration: none;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .05em;
    line-height: 1;
    padding: 2.8rem 2rem 2.7rem 2rem;
}
.header__nav ul li:last-of-type a {
    background-color: #997d4f;
    padding: 2.8rem 4rem 2.7rem 4rem;
    margin-left: 2rem;
}



/* Footer
---------------------------------------------------------- */
footer {
    background-color: #c19a64;
    color: #fff;
}
.footer-content {
    padding: 40px 0;
    border-bottom: 1px solid #c8c8c8;
}
.footer-address__logo {
    width: 200px;
    margin-bottom: 24px;
}
.footer-address__logo a {
    display: block;
}
.footer-address address {
    font-size: 1.3rem;
    line-height: 2;
    font-style: normal;
}
.footer-address address a {
    text-decoration: none;
    color: #fff;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #c8c8c8;
}
.footer-content > nav {
    width: 180px;
}
.footer-content > nav li {
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
}
.footer-content > nav li::before {
    content: '';
    display: block;
    height: 1px;
    width: 9px;
    margin: 0 8px 0 0;
    border-bottom: 1px solid #fff;
}
.footer-content > nav li a {
    display: block;
    font-size: 1.3rem;
    text-decoration: none;
    color: #fff;
}
.footer-other {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0;
}
.footer-other p {
    font-weight: bold;
    line-height: 1.5;
}


/* Main
---------------------------------------------------------- */
main {

}

/* 共通パーツ
---------------------------------------------------------- */
.inner {
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.full-width {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}
a:hover {
    opacity: 0.75;
}

/* トップページ
---------------------------------------------------------- */
.top__main-visial .swiper-slide {
    position: relative;
    max-width: 1000px;
    height: 700px;
}
.top__main-visial .swiper-slide > a {
    display: block;
    height: 100%;
    background-size: cover;
    background-position: center;
}
.top__main-visial__content {
    width: 100%;
    position: absolute;
    bottom: 0;
    background-color: rgba(193, 154, 100, .5);
    padding: 2rem 5rem 2rem 5rem;
    color: #fff;
}
.top__main-visial__content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    line-height: 1;
    margin-bottom: 1rem;
}
.top__main-visial__content__header .category {
    background-color: #fff;
    color: #c19a64;
    padding: 6px 10px 3px 10px;
    min-width: 100px;
    text-align: center;
}
.top__main-visial__content__header .date {
    
}
.top__main-visial__content__title {
    font-size: 2.6rem;
    line-height: 1.4;
    font-weight: bold;
}
.swiper-button-prev,
.swiper-button-next {
    color: #fff;
}
.swiper-button-prev:after,
.swiper-button-next:after {
    font-size: 23px;
}
/* TOP TOPICS */
.top__topics {
    background-color: #c19a64;
    padding: 0 0 5rem 0;
}
.top__lineup .inner,
.top__topics .inner {
    width: 90%;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}
.top__lineup .inner > h2,
.top__topics .inner > h2 {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: normal;
    letter-spacing: .05em;
    line-height: 1;
    font-size: 2.8rem;
    text-align: center;
    color: #fff;
    padding-top: 9rem;
    padding-bottom: 7rem;
    margin-bottom: 4rem;
    position: relative;
}
.top__lineup .inner  > h2::after,
.top__topics .inner  > h2::after {
    content: '';
    display: block;
    width: 1px;
    height: 5rem;
    position: absolute;
    bottom: 0;
    right: 50%;
    transform: translateX(-50%);
    background-color: #fff;
}
.top__topics__nav {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    margin-bottom: 9rem;
}
.top__topics__nav a {
    font-family: 'Josefin Sans', sans-serif;
    font-weight: normal;
    letter-spacing: 0;
    line-height: 1;
    color: #fff;
    text-decoration: none;
    border-right: 1px solid #fff;
    padding: 0 10px 0 0;
    margin: 0 12px 10px 0;
}
.top__topics__nav a:last-of-type {
    border-right: none;
}
.top__topics__nav a:hover,
.top__topics__nav a.current {
    color: #997d4f;
}
.top__topics__list {
    display: flex;
    flex-wrap: wrap;
}
.top__topics__box {
    display: block;
    width: 30%;
    margin: 0 5% 6rem 0;
    text-decoration: none;
    color: #fff;
}
.top__topics__box:hover {
    color: #fff;
}
.top__topics__box:nth-of-type(3n) {
    margin-right: 0;
}
.top__topics__box figure {
    margin: 0;
}
.top__topics__box figure img {
    width: 100%;
    height: auto;
}
.top__topics__box__content {
    padding: 14px 0 0 0;
}
.top__topics__box__content__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.3rem;
    letter-spacing: .1em;
    line-height: 1;
    margin-bottom: 1rem;
}
.top__topics__box__content__header .category {
    background-color: #fff;
    color: #c19a64;
    padding: 6px 10px 3px 10px;
    min-width: 60px;
    text-align: center;
}
.top__topics__box__content__header .date {
    
}
.top__topics__box__content__title {
    line-height: 1.5;
}
.btn-addpost {
    display: block;
    margin: 0 auto;
    padding-bottom: 8rem;
    text-align: center;
}
.btn-addpost img {
    height: 37px;
    width: auto;
}
.btn-addpost:hover {
    opacity: .75;
    cursor: pointer;
}
/* TOP LINE UP */
.top__lineup {
    position: relative;
}
.top__lineup::after,
.top__lineup::before {
    content: '';
    display: block;
    position: absolute;
}
.top__lineup::before {
    background: url(../img/bg_circle.svg) no-repeat center;
    background-size: 100% auto;
    width: 400px;
    height: 400px;
    top: -100px;
    right: -130px;
}
.top__lineup::after {
    background: url(../img/bg_circle.svg) no-repeat center;
    background-size: 100% auto;
    width: 260px;
    height: 260px;
    top: 300px;
    left: -130px;
}
.top__lineup .inner > h2 {
    color: #c19a64;
    padding-top: 15rem;
    padding-bottom: 7rem;
    margin-bottom: 12rem;
}
.top__lineup .inner > h2::after {
    background-color: #c19a64;
}
.top__lineup__products {
    display: flex;
    flex-wrap: wrap;
}
.top__lineup__products_box {
    width: 28%;
    margin: 0 8% 6rem 0;
    text-decoration: none;
    color: #c19a64;
}
.top__lineup__products_box:nth-of-type(3n) {
    margin-right: 0;
}
.top__lineup__products_box figure {
    text-align: center;
    margin: 0 0 4rem 0;
}
.top__lineup__products_box figure img {
    width: auto;
    height: 500px;
}
.top__lineup__products_name {
    line-height: 1.4;
    margin-bottom: 1.6rem;
    font-weight: bold;
    font-size: 1.6rem;
}
.top__lineup__products_name h2 {
    font-size: 1.6rem;
}
.top__lineup__products_info {
    line-height: 1.6;
    margin-bottom: 2rem;
}
.top__lineup__products_box nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.top__lineup__products_box nav a {
    display: block;
}
.top__lineup__products_box nav a img {
    height: 37px;
    width: auto;
}
.top__lineup__products_box.tea .top__lineup__products_content {
    background: url(../img/bg_tea.svg) no-repeat right top 20px;
    background-size: 114px auto;
}
.top__lineup__products_box.coffee .top__lineup__products_content {
    background: url(../img/bg_coffee.svg) no-repeat right top 20px;
    background-size: 140px auto;
}
.top__lineup__products_box.kinkan .top__lineup__products_content {
    background: url(../img/bg_kinkan.svg) no-repeat right top;
    background-size: 180px auto;
}
.top__lineup__nav {
    text-align: center;
    width: 90%;
    max-width: 1100px;
    margin: 6rem auto;
    display: flex;
    justify-content: center;
}
.top__lineup__nav > div {
    color: #fff;
    padding: 4px;
    text-decoration: none;
    margin: 0 2rem;
    width: 50%;
    max-width: 340px;
    background: #c19a64;
    line-height: 1;
}
.top__lineup__nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    padding: 24px 12px 26px 12px;
    text-decoration: none;
    color: #fff;
}
.top__lineup__nav .t-en {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
}
.top__lineup__nav span  {
    display: flex;
    align-items: center;
}
.top__lineup__nav span img {
    width: 40px;
    height: auto;
    margin-top: -2px;
    margin-left: 10px;
}
.gotop {
    width: 90%;
    margin: 4rem auto;
    display: flex;
    justify-content: flex-end;
}
.gotop span {
    display: block;
    width: 34px;
}
.gotop span img {
    width: 100%;
    height: auto;
}

/* 記事詳細
---------------------------------------------------------- */
.page__topics__detail {
    width: 90%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    padding: 10rem 0 3rem 0;
}
.page__topics__detail .page__title {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .05em;
    line-height: 1;
    font-size: 2.8rem;
    text-align: center;
    color: #c19a64;
    margin-bottom: 5rem;
}
.page__topics__detail .page__title span {
    border-bottom: 1px solid #c19a64;
    padding-bottom: 6px;
}
.page__topics_detail__header {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .05em;
    line-height: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    color: #c19a64;
}
.page__topics_detail__header .category {
    background: #c19a64;
    color: #fff;
    padding: 6px 14px 3px 14px;
    min-width: 80px;
    text-align: center;
}
.page__topics_detail__header .date {
    letter-spacing: .1em;
}
.page__topics__detail article {

}
.page__topics_detail__visual {
    margin-bottom: 3.6rem;
}
.page__topics_detail__visual img {
    width: 100%;
    height: auto;
}
.page__topics__detail article > h1 {
    font-size: 2.8rem;
    line-height: 1.5;
    border-bottom: 1px solid #c19a64;
    padding-bottom: 3.4rem;
    margin-bottom: 3.4rem;
}
.page__topics__detail__content {
    
    /* 記事本部のスタイル */
}
.page__topics__detail__content h1 {
    font-size: 2.6rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}
.page__topics__detail__content h2 {
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 1.8rem;
}
.page__topics__detail__content h3 {
    font-size: 1.8rem;
    line-height: 1.6;
    border-left: 4px solid #c19a64;
    padding: 0 0 0 2rem;
    margin-bottom: 3rem;
}
.wp-block-image {
    margin-bottom: 3rem;
}
.page__topics__detail__content img {
    width: 100%;
    height: auto;
}
.wp-block-image figcaption {
    color: #727171;
}


.page__topics__detail__content p {
    margin-bottom: 3rem;
}
.wp-block-quote {
    color: #727171;
    font-style: italic;
    padding: 0 0 0 2rem;
    border-left: 1px solid #727171;
    margin-bottom: 3rem;
}
.wp-block-quote cite {
    font-size: 1.2rem;
    font-style: normal;
}
/* 関連記事 */
.page__topics__related {
    width: 90%;
    max-width: 800px;
    margin: 0 auto 6rem auto;
    padding: 6rem 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    border-bottom: 1px solid #c19a64;
}
.page__topics__related__post {
    display: block;
    width: 30%;
    margin: 0 5% 0 0;
    text-decoration: none;
}
.page__topics__related__post:last-of-type {
    margin-right: 0;
}
.page__topics__related__post figure {
    margin: 0 0 6px 0;
}
.page__topics__related__post figure img {
    width: 100%;
    height: auto;
}
.page__topics__related__post .category {
    display: inline-block;
    background-color: #c19a64;
    color: #fff;
    padding: 6px 10px 3px 10px;
    margin: 0 0 10px 0;
    min-width: 60px;
    text-align: center;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 1.2rem;
    letter-spacing: .05em;
    line-height: 1;
}
.page__topics__related__post .date {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    margin-bottom: 1rem;
    line-height: 1;
    color: #c19a64;
    display: inline-block;
    margin-bottom: 7px;
}
.page__topics__related__post__title {
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 1rem;

}
.page__topics__related__post_body {
    line-height: 1.5;
}
.top__topics__share h2 {
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .1em;
    line-height: 1;
    font-weight: normal;
    font-size: 1.8rem;
    color: #c19a64;
    text-align: center;
    padding-top: 7rem;
    margin-bottom: 4rem;
    position: relative;
}
.top__topics__share h2::after {
    content: '';
    display: block;
    width: 1px;
    height: 4rem;
    position: absolute;
    bottom: 44px;
    right: 50%;
    transform: translateX(-50%);
    background-color: #c19a64;
}
.top__topics__share__nav {
    text-align: center;
    width: 90%;
    max-width: 1100px;
    margin: 2rem auto 7rem auto;
    display: flex;
    justify-content: center;
}
.top__topics__share__nav > div {
    display: block;
    color: #fff;
    padding: 4px;
    margin: 0 2rem;
    width: 50%;
    max-width: 340px;
    background: #c19a64;
    line-height: 1;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .05em;
}
.top__topics__share__nav a {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #fff;
    padding: 20px 12px 22px 12px;
    font-size: 1.8rem;
    text-decoration: none;
    color: #fff;
}
.top__topics__share__nav a span {
    display: block;
}
.top__topics__share__nav a img {
    width: 25px;
    height: auto;
    margin-right: 10px;
}
.top__topics__back {
    width: 90%;
    max-width: 800px;
    margin: 6rem auto 0 auto;
    padding-bottom: 5rem;
    border-bottom: 1px solid #c19a64;
}
.top__topics__back a {
    line-height: 1;
    font-family: 'Josefin Sans', sans-serif;
    letter-spacing: .05em;
    color: #c19a64;
    text-decoration: none;
    font-size: 1.6rem;
}
.page__topics__related {

}
