@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP&display=swap');
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c&display=swap');
@import url("navi.css");
@import url("page.css");
@import url("form.css");
@charset "utf-8";
/***************************************************************** default settings */
body {
    margin: 0;
    padding: 0;
    font-size: 1rem;
    font-family: 'Noto Sans JP', YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, "sans-serif";
    color: #2b2b2b;
    line-height: 2;
    background: #FFF5E3;
    -webkit-text-size-adjust: none;
}
:root {
    --font_marugo: 'M PLUS Rounded 1c';
    --font_kakugo: 'Noto Sans JP';
    --font_mincho: 'Noto Serif JP';
    --color_accents: #F09254;
}
* {
    box-sizing: border-box;
}
p {
    margin: 0 0 20px 0;
    width: 100%;
}
img {
    max-width: 100%;
}
a {
    color: #0093D1;
    overflow: hidden;
    transition-property: all;
    transition: 0.2s linear;
}
a:hover {
    color: #111;
}
img, a img, a:hover img, a:visited img {
    border: none;
    vertical-align: bottom;
    transition: all .6s ease;
}
ul, ol {
    margin: 0 0 20px 0;
    padding: 0 0 0 30px;
}
@media screen and (max-width: 800px) {
    body {
        background: #fff;
    }
}
/***************************************************************** common style */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    height: 0;
    visibility: hidden;
}
.clearfix {
    min-height: 1px;
}
.small {
    font-size: 0.9em;
}
.clear {
    clear: both;
}
.margin_zero {
    margin: 0;
}
.margin_b {
    margin-bottom: 60px;
}
.no_bg {
    background: none;
}
.red {
    color: #ff0000;
}
.gray {
    color: #999;
}
.orange {
    color: var(--color_accents);
}
.center {
    text-align: center;
}
.btn01 {
    display: inline-block;
    background: var(--color_accents);
    color: #fff;
    border-radius: 50px;
    font-size: 13px;
    letter-spacing: 0px;
    padding: 2px 20px;
    font-weight: normal;
    text-decoration: none;
}
.btn01.gray {
    background: #b2b7b7;
}
.btn01:hover, .btn01.gray:hover {
    background: #333;
    color: #fff;
}

.btn02 {
    display: inline-block;
    width:100%;
    text-align: center;
    background: var(--color_accents);
    color: #fff;
    border-radius: 30px;
    font-size: 20px;
    letter-spacing: 0px;
    padding: 20px;
    font-weight: normal;
    text-decoration: none;
    border-bottom: solid 4px #DD7524;
}
.btn02:hover {
  -webkit-transform: translateY(4px);
  transform: translateY(4px);
  color:#fff;
  background: #DD7524;
}

.kadomaru_og {
    display: inline-block;
    font-family: var(--font_marugo);
    font-weight: bold;
    font-size: 20px;
    background: var(--color_accents);
    border-radius: 30px;
    line-height: 1.6;
    padding: 10px 50px;
    margin: 0;
    color: #fff;
    letter-spacing: 4px;
    text-indent: 4px;
}
.box_white {
    background: #fff;
    padding: 30px;
    border: 1px solid var(--color_accents);
    position: relative;
}
.sp {
    display: none !important;
}
@media screen and (max-width: 800px) {
    .sp {
        display: block !important;
    }
    .box_white {
        padding: 20px;
    }
}
/***************************************************************** basic layout */
.layout {
    width: 1000px;
    margin: auto;
    padding: auto;
    text-align: left;
    position: relative;
}
.layout_wide {
    width: 1300px;
    margin: auto;
    padding: auto;
    text-align: left;
    position: relative;
}
#contents {
    margin: 0 0 100px 0;
}
section {
    margin: 0 0 100px 0;
    clear: both;
    margin-top: -90px;
    padding-top: 90px;
}
aside {
    margin: 0 0 60px 0;
    width: 100%;
}
.flex_wrap {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}
.cnt_half {
    width: 48%;
}
.cnt_one_third {
    width: 32%;
}
.cnt_one_third2 {
    width: 64%;
}
.cnt_one_quarter {
    width: 22%;
}
@media screen and (max-width: 800px) {
    .layout, .layout_wide {
        width: 100%;
        padding: 0 30px;
    }
    section {
        margin: 0 0 60px 0;
        margin-top: -90px;
        padding-top: 90px;
    }
    .cnt_half, .cnt_one_third,.cnt_one_third2 {
        width: 100%;
    }
    .cnt_one_quarter {
        width: 48%;
    }
}
/***************************************************************** header */
header {
    font-family: var(--font_marugo);
    font-weight: bold;
    margin: 0 0 60px 0;
}
.tel {
    z-index: 100;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 230px;
    height: 120px;
    background: #FFF5E3;
    border-top-left-radius: 20px;
    font-size: 20px;
    letter-spacing: 2px;
    color: var(--color_accents);
    text-align: center;
    padding: 18px 0 0 0;
}
.tel span {
    display: block;
}
.tel span:first-child {
    font-size: 13px;
    letter-spacing: 2px;
}
.tel span:last-child {
    font-size: 12px;
    letter-spacing: 0px;
    font-weight: normal;
}
.naviarea {
    height: 140px;
}
header h1 {
    margin: 0;
    padding: 0;
    font-size: 1em;
}
#logo {
    position: absolute;
    left: 0;
    top: 0;
    font-size: 32px;
    letter-spacing: 6px;
}
#logo span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 0 0 0 6px;
}
#logo a {
    color: var(--color_accents);
    text-decoration: none;
}
@media screen and (max-width: 800px) {
    header {
        margin: 0 0 10px 0;
    }
    #header_area {
        position: relative;
        padding: 80px 0 0 0;
    }
    .naviarea {
        position: fixed;
        top: 0;
        left: 0;
        height: 80px;
        z-index: 100;
        background: #fff;
    }
    .tel {
        display: none;
    }
    #logo {
        position: absolute;
        left: 10px;
        top: 16px;
        font-size: 26px;
        letter-spacing: 2px;
        line-height: 1.6;
    }
    #logo span {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 0 0 0 2px;
    }
}
/***************************************************************** footer */
footer {
    background: #EC9B66;
    color: #fff;
}
footer a {
    color: #fff;
    text-decoration: none;
}
footer a:hover {
    color: #222;
}
.footer_logo {
    font-family: var(--font_marugo);
    font-size: 32px;
    letter-spacing: 6px;
    font-weight: bold;
    line-height: 1.8;
    margin: -40px 0 0 -6px;
}
.footer_logo span {
    display: block;
    font-size: 11px;
    letter-spacing: 2px;
    padding: 0 0 0 6px;
}
.address {
    font-size: 13px;
}
.copyright {
    text-align: right;
    padding: 0 0 20px 0;
    font-size: 11px;
}
@media screen and (max-width: 800px) {
    .footer_logo, .address, .copyright {
        text-align: center;
    }
    .footer_logo {
        font-size: 24px;
        letter-spacing: 4px;
        padding: 0;
    }
    .footer_logo span {
        font-size: 9px;
        letter-spacing: 1px;
        padding: 0;
    }
}
/***************************************************************** headline */
h2 {
    width: 100%;
    font-family: var(--font_marugo);
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 60px 0;
    padding: 20px 0 0 2px;
    letter-spacing: 2px;
    text-align: center;
    background: url("../img/bar01.png") no-repeat center top;
}
h3 {
    width: 100%;
    font-family: var(--font_marugo);
    font-size: 18px;
    font-weight: bold;
    margin: 0 0 10px 0;
    padding: 0;
}
.sub_copy {
display: inline-block;
    font-size: 0.6em;
    line-height: 1.4 !important;
}
.dot_og {
    background: none;
    text-align: left;
    font-family: var(--font_kakugo);
    border-bottom: 1px dotted var(--color_accents);
    margin: 0 0 20px 0;
}
.bar_og {
    background: var(--color_accents);
    font-family: var(--font_kakugo);
    margin: 0 0 20px 0;
    padding: 10px 20px;
    color: #fff;
}
.bar_og_dot {
    background: var(--color_accents);
    padding: 10px 0px;
    color: #fff;
}
.bar_og_dot span {
    display: inline-block;
    width: 100%;
    padding: 20px 0;
    border-top: 1px dotted #fff;
    border-bottom: 1px dotted #fff;
}
@media screen and (max-width: 800px) {
    h2 {
        font-size: 20px;
        text-align: center;
        background-position: center top;
    }
    h3 {
        font-size: 16px;
    }
}