/*
Theme Name: dougudou.net
Theme URI: https://xs35hana.x-tc.jp/
Description: 株式会社丸武道具堂公式サイト
Version: 1
Author: NEXT LLC
Author URI: https://www.x-tc.jp/
*/


@charset "utf-8";


/*基本条件
----------------------------------------------------------------------------------------------------*/

/*カラー
---------------------------------------------------------------------------*/
	/* #D51313 base(ベースカラー) */
	/* #003D89 sub(サブカラー) */
	/* #0E5B0F accent01(アクセントカラー01) */
	/* #FFB000 accent02(アクセントカラー02) */

/*レスポンシブデザイン ブレークポイント
---------------------------------------------------------------------------*/
	/* 画面幅 960px以下の設定 @media screen and (max-width:960px){ } */
	/* 画面幅 480px以下の設定 @media screen and (max-width:480px){ } */

/*リセットCSS（sanitize.css）の読み込み
---------------------------------------------------------------------------*/
@import url("https://unpkg.com/sanitize.css");

/*Google Fontsの読み込み
---------------------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1p&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');

/*Font Awesomeの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");

/*lightbox.cssの読み込み
---------------------------------------------------------------------------*/
@import url(https://cdnjs.cloudflare.com/ajax/libs/lightbox2/2.10.0/css/lightbox.css);

/*slick.cssの読み込み
---------------------------------------------------------------------------*/
@import url("https://cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css");

/*テンプレート専用cssファイルの読み込み
---------------------------------------------------------------------------*/
/*@import url("slide.css");*/
/*@import url("inview.css");*/

/*opa1のキーフレーム設定
---------------------------------------------------------------------------*/
@keyframes opa1 {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/*animation1のキーフレーム設定（開閉ブロックのアニメーションに使用）
---------------------------------------------------------------------------*/
@keyframes animation1 {
	0% {left: -200px;}
	100% {left: 0px;}
}

/*テーマカラーの定義（CSS変数）
---------------------------------------------------------------------------*/
:root {
    --base-color: #D51313; /*ベースカラー*/
    --sub-color: #003D89; /*サブカラー*/
    --accent01-color: #0E5B0F; /*アクセントカラー01*/
    --accent02-color: #FFB000; /*アクセントカラー02*/
}


/*デザイン
----------------------------------------------------------------------------------------------------*/

/*全体の設定
---------------------------------------------------------------------------*/
html,body {
    height: 100%;
    font-size: 16px;
}

body {
	font-family: "新ゴ R", Shin Go Regular, Quicksand, 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	-webkit-text-size-adjust: none;
	background: #ffffff;
	color: #000000;
	line-height: 2;
}

/*リセット*/
figure {margin: 0;}
dd {margin: 0;}
nav {margin: 0;padding: 0;}
/*section li {margin-left: 1rem;}*/
section li {margin: 0;}

/*table全般の設定*/
table {border-collapse:collapse;}

/*画像全般の設定*/
img {border: none;max-width: 100%;height: auto;vertical-align: middle;}

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*強調*/
strong { color:var(--base-color); font-family: Shin Go Bold;}
b { font-family: GSanSerif-B; }

/*他*/
input {font-size: 1rem;}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    html, body {
		font-size: 14px;
    }
}

/*リンクテキスト全般の設定
---------------------------------------------------------------------------*/
a {
	color: #000000;
	text-decoration: none;
	transition: 0.5s;
}

a:hover {
	opacity: 0.7;
}

/*コンテナ（サイト全体を囲むブロック）
---------------------------------------------------------------------------*/
#container {
	height: 100%;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	max-width: 1920px;
	margin: 0 auto;
	position: relative;
}

/*section
---------------------------------------------------------------------------*/
/*sectionが続いた場合の続きのsectionの上に空けるスペース*/
section + section {
	margin-top: 10rem;
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    section + section {
        margin-top: 5rem;
	}
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    section + section {
        margin-top: 3rem;
	}
}

/*header（ロゴが入った最上段のブロック）
---------------------------------------------------------------------------*/
/*ヘッダーブロック*/
header {
	background-color: var(--base-color);
}

/*トップページのヘッダーブロック*/
.home header {
	background: none;
	position: relative;
}

/*ロゴ共通*/
#logo img {display: block;}

/*トップページのロゴ*/
.home #logo {
	margin: 0;
	width: 280px;
	position: absolute;z-index: 1;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: rgba(0,0,0,0.5);
	padding: 2rem;
	animation: opa1 2s 0.5s both;
}

/*トップページ以外のロゴ*/
body:not(.home) #logo img {
	width: 140px;
	margin-left: 5vw;
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .home #logo {
        width: 230px;
    }
    
    body:not(.home) #logo img {
        width: 120px;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    .home #logo {
        width: 160px;
        padding: 1.5rem;
    }
    
    body:not(.home) #logo img {
        width: 100px;
    }
    
    h1#logo {
        margin:0.7rem 0;
    }
}

/*メニューブロック設定
---------------------------------------------------------------------------*/
#menubar a {display: block;text-decoration: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar {display: none;}
#menubar.d-b, #menubar_hdr.d-b {display: block;}
#menubar.d-n, #menubar_hdr.d-n {display: none;}

/*メニューブロック設定
---------------------------------------------------------------------------*/
/*メニューブロック*/
#menubar {
	position: fixed;overflow: auto;z-index: 100;
	left: 0px;top: 0px;
    width: 70%;
	height: 100%;
	padding: 100px 20px 20px;
	background: rgba(0,0,0,0.9);
	text-align: center;
	animation: animation1 0.2s both;
	color: #ffffff;
}

/*メニュー１個あたりの設定*/
#menubar a {
    color: inherit;
    padding: 10px;
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
	#menubar {
		width: 100%;
	}
}

/*３本バー（ハンバーガー）アイコン設定
---------------------------------------------------------------------------*/
/*３本バーを囲むブロック*/
#menubar_hdr {
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 30px;
	top: 25px;
	padding: 16px 14px;
	width: 46px;
	height: 46px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform: scale(1.3);
    background-color: var(--base-color);
    border-radius: 50%;
}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 1.5px solid #ffffff;
	box-shadow: 1px 1px 1px rgba(0,0,0,0.3);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
	width: 20px;
}

/*×印が出ている状態の設定。※１本目のバー。*/
#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(3.8px, 5px);
}

/*×印が出ている状態の設定。※３本目のバー。*/
#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(3.8px, -5px);
}

/*×印が出ている状態の設定。※２本目のバー。*/
#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    #menubar_hdr {
        top: 20px;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    #menubar_hdr {
        right: 10px;
        top: 12px;
        padding: 12px 10px;
        width: 36px;
        height: 36px;
    }
}

/*コンテンツ
---------------------------------------------------------------------------*/
#contents {
	flex: 1;
}

/*mainブロック設定
---------------------------------------------------------------------------*/
/*mainブロックの設定*/
main {
	margin: 10rem 5vw;
}

/*mainブロック内のh2*/
main h2 {
	font-size: 2.4rem;
	text-align: center;
	line-height: 3.6rem;
    letter-spacing: 0.1rem;
    margin: 0 0 2.5rem;
}

main h2 > span {
	display: block;
	font-size:1.2rem;
	line-height: 1.8rem;
    letter-spacing: 0;
	color: var(--base-color);
    margin: 0;
}

/*mainブロック内のh3*/
main h3 {
	font-size: 1.8rem;
	margin:0;
}

/*mainブロック内のh4*/
main h4 {
	font-size: 1.4rem;
	margin:0;
}

/*pタグ*/
main p {
	margin:0;
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    main {
	    margin: 5rem 5vw 10rem;
    }
    
    main h2 {
        font-size: 2rem;
        line-height: 3rem;
    }
    
    main h3 {
        font-size: 1.4rem;
    }
    
    main h4 {
        font-size: 1.2rem;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    main {
	    margin: 3rem 5vw 8rem;
    }
    
    main h2 {
        font-size: 1.4rem;
        line-height: 1.8rem;
        margin: 0 0 1.5rem;
    }
    
    main h2 > span {
	    font-size:1.1rem;
	    line-height: 1.4rem;
    }
    
    main h3 {
        font-size: 1.2rem;
    }
    
    main h4 {
        font-size: 1.1rem;
    }
}

/*フッタースライダー ボタン
---------------------------------------------------------------------------*/
.slider-btn {
    margin-top: 2.2rem;
}

.slider-btn a {
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 600;
    text-align: center;
    background-color: var(--base-color);
    margin: auto;
    position: relative;
    display: inline-block;
    overflow: hidden;
    transition: 0.5s;
    text-decoration: none;
    padding: 0.5rem 5rem 0.5rem 2.5rem;
}

.slider-btn a:hover {
    color: #ffffff;
    opacity: 1;
}

.slider-btn a:after {
    font-family: "FontAwesome";
    content: "\f101";
    position: absolute;
    right: 2rem;
}

.slider-btn a:hover:after {
    animation: fuwafuwa .5s linear infinite;
}

@keyframes fuwafuwa {
    0% {
        transform: translateX(0)
    }
    50% {
        transform: translateX(-5px)
    }
    100% {
        transform: translateX(0)
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    .slider-btn a {
        font-size: 1.2rem;
    }
}

/*フッターテキスト
---------------------------------------------------------------------------*/
footer small {
	display: block;
	background-color: var(--base-color);
	font-size: 0.8rem;
	text-align: center;
	padding: 1rem;
	color: #ffffff;
}

/*リンクテキスト*/
footer a {color: inherit;text-decoration: none;}

/*PAGE TOP（↑）設定
---------------------------------------------------------------------------*/
.pagetop-show {
    display: block;
}

/*ボタンの設定*/
.pagetop a {
    display: block;
    text-decoration: none;
    text-align: center;
    z-index: 99;
    position: fixed;
    right: 20px;
    bottom: 20px;
    color: #ffffff;
    font-size: 1.5rem;
    background-color: var(--base-color);
    width: 60px;
    line-height: 60px;
    border-radius: 50%;
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    .pagetop a {
        right: 5px;
        bottom: 25px;
        font-size: 1.2rem;
        width: 45px;
        line-height: 45px;
    }
}

/*キャッチコピー
---------------------------------------------------------------------------*/
.catch {
	/*padding-top: 5rem;*/
	text-align: center;
}

.catch h1 {
	font-size:3.2rem;
	margin: 0;



}

.catch p {
	font-size:1.6rem;
	font-weight: bold;
	margin: 0;
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .catch h1 {
        font-size:2.8rem;
    }
    
    .catch p {
        font-size: 1.4rem;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    .catch h1 {
	    font-size:1.6rem;
    }
    
    .catch p {
        font-size: 1.1rem;
        line-height: 1.8rem;
    }
    
    .catch span {
        display: block;
    }
}

/*visualオーバーレイ
---------------------------------------------------------------------------*/
.visual > div {
	position: relative;
	z-index: 10;
}

.visual-overlay {
    position: absolute;
	top: 0;
	z-index: 20;
	width: 100%;
	height: 100%;
	background: radial-gradient(rgba(0, 0, 0, 0.7) 0.7px, rgba(0, 0, 0, 0.5) 0.7px);
    background-size: 2px 2px;
	display: flex;
    align-items: center;
    justify-content: center;
}

.visual-overlay .catch h1, 
.visual-overlay .catch p { 
    color:#ffffff; 
}

/*「お知らせ」ブロック
---------------------------------------------------------------------------*/
/*お知らせブロック*/
.new dl {
    margin: 0;
}

.new dl > div {
    display: flex;
    flex-wrap: wrap;
    padding: 1rem 0;
    border-bottom: 1px solid #d7d7d7;
}

.new dl dt {
    display: flex;
    column-gap: 1rem;
    color:#666666;
}

.new dl dd {
    padding-left:1rem;
}

.new dl dt i {
	line-height:2rem;
}

.new dl dd i {
	padding-left: 0.5rem;
	color:var(--base-color);
}

/*NEW!!アイコン(最新のお知らせのみ)*/
.new dl > div:first-child dd {
    font-weight:bold;
}

.new dl > div:first-child dt:after {
    display: inline-block;
    width: 8em;
    color: #ffffff;
    font-size: 0.8em;
    font-weight: 600;
    text-align: center;
    align-self: flex-start;
    position: relative;
    top: 0.2em;
    border-radius: 2px;
    content:"NEW!!";
    background: var(--base-color);
}

/*お知らせカテゴリーアイコン*/
.new dl > div dt span {
    display: inline-block;
    width: 8em;
    color: #ffffff;
    font-size: 0.8em;
    font-weight: 600;
    text-align: center;
    align-self: flex-start;
    position: relative;
    top: 0.2em;
    border-radius: 2px;
}

/*お知らせカテゴリーアイコン(店舗情報)*/
.new dl > div dt span.new-slug-store {
    background: var(--sub-color);
}

/*お知らせカテゴリーアイコン(売出情報)*/
.new dl > div dt span.new-slug-sales {
    background: var(--accent01-color);
}

/*お知らせカテゴリーアイコン(商品案内)*/
.new dl > div dt span.new-slug-goods {
    background: var(--accent02-color);
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    .new dl > div {
        padding: 0.5rem 0;
    }
    
    .new dl dd {
        padding-left:2rem;
    }
}

/*「お知らせ」ブロック(アーカイブページ)
---------------------------------------------------------------------------*/
.news-desc {
    min-height: 36rem;
    padding-bottom:10rem;
    border-bottom:1px solid #d7d7d7
}

.news-desc i {
    color: var(--base-color);
    padding-right: 0.7rem;
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .news-desc {
        padding-bottom:5rem;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    .news-desc {
        min-height: 30rem;
        padding-bottom:3rem;
    }
}

/*「最新情報」ブロック
---------------------------------------------------------------------------*/
/*.info > div a {
    display: block;
    border:1px solid #d7d7d7;
	padding:0.8rem;
    width:25%;
    margin:0 auto;
}*/

.info > div {
	display: flex;
	justify-content:center;
	column-gap:3rem;
}

.info > div a {
	border:1px solid #d7d7d7;
	padding:0.8rem;
	width:25%;
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    /*.info > div a {
        width:40%;
    }*/
    
    .info > div {
        column-gap:1rem;
    }
    
    .info > div a {
        width:40%;
    }
}

/*「オンラインショップ」ブロック
---------------------------------------------------------------------------*/
.shop > div {
	display: flex;
	justify-content:center;
	column-gap:3rem;
}

.shop > div a {
	border:1px solid #d7d7d7;
	padding:0.8rem;
	width:25%;
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    .shop > div {
        column-gap:1rem;
    }
    
    .shop > div a {
        width:40%;
    }
}

/*「取り扱いメーカー」ブロック
---------------------------------------------------------------------------*/
.maker div {
	display: flex;
	flex-wrap: wrap;
}

.maker div > div {
	width: 12.2%;
    margin-right: calc((100% - (12.2% * 8)) / 7);
    padding-bottom: 0.5rem;
    text-align: center;
}

.maker > div > div:nth-child(8n+8) {
    margin-right: 0;
}

.maker div > div img {
	border: 1px solid #d7d7d7;
}

.maker div > div p {
	font-size: 0.9rem;
    margin: 0 auto 0.2rem;
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .maker div > div {
        width: 16.3%;
        margin-right: calc((100% - (16.3% * 6)) / 5);
        padding-bottom: 0.3rem;
    }
    
    .maker > div > div:nth-child(6n+6) {
        margin-right: 0;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    .maker div > div {
        width: 24.4%;
        margin-right: calc((100% - (24.4% * 4)) / 3);
        padding-bottom: 0.1rem;
    }
    
    .maker > div > div:nth-child(4n+4) {
        margin-right: 0;
    }
    
    .maker div > div p {
	    font-size: 0.6rem;
    }
}

/*「製品情報」ブロック
---------------------------------------------------------------------------*/
.product > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.product > div > div {
    width: 24.5%;
}

.product > div::after {
    content: "";
    display:block;
    width:24.5%; /* 子要素と同じ幅 */
}

.product > div::before { 
    content: ""; 
    display:block; 
    width:24.5%; /* 子要素と同じ幅 */
    order: 1; /* アイテムの並び順 */
}

.product-box-img {
    position:relative;
    border: 1px solid #f0f0f0;
}

.product-box-img div {
    position:absolute;
    top:32%;
    left:1.6em;
    line-height:2em;
    z-index: 90;
}

.product-box-img div span {
    display: block;
    color:#ffffff;
}

.product-box-img div span:nth-child(1) {
    font-size:1.5em;
    padding-left:0.2em;
    line-height:1.5em;
}

.product-box-img div span:nth-child(2) {
    font-size:3.6em;
    line-height:0.9em;
}

.product-box-img div span:nth-child(3) {
    font-size:1.5em;
    padding-left:0.2em;
    line-height:1.35em;
}

.product-box-img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width:100%;
    height:100%;
    background-image: linear-gradient(270deg,rgba(255,255,255,0),rgba(0,0,0,0.3));
}

.product-box-desc {
    background-color: #f0f0f0;
    padding:1em 1.2em 1.4em;
    margin-bottom: 1.5em;
}

.product-box-desc span {
    display:inline-block;
    background-color: var(--accent02-color);
    color: #ffffff;
    width: 8em;
    font-size: 0.8em;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.2em;
    border-radius: 2px;
    margin-bottom:0.4rem;
}

.product-box-desc h1 {
    font-size:1em;
    line-height:2em;
    text-align:left;
    margin:0;
}

.product-box-desc h2 {
    font-size:0.9em;
    line-height:1.6em;
    border:none;
    margin:0;
    text-align: left;
}

.product-box-desc h2 i {
    padding-left: 0.5em;
    color: var(--base-color);
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px) {
	.product-box > div {
        width: 48.5%;
	}

	.product-box::after {
        width:48.5%; /* 子要素と同じ幅 */
	}
	
	.product-box-img div {
        top:30%;
        left:1.2em;
	}
	
	.product-box-img div span:nth-child(1) {
        font-size:1em;
        padding-left:0.16em;
	}

	.product-box-img div span:nth-child(2) {
        font-size:2em;
	}

	.product-box-img div span:nth-child(3) {
        font-size:0.7em;
        padding-left:0.28em;
	}
	
	.product-box-desc h1 {
        font-size:0.7em;
        line-height:2.4em;
	}

	.product-box-desc h2 {
        line-height:2em;
	}	
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
	.product-box {
        display: block;
	}
	
	.product-box > div {
        width: 100%;
	}
	
	.product-box-img div {
        top:35%;
        left:2em;
	}
	
	.product-box-img div span:nth-child(1) {
        font-size:1em;
	}

	.product-box-img div span:nth-child(2) {
        font-size:2.2em;
	}

	.product-box-img div span:nth-child(3) {
        font-size:0.8em;
	}

	.product-box-desc span {
        font-size:0.8em;
	}
	
	.product-box-desc h1 {
        font-size:0.8em;
        line-height:2.4em;
	}

	.product-box-desc h2 {
        line-height:1.1em;
	}
}

/*「企業情報」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体*/
.company {
}

.company .left {
    width: 68%;
}

.company .right {
    width: 30%;
}

.company i {
    color: var(--base-color);
}

.company > div {
    display: flex;
    justify-content: space-between;
}

.company-btn {
	display: flex;
	flex-flow: column;
	position: relative;
}

.company-btn > p {
    margin-top:0.6rem;
}

.company-btn > div {
    position: absolute;
    bottom: 0%;
    display: flex;
    width:100%;
    column-gap: 1rem;
}

.company-btn > div div {
    flex: 1;
}

.company-btn > div div a {
    width:100%;
}

/*画面幅 1600px以下の設定(※例外的な調整)
--------------------------------------------------*/
@media screen and (max-width:1600px) {
    .company-btn > div {
        position: static;
        margin: 2rem 0 0;
    }
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .company > div {
        display: block;
    }
    
    .company .left, 
    .company .right {
        width: 100%;
        margin-bottom:1rem;
    }
    
    .company-btn > div {
        bottom: -28%;
        column-gap: 2rem;
        justify-content: center;
    }
    
    .company-btn > div div {
        flex: none;
        width:15rem;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    .company-btn > div {
        bottom: -24%;
        column-gap: 1rem;
        margin: 1rem 0 0;
    }
    
    .company-btn > div div {
        width:auto;
        flex: 1;
    }
    
    .company-btn > p {
        margin-top:0.3rem;
    }
}

/*採用情報ページ
---------------------------------------------------------------------------*/
.recruit {
    text-align: center;
}

.recruit h1 {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
}

.recruit p {
    font-size: 1.4rem;
    font-weight: bold;
    text-align: left;
}

.recruit-desc {
    min-height: 36rem;
    padding-bottom:10rem;
    border-bottom:1px solid #d7d7d7
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .recruit h1 {
        font-size: 2rem;
        line-height:3.4rem;
    }
    
    .recruit h1 span {
        display: block;
    }
    
    .recruit p {
        font-size: 1.2rem;
    }
    
    .recruit-desc {
        padding-bottom:5rem;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    .recruit h1 {
        font-size: 1.4rem;
        line-height:2.4rem;
    }
    
    .recruit p {
        font-size: 1rem;
    }
    
    .recruit-desc {
        min-height: 30rem;
        padding-bottom:3rem;
    }
}

/*セールご案内ページ
---------------------------------------------------------------------------*/
.sales {
    min-height: 36rem;
    padding-bottom:10rem;
    border-bottom:1px solid #d7d7d7
}

.sales > div {
    width:1200px;
    margin:0 auto;
}

.sales > div > div {
	margin-bottom:6rem;
}

.sales h1,
.sales h2 {
    background-color:#D51313;
    color:#ffffff; 
    text-align:center; 
    padding:2rem; 
    margin:3rem 0 2rem; 
}

.sales h1 {
    font-size:5rem;
}

.sales h2 {
    font-size:3rem; 
}

.sales-ap-l {
    font-size:4rem;
    letter-spacing: 0.1rem;
}

.sales-ap-m {
    font-size:3rem;
}

.sales-ap-s {
    font-size:2.4rem
}

.sales-catch {
    font-size:2.7rem;
    color:#003D89;
    text-align:center;
}

.sales-note {
	font-size:1.8rem;
	padding:2rem!important;
	border:3px solid #FFB000;
}

.sales-catch + .sales-note {
	margin:2rem auto;
    width:85%;
}

.sales-recommended {
    width:50%;
    margin:0 auto 2rem;
}

.sales-recommended > div {
    margin-bottom:1rem;
    text-align: center;
}

.sales-recommended p {
    font-size:1.5rem;
}

.sales-products {
    margin:0 auto 2rem;
}

.sales-products > div {
    margin-bottom:1rem;
    text-align: center;
}

.sales-products p {
    font-size:1.5rem;
}

.sales-1box {
    width:50%;
    margin:0 auto;
}

.sales-ex1box {
    width:100%;
}

.sales-2box {
    display: flex;
    justify-content: space-between;
    row-gap: 1rem;
}

.sales-2box > div {
    width:49%;
}

.sales-2box .sales-note {
    margin-top:1rem;
}

.sales-4box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 1rem;
}

.sales-4box > div {
    width:24.5%;
}

.sales-4box::after {
    content: "";
    display:block;
    width:24.5%; /* 子要素と同じ幅 */
}

.sales-4box::before { 
    content: ""; 
    display:block; 
    width:24.5%; /* 子要素と同じ幅 */
    order: 1; /* アイテムの並び順 */
}

/*投稿ページの場合のみ例外的に「.sales」を打ち消す*/
.sales-single {
    min-height: 0;
    padding-bottom:0;
    border-bottom:none;
}

/*画面幅 1300px以下の設定(※例外的な調整)
--------------------------------------------------*/
@media screen and (max-width:1300px) {
    .sales > div {
        width:90%;
    }

    .sales-ap-l {
        font-size:3.5rem;
    }

    .sales-ap-m {
        font-size:2.5rem;
    }

    .sales-ap-s {
        font-size:2rem
    }
    
    .sales-catch {
        font-size: 2.5rem;
    }
    
    .sales-catch + .sales-note {
        width: 95%;
    }
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .sales {
        padding-bottom:5rem;
    }
    
    .sales > div {
        width:100%;
    }
    
    .sales h1,
    .sales h2 { 
        padding:1rem; 
        margin:2rem 0 0.6rem; 
    }
    
    .sales h1 {
        font-size:3rem;
    }
    
    .sales h2 {
        font-size:1.8rem; 
    }

    .sales-ap-l {
        font-size:2.5rem;
    }

    .sales-ap-m {
        font-size:2rem;
    }

    .sales-ap-s {
        font-size:1.5rem
    }

    .sales-catch {
        font-size:2rem;
    }

    .sales-note {
        font-size:1.4rem;
    }

    .sales-catch + .sales-note {
        width:100%;
    }

    .sales-recommended {
        width:60%;
    }

    .sales-recommended p {
        font-size:1.4rem;
    }

    .sales-products p {
        font-size:1.4rem;
    }
    
    .sales-1box {
        width:60%;
    }
    
    /*投稿ページの場合のみ例外的に「.sales」を打ち消す*/
    .sales-single {
        padding-bottom:0;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    .sales {
        min-height: 30rem;
        padding-bottom:3rem;
    }
    
    .sales h1 {
        font-size:2rem;
        line-height:2.8rem;
    }
    
    .sales h2 {
        font-size:1.2rem; 
    }
    
    .sales h1 span {
        display: block;
    }

    .sales-ap-l {
        font-size:1.6rem;
    }

    .sales-ap-m {
        font-size:1.4rem;
    }

    .sales-ap-s {
        font-size:1.1rem
    }

    .sales-catch {
        font-size:1.6rem;
    }

    .sales-note {
        font-size:1.1rem;
	    padding:1rem!important;
    }

    .sales-recommended {
        width:100%;
    }

    .sales-recommended p {
        font-size:1.1rem;
    }

    .sales-products p {
        font-size:1.1rem;
    }

    .sales-1box {
        width:100%;
    }

    .sales-2box {
        display: block;
    }

    .sales-2box > div {
        width:100%;
    }

    .sales-4box > div {
        width:49.5%;
    }
    
    /*投稿ページの場合のみ例外的に「.sales」を打ち消す*/
    .sales-single {
        min-height: 0;
        padding-bottom:0;
    }
}

/*抜け道マップページ
---------------------------------------------------------------------------*/
.shortcut {
    min-height: 36rem;
    padding-bottom:10rem;
    border-bottom:1px solid #d7d7d7
}

.shortcut > div {
    width:1200px;
    margin:0 auto;
}

.shortcut h1,
.shortcut h2 {
    background-color:#D51313;
    color:#ffffff; 
    text-align:center; 
    padding:2rem; 
    margin:3rem 0 1rem; 
}

.shortcut h1 {
    font-size:5rem;
}

.shortcut h2 {
    font-size:3rem; 
}

.shortcut .shortcut-map {
    display:flex;
    flex-wrap:wrap;
    justify-content: space-between;
}

.shortcut .shortcut-map img {
    width:49.6%;
    padding-bottom:1rem;   
}

/*投稿ページの場合のみ例外的に「.shortcut」を打ち消す*/
.shortcut-single {
    min-height: 0;
    padding-bottom:0;
    border-bottom:none;
}

/*画面幅 1300px以下の設定(※例外的な調整)
--------------------------------------------------*/
@media screen and (max-width:1300px) {
    .shortcut > div {
        width:90%;
    }
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .shortcut {
        padding-bottom:5rem;
    }
    
    .shortcut > div {
        width:100%;
    }
    
    .shortcut h1,
    .shortcut h2 { 
        padding:1rem; 
        margin:2rem 0 0.6rem; 
    }
    
    .shortcut h1 {
        font-size:3rem;
    }
    
    .shortcut h2 {
        font-size:1.8rem; 
    }
    
    /*投稿ページの場合のみ例外的に「.shortcut」を打ち消す*/
    .shortcut-single {
        padding-bottom:0;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    .shortcut {
        min-height: 30rem;
        padding-bottom:3rem;
    }
    
    .shortcut h1 {
        font-size:2rem;
        line-height:2.8rem;
    }
    
    .shortcut h2 {
        font-size:1.2rem; 
    }
    
    .shortcut h1 span {
        display: block;
    }
    
    .shortcut .shortcut-map {
        display:block;
    }
    
    .shortcut .shortcut-map img {
        width:100%;
        padding-bottom:0.6rem;   
    }
    
    /*投稿ページの場合のみ例外的に「.shortcut」を打ち消す*/
    .shortcut-single {
        min-height: 0;
        padding-bottom:0;
    }
}

/*お問い合わせページ
---------------------------------------------------------------------------*/
.contact h1 {
    font-size: 2.4rem;
    margin-bottom: 0.6rem;
}

.contact p, 
.contact-done p {
    font-size: 1.4rem;
    font-weight: bold;
}

.contact-done p {
    text-align: center;
}

.contact p span, 
.contact-done p span {
    display: block;
}

.contact .phone-num {
    width: 50%;
    margin: 0 auto;
    font-size:2.2rem;
    text-align: center;
    padding: 2rem;
    border: 1px solid #d7d7d7;
}

.contact .phone-num i {
    color: var(--base-color);
}

.contact .phone-num span {
    display: block;



    font-size:1.4rem;
}

.contact-desc, 
.contact-done {
    min-height: 36rem;
    padding-bottom:10rem;
    border-bottom:1px solid #d7d7d7
}

/*画面幅 960px以下の設定
--------------------------------------------------*/
@media screen and (max-width:960px){
    .contact h1 {
        font-size: 2rem;
        line-height:3.4rem;
    }
    
    .contact p, 
    .contact-done p {
        font-size: 1.2rem;
    }
    
    .contact-done p {
        text-align: left;
    }

    
    .contact p span, 
    .contact-done p span {
        display: inline;
    }
    
    .contact .phone-num {
        font-size:1.8rem;
        padding: 1rem;
    }
    
    .contact .phone-num span {
        font-size:1.2rem;
    }
    
    .contact-desc, 
    .contact-done {
        padding-bottom:5rem;
    }
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px) {
    .contact h1 {
        font-size: 1.4rem;
        line-height:2.4rem;
    }
    
    .contact p, 
    .contact-done p {
        font-size: 1rem;
    }
    
    .contact .phone-num {
        width: 100%;
        font-size:1.4rem;
        padding: 0.7rem;
    }
    
    .contact .phone-num span {
        font-size:1rem;
    }
    
    .contact-desc, 
    .contact-done {
        min-height: 30rem;
        padding-bottom:3rem;
    }
}

/*コンタクトフォーム(テーブルは.cp_tableを流用)
---------------------------------------------------------------------------*/
/*全体*/
fieldset {
    display:none;
}

/*必須・任意アイコンの調整*/
.haveto, 
.any {
    position: relative;
    bottom: 2px;
    font-size: 0.6rem;
    padding: 5px;
    color: #FFFFFF;
    border-radius: 2px;
    margin: 0 0.5rem;
}

.haveto {
    background: #D53535;
}

.any {
    background: #154989;
}

/*ラジオボタンを縦並び指定*/
.wpcf7-list-item {
    display: block!important;
    margin: 0!important;
}

/*送信ボタン*/
.contact-btn p {
    display: flex;
    justify-content: center;
    column-gap: 2rem;
	margin:2rem 0 0;
}

.contact-btn #checkbtn,
.contact-btn #formbtn, 
.contact-btn .wpcf7-previous {
    margin: 0;
}

#checkbtn, 
#formbtn, 
.wpcf7-previous {
    display: block;
    margin: 0 auto;
    padding:0.5rem 1rem;
    border: none;
    width: 15rem;
    color: #FFFFFF;
    font-weight: bold;
    line-height: 2rem;
    border-radius: 2px;
}

#checkbtn,
#formbtn {
    background-color: var(--base-color);
}

.wpcf7-previous {
    background-color: var(--sub-color);
}

#checkbtn:hover, 
#formbtn:hover {
    background: #D53535;
	cursor: pointer;
}

.wpcf7-previous:hover {
    background: #154989;
    cursor: pointer;
}

.wpcf7-spinner {
    display: none!important;
}

/*入力テキスト*/
.textsp, .mailsp, .zipsp, .prefsp, .addrsp, .telsp, .contentsp {
    font-size: 1rem;
    border: none;
}

/*入力エリア*/
input, 
textarea {
    width:100%;
    padding:5px;
}

input[type="checkbox"] {
    width: 3%;
    vertical-align: middle;
}

/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    .haveto, 
    .any {
        font-size: 0.5rem;
        margin: 0 0.5rem 0 0.2rem;
    }
    
    .contact-btn p {
        column-gap: 1rem;
        margin:1rem 0 0;
    }
    
    #checkbtn {
        width: 12rem;
    }
    
    #formbtn, 
    .wpcf7-previous {
        width:auto;
        flex: 1;
    }
    
    input {
        font-size: 0.9rem;
    }
    
    input[type="checkbox"] {
        width: 5%;
    }
}

/*テーブル(共通部品)
---------------------------------------------------------------------------*/
.cp_table *, .cp_table *:before, .cp_table *:after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.cp_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 2rem;
}

.cp_table th, .cp_table td {
    padding: 10px;
    border: 1px solid #d7d7d7;
}

.cp_table th {
    width: 30%;
    text-align: left;
    background: #f7f7f7;
}



/*画面幅 480px以下の設定
--------------------------------------------------*/
@media screen and (max-width:480px){
    .cp_table {
        margin-bottom: 1rem;
    }
    
    .cp_table th, .cp_table td {
        width: 100%;
        display: block;
        border-top: none;
    }
    
    .cp_table tr:first-child th {
        border-top: 1px solid #d7d7d7;
    }
}

/*ボタン(共通部品)
---------------------------------------------------------------------------*/
.cp_btn-01, 
.cp_btn-02 {
    text-align:center;
}

.cp_btn-01 a, 
.cp_btn-02 a {
    display: inline-block;
    padding: 0.5rem 1rem;
    border: none;
    color: #FFFFFF;
    font-weight: bold;
    border-radius: 2px;
}

.cp_btn-01 a {
    background: var(--base-color);
}

.cp_btn-02 a {
    background: var(--sub-color);
}

.cp_btn-01 a:hover {
    background: #D53535;
}

.cp_btn-02 a:hover {
    background: #154989;
}

/*リスト(共通部品)
---------------------------------------------------------------------------*/
.cp_list-icon {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.cp_list-icon li {
    display: flex; /* li要素をフレックスコンテナとして設定 */
    align-items: flex-start; /* アイテムを上揃えに配置 */
    /*margin-bottom: 10px;*/ /* リストアイテム間の余白 */
}

.cp_list-icon i {
    /* アイコンの幅を固定してテキストとの隙間を作る */
    width: 1.5em;
    /* アイコンとテキストの垂直方向の配置を調整したい場合はここを調整 */
    margin-right: 0.5em; 
    text-align: center; /* アイコンを中央揃えにすることも可能 */
    line-height:2.2;
}

.cp_list-icon span {
    /* テキスト部分が残りのスペースを占めるようにする */
    flex: 1;
}

/*その他
---------------------------------------------------------------------------*/


