@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;
	color: #000;
}

a:active,
a:hover {
    outline-width: 0;
	color: rgba(0,0,0,0.70);
}

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;
    height: auto;
}

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', sans-serif, -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, メイリオ, Meiryo;
    line-height: 1.8;
    font-size: 14px;
    background: #eee;
}

@media (min-width: 768px) {
    body {
        font-size: 14px;
    }
}

@media (min-width: 1024px) {
    body {
        font-size: 14px;
    }
}

.container-full{
	width: 100%;
	margin: 0 auto;
}
.container{
	width: 100%;
	max-width: 1366px;
	margin: 0 auto;
}



/*画像下に隙間あかないように*/

img {
    vertical-align: top;
}

iframe {
    vertical-align: bottom;
}


/*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;
    }
}
.center {
    text-align: center;
}
a {
    text-decoration: none;
}
a:hover img {
    opacity: 0.5;
}
span.notice {
    color: #FF0000;
}


/*--------------------------------------------------------*/

/*ヘッダー*/

header {}

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

@media (min-width: 768px) {

}

@media (min-width: 1280px) {

}


/*フッター*/

footer {
    color: #fff;
}

footer a {
    color: #000;
}

footer #copyright {
    text-align: center;
    padding: 10px 15px;
    font-size: 130%;
}

.foot-wrap {
    max-width: 1366px;
    min-height: 408px;
    margin: 0 auto;
    background: #002a02;
}

.foot {
    text-align: center;
    padding: 40px 15px 0;
}

.foot-nav ul li {
    display: inline;
}

.foot-nav ul li a {
    display: inline-block;
    margin-bottom: 10px;
}

.foot-nav ul li a img {
    width: 27px;
}

.foot-nav a {
    color: #fff;
    display: inline-block;
    padding: 0px 7px;
}

.foot-nav a:hover {
    color: #ccc;
}

.foot-nav01 {
    padding-bottom: 10px;
}

.foot-nav01 ul li a {
    border-left: 1px solid #fff;
}

.foot-nav01 ul li:last-child a {
    border-right: 1px solid #fff;
}

.foot-add {
    font-size: 110%;
}

.foot-tel {
    font-size: 110%;
}

@media (min-width: 768px) {
    footer {
        padding-bottom: 0;
    }

    footer #copyright {
        padding: 30px 0 30px;
    }

    .foot {
        padding: 60px 15px 0;
    }

    .foot-wrap {}

    .foot-nav a {
        padding: 0px 10px;
    }
}

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

#pagetops {
    position: fixed;
    right: 5px;
    bottom: 76px;
	z-index: 10;
}

#pagetops a {
    cursor: default;
}

#pagetop img {
    width: 40px;
	height: 40px;
	border: 1px solid #000;
	background-color: #fff;
	border-radius: 50%;
}

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

    #pagetop img {
        width: 60px;
		height: 60px;
    }
}


