@charset "UTF-8";

/* ===================================================================

リセット

=================================================================== */

html {
    box-sizing: border-box;
    overflow-y: scroll;
    -webkit-text-size-adjust: 100%;
}

*,
::before,
::after {
    background-repeat: no-repeat;
    box-sizing: inherit;
}

::before,
::after {
    text-decoration: inherit;
    vertical-align: inherit;
}

*:focus {
    /*chromeデフォルト設定解除*/
    outline: none;
}

* {
    padding: 0;
    margin: 0;
}


/* 一般的な要素 */

audio:not([controls]) {
    display: none;
    height: 0;
}

hr {
    overflow: visible;
}

address,
em {
    font-style: normal;
}

ul,
ol,
li {
    list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
    display: block;
}

summary {
    display: list-item;
}

small {
    font-size: 80%;
}

[hidden],
template {
    display: none;
}

abbr[title] {
    border-bottom: 1px dotted;
    text-decoration: none;
}

a {
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}

a:active,
a:hover {
    outline-width: 0;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
}

b,
strong {
    font-weight: bolder;
}

dfn {
    font-style: italic;
}

mark {
    background-color: #ff0;
    color: #000;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}


/* フォーム */

input {
    border-radius: 0;
}

button,
[type="button"],
[type="reset"],
[type="submit"],
[role="button"] {
    cursor: pointer;
}

[disabled] {
    cursor: default;
}

[type="number"] {
    width: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
}

[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

textarea {
    overflow: auto;
    resize: vertical;
}

button,
input,
optgroup,
select,
textarea {
    font: inherit;
}

optgroup {
    font-weight: bold;
}

button {
    overflow: visible;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: 0;
    padding: 0;
}

button:-moz-focusring,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    outline: 1px dotted ButtonText;
}

button,
html [type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button,
select {
    text-transform: none;
}

button,
input,
select,
textarea {
    background-color: transparent;
    border-style: none;
    color: inherit;
}

select {
    -moz-appearance: none;
    -webkit-appearance: none;
}

select::-ms-expand {
    display: none;
}

select::-ms-value {
    color: currentColor;
}

legend {
    border: 0;
    color: inherit;
    display: table;
    max-width: 100%;
    white-space: normal;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}


/* メディア */

img {
    border-style: none;
    vertical-align: top;
}

img,
iframe {
    /*スマホはみ出し用*/
    max-width: 100%;
}

progress {
    vertical-align: baseline;
}

svg:not(:root) {
    overflow: hidden;
}

audio,
canvas,
progress,
video {
    display: inline-block;
}


/* アクセシビリティ */

@media screen {
    [hidden ~ ="screen"] {
        display: inherit;
    }

    [hidden ~ ="screen"]:not(:active):not(:focus):not(:target) {
        position: absolute !important;
        clip: rect(0 0 0 0) !important;
    }
}

[aria-busy="true"] {
    cursor: progress;
}

[aria-controls] {
    cursor: pointer;
}

[aria-disabled] {
    cursor: default;
}


/* selection */

::-moz-selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
}

::selection {
    background-color: #b3d4fc;
    color: #000;
    text-shadow: none;
}


/* ===================================================================

各ページ共通関連

=================================================================== */

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Meiryo', sans-serif;
}


p,
caption {
    line-height: 1.8;
    font-size: 16px;
    text-align: justify;

    text-justify: inter-ideograph;
    /* 日本語用 */
}

@media screen and (min-width: 768px) {

    p,
    caption {
        font-size: 18px;
    }
}

a {
    text-decoration: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

table td,
table th {
    /* 表用文字幅狭 */
    font-family: Arial, "Helvetica Neue", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}

/*float*/

@media (min-width: 768px) {
    .left {
        float: left;
    }

    .right {
        float: right;
    }

    .all:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
}


/*両端揃え*/

.just {
    text-align: justify;
    text-justify: inter-ideograph;
}


/* 電話番号リンクPC無効 */

a[href^="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
}

@media screen and (max-width: 768px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
}


/* スマホメニュー */

.nav-content {
    background: #fff;
}

.nav-content ul {
    border-top: 1px solid #eee;
}

.nav-content ul li {}

.nav-content ul li a {
    text-align: left;
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    background: #fff;
    position: relative;
    font-size: 14px;
    text-decoration: none;
    color: #000;
}

.nav-content ul li a:after {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    width: 6px;
    height: 6px;
    margin: -4px 0 0 0;
    border-top: solid 2px #666;
    border-right: solid 2px #666;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}


/* PCメニュー */

.nav-menus {
    display: none;
}

@media (min-width:960px) {
    .drawer-toggle {
        display: none;
    }

    .nav-menus {
        display: block;
        float: right;
    }

    .nav-menus ul {
        padding: 0 10px;
    }

    .nav-menus ul:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }

    .nav-menus > ul > li {
        float: left;
        text-align: center;
        height: 74px;
        background: #fff;
    }

    .nav-menus ul li a {
        display: block;
        height: 74px;
        box-sizing: border-box;
        text-decoration: none;
        color: #000;
    }

    .nav-menus ul li a:hover {
        color:  #2f4c20;;
    }


    .nav-menus ul li.nav-menu01 a {
        width: 100px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu02 a {
        width: 100px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu03 a {
        width: 100px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu04 a {
        width: 100px;
        padding-top: 25px;
    }

    .nav-menus ul li.nav-menu05 a {}

    .nav-menus ul li.nav-menu06 a {}
}


/*ヘッダー*/

header {
    border-bottom: 1px solid #999;
}

.header-wrapper {
    max-width: 1366px;
    margin: 0 auto;
}

header .logo {
    float: left;
    height: 54px;
    box-sizing: border-box;
    padding-left: 10px;
    padding-top: 13px;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.6;
}

@media all and (-ms-high-contrast: none) {
    header .logo {
        /*IE用*/
        padding-top: 5px;
    }
}

header .logo a {
    display: block;
    color: #2f4c20;
}

header .logo a img {
    width: 55px;
    height: auto;
    margin-right: 7px;
}

header:after {
    content: "";
    clear: both;
    height: 0;
    display: block;
    visibility: hidden;
}

@media (min-width: 960px) {
    header .logo {
        height: 74px;
        padding-top: 14px;
        font-size: 28px;
    }

    header .logo a img {
        width: 85px;
        height: auto;
    }
}

/*フッター*/

footer {
    background-color: #89c3eb;
    color:#1a1a1a;
}

.footer_logo {
    padding: 30px 15px;
}

.foot-name {
    font-weight: bold;
    font-size: 18px;
}

.footer_copy {
    text-align: center;
    padding: 30px 15px;
    font-size: .75rem;
}

.foot-add a {
    color: #fff;
}

@media (min-width: 768px) {
    .footer_logo {
        padding: 60px 15px 30px;
    }

    .footer_logo p {
        text-align: center;
    }

    .foot-name {
        font-size: 20px;
    }

    .foot-add br {
        display: none;
    }

    .footer_copy {
        padding: 30px 15px 60px;
    }
}


/*トップへ戻る
---------------------------------------------------------------*/

#pagetops {
    position: fixed;
    bottom: 16px;
    right: 12px;
}

#pagetops a {
    cursor: default;
}

#pagetop img {
    border-radius: 10px;
}

#pagetop:after {
    background-color: rgba(80, 80, 80, 0.9);
    color: #fff;
    box-sizing: border-box;
    content: '\f106';
    font-weight: 900;
    display: block;
    font-family: "Font Awesome 5 Free";
    height: 50px;
    line-height: 50px;
    padding: 0 20px;
    position: absolute;
    right: 0;
    bottom: 0;
    font-size: 180%;
}

#pagetop:hover:after {
    background-color: rgba(50, 50, 50, 1);
}

@media (min-width: 768px) {
    #pagetops {
        right: 20px;
        bottom: 20px;
    }
}

/* ===================================================================

各ページ style

=================================================================== */

main {
}

.blueback {
    background: #89c3eb;
}

.greyback {
    background: #f7f7f7;
}

.btn01 {
    width: 70%;
    margin: 30px auto 15px;
    text-align: center;
}

br.pcnomi {
    display: none;
}

@media (min-width: 768px) {
    br.pcnomi {
        display: block;
    }

    br.smnomi {
        display: none;
    }
}

/*トップ */
.top-section {
    padding: 30px 15px;
}

.top-section-last {
    padding: 30px 15px 60px;
}

.top-intro p br {
    display: none;
}

@media (min-width: 768px) {
    .top-section {
        padding: 60px 15px;
    }

    .top-intro p {
        text-align: center;
    }

    .top-intro p br {
        display: block;
    }
}

/*お気軽にお問い合わせください*/
.okigaruni {
    padding: 30px 15px;
    border: 2px solid #999;
    border-radius: 6px;
    max-width: 800px;
    margin: 30px auto 0;
    background: #edf7eb;
}

.okigaruni p {
    text-align: center;
}

.okigaruni01 {
    max-width: 960px;
    margin: 0 auto 0;
}

.okigaruni01 p {
    text-align: center;
}

.oki01 {}

.oki02 span {}

.tel-mail {
    font-size: 26px;
    text-align: center;
    padding: 30px 0 15px;
}

.faxx {
    font-size: 26px;
    text-align: center;
}

.faxx a,
.tel-mail a {
    color: #000;
}

.tel-mail a span {
    font-size: 30px;
    padding: 0 10px 0 5px;
}

.mail {
    margin: 30px auto;
    width: 250px;
}

.mail-button {
    display: inline-block;
    background-color: #2f4c20;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.mail-button:hover {
    background-color: #3d652b;
}

@media screen and (min-width: 768px) {
    .oki01 {}

    .oki02 br {
        display: none;
    }

    .oki02 span {
        font-size: 16px;
    }

    .tel-mail,
    .faxx {
        font-size: 28px;
    }

    .tel-mail a span {
        font-size: 36px;
    }
}

/* トップ各種 */
.top-image img {
    width: 100%;
    max-width: 1366px;
    margin: 0 auto;
    display: block;
}


.swiper-container {
    position: relative;
}

.overlay-text {
    position: absolute;
    z-index: 10;
    filter: drop-shadow(4px 4px 10px rgba(0, 0, 0, 0.5));
    top: 0;
    left: 0;
    right: 0;
}

.top-image .overlay-text {}

.top-section-product-list {
    max-width: 960px;
    margin: 0 auto;
}

h2.top-section-title {
    text-align: center;
    font-size: 28px;
}

h3.top-section-title-sub {
    text-align: center;
    font-size: 24px;
    font-weight: normal;
}

.product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
}

.product-list-intro {
    text-align: center;
    padding: 15px 0;
}

.product-item {
    box-sizing: border-box;
    padding: 0px;
    text-align: center;
    width: calc(50% - 5px);
    padding-bottom: 15px;

}

.product-item p {
    text-align: center;
    font-size: 14px;
}

.product-item img {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    max-width: 100%;
    height: auto;
    display: block;
    background: #2292e8;
    background: #50afe9;
}

.product-item:hover img {
    opacity: 0.7;
}

.product-item {
    width: calc((100% - 10px) / 2);
}

@media (min-width: 640px) {
    .product-item {
        width: calc((100% - 20px) / 3);
    }
}

@media (min-width: 768px) {
    .product-item {
        width: calc((100% - 30px) / 4);
    }

    .product-item p {
        font-size: 16px;
    }
}

@media (min-width: 960px) {
    .product-item {
        width: calc((100% - 40px) / 5);
    }
}

.specs-table-wrap {
    padding: 15px 0 30px;
}

.specs-table {}

.caution {
    background: #2f4c20;
    max-width: 960px;
    margin: 0 auto;
}

.caution .top-section-title-sub {
    color: #fff;
    padding-top: 15px;
}

.caution-intro {
    text-align: center;
    color: #fff;
    padding-bottom: 10px;
}

.caution-text {
    padding: 5px;
}

.caution-text p {
    background: #fffde3;
    padding: 15px;
}

.map iframe {
    display: block;
}

@media screen and (min-width: 768px) {
    h2.top-section-title {
        font-size: 36px;
    }

    h3.top-section-title-sub {
        font-size: 28px;
    }

    .caution-text p {
        padding: 60px;
    }
}


.top-table {
    margin: 0 auto;
    width: 960px;
    table-layout: fixed;
}

.top-table th,
.top-table td {
    border: 1px solid #ccc;
    padding: 5px 8px;
    text-align: center;
    vertical-align: middle;
}


.top-table td {
    word-break: break-word;
}

.top-table th {
    background-color: #fffdee;
}

.top-table th:nth-child(1) {
    width: 20%;
}

.top-table col.border-col {
    border-left: 3px double #ccc;
}

.responsive-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.tbl-wrap {
    overflow-x: auto;
}

@media (min-width: 768px) {
    .tbl-wrap {
        overflow-x: visible;
    }
}

/*会社概要*/

.page-title-section {
    text-align: center;
    background: #89c3eb;
    padding: 30px 15px;
    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}

.page-title-section h1 {
    font-size: 32px;
}

h2.section-title {
    font-size: 28px;
    text-align: center;
    padding-bottom: 15px;
}

.sub-section {
    padding: 30px 15px;
}

main section.sub-section:last-of-type {
    padding: 30px 15px 60px;
}

@media screen and (min-width: 768px) {
    .page-title-section {
        padding: 60px 15px;
    }

    .page-title-section h1 {
        font-size: 36px;
    }

    h2.section-title {
        font-size: 32px;
        padding-bottom: 30px;
    }

    .sub-section {
        padding: 60px 15px;
    }
    main section.sub-section:last-of-type {
        padding: 60px 15px;
    }
}

.company-info {}

/* 会社概要テーブル */
.company-table {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    border-top: 1px solid #ccc;
}

.company-table th {
    width: 25%;
    text-align: left;
    border-bottom: 1px solid #ccc;
    vertical-align: top;
    padding: 12px;
    font-weight: normal;
}

.company-table td {
    padding: 12px;
    border-bottom: 1px solid #ccc;
}

@media screen and (min-width: 768px) {
    .company-table th {
        padding: 20px 40px;
    }

    .company-table td {
        padding: 20px 40px;
    }
}

.company-images {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.company-images img {
    width: 33.333%;
    height: auto;
    object-fit: cover;
}

.section-sub-title {
    text-align: center;
}

/* 商品説明 */

.prospec {
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    display: block;
}

h2.prospec-title {
    padding-bottom: 5px;
    line-height: 1.4;
}

.prospec-sub {
    font-size: 24px;
    text-align: center;
    padding-bottom: 30px;
}

.prospec-kanetsu {
    padding-bottom: 5px;
}

.prospec img {
    width: 100%;
}

.prospec img {
    background: #50afe9;
    object-fit: contain;
}

.prospec-right {
    margin-top: 30px;
}

.prospec .prospec-right img {
    width: 100%;
}

.prospec table {
    width: 100%;
    table-layout: auto;
}

.prospec table td,
.prospec table th {
    text-align: center;
    padding: 5px 4px;
    border: 1px solid #ccc;
}

.prospec table th {
    border-bottom: 3px double #bbb;
}

.pot-table {
    margin: 0 auto;
    width: 960px;
}

.pot-table td,
.pot-table th {
    text-align: center;
    padding: 5px 4px;
    border: 1px solid #ccc;
}

.pot-table tr:first-child {
    border-bottom: 3px double #bbb;
}

.pot-table td:first-child,
.pot-table th:first-child {
    border-right: 3px double #bbb;
}

.pot-table-container {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

.pot-under-table {
    width: 100%;
    margin: 30px auto 0;
}

.pot-under-table td,
.pot-under-table th {
    text-align: center;
    padding: 5px 4px;
    border: 1px solid #ccc;
    width: 50%;
}

.pot-table-cap,
.composition-tables {
    max-width: 960px;
    margin: 0 auto;
}

.pot-under-table:last-child {
    margin-bottom: 0;
}

.pot-table-cap,
.pot-table caption,
.pot-under-table caption {
    padding-bottom: 7px;
    text-align: left;
    font-weight: bold;
}

.pot-table-cap span {
    font-size: 80%;
}

.pot-table-cap,
.pot-chui,
.notes {
    max-width: 960px;
    margin: 30px auto 0;
}

.notes {
    margin: 30px auto 0;
}

.product-under-nav {
    max-width: 960px;
    margin: 0 auto 60px;
    padding: 0 15px;
}

.product-under-nav a {
    color: #000;
}

.prospec01 {
    display: flex;
    max-width: 960px;
    margin: 0 auto;
}

.prospec01 img,
.prospec01-right {
    width: 50%;
    height: auto;
}

.prospec01-right {
    width: 50%;
    height: auto;
    margin-left: 15px;
}

@media (min-width: 768px) {
    .prospec {
        display: flex;
    }

    .prospec img,
    .prospec-right {
        width: 50%;
        height: auto;
    }

    .prospec-right {
        width: 50%;
        height: auto;
        margin-left: 15px;
        margin-top: 0;
    }

    .composition-container {
        display: flex;
        justify-content: space-between;
        width: 100%;
        max-width: 960px;
        margin: 0 auto;
    }

    .composition-left {
        width: 50%;
    }

    .composition-right {
        width: 50%;
        padding-left: 30px;
    }

    .pot-under-table {
        margin: 30px 0 0;
        max-width: 450px;
    }

    .notes {
        max-width: 450px;
    }


}

.product-under-nav ul {
    list-style: none;
    padding: 0;
    text-align: center;
}

.product-under-nav ul.nav-links li {
    display: inline-block;
    width: 160px;
    margin: 0 8px 16px;
}

.product-under-nav ul.nav-return li {
    display: inline-block;
    width: 160px;
}

.product-under-nav li a {
    display: block;
    padding: 10px 5px 10px 0;
    border: 1px solid #2f4c20;
    text-decoration: none;
    color: #2f4c20;
    border-radius: 5px;
    background-color: #fff;
    transition: background 0.3s;
    font-weight: bold;
}

.product-under-nav li a:hover {
    background: #f0f0f0;
}

.product-under-nav li a::before {
    content: "» ";
    /* または ">>" */
    color: #2f4c20;
    /* 本文と同じ or 少し濃い色でもOK */
    font-weight: normal;
    /* 少し軽めでバランスよく */
    margin-right: 5px;
}
