@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%;
    line-height: 1;
    background-color: #fff;
}
.header__address {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px 0;
}
.header__address address {
    width: 140px;
    margin-right: 14px;
}
.header__address address img {
    width: 100%;
    height: auto;
}
.header__address__language {
    font-family: 'Barlow', sans-serif;
    font-weight: bold;
    color: #929292;
    font-size: 1.8rem;
}
.header__address__language a {
    text-decoration: none;
    color: #929292;
}
.header__address__language a:hover {
    color: #000;
}
.header__address__language span {
    color: #000;
}
.header__logo {
    width: 294px;
    padding-bottom: 45px;
}
.header__logo img {
    width: 100%;
    height: auto;
}
.header__nav {
}
.header__nav ul {
    display: flex;
    flex-wrap: wrap;
}
.header__nav ul li {
    width: 20%;
    padding-bottom: 55px;
    background-position: center bottom 30px;
    transition: all .3s;
}
.header__nav ul li:hover,
.header__nav ul li.active {
    background: url(../img/common/bg__gnav_active.svg) no-repeat center bottom 23px;
    background-size: 11px auto;
}
.header__nav ul li a {
    border-right: 1px solid #808080;
}
.header__nav ul li:last-of-type a {
    border-right: none;
}
.header__nav ul li a,
.header__nav ul li a span {
    display: block;
    line-height: 1;
    text-decoration: none;
    text-align: center;
}
.header__nav__en {
    font-family: 'EB Garamond', serif;
    margin-bottom: 6px;
    font-size: 1.8rem;
}
.header__nav__jp {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
}

/* Footer
---------------------------------------------------------- */
footer {
    background-color: #fff;
}
.footer-banner {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 20px 0;
    border-top: 1px solid #c8c8c8;
}
.footer-banner a {
    display: block;
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
}
.footer-banner a:nth-of-type(even) {
    margin-right: 0;
}
.footer-banner a img {
    width: 100%;
    height: auto;
}
.footer-content {
    padding: 40px 0;
    border-bottom: 1px solid #c8c8c8;
}
.footer-address__logo {
    width: 200px;
    margin-bottom: 24px;
}
.footer-address address {
    font-size: 1.3rem;
    line-height: 2;
    font-style: normal;
}
.footer-address address a {
    text-decoration: none;
}
.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    border-top: 1px solid #c8c8c8;
}
.footer-content > nav {
    width: 350px;
}
.footer-content > nav ul {
    display: flex;
    flex-wrap: wrap;
}
.footer-content > nav li {
    width: 50%;
    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 #000;
}
.footer-content > nav li a {
    display: block;
    font-size: 1.3rem;
    text-decoration: none;
}
.footer-other {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 30px 0;
}
.footer-other p {
    flex: 1;
    font-weight: bold;
    line-height: 1.5;
}
.footer-other__sns {
    width: 100px;
    text-align: right;
}
.footer-other__sns a:first-of-type {
    margin-right: 8px;
}
.footer-other__sns a img,
.footer-other__sns a {
    display: inline-block;
    width: 28px;
    height: auto;
}

/* Main
---------------------------------------------------------- */
main {
    background-color: #fff;
}

/* 共通パーツ
---------------------------------------------------------- */
.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-page__main-visual {
    width: 100vw;
    height: 56vw;
    /* background: url(../img/top/main_visual.jpg) no-repeat center;
    background-size: cover; */
    position: fixed;
    top: 0;
    z-index: -1;
    overflow: hidden;
}
.top-page__main-visual::after {
    content: '';
    display: block;
    width: 100%;
    height: 100vh;
    position: absolute;
    left: 0;
    top: 0;
    z-index: 1;
}
.top-page__main-visual__copy {
    position: absolute;
    top: 50%;
    left: 9%;
    transform: translateY(-50%);
    width: 30%;
    max-width: 266px;
    min-width: 200px;
}
.top-page__main-visual__copy img {
    width: 100%;
    height: auto;
}
.top-page-en header,
.top-page header {
    margin-top: 56vw;
}
#player {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100vw;
    min-height: 100%;
}
/* トップトピック */
.top__topics {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 60px;
    margin-bottom: 60px;
    border-bottom: 1px solid #c8c8c8;
}
.top__topics__title {
    border: 1px solid #c8c8c8;
    width: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 40px;
}
.top__topics__title h2 {
    font-family: 'Barlow', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 1px;
}
.top__topics__list {
    flex: 1;
    list-style: none;
}
.top__topics__list li {
    border-bottom: 1px solid #c8c8c8;
    padding: 14px 10px;
    display: flex;
}
.top__topics__list li:last-of-type {
    border-bottom: none;
}
.top__topics__list__date {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    margin-right: 20px;
}
.top__topics__list__title {
    line-height: 1.5;
}
.top__topics__list__title a {
    text-decoration: none;
    color: #0082c6;
}
/* トップピックアップ */
.top__pick-up {
    padding-bottom: 60px;
    border-bottom: 1px solid #c8c8c8;
}
.top__pick-up__slide {
    padding: 0 100px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.top__pick-up__slide figure {
    width: 200px;
    margin: 0 40px 0 0;
}
.top__pick-up__slide figure a {
    display: block;
    text-align: center;
}
.top__pick-up__slide figure img {
    width: auto;
    height: auto;
    max-height: 400px;
}
.top__pick-up__slide__content {
    flex: 1;
}
.top__pick-up__slide_category {
    font-family: 'Barlow', sans-serif;
    color: #be0012;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: .07rem;
    margin-bottom: 20px;
}
.top__pick-up__slide__content h2 {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 20px;
}
.top__pick-up__slide__summary {
    margin-bottom: 20px;
}
.top__pick-up__slide__link {
    text-align: right;
}
.top__pick-up__slide__link a {
    background: #000;
    display: inline-block;
    color: #fff;
    text-decoration: none;
    padding: 6px 13px 7px 22px;
    line-height: 1;
}
.swiper-button-prev,
.swiper-button-next {
    width: 30px;
    height: 93px;
}
.swiper-button-prev {
    background: url(../img/top/slide_allow_left.svg) no-repeat center;
}
.swiper-button-next {
    background: url(../img/top/slide_allow_right.svg) no-repeat center;
}
.swiper-button-next:after,
.swiper-button-prev:after {
    display: none!important;
}

/* トピック一覧
---------------------------------------------------------- */
.page__title {
    padding: 20px 0 30px 0;
    border-bottom: 1px solid #c8c8c8;
    line-height: 1;
}
.page__title h1 {
    font-family: 'EB Garamond', serif;
    font-size: 2.8rem;
    text-align: center;
    font-weight: normal;
    margin: 0;
}
.page__topics__list li {
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    padding-top: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid #c8c8c8;
}
.page__topics__list__img {
    width: 300px;
    display: block;
    margin-right: 60px;
    text-align: center;
}
.page__topics__list__img img {
    max-width: 100%;
    max-height: 220px;
}
.page__topics__list__content {
    width: calc(100% - 360px);
}
.page__topics__list__content h2 {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: normal;
    line-height: 1.6;
    margin-bottom: 20px;
}
.top__topics__list_summary {
    margin-bottom: 25px;
    line-height: 1.8;
}
.top__topics__list_summary a {
    text-decoration: none;
    color: #0082c6;
}
.page__topics__list__date {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
}
/* トピック詳細
---------------------------------------------------------- */
.page__topics_det_ail__date {
    font-family: 'Barlow', sans-serif;
    font-size: 1.2rem;
    font-weight: bold;
    margin: 2rem auto;
    max-width: 970px;
}
.page__topics__detail article h1 {
    max-width: 746px;
    margin: 0 auto 2.6rem auto;
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: normal;
    line-height: 1.6;
}
.page__topics__detail__body {
    max-width: 746px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}
.page__topics__detail__body img {
    max-width: 100%;
    height: auto;
}
.page__topics__detail__body p {
    margin-bottom: 2rem;
}
.page__topics__detail__dl {
    border-top: 1px solid #c8c8c8;
    text-align: center;
    padding: 20px 0;
    font-weight: bold;
}
.page__topics__detail__dl a {
    text-decoration: none;
    margin-right: 7px;
}
.page__topics__detail__dl a img {
    width: 26px;
    height: auto;
    margin-right: 6px;
    vertical-align: text-top;
}
.page__topics__detail__nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-top: 30px;
    padding-bottom: 30px;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
}
.page__topics__detail__nav a {
    display: block;
    font-weight: bold;
    text-decoration: none;
}
/* 商品一覧
---------------------------------------------------------- */
.page__product__list__nav {
    margin-bottom: 2rem;
}
.page__product__list__sp h2,
.page__product__list__nav h2 {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: center;
    padding: 2rem 0 2.6rem 0;
}
.page__product__list__nav ul {
    display: flex;
    flex-wrap: wrap;
    border-right: 1px solid #c8c8c8;
}
.page__product__list__nav ul li {
    width: 16.66%;
    border-left: 1px solid #c8c8c8;
}
.page__product__list__nav ul a {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 330px;
}
.page__product__list__nav ul a img {
    height: 100%;
    width: auto;
}
.page__product__list__sub__nav {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
    border-top: 1px solid #c8c8c8;
    border-bottom: 1px solid #c8c8c8;
    text-align: center;
    padding: 2rem 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}
.page__product__list__sub__nav span {
    display: inline-block;
}
.page__product__list__sub__nav a {
    display: inline-block;
    text-decoration: none;
    padding: 0 1.6rem;
    border-right: 1px solid #c8c8c8;
}
.page__product__list__sub__nav a:last-of-type {
    border-right: none;
}
.page__product__list__items {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}
.page__product__list__items li {
    width: 20%;
    border-bottom: 1px solid #c8c8c8;
    text-align: center;
}
.page__product__list__items li a {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 30px 0;
    position: relative;
}
.page__product__list__items li a img {
    height: 220px;
}
.page__product__list__items__name {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 1.6rem;
    letter-spacing: 1px;
}
.page__product__list__items__pop {
    position: absolute;
    top: 0;
    right: 19%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffde00 url(../img/product/bg_pop.svg) no-repeat center bottom -1px;
    background-size: 100% auto;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 1;
    font-size: 1.2rem;
    letter-spacing: 1px;
    padding: 12px 6px 18px 6px;
}
/* 商品詳細
---------------------------------------------------------- */
.page__product__detail {
    position: relative;
}
.page__product__detail__back {
    text-align: center;
    padding: 14px 0 16px 0;
    border-bottom: 1px solid #c8c8c8;
}
.page__product__detail__back a {
    text-decoration: none;
    font-weight: bold;
}
.page__product__detail article {
    position: relative;
    padding-top: 60px;
}
.page__product__detail__pop {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 50;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffde00 url(../img/product/bg_pop.svg) no-repeat center bottom -1px;
    background-size: 100% auto;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    line-height: 1;
    font-size: 1.5rem;
    letter-spacing: 1px;
    padding: 12px 8px 18px 9px;
}
.page__product__detail__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.page__product__detail__slide {
    width: calc(50% - 10px);
    margin-right: 20px;
}
.page__product__detail__content {
    width: calc(50% - 10px);
}
.page__product__detail__slide .swiper-slide figure {
    text-align: center;
}
.page__product__detail__slide .swiper-slide figure img {
    width: auto;
    height: auto;
    max-width: 100%;
}
.page__product__detail__slide .swiper-container {
    padding-bottom: 40px;
}
.page__product__detail__slide .swiper-wrapper {
    height: auto;
}
.page__product__detail__slide .swiper-pagination-bullet {
    width: 14px;
    height: 14px;
    opacity: 0.15;
}
.page__product__detail__slide .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 13px;
}
.page__product__detail__slide .swiper-pagination-bullet-active {
    opacity: 1;
    background: #c8c8c8;
}
.page__product__detail__header {
    border-bottom: 2px solid #62a3c6;
    padding-bottom: 25px;
    margin-bottom: 26px;
}
.page__product__detail__tag {
    display: block;
    margin-bottom: 1.4rem;
    letter-spacing: 1px;
}
.page__product__detail__content h1 {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 3.4rem;
    letter-spacing: 1px;
    line-height: 1.6;
    margin: 0;
}
.page__product__detail__kana {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 1.5rem;
}
.page__product__detail__copy {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 2.4rem;
    letter-spacing: 1px;
    line-height: 1.6;
    font-weight: normal;
    margin-bottom: 15px;
}
.page__product__detail__detail {
    margin-bottom: 45px;
}
.page__product__detail__note {
    border-top: 1px solid #c8c8c8;
    margin-bottom: 20px;
}
.page__product__detail__note h3 {
    background: #e7e4e2;
    display: inline-block;
    padding: 4px 14px;
    font-size: 1.5rem;
}
.page__product__detail__note p {
    padding: 7px 0 0 12px;
    line-height: 1.8;
}
.page__product__detail__link__wrap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 4rem;
}
.page__product__detail__link__shop {
    width: calc(50% - 10px);
    margin-right: 20px;
}
.page__product__detail__link__zip {
    width: calc(50% - 10px);
}
.page__product__detail__link__wrap a {
    display: flex;
    justify-content: center;
    border: 1px solid #c8c8c8;
    padding: 30px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.5;
    font-size: 1.5rem;
}
.page__product__detail__link__wrap a img {
    display: block;
    width: auto;
    height: 44px;
    margin-right: 20px;
}
.page__product__detail__link__wrap a span {
    display: block;
}
.page__product__detail__banner {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0;
}
.page__product__detail__banner a {
    display: block;
    width: calc(50% - 10px);
    margin-right: 20px;
    margin-bottom: 20px;
}
.page__product__detail__banner a:nth-of-type(even) {
    margin-right: 0;
}
.page__product__detail__banner a img {
    width: 100%;
    height: auto;
}
.page__product__detail__related h2 {
    text-align: center;
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 1.8rem;
    letter-spacing: 1px;
    line-height: 1.6;
    font-weight: normal;
    padding-bottom: 20px;
    border-bottom: 1px solid #c8c8c8;
}
.page__product__detail .page__product__list__items {
    display: flex !important;
}
/* 会社概要
---------------------------------------------------------- */
.page__company__intro {
    text-align: center;
    padding: 7rem 0 8rem 0;
    margin: 0 0 6rem 0;
    border-bottom: 1px solid #c8c8c8;
}
.page__company__intro h2 {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 2.4rem;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: center;
    background: url(../img/company/icon_drop.svg) no-repeat center bottom;
    background-size: 14px auto;
    padding: 0 0 3rem 0;
    margin-bottom: 1.5rem;
}
.page__company__intro p {
    
}
.page__company__profile {
    display: flex;
    flex-wrap: wrap;
    padding: 0 6% 6rem 6%;
    margin: 0 0 5rem 0;
    /* border-bottom: 1px solid #c8c8c8; */
}
.page__company__profile__table {
    width: 45%;
    margin-right: 10%;
}
.page__company__profile__table table {
    letter-spacing: 0.05rem;
    line-height: 1.5;
}
.page__company__profile__table table td {
    padding: 6px 0;
}
.page__company__profile__table table .label {
    width: 130px;
}
.page__company__profile__table table .data {
    flex: 1;

}
.page__company__profile__dl-wrap {
    width: 45%;
}
.page__company__profile__dl-wrap a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #c8c8c8;
    padding: 30px;
    margin-bottom: 30px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.5;
    font-size: 1.5rem;
}
.page__company__profile__dl-wrap a img {
    display: block;
    width: auto;
    height: 40px;
    margin-right: 20px;
}
.page__company__profile__dl-pdf {

}
.page__company__profile__dl-recruit {

}

.page__company__access {

}
.page__company__access_content {
    display: flex;
    flex-wrap: wrap;
    padding: 0 6% 8rem 6%;
}
.page__company__access_honsya {
    width: 45%;
    margin-right: 10%;
}
.page__company__access_kinpo {
    width: 45%;
}
.page__company__access_content > div {
    text-align: center;
}
.page__company__access_content > div h2 {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 2.2rem;
    font-weight: normal;
    letter-spacing: 1px;
    text-align: center;
    padding: 0 0 2.2rem 0;
}
.page__company__access_content > div figure {
    margin: 0 0 1.9rem 0;
}
.page__company__access_content > div figure img {
    width: 100%;
    height: auto;
}
.page__company__access_content > div {
    line-height: 1.6;
}
.page__company__access_tel {
    font-weight: bold;
}
.page__company__access__address {
    margin-bottom: 2rem;
}
.page__company__access__link {
    display: flex;
    justify-content: center;
    border: 1px solid #c8c8c8;
    padding: 18px 30px 22px 30px;
    font-weight: bold;
    text-decoration: none;
    line-height: 1.5;
    font-size: 1.5rem;
}
.page__company__access_content > div a img {
    display: block;
    width: auto;
    height: 40px;
    margin-right: 20px;
}
.page__company__access_content > div a span {
    text-align: left;
}
.page__company__contact {
}
.page__company__recruit {
    margin-bottom: 5rem;
}
.page__company__recruit .section__title,
.page__company__contact .section__title {
    padding: 20px 0 30px 0;
    border-bottom: 1px solid #c8c8c8;
    line-height: 1;
}
.page__company__recruit.page__topics__list li {
    border-bottom: none;
}
.page__company__recruit .section__title h2,
.page__company__contact .section__title h2 {
    font-family: 'EB Garamond', serif;
    font-size: 2.8rem;
    text-align: center;
    font-weight: normal;
    margin: 0;
}
.page__company__contact__content {
}
.page__company__contact__content__tel {
    font-family: 'EB Garamond', serif;
    font-size: 3.8rem;
    text-align: center;
    font-weight: normal;
    margin: 4rem 0 4rem 0;
    line-height: 1;
}
.page__company__contact__content__note {
    text-align: center;
    margin-bottom: 4rem;
}
.page__company__contact__form-wrap {
    background: url(../img/company/bg_form.svg) repeat;
    background-size: 20px auto;
    padding: 50px 0;
}
.page__company__contact__form-wrap form {
    width: 90%;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}
/* フォーム */
.form-box {
    display: flex;
    align-items: center;
	padding: 10px 0;
}
.hissu {
	font-size: 12px;
    color: #ff0000;
    margin-left: 3px;
}
.form-box-l {
    width: 190px;
    text-align: right;
    padding: 0 10px 0 0;
    font-weight: bold;
}
.form-box-r {
	flex: 1;
	font-size: 15px;
	padding: 0 10px;
}
.input-text {
	width: 100%;
	padding:10px 5px;
	border: 1px solid #b3b3b3;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 16px;
    color: #736357;
    background: #fff;
}
.input-textarea {
	width: 100%;
	padding:10px 5px;
	border: 1px solid #b3b3b3;
	-webkit-border-radius: 5px;
	-moz-border-radius: 5px;
	border-radius: 5px;
	font-size: 16px;
    color: #736357;
    background: #fff;
}
.form-box-r select {
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    text-indent: 0.7em;
    background:#fff url(../img/common/arw_select_down.png) no-repeat;
    background-size:20px auto;
    background-position: right center;
    height: 44px;
    vertical-align: middle;
    border:1px solid #CCC;
    background: #fff;
    font-size: 16px;
	width: 100%;
	padding-right: 20px;
	border-radius: 5px;
}
.form-box-r input[type="date"] {
    text-indent: 0.4em;
    height: 44px;
    vertical-align: middle;
    border:1px solid #CCC;
    background: #fff;
    font-size: 16px;
	width: 50%;
	max-width: 200px;
}
.form-box-r .date-meet-box input[type="date"] {
	margin-right: 12px;
}
#button-layer {
	text-align:center;
	padding: 10px 0 0 0;
}
#button-layer input {
	font-weight: 700;
	font-size: 1.8re,;
    color: #fff;
	background: #393939;
	border-radius: 40px;
	padding: 6px 40px;
	border: none;
	cursor: pointer;
    transition: all .3s ease-in-out;
    letter-spacing: 1px;
}
#button-layer input:hover {
	opacity:0.70;
}
span.wpcf7-list-item {
    padding: 4px;
}
div.wpcf7-response-output {
    margin: 0 auto;
    padding: 1em 1em !important;
    line-height: 1;
	color: #365899;
	font-weight: 700;
	text-decoration: underline;
	font-size: 16px;
    text-align: center;
    margin-top: 0 !important;
}
span.wpcf7-not-valid-tip,
.wpcf7-not-valid-tip-no-ajax {
	color: #c00;
	text-decoration: underline;
}
.wpcf7 form .wpcf7-response-output {
    margin-top: 20px!important;
    line-height: 1.6;
}
form.invalid .wpcf7-response-output {
    border: 2px solid #c00 !important;
    color: #c00 !important;
}
div.wpcf7-validation-errors {
	color: #c00;
	font-weight: 700;
	text-decoration: underline;
	border: none;
}
.wpcf7-mail-sent-ok {
	color: #365899;
	font-weight: 700;
	text-decoration: underline;
	border: none;
}

/* OUR STORY
---------------------------------------------------------- */
.page__story {
    overflow: hidden;
}
.page__story article:last-of-type {
    border-bottom: 1px solid #c8c8c8;
}
.page__story .page__title {
    border-bottom: none;
    padding-bottom: 60px;
}
.story__main-visual {
    position: relative;
    height: 0;
    padding-bottom: 56.25%;
    margin-bottom: 100px;
    background: url(../img/story/main_visual.jpg) no-repeat center;
    background-size: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.story__main-visual iframe{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.loaded .story__main-visual {
    opacity: 1;
}
.story__main-copy {
    position: absolute;
    right: 14%;
    bottom: -40px;
    opacity: 0;
    transition: opacity 1s 2s ease-in-out;
}
.loaded .story__main-copy {
    opacity: 1;
}
.story__main-copy img {
    width: 74px;
    height: auto;
}
/* .story__main-visual {
    position: relative;
    height: 700px;
    margin-bottom: 100px;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
}
.loaded .story__main-visual {
    opacity: 1;
}
.story__main-visual .swiper-wrapper {
    overflow: hidden;
}
.story__main-visual .swiper-slide .slide-inner {
    background-size: cover;
    background-position: center;
    height: 100%;
    width: 100%;
}
.story__main-visual.swiper-container-fade .swiper-slide.swiper-slide-prev .slide-inner,
.story__main-visual.swiper-container-fade .swiper-slide.swiper-slide-duplicate-active .slide-inner,
.story__main-visual.swiper-container-fade .swiper-slide.swiper-slide-active .slide-inner {
    animation: slideExpand 6s linear forwards;
}
@keyframes slideExpand {
    from {
        transform: scale(1);
    }
    to {
        transform: scale(1.1);
    }
} */
.story__lead {
    width: 70%;
    max-width: 1000px;
    margin: 8rem auto 22rem auto;
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-size: 18px;
    letter-spacing: 2px;
    line-height: 2.2;
    position: relative;
    padding-right: 16rem;
}
.story__lead-copy {
    position: absolute;
    right: 0;
    top: -12rem;
    z-index: 2;
}
.story__lead-copy img {
    width: 74px;
    height: auto;
}
.page__story .section-title {
    position: relative;
    text-align: center;
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    font-weight: normal;
    font-size: 25px;
    line-height: 1.5;
    letter-spacing: 1px;
    padding-bottom: 30px;
    margin-bottom: 70px;
}
.page__story .section-title::before {
    content: '';
    display: block;
    width: 180px;
    height: 1px;
    border-bottom: 1px solid #45403f;
    position: absolute;
    bottom: 0;
    left: 50%;
    right: 50%;
    transform: translate(-50%, -50%);
}
.story__flex-wrap {
    display: flex;
}
/* section1 */
.story__section1 {
    background: #fafafa url(../img/story/img_2.jpg) no-repeat left center;
    background-size: cover;
    color: #fff;
}
.story__section1__wrap {
    width: 90%;
    max-width: 1000px;
    padding: 28px 0;
    margin: 0 auto;
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
}
.story__section1__image,
.story__section1__image img {
    width: 220px;
    height: auto;
    margin-right: 10%;
}
.story__section1__heading {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
}
.story__section1__heading .position {
    margin-bottom: 16px;
    line-height: 1;
    letter-spacing: 1px;
}
.story__section1__heading .name {
    display: flex;
    align-items: baseline;
    margin-bottom: 24px;
    line-height: 1;
}
.story__section1__heading .name .jp {
    font-size: 28px;
    margin-right: 15px;
    letter-spacing: 1px;
}
.story__section1__heading .name .en {
    font-size: 11px;
    letter-spacing: 1px;
}
.story__section1__content {
    padding-right: 7%;
}
.story__section1__content p {
    letter-spacing: .05em;
    text-align: justify;
    margin-bottom: 12px;
}
/* section2 */
.story__section3,
.story__section2 {
    margin-top: 160px;
    margin-bottom: 160px;
}
.story__section3 .story__flex-wrap,
.story__section2 .story__flex-content {
    width: 90%;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.story__section3 .story__flex-content p,
.story__section2 .story__flex-content p {
    text-align: justify;
    text-justify: inter-ideograph;
    margin-bottom: 12px;
}
.story__section2 .story__flex-image {
    width: 100vw;
    height: 540px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    margin-top: 7rem
}
/* section3 */
.story__section3 .story__flex-content {
    flex: 1;
    margin-right: 10%;
}
.story__section3 .story__flex-image {
    width: 420px;
    text-align: center;
}
.story__section3 .story__flex-image img {
    width: 100%;
    height: auto;
}
/* section4 */
.story__section4 {
    background-color: #fafafa;
    padding: 140px 0;
}
.page__story .story__section4 .section-title {
    margin-bottom: 40px;
}
.story__section4__lead {
    text-align: center;
    letter-spacing: .05em;
    margin-bottom: 80px;
}
.story__section4__navi {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    padding-bottom: 140px;
}
.story__section4__navi::before {
    content: '';
    display: block;
    position: absolute;
    bottom: 0;
    width: 1px;
    height: 70px;
    border-left: 1px solid #45403f;
}
.story__section4__navi a {
    display: block;
    width: 110px;
    margin: 0 8px;
}
.story__section4__navi a:first-of-type {
    transition-delay: 0;
}
.story__section4__navi a:nth-of-type(2) {
    transition-delay: .3s;
}
.story__section4__navi a:nth-of-type(3) {
    transition-delay: .6s;
}
.story__section4__navi a:nth-of-type(4) {
    transition-delay: .9s;
}
.story__section4__navi a:nth-of-type(5) {
    transition-delay: 1.2s;
}
.story__section4__navi a img {
    width: 100%;
    height: auto;
}
/* こだわりブロック（共通） */
.commit-block {
    display: flex;
    margin: 0 auto;
    padding-top: 140px;
    padding-bottom: 140px;
    width: 100%;
    max-width: 1280px;
}
.commit-content__heading {
    font-family: 'Times New Roman', '游明朝', YuMincho, 'Hiragino Mincho ProN', 'Noto Serif JP', serif;
    line-height: 1.3;
    margin-bottom: 32px;
}
.commit-content__heading h2 {
    font-weight: normal;
    font-size: 25px;
    line-height: 1.5;
}
.commit-content__heading h3 {
    font-weight: normal;
    font-size: 18px;
    margin-top: 6px;
}
.commit-visual {
    width: 40%;
    max-width: 470px;
    position: relative;
}
.commit-content {
    flex: 1;
    position: relative;
    z-index: 1;
}
.commit-content .fadein {
    transition-delay: .6s;
}
.commit-visual {
    background-size: cover;
    min-height: 400px;
}
.commit-visual img {
    width: 100%;
    height: auto;
}
.commit-visual span {
    display: block;
    position: absolute;
}
.commit-content::before {
    content: '';
    display: block;
    position: absolute;
    z-index: -1;
}
.commit-content p {
    text-align: justify;
    text-justify: inter-ideograph;
}
.commit-content p:not(:last-of-type) {
    margin-bottom: 12px;
}
/* こだわり（水） */
#water {
    padding-top: 200px;
    align-items: end;
}
#water .commit-visual {
    margin-right: 6%;
}
#water .commit-visual span {
    width: 104px;
    top: -50px;
    right: 20px;
}
#water .commit-content {
    margin-right: 10%;
    position: relative;
}
#water .commit-content::before {
    width: 120px;
    height: 120px;
    background: url(../img/story/commit_icon_water.svg) no-repeat center;
    background-size: contain;
    right: -10%;
    bottom: -50px;
}
/* こだわり（熟成機） */
#aging-machine.commit-block {
    flex-direction: row-reverse;
    align-items: center;
}
#aging-machine .commit-content {
    margin-right: 10%;
    margin-left: 10%;
}
#aging-machine .commit-content::before {
    width: 160px;
    height: 110px;
    background: url(../img/story/commit_icon_aging_machine.svg) no-repeat center;
    background-size: contain;
    right: -8%;
    bottom: -100px;
}
#aging-machine .commit-visual span {
    width: 68px;
    top: -50px;
    left: -50px;
}
/* こだわり（貯蔵法） */
#storage-method {
    align-items: end;
}
#storage-method .commit-visual {
    width: 33%;
    margin-right: 12%;
}
#storage-method .commit-visual span {
    width: 68px;
    top: -15px;
    right: -52px;
}
#storage-method .commit-content {
    margin-right: 10%;
    margin-bottom: 3rem;
    position: relative;
}
#storage-method .commit-content::before {
    content: '';
    display: block;
    position: absolute;
    width: 90px;
    height: 168px;
    background: url(../img/story/commit_icon_storage_method.svg) no-repeat center;
    background-size: contain;
    right: -50px;
    top: -134px;
}
/* こだわり（蔵） */
#warehouse {
    flex-direction: row-reverse;
    align-items: center;
}
#warehouse .commit-visual {
    width: 30%;
}
#warehouse .commit-visual span {
    width: 102px;
    top: -42px;
    left: -92px;
}
#warehouse .commit-content {
    margin-right: 10%;
    margin-left: 10%;
}
#warehouse .commit-content::before {
    content: '';
    display: block;
    position: absolute;
    width: 120px;
    height: 140px;
    background: url(../img/story/commit_icon_warehouse.svg) no-repeat center;
    background-size: contain;
    right: -100px;
    bottom: -80px;
}
/* こだわり（開発体制） */
#organization {
    align-items: center;
    padding-bottom: 100px;
}
#organization .commit-visual {
    margin-right: 10%;
    max-width: 400px;
    min-height: 530px;
}
#organization .commit-visual span {
    width: 58px;
    top: -20px;
    right: -40px;
}
#organization .commit-content {
    margin-right: 10%;
    position: relative;
}
#organization .commit-content::before {
    width: 80px;
    height: 130px;
    background: url(../img/story/commit_icon_organization.svg) no-repeat center;
    background-size: contain;
    right: -90px;
    bottom: -80px;
}
.fadein {
    transition: opacity 1.4s .1s;
    /* transition: transform 1s cubic-bezier(.4, 0, .2, 1) .1s, opacity 1s .1s; */
    /* transform: translateY(20px); */
    opacity: 0;
}
.fadein.inview {
    /* transform: translateY(0); */
    opacity: 1;
}
.fadein.delay-1 {
    transition-delay: .6s;
}

/* English
---------------------------------------------------------- */
.top-page-en .header__logo {
    display: none;
}
.top-page-en__logo {
    width: 294px;
    padding: 45px 0 60px 0;
    text-align: center;
    margin: 0 auto;
}
.top-page-en__logo img {
    display: block;
    margin-bottom: 8px;
}
.article-en {
    padding: 4rem 0;
    line-height: 1.8;
}
.article-en__title {
    font-family: 'EB Garamond', serif;
    font-size: 2.6rem;
    line-height: 1.4;
    text-align: center;
    font-weight: normal;
    margin: 0 0 3rem 0;
}
.section-en {

}
.article-en > section {
    margin-bottom: 8rem;
}
.article-en > section:last-of-type {
    margin-bottom: 0;
}
.section-en__title {
    font-size: 2rem;
    text-align: center;
    font-weight: normal;
    padding: 0 0 2rem 0;
    margin: 0 0 4rem 0;
    border-bottom: 1px solid #c8c8c8;
}
.section-en__title .t-small {
    font-size: 1.3rem;
}
.section-en__flex-content {
    display: flex;
    align-items: start;
    margin: 0 4rem 4rem 4rem;
}
.section-en__flex-content:last-of-type {
    margin-bottom: 0;
}
.section-en__full-width-content {
    width: 100%;
    margin: 0 0 4rem 0;
}
.section-en__flex-content figure {
    width: 350px;
    margin: 0 3rem 0 0;
}
.section-en__full-width-content figure {
    width: 100%;
    margin: 0 0 3rem 0;
}
.section-en__full-width-content > div {
    margin: 0 4rem;
}
.section-en__full-width-content figure img,
.section-en__flex-content figure img {
    width: 100%;
    height: auto;
}
.section-en__2column-content {
    display: flex;
    flex-wrap: wrap;
    margin: 0 4rem;
}
.section-en__2column-box {
    width: 47%;
}
.section-en__2column-box.left {
    margin-right: 6%;
}
.section-en__2column-box > div {
    flex: 1;
}
.article-en h3 {
    font-size: 1.6rem;
}
.section-en__2column-box > h3 {
    font-size: 2rem;
    text-align: center;
    font-weight: normal;
    padding: 0 0 2rem 0;
    margin: 0 0 3rem 0;
    border-bottom: 1px solid #c8c8c8;
}
.section-en__2column-box figure {
    margin: 0 0 3rem 0;
}
.section-en__2column-box figure img {
    width: 100%;
    height: auto;
}
.section-en__2column-box__content p,
.section-en__full-width-content p,
.section-en__flex-content p {
    margin: 0 0 2rem 0;
}

.wp-pagenavi {
    text-align: center;
    padding: 2rem 0;
}
.wp-pagenavi a,
.wp-pagenavi span {
    border: none;
    margin: 0 4px;
}
.wp-pagenavi a:hover,
.wp-pagenavi span.current {
    border: none;
}

/* リンクページ追加
---------------------------------------------------------- */

.link-banner {
    display: flex;
    flex-wrap: wrap;
    padding: 40px 0 20px 0;
}
.link-banner a {
    display: block;
    width: calc(32.5% - 5px);
    margin-right: 2%;
    margin-bottom: 20px;
}
.link-banner a:nth-of-type(3n) {
    margin-right: 0;
}
.link-banner a img {
    width: 100%;
    height: auto;
}


.link_list {
display: flex;
flex-wrap: wrap;
padding: 20px 0;
border-top: 1px solid #c8c8c8;
}
.link_list a {
color:#000;
text-decoration:none;
}
.link_cate {
width: 25%;
padding-bottom:30px;
}
.list-left:before{
content: "- ";
}
