@charset "utf-8";

:root {
    --main-font: 'Shippori Mincho', serif;
    --english-font: 'Baskerville', serif;
    --heading-font: 'Harenosora', sans-serif;
    --main-color: #000000;
    --hover-color: #A52424;
    --button-width: 280px;
    --button-height: 60px;
    --small: 14px;
}

/*===========
   フォント
============*/
@font-face {
    font-family: 'Shippori Mincho';
    src: url('/html/template/default/assets/font/ShipporiMinchoB1-Regular.otf') format('opentype'),
        url('/html/template/default/assets/font/ShipporiMinchoB1-Regular.ttf') format('truetype');
    font-weight: 300;
    /* Regular */
}

@font-face {
    font-family: 'Shippori Mincho';
    src: url('/html/template/default/assets/font/ShipporiMinchoB1-Medium.otf') format('opentype'),
        url('/html/template/default/assets/font/ShipporiMinchoB1-Medium.ttf') format('truetype');
    font-weight: 500;
    /* Medium */
}

@font-face {
    font-family: 'Shippori Mincho';
    src: url('/html/template/default/assets/font/ShipporiMinchoB1-SemiBold.otf') format('opentype'),
        url('/html/template/default/assets/font/ShipporiMinchoB1-SemiBold.ttf') format('truetype');
    font-weight: 600;
    /* SemiBold */
}

@font-face {
    font-family: 'Shippori Mincho';
    src: url('/html/template/default/assets/font/ShipporiMinchoB1-Bold.otf') format('opentype'),
        url('/html/template/default/assets/font/ShipporiMinchoB1-Bold.ttf') format('truetype');
    font-weight: 700;
    /* Bold */
}

@font-face {
    font-family: 'Shippori Mincho';
    src: url('/html/template/default/assets/font/ShipporiMinchoB1-ExtraBold.otf') format('opentype'),
        url('/html/template/default/assets/font/ShipporiMinchoB1-ExtraBold.ttf') format('truetype');
    font-weight: 800;
    /* ExtraBold */
}

/* Baskerville Font */
@font-face {
    font-family: 'Baskerville';
    src: url('/html/template/default/assets/font/Baskerville.ttc') format('truetype');
    font-weight: 300;
}

/* Harenosora Font */
@font-face {
    font-family: 'Harenosora';
    src: url('/html/template/default/assets/font/Harenosora.otf') format('opentype');
    font-weight: 300;
}

/* デフォルトcss */
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 100%;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
}

p {
    margin: 0px;
}

a:link {
    color: var(--main-color);
    text-decoration: none;
}

a:visited {
    color: var(--main-color);
}

a:hover {
    color: var(--hover-color);
    text-decoration: none;
}

a:active {
    color: var(--main-color);
    text-decoration: none;
}

img {
    max-width: 100%;
}

ul {
    padding: 0px;
    list-style: none;
    margin: 0;
}

h1 {
    margin: 0;
}

h2 {
    margin: 0;
}

.oh {
    overflow: hidden;
    height: 100vh;
}

.L {
    float: left;
}

.R {
    float: right;
}

.sp {
    display: none;
}

.pr {
    position: relative;
}

.pa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10;
}

.pa_img {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#menu {
    display: none;
}

.flex {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
}

.flex_sb {
    flex-wrap: wrap;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -moz-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: -moz-flex;
    display: flex;
    justify-content: space-between;
}

/* デフォルトcss ここまで */

/* セレクタを変更せず値を変更 */
html,
button,
input,
select,
textarea {
    font-family: var(--main-font);
    font-weight: 300;
}

body {
    color: var(--main-color);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
    font-family: var(--main-font);
    -webkit-font-smoothing: antialiased;
    letter-spacing: 0.06em;
    overflow-x: hidden;
}

.wrap {
    width: 100%;
}

/* セレクタを変更せず値を変更 ここまで */


/*===========
    共通
============*/
.common_heading {
    font-family: var(--heading-font);
    font-size: 34px;
    font-weight: 300;
}

.common_english {
    font-family: var(--english-font);
    font-size: 14px;
    margin: 0;
}

/*ボタン*/
.common_btn {
    width: 18vw;
    height: 4.1vw;
    border: solid 1px #000;
    font-size: 17px;
    position: relative;
}

.common_btn a {
    width: 100%;
    padding: 1vw 2vw;
    display: block;
    color: var(--main-color);
    transition: all .3s;
}

.common_btn a:hover {
    background: var(--main-color);
    color: #fff;
}

.common_btn .common_btn_line {
    position: absolute;
    right: 0;
    display: block;
    top: 50%;
}

.common_btn a::before,
.common_btn_line::before,
.common_btn_line::after {
    content: "";
    position: absolute;
}

.common_btn a::before,
.common_btn_line::before {
    height: 1px;
    top: 50%;
    background: var(--main-color);
}

.common_btn a::before {
    right: 0;
    width: 2vw;
}

.common_btn a:hover::before {
    background: #fff;
}

.common_btn_line::before {
    right: -3.4vw;
    width: 3.4vw;
}

.common_btn_line::after {
    top: calc(50% - 1px);
    right: -3.5vw;
    height: 0.7vw;
    width: 0.7vw;
    border-bottom: solid 1px #000;
    border-right: solid 1px #000;
    transform: rotate(-45deg) translateY(-50%);
}

.wrap {
    margin: 5.9vw auto;
    padding: 0 10vw;
}

/*===========
   ヘッダー
============*/
.top_header {
    width: 100%;
    height: 120px;
    position: fixed;
    top: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px 0;
    font-size: var(--small);
    font-weight: 300;
}

.top_header .header_logo {
    width: 9vw;

}

.top_header .header_menu {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 0 1.38vw;
}

.menu_top a {
    display: inline-block;
    color: var(--main-color);
    position: relative;
    width: 120px;
    text-align: center;

}

.menu_top a::after {
    content: '';
    display: block;
    width: 100%;
    height: 1px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -7px;
    left: 0;
}

.menu_top a:last-child {
    margin-right: 0;
}

.menu_top a:hover {
    color: var(--hover-color);
}

.menu_top a:hover::after {
    background-color: var(--hover-color);
}

.menu_top a svg {
    vertical-align: sub;
    margin-right: 10px;
    stroke: var(--main-color);
    fill: var(--main-color);
    stroke-width: 0.4;
}

.menu_top a:hover svg {
    stroke: var(--hover-color);
    fill: var(--hover-color);
}

.menu_bottom ul {
    list-style: none;
    display: flex;
    justify-content: center;
    margin-top: 30px;
    gap: 3.8vw;
}

.menu_bottom a {
    display: inline-block;
    color: var(--main-color);
    position: relative;
}

.menu_bottom li:last-child {
    margin-right: 0;
}

.menu_bottom a::after {
    content: '';
    display: block;
    width: 100%;
    height: 4px;
    background-color: var(--main-color);
    position: absolute;
    bottom: -10px;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s;
}

/*2階層目を持つliの設定*/
.menu_bottom ul ul {
    display: block;
}

.menu_bottom li.has_child {
    margin-right: 0.76vw;
}

.menu_bottom li.has_child::before {
    content: '';
    position: absolute;
    right: -20px;
    top: 0.5em;
    width: 0.4vw;
    height: 0.4vw;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    transform: rotate(135deg);
}

.menu_bottom .has_child ul a::after {
    display: none;
}

.menu_bottom li:hover>a {
    color: var(--hover-color);
}

.menu_bottom li:hover a::after {
    background-color: var(--hover-color);
    opacity: 1;
}

.menu_bottom li.has_child {
    position: relative;
}

.menu_bottom li.has_child ul {
    /*絶対配置で位置を指定*/
    position: absolute;
    top: 3px;
    transform: translateX(-10px);
    z-index: -1;
    min-width: 11.8vw;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    padding: 15px;
    /*アニメーション設定*/
    transition: all .3s;
}

/*hoverしたら表示*/
.menu_bottom li.has_child:hover>ul,
.menu_bottom li.has_child ul li:hover>ul,
.menu_bottom li.has_child:active>ul,
.menu_bottom li.has_child ul li:active>ul {
    visibility: visible;
    opacity: 1;
    color: var(--hover-color);
}

/*ナビゲーションaタグの形状*/
.menu_bottom li.has_child ul a {
    margin: 10px auto;
}

.menu_bottom li.has_child ul li {
    width: 100%;
    border-bottom: solid 1px #D5D5D5;
}

.menu_bottom li.has_child ul li:last-child {
    border-bottom: none;
}

.menu_bottom .sp_menu_info {
    width: 100%;
    text-align: center;
    padding: 56px 0 30px;
    font-size: 13px;
}

.menu_bottom .sp_menu_info .menu_sns {
    justify-content: center;
}

.menu_bottom .sp_info_list {
    margin-top: 45px;
}

.sp_menu_info>span {
    display: inline-block;
    font-size: 12px;
    margin-top: 30px;
}

/*=================
   fvエリア
==================*/
#top_fv {
    position: relative;
    width: 100%;
    height: 45.8vw;
    margin: 120px 0 140px;
}

#top_fv .ban_link {
    display: block;
}

#top_fv .slick-arrow {
    display: none !important;
}

#top_fv img {
    width: 100%;
    height: 45.8vw;
    object-fit: cover;
}

#top_fv .fv_text {
    position: absolute;
    top: 27vw;
    left: 6.94vw;
    color: #fff;
    font-size: 29px;
    z-index: 2;
    font-family: var(--heading-font);
    font-weight: 100;
    text-shadow: 0px 2px 4px rgba(0, 0, 0, 0.36);
    letter-spacing: 0.01em;
    line-height: 1.5;
    transition: .3s;
    opacity: 0;
    pointer-events: none;
}

#top_fv .fv_text.active {
    opacity: 1;
    pointer-events: all;
}

#top_fv .bx-wrapper {
    -webkit-box-shadow: none;
    box-shadow: none;
    border: none;
    margin: 0;
}

/*===========
   新着商品
=============*/
#top_products {
    padding: 0 3.4vw;
}

#top_products .flex {
    align-items: center;
}

#top_products .common_btn {
    margin-left: 90px;
}

#top_products .product_grid {
    display: flex;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: calc((100% - 86.8vw) / 4);

}

#top_products .product_item {
    width: 17.36vw;
}

#top_products .product_item a {
    width: 100%;
    display: block;
    transition: color .2s;
}

#top_products .product_image {
    width: 100%;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

#top_products img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

#top_products img.right {
    object-position: right;
}

#top_products a:hover img {
    transform: scale(1.1);
}

#top_products .product_name {
    font-size: 14px;
    margin-left: 0.5em;
    overflow: hidden;
    margin-top: 20px;
    line-height: 1.42;
    max-height: calc(1.42 * 2em);
    text-overflow: ellipsis;
}

#top_products .product_price {
    font-family: var(--price-font);
    font-size: var(--small);
    text-align: right;
}


/*===========
   検索エリア
=============*/

/*map*/
#top_search_area {
    position: relative;
}

#top_search_area .back_ground {
    width: 100%;
    height: 93.88vw;
    position: absolute;
    background-image: url("/html/template/default/assets/img/common/back.jpg");
    background-size: cover;
    z-index: -99;
    top: -20.8vw;
}

#top_search_area .map_area {
    text-align: center;
}

#top_search_area .map_area svg {
    width: 73.6vw;
    height: 50vw;
}

#top_search_area .map_area svg #map_main {
    transform: translate(441px, 40px) rotate(14deg);
    transform-origin: center center;
}

#top_search_area .map_area svg path {
    stroke: #fff;
    fill: #BEBEBE;
}

#top_search_area .map_area svg a path {
    fill: #363030;
    transition: all .2s;
}

#top_search_area .map_area svg a:hover path {
    fill: var(--hover-color);
}

#top_search_area .map_area svg #map_line {
    stroke: #d8d8d8;
    fill: none;
    storoke-width: 1;
}

/*テキストリンク*/
.map_textlink {
    position: absolute;
    right: 27.77vw;
    top: 24.3vw;
}

.map_textlink .highlight {
    color: var(--hover-color);
}

.map_textlink li {
    margin: 10px;
}

.map_textlink li a {
    border-bottom: solid 1px #D8D8D8;
    padding-bottom: 5px;
    transition: all .2s;
}

.map_textlink li a:hover,
.map_textlink li a.highlight {
    border-bottom: solid 1px #A52424;
}

#top_search_area .map_area svg .highlight-fill path {
    fill: var(--hover-color);
}


/*カテゴリー検索*/
#top_search_area .category_area {
    text-align: center;
    margin: 35px auto 85px;
}


.category_area .category_grid {
    display: flex;
    flex-wrap: wrap;
    margin-top: 40px;
    width: 100%;
    gap: 1.3vw;
    justify-content: space-between;
}

.category_area .category_grid::after {
    content: "";
    width: 25.6vw;
    height: 0;
    flex-grow: 2;
}

.category_area .category_item {
    text-align: center;
}

.category_area .category_img {
    width: 25.6vw;
    height: 11.1vw;
    overflow: hidden;

}

.category_area .category_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all .3s;
}

.category_area .category_item:hover img {
    transform: scale(1.1);
}

.category_area .category_name {
    font-size: 20px;
    margin-top: 15px;
}


/*ギフト*/
#top_search_area .gift {
    padding-top: 85px;
    border-top: solid 1px #EAEAEA;
}

.gift .category_grid::after {
    content: "";
    width: 18.75vw;
    height: 0;
    flex-grow: 2;
}

.gift .category_img {
    width: 18.75vw;

}

/*===========
   インスタ
=============*/

#top_instagram {
    background-color: #F7F7F7;
    padding: 25px 0 45px;
}

#top_instagram .flex {
    justify-content: space-between;
}

#top_instagram .insta_Widget_box {
    margin-top: 50px;
}

#top_instagram .common_btn {
    margin-right: 50px;
}

#top_instagram .common_btn:hover svg {
    fill: #fff;
}

#top_instagram .insta_grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 40px 0 0;
}

#top_instagram .insta_item {
    width: 14.6vw;
    aspect-ratio: 1 / 1;
}

#top_instagram .insta_item img {
    width: 100%;
}

/*===========
   配送について
=============*/

#delivery_info .common_heading,
#delivery_info .common_english {
    text-align: center;
}

#delivery_info .delivery_steps {
    display: flex;
    flex-wrap: wrap;
    margin: 40px auto;
    gap: calc((100% - 69vw) / 4);
}

.delivery_step {
    width: 13.8vw;
    margin-bottom: 20px;
    position: relative;
}

.delivery_step::after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 13px solid #000;
    border-right: 0;
    right: -1.73vw;
    top: 90px;
}

.delivery_step:last-child::after,
.delivery_step:nth-child(5n)::after {
    display: none;
}

.delivery_step .step_img {
    width: 13.88vw;
    aspect-ratio: 1 / 1;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.delivery_step img {
    width: 100%;
}

.delivery_step .step_number {
    width: 2.7vw;
    height: 2.7vw;
    font-size: 18px;
    font-weight: 700;
    position: absolute;
    top: 1vw;
    left: 1vw;
    border: solid 1px #000;
    padding: 0.38vw;
}

.delivery_step .step_title {
    font-size: 18px;
    margin-top: 10px;
    font-weight: 500;
}

.delivery_step .step_description {
    width: 100%;
    font-size: var(--small);
    margin-top: 5px;
    line-height: 22px;
    letter-spacing: 0.05em;
}

.delivery_step .step_description .last_line {
    letter-spacing: 0.02em;
}

.payment_info {
    display: flex;
    justify-content: space-between;
    padding-top: 20px;
}

.payment_info h3 {
    font-size: 20px;
    font-weight: 300;
}

.payment_info p {
    font-size: var(--small);
}

.payment_info div {
    width: 50%;
    padding: 5px 0 5px 40px;
}

.payment_info div:first-child {
    border-right: solid 1px #E0E0E0;
    padding: 5px 40px 5px 0;
}

.payment_info .card_list {
    width: 100%;
    background-color: #FAFAFA;
    font-size: var(--small);
    padding: 16px;
    margin-top: 20px;
}

.payment_info .card_list img {
    width: 100%;
    margin: 10px 0;
}

/*===========
   フッター
=============*/
.site_footer {
    background: url("/html/template/default/assets/img/common/back.jpg");
    padding: 1px 0;
    font-size: var(--small);
}

.site_footer .footer_logo {
    text-align: center;
    margin-bottom: 80px;
}

.footer_logo img {
    width: 13.26vw;
}

.site_footer .footer_nav {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.site_footer .footer_nav_col {
    width: 10.4vw;
}

.site_footer .footer_nav_col>a {
    display: block;
    margin-bottom: 40px;
    border-bottom: solid 1px #000;
    padding-bottom: 5px;
}

.site_footer .footer_nav_col svg {
    width: 22px;
    stroke: var(--main-color);
    fill: var(--main-color);
    margin-right: 30px;
    vertical-align: text-bottom;
}

.site_footer .footer_nav_col a:hover svg {
    stroke: var(--hover-color);
    fill: var(--hover-color);
}

.site_footer .footer_nav_col a:hover {
    border-color: var(--hover-color);
}

.menu_sns {
    display: flex;
    padding: 0 1.38vw;
    align-items: center;
}

.menu_sns img {
    width: 2vw;
    margin-left: 1.38vw;
    vertical-align: middle;
}

.site_footer .fotter_nav_list {
    display: flex;
    position: relative;
    padding-bottom: 65px;
    justify-content: space-between;
    min-width: 58vw;
    max-width: 58vw;
    gap: 6.25vw;
}

.site_footer .fotter_nav_list .line {
    position: absolute;
    border-bottom: solid 1px #000;
    width: 100%;
    bottom: 0;
    right: 0;
}

.site_footer .fotter_nav_list li {
    margin-bottom: 20px;
}

.site_footer .fotter_nav_list .has_child ul {
    margin-top: 20px;
    list-style-type: "- ";
    padding-left: 0.5em;
}

.site_footer .footer_info {
    display: flex;
    margin-top: 30px;
    justify-content: space-between;
}

.footer_info .footer_nav_col {
    font-size: 0.7vw;
    letter-spacing: 0.02em;
}

.footer_info .fotter_nav_list {
    width: calc(100% - 25vw);
    gap: 2.08vw;
}

/*=================
   SALASAついて
===================*/
.fade {
    opacity: 0;
}

#page_top {
    width: 100vw;
    height: 34.72vw;
    margin: 120px 0 140px;
    position: relative;
    padding: 13.88vw 0 0 3.47vw;
    max-width: 100vw;
    overflow: hidden;
    z-index: 2;
}

#page_top img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

#page_top h1 {
    font-family: var(--heading-font);
    font-weight: 300;
    color: #fff;
    font-size: 30px;
}

#page_about #page_about_text,
#page_about #page_about_iteminfo {
    text-align: center;
}

#page_about .about_flex_area {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#page_about .about_flex_area:nth-child(odd) {
    flex-direction: row-reverse;
}

.about_flex_area .about_flex_img {
    width: 38.2vw;
    height: 24.3vw;
}

.about_flex_area .about_flex_img img {
    width: 100%;
    height: 100%;
}

.about_flex_area .about_flex_text {
    text-align: left;
    width: 34.7vw;
    line-height: 2em;
}

.about_flex_area .about_flex_text span {
    text-align: right;
    display: inline-block;
    width: 100%;

}

#page_about_iteminfo {
    background: #f7f7f7;
    padding: 80px 0;
}

/*=================
  初めてのお客様へ
===================*/
#page_information {
    margin: 50px auto 140px;
}

#page_information #page_top {
    margin-bottom: 0;
}

#page_information section .text_area {
    margin: 30px 0;
}

#page_information_top .btn_area {
    display: flex;
    flex-wrap: wrap;
    margin: 50px auto 0;
}

#page_information_top .btn_area::after {
    content: "";
    display: block;
    width: 33.3333%;
    height: 0;
    order: 1;
}

#page_information_top .infomation_btn {
    width: calc(33.3333% - 10px);
    margin: 10px auto;
}

#page_information_top .infomation_btn a {
    display: block;
    width: 100%;
    padding: 1.38vw 2.77vw;
    border: solid 1px #000;
    text-align: center;
    transition: all .2s;
}

#page_information_top .infomation_btn a:hover {
    border: solid 1px var(--hover-color);
}

#page_information h2 {
    display: block;
    width: 100%;
    padding: 15px 20px;
    background-color: #F7F7F7;
    font-weight: 300;
}

#page_information .infomation_flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 0;
    margin-bottom: 30px;
    border-bottom: solid 1px #EAEAEA;
}

#page_information .infomation_text {
    width: 100%;
}

#page_information .infomation_flex:last-child {
    border-bottom: none;
    padding: 30px 0 0;
}

.infomation_flex>div {
    margin: 10px;
}

.infomation_text {
    width: 50%;
}

.infomation_text .sub_heading_area {
    display: flex;
    align-items: center;
}

.infomation_text .number {
    padding: 10px;
    border: solid 1px var(--main-color);
    margin-right: 15px;
}

.infomation_text p {
    padding-right: 10px;
}

.infomation_text_img {
    width: 45%;
}

.infomation_text_img img {
    width: 100%;
}

.infomation_column {
    border-bottom: solid 1px #EAEAEA;
    margin-top: 50px;
}

.infomation_column table {
    width: 100%;
    margin-top: 20px;
}

.infomation_column table th,
.infomation_column table td {
    padding: 1em;
    border: 1px solid #ccc;
}

.infomation_column table th {
    width: 20%;
    background: #f1f1f1;
}

.infomation_column table td {
    width: 80%;
}

.infomation_column:first-child {
    padding-top: 20px;
    margin-top: 0;
}

.infomation_column:last-child {
    border-bottom: none;
}

.infomation_column img {
    max-width: 34.72vw;
}

.infomation_column ul {
    list-style: inside;
}


/*=================
  FAQ
===================*/
#page_faq {
    margin-bottom: 150px;
}

.title_area {
    width: 100%;
    text-align: center;
    margin-bottom: 30px;
}

.faq_area {
    list-style: none;
    width: 96%;
    max-width: 900px;
    margin: 0 auto;
}

.faq_area li {
    margin: 10px 0;
}

.faq_area section {
    border: 1px solid #ccc;
    background: #F7F7F7;
}

/*アコーディオンタイトル*/
.faq_area .title {
    position: relative;
    /*+マークの位置基準とするためrelative指定*/
    cursor: pointer;
    font-size: 1rem;
    font-weight: normal;
    padding: 3% 50px 3% 3%;
    transition: all .5s ease;
}

/*アイコンの＋と×*/
.faq_area .title::before,
.faq_area .title::after {
    position: absolute;
    content: '';
    width: 15px;
    height: 2px;
    background-color: var(--main-color);
    transition: all .3s;

}

.faq_area .title::before {
    top: 48%;
    right: 5%;
    transform: rotate(0deg);

}

.faq_area .title::after {
    top: 48%;
    right: 5%;
    transform: rotate(90deg);

}

/*　closeというクラスがついたら形状変化　*/

.faq_area .title.close::before {
    transform: rotate(45deg);
}

.faq_area .title.close::after {
    transform: rotate(-45deg);
}

/*アコーディオンで現れるエリア*/
.faq_area .box {
    display: none;
    /*はじめは非表示*/
    background: #F7F7F7;
    margin: 0 3% 3% 3%;
    padding: 3%;
}

/*=================
  会社概要
===================*/
#page_company {
    margin: 80px auto 140px;
    padding: 50px 0;
}

.company_list {
    width: 90%;
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    text-align: left;
    margin-bottom: 70px;
}

.company_list dt {
    width: 30%;
    margin: 0;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
    line-height: 1.2rem;
    padding: 1.2em 1em 1em 0;
    vertical-align: middle;
    align-items: center;
    font-size: 18px;
}

.company_list dd {
    width: 70%;
    margin: 0;
    padding: 1em 1em 1em 0;
    border-bottom: 1px solid #ccc;
    vertical-align: middle;
    line-height: 1.8;
}

.ec-shelfRole,
.ec-searchnavRole {
    max-width: 1240px;
}

.wrap_min {
    width: 1100px;
    margin: 0 auto;
}

.common_mv {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
}

.common_mv:before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.common_mv .image {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.common_mv .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.common_mv .wrap {
    position: relative;
    z-index: 3;
}

.common_mv .title {
    color: #fff;
    font-size: 50px;
}

.brand_introduction {
    margin-bottom: 140px;
}

.brand_introduction .brand_top {
    padding: 130px 0 170px 0;
}

.brand_introduction .brand_top .fl_wrap {
    align-items: center;
}

.brand_introduction .brand_top .image {
    width: 710px;
    height: 530px;
}

.brand_introduction .brand_top .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand_introduction .brand_top .text_area {
    width: calc(100% - 750px);
}

.brand_introduction .brand_top .text_area .catch_box {
    margin-bottom: 85px;
}

.brand_introduction .brand_top .text_area .catch_box .en {
    font-size: 14px;
    margin-bottom: 1.5em;
}

.brand_introduction .brand_top .text_area .catch_box .jp {
    font-size: 29px;
}

.brand_introduction .brand_top .text_area table {
    width: 100%;
}

.brand_introduction .brand_top .text_area table th,
.brand_introduction .brand_top .text_area table td {
    padding: 1em;
    border-bottom: 1px solid #EAEAEA;
    font-weight: normal;
}

.brand_introduction .brand_top .text_area table th {
    width: 25%;
}

.brand_introduction .brand_top .text_area table td {
    width: 75%;
}

.brand_introduction .brand_history {
    padding-bottom: 120px;
}

.brand_introduction .brand_history .image {
    height: 440px;
    margin-bottom: 80px;
}

.brand_introduction .brand_history .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand_introduction .brand_history .text_area {
    justify-content: center;
}

.brand_introduction .brand_history .text_area .title_box {
    text-align: center;
}

.brand_introduction .brand_history .text_area .title_box .jp {
    font-size: 34px;
    line-height: 1.5;
}

.brand_introduction .brand_history .text_area .information_text {
    width: 555px;
    margin-left: 110px;
}

.brand_introduction .brand_history .text_area .information_text .text {
    line-height: 2;
}

.brand_introduction .brand_features {
    position: relative;
}

.brand_introduction .brand_features .wrap {
    position: relative;
    padding-top: 150px;
}

.brand_introduction .brand_features .sub_image {
    width: 360px;
    height: 250px;
    position: absolute;
    right: 0;
    top: 0;
}

.brand_introduction .brand_features .sub_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand_introduction .brand_features .fl_wrap {
    align-items: center;
}

.brand_introduction .brand_features .image {
    width: 610px;
    height: 750px;
    position: relative;
    z-index: 2;
}

.brand_introduction .brand_features .image:before {
    content: "";
    position: absolute;
    right: 130px;
    ;
    top: -100px;
    width: 1000px;
    height: 100%;
    background: #FFFDF8;
    z-index: -1;
}

.brand_introduction .brand_features .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.brand_introduction .brand_features .text_area {
    width: 490px;
}

.brand_introduction .brand_features .text_area .title_box {
    margin-bottom: 40px;
}

.brand_introduction .brand_features .text_area .title_box .jp {
    font-size: 34px;
    line-height: 1.5;
}

.brand_introduction .brand_features .text_area .text {
    line-height: 2;
}

.ec-layoutRole .ec-layoutRole__contents {
    margin-right: 0;
    margin-left: 0;
    max-width: unset;
    display: block;
}

.ec-shelfGrid .ec-shelfGrid__item {
    padding: 0 !important;
}

.ec-shelfGrid__item a {
    display: block;
    color: #333;
    border: 1px solid #EAEAEA;
    padding: 30px 23px;
}

.ec-shelfGrid__item a .item_name {
    margin-bottom: 1.5em;
}

.ec-shelfGrid__item a .price02-default {
    text-align: right;
}

.ec-shelfGrid .ec-shelfGrid__item-image {
    margin-bottom: 25px;
}

.ec-shelfGrid .ec-shelfGrid__item {
    margin-bottom: 0;
}

.item_list_title {
    text-align: center;
    width: 100%;
    margin: 80px 0 30px 0;
    font-size: 26px;
}

#page_homepage .ec-layoutRole .ec-layoutRole__main,
#page_user_data .ec-layoutRole .ec-layoutRole__main {
    padding: 0;
}

#page_product_list .ec-layoutRole .ec-layoutRole__main {
    padding: 100px 0;
}

.ec-layoutRole .ec-layoutRole__main {
    padding: 200px 0 100px 0;
}

.ec-shelfGrid .ec-shelfGrid__item-image {
    width: 250px;
}

.ec-shelfGrid .ec-shelfGrid__item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ec-productRole .ec-productRole__price {
    color: initial;
}

#page_workshop .box+.box {
    margin-top: 80px;
}

#page_workshop .box .title {
    font-size: 20px;
    border-bottom: 1px solid;
    margin-bottom: 1em;
    padding-bottom: .5em;
}

#page_workshop .box ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#page_workshop .box ul li {
    transition: .3s;
}

#page_workshop .box ul li:hover {
    opacity: .7;
}

#page_workshop .box ul li .image {
    height: 200px;
    margin-bottom: 10px;
}

#page_workshop .box ul li .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#page_workshop .box ul li .text_area .name {
    font-size: 18px;
    margin-bottom: .5em;
}

#page_workshop .box ul li .text_area .text {
    font-size: 14px;
}

.comingsoon {
    font-size: 25px;
    font-weight: 600;
    text-align: center;
}

.ec-productRole .ec-productRole__actions .ec-select::before {
    display: block;
    white-space: nowrap;
    margin: 0 0 8px;
}

.ec-productRole .ec-productRole__actions.class_40 .ec-select::before {
    content: "台紙のメッセージ";
}

.ec-productRole .ec-productRole__actions.class_37 .ec-select::before {
    content: "ふた（選択してください）";
}

.ec-productRole .ec-productRole__actions.class_33 .ec-select::before {
    content: "ショッパー（選択してください）";
}

.ec-productRole .ec-productRole__actions.class_33 .ec-select:nth-child(2)::before {
    content: "カラー展開（選択してください）";
}

.ec-productRole .ec-productRole__actions.class_25 .ec-select::before,
.ec-productRole .ec-productRole__actions.class_24 .ec-select::before {
    content: "ショッパー（選択してください）";
}

.ec-productRole .ec-productRole__actions.class_25 .ec-select:nth-child(2)::before,
.ec-productRole .ec-productRole__actions.class_24 .ec-select:nth-child(2)::before {
    content: "カラー展開（選択してください）";
}

.common_link_btn {
    display: block;
    font-size: 16px;
    text-align: center;
    padding: 1em;
    line-height: 1.5;
    width: 380px;
    border: 1px solid #000;
    color: #fff;
    margin: 0 auto;
    transition: .3s;
}

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

@media (max-width: 750px) {

    /* デフォルトcss */
    .pc {
        display: none !important;
    }

    .sp {
        display: block;
    }

    /* セレクタを変更せず値を変更 */
    body {
        font-size: 13px;
        line-height: 1.5;
        /* min-width: 390px; */
    }

    /* セレクタを変更せず値を変更 ここまで */
    #sp_menu {
        display: block;
        margin-left: auto;
    }

    /*===========
        共通
    ============*/
    .common_heading {
        font-size: 28px;
    }

    .common_english {
        font-size: 12px;
    }

    /*ボタン*/
    .common_btn {
        width: 74.35vw;
        height: 12.82vw;
        background: var(--main-color);
        font-size: 17px;
        position: relative;
    }

    .common_btn a {
        width: 100%;
        padding: 3.33vw 7.69vw;
        color: #fff;
        text-align: left;
    }

    .common_btn a::before {
        right: 7.94vw;
        width: 7.435vw;
        background: #fff;
    }

    .common_btn .common_btn_line {
        z-index: 2;
    }

    .common_btn_line::before {
        right: 0;
        width: 5.12vw;
    }

    .common_btn_line::after {
        top: calc(50% - 0.5px);
        right: 7.43vw;
        height: 1.53vw;
        width: 1.53vw;
        border-bottom: solid 1px #fff;
        border-right: solid 1px #fff;
        transform: rotate(-45deg) translateY(-50%);
    }

    .wrap {
        padding: 0 5.12vw;
        margin: 60px auto;
    }

    /*===========
	   ヘッダー
	============*/
    .top_header {
        padding: 10px 10px;
        height: 70px;
    }

    .top_header .header_menu {
        display: flex;
        align-items: center;
        margin-right: 50px;
    }

    .top_header .header_logo {
        width: 89px;

    }

    .menu_top {
        display: flex;
        align-items: center;
        margin-left: auto;
        gap: 0 5.89vw;
    }

    .menu_top a {
        width: 6.4vw;
    }

    .menu_top a span {
        display: none;
    }

    .menu_top a::after {
        content: '';
        display: none;
    }

    .menu_top a svg {
        margin: 0 auto;
    }

    .menu_bottom {
        position: fixed;
        z-index: -1;
        opacity: 0;
        /*はじめは透過0*/
        /*ナビの位置と形状*/
        bottom: 0;
        left: 0;
        width: 100%;
        height: calc(100vh - 69.5px);
        /*ナビの高さ*/
        background-image: url("/html/template/default/assets/img/common/back.jpg");
        background-size: contain;
        box-shadow: inset 0 2px 2px rgba(0, 0, 0, 0.1);
        /*動き*/
        transition: all 0.3s;
        display: none;
    }

    .menu_bottom.menu_active {
        opacity: 1;
        display: block;
    }

    .menu_bottom .sp_menu_area {
        position: fixed;
        z-index: 999;
        width: 100%;
        height: 93vh;
        overflow: auto;
        -webkit-overflow-scrolling: touch;
    }

    .menu_bottom ul {
        display: none;
        z-index: 999;
        padding: 0;
        width: 100%;
        margin-top: 70px;
    }

    .menu_bottom li {
        width: 300px;
        margin: auto;
    }

    .menu_bottom li.has_child ul {
        position: relative;
        left: 0;
        top: 0;
        width: 100%;
        visibility: visible;
        opacity: 1;
        display: none;
        transition: none;
        margin: 0 auto;
        transform: translateX(0);
        background-color: rgba(255, 255, 255, 0.5);
        z-index: 2;
    }

    .menu_bottom li.has_child {
        margin-right: auto;
    }

    .menu_bottom li.has_child::before {
        right: 20px;
        top: calc(15px + 0.5em);
        transform: rotate(45deg);
    }

    .menu_bottom li.has_child ul a {
        margin: 0;
    }

    .menu_bottom.menu_active ul {
        display: block;
    }

    .menu_bottom li a {
        color: #333;
        text-decoration: none;
        padding: 15px 20px;
        display: block;
        text-transform: uppercase;
        letter-spacing: 0.1em;
    }

    .menu_bottom li a::after {
        height: 1px;
        background-color: #D5D5D5;
        opacity: 1;
        bottom: 0;
    }

    .openbtn {
        position: fixed;
        z-index: 9999;
        /*ボタンを最前面に*/
        top: 27px;
        right: 13px;
        cursor: pointer;
        width: 28px;
        height: 16px;
    }

    /*×に変化*/
    .openbtn span {
        display: inline-block;
        transition: all .4s;
        position: absolute;
        height: 1.5px;
        background-color: var(--main-color);
        width: 100%;
    }

    .openbtn span:nth-of-type(1) {
        top: 0px;
    }

    .openbtn span:nth-of-type(2) {
        top: 8px;
    }

    .openbtn span:nth-of-type(3) {
        top: 16px;
    }

    .openbtn.active span:nth-of-type(1) {
        top: 0px;
        transform: translateY(6px) rotate(-30deg);
    }

    .openbtn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .openbtn.active span:nth-of-type(3) {
        top: 12px;
        transform: translateY(-6px) rotate(30deg);
    }

    /*=================
       fvエリア
    ==================*/
    #top_fv {
        margin: 70px 0 70px;
        height: 130vw;
    }

    #top_fv .slider img {
        height: 100%;
    }

    #top_fv .fv_text {
        position: absolute;
        top: inherit;
        bottom: 11.53vw;
        left: 5.12vw;
        font-size: 24px;
        line-height: 1.54;
    }

    /*===========
       新着商品
    =============*/
    #top_products {
        padding: 0 50px 70px;
        position: relative;
    }

    #top_products .flex {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }

    #top_products .common_btn {
        margin: 0 auto;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
    }

    #top_products .product_grid {
        flex-wrap: wrap;
        flex-direction: column;
        margin-top: 0;
        height: 155.89vw;
    }

    #top_products .product_item {
        width: 74.35vw;
        aspect-ratio: 29 / 21;
        margin: 0 auto;
    }

    #top_products .bx-wrapper {
        -webkit-box-shadow: none;
        box-shadow: none;
        border: none;
        background: inherit;
    }

    #top_products .bx-wrapper .bx-pager.bx-default-pager a {
        background: #BEBEBE;
        margin: 0 10px;
    }

    #top_products .bx-wrapper .bx-pager.bx-default-pager a.active {
        background: var(--hover-color);
    }

    #top_products .product_image {
        height: 53.84vw;
    }

    #top_products .product_name {
        margin: 10px auto 0;
        width: 58.9vw;
        height: 2.6em;
    }

    #top_products .product_price {
        padding: 0 0 15px;
    }

    /*===========
       検索エリア
    =============*/

    /*map*/
    #top_search_area .back_ground {
        height: 370vw;
        top: -175vw;
    }

    #top_search_area .map_area svg {
        width: 97.4vw;
        height: 97.4vw;
    }

    #top_search_area .map_area svg #map_main {
        transform: rotate(0deg) translate(30px, 0);
    }

    #top_search_area .common_btn {
        margin: 30px auto 0;
    }

    #top_search_area .hide-area {
        display: none;
    }

    button.modaal_close {
        width: 74.35vw;
        height: 12.8vw;
        background-color: var(--main-color);
        display: block;
        color: #fff;
        position: relative;
        padding: 0 6.4vw;
        text-align: left;
        font-size: 17px;
        top: 66.666vw;
    }

    button.modaal_close::after {
        content: "×";
        position: absolute;
        right: 6.41vw;
        top: 13px;
        font-size: 23px;
    }

    button.modaal-close {
        display: none;
    }

    .modaal-content-containe {
        position: relative;
        height: 94.87vw;
    }

    .modaal-content-container ul {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translateY(-50%) translateX(-50%);
    }

    .modaal-content-container li {
        margin-bottom: 20px;
        border-bottom: solid 1px #D8D8D8;
        padding-bottom: 5px;
    }


    /*カテゴリー検索*/
    #top_search_area .category_area {
        margin: 90px auto 20px;
    }

    .category_area .category_grid {
        margin-top: 30px;
    }

    .category_area .category_item {
        margin: 0 0 25px 0;
    }

    .category_area .category_img {
        width: 43.5vw;
        height: 23vw;

    }

    .category_area .category_name {
        font-size: 16px;
    }

    /*ギフト*/
    #top_search_area .gift {
        padding-top: 50px;
        margin: 25px auto;
    }

    .gift .category_img {
        width: 43.5vw;
        height: 43.5vw;

    }

    /*===========
       インスタ
    =============*/

    #top_instagram {
        background-color: #F7F7F7;
        padding: 25px 0 100px;
        position: relative;
    }

    #top_instagram .insta_grid {
        overflow-x: scroll;
        padding: 0;
        scroll-snap-type: x mandatory;
        flex-wrap: nowrap;
        width: 107%;
    }

    #top_instagram .insta_item {
        width: 53.84vw;
        aspect-ratio: 1 / 1;
        flex: 0 0 auto;
        scroll-snap-align: start;
        box-sizing: border-box;
        margin-right: 15px;
    }

    #top_instagram .flex {
        display: block;
        text-align: center;
        margin-bottom: 30px;
    }

    #top_instagram .common_btn {
        margin: 0 auto;
        position: absolute;
        bottom: 70px;
        left: 50%;
        transform: translateX(-50%);
    }

    #top_instagram .common_btn svg {
        fill: #fff;
        position: absolute;
        right: 30px;
        top: 15px;
    }

    #top_instagram .common_btn a::before,
    #top_instagram .common_btn .common_btn_line {
        display: none;
    }

    /*===========
       配送について
    =============*/

    #delivery_info .delivery_steps {
        flex-direction: column;
        margin: 40px auto 0;
    }

    .delivery_step {
        width: 100%;
        margin-bottom: 30px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        display: flex;
        align-items: center;
        padding-bottom: 10px;
    }

    .delivery_step::after {
        border-right: 15px solid transparent;
        border-left: 15px solid transparent;
        border-top: 10px solid #000;
        border-bottom: 0;
        right: inherit;
        top: inherit;
        bottom: -20px;
        left: 50%;
        transform: translateX(-50%);
    }


    .delivery_step .step_img {
        width: 38%;
        height: auto;
        box-shadow: 0 0 0;
        text-align: center;
        position: relative;
    }

    .delivery_step .step_text {
        width: 53.84vw;
        padding: 0 10px 10px 0;
    }

    .delivery_step .step_number {
        width: 7.69vw;
        height: 7.69vw;
        top: 2.3vw;
        left: 2.3vw;
        font-size: 15px;
    }

    .delivery_step .step_title {
        font-size: 16px;
        margin-top: 10px;
        font-weight: 500;
    }

    .delivery_step .step_description {
        width: 100%;
        line-height: 21px;
        font-size: 13px;
    }

    .delivery_step .step_description .last_line {
        letter-spacing: inherit;
    }

    .payment_info {
        flex-direction: column;
    }

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

    .payment_info div:first-child {
        border-right: none;
        padding: 0;
    }

    .payment_info .card_list {
        background-color: inherit;
        border-bottom: solid 1px #EAEAEA;
        font-size: var(--small);
        padding: 16px 0 30px;
    }

    .payment_info .card_list img {
        width: 100%;
    }

    /*===========
       フッター
    =============*/
    .site_footer .wrap {
        margin: 60px auto 30px;
    }

    .footer_logo img {
        width: 33.333vw;
    }

    .site_footer .footer_nav {
        justify-content: center;
    }

    .site_footer .footer_nav_col {
        width: 230px;
    }

    .site_footer .footer_nav_col>a {
        margin-bottom: 30px;
        padding-bottom: 20px;
        font-size: 16px;
    }

    .site_footer .footer_nav_col svg {
        width: 7.17vw;
        height: 7.17vw;
        margin-left: 11.53vw;
        vertical-align: middle;
    }

    .menu_sns {
        justify-content: center;
    }

    .menu_sns img {
        width: 7.43vw;
        margin-left: 5.12vw;
        vertical-align: middle;
    }

    .site_footer .footer_info {
        display: block;
        margin-top: 80px;
        text-align: center;
        position: relative;
    }

    .footer_info .footer_nav_col {
        font-size: 12px;
        position: absolute;
        bottom: 0;
        width: 100%;
    }

    .footer_info .fotter_nav_list {
        flex-wrap: wrap;
        width: 100%;
        font-size: 13px;
        justify-content: center;
        max-width: inherit;
        min-width: inherit;
    }

    .footer_info .fotter_nav_list p {
        margin-right: 0;
        letter-spacing: 0;
    }

    .footer_info .fotter_nav_list p:nth-child(odd) {
        margin-right: 2.56vw;
        position: relative;
    }

    .footer_info .fotter_nav_list p:nth-child(odd)::after {
        content: "/";
        position: absolute;
        right: -2.56vw;
    }

    /*=================
       SALASAついて
    ===================*/
    #page_top {
        height: 76.9vw;
        margin: 70px 0;
        padding: 30.76vw 0 0 5.12vw;
    }

    #page_top h1 {
        font-size: 28px;
    }

    #page_about .common_heading {
        font-size: 25px;
    }

    #page_about .about_flex_area {
        flex-wrap: wrap;
    }

    #page_about .about_flex_area:nth-child(odd) {
        flex-direction: inherit;
    }

    .about_flex_area .about_flex_img {
        width: 100%;
        height: 64.1vw;
    }

    #page_about_text .wrap {
        margin: 30px auto 0;
    }

    #page_about_text {
        margin: 80px auto;
    }

    #page_about_text .wrap:nth-child(n+3) {
        margin: 0 auto;
    }

    #page_about_text .wrap:nth-child(n+3) .about_flex_text {
        margin: 0 auto;
    }

    .about_flex_area .about_flex_text {
        width: 100%;
        margin-top: 40px;
    }


    /*=================
      初めてのお客様へ
    ===================*/
    #page_information {
        margin: 70px auto 30px;
    }

    #page_information section p {
        margin: 20px 0;
    }

    #page_information_top .btn_area {
        margin-top: 30px;
    }

    #page_information_top .btn_area::after {
        display: none;
    }

    #page_information_top .infomation_btn {
        width: 100%;
    }

    #page_information_top .infomation_btn a {
        display: block;
        padding: 20px 40px;
    }

    #page_information .infomation_flex {
        flex-wrap: wrap;
        margin-bottom: 0
    }

    .infomation_flex>div {
        margin: auto;
    }

    .infomation_text {
        width: 100%;
    }

    .infomation_text p {
        padding-right: 0;
    }

    .infomation_text_img {
        width: 100%;
    }

    .infomation_column img {
        max-width: 90%;
    }

    .infomation_column {
        margin: 20px auto;
    }

    .infomation_column:first-child {
        padding-top: 10px;
    }


    /*=================
      FAQ
    ===================*/
    #page_faq {
        margin-bottom: 80px;
    }

    .faq_area section {
        max-width: 95%;
        margin: 0 auto 10px;
    }

    /*=================
      会社概要
    ===================*/
    #page_company {
        margin: 0px auto 80px;
        padding: 0;
    }

    .company_list {
        margin: 0 auto 50px;
    }

    .company_list dt {
        width: 100%;
        font-size: 16px;
        border-bottom: none;
        padding-bottom: 0;
    }

    .company_list dd {
        width: 100%;
    }

    .wrap_min {
        width: 90%;
    }

    .common_mv {
        height: 40vw;
    }

    .common_mv .title {
        font-size: 7vw;
    }

    .brand_introduction {
        margin-bottom: 20vw;
    }

    .brand_introduction .brand_top {
        padding: 20vw 0;
    }

    .brand_introduction .brand_top .image {
        width: 100%;
        height: 50vw;
        margin-bottom: 5vw;
    }

    .brand_introduction .brand_top .text_area {
        width: 100%;
        margin-bottom: 10vw;
    }

    .brand_introduction .brand_top .text_area .catch_box .en {
        font-size: 3vw;
    }

    .brand_introduction .brand_top .text_area .catch_box .jp {
        font-size: 5vw;
    }

    .brand_introduction .brand_history {
        padding-bottom: 20vw;
    }

    .brand_introduction .brand_history .image {
        height: 40vw;
        margin-bottom: 10vw;
    }

    .brand_introduction .brand_history .text_area .title_box {
        margin-bottom: 5vw;
    }

    .brand_introduction .brand_history .text_area .title_box .jp {
        font-size: 6vw;
    }

    .brand_introduction .brand_history .text_area .information_text {
        width: 100%;
        margin-left: 0;
    }

    .brand_introduction .brand_features .wrap {
        padding-top: 0vw;
    }

    .brand_introduction .brand_features .sub_image {
        width: 30vw;
        height: 20vw;
    }

    .brand_introduction .brand_features .image {
        width: 100%;
        height: 40vw;
        margin-bottom: 10vw;
    }

    .brand_introduction .brand_features .image:before {
        right: 10vw;
        top: -10vw;
        width: 100%;
    }

    .brand_introduction .brand_features .text_area {
        width: 100%;
    }

    .brand_introduction .brand_features .text_area .title_box {
        margin-bottom: 5vw;
    }

    .brand_introduction .brand_features .text_area .title_box .jp {
        font-size: 6vw;
    }

    .ec-shelfGrid__item a {
        padding: 4vw;
    }

    .ec-shelfGrid__item a .item_name {
        margin-bottom: 1em;
    }

    .ec-shelfGrid__item a .price02-default {
        text-align: left;
    }

    .ec-shelfGrid .ec-shelfGrid__item-image {
        margin-bottom: 4vw;
    }

    .item_list_title {
        margin: 10vw 0 5vw 0;
        font-size: 5vw;
    }

    .ec-shelfGrid .ec-shelfGrid__item-image {
        width: 100%;
    }

    .ec-layoutRole .ec-layoutRole__main {
        padding: 100px 0;
    }

    #page_product_list .ec-layoutRole .ec-layoutRole__main {
        padding: 70px 0;
    }

    #page_workshop .box+.box {
        margin-top: 20vw;
    }

    #page_workshop .box .title {
        font-size: 4vw;
    }

    #page_workshop .box ul {
        grid-template-columns: repeat(2, 1fr);
    }

    #page_workshop .box ul li:hover {
        opacity: 1;
    }

    #page_workshop .box ul li .image {
        height: 30vw;
    }

    #page_workshop .box ul li .text_area .name {
        font-size: 3.5vw;
    }

    #page_workshop .box ul li .text_area .text {
        font-size: 3vw;
    }

    .infomation_text .number {
        position: absolute;
        left: 0;
        top: 0;
    }

    .infomation_text .sub_heading_area {
        position: relative;
        padding-left: 80px;
    }

    #top_fv .slick-track,
    #top_fv .slick-list,
    #top_fv .slider {
        height: 100%;
    }

    .common_link_btn {
        font-size: 3.6vw;
        width: 100%;
    }

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