@charset "UTF-8";
/* Google fonts */
@import url('https://fonts.googleapis.com/earlyaccess/notosansjp.css');
@import url('https://fonts.googleapis.com/css2?family=Montserrat&display=swap');


:root {
    --default-font-size: 100%;
    --default-font-family: 'Noto Sans JP', sans-serif;
    --header-font-family: 'Montserrat';
    --footer-font-family: 'Montserrat';
    --header_font-size: 20px;
    --header-background-gradient: linear-gradient(120deg, #fdfbfb 0%, #ebedee 100%);
    --footer-background-gradient: linear-gradient(to right, #434343 0%, black 100%);
    --instagram-gradient: radial-gradient(circle farthest-corner at 35% 90%, #fec564, transparent 50%), radial-gradient(circle farthest-corner at 0 140%, #fec564, transparent 50%), radial-gradient(ellipse farthest-corner at 0 -25%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 20% -50%, #5258cf, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 0, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 60% -20%, #893dc2, transparent 50%), radial-gradient(ellipse farthest-corner at 100% 100%, #d9317a, transparent), linear-gradient(#6559ca, #bc318f 30%, #e33f5f 50%, #f77638 70%, #fec66d 100%);
}

html {
    font-size: var(--default-font-size);
    font-family: var(--default-font-family);
}

* {
    box-sizing: border-box;

}

a {
    text-decoration: none;
}


img {
    max-width: 100%;
    height: auto;
}


.logo img {
    height: 55px;
}

header .header_div {
    width: 100%;
    height: 80px;
    padding: 0 4%;
    background-image: var(--header-background-gradient);
    display: flex;
    align-items: center;
    z-index: 100;

}



.header_nav {
    width: 100%;
    padding: 20px 0;
}

.header_ul {
    display: flex;
}

.header_ul li {
    margin-left: auto;
    margin-right: auto;
    list-style: none;
}

.header_ul li a {
    color: currentColor;
    font-size: var(--header_font-size);
    font-family: var(--header-font-family);
    white-space: nowrap;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;

}

.header_ul li a:hover {
    opacity: 0.5;
}


footer {
    background-color: #000;
    padding: 10% 5% 7% 5%;
    display: flex;
    font-family: var(--footer-font-family);
    color: white;

}

.footer-title {
    font-size: 22px;
    font-weight: bold;
    margin: 0 0 20px 0;
}

.footer-menu {
    margin-left: 15vw;
    font-size: 18px;
    width: 125px;

}

.footer-menu-ul {
    padding-left: 0px;
    padding-top: 0px;
    margin: 0 0 0 0;
}

.footer-menu-ul li {
    list-style: none;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: 0.5s;
}

.footer-menu-ul li:hover {
    opacity: 0.5;
}


.footer-menu-ul li a {
    color: currentColor;
}

.footer-social {
    margin-left: 15vw;
    margin-right: 15vw;
    font-size: 18px;
    width: 200px;
}

.footer-social-ul {
    padding: 0 0 0 0;
    margin: 0 0 0 0;

}

.footer-social-ul li {
    list-style: none;
    padding-top: 5px;
    padding-bottom: 5px;
    transition: 0.5s;
}

.footer-social-ul li:hover {
    opacity: 0.5;
}

.footer-social-ul li a {
    color: currentColor;
}

.copyright {
    background-color: black;
}

.copyright a {
    color: white;
    display: block;
    text-align: center;
    opacity: 0.5;

}

.about-main {
    margin: 3% 5%;
    display: flex;
}

.about-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.about-title-about {
    margin: 0 5px 0 0;
    font-size: 24px;
    font-family: var(--header-font-family);
}

.about-title-about-jp {
    margin: 0 0;
    font-size: 18px;
    position: relative;
    display: inline-block;
}

.about-title-about-jp:before {
    content: '';
    transform: scaleY(.75);
    display: inline-block;
    width: 16px;
    height: 2px;
    margin-right: 4px;
    background-color: #000;
    left: 0;
}

.about-info-title {
    font-size: 16px;
    margin: 0;
    width: 125px;
    padding-right: 15px;
    white-space: nowrap;

}

.about-top {
    border-top: 2px solid #000;
}

.about-display {
    display: flex;
    padding: 24px;
    border-bottom: 2px solid #000;
}

.about-locate {
    display: flex;
    width: 100%;
}

.about-map {
    border: 2px solid #000;
    margin-left: auto;

}

.gmap-link {
    height: 100%;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    background-color: #000;
}

.gmap-link::after {
    font-family: 'Material Icons';
    content: '\e5c8';
    vertical-align: middle;
    margin-left: 10px;

}

.gmap-link:hover {
    background-color: #fff;
    color: black;
}

.privacy-policy{
    margin: 3% 5%;
    display: flex;
    flex-direction: column;
}

.products {
    width: 100%;
}

.products-main {
    margin: 3% 5%;
    display: flex;
}

.products-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.products-title-about {
    margin: 0 5px 0 0;
    font-size: 24px;
    font-family: var(--header-font-family);
}

.products-title-about-jp {
    margin: 0 0;
    font-size: 18px;
    position: relative;
    display: inline-block;
    z-index: -1;
}

.products-title-about-jp:before {
    content: '';
    transform: scaleY(.75);
    display: inline-block;
    width: 16px;
    height: 2px;
    margin-right: 4px;
    background-color: #000;
    left: 0;
    -webkit-transform: scaleY(.75);
    -moz-transform: scaleY(.75);
    -ms-transform: scaleY(.75);
    -o-transform: scaleY(.75);
}



.products-image {
    margin-right: 5%;
    margin-left: 5%;
    margin-top: auto;
    margin-bottom: auto;
    height: 40vh;
    width: auto;
}

.products-info {
    width: 25%;
    height: auto;
    margin: auto;
}

.products-titles {
    text-align: center;
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 28px;

}

.brand-link-border {
    border: 3px solid #000;
    align-items: center;
    justify-content: center;
    margin: 30px 25px 0 25px;
    text-align: center;
    vertical-align: bottom;
}



.brand-link {
    color: #000;
    font-family: var(--header-font-family);
    font-size: 24px;
    display: inline-block;
    width: 100%;
    transition: 0.5s;
}

.brand-link::after {
    font-family: 'Material Icons';
    content: '\e5c8';
    vertical-align: middle;
    margin-left: 12px;

}

.brand-link:hover {
    color: #fff;
    background-color: #000;
}

.products-top {
    border-top: 2px solid #000;
}

.products-display {
    padding: 24px;
    border-bottom: 2px solid #000;
    display: flex;
    width: 100%;
}

.products-display-yoko {
    padding: 24px;
    border-bottom: 2px solid #000;
    display: block;
    width: 100%;
}

.display-yoko {
    display: flex;
    width: 100%;
}

.products-image-yoko {
    margin-left: auto;
    margin-right: auto;
    height: 40vh;
    width: 100%;
}

.products-info-yoko {
    width: 100%;
}

.products-description-yoko {
    text-align: center;

}

.products-titles-yoko {
    text-align: center;
    margin-top: 0;
    margin-bottom: 35px;
    font-size: 28px;
}

.bland-info-description {
    width: 50%;
    height: auto;
    margin-right: 5%;
    display: block;
}

.bland-info-description-text {
    display: block;
    text-align: center;
    font-size: 34px;
}

.brand-info-image {
    display: block;
    width: 50vw;
    height: auto;
    margin: auto;
    margin-top: auto;
    margin-top: auto;
}


.brand-image {
    margin-left: 0;
    height: auto;
    width: 100%;
    margin-top: auto;
    margin-bottom: auto;
}

.instagram-link {
    margin: auto;
    height: 100%;
}

.brand-info {
    height: auto;
    display: flex;
    margin-top: auto;
    margin-bottom: auto;
    border-bottom: 2px solid #000;
    padding: 12px 24px 12px 24px;
}


.bland-description {
    text-align: center;
    margin: 0 auto 0 auto;
    padding: 10px 0 10px 0;
    font-family: var(--header-font-family);

}

.bland-description-text {
    margin: 0;
}

.bland-links {
    display: flex;
    margin: 0 auto 0 auto;

}

.bland-link-range {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-right: 16px;
}

.under_border {
    border-top: 2px solid #000;
}

.instagram-border {
    border: 3px solid #000;
    margin: 0 auto 0 auto;
}

.instagram-button {
    color: #000;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    height: auto;
    font-family: var(--header-font-family);
    font-size: 18px;
    transition: 0.5s;
}

.instagram-button::after {
    content: '\f16d';
    font-family: 'Font Awesome 6 Brands';
    vertical-align: middle;
    margin-left: 12px;
}

.instagram-button:hover {
    color: #fff;
    background: var(--instagram-gradient);
}

.contact-border {
    border: 3px solid #000;
}

.contact-link {
    color: #000;
    padding-left: 15px;
    padding-right: 15px;
    display: block;
    height: auto;
    font-family: var(--header-font-family);
    font-size: 18px;
    transition: 0.5s;
    -webkit-transition: 0.5s;
    -moz-transition: 0.5s;
    -ms-transition: 0.5s;
    -o-transition: 0.5s;
}

.contact-link::after {
    font-family: 'Material Icons';
    content: '\e0be';
    vertical-align: middle;
    margin-left: 12px;
}

.contact-link:hover {
    color: #fff;
    background-color: #000;
}

.material-symbols-outlined {
    height: 20px;
}

/***** コンタクトフォーム *****/

.contact {
    width: 100%;
    font-family: var(--default-font-family);
}


.contact-required {
    padding: 5px;
    background: #DE8686;
    color: #fff;
    border-radius: 3px;
    margin-left: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.contact-option {
    padding: 5px;
    background: #999;
    color: #fff;
    border-radius: 3px;
    margin-left: 10px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    -ms-border-radius: 3px;
    -o-border-radius: 3px;
}

.contact-top {
    border-top: 2px solid #000;
}

.contact-display {
    display: flex;
    padding: 24px;
    border-bottom: 2px solid #000;
}

.contact-form-title {
    font-size: 18px;
    margin: 0;
    width: 25%;
    padding-right: 15px;
    white-space: nowrap;
}

.contact-form-main {
    display: block;
    width: 100%;
    height: auto;
}

.contact-form-select {
    overflow: hidden;
    margin: auto;
    text-align: center;

    position: relative;
    border: 1px solid #bbbbbb;
    border-radius: 2px;
    background: #ffffff;
}

.contact-form-select::before {
    position: absolute;
    top: 0.8em;
    right: 0.9em;
    width: 0;
    height: 0;
    padding: 0;
    content: '';
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 6px solid #666666;
    pointer-events: none;
}

.contact-form-select::after {
    position: absolute;
    top: 0;
    right: 2.5em;
    bottom: 0;
    width: 1px;
    content: '';
    border-left: 1px solid #bbbbbb;
}

.contact-form-select select {
    width: 100%;
    padding-right: 1em;
    cursor: pointer;
    text-indent: 0.01px;
    text-overflow: ellipsis;
    border: none;
    outline: none;
    background: transparent;
    background-image: none;
    box-shadow: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 8px 38px 8px 8px;
    color: #666666;
}

.contact-form-select select::-ms-expand {
    display: none;
}



.contact-form-message {
    width: 100%;
}

.contact-form-message input, .contact-form-message textarea {
    width: 100%;
    padding: 8px 15px;
    margin-right: 10px;
    margin-top: 10px;
    border: 1px solid #d0d5d8;
    border-radius: 3px;
    background-color: #eff1f5;
}

.contact-send {
    margin: 0 auto;
}

.contact-send input {
    height: 100%;
    color: #fff;
    padding-left: 15px;
    padding-right: 15px;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: 0.5s;
    background-color: #000;

}

.contact-send input::before {
    font-family: 'Material Icons';
    content: '\e5cc';
    vertical-align: middle;
    margin-right: 10px;
}

.contact-send input:hover {
    background-color: #fff;
    color: black;
}

.swiper-slide img {
    height: auto;
    width: 100%;
    overflow: hidden;
}

.swiper-button-next::after {
    color: #fff;
}

.swiper-button-prev::after {
    color: #fff;
}

.swiper-pagination-bullet {
    opacity: 1;
    border: white solid 2px;
    background-color: transparent;
}

.swiper-pagination-bullet-active {
    background-color: white;
}

.fadeUpTrigger {
    opacity: 0;
}

.fadeUp {
    animation-name: fadeUpAnime;
    animation-duration: 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes fadeUpAnime {
    from {
        opacity: 0;
        transform: translateY(100px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.hamburger {
    display: none;
}


@media screen and (max-width:768px) {

    .page-main{
        margin-top: 34px;
    }

    /* ヘッダー */

    .header {
        background-color: white;
        width: 100%;
        height: 50px;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
    }

    .header_h1 {
        margin-left: 2%;
    }

    .header_ul {
        display: block;
        padding-top: 26px;
    }

    .header_ul li {
        padding-top: 14px;
        padding-bottom: 14px;
        text-align: center;
        border-bottom: #000 solid 2px;
    }

    .header_ul li:nth-child(1) {
        border-top: #000 solid 2px;
    }

    .header_nav {
        position: absolute;
        display: block;
        right: 0;
        left: 0;
        top: 0;
        width: 100%;
        height: 100vh;
        transform: translateX(100%);
        background-color: #fff;
        /*ハンバーガーメニュークリック時のナビゲーションメニュー背景色*/
        transition: ease .4s;
        /*ハンバーガーメニュークリック時のナビゲーションメニュー出現を遅延*/
    }

    /* ハンバーガーメニュー */
    .header_hamburger {
        width: 48px;
        height: 100%;
        margin-left: auto;
    }

    .hamburger {
        background-color: transparent;
        /*buttonタグデフォルトスタイルを打ち消し*/
        border-color: transparent;
        /*buttonタグデフォルトスタイルを打ち消し*/
        display: block;
        z-index: 10000;
    }

    .hamburger span {
        width: 100%;
        height: 1px;
        background-color: #000;
        position: relative;
        transition: ease .4s;
        /*ハンバーガーメニュークリック時の三本線の動きを遅延*/
        display: block;
    }

    .header_nav {
        z-index: 9998;
    }

    /* ハンバーガーメニュークリック後のスタイル */
    .header_nav.active {
        transform: translateX(0);
    }

    .hamburger.active span:nth-child(1) {
        top: 5px;
        transform: rotate(45deg);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        top: -13px;
        transform: rotate(-45deg);
    }

    .hamburger span:nth-child(1) {
        top: 0;
    }

    .hamburger span:nth-child(2) {
        margin: 8px 0;
    }

    .hamburger span:nth-child(3) {
        top: 0;
    }

    .swiper-container,
    .swiper-slide {
        height: 100vh;
    }

    .swiper-slide>img {
        object-fit: cover;
        width: 100%;
        height: 100vh;
    }

    /* フッター*/
    footer {
        display: block;
    }

    .footer-menu {
        margin-left: 25px;
        margin-bottom: 15px;
    }

    .footer-social {
        margin-left: 25px;
    }


    .products-display {
        display: block;
    }

    .products-image {
        width: 100%;
        height: 100%;
        margin: 0;
    }

    .products-info {
        margin: 0;
        width: auto;
    }

    .brand-image {
        width: 100%;
        margin: 0;
        margin-bottom: 18px;
    }

    .brand-info {
        display: block;
    }

    .bland-links{
        display: block;
    }

    .bland-link-range {
        display: block;
        text-align: center;
        margin: 5px 0;
    }
	
	.bland-info-description{
		width:100%;
		margin:0;
	}

    .bland-info-description-text{
        font-size: 6vw;
    }

    .about-locate {
        display: block;
    }

    .gmap-link {
        white-space: nowrap;
        padding-top: 8px;
        padding-bottom: 8px;
    }

    .display-yoko{
        display: block;
    }

    .instagram-link {
        margin: 6px auto 0;
        height: 100%;
        position: relative;
        padding-bottom: 100%;
        overflow: hidden;
    }

    .snapwidget-widget{
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
    }

    .contact-display{
        display: block;
    }

    .contact-send{
        margin: auto;
    }
    .contact-send input{
        margin: auto;
        padding: 10px;
        height: 100%;
    }

    .header_ul li a:hover {
    opacity: 1;
}
    .footer-menu-ul li:hover {
    opacity: 1;
}

    .footer-social-ul li:hover {
    opacity: 1;
}

    .gmap-link:hover {
    opacity: 1;
}

    .brand-link:hover {
    opacity: 1;
}

    .instagram-button:hover {
    opacity: 1;
}

    .contact-link:hover {
    opacity: 1;
}

    .contact-send input:hover {
    opacity: 1;
}
}

.snapwidget-widget{
    pointer-events: none
}