@charset "utf-8";
/* -----------------------------------------------------------------------------
各ページ共通CSS
------------------------------------------------------------------------------*/
/*レスポンシブ用雛形　使うところにコピペ*/
/*
@media screen and (max-width: 560px) {
    /*　スマホの時ここを読み込む　
}
@media screen and (min-width: 768px) {
    /*　画面サイズが768px以上からはここを読み込む　
}
@media screen and (min-width: 960px) {
    /*　画面サイズが960px以上からここを読み込む　
}
@media screen and (min-width: 1200px) {
    /*　画面サイズが1200px以上からはここを読み込む　
}
*/
/*　フォントサイズの計算式　*/
/*　https://modern-fluid-typography.vercel.appで数値設定して、clamp以下をコピペ
例）font-size: clamp(2.6rem, 1.8vw + 1rem, 3.2rem);
*/
/* -------------------------------------
CSS変数
--------------------------------------*/
:root {
    --scroll-bar-width: 0px;
    --VW100: calc(100vw - var(--scroll-bar-width));
    --containerMax: 192rem;
    --sectionInner: 152rem;
    --White: #fff;
	--baseBlue: #025cb5;
    --baseBlueOpa30: #025cb530;
	--subBlue: #007fd6;
    --baseGray: #f7f7f7;
    --baseOrange: #ffae00;
    --baseYellow: #ffe600;
    --baseRed: #e60012;
    --baseGreen: #22b573;
    --Font12: 1.2rem;
    --Font13: 1.3rem;
    --Font14: 1.4rem;
    --Font16: 1.6rem;
    --Font18: 1.8rem;
    --Font20: 2rem;
    --Font22: 2.2rem;
    --Font24: 2.4rem;
    --Font28: 2.8rem;
    --Font32: 3.2rem;
    --Font34: 3.4rem;
    --Font36: 3.6rem;
    --Font50: 5rem;
    --Font80: 8rem;
    --Font10-14: clamp(1rem, 1vw + 0.35rem, 1.4rem);
    --Font12-16: clamp(1.2rem, 1vw + 0.5rem, 1.6rem);
    --Font14-16: clamp(1.4rem, 0.75vw + 1rem, 1.6rem);
    --Font16-18: clamp(1.6rem, 1vw + 1rem, 1.8rem);
    --Font16-20: clamp(1.6rem, 1vw + 1.1rem, 2rem);
    --Font16-22: clamp(1.6rem, 0.8vw + 1rem, 2.2rem);
    --Font18-26: clamp(1.8rem, 2vw + 1rem, 2.6rem);
    --Font18-22: clamp(1.8rem, 1vw + 1.25rem, 2.2rem);
    --Font20-24: clamp(1.8rem, 1vw + 1.25rem, 2.4rem);
    --Font20-26: clamp(2rem, 2vw + 1rem, 2.6rem);
    --Font22-30: clamp(2.2rem, 1.8vw + 1rem, 3rem);
    --Font24-32: clamp(2.4rem, 2vw + 1.25rem, 3.2rem);
    --Font24-36: clamp(2.4rem, 2vw + 1.5rem, 3.6rem);
    --Font28-36: clamp(2.8rem, 2vw + 1.75rem, 3.6rem);
    --Font_Family: "Helvetica Neue", Helvetica, Arial, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", Meiryo, "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
/* -------------------------------------
　表示切り替え
--------------------------------------*/
@media screen and (max-width: 768px) {
    /*　スマホ・タブレットの時は非表示　*/
    .mobilenone {
        display: none !important;
    }
}
@media screen and (min-width: 769px) {
    /*　スマホ・タブレットより大きい時は非表示　*/
    .pcnone {
		display: none !important;
	}
}
/* -------------------------------------
表示幅、ボディー
--------------------------------------*/
body, html {
	line-height: 1.6;
	letter-spacing: 0.05rem;
	display: block;
}
html {
	font-size: 62.5%;
}
body {
	margin: 0 !important;
	color: #333;
	font-size: 1.6rem;
    font-family: var(--Font_Family);
}
#container {
    width: var(--VW100);
    max-width: var(--containerMax);
    margin-right: auto;
    margin-left: auto;
}
#contents {
    width: 100%;
}
.contentsInner,
.footerContentsInner {
    width: 100%;
    max-width: var(--sectionInner);
    margin-right: auto;
    margin-left: auto;
	margin-bottom: 3rem;
}
.overFlowContents {
    margin-right: calc(50% - (var(--VW100) / 2));
    margin-left: calc(50% - (var(--VW100) / 2));
    padding-right: calc((var(--VW100) / 2) - 50%);
	padding-left: calc((var(--VW100) / 2) - 50%);
    overflow-x: hidden;
}
/* -------------------------------------
マージン
--------------------------------------*/
.common_margin {
    margin: 0 1.5rem;
}
@media screen and (min-width: 960px) {
    .common_margin {
        margin: 0 10%;
    }
}
.mLR-center {
    margin-right: auto;
    margin-left: auto;
}
.mT20 {
    margin-top: 2rem;
}
.mR20 {
    margin-right: 2rem;
}
.mB10 {
	margin-bottom: 1rem;
}
.mB20 {
	margin-bottom: 2rem;
}
.mB30 {
	margin-bottom: 3rem;
}
.mB40 {
	margin-bottom: 4rem;
}
.mB50 {
	margin-bottom: 5rem;
}
.mB60 {
	margin-bottom: 6rem;
}
.mB80 {
	margin-bottom: 8rem;
}
.mB100 {
	margin-bottom: 10rem;
}
.mL10 {
    margin-left: 1rem;
}
.mL20 {
    margin-left: 2rem;
}
/* -------------------------------------
パディング
--------------------------------------*/
.pT10 {
    padding-top: 1rem
}
.pT20 {
    padding-top: 2rem
}
.pT40 {
    padding-top: 4rem
}
.pT80 {
    padding-top: 8rem
}
.pB40 {
    padding-bottom: 4rem
}
.pB80 {
    padding-bottom: 8rem
}
.pR20 {
    padding-right: 2rem;
}
.pR30 {
    padding-right: 3rem;
}
/* -------------------------------------
アニメーション
--------------------------------------*/
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(100px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
@keyframes fadeDown {
    from {
        opacity: 1;
        transform: translateY(0);
    }
    to {
        opacity: 0;
        transform: translateY(100px);
    }
}
/* -------------------------------------
テキスト関係
--------------------------------------*/
/*改行制御*/
.newLineControl {
    word-break: keep-all;
    overflow-wrap: break-word;
}
/*行高*/
.lineH20 {
    line-height: 2;
} 
/*フォントサイズ*/
.font12 {
	font-size: var(--Font12);
}
.font13 {
	font-size: var(--Font13);
}
.font14 {
	font-size: var(--Font14);
}
.font16 {
	font-size: var(--Font16);
}
.font18 {
	font-size: var(--Font18);
}
.font20 {
	font-size: var(--Font20);
}
.font22 {
	font-size: var(--Font22);
}
.font24 {
	font-size: var(--Font24);
}
.font28 {
    font-size: var(--Font28);
}
.font32 {
    font-size: var(--Font32);
}
.font34 {
    font-size: var(--Font34);
}
.font36 {
    font-size: var(--Font36);
}
.font50 {
	font-size: var(--Font50);
}
.font80 {
	font-size: var(--Font80);
}
/*フォント可変サイズ*/
.font10-14 {
	font-size: var(--Font10-14);
}
.font12-16 {
	font-size: var(--Font12-16);
}
.font14-16 {
	font-size: var(--Font14-16);
}
.font16-18 {
	font-size: var(--Font16-18);
}
.font16-20 {
	font-size: var(--Font16-20);
}
.font16-22 {
	font-size: var(--Font16-22);
}
.font18-26 {
	font-size: var(--Font18-26);
}
.font18-22 {
	font-size: var(--Font18-22);
}
.font20-24 {
	font-size: var(--Font20-24);
}
.font20-26 {
	font-size: var(--Font20-26);
}
.font22-30 {
	font-size: var(--Font22-30);
}
.font24-32 {
	font-size: var(--Font24-32);
}
.font24-36 {
	font-size: var(--Font24-36);
}
.font28-36 {
	font-size: var(--Font28-36);
}
.fontB {
	font-weight: bold;
}
.fontM {
	font-weight: 500;
}
.fontN {
	font-weight: normal;
}
/*中央揃え*/
.textCenter {
	text-align: center;
}
/*右詰め*/
.textRight {
	text-align: right;
}
/*均等割り付け*/
.textJustify {
	text-align: justify;
}
.underlineYellow{
	background: linear-gradient(transparent 50%, #ffe600 0%);
}
.common_List {
    text-indent: 1.6rem;
    text-align: justify;
}
.textDecoNone {
    text-decoration: none;
}
/* -------------------------------------
カラー設定
--------------------------------------*/
.colorBlue {
    color: var(--baseBlue);
}
.subBlue {
    color: var(--subBlue);
}
.colorGray {
    color: var(--baseGray);
}
.colorYellow {
    color: var(--baseYellow);
}
.colorGreen {
    color: var(--baseGreen);
}
.colorWhite {
    color: var(--White);
}
.bgBlue {
    background-color: var(--baseBlue);
}
.bgGray {
    background-color: var(--baseGray);
}
.bgWhite {
    background-color: var(--White);
}
/* -------------------------------------
画像設定
--------------------------------------*/
.img_Max100 img {
	max-width: 100%;
	height: auto;
}
.img_W100 img {
	width: 100%
}
/* -------------------------------------
ポジション用
--------------------------------------*/
.clearfix::after {
    content: "";
    display: block;
    clear: both;
}
.posRelative {
    position: relative;
}
/* -------------------------------------
ヘッダー
--------------------------------------*/
#header {
    width: var(--VW100);
    margin-right: auto;
    margin-left: auto;
    background-color: var(--White);
    position: fixed;
    z-index: 1000;
}
/* -------------------------------------
グローバルナビ
--------------------------------------*/
.headerLogo {
    width: 20%;
    max-width: 290px;
}
#globalnavi {
    width: 100%;
    max-width: var(--containerMax);
    margin-right: auto;
    margin-left: auto;
    padding: 15px 30px;
    background-color: var(--White);
}
.gnavi_menu-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.gnavi-list {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 80%;
    max-width: 1630px;
    padding: 10px 0 0 40px;
}
.gnavi-item a {
    display: block;
    width: auto;
    padding: 8px 20px;
    text-align: center;
    line-height: 1.2;
    color: var(--baseBlue);
    transition: all 0.3s;
}
.gnavi-item:not(:last-child) {
    border-right: 1px solid var(--baseBlue);
}
.gnavi-item p:not(:first-child).current a,
.gnavi-item a:hover {
    font-weight: bold;
    color: var(--baseBlue);
    background: var(--baseBlueOpa30);
}
@media screen and (min-width: 769px) {
/* ドロップダウンメニュー */
    .drop-menu {
        position: relative;
    }
    .drop-menu-list {
        position: absolute;
        top: 100%;
        left: 0;
        transform: scaleY(0); /* ドロップダウンメニューの非表示 */
        transform-origin: center top; /* 変形を適応する基準を設定 */
        transition: transform .3s; /* 表示の変化をアニメーション化 */
        width: 100%;
        z-index: 1;
    }
    .drop-menu-item {
        background: var(--baseBlue);
        transition: all 0.3s;
    }
    .gnavi-item:hover .drop-menu-list {
        transform: scaleY(1); /* ドロップダウンメニューの表示 */
    }
    .drop-menu-item a {
        color: var(--White);
    }
    .drop-menu-item:hover {
        font-weight: bold;
        color: var(--baseBlue);
        background: var(--baseBlueOpa30);
    }
}
.gnavi-item .gnavi-itemMobile {
    display: none;
}
/* -------------------------------------
ハンバーガーメニュー
--------------------------------------*/
.gnavi_button_back {
    display: none;
}
/*ハンバーガーメニューに切り替え*/
@media screen and (max-width: 768px) {
    #globalnavi {
        padding: 15px 15px 0;
        position: relative;
    }
    .headerLogo {
        width: 100%;
        max-width: 290px;
        padding-bottom: 3px;
    }
    .gnavi_menu-item {
        display: block;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0;
		left: 100%;/*ボタンをクリックされる前はメニューを画面外へ*/
		z-index: 80;
		background: #025cb595;
		transition: all 0.5s;/*アニメーション設定*/
	}
	.gnavi_menu-item.active  {
		left: 0;/*ボタンをクリックされたらメニューを画面内へ*/
	}
    .gnavi-list {
        width: auto;
        max-width: 100%;
        margin-right: 5rem;
        display: block;
	}
	.gnavi-list .gnavi-item {
        width: 80%;
        margin: 4rem auto;
        padding: 1.5rem;
        line-height: 1.6rem;
        background: var(--White);
        border-radius: 10px;
	}
    .gnavi-list .gnavi-item span {
        font-size: var(--Font16) !important;
	}
    .gnavi-item a {
        padding: 3px 20px;
    }
    .drop-menu-item {
        margin-top: 25px;
        padding: 5px;
        border: 1px solid var(--subBlue);
        border-radius: 8px;
    }
	.gnavi_button_back {
		display: block;
		width: 100%;
	}
	/*ハンバーガーメニューのボタン*/
	.gnavi_menu-btn  {
		position: absolute;
		top: 10px;
		right: 15px;
		display: flex;
		height: 50px;
		width: 50px;
		justify-content: center;
		align-items: center;
		z-index: 90;
        border: none;
    }
    #header.js-backOn .gnavi_menu-btn {
		background-color: var(--White);
        transition: all 0.5s;
	}
	.gnavi_menu-btn span,
	.gnavi_menu-btn span::before,
	.gnavi_menu-btn span::after {
		content: '';
		height: 3px;
		width: 30px;
		background-color: var(--baseBlue);
		position: absolute;
	}
	.gnavi_menu-btn span::before {
		bottom: 10px;
	}
	.gnavi_menu-btn span::after {
		top: 10px;
	}
	/*ハンバーガーメニューのボタンの動き*/
	.gnavi_menu-btn.active span {
		background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
	}
	.gnavi_menu-btn.active span::before {
		bottom: 0;
		rotate: 45deg;
        background-color: var(--baseBlue);
	}
	.gnavi_menu-btn.active span::after {
		top: 0;
		rotate: -45deg;
        background-color: var(--baseBlue);
	}
}
/* -----------------------------------------------------------------
パンくずリスト
------------------------------------------------------------------*/
.breadcrumb_list {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    max-width: var(--containerMax);
    margin-right: auto;
    margin-left: auto;
    padding-left: 30px;
    font-size: var(--Font12);
}
.breadcrumb_item:nth-child(n+2) {
    padding-left: 0.3rem;
}
.breadcrumb_item:nth-child(n+2)::before {
    content: "";
    display: inline-block;
    transform: rotate(45deg);
    width: 5px;
    height: 5px;
    border-top: 1px solid var(--subBlue);
    border-right: 1px solid var(--subBlue);
    vertical-align: 2px;
}
.breadcrumb_item a:hover {
    color: var(--baseOrange);
}
@media screen and (max-width: 768px) {
    .breadcrumb_list {
        padding-left: 15px;
    }
}
/* -----------------------------------------------------------------
各ページ共通
------------------------------------------------------------------*/
.flexBox {
    display: flex;
    flex-wrap: wrap;
}
.section_inner {
    padding: 0 1.5rem;
}
.commonBtn {
    display: grid;
    place-items: center;
    transition: .3s;
}
.contactBtn {
    display: flex;
    width: 100%;
    max-width: 260px;
    transition: .3s;
}
@media screen and (max-width: 768px) {
    .contactBtn {
        margin: 0 auto 4rem;
    }
}
.commonBtn a {
    position: relative;
    width: 100%;
    max-width: 260px;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    background-color: var(--baseBlue);
    transition: all 0.3s;
}
.contactBtn a {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    background-color: var(--baseBlue);
    transition: all 0.3s;
}
.commonBtn a::after,
.contactBtn a::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 3px solid var(--White);
    border-right: 3px solid var(--White);
    top: 50%;
    right: 10px;
    translate: 0 -50%;
    rotate: 45deg;
}
.commonBtn a:hover,
.contactBtn a:hover {
    background: var(--baseOrange);
    font-weight: bold;
    
}
/*左下下がり*/
.section_tilt_L {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 220px), 0 100%);
}
/*右肩上がり*/
.section_tilt_R {
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 220px), 0 100%);
}
.overflowL {
    margin-left: calc(50% - (var(--VW100) / 2));
	padding-left: calc((var(--VW100) / 2) - 50%);
    overflow-x: hidden;
}
.overflowR {
    margin-right: calc(50% - (var(--VW100) / 2));
    padding-right: calc((var(--VW100) / 2) - 50%);
    overflow-x: hidden;
}
/*ページネーション*/
.nav-links, .common-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 1em 0;
}
.nav-links .page-numbers.current,
.common-pagination .common-pageActive {
    margin: 0 5px;
    padding: 0.5em 0.7em;
    font-weight: bold;
    color: var(--White);
    border: solid 1px var(--subBlue);
    border-radius: 10px;
    background: var(--subBlue);
}
.nav-links a, .nav-links span,
.common-pagination li a {
    display: block;
    margin: 0 5px;
    padding: 0.5em 0.7em;
    border: solid 1px #cfcfcf;
    border-radius: 10px;
    transition: all .3s;
}
.nav-links a:hover, .common-pagination li a:hover {
    color: var(--White);
    border: solid 1px var(--baseOrange);
    background: var(--baseOrange);
}
/*reCAPTCHAバッジを非表示*/
.grecaptcha-badge {
    visibility: hidden;
}
.recaptchaText {
    padding-bottom: 5rem;
    font-size: var(--Font12);
    text-align: center;
    color: gray;
}
/* -----------------------------------------------------------------
トップページ
------------------------------------------------------------------*/
.top-visual_Box {
    position: relative;
}
.top_lineitem {
    position: absolute;
    z-index: 1;
}
.topslide-item {
    width: var(--VW100);
    max-width: 96rem;
    height: auto;
}
.topslide-item img {
    width: 100%;
	height: auto;
}
.top-visual_Box h1 {
    width: 100%;
    padding: 1rem 2rem;
    font-size: 3.6rem;
    font-weight: bold;
    line-height: 1.35;
    text-align: center;
    color: white;
    background-color: #025cb595;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
}
@media screen and (min-width: 769px) {
    .top-visual_Box h1 {
        font-size: 7rem;
    }
}
/*セクション：私たちについて*/
#aboutus {
    padding-top: 4rem;
}
#aboutus h2 {
    margin-bottom: 4rem;
    font-size: var(--Font18);
    text-align: center;
    color: var(--subBlue);
}
#aboutus h2::before {
    content: "About us";
    color: var(--subBlue);
    font-size: 8rem;
    line-height: 1;
    font-weight: bold;
    display: block;
    margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
    .about_textbox {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    .about_textL {
        padding-right: 4rem;
    }
}
.about_textR {
    line-height: 1.75;
}
/*セクション：取扱商品*/
#Itemshandled {
    width: var(--VW100);
    max-width: var(--containerMax);
    padding-top: 4rem;
    padding-bottom: 4rem;
    background-color: #fffde0;
}
#Itemshandled h2 {
    margin-bottom: 4rem;
    font-size: var(--Font18);
    text-align: center;
    color: var(--subBlue);
}
#Itemshandled h2::before {
    content: "Items handled";
    color: var(--subBlue);
    font-size: 8rem;
    line-height: 1;
    font-weight: bold;
    display: block;
    margin-bottom: 2rem;
}
#Itemshandled .handled_box01,
#Itemshandled .handled_box02 {
    display: block;
}
#Itemshandled .handled_text01 {
    padding: 0 1.5rem 2rem;
    background: linear-gradient(160deg, var(--subBlue) 0%, #ffd5eb 95%, #fcffd8 100%);
}
#Itemshandled .handled_text02 {
    padding: 0 1.5rem 2rem;
    background: linear-gradient(160deg, var(--subBlue) 0%, #9bffc9 95%, #fcffd8 100%);
}
#Itemshandled .handled_text01 h3,
#Itemshandled .handled_text02 h3 {
    font-size: 10rem;
    font-weight: bold;    
}
#Itemshandled .handled_item {
    margin-left: 2rem;
}
#Itemshandled .handled_item ul {
    display: table-cell;
    list-style-type: disc;
}
@media screen and (min-width: 769px) and (max-width: 1100px) {
    #Itemshandled .handled_box01 h3,
    #Itemshandled .handled_box02 h3 {
        font-size: 7rem;
    }
}
@media screen and (min-width: 769px) and (max-width: 1000px) {
    #Itemshandled .handled_box01 h3,
    #Itemshandled .handled_box02 h3 {
        font-size: 5.5rem;
    }
    #Itemshandled .handled_item ul {
        font-size: 1.5rem;
    }
}
@media screen and (min-width: 769px) and (max-width: 900px) {
    #Itemshandled .handled_box01 h3,
    #Itemshandled .handled_box02 h3 {
        font-size: 4.5rem;
    }
    #Itemshandled .handled_item ul {
        font-size: 1.4rem;
    }
}
@media screen and (min-width: 769px) {
    #Itemshandled .handled_box01 {
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-end;
    }
    #Itemshandled .handled_box02 {
        display: flex;
        flex-wrap: wrap;
    }
    #Itemshandled .handled_box01 > *,
    #Itemshandled .handled_box02 > * {
        width: 50%;
        max-width: 86rem;
    }
    #Itemshandled .handled_item {
        margin-left: 0;
    }
    #Itemshandled .handled_text01,
    #Itemshandled .handled_text02 {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-evenly;
        padding: 3rem 0 0;
    }
    #Itemshandled .handled_box01 h3,
    #Itemshandled .handled_box02 h3 {
        writing-mode: vertical-rl;    
    }
}
/*セクション：我が社の強み*/
#ourstrengths {
    width: var(--VW100);
    max-width: var(--containerMax);
    padding-top: 4rem;
    padding-bottom: 220px;
    background: linear-gradient(180deg, var(--subBlue) 0%, #9bffc9 95%, #fcffd8 100%);
}
#ourstrengths h2 {
    margin-bottom: 4rem;
    font-size: var(--Font18);
    text-align: center;
    color: var(--White);
}
#ourstrengths h2::before {
    content: "Our strengths";
    color: var(--White);
    font-size: 8rem;
    line-height: 1;
    font-weight: bold;
    display: block;
    margin-bottom: 2rem;
}
@media screen and (min-width: 769px) {
    #ourstrengths .strengthsBox {
        display: flex;
        flex-wrap: wrap;
    }
    #ourstrengths .strengths_item {
        width: 33.3%;
    }
}
/* -----------------------------------------------------------------
下層ページ共通
------------------------------------------------------------------*/
.head-visual_Box {
    margin-bottom: 6rem;
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}
.head-visual_Box.headBox_small {
    height: 400px;
    padding-top: 0;
}
.head-visual_Box::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 50%;
    translate: -50%;
    z-index: -1;
}
.head-visual_Box .item-kinds {
    width: 100%;
    max-width: 40rem;
    padding: 0.3em 0;
    font-size: var(--Font32);
    font-weight: bold;
    text-align: center;
    color: var(--baseBlue);
    background: var(--White);
}
.article-item {
    width: 50%;
    padding: 10px;
}
.article-item .article_thumbnail {
    position: relative;
}
.article-item .article_thumbnail::before,
.article-item .article_thumbnail::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
    opacity: 0;
    transition: opacity .6s ease;
}
.article-item .article_thumbnail::before {
    background: rgba(190,91,70,.6);
    width: 100%;
    height: 100%;
}
.article-item .article_thumbnail::after {
    color: #fff;
    content: "商品の詳細へ";
    font-size: 22px;
    font-weight: bold;
    display: flex;
    text-align: center;
    justify-content: center;
    align-items: center;
    bottom: 0;
    right: 0;
}
.article-item:hover .article_thumbnail::before,
.article-item:hover .article_thumbnail::after {
    opacity: 1;
}
.article-item .article_thumbnail > img {
    object-fit: cover;   
}
.article_title {
    font-size: var(--Font16-18);
    font-weight: 500;
    line-height: 1.5;
    border-bottom: 1px dashed var(--baseBlue);
}
.item_detail {
    width: 100%;
    max-width: calc(var(--sectionInner) - 20rem);
    margin: 0 auto 8rem;
    padding: 0 1.5rem;
}
.item_detail-Box > div {
    width: 100%;
}
.item_detail_type {
    padding: 0.5rem;
    font-size: var(--Font14-16);
    font-weight: bold;
    color: var(--White);
    background: var(--baseOrange);
}
ul.item_detail_area {
    margin-bottom: 2rem;
    display: flex;
    flex-wrap: wrap;
}
ul.item_detail_area li {
    margin: 0 1rem 1rem 0;
    padding: 0.5rem 1rem;
    font-size: var(--Font14-16);
    color: var(--subBlue);
    border: 1px solid var(--subBlue);
}
.backList {
    display: flex;
    width: 100%;
    max-width: 260px;
    transition: .3s;
}
.backList a {
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    text-align: center;
    color: var(--subBlue);
    border: 1px solid var(--subBlue);
    transition: all 0.3s;
}
.backList a::after {
    position: absolute;
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    border-top: 2px solid var(--subBlue);
    border-left: 2px solid var(--subBlue);
    top: 50%;
    left: 10px;
    translate: 0 -50%;
    rotate: -45deg;
}
.backList a:hover {
    border: 1px solid var(--baseBlueOpa30);
    background: var(--baseBlueOpa30);
}
@media screen and (min-width: 769px) {
    .head-visual_Box {
        height: 600px !important;
    }
    .article-item {
        width: 25%;
        padding: 25px;
    }
    .item_detail-Box > div {
        width: 50%;
    }
    .item_detail_info {
        padding: 0 2em;
    }
}
/* -----------------------------------------------------------------
取扱商品ページ
------------------------------------------------------------------*/
#miscellaneousgoods-list .head-visual_Box::before,
#miscellaneousgoods.archive .head-visual_Box::before,
#single.miscellaneousgoods .head-visual_Box::before {
    background: url("../images/common/head-visual_bk01.svg") no-repeat center / cover;
}
#foods-list .head-visual_Box::before,
#foods.archive .head-visual_Box::before,
#single.foods .head-visual_Box::before {
    background: url("../images/common/head-visual_bk02.svg") no-repeat center / cover;
}
#miscellaneousgoods-list h1::before,
#miscellaneousgoods h1::before,
#single.miscellaneousgoods .head-visual_Box p.headTitle::before,
#foods-list h1::before,
#foods h1::before,
#single.foods .head-visual_Box p.headTitle::before {
    content: "Items handled";
    color: var(--baseBlue);
    font-size: 8rem;
    line-height: 1;
    font-weight: bold;
    display: block;
    margin-bottom: 2rem;
}
#single.miscellaneousgoods h1,
#single.foods h1{
    border-bottom: 2px solid var(--subBlue);
}
#item_photo-Box.splide .thumb-wrapper .thumb-media {
    width: 20%;
}
#item_photo-Box.splide .splide__arrow > svg {
    display: none;
}
#item_photo-Box.splide .splide__arrows {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding-top: 62.5%;
}
/*「条件で探す」セクション*/
#search {
    padding: 5rem 1.5rem;
    background: var(--baseGray);
}
#search form.filter_box {
    width: 100%;
    max-width: 110rem;
    font-size: var(--Font16);
}
.filter_options {
    margin-bottom: 3rem !important;
    padding: 1.5em;
    background: var(--White);
}
#search form.filter_box.vkfs div.vkfs__label-name {
    font-size: var(--Font18);
    color: var(--subBlue);
}
#search form.filter_box.vkfs input[type=checkbox]::before,
#search form.filter_box.vkfs input[type=radio]::before {
    border: 1px solid #646464;
}
#search form.filter_box li.vkfs__level-0.btnDisabled {
    cursor: not-allowed;
    pointer-events: none;
    opacity: .35;
}
#search form.filter_box.vkfs .btn[type=submit] {
    display: block;
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--Font16);
    text-align: center;
    letter-spacing: 0;
    padding: .75em 1em;
    color: var(--White);
    border: 1px solid var(--baseBlue);
    background: var(--baseBlue);
    transition: all 0.2s;
}
#search form.filter_box.vkfs .btn[type=submit]:hover {
    font-weight: bold;
    border: 1px solid var(--baseOrange);
    background: var(--baseOrange);
}
#search form.filter_box.vkfs .btn[type=submit]:hover::after {
    content: "する";
}
#search form.filter_box.vkfs input[type=checkbox] {
    top: 7px;
}
@media (min-width: 769px) {
    #search form.filter_box.vkfs input[type=checkbox] {
        top: 9px;
    }
    #search form.filter_box.vkfs .btn[type=submit] {
        width: calc(50% - 20px);
        max-width: 260px;
    }
}
/* -----------------------------------------------------------------
会社概要ページ
------------------------------------------------------------------*/
#company-profile .head-visual_Box::before {
    background: url("../images/common/head-visual_bk03.svg") no-repeat center / cover;
}
#company-profile h1::before {
    content: "Company Profile";
    color: var(--White);
    font-size: 8rem;
    line-height: 1;
    font-weight: bold;
    display: block;
    margin-bottom: 2rem;
}
#company-profile #philosophy h2 {
    font-size: var(--Font18);
    text-align: center;
    color: var(--subBlue);
}
#company-profile #philosophy h2::before {
    content: "Philosophy";
    color: var(--subBlue);
    font-size: 6rem;
    line-height: 1;
    font-weight: bold;
    display: block;
    margin-bottom: 2rem;
}

#overview {
    width: 100%;
    max-width: var(--containerMax);
    margin-bottom: 30rem;
    padding-top: 5rem;
    padding-bottom: 7rem;
    background-color: #f5f7fa;
}
.overview-list table {
    width: 100%;
    max-width: calc(var(--containerMax) / 2);
}
.overview-list table tr {
    border-bottom: 1px solid #cccccc;
}
.overview-list table tr.address.noLine {
    border-bottom: none;
}
.overview-list table tr:first-child {
    border-top: 1px solid #cccccc;
}
.overview-list table tr th {
    display: block;
    padding: 1rem 0;
    font-weight: bold;
    color: var(--subBlue);
    white-space: nowrap;
}
.overview-list table tr td {
    display: block;
}
.overview-list table tr td:last-of-type {
    padding-bottom: 1rem;
}
.overview-list table tr.address td:nth-of-type(1) {
        padding-bottom: 0;
    }
@media screen and (min-width: 769px) {
    #company-profile #philosophy > div {
        text-align: center;
    }
    #company-profile #philosophy h2::before {
        font-size: 8rem;
    }
    .overview-list table tr th {
        display: table-cell;
        padding: 2.5rem 2em;
    }
    .overview-list table tr td {
        display: table-cell;
        padding: 2.5rem 0;
    }
}
/* -----------------------------------------------------------------
お問い合わせページ、完了ページ
------------------------------------------------------------------*/
#contact .head-visual_Box::before,
#contact-thanks .head-visual_Box::before {
    background: url("../images/common/head-visual_bk03.svg") no-repeat center / cover;
}
#contact h1::before {
    content: "Contact";
    color: var(--White);
    font-size: 8rem;
    line-height: 1;
    font-weight: bold;
    display: block;
    margin-bottom: 2rem;
}
#contact-thanks h1::before {
    content: "Contact Thanks";
    color: var(--White);
    font-size: 8rem;
    line-height: 1;
    font-weight: bold;
    display: block;
    margin-bottom: 2rem;
}
#contact-thanks .section_inner {
    width: 100%;
    max-width: calc(var(--sectionInner) - 20rem);
    margin: 0 auto 8rem;
}
#contact-thanks .section_inner p {
    margin-bottom: 4rem;
}
input[type=email], input[type=search], input[type=tel], input[type=text], input[type=url], select, textarea {
    -webkit-appearance: none;
    display: block;
    width: 100%;
    border: 1px solid #b6c3c6;
    border-radius: 4px;
    position: relative;
}
.required::after {
    content: "必須";
    margin-left: 1em;
    margin-bottom: 3px;
    padding: 3px 5px;
    font-size: var(--Font12);
    font-weight: bold;
    color: #fff;
    background: var(--baseGreen);
    border-radius: 6px;
}
.input-item {
    margin-bottom: 5rem;
}
.input-item .input-area-small {
    width: 100%;
    max-width: 65rem;
}
.input-item input {
    padding: 1.2rem;
    font-size: var(--Font18);
}
.flexTextarea {
    position: relative;
    font-size: var(--Font18);
    line-height: 1.8;
}
.flexTextarea_dummy {
    overflow: hidden;
    visibility: hidden;
    box-sizing: border-box;
    min-height: 25rem;
    padding: 1.2rem;
    white-space: pre-wrap;
    word-wrap: break-word;
    overflow-wrap: break-word;
    border: 1px solid;
}
.flexTextarea_textarea {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 1.2rem;
    background-color: transparent;
    border: 1px solid #b6c3c6;
    border-radius: 4px;
    color: inherit;
    font: inherit;
    letter-spacing: inherit;
    resize: none;
}
.input-item input:focus,
.flexTextarea_textarea:focus {
    box-shadow: 0 0 0 4px rgba(35, 167, 195, 0.3);
    outline: 0;
}
/*チェックボックを打ち消して新たに作成*/
.input-item.input-contentOK input[type="checkbox"] {
    appearance: none;
    border: 1px solid #b6c3c6;
    width: 17px;
    height: 17px;
    font-size: 10px;
    text-align: center;
}
/*チェックマークを作成*/
.input-item.input-contentOK input[type="checkbox"]:checked::before{
    content: "";
    display: inline-block;
    width: 32px;
    height: 16px;
    border-left: 5px solid var(--baseOrange);
    border-bottom: 5px solid var(--baseOrange);
    translate: -16px -14px;
    rotate: -54deg;
}
.form-send {
    display: grid;
    place-items: center;
    padding-bottom: 5rem;
}
.form-send input#submitBtn {
    padding: 1em 3em;
    font-size: var(--Font18);
    font-weight: bold;
    color: var(--White);
    background: var(--baseOrange);
    border: 1px solid var(--baseOrange);
    border-radius: 18px;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;;
}
.form-send input#submitBtn:hover {
    color: var(--White);
    font-weight: bold;
    border: 1px solid var(--baseGreen);
    background: var(--baseGreen);
}
/*Contect Form 7のCSSをカスタマイズ*/
#contact .wpcf7 span.wpcf7-not-valid-tip,
#contact .wpcf7 .wpcf7-response-output {
	display: none !important;
}
#contact .wpcf7 .wpcf7-submit:disabled {
    cursor: not-allowed;
    pointer-events: none;
    color: var(--baseOrange);
    background: var(--White);
    border: 1px solid var(--baseOrange);
    border-radius: 18px;
    opacity: .3;
}
#contact .wpcf7-form-control-wrap {
    position: initial;
}
#contact span.wpcf7-spinner {
    display: none;
}
#contact .wpcf7 .wpcf7-not-valid-tip {
    position: absolute;
}
#contact .wpcf7 .input-contentOK .wpcf7-list-item {
    margin: 0;
}
.error-msg {
    margin: 0;
    font-weight: 500;
    color: red;
}
/*バリデーションエンジンのエラーメッセージカスタマイズ*/
.formError .formErrorContent {
    font-size: 13px;
    font-weight: 500;
}
#contact-thanks .tel-btn a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 0;
    font-size: var(--Font28);
    font-weight: bold;
    color: var(--baseBlue);
    text-decoration: none;
    cursor: pointer;
}
.tel-btn a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 50px;
    padding-left: 50px;
    background: url(../images/common/tel-iconB-sp.svg) no-repeat;
    background-position-y: 3px;
    background-size: 40px auto;
}
@media (min-width: 769px) {
    .form-head {
        margin: 0 auto 4rem;
    }
    form {
        width: 60%;
        min-width: 500px;
        margin: 0 auto;
    }
    #contact-thanks .section_inner p {
        text-align: center;
    }
}
/* -----------------------------------------------------------------
プライバシーポリシーページ
------------------------------------------------------------------*/

/* -----------------------------------------------------------------
フッター
------------------------------------------------------------------*/
/*ページトップへ*/
#page-top {
    position: fixed; /*リンクを右下に固定*/
    right: 0;
    bottom: 15px;
	z-index: 20;
	opacity: 0; /*はじめは非表示*/
	transform: translateY(100px);
}
#page-top a {
	display: block;
    width: 50px;
    height: 50px;
    padding-top: 5px;
    font-size: 1.8rem;
    color: var(--White);
    font-weight: bold;
    text-align: center;
    line-height: 1;
    background-color: #33333380;
}
#page-top.UpMove {
    animation: fadeUp 0.5s forwards;
}
#page-top.DownMove{
	animation: fadeDown 0.5s forwards;
}
.ft-contact-info {
    padding: 0 1.5rem 4rem;
    background-color: var(--baseGray);
}
#top .ft-contact-info {
    margin-top: -150px;
}
.ft-contact-item.ft-contact-tel p {
    padding-left: 1em;
    padding-right: 1em;
}
.footer-company {
    margin-bottom: 4rem;
    padding: 0 1.5rem;
}
#footer-nav {
    display: flex;
    flex-wrap: wrap;
    padding: 0 1.5rem;
}
.fnavi-item {
    width: max-content;
    margin-bottom: 2rem;
    padding: 0 2.5rem 0 1.5rem;
    font-size: var(--Font14);
    position: relative;
    transition: all 0.3s;
}
.fnavi-item a:hover span {
    font-weight: bold;
    color: var(--baseOrange);   
}
.fnavi-item span::before {
    content: "▶︎";
    font-size: 1rem;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-55%);
}
#footer small {
    display: grid;
    place-content: center;
    padding: 5rem 0 3rem;
}
@media screen and (min-width: 769px) {
    /*電話番号リンクの無効化*/
    a[href^="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
    .ft-contact-list {
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .ft-contact-list .separator {
        height: 40px;
        margin: 0 7rem 4rem;
        border-left: 1px solid var(--baseBlue);
    }
    .ft-contact-item.ft-contact-tel {
        display: flex;
        align-items: center;
        margin-top: 0;
        border: none;
    }
    .footer-info {
        display: flex;
        justify-content: space-evenly;
    }
    #footer-nav {
        display: block;
    }
    .fnavi-item {
        width: auto;
    }
}
/* -----------------------------------------------------------------
404エラー
------------------------------------------------------------------*/
#err404 .head-visual_Box::before {
    background: url("../images/common/head-visual_bk03.svg") no-repeat center / cover;
}
#err404 .topLink {
    display: grid;
    place-items: center;
    margin-bottom: 4rem;
}
#err404 .topLink a {
    padding: 1rem 3rem;
    font-size: var(--Font18);
    color: var(--baseBlue);
    border: 1px solid var(--baseBlue);
    border-radius: 9999px;
}
#err404 .topLink a:hover {
    font-weight: bold;
    color: var(--White);
    background-color: var(--baseBlue);
    transition: all .3s;
}
#err404 .pleaseText {
    display: grid;
    place-items: center;
}
/* -----------------------------------------------------------------
WordPressから書き出すページに対して
------------------------------------------------------------------*/