@charset "UTF-8";
/* CSS Document */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video{
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    vertical-align: baseline;
    word-break: break-all;
}

img[width="0"],img[width="1"]{
    display: none;
}

article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section{
    display: block;
}

body{
    line-height: 1;
    position: relative;
}

ol, ul{
    list-style: none;
}

blockquote, q{
    quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after{
    content: "";
    content: none;
}

table{
    border-collapse: collapse;
    border-spacing: 0;
}

pre{
    font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
    white-space: pre-wrap;
}

body{
    font-family: "Montserrat", "ヒラギノ角ゴ Pro W3", Hiragino Kaku Gothic Pro," メイリオ", Meiryo, Osaka," ＭＳ Ｐゴシック", MS PGothic," sans-serif";
    font-size: 16px;
    background-color: #ffffff;
    line-height: 1.6;
}

a{
    color: #000;
    text-decoration:  none;
}

a:hover{
    text-decoration: underline;
}

a:hover img{
    opacity: 0.8;
}

.wrapper{
    width: 100%;
    overflow: hidden; /* 親要素の外にはみ出た部分を隠す */
}

.head{
    background-color: #eee;
    display: flex;
    align-items: center;
    position: relative;
    padding: 0 2%;
    z-index: 10000;
}

.logo{
    margin-right: auto;
    max-width: 20%;
    width: 20%;
}

.logo img{
    max-width: 100%;
    max-height: 140px;
}

.navbar{
    width: 60%;
    margin-left: 2%;
}

.navbar-list{
    display: flex;
}

.navbar-list-main{
    width: 20%;
    font-size: 16px;
    font-weight: bold;
}


.navbar-list-main-link{
    display: block;
    position: relative;
    padding: 40px 0; /* 上下のpaddingを調整 */
    text-align: center;
    word-wrap: break-word;
    box-sizing: border-box;
    cursor: pointer;
    white-space: nowrap;
    line-height: 40px; /* 全てのメニューの高さを統一 */
}

.navbar-list-main-link:hover{
    background-color: #FFF;
    text-decoration: none;
    padding: 40px 0; /* 上下のpaddingを調整 */
}

.navbar-list-parent:hover{
    background-color: #FFF;
}

.navbar-list-parent:hover .navbar-list-main-link {
    background-color: #FFF; /* 親要素のホバー時にも背景色を白く */
}

.action{
    width: 200px;
    margin: 0 0 0 24px;
    position:  relative;
    z-index: 10000;
}

.action-search-input{
    border: solid 1px #CCC;
    padding: 8px;
    width: 100%;
    box-sizing: border-box;
    border-radius: 20px;
}

.action-search-button{
    position: absolute;
    top: 2px;
    right: 4px;
    padding: 4px;
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    appearance: none;
}

.action-search-button i{
    font-weight: bold;
    color: #999;
}

.action-button{
    margin-bottom: 16px;    
}

.action-button-list{
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}

.action-button-list i{
    flex-flow: row;
    font-size: 28px;
}

.button-link{
    background-color: #CCC;
    padding: 9px 10px 4px;
    border-radius: 50%;
    display: block;
    margin-left: 8px;
}

.action-button-list a:hover{
    background-color: #FFF;
}

.action-search{
    position: relative;
}

.button-sns{
    position: relative;
}

.button-cart{
    position: relative;
}

.cart-badge{
    display: inline-block;
    background: #EF4933;
    color: #fff;
    border-radius: 50%;
    position: absolute;
    top: -8px;
    right: -8px;
    line-height: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    font-size: 12px;
}

.navbar-sub{
    display: none;
}

.navbar-sub-in{
    position: absolute;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    top: 120px;
    left: 0;
    width: 100%;
    background-color: #FFF;
    padding: 40px 40px 24px;
    box-sizing: border-box;
    z-index: 10000;
}

.navbar-sub-list{
    flex-basis: 160px;
    margin: 0 16px 16px 0;
}


.navbar-sub-list-title{
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 16px;
}

.navbar-sub-list-data{
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: normal;
}

.navbar-sub-list-data a{
    color: #000;
}

/* COMPANYメニューのみを対象にする */
.navbar-list-main.company .navbar-sub-list {
    display: flex;
    flex-direction: row;
    justify-content: flex-start; /* 左寄せに変更 */
    align-items: center; /* 垂直方向の中央寄せを追加 */
    flex-wrap: nowrap;
}

.navbar-list-main.company .navbar-sub-list-title, 
.navbar-list-main.company .navbar-sub-list-data {
    margin: 0 40px; /* 余白を調整 */
    white-space: nowrap; /* 改行しないようにする */
}




/* main */
.main-visual{
    text-align: center;
}

#M_slider{
    height: 100%;
}
.main-visual li{
    display: flex;
    align-items: center;
    height: 100%;
}

.main-visual a,{
    margin: auto;
　　max-width: 100%;
}

.bx-wrapper {
  border: none !important;
}

.main-visual img {
    margin: auto;
    width: 100%;
}

.main-contents{
    max-width: 1100px;
    margin:  0 auto;
    padding: 0 20px;
}

.item-info{
    display: flex;
    flex-direction: column;
}

.item-info-name{
    font-weight: bold;
}

.item-info-price{
    font-weight: normal;
}

.item-info-sale {
    color: #E03F3D;
}

.item-price-down {
    font-size: 14px;
    margin-left: 8px;
}

.item-list{
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.item-list li{
    margin: 0 8px 24px;
}

.pickup-list li{
    width: calc(100% / 2 - 16px);
}


.item-list-img {
    text-align: center;
    margin-bottom: 8px;
    position: relative;
    width: 100%; /* 親要素の幅 */
    padding-top: 120%; /* 縦の長さを10%短くした新しい縦横比 */
    overflow: hidden; /* 親要素の外にはみ出た部分を隠す */
}

.item-list-img img {
    position: absolute; /* 親要素内に絶対配置 */
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 表示したい範囲(100%) */
}











.item-soldout{
    position: absolute; /* 絶対配置を使用 */
    top: 50%; /* 親要素の上から50%の位置に配置 */
    transform: translateY(-50%); /* 上下中央に揃える */
    line-height: 32px; /* 行の高さを32pxに設定 */
    display: inline-block; /* インラインブロック要素として表示 */
    background: rgba(255,255,255,0.75); /* 背景色を半透明の白に設定 */
    left: 0; /* 親要素の左端に配置 */
    width: 100%; /* 幅を親要素の100%に設定 */
    text-align: center; /* テキストを中央揃えに設定 */
}



.newitems-list li{
    width: calc(100% / 4 - 16px);
}

.ranking-list li{
	width: calc(100% / 4 - 16px);
}

.checked-list li{
	width: calc(100% / 4 - 16px);
}

.item-ranking-num{
	position: absolute;
	left: 8px;
	top: 8px;
	background: #57886C;
	color: #fff;
	width: 30px;
	height: 30px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
}


.section-title{
    text-align: center;
    font-size: 18px;
    font-weight: normal;
    margin: 60px 0 40px;
    position: relative;
}

.section-title-checked,
.section-title-newitems,
.section-title-pickup{
    text-align: center;
    font-size: 36px;
	margin: 120px 0 50px;
    position: relative;
}

.item-view-button{
    display: block;
    width: 300px;
    padding: 16px 48px;
    margin: 40px auto 0;
    text-align: center;
    border: solid 3px #000;
    font-weight: bold;
    box-sizing: border-box;
}

.item-view-button:hover{
    background: #000;
    font-weight: bold;
    color: #FFF;
    text-decoration: none;
}

.item-view-btn {
    text-align: center;
    margin-top: 40px;
}

.item-view-btn a {
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    background-color: #999;
    border-radius: 5px;
    padding: 16px 80px;
}

.item-view-btn a:hover {
    text-decoration: none;
    background-color: #AAA;
}

.search-result{
    margin-bottom: 48px;
    text-align: center;
}

.search-count span{
	margin: 0 2px;
}

.pager-wrap {
    text-align: center;
    margin-top: 80px;
}

.pager-list {
    display: inline-block;
    font-weight: bold;
}

.pager-list a,
.pager-selected{
    display: inline-block;
    padding: 0 16px;
}

.pager-list a:hover {
    color: #666;
    text-decoration: none;
}

.pager-selected {
    color: #ccc;
}

.pager-button a {
    display: block;
    color: #FFF;
    font-size: 12px;
    vertical-align: 1px;
    background-color: #000;
    padding: 6px 10px;
}

.pager-button a:hover {
    color: #FFF;
    background-color: #666;
}

.breadcrumb {
    margin-top: 40px;
}

.breadcrumb-list {
    display: inline-block;
    font-size: 14px;
}

.breadcrumb-list:not(:last-child):after {
    content: ">";
    color: #666;
    margin: 0 4px 0 8px;
}

.main-contents-detailitem {
    margin-top: 3%;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.item-image {
    margin-top: 5%;
    margin-bottom: 5%;
    width: 50%;
}


.item-image-list {
	margin-bottom: 10px;
	line-height: 0;
	display: flex;
	align-items: center; }
.item-image-list img {
	max-width: 100%; }
.item-image-large {
    position: relative	;
	margin: 0 auto 1rem; 
	padding-bottom: 1rem; }
.item-image-large .item-image-list {
    position: absolute;
	top: 60%;
	left: 50%;
	width: 100%;
	height: 100%;
	transform: translateX(-50%) translateY(-50%); }
.item-image-small {
    display: flex;
    flex-wrap: wrap;
    position: relative;
   margin-top: 1rem; /* 空白を減らすために調整 */
    margin-bottom: 5%;
}

.item-image-small .item-image-list {
	margin: 2px;
	padding: 2px;
	width: 100px;
	height: 134px; 
}


.item-none-text {
    text-align: center;
    margin-top: 16px;
    font-size: 20px;
}

.item-detail {
width: 46%;
padding-left: 3%;
box-sizing: border-box;
}



.item-brand-title {
    font-size: 18px;
    font-weight: bold;
}

.item-detail-title {
    font-size: 26px;
    font-weight: normal;
    line-height: 1.4;
    margin-top: 8px;
}

.item-default-price-text{
    margin-top: 14px;
    margin-bottom: -14px;
}

.item-default-price {
    font-size: 18px;
    text-decoration: line-through;
    margin-right: 4px;
}

.item-price-text {
    font-size: 24px;
    margin-top: 14px;
}

.item-price {
    font-size: 24px;
    color: #6e0101;
    margin-top: 14px;
}


.item-detail-table {
    margin-top: 40px;
}

.item-detail-table th {
    font-weight: normal;
    text-align: left;
    padding: 10px 0;
}

.item-detail-table td {
    padding: 10px 0;
}

.item-detail-table td:before {
    content: "：";   
}

.item-detail-num {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 50px;
    background-color: #F1F1F1;
    border: 1px solid #999;
    padding: 10px;
    background: #fff;
    font-size: 15px;
}

.item-detail-label {
    display: inline-block;
    margin-left: -4px;
    position: relative;
}

.makeshop-option-wrap{
    padding: 10px 0;
}

.makeshop-option-select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background-color: #F1F1F1;
    border: 1px solid #999;
    padding: 10px;
    background: #fff;
    font-size: 15px;
}

.makeshop-option-select-wrap{
    position: relative;
    display: block;
}

.makeshop-option-select-wrap::after {
    content: "▼";
    font-size: 12px;
    position: absolute;
    top: 12px;
    right: 12px;
}

.item-detail-text {
    font-size: 14px;
    line-height: 2.2;
    margin-top: 40px;
}

.item-stock{
    margin-bottom: 16px;
}

.item-stock-small{
    color: #E03F3D;
}

.item-detail-addcart {
    margin-top: 48px;
}

.item-detail-addcart a {
    display: inline-block;
    width: 100%;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    border: 3px solid #57886C;
    border-radius: 5px;
    padding: 20px 0;
    background: #57886C;
    color: #fff;
    box-sizing: border-box;
}

.item-detail-addcart a:hover {
    color: #57886C;
    border: 3px solid #57886C;
    background: inherit;
}

.item-detail-soldout {
    display: inline-block;
    width: 100%;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    background-color: #CCC;
    border: 3px solid #CCC;
    border-radius: 5px;
    padding: 24px 0;
}

.item-detail-addcart .on{
	display: inline-block;
}

.item-detail-addcart .off{
	display: none;
}

.item-cart-table {
    width: 100%;
    border-bottom: 1px solid #999;
}

.item-cart-table th {
    font-size: 18px;
    background-color: #DADADA;
    padding: 16px 0;
}

.item-cart-table td {
    vertical-align: middle;
    padding: 32px 16px;
}

.item-cart-table tbody tr {
    border-top: 1px dashed #999;
}

.item-cart-table tbody tr:first-child {
    border: none;
}

.item-cart-image {
    float: left;
    margin-right: 16px;
}

.item-cart-image a {
    display: table-cell;
    width: 80px;
    height: 80px;
    vertical-align: middle;
}

.item-cart-image img {
    max-width: 80px;
    max-height: 80px;
}

.item-cart-title {
    font-size: 18px;
    white-space: normal;
}

.item-cart-options {
    margin-top: 8px;
    font-size: 14px;
}

.item-cart-label {
    display: inline-block;
    position: relative;
    margin-right: 16px;
}

.item-cart-label:after {
    content: "▼";
    font-size: 12px;
    position: absolute;
    top: 8px;
    right: 10px;
}

.item-cart-select{
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    height: 35px;
    background-color: #FFF;
    border: 1px solid #999;
    padding: 6px 30px 6px 6px;
}

input[name="item-quantity"] {
    -moz-appearance: none;
    -webkit-appearance: none;
    appearance: none;
    width: 40px;
    background-color: #FFF;
    border: 1px solid #999;
    padding: 10px;
    margin-right: 8px;
    font-size: 15px;
}

.item-cart-point, .item-cart-price {
    font-size: 18px;
    text-align: center;
    word-break: break-all;
}

.item-cart-button,
.item-cart-point,
.item-cart-price{
	white-space: nowrap;
}

.item-cart-button a {
    display: inline-block;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    background-color: #999;
    border-radius: 5px;
    padding: 8px 12px;
}

.item-cart-button a:hover {
    text-decoration: none;
    background-color: #AAA;
}

.item-cart-total {
    text-align: right;
    font-size: 18px;
    margin-top: 24px;
}

.item-total-price {
    font-size: 32px;
    font-weight: bold;
    margin-left: 16px;
}

.cart-bottom-button {
    margin-top: 40px;
}

.cart-bottom-button:after {
    content: " ";
    display: block;
    clear: both;
}

.cart-back-button {
    float: left;
}

.cart-back-button a {
    display: block;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background-color: #999;
    border-radius: 5px;
    padding: 20px 40px;
}

.cart-back-button a:hover {
    text-decoration: none;
    background-color: #AAA;
}

.cart-buy-button {
    float: right;
}

.cart-buy-button a {
    display: block;
    color: #FFF;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    background-color: #000;
    border-radius: 5px;
    padding: 20px 72px;
}

.cart-buy-button a:hover {
    text-decoration: none;
    background-color: #666;
}

.item-cart-list-wrap {
    display: none;
}

.cart-basket-none {
    float: none !important;
    text-align: center;
    margin-top: 80px;
}

.cart-basket-none a {
    display: inline-block !important;
}

.free-shipping-wrap{
	text-align: right;
	margin-top: 32px;
}

.free-shipping-text em{
	color: #57886C;
	font-style: normal;
}

.policy-wrap {
    font-size: 13px;
}

.contract-table {
    border: 1px solid #999;
    font-size: 13px;
}

.contract-table th {
    width: 25%;
    vertical-align: middle;
    background-color: #DADADA;
    border-bottom: 1px solid #999;
    padding: 24px;
    font-weight: normal;
}

.contract-table td {
    width: 75%;
    vertical-align: middle;
    border-bottom: 1px solid #999;
    padding: 24px;
    background: #fff;
}

.guide-wrap {
    margin-bottom: 40px;
}

.guide-title {
    font-size: 16px;
    background-color: transparent; /* 背景色を透明に */
    padding: 0; /* パディングをなしに */
    border-bottom: 1px solid #DADADA; /* 下線を設定 */
}

.guide-text {
    margin-top: 24px;
    font-size: 0.9em; /* 通常のフォントサイズの90% */
}

.news-list-wrap{
    border-bottom: 1px solid #ccc;
}

.news-list{
    display: flex;
    border-top: 1px solid #ccc;
    padding: 16px 0;
    font-size: 0.9em; /* 通常のフォントサイズの90% */
}

.news-list-date{
    margin-right: 24px;
}

.news-head{
    margin: 80px 0 48px;
}

.section-title-news-post{
    font-size: 22px;
    font-weight: normal;
}

.news-content{
    padding-bottom: 48px;
    margin-bottom: 48px;
    border-bottom: 1px solid #000;
    font-size: 15px;
}

.news-pager{
    display: flex;
    justify-content: space-between;
    font-size: 0.9em;
}

.news-pager li{
    width: calc(100%/3);
}

.news-empty{
    color: #999;
}

.prev{
    text-align: left;
}

.back{
    text-align: center;
}

.next{
    text-align: right;
}

.company-image img{
    max-width: 100%;
}


/* foot */
/* フッター全体のスタイル */
.foot {
    font-size: 15px;
    color: #4b5564;
    background: #CCC;
    position: static;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    padding-bottom: 80px; /* 下部の余白を追加 */
    margin-top: 80px; /* メインコンテンツとの間に余白を追加 */
}

/* グリッドスタイル */
.grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
    padding: 40px;
}

.foot-nav {
    flex-flow: row;
}

.foot-info {
    margin-right: auto;
    font-size: 14px;
}

.foot-nav-list {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.foot-nav-list li {
    flex-flow: row;
    margin-left: 24px;
    font-size: 14px;
    white-space: nowrap;
}

.foot-info-logo {
    margin-bottom: 8px;
}

.foot-info-logo img {
    max-width: 100px;
}



.foot-copyright {
    text-align: center;
    padding: 16px;
    background-color: #000;
    color: #FFF;
    font-size: 12px;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
}

.foot-copyright address {
    font-style: normal;
}







/* フッター内のナビゲーションヘッディングのスタイル */
.footer__navi-heading {
    font-weight: 600;
    margin-bottom: 20px; /* 適切な数値を指定してください */
}



/* フッターナビリストのスタイル */
.footer__navi li {
    margin-bottom: 0.75rem;
}

/* メディアクエリ */
@media (min-width: 768px) {
    .md-flex {
        display: flex;
    }

    .md-justify-between {
        justify-content: space-between;
    }

    .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 1024px) {
    .md-flex {
        display: flex;
    }

    .md-justify-between {
        justify-content: space-between;
    }

    .grid {
        grid-template-columns: repeat(5, minmax(0, 1fr));
    }
}



.banner-amazonpay {
    max-width: 100%; /* 親要素に合わせて最大幅を設定 */
    height: auto; /* 高さを自動調整 */
    display: block; /* インライン要素の画像をブロック要素として扱う */
}



/* --------------------------------------
    PC
--------------------------------------- */

@media screen and (min-width: 641px){

    .button-menu{
        display: none;
    }
        
}

/* --------------------------------------
    SP
--------------------------------------- */

@media screen and (max-width: 640px){
    
    .logo{
        width: 180px;
        min-width: 180px;
        padding: 0;
    }
    
    .logo img{
        align-items: center;
        display: block;
        max-width: 100%;
        max-height: 50px;
    }
    
    .head{
        padding: 15px;
        height: 50px;
    }
    
    .navbar,
    .button-sns,
    .button-cart,
    .action-search,
    .button-account,
    .foot-info{
        display: none;
    }
    
    .action-button{
        position: relative;
    }
    
    .action-button-list a:hover{
        background: none;
    }

    .action-button-list i{
        font-size: 28px;
    }

    .pickup-list{
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }

    
    .button-link{
        padding: 0;
    }
    
    .section-title{
        margin: 40px 0 30px;
        font-size: 20px;
        letter-spacing: -1px;
    }
    
    
    .pickup-list li{
        flex-basis: calc(100% / 2 - 16px);
    }   
    
    .newitems-list li{
        flex-basis: calc(100% / 2 - 16px);
    }   
    
    .item-contact {
  margin-bottom: 40px;
}
    
.item-contact::before {
  content: "";
  display: block;
  width: 100%;
  border: 1px solid #CBCBCB;
  margin: 30px 0 40px;
}
.item-contact a {
  width: 100%;
  display: inline-block;
  padding: 8px 0;
  border: 1px solid #333333;
  border-radius: 2px;
  text-align: center;
}
.item-contact a:before {
  font-family: 'Font Awesome 5 Free';
  content: "\f0e0";
  font-size: 16px;
  font-weight: 900;
  padding-right: 10px;
  color: #707070;
}


    
    .main-contents{
        width: 90%;
        margin: 0 auto;
        padding: 0;
    }
    
    .item-info-name{
        font-size: 80%;
    }
    
    .item-view-button{
        width: 80%;
    }
    
    .item-view-button{
        padding: 15px 20px;
        border: solid 3px #999;
        background-color: #999;
        color: #FFF;
        margin: 20px auto 0;
    }
    
    .pager-list {
        margin: 0 10px;
    }
    
    .breadcrumb {
        margin-top: 16px;
    }
    
    .main-contents-detailitem {
        margin-top: 24px;
        display: block;
    }

    .item-image {
        width: 100%;
    }
    
    .item-image-list {
        margin-bottom: 24px;
    }
    
    .item-image-list img {
        width: 100%;
        max-width: auto;
        min-width: auto;       
    }

    .item-detail {
        width: 100%;
    }

    .item-detail-text-2 {
        font-size: 90%; /* スマホ用にフォントサイズを少し小さくする */
        max-width: 100%; /* スマホ用に幅を100%に設定 */
    }
    
    .item-detail-title {
        line-height: 1.2;
    }

    .item-price-text {
        font-size: 24px;
        margin-top: 14px;
    }

    .item-price {
    font-size: 24px;
    color: #6e0101;
    margin-top: 14px;
   }
   
    .item-detail-table {
        margin-top: 24px;
    }

    .item-detail-table th {
        width: 25%;
    }

    .item-detail-select{
        width: 200px;
    }

    .item-detail-text {
        line-height: 2.0;
        margin-top: 24px;
    }

    .item-detail-addcart {
        margin-top: 32px;
    }
    
    .item-cart-table {
        display: none;
    }

    .cart-back-button {
        float: none;
    }

    .cart-buy-button {
        float: none;
        margin-top: 24px;
    }
    
    .item-cart-list-wrap {
        display: block;
        border-bottom: 1px solid #999;
    }
    
    .item-cart-list {
        border-top: 1px solid #999;
        padding: 20px 0 10px;
        margin-bottom: 20px;
        position: relative;
    }
        
    .item-cart-detail:after {
        content: " ";
        display: block;
        clear: both;
    }
    
    .item-cart-text-wrap {
        float: right;
        width: 100%;
        margin-left: -100px;
    }
    
    .item-cart-text {
        margin-left: 100px;
    }
    
    .cart-item-option{
        font-size: 14px;
    }
    
    .cart-item-option span{
        margin-right: 16px;
    }
    
    .item-cart-title {
        display: block;
        font-size: 15px;
        line-height: 1.4;
        margin-bottom: 8px;
    }
    
    .item-cart-label {
        margin-bottom: 8px;
    }
    
    .item-cart-point, .item-cart-price {
        text-align: right;
        display: inline-block;
        font-size: 14px;
    }
    
    .item-cart-foot{
        margin-top: 8px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    input[name="item-quantity"]{
        width: 24px;
        padding: 6px;
        margin-right: 4px;
        vertical-align: middle;
    }
    
    .item-delete-button{
        position: absolute;
        right: -10px;
        top: -10px;
    }
    
    .item-cart-button a{
        padding: 6px 12px;
        font-size: 13px;
        font-weight: normal;
    }
    
    .item-delete-button a{
        padding: 3px 8px;
        border-radius: 50%;
        font-size: 24px;
        line-height: 1;
    }
    
    .item-cart-total{
        font-size: 16px;
    }
    
    .contract-table th {
        width: 30%;
        padding: 16px;
        font-size: 13px;
    }
    
    .item-total-price{
        font-size: 20px;
    }

    .contract-table td {
        width: 70%;
        padding: 16px;
        font-size: 13px;
    }
    
    .guide-title{
        font-size: 16px;
    }
    
    .guide-text{
        font-size: 13px;
    }
    
    .foot{
        margin-top: 80px;
    }
    
    .foot-main{
        padding: 10px;
        display: initial;
    }
    
    .item-view-button:hover{
        padding: 15px 20px;
        border: solid 3px #999;
        background-color: #999;
        color: #FFF;
    }

    .foot-nav-list{
        justify-content: space-around;
        flex-wrap: wrap;
    }
    
    .foot-nav-list li{
        white-space: normal;
        font-size: 12px;
        margin-left: 0px;
        justify-content: center;
        align-items: stretch;
        margin-right: 5px;
    }

    .button-menu{
        padding-top: 80px;
    }
    
    .drawernav{
        font-size: 14px;
    }
    
    .drawernav-search{
        position: absolute;
        top: 19px;
        left: 15px;
    }   

    .drawernav-search-in{
        position: relative;
    }
    
    .drawernav-search-input{
        border: solid 1px #CCC;
        font-size: 14px;
        padding: 10px;
        width: 100%;
        box-sizing: border-box;
        border-radius: 25px;
        appearance: none; 
        -webkit-appearance: none;
    }

    .drawernav-search-button{
        position: absolute;
        bottom: 0px;
        right: 6px;
        padding: 4px;
        background-color: transparent;
        border: none;
        cursor: pointer;
        outline: none;
        appearance: none;
        -webkit-appearance: none;
    }

    .drawernav-search-button i{
        font-weight: bold;
        color: #999;
    }

    .humberger{
        position: fixed;
        top: 16px;
        right: 15px;
        width: 30px;
        z-index: 100;
        padding: 13px 10px 10px;
        z-index: 10000;
    }

    
    .drawernav-search{
        width: 100%;
        padding-right: 80px;
        box-sizing: border-box;
    }
    
    .drawernav-list-main ul{
        padding: 0 15px 10px;   
    }
    
    .drawernav-list-main{
        border-bottom: solid 1px #666;
    }
    
    .drawernav-list-main:first-child{
        border-top: solid 1px #666;
    }
    
    .drawernav-list-category{
        padding-bottom: 8px;
    }
    
    .drawernav-list-title{
        padding: 15px;
        display: block;
    }
    
    .drawernav-list-main a{
        padding: 15px;
        display: block;
    }
    
    .drawernav-sub-list-title a,
    .drawernav-sub-list-data a{
        display: block;
        padding: 8px 15px;
    }
    
    .drawernav-sub-list-data{
        padding-left: 25px;
    }
    
    .drawernav-list-main-title{
        padding: 15px 15px 5px;
    }

    .drawernav-sublist a{
        padding: 5px 0 5px 1em;
    }
        
    .drawernav-list a{
        color: #FFF;
    }
    
    .drawernav-list a:hover{
        text-decoration: none;
    }

    .icon-bar{
        height: 3px;
        background: #333;
        display: block;
        margin-bottom: 6px;
        transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
    }

    .fixed-content{
        right: inherit;
        width: 100%;
        z-index: 2;
        transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
    }

    .drawer-opened .fixed-content{
        left: -240px;
    }
    
    .drawer-opened .button-menu{
        right: 0;
    }
    
    .drawer-opened .humberger .icon-bar{
        background: #fff;
    }
    
    .drawer-opened .humberger :nth-child(1){
        transform:translate(0,9px) rotate(45deg);
    }
    
    .drawer-opened .humberger :nth-child(2){
        transform:translate(-20px ,0);
        opacity:0.0;
    }
    
    .drawer-opened .humberger :nth-child(3){
        transform:translate(0,-9px) rotate(-45deg);
    }
    
    .button-menu{
        position: fixed;
        top: 0;
        right: -100%;
        background: rgba(30,30,30,0.9);
        box-sizing: border-box;
        color: #fff;
        z-index: 2;
        transition: all 400ms cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
        transition-timing-function: cubic-bezier(1.000, 0.000, 0.000, 1.000); /* easeInOutExpo */
        width: 100%;
        height: 100%;
    }
    
      .item-contact::before {
    display: none;
  }
    
    .button-menu-opened{
        overflow-y: scroll;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    .fixed {
        position: fixed;
        width: 100%;
        height: 100%;
    }
    
}


.item-list-icon li{
    margin: 0;
}


table.sample {
   border-collapse: collapse;
   border: 0px solid green; /* 外側の枠線 */
}
table.sample td {
   border-width: 1px 1px; /* 上下だけ引く */
   border-color: #696969; /* 線色：緑 */
   border-style: solid; /* 線種：実線 */
   padding: 0.5em; /* セル内側の余白 */}
.leftcell   { background-color: #ffffff; }
.rightcell  { background-color: #ffffff; }



html{
    scroll-behavior: smooth;
}
.gotop{
    display: block;
    width: 60px;
    height: 60px;
    box-sizing: border-box;
    background: #FFF;
    border: 1px solid #999;
    padding-top: 30px;
    text-align: center;
    letter-spacing: -1px;
    font-size: 85%;
    text-decoration: none;
    color: #333;
    opacity: 0.5;
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 10000;
}
.gotop::before{
    content: "";
    display: block;
    border-top: 2px solid #333;
    border-right: 2px solid #333;
    width: 25%;
    height: 25%;
    top: 25%;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
    transform: rotate(-45deg);
}
.gotop:hover{
    opacity: 1;
}
@media(max-width:750px){
    .gotop{
        width: 40px;
        height: 40px;
        text-indent: -9999px;
        opacity: 1;
        border: none;
        background: none;
        bottom: 10px;
        right: 10px;
    }
    .gotop::before{
        bottom: 0;
    }
}


.tel-btn {
  display: block;
  position: fixed;
  bottom: 75px;
  right: 10px;
  text-decoration: none;
}
a.tel-btn:hover {
  text-decoration: none;
}


.pickup-list li{
    width: calc(100% / 4 - 16px);
}





/* -----------------------------------------------------------------
review
----------------------------------------------------------------- */ .review-wrap{
      text-align: left;
}
.review-item-wrap {
      border: 1px solid #CCC;
      padding: 20px;
      border-radius: 3px;
      display: flex;
      margin: 50px 0;
}
.review-item-wrap .review-item-image {
      padding-right: 20px;
      width: 120px;
}
.review-item-wrap .review-item-image img {
      width: 100%;
      height: 120px;
      object-fit: cover;
}
.review-item-info .review-item-category {
      font-size: 12px;
      margin-bottom: 8px;
}
.review-item-info .review-item-name {
      font-size: 18px;
}
.review-item-info .total-review {
      display: flex;
      align-items: baseline;
      margin-top: 10px;
}
.review-item-info .review-star {
      margin-right: 10px;
}
.review-item-info .review-average {
      font-size: 20px;
      font-weight: bold;
}
.review-item-info .review-count {
      font-size: 12px;
}
.review-form-wrap {
      max-width: 600px;
      margin: 0 auto;
}
.review-form {
      display: flex;
      align-items: center;
      margin-bottom: 30px;
}
.review-form:last-child {
      margin-bottom: 60px;
}
.review-form dt {
      width: 150px;
      text-align: left;
}
.review-form .review-form-content {
      width: 100%;
}
.review-form dd input,
.review-form-content textarea{
      border: 1px solid #CCC;
      padding:10px;
}
.review-form dd .reviewRateStar:before {
      font-size: 18px;
}
.review-post-btn {
      border: none !important;
      background: #CCC;
      color: #fff;
}
/* review star */ .item-review-detail {
      margin-bottom: 60px;
}
.item-review-detail h3 {
      font-size: 18px;
      margin-bottom: 20px;
}
.item-review-list li {
      margin-bottom: 60px;
}
.item-review-list-link {
      margin-bottom: 30px;
      font-size: 12px;
}
.item-review-list-link a {
      text-decoration: underline;
}
.item-review-list-link a:hover {
      text-decoration: none;
}
.review-list-unit .review-list-name {
      margin-bottom: 12px;
}
.review-list-unit .star-score {
      display: flex;
      align-items: center;
      margin-bottom: 12px;
}
.review-list-unit .review-star {
      margin-right: 6px;
}
.review-list-unit .review-list-date {
      color: #B5B5B5;
      margin: 12px 0;
}
.reviewRateStar {
      display: inline-block;
      font-size: 0;
      color: #FFA41C;
}
.reviewRateStar::before {
      font-family: 'Font Awesome 5 Free';
      content: "\f005";
      font-size: 14px;
      font-weight: 900;
}
.starOff::before {
      font-family: 'Font Awesome 5 Free';
      content: "\f005";
      font-weight: 400;
}
.starHalf::before {
      font-family: 'Font Awesome 5 Free';
      content: "\f5c0";
}
.review-post {
      margin-top: 40px;
}

.review-post a {
      margin: 0 auto;
      display: inline-block;
      padding: 20px 40px;
      border-radius: 6px;
      text-align: center;
      text-decoration: none;
      height: auto;
      font-weight:bold;
      background:#AAA;
      color:#fff;
}
.review-post a:before {
      font-family: 'Font Awesome 5 Free';
      content: "\f304";
      font-size: 16px;
      font-weight: 900;
      padding-right: 10px;
      color: fff;
}
@media screen and (max-width: 768px){
      .contents-heading {
            max-width: 96%;
      }
      .main {
            width: 100%;
            box-sizing:border-box;
            margin: 0 auto;
      }
      .review-list-content {
            line-height: 1.4;
      }
      .item-review,       .item-review-detail{
            padding: 0 18px;
      }
}

.foot-nav img{
    max-width: 100%;
}

dd.navbar-sub-list-data ul.sub3 li a{
    margin-left: 20px;
    font-weight: normal;
}




    .item-favorite {
  margin-bottom: 40px;
}
.item-favorite::before {
  content: "";
  display: block;
  width: 100%;

  margin: 30px 0 40px;
}
.item-favorite a {
  width: 100%;
  display: inline-block;
  padding: 8px 0;
  border: 1px solid #333333;
  border-radius: 2px;
  text-align: center;
}
.item-favorite a:before {
  font-family: 'Font Awesome 5 Free';
  font-size: 16px;
  font-weight: 900;
  padding-right: 10px;
  color: #707070;
}


/* TOPのTONロゴ */
.responsive-image {
    width: 100%;
    height: auto;
    max-width: 2000px; /* 最大幅を2000pxに制限 */
    margin-top: 10px;
}



.faq,
.guide-text {
    width: 85%;
    margin: 30px auto 75px; /* 上下の余白は4060px、左右は自動調整 */
    line-height: 1.8em;
    word-wrap: break-word;
    _zoom: 1;
}



/* スマートフォンサイズ以下の場合のスタイル */
@media (max-width: 767px) {
    .faq {
        width: 90%; /* ブラウザ幅の90%に調整 */
        margin: 40px auto; /* 上下の余白は40px、左右は自動調整 */
        line-height: 1.6em; /* 行間を詰める */
        overflow-wrap: break-word; /* 文字列の途中での改行を許可 */
    }

    .faq .faq_q,
    .faq .faq_a {
        padding: 0 10px; /* パディングを左右10pxに調整 */
    }

    /* その他、必要に応じてスタイルを調整 */
}

.faq .faq_q,
.faq .faq_a {
    padding: 0 20px 0px 20px; /* text-indent を削除して padding に変更 */
}

.faq .faq_q {
    margin: 30px 0 0; /* 左の余白を削除 */
}

.faq .faq_q:first-letter,
.faq .faq_a:first-letter {
    font-size: 1.6em;
    font-weight: bold;
    margin-right: 10px;
    padding: 5px;
    font-family: 'Nunito', sans-serif;
}

.faq .faq_a {
    margin: 20px 0 -1px 0;
    padding-bottom: 35px;
    border-bottom: 1px #969696 dotted;
}

.faq dd:last-child {
    border-bottom: none;
}

.faq .faq_q:first-letter {
    color: #606060;
}

.faq .faq_a:first-letter {
    color: #d43d3d;
}

.faq h3, .guide-title h3 {
    font-weight: normal; /* 太字を解除 */
}



/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 横幅を指定するための要素 */
.map-wrap {
  max-width: 50%; /* ここに横幅を指定 */
}


/* インスタ */
.insta_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; /* 画像を等間隔に配置 */
    gap: 10px;
    margin: 20px 0;
}

.insta_list li{
    position: relative;
    width: calc((100% - 40px)/4);
}

@media screen and (max-width: 750px){
    .insta_list li{
        width: calc((100% - 20px)/2);
    }
}

.insta_list li::before{
	content: "";
	display: block;
	padding-top: 100%;
}

.insta_list a{
	position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
}

.insta_list img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.insta_btn{
    background-color: #000;
    padding: .5em 1em;
    width: fit-content;
    margin: 0 auto;
    cursor: pointer;
    transition: .3s
}

.insta_btn a{
    color: #fff;
    text-decoration: none;
}

.insta_btn:hover{
    background-color: #999;
}



/* 納入実績 */
.iframe-container {
    position: relative;
    width: 100%;
    max-width: 1050px; /* 最大幅を指定 */
    margin: 0 auto; /* 中央揃え */
    height: 800px; /* 高さを倍に設定 */
}

.iframe-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ストック記号 */
.item-stockicon {
    font-size: 0.8em; /* 通常のフォントサイズの90% */
}


/* ソート */
.clearfix:after {
    content: "";
    display: block;
    clear: both;
}
.clearfix select {
    margin-right: 10px; /* 必要なスペースに応じてピクセル数を調整してください */
}

/* よくある質問の上 */
.content-faq {
  display: flex;
  flex-wrap: wrap; /* コンテンツが収まりきらない場合に次の行に移動 */
  margin-bottom: 20px; /* 下にマージンを追加して次のコンテンツと間隔を開ける */
}

.contentA, .contentB {
  width: 50%; /* デフォルトでは横並びにする */
  box-sizing: border-box; /* パディングとボーダーを含めて幅を計算 */
  padding: 0.5em; /* パディングを調整 */
  height: auto; /* 高さを自動調整 */
  margin-bottom: 20px; /* 下にマージンを追加して次の行のアイテムと間隔を開ける */
  font-size: 13px;
  line-height: 2.0; /* 行間を調整（数字を調整して好みの行間に） */
}


@media screen and (max-width: 768px) {
  .contentA, .contentB {
    width: 100%; /* 幅を100%にして縦並びにする */
  }
}





/* TOPの各メニューアイテムのスタイル */
/* TOP CATE MENUの始まる部分に余白を追加 */
.main-contents-cate {
  margin-top: 120px; /* 上に20pxの余白を追加 */
}

/* TOPコンテンツラップのスタイル */
.contentcate-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start; /* ←ここを修正 */
  gap: 10px;
}


/* TOPのメニューアイテムのスタイル */
.menu-item {
  flex: 0 0 calc(33.333% - 8px); /* 3列表示にするための幅を設定 */
  box-sizing: border-box; /* パディングとボーダーを要素の総幅と高さに含める */
}

/* レスポンシブ画像 */
.menu-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* レスポンシブ対応の調整 */
@media (max-width: 768px) {
  .menu-item {
    flex: 0 0 calc(50% - 10px); /* 中サイズ画面では2列表示 */
  }
}

@media (max-width: 480px) {
  .menu-item {
    flex: 0 0 calc(50% - 10px); /* 小さいサイズ画面では2列表示 */
  }
}


/* ここからカテゴリ一覧ページ */
.cate-guide-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 40px 30px;
    align-items: flex-start;
}

.cate-guide-item {
    width: calc((100% - 60px) / 3);
}

.submenu {
    list-style: none;
    padding: 0;
    margin: 20px 0 70px 0; /* 上、右、下、左の順に余白を設定 */
    display: block; /* 要素をブロック表示に変更 */
}

.submenu li {
    display: block; /* 子要素もブロック表示に変更 */
    margin-bottom: 10px; /* 各アイテムの間隔を設定、必要に応じて調整 */
}

.submenu li a {
    text-decoration: none;
    color: #333;
    transition: color 0.3s ease;
}

.submenu li a:hover {
    color: #b81214;
}



/* カテゴリ一覧ページの画像 */
.img-container {
    height: 180px; /* コンテナの高さを設定 */
    overflow: hidden; /* オーバーフローを隠す */
    display: flex; /* Flexbox を使用して中央揃え */
    justify-content: center;
    align-items: center;
    clip-path: inset(0 2px 0 2px); /* 上、右、下、左の順にクリッピング */
}

.img-container img {
    max-width: 100%; /* 画像を親要素の幅内に収める */
    height: auto; /* 高さを自動調整 */
    object-fit: cover; /* 縦横比を維持しながら親要素に収まるようにする */
}


/* レスポンシブ対応の調整 */
@media (max-width: 768px) {

    .cate-guide-wrap {
        gap: 30px 10px;
    }

    .cate-guide-item {
        width: calc((100% - 10px) / 2);
        margin-bottom: 0;
    }

    .img-container {
        height: 100px;
        overflow: hidden;
    }

    .img-container img {
        width: 100%;
        height: auto;
        object-fit: cover;
    }

    .submenu {
        font-size: 13px;
        margin-top: 10px;
    }

    .submenu li {
        margin-bottom: 5px;
    }
}




/* 会社概要写真 */
.i-photo-container {
  display: flex;
  justify-content: center; /* 水平方向の中央寄せ */
  align-items: center; /* 垂直方向の中央寄せ */
  text-align: center; /* テキストの中央寄せ */
  width: 100%; /* 幅を100%に設定 */
}

/* 他の既存のスタイル */
.i-photo {
  display: flex; 
  justify-content: center; 
  align-items: center; 
  text-align: left; /* テキストを左揃えにする */
}

.i-photo .t-photo {
  width: 100%; 
  max-width: 230px; 
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.i-photo .t-photo img {
  width: 90%; 
  height: auto;
}

.i-photo .i-text {
  margin: 0 0 0 20px; 
  padding: 0;
  flex: 1; /* テキストが利用できるスペースを最大限に使う */
}

/* 画面幅が768px以下の場合 */
@media (max-width: 768px) {
  .i-photo .t-photo {
    max-width: 40%; /* 画像の最大幅を150pxに縮小 */
  }
  
  .i-photo .i-text {
    margin: 0 0 0 10px; /* マージンを縮小 */
    font-size: 70%; /* フォントサイズを80%に縮小 */
  }
}

.info-box {
  padding: 10px;
  margin: 0 auto 10px;
  border: 1px solid #333333;
  border-radius: 10px;
  max-width: 600px;
  text-align: center;
}

/* 会社概要 */
.info-box_2 {
  padding: 10px;
  margin: 0 auto 10px;
  border-top: 1px solid #333333; /* 上のみの線 */
  border-radius: 0; /* 角を丸くしない */
  max-width: 600px;
  text-align: center;
}



.item-detail-bottom {
    padding: 5px;
    margin-bottom: 20px; /* フッターと3つ目のカラムの間のスペース */
}


.item-detail-text-2 {
    line-height: 2.0;
    margin-top: 20px;
    max-width: 95%; /* テキストの最大幅を設定 */
    margin-left: auto; /* 左右の中央揃え */
    margin-right: auto; /* 左右の中央揃え */
}

/* 商品詳細テーブル */
.speclist {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px; /* アイテム間のスペース */
}

.speclist-item {
  border: 1px solid #ccc; /* グレーの枠線 */
  padding: 10px; /* セルの内側に余白 */
  width: calc(33.333% - 40px); /* 3列で表示するための幅（マージンを考慮） */
  box-sizing: border-box;
}

.speclist-item-detail {
  text-align: center;
  margin-bottom: 10px; /* 詳細と画像の間のスペース */
}

.speclist-item-image {
  text-align: center; /* 親要素で画像を中央寄せ */
}

.speclist-item img {
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .speclist-item {
    width: 100%; /* スマホでは幅を100%に */
  }
}


/* 会社概要 */
.company-content {
    font-size: 0.9em; /* 通常のフォントサイズの90% */
}


/* 税 */
.small-tax {
    font-size: 0.6em; !important; /* 通常のフォントサイズの90% */
}

/* 商品詳細の複数画像レスポンシブ */
.item-other {
    width: 100%;
    height: auto;
    max-width: 90%; /* 最大幅を2000pxに制限 */
    margin-bottom: 20px;
}

@media (max-width: 768px) {
  .item-other {
    width: 100%;
    height: auto;
    max-width: 1000px; /* 最大幅を2000pxに制限 */
    margin-bottom: 20px;
    }
}



/* LPメニューbutton */
.lp-button {
    text-align: center;
    margin: 0 auto 30px; /* 左右の余白を自動にして中央に配置し、下側に30pxの余白を追加 */
    max-width: 100%; /* 幅を100%に制限 */
    font-size: 12px;
    border-radius: 0; /* 角を丸くしない */
}

.lp-link {
    display: inline-flex; /* inline-flexに変更 */
    align-items: center; /* 垂直方向の中央揃え */
    justify-content: center; /* 水平方向の中央揃え */
    text-decoration: none;
    color: inherit;
    padding: 10px;
    margin-right: 8px;
    border: 1px solid #999999;
    border-radius: 0; /* 角を丸くしない */
}


.company-content pre img{
  width: 100%;
  height: auto;
  max-width: 700px;
}

/* Google Mapを囲う要素 */
.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 75%; /* 比率を4:3に固定 */
}
 
/* Google Mapのiframe */
.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* 横幅を指定するための要素 */
.map-wrap {
  max-width: 50%; /* ここに横幅を指定 */
}
