/*
Theme Name: atenoki
Description: atenoki
Theme URI: https://www.atenoki.com
Version: 1.0
License: atenoki
License URI: https://www.atenoki.com
*/

@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
/*Noto Sans JP*/
@import url('https://fonts.googleapis.com/css2?family=Shippori+Mincho:wght@400;500;600;700;800&display=swap');
/*しっぽり明朝*/


/****************************************

リセットCSSここから

*****************************************/

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    font-size: 62.5%;
    /*1em=10px */
    overflow-y: scroll;
    /* 1 */
    -webkit-text-size-adjust: 100%;
    /* 2 */
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    vertical-align: baseline;
    background: transparent;
}


body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: normal;
}

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

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

/* change colours to suit your needs */
ins {
    background-color: #ff9;
    color: #000;
    text-decoration: none;
}

/* change colours to suit your needs */
mark {
    background-color: #ff9;
    color: #000;
    font-style: italic;
    font-weight: bold;
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

img {
    vertical-align: top;
}

/* change border colour to suit your needs */
hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #cccccc;
    margin: 1em 0;
    padding: 0;
}

input,
select {
    vertical-align: middle;
}


/****************************************

body設定(主に書式)

*****************************************/

body {
    min-width: 1200px;
    font-family: "Noto Sans JP", "メイリオ", Meiryo, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #000;
    line-height: 1.8;
    background: #FFF;
    letter-spacing: 0.06em;
}

@media screen and (max-width: 767px) {
    body {
        min-width: inherit;
    }

}


/****************************************

ページ共通

*****************************************/

#wrapper {
    float: none;
    width: 100%;
    min-width: 1240px;
    min-height: 100%;
    margin: 0 auto;
    overflow: hidden;
}


@media screen and (max-width: 767px) {
    #wrapper {
        float: none;
        width: 100%;
        min-width: 0;
        min-height: 100%;
        margin: 0 auto;
        overflow: hidden;
        background-size: contain;
    }

}


/****************************************

フォント指定

*****************************************/

li,
tt,
tr,
dt,
dd,
p {
    font-size: 1.6rem;
}

h1 {
    color: #000;
    font-weight: bold;
    font-size: 3.0rem;
}

h2 {
    color: #000;
    font-weight: bold;
    font-size: 2.4rem;
}

h3 {
    color: #000;
    font-weight: bold;
    font-size: 2.0rem;
}

@media screen and (max-width: 767px) {

    li,
    tt,
    tr,
    dt,
    dd,
    p {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 2.4rem;
        line-height: 1.5;
    }

    h2 {
        font-size: 2.0rem;
        line-height: 1.5;
    }

    h3 {
        font-size: 1.8rem;
        line-height: 1.5;
    }
}


/****************************************

リンク指定

*****************************************/

a:link,
a:visited {
    font-weight: normal;
    color: #000;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
    text-decoration: none;
}

a:hover,
a:active {
    font-weight: normal;
    color: #516F59;
    text-decoration: underline;
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

/****************************************

オンマウス時のアクション

*****************************************/

a:hover img.img_opacity {
    opacity: 0.75;
    filter: alpha(opacity=75);
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}

a img.img_opacity {
    -webkit-transition: 0.2s linear;
    transition: 0.2s linear;
}


/****************************************

pcヘッダー

*****************************************/

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

    header {
        width: 100%;
    }

    .header_box {
        position: relative;
    }

    .header_box_main {
        width: 100%;
        position: absolute;
        display: flex;
        justify-content: space-between;
        padding: 35px;
        z-index: 1;
    }

    .hdr_right {
        color: #FFF;
        text-shadow: 0px 0px 20px #000000;
    }

    .hdr_tel {
        display: flex;
        justify-content: right;
        align-items: center;
        margin-bottom: 30px;
    }

    .hdr_tel li {
        margin-right: 20px;
    }

    .hdr_tel li:last-child {
        margin-right: 0;
    }

    .cpr_tel {
        font-size: 3.0rem;
        background: url(images/cpr_tel_bg.png) no-repeat left -15px top 3px;
        padding-left: 25px;
        font-family: "Shippori Mincho", serif;
        font-weight: bold;
    }

    .time {
        font-size: 1.3rem;
    }

    .hdr_tel_disc {
        border: 1px solid #FFF;
        padding: 10px;
        font-size: 1.3rem;
    }

    .header_box_main_btm {
        position: absolute;
        bottom: 30px;
        right: 30px;
        z-index: 1;
    }

    .scroll {
        position: absolute;
        bottom: -80px;
        left: 112px;
        z-index: 1;
    }

}


/****************************************

spヘッダー・spナビ

*****************************************/
@media screen and (max-width:767px) {
    img {
        max-width: 100%;
        height: auto;
    }

    header {
        display: block;
        width: 100%;
        background: url(images/top_box05_bg.jpg);
    }

    .logo a {
        display: block;
        text-align: center;
        margin: 0 auto;
        padding: 15px 0;
    }

    .logo img {
        width: 30%;
    }

    .hdr_right,
    .hdr_btn {
        display: none;
    }

    .scroll {
        display: none;
    }

    .navi_box {
        display: none;
    }

    #toggle {
        position: fixed;
        right: 0px;
        top: 0px;
        width: 55px;
        height: 55px;
        cursor: pointer;
        z-index: 9999;
        border: 1px solid #FFF;
        padding: 14px 8px;
        background: url(images/top_box05_bg.jpg);
    }

    #toggle div {
        position: relative;
    }

    #toggle span {
        display: block;
        position: absolute;
        width: 100%;
        height: 2px;
        background: #FFF;
        border-radius: 4px;
        -webkit-transition: 0.35s ease-in-out;
        -o-transition: 0.35s ease-in-out;
        transition: 0.35s ease-in-out;
    }

    #toggle span:first-child {
        top: 0;
    }

    #toggle span:nth-child(2) {
        top: 11px;
    }

    #toggle span:nth-child(3) {
        top: 22px;
    }

    .open_navi #toggle {
        position: fixed;
        border: 1px solid #FFF;
    }

    .open_navi #toggle span {
        background: #FFF;
    }

    .open_navi #toggle span:first-of-type {
        -webkit-transform: translateY(11px) rotate(-315deg);
        -ms-transform: translateY(11px) rotate(-315deg);
        transform: translateY(11px) rotate(-315deg);
    }

    .open_navi #toggle span:nth-of-type(2) {
        opacity: 0;
    }

    .open_navi #toggle span:nth-of-type(3) {
        -webkit-transform: translateY(-11px) rotate(315deg);
        -ms-transform: translateY(-11px) rotate(315deg);
        transform: translateY(-11px) rotate(315deg);
    }

    #sp_navi {
        position: fixed;
        top: 0;
        left: 0;
        bottom: 0;
        width: 100vw;
        overflow-y: scroll;
        text-align: left;
        background: url(images/sp_navi_bg.jpg) no-repeat right bottom #FFF;
        background-size: contain;
        z-index: 999;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        transform: translateY(-100%);
        -webkit-transition: 0.7s ease-in-out;
        -o-transition: 0.7s ease-in-out;
        transition: 0.7s ease-in-out;
    }

    .open_navi #sp_navi {
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: 0.7s ease-in-out;
        -o-transition: 0.7s ease-in-out;
        transition: 0.7s ease-in-out;
    }

    .open_navi #wrapper {
        -webkit-transform-origin: left center;
        -ms-transform-origin: left center;
        transform-origin: left center;
        -webkit-filter: blur(3px);
        filter: blur(3px);
        -webkit-transition: 0.7s ease-in-out;
        -o-transition: 0.7s ease-in-out;
        transition: 0.7s ease-in-out;
    }

    #sp_navi .menu {
        padding-top: 80px;
        text-align: center;
    }

    #sp_navi .menu .menu-item {
        width: 100%;
        text-align: center;
        border-bottom: #516F59 1px solid;
        cursor: pointer;
        color: #516F59;
        margin: 0 auto;
        font-size: 1.4rem;
        -webkit-box-sizing: border-box;
        box-sizing: border-box;
    }

    #sp_navi .menu .menu-item-home {
        border-top: #516F59 1px solid;
    }

    #sp_navi .menu-item a,
    #sp_navi .menu-item span {
        display: block;
        padding: 15px 0 14px;
    }

    #sp_navi .menu-item a:active,
    #sp_navi .menu-item a:hover,
    #sp_navi .menu-item a:link,
    #sp_navi .menu-item a:visited {
        color: #516F59;
        text-decoration: none;
    }

    #sp_navi .sub-menu {
        width: 100%;
        text-align: center;
        display: none;
    }

    #sp_navi .sub-menu li {
        width: 100%;
        text-align: center;
        border-top: #516F59 1px solid;
    }

    #sp_navi .sub-menu li a {
        display: block;
        padding: 11px 0 10px;
        color: #FFF;
        background-color: rgba(81, 111, 89, 0.9);
    }

    #sp_navi .sub-menu li a:active,
    #sp_navi .sub-menu li a:hover,
    #sp_navi .sub-menu li a:link,
    #sp_navi .sub-menu li a:visited {
        color: #FFF;
        text-decoration: none;
    }

    #sp_navi .sub-menu li a:hover {
        color: #516F59;
        background: none;
    }

    #sp_navi .menu-item-has-children {
        position: relative;
    }

    #sp_navi .menu-item-has-children:before {
        content: '';
        width: 14px;
        height: 14px;
        border: 0;
        border-top: solid 3px #516F59;
        border-right: solid 3px #516F59;
        -webkit-transform: rotate(135deg);
        -ms-transform: rotate(135deg);
        transform: rotate(135deg);
        -webkit-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        position: absolute;
        top: 14px;
        right: 20px;
    }

    #sp_navi .menu-item-has-children.menu_open:before {
        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
        -webkit-transition: 0.2s ease-in-out;
        -o-transition: 0.2s ease-in-out;
        transition: 0.2s ease-in-out;
        top: 22px;
    }

    #g_navi {
        display: none;
    }

    .sp_navi_info {
        margin: 20px;
        padding: 25px;
        background: rgba(173, 149, 84, 0.4);
        text-align: center;
    }

    .sp_navi_info dt {
        margin-bottom: 15px;
        padding-bottom: 8px;
        border-bottom: 1px solid #516F59;
        color: #516F59;
        font-family: "Shippori Mincho", serif;
        letter-spacing: 0.03em;
        font-size: 2.2rem;
        font-weight: 600;
        line-height: 1;
    }

    .sp_navi_info dd a {
        color: #516F59;
        font-size: 2.4rem;
        margin: 12px 0;
        font-family: "Shippori Mincho", serif;
        font-weight: bold;
    }
}



/****************************************

pc用 横ナビ

*****************************************/

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

    #sp_navi,
    #toggle {
        display: none;
    }

}

#g_navi {
    width: auto;
}

#g_navi .menu {
    list-style-type: none;
    display: flex;
    
}


#g_navi .menu>li {
    position: relative;
    width: auto;
    height: 50px;
    text-align: center;
    line-height: 1;
}

#g_navi .menu>li:after {
    position: absolute;
    content: "";
    width: 1px;
    height: 20px;
    background: #FFF;
    right: 0;
    top: 0;
}

#g_navi .menu>li:last-child::after {
    content: none;
}

#g_navi .menu>li>a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    margin: 0;
    color: #FFF;
    font-size: 1.7rem;
    line-height: 1;
    text-align: center;
    text-decoration: none;
    font-weight: normal;
    font-family: "Shippori Mincho", 'Noto Serif JP', "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
    font-weight: bold;
}

#g_navi .menu>li:last-child>a {
    padding: 0 0 0 20px;
}

#g_navi .menu>li>a::before {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #A7A7A7;
    bottom: 20px;
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
}

#g_navi .menu>li>a:hover::before {
    transform: scale(1, 1);
}


#g_navi .menu li ul {
    display: block;
    list-style: none;
    position: absolute;
    z-index: 9999;
    opacity: 0;
    transition: 0.3s;
    top: 100%;
    left: -10%;
    margin: 0;
    width: 120%;
    visibility: hidden;
    text-shadow: none;
}

#g_navi .menu li ul li {
    width: 100%;
}

#g_navi .menu li ul li a {
    display: block;
    padding: 13px 2px;
    border: 1px solid #626262;
    border-bottom: none;
    font-size: 1.3rem;
    line-height: 1.5;
    background: #FFF;
    color: #383838;
    font-weight: normal;
    text-align: center;
    text-decoration: none;
    visibility: hidden;
    transition: .5s;
}

#g_navi .menu li ul li:last-child a {
    border-bottom: 1px solid #626262;
}

#g_navi .menu li ul li a:hover {
    background: #626262;
    color: #FFF;
    transition: 0.2s linear;
}

#g_navi .menu li:hover ul {
    visibility: visible;
    opacity: 0.95;
}

#g_navi .menu li:hover ul li a {
    visibility: visible;
    opacity: 1;
}

/****************************************

ティーザー

*****************************************/

/* TOPスライダー共通 */

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

    #slider {
        position: relative;
        width: 100%;
        z-index: 0;
    }

    #slider .metaslider {
        position: relative;
        width: 1920px !important;
        left: calc(50% - 960px);
    }

    .metaslider .flexslider {
        margin: 0 !important;
    }

    .metaslider .flex-control-nav {
        bottom: 10px !important;
    }

    .slider_txt {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        color: #1F2C60;
        font-size: 5.0rem;
        text-shadow: 5px 5px 3px #ffffff, -5px 5px 3px #ffffff, 5px -5px 3px #ffffff, -5px -5px 3px #ffffff, 5px 0px 3px #ffffff, 0px 5px 3px #ffffff, -5px 0px 3px #ffffff, 0px -5px 3px #ffffff;
    }


    #teaser_page {
        position: relative;
        width: auto;
        height: 500px;
    }

    #teaser_page img {
        position: absolute;
        top: 0;
        left: calc(50% - 960px);
    }

    .teaser_txt {
        position: absolute;
        font-size: 3.8rem;
        color: #FFF;
        font-weight: bold;
        text-align: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: "Shippori Mincho", serif;
        text-shadow: 0px 0px 20px #000;
    }

    .teaser_txt span {
        display: block;
        font-size: 10px;
        color: #FF7F22;
    }



}

@media screen and (max-width: 767px) {

    #slider {
        position: relative;
        width: 140%;
        overflow: hidden;
        margin: 0 0 0 -20%;
    }

    .slider_txt {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%,-50%);
    }

    .metaslider .flex-control-nav {
        bottom: 10px !important;
    }

    .metaslider .flexslider {
        margin: 0 !important;
    }

    #teaser_page {
        position: relative;
    }

    #teaser_page img {
        position: relative;


    }

    .teaser_txt {
        position: absolute;
        font-size: 2.0rem;
        color: #FFF;
        font-weight: bold;
        text-align: center;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        font-family: "Shippori Mincho", serif;
    }


}


/****************************************

content 共通設定

*****************************************/

#contents {
    width: 100%;
    margin: 0 auto;
}

main#top_main {
    width: 100%;
    margin: 0 auto;
}

main#page_main {
    width: 1200px;
    margin: 0 auto 120px;
}

.breadcrumb_area {
    width: 100%;
    margin: 20px auto 10px;
    text-align: right;
}

.breadcrumb {
    width: 1200px;
    margin: 0 auto;
}

.breadcrumb p {
    color: #5D5D5D;
    font-size: 1.6rem;
}

.breadcrumb p a:link,
.breadcrumb p a:visited {
    color: #5D5D5D;
    text-decoration: none;
}

.breadcrumb p a:hover,
.breadcrumb p a:active {
    color: #A18F81;
    text-decoration: underline;
}

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

    .pc_none {
        display: none;
    }

}

@media screen and (max-width: 767px) {

    main#top_main {
        margin: 0 auto 50px;
    }

    main#page_main {
        width: 100%;
        padding: 0 10px;
        margin: 0 auto 50px;
    }

    main#page_main figure {
        width: 100%;
        margin: 0 auto;
    }

    .breadcrumb_area {
        padding: 0 10px;
        margin: 0 auto 30px;
    }

    .breadcrumb {
        width: 100%;
    }

    .breadcrumb p {
        font-size: 1.2rem;
    }

    .sp_none {
        display: none;
    }

}


/****************************************

contentトップ用

*****************************************/

/* 1カラム目 */

.sec_bg {
    background: url(images/sec_bg.jpg) no-repeat bottom center;
    background-size: cover;
}

#top_box01 {
    display: flex;
    align-items: center;
    justify-content: right;
    padding: 140px 0 120px;
}

.top_box01_inner {
    width: 720px;
    min-width: 530px;
    margin-right: 120px;
}

.top_box01_tit {
    font-family: "Shippori Mincho", serif;
    font-size: 3.6rem;
    margin-bottom: 50px;
}

.top_box01_tit span {
    font-size: 4.6rem;
    color: #3E6046;
}

.top_box01_txt p {
    line-height: 2.1;
}


.top_box02 {
    position: relative;
    padding: 0 calc((100% - 1200px)/2) 130px;
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.top_box02_tit {
    position: relative;
    writing-mode: vertical-rl;
    font-size: 3.6rem;
    font-family: "Shippori Mincho", serif;
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff;

}

.top_box02_tit::after {
    position: absolute;
    content: "";
    width: 40px;
    height: 42px;
    background: url(images/top_box02_tit_bg.png) no-repeat;
    top: -10px;
    right: -30px;
}

.top_box02_tit span {
    font-size: 4.6rem;
    color: #3E6046;
    margin-top: 100px;
}

.top_box02_post {
    display: flex;
    justify-content: left;
    flex-wrap: wrap;
}

.top_box02_list {
    width: 400px;
    background-color: #F2F2F2;
    padding: 40px;
    text-align: center;
    border-top: 3px solid #516F59;
}

.top_box02_list:first-child {
    background-image: url(images/top_box02_list_01.png);
    background-repeat: no-repeat;
    background-position: top 20px left 20px;
    margin: 0 20px 20px 0;
}

.top_box02_list:nth-child(2) {
    background-image: url(images/top_box02_list_02.png);
    background-repeat: no-repeat;
    background-position: top 20px left 20px;
    margin: 0 0 20px 0;
}

.top_box02_list:nth-child(3) {
    background-image: url(images/top_box02_list_03.png);
    background-repeat: no-repeat;
    background-position: top 20px left 20px;
    margin: 0 20px 0 0;
}

.top_box02_list:last-child {
    background-image: url(images/top_box02_list_04.png);
    background-repeat: no-repeat;
    background-position: top 20px left 20px;
}

.top_box02_list img {
    margin-bottom: 20px;
}

.top_box02_list_tit {
    margin-bottom: 20px;
    font-size: 2.6rem;
    color: #3E6146;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
}

.top_box02_list p {
    text-align: left;
}

.top_box02 .btn_box01 {
    position: absolute;
    bottom: 130px;
}

.top_box03 {
    background: url(images/top_box03_bg.jpg) no-repeat top center;
}

.top_box03_inner {
    padding: 80px calc((100% - 1680px) /2) 130px;
}

.top_box03_tit {
    font-size: 4.0rem;
    color: #000000;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    background: url(images/top_box03_tit_bg.png) no-repeat bottom center;
}

.top_box03_post01 {
    display: flex;
    justify-content: space-between;
}

.top_box03_post02 {
    display: flex;
    justify-content: center;
}

.top_box03_post02 li:first-child {
    margin-right: 50px;
}

.top_box04 {
    position: relative;
    padding: 120px calc((100% - 1200px)/2);
    background: url(images/top_box04_bg.jpg) no-repeat bottom left;
}

.top_box04_tit {
    position: relative;
    font-size: 3.6rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    border-left: 5px solid #9FAEA3;
    padding: 0 0 0 30px;
    line-height: 50px;
    margin-bottom: 50px;
}

.top_box04_tit::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 25px;
    background-color: #516F59;
    top: 0;
    left: -5px;
}

.top_box04_post {
    display: flex;
    justify-content: space-between;
}

.top_box04_list {
    max-width: 382px;
    border: 1px solid #CCCCCC;
    padding: 10px 10px 20px 10px;
    background: #FFF;
}

.top_box04_list figure {
    width: 360px;
    height: 270px;
    margin-bottom: 15px;
}

.top_box04_list figure img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top_box04_list_tit {
    text-align: center;
    font-size: 2.0rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
}

.top_box04 .btn_box01 {
    position: absolute;
    top: 120px;
    right: calc((100% - 1200px)/2);
}


.top_box05 {
    padding: 100px 0;
    background: url(images/top_box05_bg.jpg) no-repeat bottom center;
    background-size: cover;
}

.top_box05_tit {
    font-size: 4.0rem;
    color: #FFF;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    text-align: center;
    background: url(images/top_box05_tit_bg.png) no-repeat bottom center;
    padding: 0 0 10px 0;
    margin-bottom: 50px;
}

.top_box05_post {
    display: flex;
    justify-content: center;
    padding: 0 20px;
}

.top_box05_list {
    position: relative;
    width: calc((100% - 120px) / 3);
    max-width: 480px;
    margin-bottom: 60px;
    margin-left: 120px;
}

.top_box05_list:first-child{
    margin-left: 0;
}

.top_box05_list::after {
    position: absolute;
    content: "";
    width: 50px;
    height: 100px;
    background: url(images/top_box05_list_after.png) no-repeat;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
}

.top_box05_list:first-child:after {
    content: none;
}

.top_box05_list img {
    width: 100%;
    height: auto;
}

.top_box05_list div {
    position: relative;
    background: #FFF;
    padding: 40px;
    text-align: center;
}

.top_box05_list div::before {
    position: absolute;
    content: "";
    background: url(images/top_box05_list_div_before.png) no-repeat;
    width: 20px;
    height: 20px;
    bottom: 10px;
    right: 10px;
}

.top_box05_list div::after {
    position: absolute;
    content: "";
    background: url(images/top_box05_list_div_after.png) no-repeat;
    width: 20px;
    height: 20px;
    top: 10px;
    left: 10px;
}

.top_box05_list_tit {
    font-size: 2.8rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    background: linear-gradient(transparent 70%, #CAD4CD 70%);
    display: inline-block;
    margin-bottom: 10px;
}

.top_box05_list_tit span {
    display: inline;
}

.top_box05_list_txt {
    text-align: left;
}

.top_box06 {
    padding: 100px calc((100% - 1200px)/2);
    background: url(images/top_box06_bg.jpg) no-repeat bottom center;
    background-size: cover;
}

.top_box06_tit {
    font-size: 4.0rem;
    color: #000000;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    padding-bottom: 20px;
    background: url(images/top_box03_tit_bg.png) no-repeat bottom center;
}

.accordion {
    padding: 25px;
    background: #FFF;
    margin-bottom: 20px;
}

.accordion_summary {
    display: block;
    position: relative;
    padding: 7px 60px;
    background: url(images/faq_q.png) no-repeat left top 12px;
    font-size: 2.0rem;
    font-weight: bold;
    list-style: none;
    line-height: 1.5;
    cursor: pointer;
}

.accordion_summary::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 26px;
    background-color: #516F59;
    top: 10px;
    left: 40px
}

.accordion_summary::after {
    content: "+";
    font-size: 2em;
    position: absolute;
    right: 15px;
    top: 50%;
    color: #999;
    font-weight: normal;
    text-align: center;
    transform: translateY(-50%);
    transition: 0.3s;
}

.accordion[open] .accordion_summary::after {
    content: "−";
    transition: 0.3s;
}

.accordion_answer {
    position: relative;
    margin-top: 15px;
    padding: 5px 60px 0 60px;
    background: url(images/faq_a.png) no-repeat left top 10px;
}

.accordion_answer::before {
    position: absolute;
    content: "";
    width: 1px;
    height: 26px;
    background-color: #BAA670;
    top: 10px;
    left: 40px
}

.top_box06 .btn_box01 {
    margin: 40px auto 0;
}


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

@media (min-width: 768px) and (max-width: 1800px) {
    
    .top_box01_inner {
        padding: 0 10px;
        margin-right: 30px;
    }

    #top_box01 img {
        max-width: 100%;
        height: auto;
    }

    .top_box03_post01 {
        padding: 10px;
        justify-content: space-around;
    }

    .top_box03_post01 li {
        width:calc((100% - 120px) / 3)
    }

    .top_box03_post01 li figure img {
        height: 100%;
        width: 100%;
    }

    .top_box05_list_tit {
        font-size: 2.0rem;
    }
}

@media screen and (max-width: 767px) {

    #top_box01 {
        padding: 30px 10px;
        flex-direction: column;
    }

    .top_box01_inner {
        width: 100%;
        min-width: auto;
        margin-right: 0;
    }

    .top_box01_tit {
        font-size: 2.0rem;
        margin-bottom: 10px;
    }

    .top_box01_tit span {
        font-size: 2.3rem;
    }

    .top_box02 {
        padding: 30px 10px;
        flex-direction: column;
    }

    .top_box02_tit {
        text-align: center;
        font-size: 2.0rem;
        writing-mode: horizontal-tb;
        margin-bottom: 10px;
    }

    .top_box02_tit span {
        font-size: 2.3rem;
    }

    .top_box02_tit::after {
        top: -30px;
        right: 20px;
    }

    .top_box02_post {
        margin-bottom: 20px;
        justify-content: center;
    }

    .top_box02_list_tit {
        font-size: 2.0rem;
        margin-bottom: 10px;
    }

    .top_box02_list:first-child {
        margin: 0 0 20px 0;
    }

    .top_box02_list:nth-child(3) {
        margin: 0 0 20px 0;
    }

    .top_box02 .btn_box01 {
        position: relative;
        bottom: 0;
    }

    .top_box03 {
        padding: 30px 0;
        background-size: cover;
    }

    .top_box03_inner {
        padding: 0;
    }

    .top_box03_tit {
        font-size: 2.3rem;
        margin-bottom: 10px;
    }

    .top_box03_post01 {
        flex-wrap: wrap;
        padding: 10px;
    }

    .top_box03 .mb80 {
        margin-bottom: 0;
    }

    .top_box03_post01 li {
        width: 48%;
        margin: 0 auto 10px;
    }

    .top_box03_post02 {
        flex-direction: column;
        text-align: center;
        padding: 0 10px;
    }

    .top_box03_post02 li:first-child {
        margin-right: 0;
        margin-bottom: 10px;
    }

    .top_box04 {
        padding: 30px 10px;
    }

    .top_box04_tit {
        font-size: 2.6rem;
    }

    .top_box04_post {
        flex-wrap: wrap;
        justify-content: space-around;
    }

    .top_box04_list {
        width: 48%;
        margin-bottom: 10px;
    }

    .top_box04_list figure {
        max-width: 100%;
        width: auto;
    }


    .top_box05 {
        padding: 30px 10px;
    }

    .top_box05_tit {
        font-size: 2.3rem;
    }

    .top_box05_post {
        flex-direction: column;
        justify-content: center;
    }

    .top_box05_list {
        max-width: 480px;
        width: 100%;
        margin: 0 auto 100px;
        text-align: center;
    }

    .top_box05_list:first-child {
        margin-left: auto;
    }

    .top_box05_list:last-child {
        margin-bottom: 30px;
    }

    .top_box05_list::after{
        top: 0;
        left: 50%;
        transform: translate(-50%, -100%) rotate(90deg);
    }

    .top_box05_list_tit {
        font-size: 2.0rem;
    }

    .top_box05_list div {
        padding: 10px;
        max-width: 480px;
        margin: 0 auto;
    }

    .top_box06 {
        padding: 30px 10px;
    }

    .top_box06_tit {
        font-size: 2.3rem;
        margin-bottom: 20px;
    }

}

/****************************************

news トップ用

*****************************************/

#news_box {
    position: relative;
    padding: 110px calc((100% - 1200px)/2);
}

.news_box_tit {
    position: relative;
    font-size: 3.6rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    border-left: 5px solid #9FAEA3;
    padding: 0 0 0 30px;
    line-height: 50px;
    margin-bottom: 50px;
}

.news_box_tit::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 25px;
    background-color: #516F59;
    top: 0;
    left: -5px;
}

.news_post {
    height: 260px;
    overflow: hidden;

}

.news_list {
    border-bottom: 1px solid #CCCCCC;
}

.news_list a {
    display: flex;
    align-items: center;
    background: url(images/news_list_bg.png) no-repeat right 20px center;
}

.news_list a:hover {
    text-decoration: none;
    background-color: #F2F2F2;
    background-image: url(images/news_list_bg.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
}

.date {
    width: 10%;
    font-size: 1.5rem;
    color: #AD9554;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    padding: 30px 0;
}

.news_list_tit {
    font-size: 1.6rem;
}

#news_box .btn_box01 {
    position: absolute;
    top: 120px;
    right: calc((100% - 1200px) / 2);
}


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

@media screen and (max-width: 767px) {

    #news_box {
        padding: 30px 10px;
    }

    .news_box_tit {
        font-size: 2.3rem;
        margin-bottom: 10px;
    }

    .news_list a {
        flex-direction: column;
        align-items: flex-start;
    }

    .date {
        padding: 10px 0;
    }

    .news_post {
        overflow-y: scroll;
    }

    .news_list_tit {
        padding: 0 60px 10px 0;
    }

    

}


/****************************************

content下層用

*****************************************/

/* 全ページ共通　フレックスボックス*/
.flex {
    display: flex;
    justify-content: space-between;
}

.flex_r {
    display: flex;
    justify-content: space-between;
    flex-direction: row-reverse;
}

.txt580 {
    width: 580px;
}

.txt720 {
    width: 720px;
}


@media screen and (max-width: 767px) {

    .flex,
    .flex_r {
        flex-direction: column;
    }

    #page_main img {
        margin: 10px 0;
    }

    .txt580 {
        width: 100%;
    }

    .txt720 {
        width: 100%;
    }

}

/* よくあるご質問 */

.faq_box {
    padding: 30px;
}

.faq_box:nth-child(2n) {
    background-color: #f7f7f7;
}

.faq_box dt {
    background: url(images/faq_box_dt_bg.png) no-repeat left top 30px;
    padding: 30px 0 30px 70px;
    font-size: 2.4rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    border-bottom: 2px dashed #CCC;
    letter-spacing: 0.12rem;
}

.faq_box dd {
    background: url(images/faq_box_dd_bg.png) no-repeat left top 30px;
    padding: 30px 0 30px 70px;
}

/* ご利用の流れ */

.flow_txt {
    text-align: center;
    margin-bottom: 50px;
}

.flow_txt p {
    font-size: 2.2rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    background: linear-gradient(transparent 70%, #cad4cd 70%);
    display: inline-block;
}

.flow_box {
    position: relative;
    padding: 30px 30px 30px 190px;
    border: 1px solid #748c7a;
    margin-bottom: 130px;
    min-height: 210px;
}

.flow_box::after {
    position: absolute;
    content: "";
    width: 140px;
    height: 60px;
    background: url(images/flow_box_arrow.png) no-repeat bottom center;
    bottom: -100px;
    left: 50%;
    transform: translateX(-50%);
}

.flow_box:last-child:after {
    content: none;
}

.flow_box_step {
    position: absolute;
    background: #516f59;
    font-size: 2.2rem;
    color: #FFF;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    text-align: center;
    padding: 29px 38px;
    top: 0;
    left: 0;
}

.flow_box_step span {
    font-size: 4.0rem;
    display: block;
}

.flow_box_step::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 150px;
    background: #b1beb4;
    right: -10px;
    bottom: -10px
}

.flow_box_step::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 1px;
    background: #b1beb4;
    right: -10px;
    bottom: -10px
}

.flow_box_inner {
    display: flex;
    align-items: center;
}

.flow_box_tel a {
    font-size: 3.0rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    letter-spacing: 0.06rem;
    background: url(images/flow_box_tel_bg.png) no-repeat left top 15px;
    padding: 0 0 0 25px;
    margin-right: 40px;
}

.flow_box_tel span {
    display: block;
    font-size: 1.3rem;
    padding: 0 0 0 50px;
}

.flow_box .subhead04 {
    text-align: left;
}

.flow_box .btn_box03 a {
    padding: 13px 0 15px 40px;
    background: url(images/btn_box03_bg.png) no-repeat left 10px top 20px;
}


/* 料金表 */

.orange_txt {
    color: #f95710;
    font-size: 1.8rem;
}

.price_box01 {
    background: url(images/price_box01_bg.jpg) no-repeat bottom center;
    background-size: cover;
    padding: 50px 30px;
}

.price_box01 .orange_txt {
    font-size: 1.6rem;
}

.price_box02 dl dt {
    background: linear-gradient(transparent 70%, #cad4cd 70%);
    font-size: 2.0rem;
    color: #000;
    margin-bottom: 20px;
    font-weight: bold;
    font-family: "Shippori Mincho", serif;
}


/* 事例紹介 */

.case_box {
    margin-bottom: 50px;
}

.case_box_inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.case_box_inner::after {
    position: absolute;
    content: "";
    width: 129px;
    height: 68px;
    background: url(images/case_box_arrow.png) no-repeat left top;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.case_box_inner figure {
    width: 440px;
    position: relative;
    max-height: 330px;
    overflow: hidden;
    border-radius: 10px;
}

.case_box_inner figure img {
    border-radius: 10px;
    width: 100%;
    height: auto;
}


/* お問い合わせ */

.contact_txt {
    text-align: center;
    margin-bottom: 30px;
}

.contact_txt .orange_txt {
    font-size: 1.6rem;
}

.contact_tel {
    width: 250px;
    font-size: 3.0rem;
    font-weight: bold;
    font-family: "Shippori Mincho", serif;
    background: url(images/bottom_tel_bg.png) no-repeat left top 40px;
    margin: 0 auto;
}

.policy {
    background-color: #e3e9e5;
    text-align: center;
    padding: 30px;
    margin-bottom: 30px;
}

.policy dt {
    font-size: 2.4rem;
    margin-bottom: 10px;
    font-weight: bold;
    font-family: "Shippori Mincho", serif;
}



/* 3列投稿 */

.three_column_post {
    display: flex;
    flex-wrap: wrap;
    justify-content: left;
}

.three_column_parts {
    width: 380px;
    height: auto;
    margin: 0 30px 40px 0;
}

.three_column_parts:nth-child(3n) {
    margin: 0 0 40px 0;
}

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

    /* お問い合わせ */

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

    /*  */



    /*  */

}

@media screen and (max-width: 767px) {

    /* 当社を選ぶ理由 */

    

    /* よくあるご質問 */

    .faq_box {
        padding: 30px 10px;
    }

    .faq_box dt {
        background-size: 30px;
        background-position: left top 5px;
        padding: 0 0 20px 40px;
        font-size: 1.8rem;
    }

    .faq_box dd {
        background-size: 30px;
        padding: 10px 0 0 40px;
        background-position: left top 10px;
    }

    /* ご利用の流れ */

    .flow_txt p {
        font-size: 1.8rem;
    }

    .flow_box {
        position: relative;
        padding: 0;
    }

    .flow_box_step {
        position: static;
        padding: 10px
    }

    .flow_box_step::before,.flow_box_step::after {
        content: none;
    }

    .flow_box_txt {
        padding: 30px 10px;
    }

    .flow_box_inner {
        flex-direction: column;
    }


    /* 料金表 */

    .price_box01 {
        padding: 30px 10px;
    }

    .price_box02 dl dt {
        font-size: 1.8rem;
    }


    /* 事例紹介 */

    .case_box_inner {
        flex-direction: column;
    }

    .case_box_inner figure:first-child img {
        margin-bottom: 100px!important;
    }

    .case_box_inner::after {
        transform: translate(-50%, 0) rotate(90deg);
        background-size: 50%;
    }


    /* お問い合わせ */

    .contact_txt {
        text-align: left;
    }

    .contact_tel {
        padding: 0 0 0 20px;
    }

    .policy dd {
        text-align: left;
    }


    /* 3列投稿 */

    .three_column_parts {
        margin: 0 0 30px 0;
    }



}

/****************************************

single.php

*****************************************/

h1.single_headline {
    padding-bottom: 15px;
    margin-bottom: 45px;
    font-size: 2.0rem;
    line-height: 1.5;
    text-align: center;
    border-bottom: 1px solid #DDD;
}

#single_box img {
    max-width: 1200px;
    padding: 10px 0;
    height: auto;
}

.nav-below {
    margin: 50px 0;
    font-size: 100%;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

.nav-below a {
    margin: 0 5px;
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {

    h1.single_headline {
        margin-bottom: 30px;
    }

    #single_box img {
        width: auto;
        max-width: 100%;
        padding: 10px 0px;
    }
}



/****************************************

投稿　pager設定

*****************************************/

.pager {
    clear: both;
    text-align: center;
    padding: 20px 0;
}

a.page-numbers,
.pager .current {
    background: rgba(0, 0, 0, 0.02);
    border: solid 1px rgba(0, 0, 0, 0.1);
    border-radius: 5px;
    padding: 5px 8px;
    margin: 0 2px;
    font-size: 1.4rem;
}

.pager .current {
    background: rgba(0, 0, 0, 1);
    border: solid 1px rgba(0, 0, 0, 1);
    color: rgba(255, 255, 255, 1);
}


@media screen and (max-width: 767px) {

    .pager {
        padding: 30px 0;
    }
}



/****************************************

sp_footer

*****************************************/

@media screen and (max-width: 767px) {


    #sp_bnr {
        display: flex;
        justify-content: space-between;
        position: fixed;
        width: 100%;
        height: 60px;
        bottom: 0;
        left: 0;
        z-index: 4;
    }

    #sp_bnr div {
        position: relative;
        width: 34%;
        background: url(images/top_box05_bg.jpg);
        border-top: 1px solid #FFF;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    #sp_bnr div:nth-child(3) {
        background: #3F3933;
    }

    #sp_bnr div:not(:last-child) {
        border-right: 1px solid #FFF;
    }

    #sp_bnr div img {
        width: auto;
        margin-bottom: 7px;
    }

    #sp_bnr div:nth-child(2) img {
        width: 20px;
    }

    #sp_bnr div p {
        color: #FFF;
        font-size: 1.2rem;
        line-height: 1;
        text-align: center;
    }

    #sp_bnr a {
        position: absolute;
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .copyright {
        padding: 25px 0 80px;
        text-align: center;
        color: #FFF;
        font-size: 1.2rem;
    }

    .sp_footer_content {
        margin: 30px 0;
        padding: 30px 10px 0;
        border-top: 1px dotted #999;
    }

    .site_map {
        display: none;
    }
}


/****************************************

pc_footer

*****************************************/

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

    #sp_bnr {
        display: none;
    }

    .site_map {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        padding: 40px 0 20px;
        border-bottom: 1px solid #FFFFFF25;
    }

    .site_map li {
        width: 20%;
        margin-bottom: 20px;
    }

    .site_map a {
        color: #FFF;
        font-size: 1.5rem;
        background: url(images/site_map_bg.png) no-repeat left top 5px;
        padding: 2px 0 2px 25px;

    }

}


#footer {
    position: relative;
    width: 100%;
    background: url(images/footer_bg.png) top center;
    padding: 0 calc((100% - 1200px)/2);
}

.pagetop {
    position: fixed;
    z-index: 4;
    right: 30px;
    bottom: 50px;
}

.footer_content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 70px 0;
}

.footer_logo {
    border-right: 1px solid #FFFFFF25;
    padding: 0 40px 0 0;
}

.footer_txt,
.footer_tel span {
    font-size: 1.5rem;
    color: #fff;
}

.footer_contact {
    border: 1px solid #FFF;
    padding: 18px;
}

.footer_tel,
.footer_fax {
    font-size: 2.0rem;
    font-weight: bold;
    font-family: "Shippori Mincho", serif;
    color: #FFF;
}

.copyright_area {
    text-align: center;
    padding: 12px 0;
}

.copyright_area p {
    color: #FFF;
    font-size: 1.5rem;
}


@media screen and (max-width: 767px) {

    #footer {
        background: url(images/top_box05_bg.jpg);
    }

    .pagetop {
        display: none!important;
    }

    .footer_content {
        flex-direction: column;
        padding: 30px 10px;
    }

    .footer_logo {
        width: 50%;
        border-right: none;
        margin-bottom: 20px;
        padding: 0;
    }

    .footer_txt {
        margin-bottom: 20px;
    }

    .footer_tel span {
        display: block;
    }
}


/****************************************

sidebar/aside

*****************************************/

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

    .bottom_box_wrapper {
        background: url(images/bottom_box_wrapper_bg.png) no-repeat bottom center;
        background-size: cover;
    }

    .bottom_box {
        padding: 67px calc((100% - 840px)/2);
        text-align: center;
        background: url(images/bottom_box_bg.png) no-repeat bottom center;

    }

    .bottom_box_tit {
        font-size: 3.0rem;
        color: #000;
        font-family: "Shippori Mincho", serif;
        border-bottom: 3px solid #516F59;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .red_txt {
        color: #D80000;
    }

    .bottom_box_inner {
        display: flex;
        justify-content: space-between;
    }

    .bottom_box_inner dl {
        position: relative;
    }

    .bottom_box_inner dl dt {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: #516F59;
        border-radius: 21px;
        color: #FFF;
        padding: 8px 35px;
        white-space: nowrap
    }

    .bottom_box_inner dl dd {
        width: 400px;
        background: #FFF;
        padding: 30px 0 20px;
    }

    .bottom_box_inner dl:nth-child(2) dd {
        padding: 50px 0 34px;
    }

    .bottom_box_inner dl:nth-child(2) dd a {
        font-size: 2.0rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
    }

    .bottom_tel {
        font-size: 3.0rem;
        font-weight: bold;
        background: url(images/bottom_tel_bg.png) no-repeat left 60px top 20px;
        line-height: 1.65;
    }

    .bottom_tel a {
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
    }

    .bottom_tel span {
        display: block;
        font-size: 1.4rem;
    }

    .bottom_mail {
        background: url(images/bottom_mail_bg.png) no-repeat top 9px left 80px;
        padding: 0 0 0 60px;
    }
}

@media screen and (max-width: 767px) {

    .bottom_box_wrapper {
        background: url(images/bottom_box_wrapper_bg.png) no-repeat bottom center;
        background-size: cover;
    }

    .bottom_box {
        padding: 30px 10px;
        text-align: center;
        background: url(images/bottom_box_bg.png) no-repeat bottom center;
        background-size: cover;

    }

    .bottom_box_tit {
        font-size: 2.0rem;
        color: #000;
        font-family: "Shippori Mincho", serif;
        border-bottom: 3px solid #516F59;
        padding-bottom: 20px;
        margin-bottom: 40px;
    }

    .bottom_box_txt {
        text-align: left;
    }

    .red_txt {
        color: #D80000;
    }

    .bottom_box_inner dl {
        position: relative;
        margin-bottom: 30px;
    }

    .bottom_box_inner dl dt {
        position: absolute;
        top: -20px;
        left: 50%;
        transform: translateX(-50%);
        background: #516F59;
        border-radius: 21px;
        color: #FFF;
        padding: 8px 35px;
        white-space: nowrap
    }

    .bottom_box_inner dl dd {
        width: 100%;
        background: #FFF;
        padding: 20px 0;
    }

    .bottom_box_inner dl:nth-child(2) dd {
        padding: 50px 0 34px;
    }

    .bottom_box_inner dl:nth-child(2) dd a {
        font-size: 2.0rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
        background: url(images/bottom_mail_bg.png) no-repeat top 6px left 0px;
        padding-left: 40px;
    }

    .bottom_tel {
        font-size: 3.0rem;
        font-weight: bold;
        font-family: "Shippori Mincho", serif;
    }

    .bottom_tel a {
        font-weight: bold;
        background: url(images/bottom_tel_bg.png) no-repeat left 0px top 15px;
        padding-left: 20px;
    }

    .bottom_tel span {
        display: block;
        font-size: 1.4rem;
    }


}


/****************************************

タイトル

*****************************************/

/* 下層ページ共通見出し */

.headline {
    font-size: 3.0rem;
    color: #000;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    text-align: center;
    background: url(images/headline_bg.png) no-repeat bottom center;
    padding-bottom: 20px;
    margin-bottom: 60px;
}

.subhead01 {
    position: relative;
    font-size: 2.4rem;
    font-weight: bold;
    color: #000;
    font-family: "Shippori Mincho", serif;
    border-left: 5px solid #9FAEA3;
    padding: 0 0 0 30px;
    line-height: 35px;
    margin-bottom: 50px;
}

.subhead01::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 50%;
    background-color: #516F59;
    top: 0;
    left: -5px;
}

.subhead02 {
    position: relative;
    font-size: 2.4rem;
    font-weight: bold;
    color: #000;
    font-family: "Shippori Mincho", serif;
    border-left: 5px solid #9FAEA3;
    padding: 0 0 0 30px;
    line-height: 50px;
    margin-bottom: 50px;
    line-height: 1.5;
}

.subhead02::before {
    position: absolute;
    content: "";
    width: 5px;
    height: 50%;
    background-color: #516F59;
    top: 0;
    left: -5px;
}

.subhead02::after {
    position: absolute;
    content: "";
    border-bottom: 2px dashed #ccc;
    width: 100%;
    bottom: -15px;
    left: 0;
}

.subhead03 {
    font-size: 2.2rem;
    color: #344539;
    margin-bottom: 30px;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
}

.subhead03 .orange {
    color: #FFF;
    background: #f3aa1e;
    padding: 10px 40px;
    margin-right: 20px;
    border-radius: 15px;
}

.subhead03 .fs30 {
    font-size: 3.0rem;
}

.subhead04 {
    font-size: 2.4rem;
    color: #000000;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 1px dashed #ccc;
}

@media screen and (max-width: 767px) {

    .headline {
        font-size: 2.0rem;
        margin-bottom: 20px;
    }

    .subhead01 {
        font-size: 1.8rem;
        line-height: normal;
        margin-bottom: 20px;
    }

    .subhead02 {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .subhead03 {
        font-size: 1.6rem;
        margin-bottom: 20px;
    }

    .subhead03 .orange {
        width: 50%;
        display: block;
        margin-right: 0;
        padding: 10px;
        text-align: center;
        margin-bottom: 10px;
    }

    .subhead03 .fs30 {
        font-size: 2.0rem;
    }

    .subhead04 {
        font-size: 1.6rem;
    }

}


/****************************************

共通div

*****************************************/

.mb10 {
    margin-bottom: 10px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb30 {
    margin-bottom: 30px;
}

.mb40 {
    margin-bottom: 40px;
}

.mb50 {
    margin-bottom: 50px;
}

.mb60 {
    margin-bottom: 60px;
}

.mb70 {
    margin-bottom: 70px;
}

.mb80 {
    margin-bottom: 80px;
}

.mb90 {
    margin-bottom: 90px;
}

.mb100 {
    margin-bottom: 100px;
}

@media screen and (max-width: 767px) {

    .mb40 {
        margin-bottom: 30px;
    }

    .mb50 {
        margin-bottom: 40px;
    }

    .mb60,
    .mb70,
    .mb80,
    .mb90,
    .mb100 {
        margin-bottom: 50px;
    }

    .mb10_sp {
        margin-bottom: 10px;
    }

    .mb20_sp {
        margin-bottom: 20px;
    }

    .mb30_sp {
        margin-bottom: 30px;
    }

}

/****************************************

テーブル

*****************************************/

/* 料金表 */

.price_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
}

.price_table th {
    width: 50%;
    line-height: 1.5;
    padding: 13px 20px;
    color: #000;
    font-size: 1.6rem;
    font-weight: normal;
    border: 1px solid #344539;
    text-align: center;
    vertical-align: text-top;
    background-color: #c1e6cb;
}

.price_table td {
    width: 50%;
    line-height: 1.5;
    padding: 13px 20px;
    color: #000;
    font-size: 1.6rem;
    border: 1px solid #344539;
    text-align: center;
    vertical-align: text-top;
    background-color: #FFF;
}


/* 会社情報 */

.overview_table {
    width: 100%;
    border-collapse: collapse;
}

.overview_table th {
    width: 33%;
    line-height: 1.5;
    padding: 20px 40px;
    color: #344539;
    font-size: 1.8rem;
    font-weight: normal;
    border: 1px solid #344539;
    text-align: left;
    vertical-align: text-top;
    background-color: #c1e6cb;
}

.overview_table td {
    width: 67%;
    line-height: 1.5;
    padding: 20px 40px;
    color: #333333;
    font-size: 1.8rem;
    border: 1px solid #344539;
    text-align: left;
    vertical-align: text-top;
    background-color: #FFF;
}

.overview_table td p {
    font-size: 1.8rem;
}

.overview_table td a {
    text-decoration: underline;
}

@media screen and (max-width: 767px) {

    .overview_table th,
    .price_table th {
        display: block;
        width: 100%;
        padding: 10px 13px;
        border-bottom: none;
    }

    .overview_table td,
    .price_table td {
        display: block;
        width: 100%;
        padding: 10px 13px;
    }

    .overview_table tr:not(:last-child) td,
    .price_table tr:not(:last-child) td {
        margin-bottom: 15px;
    }

}

/****************************************

P

*****************************************/

/* 改行 */
.line_break {
    padding-top: 20px;
}

@media print,
screen and (min-width: 768px) {
    .br-pc {
        display: block;
    }

    .br-sp {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .br-pc {
        display: none;
    }

    .br-sp {
        display: block;
    }
}


/****************************************

ボタン

*****************************************/

/* 緑ボタン */

.btn_box01 {
    position: relative;
    width: 260px;
    background-color: #516F59;
    background-image: url(images/btn_box01_arrow.png);
    background-repeat: no-repeat;
    background-position: top 26px right 20px;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn_box01 a {
    display: inline-block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 14px 0 17px 20px;
    color: #FFF;
    font-size: 1.6rem;
    font-family: "Shippori Mincho", serif;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.btn_box01::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 60px;
    background: #A8B7AC;
    right: -10px;
    bottom: -10px
}

.btn_box01::before {
    position: absolute;
    content: "";
    width: 260px;
    height: 1px;
    background: #A8B7AC;
    right: -10px;
    bottom: -10px
}

.btn_box01:hover {
    background-color: #BAA670;
    background-position: top 26px right 10px;
}

.btn_box01 a:hover {
    color: #FFF;
}

/* ピンクボタン */

.btn_box02 {
    position: relative;
    width: 260px;
    background-color: #000000;
    background-image: url(images/btn_box01_arrow.png);
    background-repeat: no-repeat;
    background-position: top 26px right 20px;
    margin: 0 auto;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn_box02 a {
    display: inline-block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    padding: 14px 0 17px 20px;
    color: #FFF;
    font-size: 1.6rem;
    font-family: "Shippori Mincho", serif;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.btn_box02::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 60px;
    background: #000000;
    right: -10px;
    bottom: -10px
}

.btn_box02::before {
    position: absolute;
    content: "";
    width: 260px;
    height: 1px;
    background: #000000;
    right: -10px;
    bottom: -10px
}

.btn_box02:hover {
    background-color: #BAA670;
    background-position: top 26px right 10px;
}

.btn_box02 a:hover {
    color: #FFF;
}

/*枠ボタン*/

.btn_box03 {
    position: relative;
    width: 260px;
    height: 60px;
    border: 1px solid #5d6a61;
    text-align: center;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
}

.btn_box03 a {
    display: inline-block;
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    color: #000;
    font-size: 1.8rem;
    font-family: "Shippori Mincho", serif;
    font-weight: bold;
    text-decoration: none;
    -webkit-transition: .3s;
    -o-transition: .3s;
    transition: .3s;
    -webkit-transition-delay: .2s;
    -o-transition-delay: .2s;
    transition-delay: .2s;
}

.btn_box03 a:hover {
    background-color: #516f59;
    color: #FFF;
}

@media screen and (max-width: 767px) {

    .btn_box01 {
        margin: 0 auto 30px;
    }

}

/****************************************

Contact Form7

*****************************************/

.wpcf7 {
    width: 100%;
}

.form_row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 30px;
    padding: 0 20px 30px 20px;
    border-bottom: 1px dotted #AAA;
}

.form_row .form_label {
    width: 300px;
}

.form_row .form_label .required {
    display: inline-block;
    color: #FFF;
    font-weight: normal;
    font-size: 1.2rem;
    padding: 2px 5px;
    background: #CC0000;
    margin-right: 10px;
    border-radius: 3px;
    line-height: initial;
}

.form_row .form_label .any {
    display: inline-block;
    color: #797979;
    font-weight: normal;
    font-size: 1.2rem;
    padding: 2px 5px;
    background: #D7D7D7;
    margin-right: 10px;
    border-radius: 3px;
    line-height: initial;
}

.form_row .form_input {
    width: calc(100% - 300px);
}

.wpcf7-form-control {
    width: 100%;
}

.wpcf7-form input {
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 3px;
}

.form_input_radio input {
    margin-bottom: 5px;
}

.wpcf7-form textarea {
    padding: 10px;
    border: 1px solid #CCC;
    border-radius: 3px;
}

.form_row .form_input_post {
    width: 180px;
}

.form_row .form_input_post_txt {
    color: #B20000;
    font-weight: normal;
    font-size: 1.3rem;
}

.form_row .last_row {
    padding-bottom: 0;
    border-bottom: none;
}

.tc {
    text-align: center;
}

.tc input[type=submit] {
    cursor: pointer;
    width: 360px;
    max-width: 100%;
    padding: 18px;
    border: 1px solid #AAA;
    border-radius: 8px;
    background-color: #5c5c5c;
    color: #fff;
    font-size: 1.8rem;
    text-align: center;
    margin: 10px auto 0;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.wpcf7 .tc input[type=submit]:hover {
    background-color: #CCC;
    color: #333;
    -webkit-transition: all .25s;
    -o-transition: all .25s;
    transition: all .25s;
}

.wpcf7-response-output {
    font-size: 1.6rem;
}

@media screen and (max-width: 767px) {

    .form_row {
        flex-direction: column;
        padding: 0 0 20px 0;
    }

    .form_row .form_label {
        width: 100%;
        margin-bottom: 5px;
    }

    .form_row .form_input {
        width: 100%;
    }

}


/****************************************

clearfix

*****************************************/
.clearfix:after {
    content: ".";
    display: block;
    height: 0;
    font-size: 0;
    clear: both;
    visibility: hidden;
}

.clearfix {
    display: inline-block;
}

/* Hides from IE Mac */
* html .clearfix {
    height: 1%;
}

.clearfix {
    display: block;
}

/* End Hack */



/****************************************

追加用

*****************************************/