@charset "UTF-8";
/* ----------------------------------------
 * 共通
 * ---------------------------------------- */
main {
    width: 100%;
	overflow-x: hidden;
}
body {
    font-family: 'Noto Serif JP', serif;
    font-display: swap;
    color:#333333;
    width: 100%;
    height: 100%;
}
body.noscroll {
    overflow: hidden;
}
a {
    cursor: pointer !important;
    text-decoration: none;
    color: #333333;
}
a:hover {
    color: #727070;
    transition: .3s;
}
li {
    list-style: none;
}
.sp-only {
    display: none;
}
@media screen and (max-width:767px){
    .sp-only {
        display: block;
    }
}
.pc-only {
    display: inline-block;
}
@media screen and (max-width:767px){
    .pc-only {
        display: none;
    }
}
/* ----------------------------------------
 * Header
 * ---------------------------------------- */
/*--------- header-nav ---------*/
.header-nav {
    display: flex;
    width: 100%;
    height: 70px;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    position: fixed;
    z-index: 10;
    transition: 0.5s;
    font-weight: 600;
}
.header-nav-logo {
    margin-left: 100px;
    z-index: 999;
}
@media screen and (max-width:1279px){
	.header-nav-logo {margin-left: 10px;}
}
@media screen and (max-width:575px){
    .header-nav-logo {width: 200px;}
    .header-nav-logo img {width: 100%;height: auto;}
}
.header-nav-logo h1 {
    font-size: 1em;
}
.header-nav-list {
    display: flex;
    margin-right: 100px;
}
.header-nav-list-item {
    padding-right: 25px;
}
@media screen and (max-width:1279px){
	.header-nav-list {display:none;}
}
.scroll-nav {
    background-color: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}
/*--------- Burger-btn ---------*/
.burger-btn{
    display:none;
}
@media screen and (max-width:1279px){
    .burger-btn {
        display: block;
        width: 39px;
        height: 39px;
        position: fixed;
        border: none;
        background: none;
        top:10px;
        right:10px;
        z-index: 14;
    }
    .burger-btn-bar{
        width: 26px;
        height: 2px;
        display: block;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        background-color: #646464;
    }
    .bar_top{
        top: 10px;
    }
    .bar_mid{
        top: 50%;
        transform: translate(-50%,-50%);
    }
    .bar_bottom{
        bottom: 10px;
    }
    .burger-btn.close .bar_top{
        transform: translate(-50%,10px) rotate(45deg);
        transition: transform .3s;
    }
    .burger-btn.close .bar_mid{
        opacity: 0;
        transition: opacity .3s;
    }
    .burger-btn.close .bar_bottom{
        transform: translate(-50%,-8px) rotate(-45deg);
        transition: transform .3s;
    }
}
/*--------- Sp-nav ---------*/
.sp-nav ,.sp-nav-list{
    display: none;
}
@media screen and (max-width:1279px){
    .sp-nav{
        width: 100vw;
        height: 100vh;
        position: fixed;
        top: 0;
        left: 0;
        background-color:#ffffffe6;
        z-index: 13;
    }
    .sp-nav-list{
        display: block;
        width:300px;
        margin:0 auto;
        padding:0;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
        text-align: center;
    }
    .sp-nav-list-item {
        border-bottom:1px solid #333333;
        padding:20px;
    }
    .sp-nav-list-item a {
        text-decoration: none;
        display: block;
        font-weight: 600;
        font-size: 18px;
    }
    .sp-nav-list-item a:hover {
        opacity:0.7;
    }
}

/* ----------------------------------------
 * MV
 * ---------------------------------------- */
.mv {
    position: relative;
    width: 100%;
}
.mv-bg-pc {
    width: 100%;
    height: auto;
}
@media screen and (max-width:767px){
    .mv-bg-pc {
        display: none;
    }
}
.mv-bg-pc img {
    width: 100%;
    height: auto;
}
.mv-bg-sp {
    display: none;
}
@media screen and (max-width:767px){
    .mv-bg-sp {
        display: block;
        width: 100%;
        height: auto;
    }
}
.mv-bg-sp img {
    width: 100%;
    height: auto;
}
.mv-copy {
    width:90px;
    height: auto;
    position: absolute;
    top: 60%;
    left: 35%;
    transform: translateY(-60%) translateX(-35%);
    -webkit-transform: translateY(-60%) translateX(-35%);
}
@media screen and (min-width:1280px){
    .mv-copy {
        width:110px;
        top: 60%;
        left: 35%;
        transform: translateY(-60%) translateX(-35%);
        -webkit-transform: translateY(-60%) translateX(-35%);
    }
}
@media screen and (max-width:767px){
    .mv-copy {
        width: 100px;
        top: 45%;
        left: 50%;
        transform: translateY(-45%) translateX(-50%);
        -webkit-transform: translateY(-45%) translateX(-50%);
    }
}
@media screen and (max-width:575px){
    .mv-copy {
        width: 75px;
        top: 45%;
        left: 52%;
        transform: translateY(-45%) translateX(-52%);
        -webkit-transform: translateY(-45%) translateX(-52%);
    }
}
.mv-copy img {
    width: 100%;
    height: auto;
}
/* ----------------------------------------
 * Top-Bnr
 * ---------------------------------------- */
.top-bnr-flex {
    max-width: 1000px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    padding:100px 10px 0;
}
@media screen and (max-width:767px){
    .top-bnr-flex {
        justify-content: center;
    }
}
.top-bnr-flex-content {
    width: 48%;
    height: 240px;
    text-align: center;
    transition: 0.5s;
}
@media screen and (max-width:767px){
    .top-bnr-flex-content {
        width: 90%;
        height: auto;
        margin-bottom: 30px;
    }
}
.top-bnr-flex-content:hover {
    opacity: 0.7;
}
.top-bnr-flex-content a {
    font-size: 20px;
    font-weight: 700;
    line-height: 2.5;
    letter-spacing: 0.1em;
}
.top-bnr-flex-content img {
    width:100%;
    height: auto;
}
.top-bnr-flex-content div {
    height: 56px;
    margin: 0;
    box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
    position: relative;
}
.top-bnr-flex-content div p {
    width: 100%;
    height: 100%;
    margin: 0;
}
.top-bnr-flex-content div img {
    width: 25.69px;
    height: 7.94px;
    position: absolute;
    right: 25px;
    top: 25px;
}
.left div{
    background-color: #F5F1E8;
}
.right div {
    background-color: #E5E8EB;
}
/* ----------------------------------------
 * Mission
 * ---------------------------------------- */
#mission {
    max-width: 800px;
    overflow: hidden;
    padding: 50px 0;
    text-align: center;
    background-color: #F2F2F2;
    margin: 100px auto;
    position: relative;
}
.mission-bg {
    position: absolute;
    width: 70%;
    bottom: 0;
    left: 120px;
}
@media screen and (max-width:767px){
    .mission-bg {
        width: 100%;
        left: 0;
    }
}
.mission-bg img {
    width: 100%;
    height: auto;
}
.mission-ttl {
    font-size: 20px;
    margin-bottom: 40px;
    font-weight:600;
}
.mission-content {
    width: 577px;
    margin: 0 auto;
    text-align: left;
    position: relative;
}
@media screen and (max-width:767px){
    .mission-content {
        width: 90%;
    }
}
.mission-content-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 2;
}
.mission-content-name {
    font-size: 14px;
    font-weight: 500;
    text-align: right;
    margin-top: 40px;
}
/* ----------------------------------------
 * Photos
 * ---------------------------------------- */
.photos-list{
    width: 100%;
    display: flex;
    justify-content: left;
    padding: 0;
}
.photos-list-item {
    width: 16.7%;
}
@media screen and (max-width:767px){
    .photos-list-item {
        width: 36%;
    }
}
.photos-list-item img {
    width: 100%;
    height: auto;
}
/* ----------------------------------------
 * Business
 * ---------------------------------------- */
#business {
    width: 100%;
    padding: 132px 0 0;
}
@media screen and (max-width:767px){
    #business {
        padding: 100px 0 0;
    }
}
.business-ttl {
    border-top: 2px solid #707070;
    border-bottom: 2px solid #707070;
    width: 160px;
    margin: 0 auto 50px;
    line-height: 2;
    letter-spacing: 0.2em;
    text-align: center;
    font-weight: 600;
    font-size: 26px;
}
/*--------- 観光事業部 ---------*/
#business-tourism {
    position: relative;
}
.business-tourism-bg {
    width: 800px;
    height: 600px;
    background-color: #F5F1E8;
    position: absolute;
    right: 0;
}
@media screen and (min-width: 1280px){
    .business-tourism-bg {
        width: 50%;
    }
}
@media screen and (max-width:767px){
    .business-tourism-bg {
        width: 100%;
        height: 100%;
        left: 0;
        margin: 0 auto;
    }
}
.business-tourism-bg img {
    width: 100%;
    height: auto;
    position: absolute;
    bottom: 0;
    left: 0;
}
@media screen and (min-width: 1280px){
    .business-tourism-bg img {
        width: 800px;
    }
}
.business-tourism-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 75px 0;
    margin: 0 auto;
    position: relative;
}
@media screen and (max-width:767px){
    .business-tourism-content {
        width: 95%;
        padding: 60px 0px;
        justify-content: center;
    }
}

.business-tourism-content-img {
    width: 600px;
    height: auto;
    position: absolute;
    top: 75px;
    left: 0;
}
@media screen and (max-width:767px){
    .business-tourism-content-img {
        width: 100%;
        top: 50px;
    }
}

.business-tourism-content-text {
    width: 450px;
    line-height: 2;
    text-align: center;
    box-sizing: border-box;
    padding: 37px;
    background-color: #ffffff;
    margin-top: 100px;
    z-index: 2;
}
@media screen and (max-width:767px){
    .business-tourism-content-text {
        width: 95%;
        margin-top: 65%;
    }
}
@media only screen and (max-width: 575px){
    .business-tourism-content-text {
        padding:30px 10px;
    }
}
.business-tourism-content-text-ttl {
    font-size: 20px;
    font-weight: 600;
    border-bottom: 2px solid #707070;
    padding-bottom: 15px;
}
.business-tourism-content-text-p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

/*--------- ネットショッピング ---------*/
.online-shop {
    text-align: center;
    padding-top: 150px;
    max-width: 1000px;
    margin: 0 auto;
}
@media screen and (max-width:767px){
    .online-shop {
        padding-top: 78px;
    }
}
.online-shop-ttl {
    font-size: 26px;
    font-weight: 600;
}
.online-shop-list {
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: end;
    flex-wrap: wrap;
}
.online-shop-list-item {
    margin: 33px 20px 0;
    width: 400px;
}
.online-shop-list-item p {
    font-size: 14px;
    font-weight: 500;
}
.online-shop-list-item img {
    width: 100%;
    height: auto;
    box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
    transition: 0.5s;
}
.online-shop-list-item img:hover {
    opacity: 0.7;
}
@media screen and (max-width:767px){
    .online-shop-list-item {
        width: 90%;
        margin-left: auto;
        margin-right: auto;
    }
    .online-shop-list-item img {
        width: 100%;
        height: auto;
    }
}

/* 2023.06.06追加 */
@media screen and (min-width:767px){
  .wd550{
    width: 550px;
  }
}






/*--------- 直営店舗 ---------*/
.real-shop {
    text-align: center;
    padding-top: 100px;
    max-width: 800px;
    margin: 0 auto;
}
@media screen and (max-width:767px){
    .real-shop {
        padding-top: 78px;
    }
}
.real-shop-ttl {
    margin-bottom: 50px;
    font-weight: 600;
    font-size: 26px;
}
.real-shop-list {
    display: flex;
    align-items: end;
    justify-content: space-around;
    flex-wrap: wrap;
    text-align: left;
    padding: 0;
}
@media screen and (max-width:767px){
    .real-shop-list {
        width: 90%;
        justify-content: center;
        margin: 0 auto;
    }
}
.real-shop-list-item {
    width: 320px;
    margin: 0 20px 50px;
}
.real-shop-list-item img {
    width: 100%;
    height: auto;
}
.real-shop-list-item h3 {
    font-weight: 700;
    font-size: 14px;
}
.real-shop-list-item p {
    font-size: 12px;
    font-weight: 500;
}

/*--------- 貿易事業部 ---------*/
#business-trade {
    position: relative;
    padding-top: 130px;
}
@media screen and (max-width:767px){
    #business-trade {
        padding-top: 30px;
    }
}
.business-trade-bg {
    width: 800px;
    height: 600px;
    background-color: #E5E8EB;
    position: absolute;
    left: 0;
}
@media screen and (min-width: 1280px){
    .business-trade-bg {
        width: 60%;
    }
}
@media screen and (max-width:767px){
    .business-trade-bg {
        width: 100%;
        height: 105%;
        margin: 0 auto;
    }
}
.business-trade-bg img {
    width: 85%;
    height: auto;
    position: absolute;
    bottom: 0;
    right: 0;
}
@media screen and (min-width: 1280px){
    .business-trade-bg img {
        width: 692px;
    }
}
@media screen and (max-width:1279px) and (min-width: 768px){
    .business-trade-bg img {
        left: 45px;
    }
}
@media screen and (max-width:767px){
    .business-trade-bg img {
        width: 100%;
    }
}
.business-trade-content {
    max-width: 1000px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: left;
    padding: 75px 0;
    margin: 0 auto;
    position: relative;
}
@media screen and (max-width:767px){
    .business-trade-content {
        width: 95%;
        padding: 60px 0;
        justify-content: center;
    }
}
@media only screen and (max-width: 575px){
    .business-trade-content {
        padding: 60px 0 0;
    }
}
.business-trade-content-img {
    width: 600px;
    height: auto;
    position: absolute;
    top: 75px;
    right: 0;
}
@media screen and (max-width:767px){
    .business-trade-content-img {
        width: 100%;
        top: 50px;
    }
}

.business-trade-content-text {
    width: 450px;
    line-height: 2;
    text-align: center;
    box-sizing: border-box;
    padding: 37px;
    background-color: #ffffff;
    margin-top: 100px;
    z-index: 2;
}
@media screen and (max-width:767px){
    .business-trade-content-text {
        width: 95%;
        margin-top: 65%;
    }
}
@media only screen and (max-width: 575px){
    .business-trade-content-text {
        padding:30px 10px;
    }
}
.business-trade-content-text-ttl {
    border-bottom: 2px solid #707070;
    padding-bottom: 15px;
    font-weight: 600;
    font-size: 20px;
}
.business-trade-content-text-p {
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}
/* ----------------------------------------
 * Trade-link
 * ---------------------------------------- */
.trade-link {
    margin: 200px auto 50px;
    max-width: 1000px;
    text-align: center;
}
@media screen and (max-width:767px){
    .trade-link {
        margin: 100px auto 50px;
    }
}
.trade-link-button {
    box-sizing: border-box;
    width: 50%;
    background-color: #909BA4;
    padding: 25px 10px;
    display: flex;
    justify-content: right;
    align-items: center;
    margin: 0 auto;
    box-shadow: 0 0.3rem 0.6rem rgb(0 0 0 / 16%);
    transition: 0.5s;
}
@media screen and (max-width:575px){
    .trade-link-button {
        width: 90%;
    }
}
.trade-link-button:hover{
    opacity: 0.7;
}
.trade-link-button p {
    width: 100%;
    color: #FFFFFF;
    font-size: 20px;
    font-weight: 600;
    margin: 0;
}
@media screen and (max-width:575px){
    .trade-link-button p {
        font-size: 1rem;
    }
}
.trade-link-button img {
    width: 25.69px;
    height: 7.94px;
}
/* ----------------------------------------
 * Company
 * ---------------------------------------- */
#company {
    background-color: #F2F2F2;margin-top: 100px;
}
.company-profile {
    text-align: center;
    padding: 50px 0;
}
.company-profile-ttl {
    font-size: 26px;
    font-weight: 600;
    border-top: 2px solid #707070;
    border-bottom: 2px solid #707070;
    width: 135px;
    margin: 50px auto;
    line-height: 2;
    letter-spacing: 0.2em;
}
@media screen and (max-width:767px){
    .company-profile-ttl {
        margin: 0 auto 50px;
    }
}
.company-profile-list {
    border-collapse: collapse;
    width: 800px;
    text-align: left;
    font-size: 14px;
    line-height: 2.5;
    font-weight: 500;
    margin: 0 auto;
}
@media screen and (max-width:767px){
    .company-profile-list {
        width: 90%;
    }
}

.company-profile-list td {
    border-top: 1px solid #ACACAC;
    border-bottom: 1px solid #ACACAC;
    background-color: #FFFFFF;
    padding-left: 22px;
}
@media screen and (max-width:767px){
    .company-profile-list th, td {
        display: block;
    }
    .company-profile-list th {
        border-bottom: none;
    }
    .company-profile-list td {
        border-top: 0;
    }
    .company-profile-list td:not(:last-child){
        border-bottom: none;
    }
}

.company-profile-list th{
    background-color: #ACACAC;
    border-bottom: 1px solid #FFFFFF;
    color:#FFFFFF;
    padding-left: 22px;
}
/*--------- map ---------*/
.company-map {
    text-align: center;
    font-size: 14px;
    font-weight: 500;
    padding: 50px 0;
}
@media screen and (max-width:767px){
    .company-map {
        padding: 0 0 20px;
    }
}
.company-map-ttl {
    font-size: 26px;
    font-weight: 600;
    line-height: 2;
    letter-spacing: 0.2em;
}
.company-map-content {
    width: 800px;
    height: 300px;
    margin: 0 auto 34px;
}
@media screen and (max-width:767px){
    .company-map-content {
        width: 90%;
        height: 235px;
    }
}

.company-map iframe {
    width: 100%;
    height: 100%;
}

/* ----------------------------------------
 * Contact
 * ---------------------------------------- */
#contact {
    padding: 50px 0 100px;
    text-align: center;
    background-color: #F2F2F2;
}
@media screen and (max-width:767px){
    #contact {
        padding: 30px 0 100px;
    }
}
.contact-ttl {
    font-size: 26px;
    font-weight: 600;
    line-height: 2;
}
.contact-tel {
    width: 800px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    margin: 0 auto 20px;
    padding: 35px 0;
}
@media screen and (max-width:767px){
    .contact-tel {
        width: 90%;
    }
}

.contact-tel p {
    font-size: 16px;
    border-bottom: 1px solid #ACACAC;
    margin: 10px 20px;
    line-height: 2;
    font-weight: 600;
}

.contact-email {
    width: 800px;
    margin: 0 auto 20px;
    padding: 35px 0;
    background-color: #ffffff;
}
@media screen and (max-width:767px){
    .contact-email {
        width: 90%;
    }
}

.contact-email-content {
    width: 400px;
    margin: 0 auto;
    text-align: left;
}
@media screen and (max-width:767px){
    .contact-email-content {
        width: 90%;
        text-align: center;
    }
}

.contact-email-content p {
    font-size: 16px;
    font-weight: 900;
    border-bottom: 1px solid #ACACAC;
    line-height: 2;
}
.contact-email-content p a {
    font-weight: 500;
}
/* ----------------------------------------
 * Footer
 * ---------------------------------------- */
#footer {
    width: 100%;
    height: 150px;
    background-color: #ffffff;
    padding-top: 46.5px;
}
.footer-logo {
    width: 220px;
    height: auto;
    text-align: center;
    margin: 0 auto;
}
.footer-logo img{
    max-width: 100%;
    height: auto;
}
.footer-logo small {
    display: block;
    margin-top: 22.5px;
}
