@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: -apple-system, BlinkMacSystemFont, "Helvetica Neue", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, メイリオ, Meiryo, sans-serif;
}

table {
    border-collapse: collapse;
}

p,
th,
td {
    font-size: 14px;
    line-height: 1.6;
}

@media (min-width: 768px) {
    p,
    th,
    td {
        font-size: 16px;
        line-height: 1.8;
    }
}

a {
    text-decoration: none;
}


/*画像ホバーOpacity*/

a img {
    /*transition: 1.0s ;*/
}

a:hover img {
    filter: alpha(opacity=50);
    -moz-opacity: 0.5;
    opacity: 0.5;
}


/*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: 960px) {
    a[href^="tel:"] {
        pointer-events: auto;
    }
}


/* スマホメニュー */

.nav-content {
    background: #fff;
}

.nav-content ul {}

.nav-content ul li {}

.nav-content ul li a {
    text-align: left;
    display: block;
    padding: 15px 10px;
    border-bottom: 1px solid #eee;
    background: #f3f1e9;
    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);
}


/*ヘッダー*/

header {}

header .logo {
    height: 54px;
    box-sizing: border-box;
    padding-top: 9px;
    text-align: center;
    width: 100%;
}

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

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


/*フッター*/

footer {
    background: #f6f4ef;
}
footer a{color:#000;}
.foot_part {
    text-align: center;
}

.foot_part_name {
    font-size: 0.9em;
    padding-top: 5px;
}

.foot_logo_img {
    width: 100px;
    margin: 0 auto;
}

.copy p {
    text-align: center;
    padding-top: 25px;
    font-size: 0.9em;
}

.foot_prof {
    max-width: 670px;
    margin: 15px auto 0;
}

.foot_prof p {
    font-size: 0.9em;
}

.foot_prof_nagoya {
    padding-top: 25px;
}

@media (min-width: 768px) {
    .foot_prof {
        margin: 25px auto 0;
    }
    .foot_prof:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
    .foot_prof_okazaki {
        float: left;
    }
    .foot_prof_nagoya {
        float: right;
        padding-top: 0;
    }
}


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

#pagetops {
    position: fixed;
    right: 6px;
    bottom: 6px;
}

#pagetops a {
    cursor: default;
}

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

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

#pagetop:hover:after {
    background: #fdba76;
}

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


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

各ページ style

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

.title_part {
    background: #ff9933;
}

.yell {
    background: #f9e8a5;
}

.accessback {
    background: #f0f4ef;
}

.wrapper {
    max-width: 1024px;
    padding: 30px 15px;
    margin: 0 auto;
}

.wrapper.kataha {
    padding-top: 0;
}

@media (min-width: 768px) {
    .wrapper {
        padding: 60px 15px;
    }
    .wrapper.wrapper_mainimg {
        padding: 30px 15px;
    }
    .wrapper.kataha {
        padding: 0 15px 60px;
    }
}


/*top*/

.top_mainimg {

}
.top_img{
    display: none;
}
.top_img-s{
    display: inline;
}
.top_reds {
    display: none;
}
.top_reads {
    padding: 15px;
    font-size: 1.1em;
    text-align: justify;
    text-justify: inter-ideograph;
}

@media (min-width: 768px) {
    .top_mainimg {
        position: relative;
    }
    .top_img{
    display: inline;
}
.top_img-s{
    display: none;
}
    .top_reds {
        display: block;
        position: absolute;
        left: 10px;
        right: 10px;
        top: 20%;
    }
    .top_reads {
        display: none;
    }
}

.greeting_all {
    max-width: 930px;
    margin: 0 auto;
}

.greet_title {
    text-align: center;
}

.greet_title img {
    width: 220px;
}

.daihyo_aisatsu {
    text-align: center;
    padding: 5px 0 15px;
}

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

.daihyo_torishimariyaku {
    text-align: right;
    padding-top: 15px;
}

.daihyo_name {
    text-align: right;
}

@media (min-width: 768px) {
    .greeting_all:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
    .greet_title {
        float: left;
        width: 35%;
    }
    .greeting_right {
        float: right;
        width: 60%;
    }
    .greet_title img {
        width: 100%;
    }
    .daihyo_aisatsu {
        text-align: right;
        padding-top: 5px;
    }
}

.worksaboutus a {
    display: block;
}

.worksaboutus_right {
    padding-top: 15px;
}

.bannerloan{
    text-align: center;
    padding-top: 15px;
}

@media (min-width: 768px) {
    .worksaboutus:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
    .worksaboutus a {
        width: 48%;
    }
    .worksaboutus_left {
        float: left;
    }
    .worksaboutus_right {
        float: right;
        padding-top: 0;
    }
    .bannerloan{
        width: 48%;
        margin: 0 auto;
        padding-top: 60px;
    }
}

.okigaruni {
    text-align: center;
}

.okigaruni h2 {
    padding-top: 5px;
    font-size: 30px;
}

.okigaruni h3 {
    font-size: 20px;
}

.okigaruni h3 a {
    color: #000;
}

.okigaruni_all {
    max-width: 670px;
    margin: 0 auto 30px;
}

.okigaruni_all h3 {
    background: #000;
    color: #fff;
    width: 10rem;
    padding: .2rem 0 .3rem 0;
    margin: 0 auto;
}

.okigaruni_okazaki {
    padding: 15px 0;
}

.okigaruni_nagoya {
    padding-top: 15px;
}

.kakutel {
    font-size: 40px;
    line-height: 1;
    margin: 10px auto 5px;
}
.kakutel a{color:#000;}
.mail_img {
    width: 50px;
    margin-top: 15px;
}

@media (min-width: 768px) {
    .okigaruni_all {
        max-width: 670px;
        margin: 15px auto 30px;
    }
    .okigaruni_all:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
    .okigaruni_all .okigaruni_okazaki {
        float: left;
        width: 48%;
    }
    .okigaruni_all .okigaruni_nagoya {
        float: right;
        width: 48%;
    }
    .okigaruni h3 {
        font-size: 25px;
    }
}


/*works*/

.page_title {
    text-align: center;
    color: #fff;
    padding: 30px 0;
}

.page_title img {
    width: 200px;
}
.page_title.workstit img {
    width: 150px;
}
.page_title span {
    font-weight: normal;
    font-size: 18px;
    padding-top: 10px;
    display: inline-block;
}

.works_intro {
    text-align: center;
    padding: 0 0 30px;
}

.works_intro p{font-size:1.1em;}

.works_one {
    padding: 0 0 30px;
}
.works_one img{width:100%;}
.works_one h3 {
    padding-top: 5px;
}

@media (min-width: 768px) {
    .works_intro p{font-size:1.2em;}
    .works_all:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
    .works_one {
        float: left;
        width: 33%;
        padding: 0 15px 30px;
    }
}


/*aboutus*/

.profile_table table {
    border-top: 1px solid #999;
    width: 100%;
    max-width: 670px;
    margin: 0 auto;
}

.profile_table table th {
    font-weight: normal;
    text-align: left;
    padding: 10px 10px 10px 0;
    border-bottom: 1px solid #999;
    vertical-align: top;
}

.profile_table table td {
    padding: 10px 0;
    border-bottom: 1px solid #999;
}
.profile_table table td a{color:#000;}
@media (min-width: 768px) {
    .profile_table table th {
        padding: 15px 15px 15px 0;
    }
    .profile_table table td {
        padding: 15px 0;
    }
}

.sec_title {
    padding-bottom: 30px;
}

.sec_title img {
    width: 200px;
}

.sec_title h2 {
    text-align: center;
}

.sec_title span {
    font-weight: normal;
    font-size: 18px;
    padding-top: 10px;
    display: inline-block;
}

.map_okazaki {
    padding-bottom: 30px;
}

.map_all p {
    padding-top: 5px;
}
.map_all p a{color:#000;}
@media (min-width: 768px) {
    .map_all:after {
        content: "";
        clear: both;
        height: 0;
        display: block;
        visibility: hidden;
    }
    .map_okazaki {
        float: left;
        width: 48%;
        padding-bottom: 0;
    }
    .map_nagoya {
        float: right;
        width: 48%;
    }
}
