@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;700&display=swap');

/* reset
---------------------------------------------------- */
*,*::before,*::after{box-sizing:border-box}body,h1,h2,h3,h4,p,figure,blockquote,dl,dd{margin:0}ul[role="list"],ol[role="list"]{list-style:none}body{text-rendering:optimizeSpeed;line-height: 1.6;}a:not([class]){text-decoration-skip-ink:auto}img,picture{max-width:100%;display:block}input,button,textarea,select{font:inherit}

/* common
---------------------------------------------------- */
html {
    scroll-behavior: smooth;
    scroll-padding-top: 17.5vw;
}
body {
    font-size: 3.625vw;
    font-family:'Roboto','Hiragino Sans','Meiryo','Hiragino Kaku Gothic ProN',sans-serif;
    /* font-family: 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif; */
    color: #000;
    background-color: #fff;
    letter-spacing: 0.2vw;
}
section {
    padding: 9vw 0;
}
.inner {
    width: 90%;
    margin: 0 auto;
}
a {
    color: #000;
    text-decoration: none;
}
a:focus {
    outline: 1px solid #999;
}
ul {
    padding: 0;
    margin: 0;
    list-style: none;
}
nav ul li a,
footer ul li a,
#copyright,
._title h1,
._title h2 {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
}
.arrow {
    fill: none;
    stroke: #606060;
    stroke-miterlimit: 10;
}
input, button, textarea, select {
    appearance: none;
    border: 1px solid #ccc;
    border-radius: 0;
    max-width: 100%;
}
._title {
    margin-bottom: 7.5vw;
}
._title h1,
._title h2 {
    text-align: center;
    font-size: 9vw;
    letter-spacing: 1vw;
    line-height: 1.2;
}
._menu {
    position: relative;
    cursor: pointer;
}
._menu span {
    position: absolute;
    transition: .5s;
}
._menu span:nth-child(1) {
}
._menu span:nth-child(2) {}
._menu.active span {}
._menu.active span:nth-child(1) {}
._menu.active span:nth-child(2) {
}
.page {}
.page main {
    margin-top: 17.5vw;
}

/* header
---------------------------------------------------- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: #fff;
    z-index: 2;
}
header .inner {
    position: relative;
    width: 100%;
}
header ._logo {
    margin: 0 auto;
    width: 17.5vw;
}
header ._logo a {
    display: block;
    padding: 2.5vw;
    transition: .5s;
}
header ._logo a:hover {
    opacity: .5;
}
header ._logo a img {}
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: #fff;
    display: none;
    justify-content: center;
    align-items: center;
}
nav ul {}
nav ul li {
    text-align: center;
}
nav ul li a {
    display: block;
    font-size: 6vw;
    letter-spacing: 0.75vw;
    padding: 3.5vw;
    line-height: 1;
    color: #000;
    background-image: linear-gradient(-90deg, #000 50%, #cccccc 50.01%);
    background-size: 200%;
    background-position: 100%;
    transition: .75s;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
nav ul li a:hover {
    background-position: 0;
}
header ._menu {
    position: absolute;
    top: 0;
    right: 0;
    width: 17.5vw;
    height: 17.5vw;
    cursor: pointer;
}
header ._menu span {
    position: absolute;
    right: 5vw;
    width: 7.5vw;
    height: 2px;
    background-color: #000;
    transition: .5s;
    transform-origin: center;
}
header ._menu span:nth-child(1) {
    top: 7vw;
}
header ._menu span:nth-child(2) {
    top: 9vw;
}
header ._menu.active span {}
header ._menu.active span:nth-child(1) {
    transform: rotate(30deg);
    top: 8vw;
}
header ._menu.active span:nth-child(2) {
    transform: rotate(-30deg);
    top: 8vw;
}

/* top
---------------------------------------------------- */
#top {
    margin-top: 17.5vw;
    padding: 0;
}
#top .inner {
    width: 100%;
}
#top_slide {
    height: 100vw;
}
#top_slide .swiper {
    height: 100%;
}
#top_slide .swiper-wrapper {}
#top_slide .swiper-slide {}
#top_slide .swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
#top_slide .swiper-pagination-bullet {
    background-color: #fff;
}
#top_slide .swiper-pagination-bullet-active {
    background-color: #fff;
}
#top_slide .swiper-pagination {
    text-align: left;
    margin-left: 2.5vw;
}

/* vision
---------------------------------------------------- */
#vision {}
#vision .inner {}
#vision ._title {
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
}
#vision ._title.active {
    opacity: 1;
    transform: translateY(0);
}
#vision ._title h2 {
}
#vision ._body {
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
    transition-delay: .5s;
}
#vision ._body.active {
    opacity: 1;
    transform: translateY(0);
}

/* company
---------------------------------------------------- */
#company {}
#company .inner {
    padding: 8vw 5vw;
    background-color: #f4f4f4;
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
}
#company .inner.active {
    opacity: 1;
    transform: translateY(0);
}
#company ._title {}
#company ._title h2 {}
#company ._body {}
#company ._menu {
    height: 5vw;
    margin-bottom: 5vw;
}
#company ._menu span {
    width: 5vw;
    height: 0.5vw;
    background-color: #000;
}
#company ._menu span:nth-child(1) {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
#company ._menu span:nth-child(2) {
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%) rotate(90deg);
}
#company ._menu.active span {}
#company ._menu.active span:nth-child(1) {}
#company ._menu.active span:nth-child(2) {
    opacity: 0;
    transform: translate(-50%,2.5vw) rotate(90deg);
}
#company dl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    display: none;
    padding-top: 2.5vw;
}
#company dt,
#company dd {
    margin-bottom: 2vw;
}
#company dt {
    width: 30%;
    text-align: right;
}
#company dd {
    width: 65%;
}

/* related
---------------------------------------------------- */
#related {}
#related .inner {}
#related ._title {
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
    margin-bottom: 8vw;
}
#related ._title.active {
    opacity: 1;
    transform: translateY(0);
}
#related ._title h2 {}
#related ._body {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}
.related_item {
    width: 48%;
    margin-bottom: 5vw;
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
    margin-bottom: 8vw;
}
.related_item.active {
    opacity: 1;
    transform: translateY(0);
}
.related_item:nth-child(2n){
    transition-delay: .25s;
}
.related_item a {
    display: block;
}
.related_item a:hover {}
.related_img {
    border: 1px solid #ededed;
    margin-bottom: 1vw;
    height: 27vw;
    transition: .5s;
}
.related_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.related_txt {
    display: flex;
    align-items: center;
}
.related_name {
    width: 85%;
    font-size: 2.75vw;
}
.related_txt ._arrow {
    width: 10%;
    display: flex;
}
.related_item a .related_name {
    color: #000;
    background-image: linear-gradient(-90deg, #000 50%, #cccccc 50.01%);
    background-size: 200%;
    background-position: 100%;
    transition: .75s;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.related_item a:hover .related_img {
    opacity: .5;
}
.related_item a:hover .related_name {
    background-position: 0;
}
.related_item a:hover ._arrow img {
    transition: transform .5s;
    transform: scaleX(1.5);
    transform-origin: left;
}
.related_shop {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    padding: 20vw 10vw 0;
    background-color: rgba(0,0,0,0.777);
    color: #fff;
    z-index: 2;
    overflow: auto;
    display: none;
}
.related_shop_box {}
.related_shop_title {
    font-size: 3.75vw;
    margin-bottom: 3.75vw;
}
.related_shop_body {
    padding-bottom: 10vw;
}
.related_shop_item {
    font-size: 2vw;
    color: #fff;
}
.related_shop_item a {
    position: relative;
    display: block;
    font-size: 2vw;
    padding: 1.25vw 4vw 1.25vw 0;
    color: #fff;
}
.related_shop_item a:before,
.related_shop_item a:after {
    position: absolute;
    content: '';
    right: 0;
    top: 2.5vw;
    background-color: #fff;
    width: 1.25vw;
    height: 1px;
    transform-origin: right;
    transition: .5s;
}
.related_shop_item a:before {
    transform: rotate(45deg);
}
.related_shop_item a:after {
    transform: rotate(-45deg);
}
.related_shop_item a:hover {
    color: #ffffcc;
}
.related_shop_item a:hover::before,
.related_shop_item a:hover::after {
    right: -2vw;
    background-color: #ffff00;
}
.related_shop_item span {
    position: relative;
    display: block;
    font-size: 2vw;
    padding: 1.25vw 0;
    color: #fff;
}
.related_shop_close {
    position: absolute;
    top: 0;
    right: 0;
    width: 20vw;
    height: 15vw;
}
.related_shop_close span {
    position: absolute;
    top: 8vw;
    right: 5vw;
    left: 5vw;
    width: 7.5vw;
    height: 1px;
    margin: auto;
    background-color: #fff;
    transform-origin: center;
    transition: width .5s;
}
.related_shop_close span:nth-child(1) {
    transform: rotate(30deg);
}
.related_shop_close span:nth-child(2) {
    transform: rotate(-30deg);
}
.related_shop_close:hover {
    cursor: pointer;
}
.related_shop_close:hover span {
    width: 10vw;
}

/* brand
---------------------------------------------------- */
#brand {}
#brand .inner {}
#brand ._title {
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
}
#brand ._title.active {
    opacity: 1;
    transform: translateY(0);
}
#brand ._title h2 {}
#brand ._body {
    border-top: 1px solid #606060;
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
}
#brand ._body.active {
    opacity: 1;
    transform: translateY(0);
}
.brand_item {
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
}
.brand_item.active {
    opacity: 1;
    transform: translateY(0);
}

.brand_item:nth-child(1) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(2) {
    border-bottom: 1px solid rgb(96 96 96 / 85%);
}
.brand_item:nth-child(3) {
    border-bottom: 1px solid rgb(96 96 96 / 60%);
}
.brand_item:nth-child(4) {
    border-bottom: 1px solid rgb(96 96 96 / 45%);
}
.brand_item:nth-child(5) {
    border-bottom: 1px solid rgb(96 96 96 / 30%);
}
.brand_item:nth-child(6) {
    border-bottom: 1px solid rgb(96 96 96 / 15%);
}

.brand_name {
    position: relative;
    text-align: center;
    padding: 5vw 0;
    cursor: pointer;
}
.brand_name h3 {
    display: inline-block;
    font-size: 3.5vw;
    font-weight: normal;
    line-height: 1;
}
.brand_name h3 {
    color: #000;
    background-image: linear-gradient(-90deg, #000 50%, #cccccc 50.01%);
    background-size: 200%;
    background-position: 100%;
    transition: 0.75s;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand_item:hover .brand_name h3 {
    background-position: 0;
}
.brand_name ._menu {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 3vw;
    height: 2.75vw;
}
.brand_name ._menu span {
    width: 100%;
    height: 1px;
    background-color: #606060;
}
.brand_name ._menu span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%);
}
.brand_name ._menu span:nth-child(2) {
    top: 50%;
    transform: translate(0,-50%) rotate(90deg);
}
.brand_name.active ._menu span {}
.brand_name.active ._menu span:nth-child(1) {}
.brand_name.active ._menu span:nth-child(2) {
    opacity: 0;
    transform: translateY(5vw) rotate(90deg);
}
.brand_shop {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    display: none;
}
.brand_shop_item {
    width: 48%;
    margin-bottom: 5vw;
}
.brand_shop_item a {
    display: block;
}
.brand_shop_img {
    height: 27.5vw;
    margin-bottom: 1vw;
    transition: .5s;
}
.brand_shop_img img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.brand_shop_txt {
    display: flex;
    justify-content: space-between;
}
.brand_shop_name {
    width: 85%;
    font-size: 2.75vw;
    color: #000;
    background-image: linear-gradient(-90deg, #000 50%, #cccccc 50.01%);
    background-size: 200%;
    background-position: 100%;
    transition: .75s;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.brand_shop_txt ._arrow {
    width: 15%;
    display: flex;
}
.brand_shop_item a:hover .brand_shop_img {
    opacity: .5;
}
.brand_shop_item a:hover .brand_shop_name {
    background-position: 0;
}
.brand_shop_item a:hover ._arrow img {
    transition: transform .5s;
    transform: scaleX(1.25);
    transform-origin: left;
}

/* home_contact
---------------------------------------------------- */
#home_contact {
    padding: 3vw 0 9vw;
}
#home_contact .inner {
}
#home_contact ._title {
    opacity: 0;
    transform: translateY(5vw);
    transition: .5s;
    margin-bottom: 0;
}
#home_contact ._title.active {
    opacity: 1;
    transform: translateY(0);
}
#home_contact ._title a {
    display: block;
    padding: 9vw 5vw;
    background-color: #f4f4f4;
    color: #000;
    background-image: linear-gradient(-90deg, #f2f2f2 50%, #000 50.01%);
    background-size: 200%;
    background-position: 100%;
    transition: .5s;
}
#home_contact ._title a:hover {
    color: #fff;
    background-position: 0;
}
#home_contact ._title a h2 {}

/* footer
---------------------------------------------------- */
footer {
    padding: 9vw 0 6vw;
}
footer .inner {}
footer ul {
    margin-bottom: 12vw;
}
footer ul li {
}
footer ul li a {
    display: block;
    text-align: center;
    font-size: 4.5vw;
    letter-spacing: 0.75vw;
    padding: 2.25vw;
    color: #000;
    background-image: linear-gradient(-90deg, #000 50%, #cccccc 50.01%);
    background-size: 200%;
    background-position: 100%;
    transition: .75s;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
footer ul li a:hover {
    background-position: 0;
}
#copyright {
    font-size: 4.5vw;
    text-align: center;
}

/* contact
---------------------------------------------------- */
#contact {}
.contact_form {}
.contact_form ._item {
    margin-bottom: 5vw;
}
.contact_form ._title {
    margin-bottom: 1vw;
}
.contact_form ._body {}
.contact_form ._body {}
.contact_form ._body .error {}
.contact_form ._body input[type='text'],
.contact_form ._body input[type='email'],
.contact_form ._body textarea {
    width: 100%;
    padding: 1vw 2vw;
}
.contact_form ._body input[type='text']:focus,
.contact_form ._body input[type='email']:focus,
.contact_form ._body textarea:focus,
.contact_form ._send input[type='submit']:focus {
    outline: 1px solid #999;
}
.contact_form ._body input.c_tel {
    width: 25%;
}
.contact_form ._body textarea {}
.contact_form ._send {
    margin: 10vw auto;
}
.contact_form ._send input[type='submit'] {
    border: none;
    width: 100%;
    padding: 3vw;
    color: #000;
    background-image: linear-gradient(-90deg, #f2f2f2 50%, #000 50.01%);
    background-size: 200%;
    background-position: 100%;
    transition: .25s;
    cursor: pointer;
}
.contact_form ._send input[type='submit']:hover {
    background-position: 0;
    color: #fff;
}

/* 768
------------------------------------------------------------------------------ */
@media (min-width:768px){
/* common
---------------------------------------------------- */
body {}
section {}
.inner {}
a {}
ul {}
nav ul li a,
footer ul li a,
#copyright,
._title h1,
._title h2 {}
.arrow {}
input, button, textarea, select {}
._title {}
._title h1,
._title h2 {}
._menu {}
._menu span {}
._menu span:nth-child(1) {}
._menu span:nth-child(2) {}
._menu.active span {}
._menu.active span:nth-child(1) {}
._menu.active span:nth-child(2) {}
.page {}

/* header
---------------------------------------------------- */
header {}
header .inner {}
header ._logo {}
header ._logo a {}
header ._logo a img {}
nav {}
nav ul {}
nav ul li {}
nav ul li a {}
header ._menu {}
header ._menu span {}
header ._menu span:nth-child(1) {}
header ._menu span:nth-child(2) {}
header ._menu span.active {}
header ._menu span:nth-child(1).active {}
header ._menu span:nth-child(2).active {}

/* top
---------------------------------------------------- */
#top {}
#top .inner {}
#top_slide {
    height: 75vw;
}
#top_slide .swiper {}
#top_slide .swiper-wrapper {}
#top_slide .swiper-slide {}
#top_slide .swiper-slide img {}

/* vision
---------------------------------------------------- */
#vision {}
#vision .inner {}
#vision ._title {}
#vision ._title h2 {}
#vision ._body {}

/* company
---------------------------------------------------- */
#company {}
#company .inner {}
#company ._title {}
#company ._title h2 {}
#company ._body {}
#company ._menu {}
#company ._menu span {}
#company ._menu span:nth-child(1) {}
#company ._menu span:nth-child(2) {}
#company ._menu span.active {}
#company ._menu span:nth-child(1).active {}
#company ._menu span:nth-child(2).active {}
#company dl {}
#company dt {}
#company dd {}

/* related
---------------------------------------------------- */
#related {}
#related .inner {}
#related ._title {}
#related ._title h2 {}
#related ._body {}
.related_item {}
.related_item a {}
.related_item a:hover {}
.related_img {}
.related_img img {}
.related_txt {}
.related_name {}
.related_txt ._arrow {}
.related_shop {
    padding: 10vw 10vw 0;
}
.related_shop_box {}
.related_shop_title {}
.related_shop_body {}
.related_shop_item {}
.related_shop_item a {}
.related_shop_close {}
.related_shop_close span {}
.related_shop_close span:nth-child(1) {}
.related_shop_close span:nth-child(2) {}
.related_shop_close:hover {}
.related_shop_close:hover span {
    width: 2.75rem;
}

/* brand
---------------------------------------------------- */
#brand {}
#brand .inner {}
#brand ._title {}
#brand ._title h2 {}
#brand ._body {}
.brand_item {}
.brand_name {}
.brand_name h3 {}
.brand_name ._menu {}
.brand_name ._menu span {}
.brand_name ._menu span:nth-child(1) {}
.brand_name ._menu span:nth-child(2) {}
.brand_name ._menu span.active {}
.brand_name ._menu span:nth-child(1).active {}
.brand_name ._menu span:nth-child(2).active {}
.brand_shop {}
.brand_shop_item {}
.brand_shop_item a {}
.brand_shop_item a:hover {}
.brand_shop_img {}
.brand_shop_img img {}
.brand_shop_txt {}
.brand_shop_name {}
.brand_shop_txt ._arrow {}

/* home_contact
---------------------------------------------------- */
#home_contact {}
#home_contact .inner {}
#home_contact ._title {}
#home_contact ._title a {}
#home_contact ._title a h2 {}

/* footer
---------------------------------------------------- */
footer {}
footer .inner {}
footer ul {}
footer ul li {}
footer ul li a {}
#copyright {}

/* contact
---------------------------------------------------- */
#contact {}
.contact_form {}
.contact_form ._item {}
.contact_form ._title {}
.contact_form ._body {}
.contact_form ._body {}
.contact_form ._body .error {}
.contact_form ._body input[type='text'] {}
.contact_form ._body input[type='email'] {}
.contact_form ._send input[type='submit'] {}
}

/* 1025
------------------------------------------------------------------------------ */
@media (min-width:1025px){
/* common
---------------------------------------------------- */
html {
    scroll-padding-top: 4rem;
}
body {
    font-size: 0.875rem;
    letter-spacing: 0.1rem;
    line-height: 1.75;
}
section {
    padding: 3rem 0;
}
.inner {
    max-width: 1200px;
}
a {}
ul {}
nav ul li a,
footer ul li a,
#copyright,
._title h1,
._title h2 {}
.arrow {}
input, button, textarea, select {}
._title {
    margin-bottom: 4rem;
}
._title h1,
._title h2 {
    text-align: center;
    font-size: 1.75rem;
    letter-spacing: 0.25rem;
    line-height: 1.2;
}
._menu {}
._menu span {}
._menu span:nth-child(1) {}
._menu span:nth-child(2) {}
._menu.active span {}
._menu.active span:nth-child(1) {}
._menu.active span:nth-child(2) {}
.page main {
    margin-top: 7.5rem;
    min-height: calc(100vh - 17rem);
}

/* header
---------------------------------------------------- */
header {}
header .inner {
    max-width: 90%;
}
header ._logo {
    position: absolute;
    top: 0;
    left: 0;
    width: 4rem;
    z-index: 1;
}
header ._logo a {
    padding: 0.5rem;
}
header ._logo a img {
}
nav {
    display: block !important;
    bottom: auto;
}
nav ul {
    display: flex;
    justify-content: center;
}
nav ul li {}
nav ul li a {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    padding: 1.5rem;
}
header ._menu {
    display: none;
}
header ._menu span {}
header ._menu span:nth-child(1) {}
header ._menu span:nth-child(2) {}
header ._menu span.active {}
header ._menu span:nth-child(1).active {}
header ._menu span:nth-child(2).active {}

/* top
---------------------------------------------------- */
#top {
    margin-top: 4rem;
}
#top .inner {}
#top_slide {
    height: calc(100vh - 4rem);
}
#top_slide .swiper {}
#top_slide .swiper-wrapper {}
#top_slide .swiper-slide {}
#top_slide .swiper-slide img {}
#top_slide .swiper-pagination {
    margin-left: 1rem;
}
#top_slide .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 6px;
}
#top_slide .swiper-button-next,
#top_slide .swiper-button-prev {
    width: calc(var(--swiper-navigation-size)/ 44 * 20);
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0;
    transition: opacity .5s;
}
#top_slide:hover .swiper-button-next,
#top_slide:hover .swiper-button-prev {
    opacity: 1;
}
#top_slide .swiper-button-next {
    background-image: url(../img/arrow_next.svg);
}
#top_slide .swiper-button-prev {
    background-image: url(../img/arrow_prev.svg);
}
#top_slide .swiper-button-next:after,
#top_slide .swiper-rtl .swiper-button-prev:after {
    content: '';
}

/* vision
---------------------------------------------------- */
#vision {padding: 5rem 0;}
#vision .inner {
    display: flex;
    justify-content: flex-start;
}
#vision ._title {
    width: 30%;
    margin-bottom: 0;
    transform: translateX(-2.5rem);
    display: flex;
    justify-content: center;
    align-items: center;
}
#vision ._title.active {
    transform: translateX(0);
}
#vision ._title h2 {}
#vision ._body {
    width: 65%;
    transform: translateX(-2.5rem);
}
#vision ._body.active {
    transform: translateX(0);
    transition-delay: .25s;
}

/* company
---------------------------------------------------- */
#company {
    padding: 0 0 5rem;
}
#company .inner {
    padding: 3rem;
    transform: translateY(2.5rem);
}
#company ._title {
    margin-bottom: 3rem;
}
#company ._title h2 {}
#company ._body {}
#company ._menu {
    height: 24px;
    margin-bottom: 0;
}
#company ._menu span {
    width: 24px;
    height: 2px;
}
#company ._menu span:nth-child(1) {}
#company ._menu span:nth-child(2) {}
#company ._menu span.active {}
#company ._menu span:nth-child(1).active {}
#company ._menu span:nth-child(2).active {
    transform: translate(-50%,2.5rem) rotate(90deg);
}
#company dl {
    padding-top: 3.25rem;
}
#company dt,
#company dd {
    margin-bottom: 1rem;
}
#company dt {
    width: 40%;
}
#company dd {
    width: 55%;
}

/* related
---------------------------------------------------- */
#related {}
#related .inner {}
#related ._title {
    transform: translateY(2.5rem);
    margin-bottom: 5rem;
}
#related ._title h2 {}
#related ._title h2 br {
    display: none;
}
#related ._body {
}
#related ._body::after {
    content: '';
    display: block;
    width: 31%;
    height: 0;
}
.related_item {
    width: 31%;
    margin-bottom: 2.25rem;
    transform: translateY(2.5rem);
}
.related_item:nth-child(3n+1){
    transition-delay: 0s;
}
.related_item:nth-child(3n+2){
    transition-delay: 0.25s;
}
.related_item:nth-child(3n){
    transition-delay: 0.5s;
}
.related_item a {}
.related_item a:hover {}
.related_img {
    margin-bottom: 0.5rem;
    height: 240px;
}
.related_img img {}
.related_txt {}
.related_name {
    font-size: 1rem;
    letter-spacing: 0.05rem;
}
.related_txt ._arrow {}
.related_shop {
    padding: 5rem 5% 0;
}
.related_shop_box {
    width: 720px;
    margin-inline: auto;
}
.related_shop_title {
    font-size: 1.25rem;
    margin-bottom: 1.25rem;
}
.related_shop_body {
}
.related_shop_body_devide {
    margin-right: 3rem;
}
.related_shop_item {
    font-size: 1rem;
}
.related_shop_item a {
    font-size: 1rem;
    padding: 0.5rem 1rem 0.5rem 0;
}
.related_shop_item a:before,
.related_shop_item a:after {
    right: 0;
    top: 1rem;
    background-color: #fff;
    width: 0.5rem;
    height: 1px;
    transform-origin: right;
}
.related_shop_item a:before {
    transform: rotate(45deg);
}
.related_shop_item a:after {
    transform: rotate(-45deg);
}
.related_shop_item a:hover::before,
.related_shop_item a:hover::after {
    right: -1rem;
}
.related_shop_item span {
    font-size: 1rem;
    padding: 0.5rem 1rem 0.5rem 0;
}
.related_shop_close {
    width: 200px;
    height: 100px;
}
.related_shop_close span {
    top: 3rem;
    right: 5rem;
    left: 5rem;
    width: 2.5rem;
}
.related_shop_close span:nth-child(1) {}
.related_shop_close span:nth-child(2) {}

/* brand
---------------------------------------------------- */
#brand {}
#brand .inner {}
#brand ._title {}
#brand ._title h2 {}
#brand ._body {}
.brand_item {}
.brand_name {
    padding: 1.75rem 0;
}
.brand_name h3 {
    font-size: 0.875rem;
    letter-spacing: 0.05rem;
}
.brand_name ._menu {
    width: 16px;
    height: 16px;
}
.brand_name ._menu span {}
.brand_name ._menu span:nth-child(1) {}
.brand_name ._menu span:nth-child(2) {}
.brand_name ._menu span.active {}
.brand_name ._menu span:nth-child(1).active {}
.brand_name ._menu span:nth-child(2).active {}
.brand_shop {
    margin: 1.5rem auto 3rem;
}
.brand_shop::before,
.brand_shop::after {
    content: '';
    display: block;
    width: 23.5%;
    height: 0;
}
.brand_shop::before {
    order: 1;
}
.brand_shop::after {}
.brand_shop_item {
    width: 23.5%;
    margin-bottom: 1.25rem;
}
.brand_shop_item a {}
.brand_shop_item a:hover {}
.brand_shop_img {
    height: 175px;
    margin-bottom: 0.5rem;
}
.brand_shop_img img {}
.brand_shop_txt {}
.brand_shop_name {
    font-size: 0.875rem;
    letter-spacing: 0.05rem;
}
.brand_shop_txt ._arrow {}

/* home_contact
---------------------------------------------------- */
#home_contact {
    padding: 1.5rem 0 3rem;
}
#home_contact .inner {
}
#home_contact ._title {}
#home_contact ._title a {
    padding: 3rem;
}
#home_contact ._title a h2 {}

/* footer
---------------------------------------------------- */
footer {
    padding: 0 0 1rem;
}
footer .inner {}
footer ul {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
}
footer ul li {}
footer ul li a {
    font-size: 1rem;
    letter-spacing: 0.1rem;
    padding: 1rem 2rem;
}
#copyright {
    font-size: 1rem;
}

/* contact
---------------------------------------------------- */
#contact {}
.contact_form {
    width: 720px;
    margin: 0 auto;
}
.contact_form ._item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}
.contact_form ._title {
    font-size: 0.875rem;
    letter-spacing: 0.05rem;
    width: 20%;
    text-align: right;
    margin-bottom: 0;
}
.contact_form ._body {}
.contact_form ._body {
    width: 76.5%;
}
.contact_form ._body .error {}
.contact_form ._body input[type='text'], .contact_form ._body input[type='email'], .contact_form ._body textarea {
    padding: 0.5rem 1rem;
}
.contact_form ._body input[type='text'] {}
.contact_form ._body input[type='email'] {}
.contact_form ._body textarea {}
.contact_form ._send input[type='submit'] {
    display: block;
    width: 15rem;
    padding: 0.75rem;
    margin: 0 auto;
}
.contact_form ._send {
    margin: 3rem auto;
}
.contact_complete {
    text-align: center;
}
}

/* 1200
------------------------------------------------------------------------------ */
@media (min-width:1200px){
/* top
---------------------------------------------------- */
#top {}
#top .inner {
    width: 90%;
    max-width: 1600px;
}
#top_slide {
    height: 37.5vw;
}
#top_slide .swiper {}
#top_slide .swiper-wrapper {}
#top_slide .swiper-slide {}
#top_slide .swiper-slide img {}
}

/* 1777
------------------------------------------------------------------------------ */
@media (min-width:1777px){
/* top
---------------------------------------------------- */
#top {}
#top .inner {
    width: 1600px;
}
#top_slide {
    height: 666px;
}
#top_slide .swiper {}
#top_slide .swiper-wrapper {}
#top_slide .swiper-slide {}
#top_slide .swiper-slide img {}

/* header
---------------------------------------------------- */
header .inner {
    max-width: 1600px;
}
}

/* thanks
---------------------------------------------------- */


.brand_item:nth-child(1) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(2) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(3) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(4) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(5) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(6) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(7) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(8) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(9) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(10) {
    border-bottom: 1px solid #606060;
}
.brand_item:nth-child(11) {
    border-bottom: 1px solid #606060;
}


/* ホームページ用新着情報セクション
---------------------------------------------------- */
#home-news {
    padding: 0;
}

#home-news .inner {
    width: 100%;
    padding: 1.5vw 5%;
    background-color: #f9f9f9;
}

.home-news-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.home-news-label {
    font-family: 'Oswald', sans-serif;
    font-size: 3.5vw;
    font-weight: 400;
    letter-spacing: 0.2vw;
    color: #333;
    margin-right: 5vw;
}

.home-news-item {
    display: flex;
    align-items: center;
    flex: 1;
    gap: 3vw;
}

.home-news-date {
    color: #999;
    font-size: 3.25vw;
    white-space: nowrap;
}

.home-news-title {
    flex: 1;
    color: #333;
    font-size: 3.25vw;
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.3s ease;
}

.home-news-title:hover {
    color: #666;
}

.home-news-more {
    display: flex;
    align-items: center;
    width: 5vw;
    transition: transform 0.3s ease;
}

.home-news-more:hover {
    transform: translateX(1vw);
}

.home-news-more img {
    width: 100%;
    height: auto;
}

/* タブレット（768px以上）
---------------------------------------------------- */
@media (min-width: 768px) {
    #home-news {
    }

    .home-news-label {
        font-size: 2.5vw;
        margin-right: 4vw;
    }

    .home-news-date {
        font-size: 2vw;
    }

    .home-news-title {
        font-size: 2vw;
    }

    .home-news-more {
        width: 3vw;
    }
}

/* デスクトップ（1025px以上）
---------------------------------------------------- */
@media (min-width: 1025px) {
    #home-news .inner {
    padding: 1.5rem;
    width: 90%;
    max-width: 1600px;
    }

    .home-news-wrapper {
        max-width: 1200px;
        margin: 0 auto;
    }

    .home-news-label {
        font-size: 1.25rem;
        letter-spacing: 0.1rem;
        margin-right: 3rem;
    }

    .home-news-item {
        gap: 2rem;
    }

    .home-news-date {
        font-size: 0.875rem;
    }

    .home-news-title {
        font-size: 0.875rem;
        letter-spacing: 0.05rem;
    }

    .home-news-more {
        width: 1.5rem;
    }

    .home-news-more:hover {
        transform: translateX(0.5rem);
    }
}

/* 大画面（1777px以上）
---------------------------------------------------- */
@media (min-width: 1777px) {
    .home-news-wrapper {
        max-width: 1600px;
    }
}
