@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;
    --contentsInner: 120rem;
    --sectionInner: 100rem;
    --White: #fff;
	--baseBlue: #1363c8;
    --baseLightBlue: #6dbef7;
	--baseBlack: #333;
    --baseGray: #f6f6f6;
    --baseOrange: #ffae00;
    --baseYellow: #ffe600;
    --baseRed: #e60012;
    --baseGreen: #a7d439;
    --baseLightGreen: #c8e484;
    --Font12: 1.2rem;
    --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_Mincyo: "Noto Serif JP";
    --Font_Gothic: "Helvetica Neue", "Helvetica", "Arial", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "Meiryo UI", "メイリオ", "Meiryo", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}
/* -------------------------------------
フォント
--------------------------------------*/
/* noto-serif-jp-regular - japanese */
@font-face {
    font-display: swap;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 400;
    src: url('../fonts/noto-serif-jp-v31-japanese-regular.woff2') format('woff2');
}
/* noto-serif-jp-600 - japanese */
@font-face {
    font-display: swap;
    font-family: 'Noto Serif JP';
    font-style: normal;
    font-weight: 600;
    src: url('../fonts/noto-serif-jp-v31-japanese-600.woff2') format('woff2');
}
/* -------------------------------------
　表示切り替え
--------------------------------------*/
@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: var(--baseBlack);
	font-size: 1.6rem;
    font-family: var(--Font_Mincyo);
    overflow-wrap: anywhere; /* 収まらない場合に折り返す */
    word-break: normal; /* 単語の分割はデフォルトに依存 */
    line-break: strict; /* 禁則処理を厳格に適用 */
}
#container {
    width: var(--VW100);
    max-width: var(--containerMax);
    margin-right: auto;
    margin-left: auto;
}
.contents {
    width: 100%;
    max-width: var(--contentsInner);
    margin-right: auto;
    margin-left: auto;
}
.sectionInner {
    width: 100%;
    max-width: var(--sectionInner);
    margin-right: auto;
    margin-left: auto;
	margin-bottom: 3rem;
    padding-right: 2rem;
    padding-left: 2rem;
}
.footerContentsInner {
    width: 100%;
    max-width: var(--sectionInner);
    margin-right: auto;
    margin-left: auto;
}
.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: clip;
}
@media screen and (max-width: 768px) {
    .contents {
        padding-right: 2rem;
        padding-left: 2rem;
    }
}
.placeCenter {
    display: grid;
    place-items: center;
}
/* -------------------------------------
マージン
--------------------------------------*/
.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
}
.pR20 {
    padding-right: 2rem;
}
.pR30 {
    padding-right: 3rem;
}
.pB40 {
    padding-bottom: 4rem
}
.pB80 {
    padding-bottom: 8rem
}
.pL20 {
    padding-left: 2rem;
}
/* -------------------------------------
アニメーション
--------------------------------------*/
@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);
    }
}
@keyframes fadeLeft {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/*左からフェードイン*/
.fadeLeft {
    opacity: 0;
    transform: translate(25%, 0);
    transition: 0.75s;
}
.fadeLeft.js-AnimeON {
    transform: translate(0, 0);
    opacity: 1;
}
/* -------------------------------------
テキスト関係
--------------------------------------*/
.fontGothic {
    font-family: var(--Font_Gothic);
}
/*改行制御*/
.newLineControl {
    word-break: keep-all;
    overflow-wrap: break-word;
}
/*行高*/
.lineH20 {
    line-height: 2;
} 
/*フォントサイズ*/
.font12 {
	font-size: var(--Font12);
}
.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: 600;
}
.fontN {
	font-weight: 400;
}
/*中央揃え*/
.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);
}
.bgGreen {
    background-color: var(--baseGreen);
}
.bgGray {
    background-color: var(--baseGray);
}
.bgWhite {
    background-color: var(--White);
}
.bgBlack {
    background-color: var(--baseBlack);
}
/* -------------------------------------
画像設定
--------------------------------------*/
.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: 100;
    font-family: var(--Font_Gothic);
}
/* -------------------------------------
グローバルナビ
--------------------------------------*/
.headerLogo {
    width: 20%;
    max-width: 290px;
}
#globalnavi {
    width: 100%;
    max-width: var(--sectionInner);
    margin-right: auto;
    margin-left: auto;
    padding: 1.5rem 1rem 1rem;
    background-color: var(--White);
}
.gnavi_menu-item .gnavi-list {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    grid-template-rows: repeat(2, 1fr);
    row-gap: 10px;
}
.gnavi-list .headerLogo {
    grid-column: 1 / span 3;
}
.gnavi-item a {
    display: block;
    width: auto;
    padding: 8px 0;
    text-align: center;
    line-height: 1.2;
    transition: all 0.3s;
}
.gnavi-item {
    align-self: center;
}
.gnavi-item p:not(:first-child).current a,
.gnavi-item a:hover {
    font-weight: bold;
    background: var(--baseLightGreen);
    border-radius: initial;
}
.gnavi-item.gnavi-order01 {
    order: 1;
}
.gnavi-item.gnavi-order02 {
    order: 2;
}
.gnavi-item.gnavi-order02 a {
    border: 1px solid var(--baseBlack);
    border-radius: 10px;
}
.gnavi-item.gnavi-order03 {
    order: 3;
    border-left: 1px solid var(--baseGreen);
}
.gnavi-item.gnavi-order04 {
    order: 4;
    border-left: 1px solid var(--baseGreen);
}
.gnavi-item.gnavi-order05 {
    order: 5;
    border-right: 1px solid var(--baseGreen);
    border-left: 1px solid var(--baseGreen);
}
.gnavi-item img {
    vertical-align: baseline;
}
/* -------------------------------------
ハンバーガーメニュー
--------------------------------------*/
.gnavi_button_back {
    display: none;
}
/*ハンバーガーメニューに切り替え*/
@media screen and (max-width: 768px) {
    #globalnavi {
        padding: 15px;
        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: var(--White);
		transition: all 0.5s;/*アニメーション設定*/
	}
	.gnavi_menu-item.active  {
		left: 0;/*ボタンをクリックされたらメニューを画面内へ*/
	}
    .gnavi_menu-item .gnavi-list {
        width: auto;
        max-width: 100%;
        display: block;
        margin-top: 10rem;
	}
	.gnavi-list .gnavi-item {
        width: 80%;
        margin: 4rem auto;
        line-height: 1.6rem;
        background: var(--White);
        border: 1px solid var(--baseGreen);
        border-radius: 10px;
	}
    .gnavi-list .gnavi-item span {
        font-size: var(--Font16) !important;
	}
    .gnavi-item a {
        padding: 1.5rem 0;
    }
    .gnavi-item.gnavi-order02 a {
        border: none;
    }
	.gnavi_button_back {
		display: block;
		width: 100%;
	}
	/*ハンバーガーメニューのボタン*/
	.gnavi_menu-btn  {
		position: absolute;
		top: 10px;
		right: 10px;
		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(--baseGreen);
		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(--baseGreen);
	}
	.gnavi_menu-btn.active span::after {
		top: 0;
		rotate: -45deg;
        background-color: var(--baseGreen);
	}
}
/* -----------------------------------------------------------------
各ページ共通
------------------------------------------------------------------*/
/*メインビジュアル*/
#mainVisual {
    width: 100%;
    max-width: var(--contentsInner);
    margin-right: auto;
    margin-left: auto;
    position: relative;
}
#mainVisual h1 {
    width: 100%;
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    filter: drop-shadow(1px 1px 3px #00000090);
}
h2 {
    font-size: var(--Font24-32);
    font-weight: 600;
    text-align: center;
}
.flexBox {
    display: flex;
    flex-wrap: wrap;
}
.section_inner {
    padding: 0 1.5rem;
}
.contactBtn {
    display: grid;
    place-items: center;
    width: 80%;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    padding: 6rem 0;
    transition: .3s;
    font-family: var(--Font_Gothic);
}
.contactBtn a {
    display: flex;
    justify-content: center;
    position: relative;
    width: 100%;
    margin: 0 auto;
    padding: 10px 20px;
    font-size: var(--Font20-24);
    color: var(--White);
    border-radius: 15px;
    background-color: var(--baseBlack);
    transition: all 0.3s;
}
.contactBtn a:hover {
    background: var(--baseOrange);
    font-weight: bold;
    
}
.overflowL {
    margin-left: calc(50% - (var(--VW100) / 2));
	padding-left: calc((var(--VW100) / 2) - 50%);
    overflow-x: clip;
}
.overflowR {
    margin-right: calc(50% - (var(--VW100) / 2));
    padding-right: calc((var(--VW100) / 2) - 50%);
    overflow-x: clip;
}
/*ページネーション*/
.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);
}
/*パンくずリスト*/
p#breadcrumbs {
    margin-bottom: 6rem;
    padding: 2rem 0;
    font-size: var(--Font12);
    font-family: var(--Font_Gothic);
}
@media screen and (min-width: 769px) {
    p#breadcrumbs {
        padding: 2rem;
    }
}
p#breadcrumbs::before {
    content: url(../images/common/breadcrumbs-icon.svg);
    display: inline-grid;
    width: fit-content;
    margin-right: 4px;
    vertical-align: middle;
}
/*reCAPTCHAバッジを非表示*/
.grecaptcha-badge {
    visibility: hidden;
}
.recaptchaText {
    padding-bottom: 5rem;
    font-size: var(--Font12);
    text-align: center;
    color: gray;
}
/* -----------------------------------------------------------------
トップページ
------------------------------------------------------------------*/
/*わたしたちについて*/
#aboutUs {
    padding-top: 6rem;
    padding-bottom: 6rem;
}
@media screen and (min-width: 769px) {
    #aboutUs {
        padding-top: 10rem;
        padding-bottom: 10rem;
    }
    #aboutUs {
        display: grid;
        grid-column-gap: 4rem;
        grid-template-columns: 1fr 1fr;
    }
    #aboutUs .aboutUs01 {
        grid-row: 1 / span 2;
        grid-column: 1;
    }
    #aboutUs .aboutUs02 {
        grid-row: 1;
        grid-column: 2;
    }
    #aboutUs .aboutUs03 {
        grid-row: 2;
        grid-column: 2;
        padding: 0 1rem;
    }
}
/*High Technology & Sincerityの欄*/
#companyInfo {
    padding-top: 6rem;
    padding-bottom: 6rem;
    position: relative;
}
#companyInfo::before {
    content: "";
    width: 100%;
    height: 100%;
    background: var(--baseGreen);
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.company-infoBox {
    width: 100%;
    max-width: 80rem;
    margin: 0 auto;
    padding: 8rem 2rem 2rem;
}
.cp-info {
    display: flex;
    align-items: end;
    justify-content: end;
}
.cp-infoTitle {
    width: 21.5rem;
    padding-left: 50px;
    padding-bottom: 5px;
    font-family: var(--Font_Gothic);
    font-size: var(--Font24);
    font-weight: bold;
    line-height: 1.2;
    position: relative;
}
.cp-infoTitle::before {
    content: "";
    display: block;
    width: 37px;
    height: 8px;
    border-bottom: 1px solid #000;
    border-right: 1px solid #000;
    transform: skew(45deg);
    position: absolute;
    top: 6px;
    left: 0;
}
.cp-infoTitleEn {
    font-family: var(--Font_Mincyo);
    font-size: var(--Font14);
    font-weight: normal;
}
.cp-infoBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 7.5rem;
    height: 7.5rem;
    text-align: center;
    font-size: 2rem;
    line-height: 1.25;
    border-radius: 9999px;
    background: var(--baseLightGreen);
    transition: all .3s;
}
.cp-infoBtn:hover {
    background: var(--baseYellow);
    font-weight: bold;
}
@media screen and (min-width: 561px) {
    .company-infoBox {
        margin: 8rem auto 0;
        display: flex;
        justify-content: space-between;
        position: relative;
    }
    .company-infoBox.js-AnimeON::before {
        content: "";
        width: 100%;
        height: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        background: var(--White);
        animation: anime_Triangle .7s linear 1 forwards;
        clip-path: polygon(100% 0, 0 0, 100% 0);
    }
    .company-infoBox::after {
        content: "";
        width: 165px;
        height: 165px;
        position: absolute;
        bottom: 0;
        left: 0;
        z-index: -1;
        background: var(--baseLightGreen);
    }
    @keyframes anime_Triangle {
        0% {
            clip-path: polygon(100% 0, 100% 0, 100% 0);
        }
        100% {
            clip-path: polygon(0 0, 100% 0, 100% 70%);
        }
    }
    .company-infoBox figure {
        width: calc(100% - 31rem);
    }
    .cp-info {
        justify-content: flex-start;
    }
}
/* -----------------------------------------------------------------
取り扱い商品ページ
------------------------------------------------------------------*/
.productsList {
    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%);
    padding-top: 8rem;
    padding-bottom: 8rem;
    background: var(--baseGreen);
    overflow-x: clip;
}
.productsItem {
    width: 100%;
    max-width: 68rem;
    margin: 7.5rem auto 0;
    padding: 2rem;
    background: var(--White);
    border-radius: 25px;
}
.productsItem h3 {
    font-size: var(--Font28);
    line-height: 1.2;
}
.productsItem02, .productsItem03 {
    margin-top: 2rem;
}
.productsItem02 img {
    border-radius: 20px;
}
@media screen and (min-width: 769px) {
    .productsList {
        margin-right: calc(50% - (var(--VW100) / 2));
        margin-left: 0;
        padding-right: calc((var(--VW100) / 2) - 50%);
        padding-left: 0;
        border-top-left-radius: 135px;
    }
    div.productsItem:nth-child(odd) {
        margin-left: clamp(2rem, 7vw, 10%);
        padding: 4rem;
    }
    div.productsItem:nth-child(even) {
        margin-right: 0;
        margin-left: auto;
        padding: 4rem;
    }
    .productsItemBox {
        display: flex;
        flex-direction: row-reverse;
    }
    .productsItem02 {
        width: 60%;
    }
    .productsItem03 {
        width: 40%;
        display: grid;
        place-content: center;
        align-self: center;
    }
}
/* -----------------------------------------------------------------
会社概要ページ
------------------------------------------------------------------*/
table.profile-list {
    width: 100%;
    max-width: calc(var(--containerMax) / 2);
}
table.profile-list tr:first-child {
    border-top: 1px solid var(--baseBlack);
}
table.profile-list tr {
    border-bottom: 1px solid var(--baseBlack);
}
table.profile-list tr th {
    display: block;
    padding: 1em;
    font-size: var(--Font16-18);
    font-weight: normal;
    vertical-align: middle;
    white-space: nowrap;
    background: var(--baseGray);
}
table.profile-list tr td {
    display: block;
    margin-bottom: 2rem;
    padding: 1em;
    font-size: var(--Font16-18);
}
table.profile-list tr td .office-photo {
    width: 100%;
    max-width: 20rem;
}
td.profile-history dl {
    margin-bottom: 1rem;
}
td.profile-history dl dt {
    font-weight: normal;
}
.ggl_Map iframe {
    width: 100%;
    margin-top: 8rem;
    margin-bottom: 8rem;
    aspect-ratio: 16/9; //アスペクト比（縦横比）を指定
}
@media screen and (min-width: 769px) {
    table.profile-list tr th {
        display: table-cell;
        width: 25%;
        padding: 1.5em calc((25% - 10rem) / 2);
        text-align-last: justify;
        background: var(--White);
    }
    table.profile-list tr td {
        display: table-cell;
        width: 75%;
        margin-bottom: 0;
        padding: 1.5em 1rem 1.5rem 0;
    }
    td.profile-history dl {
        display: flex;
        margin-bottom: 0;
    }
    td.profile-history dl dt {
        width: 16rem;
        text-align-last: justify;
    }
    td.profile-history dl dd {
        padding-left: 2em;
    }
}
/*許認可番号*/
ul.permit-item li {
    margin-bottom: 1.5rem;
    padding-left: 30px;
}
ul.permit-item li.dl_Pdf {
    background: url(../images/common/pdf-icon.svg) no-repeat top left / 25px;
}
ul.permit-item li a {
    color: var(--baseBlue);
    border-bottom: 1px solid var(--baseBlue);
}
/* -----------------------------------------------------------------
お問い合わせページ、完了ページ
------------------------------------------------------------------*/
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%;
}
.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;
}
.cf-policy {
    text-align: center;
    margin-bottom: 4rem;
    font-size: var(--Font14);
}
.cf-policy a {
    color: var(--baseBlue);
    border-bottom: 1px solid var(--baseBlue);
    cursor: pointer;
}
.form-send {
    display: grid;
    place-items: center;
    padding-bottom: 5rem;
}
.form-send input#submitBtn {
    padding: 1em 3em;
    font-size: var(--Font18);
    font-weight: 600;
    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: 600;
    border: 1px solid var(--baseGreen);
    background: var(--baseGreen);
}
/*Contect Form 7のCSSをカスタマイズ*/
#contactus .wpcf7 span.wpcf7-not-valid-tip,
#contactus .wpcf7 .wpcf7-response-output {
	display: none !important;
}
#contactus .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;
}
#contactus .wpcf7-form-control-wrap {
    position: initial;
}
#contactus span.wpcf7-spinner {
    display: none;
}
#contactus .wpcf7 .wpcf7-not-valid-tip {
    position: absolute;
}
#contactus .wpcf7 .input-contentOK .wpcf7-list-item {
    margin: 0;
}
.error-msg {
    margin: 0;
    font-weight: 600;
    color: red;
}
/*バリデーションエンジンのエラーメッセージカスタマイズ*/
.formError .formErrorContent {
    font-size: 13px;
    font-family: var(--Font_Gothic);
}
#contact-thanks .tel-btn a {
    display: block;
    width: fit-content;
    margin: 0 auto;
    padding: 1rem 0;
    font-family: var(--Font_Gothic);
    font-size: var(--Font28);
    font-weight: 600;
    color: var(--baseGreen);
    text-decoration: none;
    cursor: pointer;
}
#contact-thanks .tel-btn a::before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    height: 50px;
    padding-left: 50px;
    background: url(../images/common/tel-icon-sp.svg) no-repeat;
    background-position-y: 3px;
    background-size: 40px auto;
}
@media (min-width: 769px) {
    .form-head {
        margin: 0 auto 4rem;
    }
    form {
        width: 70%;
        min-width: 500px;
        margin: 0 auto;
    }
    #contact-thanks .tel-btn {
        display: block;
        width: fit-content;
        margin: 30px 0;
    }
    #contact-thanks .tel-btn a::before {
        content: "";
        padding-left: 40px;
        background: url(../images/common/tel-icon-pc.svg) no-repeat;
        background-position-y: 50%;
        background-size: 28px auto;   
    }
    #contact-thanks .section_inner p {
        text-align: center;
    }
}
/* -----------------------------------------------------------------
プライバシーポリシー
------------------------------------------------------------------*/
#privacy-policy h2 {
    margin-bottom: 1.5rem;
    font-size: var(--Font18);
    font-weight: 600;
    text-align: left;
    border-bottom: 2px solid var(--baseGreen);
}
/* -----------------------------------------------------------------
404エラー
------------------------------------------------------------------*/
#err404 .topLink {
    display: grid;
    place-items: center;
    margin-bottom: 4rem;
}
#err404 .topLink a {
    padding: 1rem 3rem;
    font-size: var(--Font18);
    color: var(--baseOrange);
    border: 1px solid var(--baseOrange);
    border-radius: 9999px;
}
#err404 .topLink a:hover {
    font-weight: bold;
    color: var(--White);
    background-color: var(--baseOrange);
    transition: all .3s;
}
#err404 .pleaseText {
    display: grid;
    place-items: center;
}
/* -----------------------------------------------------------------
フッター
------------------------------------------------------------------*/
/*ページトップへ*/
#page-top {
    position: fixed; /*リンクを右下に固定*/
    right: 0;
    bottom: 15px;
	z-index: 20;
	opacity: 0; /*はじめは非表示*/
	transform: translateY(100px);
}
#page-top a {
	display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 70px;
    background: var(--baseBlack);
    border-radius: 9999px;
}
#page-top.UpMove {
    animation: fadeUp 0.5s forwards;
}
#page-top.DownMove{
	animation: fadeDown 0.5s forwards;
}
.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr;
    row-gap: 1rem;
    width: 100%;
    max-width: 66.5rem;
    margin: 0 auto;
    padding: 6rem 2rem 2rem;
    font-family: var(--Font_Gothic);
}
.ft-company-logo {
    grid-area: 1 / 1 / 2 / 3;
}
.ft-office-exterior {
    grid-area: 2 / 1 / 2 / 3;
}
.ft-company-logo img,
.ft-office-exterior img {
    width: 100%;
}
li.fnavi-item {
    width: max-content;
    margin-bottom: 1rem;
    font-size: var(--Font14);
    transition: all 0.3s;
}
li.fnavi-item::before {
    content: url("../images/common/fnavi-icon.svg");
}
.fnavi-item a:hover span {
    font-weight: bold;
    border-bottom: 1px solid var(--baseBlack);  
}
.gmap_link {
    padding-bottom: 3px;
    border-bottom: 1px solid var(--baseBlack);
}
#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;
    }
}
@media screen and (min-width: 625px) {
    .footer-info {
        display: grid;
        grid-template-columns: repeat(5, 1fr);
        grid-template-rows: 1fr;
    }
    .ft-company-logo {
        grid-area: 1 / 1 / 2 / 4;
    }
    .ft-office-exterior {
        grid-area: 1 / 4 / 3 / 6;
    }
    .ft-company-logo img,
    .ft-office-exterior img {
        width: auto;
        max-width: 100%;
        height: auto;
    }
    #footer-nav {
        grid-area: 2 / 1 / 3 / 2;
    }
    .ft-company-info {
        grid-area: 2 / 2 / 3 / 4;
        justify-self: center;
    }
}