@charset "utf-8";
/* CSS Document */

/* ---------------------------------
リセット 
----------------------------------*/

a {
    color: #333;
    text-decoration: none;
    display: inline-block;
    transition: transform .3s;
}

a:hover {
    color: #a38772;
    text-decoration: none;
    opacity: .8;
}

li {
    list-style: none;
}

h1 {
    margin-block-start: 0;
    margin-block-end: 0;
}

p {
    margin-block-start: 0;
    margin-block-end: 0;
}

dl, ol, ul {
    margin-bottom: 0;
}

dd {
    margin-bottom: 0;
}

ul {
    margin-block-start: 0;
    margin-block-end: 0;
    padding-inline-start: 0;
}

/* ---------------------------------
スタイル共通 
----------------------------------*/

body {
	font-family: YuGothic, "Yu Gothic Medium", "Yu Gothic", Meiryo, sans-serif;
    margin: 0;
}

p {
	color: #333;
	line-height: 1.6;
}

.text__link_underline {
    text-decoration: underline;
}

@media (min-width: 751px) {
    a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
    }
}

/* ---------------------------------
レイアウト共通 
----------------------------------*/

.inner {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 44px 0 36px;
}

.d-flex {
    display: flex;
}

@media screen and (max-width: 767px) {
    .inner {
        padding: 0 20px;
    }
}
/* ---------------------------------
パーツ共通 
----------------------------------*/

/* heading */
.page-title {
    background: url("../images/h1-bg.jpg") no-repeat center/cover;
    height: 205px;
    display: flex;
    align-items: center;
    margin: 60px auto 84px 20vw;
}

.h1 {
    margin-left: -60px;
    display: inline-block;
    margin-right: 63px;
}

.h1__title {
    font-family: futura-pt, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 45px;
    margin-bottom: 13px;
    letter-spacing: 0.1em;
    display: block;
}

.h1__sub-title {
    color: #302824;
    display: block;
    font-size: 20px;
    font-weight: 700;
}


.h2 {
    font-size: 30px;
    line-height: 2;
    font-weight: 700;
    margin-bottom: 30px;
}

.h2_serif {
    font-size: 24px;
    line-height: 1.6;
    font-weight: 700;
    font-family: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", serif;
    text-align: center;
}

@media screen and (max-width: 1060px) {
    .page-title {
        height: 22vw;
        margin: 60px auto 84px 27vw;
    }
    .page-title img {
        width: 14vw;
    }
    .h1__title {
        font-size: 4.2vw;
    }
    
    .h1__sub-title {
        font-size: 2vw;
    }
    
}
@media screen and (max-width: 767px) {
    .page-title {
        height: 33vw;
        margin: 7vw auto 10vw 16vw;
    }
    
    .h1 {
        margin-left: -11vw;
        margin-right: 4vw;
    }
    .h1__title {
        font-size: 7vw;
        margin-bottom: 1.9vw;
    }
    .h1__sub-title {
        font-size: 3.4vw;
    }
    .h2 {
        font-size: 4.8vw;
        margin-bottom: 6.7vw;
    }
    .h2_serif {
        font-size: 4.8vw;
    }
}

/* text */

.text_normal {
    font-size: 16px;
    line-height: 2;
}

.text_body {
    font-size: 16px;
    line-height: 2.5;
}

@media screen and (max-width: 767px) {
    .text_body {
        line-height: 2;
    }
}

/* section */

.section {
    margin-bottom: 72px;
}

/* ---------------------------------
icon
----------------------------------*/
.link_blank-icon

/* ---------------------------------
btn
----------------------------------*/
/* read more */
.readmore {
    text-align: right;
}
.more__link {
    display: flex;
    justify-content: flex-end;
}

.more__link::after {
    content: url("../../common/images/more-arrow.svg");
    padding-left: 30px;
    padding-bottom: 7px;
    transition: all .3s;
}

.more__link:hover::after {
    transform: translateX(15px);
}

/* cta(contact) */
.btn__cta a {
    display: inline-block;
    padding: 4px 14px;
    font-size: 12px;
    color: #fff;
    font-family: futura-pt, sans-serif;
    background-color: #68625F;
}

@media screen and (max-width: 767px) {
    .btn__cta a {
        font-size: 2.9vw;
    }
}

/* ---------------------------------
box
----------------------------------*/

.line__box {
    border: 3px solid #DECB7A;
    padding: 22px 20px 21px;
}

.contact__detail {
    text-align: center;
    letter-spacing: .1em;
}

.contact__detail span {
    display: block;
}

.contact__tel {
    font-family: futura-pt, sans-serif;
    font-size: 26px;
    font-weight: 500;
    letter-spacing: .1em;
}

.contact__link {
    display: inline-block;
    font-size: 20px;
    font-weight: 700;
    margin-top: 24px;
    margin-bottom: 10px;
    position: relative;
}


.contact__link::before {
    position: absolute;
    bottom: -4px;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background: #685546;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform .3s;
}

.contact__link:hover::before {
    transform: scale(1, 1);
}

.contact__link::after {
    content: url("../../common/images/arrow-right.svg");
    display: inline-block;
    transform: translateX(10px);
    transition: transform .3s;
}

.contact__link:hover::after {
    transform: translateX(15px);
}

@media screen and (max-width: 767px) {
    .contact__col {
        margin-bottom: 6vw;
    }
    .contact__col:last-of-type {
        margin-bottom: 0;
    }
}

/*--------------------------------------------------------------
パンクズリスト
--------------------------------------------------------------*/
.crumbs {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 40px;
    font-size: 15px;
}

.strength .crumbs, .oem-odm .crumbs, .cosmetics .crumbs, .health .crumbs, .company .crumbs {
    position: absolute;
    top: 500px;
}

@media only screen and (max-width: 767px) {
    .crumbs {
        display: none;
    }
}
.crumbs ol {
    display: flex;
    max-width: 1000px;
    padding: 0 30px;
    box-sizing: content-box;
    margin: auto;
}

.crumbs ol li:first-child {
    position: relative;
    padding-left: 30px;
}

.crumbs ol li:first-child::before {
    position: absolute;
    left: 0;
    top: 48%;
    transform: translate(0, -50%);
    font-family: "Font Awesome 5 Pro";
    content: "\e00d";
    margin-right: 3px;
    transition: all 0.3s ease;
    font-weight: 300;
}

.crumbs ol li:first-child:hover:first-child::before {
    opacity: 0.7;
}

.crumbs ol li:nth-of-type(n + 2) {
    margin-left: 10px;
}

.crumbs ol li:nth-of-type(n + 2)::before {
    content: ">";
    margin-right: 10px;
}

.crumbs ol li:nth-of-type(n + 2)::before {
    content: ">";
    margin-right: 10px;
    color: #bf9e13;
    font-weight: 700;
}

.crumbs ol li a {
    color: #555555;
}

/* ---------------------------------
Map 
----------------------------------*/
.map {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.map iframe {
position: absolute;
left: 0;
top: 0;
height: 100%;
width: 100%;
}

.map__tag {
    position: relative;
}

.map__tag::after {
    content: "";
    background: #686767 url("../images/google-map.svg") no-repeat center/70%;
    display: inline-block;
    width: 220px;
    height: 70px;
    color: #fff;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 2;
}

@media screen and (max-width: 767px) {
    .map__tag::after {
        background: #686767 url("../images/google-map.svg") no-repeat center/80%;
        width: 29vw;
        height: 8vw;
    }
}
/* ---------------------------------
ヘッダー 
----------------------------------*/
/* ハンバーガーメニュー ボタン */
.t-header {
    height: 100px;
    width: 100%;
    border-bottom: 8px solid #D5BE8B;
}

.t-header__inner {
    padding: 0 80px 0 0;
    margin: 0 auto;
    max-width: 1080px;
}

.t-header__body {
    justify-content: left;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding-top: 10px;
}

.t-header__nav-btn {
    align-self: start;
    cursor: pointer;
    position: relative;
    z-index: 6;
    padding: 35px 0 56px;
    display: none;
}

.t-header__logo a {
    display: inline-block;
}

.burger + .burger-text {
    margin-left: 10px;
}

.burger {
    height: 2.2em;
    width: 2.2em;
}

.burger .burger-lines, .burger .burger-lines:after, .burger .burger-lines:before {
    background-color: #302824;
    height: 0.2em;
}

.burger.burger-rotate .burger-lines:after, .burger.burger-rotate .burger-lines:before {
    width: 100%;
}

.burger .burger-lines:before {
    left: 0;
    top: 0.5em;
}

.burger .burger-lines:after {
    left: 0;
    top: -0.5em;
}

.burger-text {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
}

@media screen and (max-width: 1060px) {
    .t-header__inner {
        padding: 0 30px;
    }

    .t-header__body {
        padding-top: 16px;
    }
    

    .t-header__logo-image {
        width: 220px;
    }
    
    .t-header__logo-image img {
        width: 100%;
    }
}
@media screen and (max-width: 840px) {
    .t-header {
        height: 70px;
    }
    
    .t-header__inner {
        padding: 0 15px;
    }
    
    .t-header__body {
        padding-top: 5px;
    }
    
    .t-header__logo-image {
        width: 200px;
    }
    

    .t-header__nav-btn {
        padding: 7px 0 0;
        display: flex;
        padding: 7px 5px 0 0;
        display: flex;
        text-transform: uppercase;
    }

    .burger.burger-rotate.open .burger-lines:before, .burger.burger-rotate.open .burger-lines:after {
        left: 0;
        top: 0px;
    }
}

/* ハンバーガーメニュー ドロワー */
.nav__menu {
    font-family: futura-pt, sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 20px;
    letter-spacing: .2em;
    text-transform: uppercase;
    z-index: 6;
    width: 50%;
    display: flex;
}

@-webkit-keyframes menur {
    0% {
        right: 0;
        opacity: 0;
    }
    30% {
        right: 0;
        opacity: 0;
    }
    100% {
        right: 5%;
        opacity: 1;
    }
}

@keyframes menur {
    0% {
        right: 0;
        opacity: 0;
    }
    30% {
        right: 0;
        opacity: 0;
    }
    100% {
        right: 5%;
        opacity: 1;
    }
}

.nav__menu-item {
    padding: 10px 20px;
}

.nav__bg {
    position: fixed;
    width: 0;
    height: 0;
    background-color: #E9E0D9;
    transition: all .6s;
    border-radius: 50%;
    z-index: 5;
    top: 33px;
    right: 5em;
    display: none;
}

.nav__bg.active {
    top: -750px;
    left: -750px;
    width: 1500px;
    height: 1500px;
}

.btn__cta {
    display: none;
}

html, body {
    height: auto;
    overflow: visible;
}
html.active, body.active {
    height: 100%;
    overflow: hidden;
}

@media screen and (max-width: 840px) {
    .nav__menu {
        position: absolute;
        top: 147px;
        right: 20px;
        display: none;
    }
    .nav__menu.active {
        display: block;
        -webkit-animation: menur ease .8s forwards;
        animation: menur ease .8s forwards;
    }

    .nav__menu-item {
        margin-left: auto;
    }
    .nav__bg {
        display: block;
    }
    .nav__bg.active {
        top: -100vw;
        right: -100vw;
        width: 300vw;
        height: 300vw;
        left: auto;
    }
    .btn__cta {
        display: block;
    }
}


/* ドロワーマスク */
.nav__mask  {
    display: none;
    transition: all .5s;
}

.nav__mask.active  {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000 ;
    opacity: .8;
    z-index: 2;
    cursor: pointer;
}

/* ---------------------------------
フッター 
----------------------------------*/
.footer {
    padding: 60px 0 80px;
    border-top: 1px solid #E8DBAD;
}
.inner_footer {
    position: relative;
}
.footer__logo {
    position: absolute;
    right: 0;
    top: 0;
}
.footer__logo_link {
    display: block;
}

.pagetop {
    position: absolute;
    left: -42px;
    top: 0;
}

.share {
    margin-bottom: 48px;
    margin-top: 42px;
}
.share__title, .share__link {
    display: inline-block;
}

.share__link {
    margin-left: 25px;
}
.share__link img {
    transition: all .3s;
}
.share__link:hover img {
    transform: scale(1.2);
}
.fmenu {
    margin-bottom: 15px;
}
.fmenu__list {
    margin-bottom: 15px;
}
.fmenu__list-item {
    display: inline-block;
    margin-left: 1.5em;
}
.fmenu__list-item:first-of-type {
    margin-left: 0;
}

.fmenu__list-item_block {
    display: block;
    margin-left: 0;
}

.fmenu__link {
    line-height: 2;
    letter-spacing: 0.1em;
}

.link_blank-icon::after {
    display: inline-block;
    content: "";
    background: url("../images/link-blank.svg") no-repeat center/contain;
    width: 14px;
    height: 14px;
    padding-right: 20px;
}

.copyright {
    font-family: futura-pt, sans-serif;
    font-size: 14px;

}

@media screen and (max-width: 767px) {
    .share {
        margin-top: 0;
        margin-bottom: 7.2vw;
    }

    .fmenu {
        order: 3;
    }
    
    .faddress {
        order: 2;
        margin-bottom: 16.9vw;
    }
    
    .fmenu__list {
        margin-bottom: 8.69vw;
    }

    .fmenu__list-item {
        display: block;
        margin-left: 0;
    }

    .footer__logo {
        right: 15px;
    }

    .copyright {
        width: 74%;
    }
    

}