@charset "utf-8";

/*------------------------------------------------------------
デフォルトスタイル
------------------------------------------------------------*/

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    background: transparent;
    border: 0;
    outline: 0;
    font-size: 1em;
}

body {
    font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option {
    font-family: "Sawarabi Gothic";
    line-height: 1.1;
    letter-spacing: 0.05em;
}

table,
input,
textarea,
select,
option {
    line-height: 1.1;
}

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

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

 :focus {
    outline: 0;
}

ins {
    text-decoration: none;
}

del {
    text-decoration: line-through;
}

a:link {
    color: #593808;
    text-decoration: none;
}

a:visited {
    color: #593808;
    text-decoration: none;
}

a:hover {
    color: #593808;
    text-decoration: underline;
}

a:active {
    color: #593808;
    text-decoration: underline;
}


/*------------------------------------------------------------
レイアウト
------------------------------------------------------------*/

body {
    color: #2e2e2e;
    text-align: center;
    line-height: 1.5;
    background: url("../images/body.gif") repeat;
}

#container {
    text-align: left;
    background: url("../images/container_bg.gif") no-repeat center top;
    background-attachment: fixed;
}

#main {
    margin: auto;
    padding-bottom: 30px;
    width: 90%;
    display: flex;
    justify-content: space-between;
}


/*------------------------------------------------------------
ヘッダー
------------------------------------------------------------*/

@media screen and (max-width: 1023px) {
    #gHeader {
        position: fixed;
        z-index: 100;
    }
    #gHeader .hBox {
        justify-content: space-around;
        position: relative;
    }
}

@media screen and (min-width: 1024px) {
    #gHeader .hBox {
        justify-content: space-between;
        align-items: flex-end;
    }
}

#gHeader {
    width: 100%;
    background-color: #5b3802;
}

#gHeader .hBox {
    margin: 0 auto;
    width: 90%;
    display: flex;
}

#gHeader .logo img {
    width: 180px;
    height: auto;
}

#gHeader .t_logo img {
    vertical-align: top;
    width: 230px;
    height: auto;
    background-color: #58381a;
}

#gHeader .phone {
    position: absolute;
    right: 0;
    /*
  top: 13px;
  */
    top: 5px;
}

#gHeader .headerPhone {
    font-size: 5em;
    color: white;
}

#gHeader h1 {
    /*
padding: 0 0 10px 10px;
*/
    padding: 0 0 22px 10px;
    font-weight: normal;
    color: #FFF;
    font-size: 1.4em;
}


/*------------------------------------------------------------
スマートフォン向けナビ
------------------------------------------------------------*/

#spMenu {
    height: 20px;
    position: absolute;
    left: 10px;
    top: 20px;
    width: 30px;
    z-index: 99;
}

#spMenu::after {
    position: absolute;
    left: -6px;
    bottom: -22px;
    content: 'メニュー';
    display: block;
    width: 100%;
    color: #fff;
    font-size: 1.1em;
    text-decoration: none;
    text-align: center;
    white-space: nowrap;
    transition: all .4s;
}

#spMenu.active::after {
    content: '閉じる';
    left: -2px;
    bottom: -22px;
}

.spMenu_line {
    background: #fff;
    display: block;
    height: 2px;
    position: absolute;
    transition: transform .3s;
    width: 100%;
}

.spMenu_line-center {
    top: 9px;
}

.spMenu_line-bottom {
    bottom: 0;
}

.spMenu_line-top.active {
    top: 8px;
    transform: rotate(45deg);
}

.spMenu_line-center.active {
    transform: scaleX(0);
}

.spMenu_line-bottom.active {
    bottom: 10px;
    transform: rotate(135deg);
}

#spNavi {
    background: rgba(0, 0, 0, 0.9);
    display: none;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 98;
}

.spNavi_wrap {
    align-items: center;
    display: flex;
    height: 100%;
    justify-content: center;
    position: absolute;
    width: 100%;
}

.spNavi_spMenu_item {
    margin: 20px 0;
}

.spNavi_spMenu_item a {
    color: #fff;
    font-size: 2em;
    font-weight: bold;
    padding: 10px;
    text-decoration: none;
    transition: .5s;
}

.spNavi_spMenu_item a:hover {
    color: #666;
}


/*------------------------------------------------------------
グローバルナビ
------------------------------------------------------------*/

#sideBar #gNavi {
    width: 100%;
    margin-bottom: 15px;
    background-color: #FFF;
    border-radius: 0 0 5px 5px;
}

#sideBar #gNavi li {
    margin: 0 18px;
    font-size: 1.6em;
    border-bottom: dotted #5b3802 1px;
}

#sideBar #gNavi li a {
    display: flex;
    justify-content: space-between;
    padding: 24px 0;
}

#sideBar #gNavi .navi {
    border-bottom: none;
}

#sideBar #gNavi .naviImg {
    max-width: 16px;
    max-height: 16px;
    min-width: 16px;
    min-height: 16px;
    text-align: right;
    align-self: center;
}
.t_logo {
    background-color: #5a3801 !important;
    text-align: center !important;
}

/*------------------------------------------------------------
コンテンツ
------------------------------------------------------------*/

@media screen and (max-width: 1023px) {
    #sideBar {
        display: none;
    }
    #spMenu {
        display: block;
    }
    .mailbox {
        display: none;
    }
    .phone {
        display: block;
    }
    #gHeaderText {
        display: none;
    }
    #conts {
        width: 100%;
        margin-top: 82px;
    }
    /*------------------------------------
.social-btns .btn {
   display: none;
}
  -------------------------------------*/
    .social-btns .btn mailbox {
        display: none;
    }
}

@media screen and (min-width: 1024px) {
    #sideBar {
        display: block;
    }
    #spMenu {
        display: none;
    }
    .phone {
        display: none;
    }
    #gHeaderText {
        display: block;
    }
    #conts {
        width: 80%;
        margin-top: 10px;
    }
}

#conts {
    position: relative;
    background-color: #FFF;
    border-radius: 3px 3px 0 0;
}


/*------------------------------------------------------------
サイドバー
------------------------------------------------------------*/

@media screen and (max-width: 1023px) {
    #sideBar {
        top: 82px;
        margin-top: 82px;
    }
}

@media screen and (min-width: 1024px) {
    #sideBar {
        top: 10px;
        margin-top: 10px;
    }
}

#sideBar {
    width: 18%;
    position: sticky;
    align-self: flex-start;
}

#sideBar .sContact {
    margin-bottom: 15px;
    padding-bottom: 16px;
    position: relative;
    background-color: #FFF;
    border-radius: 3px 3px;
}

#sideBar .sContact .time {
    margin: 0 10px 10px;
    padding-bottom: 12px;
    color: #593808;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.7;
    text-align: center;
    background: url("../images/line01.gif") repeat-x left bottom;
}

#sideBar .sContact .time span {
    display: block;
    font-size: 16px;
    line-height: 1.4;
}

#sideBar .sContact .title {
    margin-bottom: 16px;
    padding: 5px 0 3px;
    color: #FFF;
    font-size: 1.6em;
    font-weight: bold;
    position: relative;
    text-align: center;
    background-color: #5A3801;
    border-radius: 3px 3px 0 0;
}

#sideBar .sContact .tel {
    margin: 0px 3px 3px;
    color: #e8a838;
    font-size: 2.2em;
    text-align: center;
}

#sideBar .link {
    text-align: center;
}

#sideBar .sBnr a:hover img {
    filter: alpha(opacity=70);
    opacity: 0.7;
}


/*------------------------------------------------------------
フッター
------------------------------------------------------------*/

#footer {
    padding: 4px 0;
    background-color: #5b3802;
}

#footer p {
    margin: 0 !important;
    color: #FFF;
    font-size: 1.1em !important;
    font-weight: bold;
    text-align: center;
}


/*------------------------------------------------------------
書式設定
------------------------------------------------------------*/


/* テキストの位置 */

.taLeft {
    text-align: left !important;
}

.taCenter {
    text-align: center !important;
}

.taRight {
    text-align: right !important;
}

.vaTop {
    vertical-align: top !important;
}

.vaMiddle {
    vertical-align: middle !important;
}


/* フォントの大きさ（プラス） */

.fsP1 {
    font-size: 1.08em !important;
}

.fsP2 {
    font-size: 1.16em !important;
}

.fsP3 {
    font-size: 1.24em !important;
}

.fsP4 {
    font-size: 1.32em !important;
}

.fsP5 {
    font-size: 1.4em !important;
}


/* フォントの大きさ（マイナス） */

.fsM1 {
    font-size: 0.92em !important;
}

.fsM2 {
    font-size: 0.84em !important;
}

.fsM3 {
    font-size: 0.76em !important;
}

.fsM4 {
    font-size: 0.68em !important;
}

.fsM5 {
    font-size: 0.6em !important;
}


/* フォントの太さ */

.fwNormal {
    font-weight: normal !important;
}

.fwBold {
    font-weight: bold !important;
}


/*------------------------------------------------------------
微調整用クラス（※多用しないこと）
------------------------------------------------------------*/

.mt0 {
    margin-top: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}


/*------------------------------------------------------------
汎用スタイル
------------------------------------------------------------*/

* html .clearfix {
    zoom: 1;
}

*+html .clearfix {
    zoom: 1;
}

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

img {
    max-width: 100%;
    height: auto;
    vertical-align: top;
    /*
margin-left: 6px;
*/
}

.floatR {
    float: right !important;
}


/*------------------------------------------------------------
access
------------------------------------------------------------*/

#conts .access {
    padding: 15px 1% 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    background-color: #FFF;
}

#conts .access {
    flex-grow: 1;
    margin-right: 5px;
}

.textBox {
    flex-grow: 1;
    margin-left: 10px;
}

#conts .access .textBox .ttlImg {
    margin-bottom: 17px;
    text-align: left;
}

#conts .access .textBox p {
    margin: 0 !important;
    padding: 0;
    font-size: 1.5em;
    line-height: 1.8;
}

#conts .access .map {
    display: flex;
    flex-grow: 2;
    flex-basis: 60%;
    min-height: 260px;
    border-radius: 5px;
}

#conts .access .map iframe {
    width: 100%;
    height: 100%;
    border-radius: 5px;
}


/*------------------------------------------------------------
headLine02
------------------------------------------------------------*/

#conts .headLine02 {
    margin-bottom: 48px;
    padding: 78px 0 56px;
    font-size: 2.5em;
    font-weight: normal;
    text-align: center;
    background: url("../images/h2_bg.gif") no-repeat center bottom;
}


/*------------------------------------------------------------
headLine03
------------------------------------------------------------*/

#conts .headLine03 {
    padding-bottom: 10px;
    font-size: 2em;
    font-weight: normal;
    text-align: center;
    background: url("../images/h3_underbar_img.gif") no-repeat center bottom;
}


/*------------------------------------------------------------
comContact
------------------------------------------------------------*/

#conts .comContact {
    margin: 0 auto 41px;
    width: 85%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-around;
    border: 3px solid #5A3801;
    border-radius: 4px;
}

#conts .comContact li {
    margin: 3%;
}


/*------------------------------------------------------------
btmLink
------------------------------------------------------------*/

#conts .btmLink {
    padding: 0 5px 12px;
    text-align: right;
    background-color: #FFF;
}

#conts .btmLink a {
    padding-left: 25px;
    /*display: inline-block;*/
    color: #2e2e2e;
    font-size: 1.4em;
    background: url("../images/icon01.gif") no-repeat left 3px;
}


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

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

label {
    font-size: 1.5em;
}

.contform {
    display: block;
    margin: 0 auto;
    text-align: center;
    width: 90%;
}

.telBox {
    width: 400px;
    margin: 0 auto;
    margin-top: 20px;
}

h3#form {
    margin-top: 15px;
    letter-hright: 1.2em;
}

p.text {
    margin: 15px;
    text-align: center;
    font-size: 1.5em;
}


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

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

form {
    border: solid 1px #ddd;
    padding: 30px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
    margin-bottom: 50px;
}

form h1 {
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    text-align: center;
}

body>div:nth-child(3)>div {
    border: solid 1px #ddd;
    padding: 30px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
    border-radius: 5px;
    background-color: #fff;
}

body>div:nth-child(3)>div>h1 {
    letter-spacing: 2px;
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: bold;
    color: #333333;
    padding-left: 0;
}

form>div {
    border-radius: 3px;
    background-color: #f6f6f6;
    vertical-align: middle;
    border: 1px solid #dddddd;
    margin-top: 20px;
    margin-bottom: 15px;
    padding: 20px;
}

form>div>div {
    border-radius: 3px;
    padding: 10px 20px;
}

form>div>div>p {
    width: 405px;
    float: left;
    margin: 0 15px;
}

form>div>div>p {
    width: 405px;
    float: left;
    margin: 17px;
    font-size: 1.5em;
    color: #593808;
}

form>div>div:before,
form>div>div:after {
    display: table;
    content: " ";
    clear: both;
}

form>div input[type=text],
form>div input[type=email],
form>div textarea,
form>div select {
    display: block;
    min-width: 460px;
    max-width: 460px;
    float: right;
    height: 38px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
    -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
    margin: 0 15px;
}

form>div textarea {
    height: auto;
}

input[type=radio] {
    margin-left: 25px;
    margin-top: 8px;
}

body>div label {
    margin-bottom: 0;
    text-align: right;
    /*
width: 145px;
*/
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
    position: relative;
    margin-top: 17px;
}

body>div label span {
    color: #fff;
    background: #fb3b6f;
    display: inline-block;
    padding: 3px 3px;
    /*
font-size: 10px;
*/
    font-size: 0.7em;
    -moz-border-radius: 2px;
    -webkit-border-radius: 2px;
    border-radius: 2px;
    /*
position: absolute;
*/
    right: 16px;
    top: 19px;
    margin-left: 10px;
}

.answer {
    font-size: 1.3em;
    text-align: center;
}

.container label+div {
    width: 75%;
    float: left;
    position: relative;
    min-height: 1px;
    padding-right: 15px;
    padding-left: 15px;
}

button {
    display: block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
    margin: 0 auto;
}

button:hover {
    background: #00b0da;
    background: -webkit-gradient(linear, left top, left bottom, color-stop(1, #00a1d0), color-stop(0, #00bedf));
    background: -webkit-linear-gradient(#00bedf, #00a1d0);
}

button {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

body>div>a>button {
    margin-left: 0;
    margin: 0 auto;
    display: block;
}

a+button {
    margin-left: 20px
}

a {
    text-decoration: none;
}

a:focus,
a:hover {
    outline: none;
    text-decoration: none;
}

input::-webkit-input-placeholder {
    color: #777;
}

button {
    padding: 10px 13px 11px;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold;
    font-weight: bold;
    border-radius: 4px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    /*
white-space: nowrap;
border: 1px solid #0093c9;
color: #ffffff;
background: #009ecf;
box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.28), inset 0px 2px 0px -1px #10a4d2;
*/
}

input[type=button] {
    padding: 10px 13px 11px;
    font-size: 18px;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    border-radius: 4px;
    line-height: 1;
    text-align: center;
    vertical-align: middle;
    white-space: nowrap;
    border: 1px solid #c3c3c3;
    color: #7c7c7c;
    background: #ffffff;
    text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.13);
    -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.28);
    -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.28);
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.28);
    margin-left: 180px;
    margin-right: 25px;
}

input[type=button]+button {
    display: inline-block;
}

input+div,
select+div,
textarea+div {
    float: right;
    width: 420px;
    color: red;
    margin-bottom: -10px;
}

.error-form {
    border-color: #fb9a93 !important;
}

.thanks {
    font-size: 1.4em;
    line-height: 2em;
    padding: 10px;
}


/* 960px〜1279px：小型PC
------------------------------ */

@media screen and (min-width:960px) and (max-width:1279px) {}


/* 600px〜959px：タブレット
------------------------------ */

@media screen and (min-width:600px) and (max-width:959px) {
    body>div label {
        margin-bottom: 0;
        text-align: right;
        width: 145px;
        float: left;
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        padding-bottom: 10px !important;
        position: relative;
        margin-top: 17px;
    }
    body>div label span {
        color: #fff;
        background: #fb3b6f;
        display: inline-block;
        padding: 5px 3px;
    }
    body>div label span {
        color: #fff;
        background: #fb3b6f;
        display: inline-block;
        padding: 3px 3px;
        /* font-size: 10px; */
        font-size: 0.8em;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        /* position: absolute; */
        right: 16px;
        top: 19px;
        margin-left: 10px;
        margin-bottom: 10px;
    }
    body>div label {
        margin-bottom: 20px !important;
        text-align: center;
        /* width: 145px; */
        /* float: left; */
        position: relative;
        min-height: 1px;
        /* padding-right: 15px; */
        /* padding-left: 15px; */
        position: relative;
        margin-top: 17px;
        display: block;
    }
}


/* 480px〜599px：SP横
------------------------------ */

@media screen and (min-width:480px) and (max-width:599px) {}


/* 〜479px：スマートフォン縦
------------------------------ */

@media screen and (max-width:479px) {
    .form {
        border: solid 1px #ddd;
        -moz-border-radius: 5px;
        -webkit-border-radius: 5px;
        border-radius: 5px;
        background-color: #fff;
    }
    .contform {
        display: block;
        margin: 0 auto;
        text-align: center;
        width: 90%;
    }
    .telBox {
        width: 90%;
    }
    input {
        float: none;
        max-width: 200px;
    }
    body>div label span {
        color: #fff;
        background: #fb3b6f;
        display: inline-block;
        /* padding: 2px 5px; */
        font-size: 10px;
        font-size: 0.7rem;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        /* position: absolute; */
        /* right: 16px; */
        /* top: 19px; */
    }
    form>div input[type=text],
    form>div input[type=email],
    form>div textarea,
    form>div select {
        display: block;
        min-width: 200px;
        max-width: 200px;
        float: none;
        height: 38px;
        padding: 6px 12px;
        font-size: 14px;
        line-height: 1.42857143;
        color: #555;
        background-color: #fff;
        background-image: none;
        border: 1px solid #ccc;
        border-radius: 4px;
        -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        box-shadow: inset 0 1px 1px rgba(0, 0, 0, .075);
        -webkit-transition: border-color ease-in-out .15s, -webkit-box-shadow ease-in-out .15s;
        -o-transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
        margin: 0 -24px;
    }
    form>div input {
        display: block;
        min-width: 200px !important;
        max-width: 200px !importan;
        float: right;
        margin-left: -32px;
    }
    form>div {
        border-radius: 3px;
        background-color: #f6f6f6;
        vertical-align: middle;
        border: 1px solid #dddddd;
        margin-top: 20px;
        margin-bottom: 15px;
        padding: 9px;
    }
    body>div label span {
        color: #fff;
        background: #fb3b6f;
        display: inline-block;
        padding: 3px 3px;
        font-size: 0.7em;
        -moz-border-radius: 2px;
        -webkit-border-radius: 2px;
        border-radius: 2px;
        /*
position: absolute;
*/
        right: 16px;
        top: 19px;
        margin-left: 5px;
    }
    body>div label {
        margin-bottom: 0;
        text-align: left;
        width: 165px;
        float: left;
        position: relative;
        min-height: 1px;
        padding-right: 15px;
        padding-left: 15px;
        position: relative;
        margin-bottom: 24px;
        display: block;
    }
    div label span {
        font-size: 10px;
    }
    .error {
        text-align: center;
        font-size: 0.8em;
    }
    input+div,
    select+div,
    textarea+div {
        float: none;
        width: 200px;
        color: red;
        margin-bottom: -10px;
        margin: 10px;
    }
    input[type="button"] {
        padding: 10px 13px 11px;
        font-size: 18px;
        cursor: pointer;
        display: inline-block;
        font-weight: bold;
        border-radius: 4px;
        line-height: 1;
        text-align: center;
        vertical-align: middle;
        white-space: nowrap;
        border: 1px solid #c3c3c3;
        color: #7c7c7c;
        background: #ffffff;
        text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.13);
        -moz-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.28);
        -webkit-box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.28);
        box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.28);
        margin-left: 1px;
        margin-right: 1px;
    }
    textarea {
        min-width: 200px !important;
        font-size: 0.8em;
    }
    .contact-title {
        font-size: 2em;
    }
}
