@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Kosugi+Maru");
@import url("https://fonts.googleapis.com/css?family=Kosugi+Maru|M+PLUS+Rounded+1c");
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
code,
cite,
del,
dfn,
em,
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,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline;
}

html {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

caption,
th,
td {
    text-align: left;
    font-weight: normal;
    vertical-align: middle;
}

q,
blockquote {
    quotes: none;
}

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

a img {
    border: none;
}

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


/* 汎用クラス */

[class^="mark"] {
    padding-left: 15px;
    background: no-repeat left .5em;
}

.mark1 {
    background-image: url("../images/share/mark_1.gif");
}

.mark2 {
    background-image: url("../images/share/mark_2.gif");
}

.mark3 {
    background-image: url("../images/share/mark_3.gif");
}

.mark4 {
    background-image: url("../images/share/mark_4.gif");
}

.mark5 {
    background-image: url("../images/share/mark_5.gif");
}

.opacity {
    opacity: 0.6;
    -moz-opacity: 0.6;
    filter: alpha(opacity=60);
    -ms-filter: "alpha(opacity=60)";
}

.inline_block {
    display: inline-block;
    *display: inline;
    *zoom: 1;
}

.table_cell {
    display: table-cell;
    *display: inline;
    *zoom: 1;
    vertical-align: middle;
}

.fr,
.imgR {
    float: right;
    margin-left: 10px;
}

.fl,
.imgL {
    float: left;
    margin-right: 10px;
}

.btn {
    display: block;
    text-decoration: none;
}

.imgC,
.tC,
.btn {
    text-align: center;
}

.imgC,
.blkC {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.tR,
.sign {
    text-align: right;
}

.ts_none {
    -webkit-text-shadow: none !important;
    -moz-text-shadow: none !important;
    -ms-text-shadow: none !important;
    -o-text-shadow: none !important;
    text-shadow: none !important;
}

.bs_none {
    -webkit-box-shadow: none !important;
    -moz-box-shadow: none !important;
    -ms-box-shadow: none !important;
    -o-box-shadow: none !important;
    box-shadow: none !important;
}

a:hover {
    opacity: 0.8;
}


/* clearfix */

.clearfix {
    *zoom: 1;
}

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


/*----------------------------------------------------
	#animation
----------------------------------------------------*/

@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeinright {
    0% {
        opacity: 0;
        transform: translate(10px, 0px);
    }
    30% {
        opacity: 0;
        transform: translate(10px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes fadeinright {
    0% {
        opacity: 0;
        transform: translate(10px, 0px);
    }
    30% {
        opacity: 0;
        transform: translate(10px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes fadeinleft {
    0% {
        opacity: 0;
        transform: translate(-10px, 0px);
    }
    30% {
        opacity: 0;
        transform: translate(-10px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes fadeinleft {
    0% {
        opacity: 0;
        transform: translate(-10px, 0px);
    }
    30% {
        opacity: 0;
        transform: translate(-10px, 0px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes fadeindown {
    0% {
        opacity: 0;
        transform: translate(0px, -10px);
    }
    30% {
        opacity: 0;
        transform: translate(0px, -10px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes fadeindown {
    0% {
        opacity: 0;
        transform: translate(0px, -10px);
    }
    30% {
        opacity: 0;
        transform: translate(0px, -10px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@-webkit-keyframes fadeinup {
    0% {
        opacity: 0;
        transform: translate(0px, 10px);
    }
    30% {
        opacity: 0;
        transform: translate(0px, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes fadeinup {
    0% {
        opacity: 0;
        transform: translate(0px, 10px);
    }
    30% {
        opacity: 0;
        transform: translate(0px, 10px);
    }
    100% {
        opacity: 1;
        transform: translate(0px, 0px);
    }
}

@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    3% {
        transform: rotate(-5deg);
    }
    6% {
        transform: rotate(0deg);
    }
    9% {
        transform: rotate(-5deg);
    }
    12% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes rotate2 {
    0% {
        transform: rotate(0deg);
    }
    3% {
        transform: rotate(5deg);
    }
    6% {
        transform: rotate(0deg);
    }
    9% {
        transform: rotate(5deg);
    }
    12% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@font-face {
    font-family: "Yu Gothic";
    src: local("Yu Gothic Medium");
    font-weight: 400;
}

@font-face {
    font-family: "Yu Mincho";
    src: local("Yu Mincho Medium");
}

html,
body {
    height: 100%;
    width: 100%;
    max-width: 100%;
}

html {
    font-size: 62.5%;
}

body {
    background: #f9fbf6;
    overflow-x: hidden;
    color: #000;
    line-height: 1.4;
    -webkit-text-size-adjust: 100%;
    font-size: 15px;
    font-size: 1.5em;
    font-family: "arial", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
}

@media only screen and (max-width: 750px) {
    body {
        letter-spacing: .5px;
    }
}

body.b-fixed {
    position: fixed;
    width: 100%;
}

body,
* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

p {
    font-size: 15px;
    line-height: 1.75;
}

@media only screen and (max-width: 750px) {
    p {
        line-height: 1.7;
        font-size: 13px;
    }
}

a {
    color: #4f6f1a;
    outline: none;
    cursor: pointer;
    text-decoration: none;
}

a:hover {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

a:hover img {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
}

input[type="text"],
button,
textarea,
select {
    font-family: "arial", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
    outline: none;
}

button,
input[type="submit"] {
    font-family: "arial", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
    -webkit-appearance: none;
    border-radius: 0;
    border: 0;
    cursor: pointer;
}

img {
    vertical-align: bottom;
    max-width: 100%;
    -webkit-backface-visibility: hidden;
}

figure img {
    width: 100%;
}

@media only screen and (max-width: 750px) {
    img {
        max-width: 100%;
        height: auto;
    }
    figure img {
        width: 100%;
    }
}

.animation {
    opacity: 0;
}


/*----------------------------------------------------
	共通
----------------------------------------------------*/

#wrapper {
    font-size: 14px;
    width: 100%;
}


/* 
#wrapper main {
    background: url("../images/common/il_landscape.png") no-repeat bottom center;
} */

@media only screen and (max-width: 750px) {
    #wrapper {
        padding-top: 72px;
    }
}

@media screen and (min-width: 1024px) {
    .sp {
        display: none!important;
    }
}

@media screen and (max-width: 1024px) {
    .pc {
        display: none!important;
    }
}

.inner {
    margin: 0 auto;
    max-width: 1200px;
}

.inner .sec_cmn_heading {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 30px;
    letter-spacing: 2px;
    margin-bottom: 80px;
}


/* .inner .sec_cmn_heading:before {
    content: "“";
}

.inner .sec_cmn_heading:after {
    content: "”";
} */

.inner .sec_cmn_heading>span {
    display: inline-block;
    position: relative;
}

.inner .sec_cmn_heading>span:after {
    content: "";
    display: block;
    width: 160px;
    height: 19px;
    background: url("../images/common/bg_dot.png") repeat;
    position: absolute;
    bottom: -24px;
    left: -10px;
}

@media only screen and (max-width: 750px) {
    .inner .sec_cmn_heading>span:after {
        background-size: 5px auto;
        height: 14px;
        bottom: -16px;
        width: 80px;
        margin: auto;
        left: 0;
        right: 0;
    }
}

@media only screen and (max-width: 750px) {
    .inner .sec_cmn_heading {
        font-size: 23px;
        margin: 0px 0 30px;
        letter-spacing: 1px;
        text-align: center;
    }
}

@media only screen and (max-width: 376) {
    .inner .sec_cmn_heading {
        font-size: 18px;
    }
}

@media only screen and (max-width: 1240px) {
    .inner {
        padding: 0px 20px;
    }
}

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

@media only screen and (max-width: 750px) {
    .box_flex {
        display: block;
    }
}

@media (min-width: 750px) {
    a[href*="tel:"] {
        pointer-events: none;
        cursor: default;
        text-decoration: none;
    }
}

.ofi {
    object-fit: cover;
    font-family: 'object-fit: cover;';
    height: 300px;
}

.breadcrumbs_wrap p {
    text-align: right;
    font-size: 12px;
    padding-top: 20px;
}

.breadcrumbs_wrap.bg-w {
    background-color: #fff;
}

.breadcrumbs_wrap.bg-b {
    background-color: #f4fafc;
}


/* 固定バナー */

.fixed_bnrs {
    display: block;
    position: fixed;
    top: 110px;
    right: 0;
    z-index: 1001;
}

.fixed_bnrs_sp {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1001;
}

.fixed_bnrs_sp ul li:nth-child(1) {
    background: #10631e;
}

.fixed_bnrs_sp ul li:nth-child(2) {
    background: #e05d73;
}

.fixed_bnrs_sp ul li {
    text-align: center;
    line-height: 35px;
    width: 50%;
    float: left;
}

.fixed_bnrs_sp img {
    vertical-align: middle;
}

#fixed_tel {
    display: none;
    position: fixed;
    left: 12px;
    bottom: 47px;
    z-index: 1002;
}

@media (max-width: 750px) {
    footer {
        padding-bottom: 60px;
    }
    .fixed_bnrs {
        display: none;
    }
}


/*----------------------------------------------------
	#header
----------------------------------------------------*/

#header_top {
    background: #fff;
}

#header_top .inner {
    align-items: center;
    display: flex;
    justify-content: space-between;
    height: 79px;
}

@media only screen and (max-width: 750px) {
    #header_top .inner {
        height: auto;
        padding: 0 10px;
    }
}

#header_top .logo {
    position: relative;
}

#header_top .logo .header_txt {
    color: #9e9d9d;
    font-size: 10px;
    font-style: italic;
    position: absolute;
    left: 100px;
    white-space: nowrap;
    top: 5px;
}

@media only screen and (max-width: 750px) {
    #header_top .logo .header_txt {
        font-size: 8px;
        position: relative;
        left: 0;
        top: 0;
        margin-bottom: 4px;
    }
    #header_top .logo img {
        width: 160px;
        height: auto;
    }
}

#header_top .wrap_request {
    margin-left: auto;
    margin-right: 40px;
    position: relative;
    height: 79px;
    padding-top: 15px;
}

@media only screen and (max-width: 750px) {
    #header_top .wrap_request {
        display: none;
    }
}

#header_top .wrap_request:before {
    content: "";
    width: 115px;
    height: 76px;
    background: url("../images/common/ph_book.png") no-repeat;
    display: block;
    position: absolute;
    bottom: 0;
    left: -75px;
}

#header_top .wrap_request .btn_request {
    font-size: 14px;
    background: #fff;
    border: 1px solid #0e3092;
    border-radius: 17px;
    display: block;
    text-align: center;
    width: 240px;
    padding: 8px 16px 4px;
}

#header_top .wrap_request .btn_request span {
    font-size: 12px;
    text-decoration: underline;
}

#header_top .head_contact {
    color: #0f3965;
    font-weight: bold;
    text-align: center;
    padding: 4px 0 4px 60px;
    position: relative;
    background: url("../images/common/ph_tel.png") no-repeat left bottom;
}

@media only screen and (max-width: 1024px) {
    #header_top .head_contact {
        display: none;
    }
}

#header_top .head_contact p {
    font-size: 14px;
}

#header_top .head_contact .open {
    margin-top: 4px;
    font-size: 12px;
}

#header {
    position: relative;
    z-index: 100;
    -webkit-transition: all 1.2s ease;
    -moz-transition: all 1.2s ease;
    -ms-transition: all 1.2s ease;
    -o-transition: all 1.2s ease;
    transition: all 1.2s ease;
}

#header.scrolling {
    opacity: 0;
}

@media only screen and (max-width: 1024px) {
    #header.scrolling {
        opacity: 1;
    }
    #header {
        background-color: #fff;
    }
}

#header.scrolled {
    opacity: 1;
    /* background: #f9fbf6; */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
}

#header .header_menu {
    background: #fff;
    display: flex;
    align-items: center;
}

@media only screen and (max-width: 1480px) {
    #header .header_menu {
        padding: 0;
    }
}

@media only screen and (max-width:1024px) {
    #header .header_menu {
        background: transparent;
        position: absolute;
        right: 0;
        top: 10px;
    }
}

#header h1 {
    font-size: 10px;
}

#header .head-logo {
    margin-right: auto;
}

@media only screen and (max-width: 1480px) {
    #header .head-logo {
        padding-left: 10px;
    }
}

#header .nav-pc {
    width: 100%;
}

#header .gnavi {
    padding-left: 20px;
}

#header .gnavi>ul {
    display: flex;
}

#header .gnavi>ul>li {
    flex: 1;
    position: relative;
    line-height: 1.2;
}

#header .gnavi>ul>li {
    color: #616161;
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: 1.6rem;
    height: 48px;
    position: relative;
    text-align: center;
    /* border-left: 1px solid #ddd; */
}


/* #header .gnavi > ul > li:last-child{
	border-right: 1px solid #ddd;
} */

#header .gnavi>ul>li:hover {
    background: #4f6f1a;
    color: #fff;
}

#header .gnavi>ul>li a:hover {
    color: #fff;
}

#header .gnavi>ul>li>a {
    color: #616161;
    display: flex;
    width: 100%;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    font-size: 1.6rem;
    height: 38px;
    position: relative;
    text-align: center;
}

@media only screen and (max-width: 768px) {
    #header .gnavi>ul>li>a {
        padding: 0 10px;
        font-size: 13px;
    }
    #header .gnavi>ul>li>a span {
        font-size: 11px;
    }
}

#header .gnavi .dwn_list {
    display: none;
    position: absolute;
    left: 0px;
    right: 0px;
    top: 100%;
}

#header .gnavi .dwn_list li {
    background: #0e3092;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

#header .gnavi .dwn_list li a {
    color: #fff;
    padding: 10px 12px;
    display: block;
    font-size: 13px;
    text-align: center;
    min-width: 100px;
    white-space: nowrap;
}

#header .gnavi .dwn_list li a:hover {
    -webkit-transition: all 0.2s ease;
    -moz-transition: all 0.2s ease;
    -ms-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    background: rgba(255, 255, 255, 0.2);
}

#header #nav-content {
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    /*左に隠しておく*/
}

@media only screen and (max-width: 1024px) {
    #header {
        padding-top: 10px;
        padding-bottom: 8px;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        /*チェックが入ったらもろもろ表示*/
    }
    #header .head-logo .logo {
        max-width: 180px;
    }
    #header .nab-sp {
        margin-left: auto;
    }
    #header #nav-drawer {
        position: relative;
    }
    #header .nav-unshown {
        display: none;
    }
    #header #nav-open {
        display: inline-block;
        width: 54px;
        height: 54px;
        vertical-align: middle;
        padding-top: 16px;
        padding-left: 12px;
    }
    #header #nav-open span:before {
        bottom: -8px;
    }
    #header #nav-open span:after {
        bottom: -16px;
    }
    #header #nav-open span,
    #header #nav-open span:before,
    #header #nav-open span:after {
        position: absolute;
        height: 3px;
        width: 25px;
        border-radius: 3px;
        background: #555;
        display: block;
        content: '';
        cursor: pointer;
    }
    #header #nav-close {
        display: none;
        position: fixed;
        z-index: 99;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: black;
        opacity: 0;
        transition: .3s ease-in-out;
    }
    #header #nav-close2 {
        display: none;
        position: fixed;
        z-index: 999999;
        top: 15px;
        right: 0;
        width: 54px;
        height: 54px;
        vertical-align: middle;
        opacity: 0;
        transition: .3s ease-in-out;
    }
    #header #nav-close2 span {
        position: relative;
    }
    #header #nav-close2 span:before,
    #header #nav-close2 span:after {
        position: absolute;
        height: 3px;
        width: 28px;
        top: 28px;
        left: 10px;
        border-radius: 3px;
        background: #555;
        display: block;
        content: '';
        cursor: pointer;
    }
    #header #nav-close2 span:before {
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
    }
    #header #nav-close2 span:after {
        -moz-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -webkit-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    #header #nav-content {
        overflow: auto;
        position: fixed;
        top: 0;
        right: 0;
        z-index: 9999;
        width: 90%;
        max-width: 280px;
        height: 100%;
        padding-top: 62px;
        background: #fff;
        transition: .3s ease-in-out;
        -webkit-overflow-scrolling: touch;
        overflow-scrolling: touch;
    }
    #header #nav-content .wrap_nav_content {
        min-height: 100%;
        height: auto;
        padding-bottom: 50px;
    }
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li {
        border-top: 1px solid #eee;
    }
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li .tgl,
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li>a {
        color: #0e3092;
        display: block;
        font-size: 16px;
        line-height: 1.3;
        padding: 12px 16px;
    }
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li .tgl span,
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li>a span {
        font-size: 12px;
        color: #000;
        display: block;
    }
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li .tgl {
        position: relative;
    }
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li .tgl:after {
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-bottom: 1px solid #0e3092;
        border-right: 1px solid #0e3092;
        content: "";
        display: block;
        height: 6px;
        position: absolute;
        right: 16px;
        margin-top: -6px;
        width: 6px;
        top: 50%;
    }
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li .tgl.active:after {
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li.nav_entry {
        background: #ebeb27;
    }
    #header #nav-content .wrap_nav_content ul:not(.tgl_list)>li.nav_entry a {
        color: #fff;
        padding: 16px;
    }
    #header #nav-content .wrap_nav_content .tgl_list {
        display: none;
        background: #0e3092;
    }
    #header #nav-content .wrap_nav_content .tgl_list li {
        border-top: 1px solid rgba(255, 255, 255, 0.25);
    }
    #header #nav-content .wrap_nav_content .tgl_list li a {
        font-size: 13px;
        display: block;
        padding: 12px 16px;
        color: #fff;
    }
    #header #nav-input:checked~#nav-close {
        display: block;
        /*カバーを表示*/
        opacity: .5;
    }
    #header #nav-input:checked~#nav-close2 {
        display: block;
        opacity: 1;
    }
    #header #nav-input:checked~#nav-content {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        /*中身を表示（右へスライド）*/
        box-shadow: 6px 0 25px rgba(0, 0, 0, 0.15);
    }
    #header .gnav_sp li {
        border-top: 1px solid #ddd;
    }
    #header .gnav_sp li a {
        color: #0a568f;
        display: block;
        font-size: 15px;
        font-weight: bold;
        padding: 12px 16px;
    }
    #header .gnav_sp li.nav_contact {
        border: none;
    }
    #header .gnav_sp li.nav_contact a {
        color: #fff;
        position: relative;
        background: #0a568f url("../images/common/icon_document.png") no-repeat 14px center;
        background-size: 11px auto;
        padding-left: 32px;
    }
    #header .trouble_type_sp {
        margin-top: 15px;
    }
    #header .trouble_type_sp>p {
        color: #4c8f0a;
        text-align: center;
        margin-bottom: 5px;
        font-weight: bold;
    }
    #header .trouble_type_sp ul {
        background: #4c8f0a;
        margin: 0 8px;
    }
    #header .trouble_type_sp ul li {
        border-bottom: 1px solid #fff;
    }
    #header .trouble_type_sp ul li a {
        color: #fff;
        display: block;
        font-size: 13px;
        text-align: center;
        padding: 10px 4px;
    }
}

@media only screen and (max-width: 1024px) {
    .wrap_request {
        display: none;
    }
    #header .gnavi>ul>li {
        font-size: 12px;
    }
    #header .gnavi>ul>li>a {
        font-size: 12px;
    }
}


/*----------------------------------------------------
	#footer
----------------------------------------------------*/

#footer {
    background: #E4E4F3;
    color: #0e#391D7A3092;
}

#footer .inner {
    position: relative;
}

#footer .wrap_link {
    display: flex;
    justify-content: center;
    padding: 40px 20px 24px;
}

@media only screen and (max-width: 750px) {
    #footer .wrap_link {
        display: block;
        padding: 0;
    }
}

#footer .sitemap {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

#footer .sitemap>ul {
    padding: 0 1.3vw;
}

#footer .sitemap>ul.foot_link_home {
    flex-basis: 100%;
}

#footer .sitemap>ul>li {
    margin-bottom: 4px;
}

#footer .sitemap>ul>li>a {
    color: #391D7A;
    font-size: 1.3rem;
}

#footer .sitemap>ul>li>a.link_tab:after {
    content: "";
    background: url("../images/common/icon_newtab_b.png") no-repeat;
    display: inline-block;
    width: 7px;
    height: 7px;
    background-size: contain;
    margin-left: 4px;
}

#footer .sitemap>ul>li .tgl {
    color: #391D7A;
    font-size: 1rem;
    display: none;
}

#footer .sitemap>ul>li>ul li:not(.pc) {
    margin: 4px 0 4px 12px;
    line-height: 1.2;
}

#footer .sitemap>ul>li>ul li:not(.pc) a {
    color: #5e428c;
    font-size: 1.1rem;
    font-weight: 400;
}

#footer .sitemap>ul>li>ul li.pc {
    color: #5e428c;
    font-size: 1.3rem;
}

#footer .sitemap>ul>li>ul li.pc a {
    color: #5e428c;
}

#footer .footer_btm {
    background: #43464a;
    text-align: center;
}

#footer .footer_btm .copyright {
    color: #fff;
    font-size: 10px;
}

@media only screen and (max-width: 750px) {
    #footer .inner {
        display: block;
        padding: 0;
    }
    #footer .sitemap {
        display: block;
        margin-bottom: 0;
    }
    #footer .sitemap>ul {
        border-left: none;
        padding: 0;
    }
    #footer .sitemap>ul>li {
        border-bottom: 1px solid #f9fbf6;
        margin: 0;
    }
    #footer .sitemap>ul>li>a,
    #footer .sitemap>ul>li>.tgl {
        display: block;
        font-weight: normal;
        font-size: 13px;
        padding: 12px 65px;
    }
    #footer .sitemap>ul>li>.tgl {
        display: block;
        position: relative;
    }
    #footer .sitemap>ul>li>.tgl:after {
        -moz-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        border-bottom: 1px solid #fff;
        border-right: 1px solid #fff;
        content: "";
        display: block;
        height: 6px;
        position: absolute;
        right: 10px;
        margin-top: -6px;
        width: 6px;
        top: 50%;
    }
    #footer .sitemap>ul>li>.tgl.active:after {
        -moz-transform: rotate(-135deg);
        -o-transform: rotate(-135deg);
        -ms-transform: rotate(-135deg);
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }
    #footer .sitemap>ul>li>ul {
        display: none;
        background: #391D7A;
    }
    #footer .sitemap>ul>li>ul li:not(.pc) {
        margin: 0;
        padding: 6px 12px;
    }
    #footer .sitemap>ul>li>ul li:not(.pc):before {
        content: none;
    }
    #footer .sitemap>ul>li>ul li:not(.pc) a {
        font-weight: normal;
        font-size: 13px;
        color: #fff;
        display: block;
        padding: 5px 65px;
    }
    #footer .sitemap>ul>li>ul li:not(.pc) a br {
        display: none;
    }
}


/*----------------------------------------------------
	資料請求／お問い合わせ
----------------------------------------------------*/

.cmn_cv_link {
    display: flex;
}

.cmn_cv_link a {
    color: #fff;
}

.cmn_cv_link>div {
    flex: 1;
}

.cmn_cv_link>div.blk_request {
    background: url("../images/common/bg_check_red.png") repeat;
}

.cmn_cv_link>div.blk_request .inner {
    margin-left: auto;
    padding-right: 48px;
}

.cmn_cv_link>div.blk_request .inner .txt02 {
    /* font-family: "M PLUS Rounded 1c", sans-serif; */
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 1rem;
}

@media only screen and (max-width: 750px) {
    .cmn_cv_link>div.blk_request .inner {
        flex-direction: column;
        text-align: center;
        margin: 0 auto;
        padding: 15px;
    }
    .cmn_cv_link>div.blk_request .inner .txt01 {
        font-size: 10px;
    }
    .cmn_cv_link>div.blk_request .inner .txt02 {
        font-size: 18px;
    }
}

.cmn_cv_link>div.blk_request .ph_cv_link {
    margin-right: auto;
}

.cmn_cv_link>div.blk_contact {
    background: url("../images/common/bg_check_purple.png") repeat;
}

.cmn_cv_link>div.blk_contact .inner {
    padding-left: 48px;
}

.cmn_cv_link>div.blk_contact .inner .txt01 {
    font-size: 12px;
    margin-left: 50px;
    margin-bottom: -12px;
}

.cmn_cv_link>div.blk_contact .inner .txt02 {
    font-size: 12px;
    margin-bottom: 4px;
}

@media only screen and (max-width: 750px) {
    .cmn_cv_link>div.blk_contact .inner {
        flex-direction: column-reverse;
        text-align: center;
        padding: 15px;
        margin: 0 auto;
    }
    .cmn_cv_link>div.blk_contact .inner .txt01 {
        font-size: 10px;
        margin: 0;
    }
    .cmn_cv_link>div.blk_contact .inner .txt02 {
        font-size: 8px;
        margin: 0;
    }
}

.cmn_cv_link>div.blk_contact .ph_cv_link {
    margin-left: auto;
}

.cmn_cv_link>div .inner {
    display: flex;
    align-items: center;
    max-width: 600px;
    margin: 0;
    padding: 20px 0;
}

.cmn_cv_link>div .inner .note {
    background: #ebeb27;
    border-radius: 10px;
    color: #000;
    font-size: 14px;
    padding: 4px 16px;
}

@media only screen and (max-width: 750px) {
    .cmn_cv_link>div .inner .note {
        font-size: 9px;
        border-radius: 5px;
        padding: 3px 6px;
    }
}

.cmn_cv_link>div .ph_cv_link {
    margin: -50px 0 -56px;
}

@media only screen and (max-width: 750px) {
    .cmn_cv_link>div .ph_cv_link {
        margin: -32px auto 0 !important;
        width: 50%;
        max-width: 180px;
    }
}


/*----------------------------------------------------
	パン屑
----------------------------------------------------*/

.brearcrumbs {
    padding: 14px 0;
}

.brearcrumbs .inner {
    max-width: 1472px;
    padding: 0 16px;
}

.brearcrumbs ol li {
    display: inline;
}

.brearcrumbs ol li:after {
    content: ">";
    margin: 0 5px 0 7px;
}

.brearcrumbs ol li:last-child:after {
    content: none;
}


/*----------------------------------------------------
	#pageTop
----------------------------------------------------*/


/*
#pageTop {
    position: fixed;
    z-index: 9999999;
    bottom: 30px;
    right: 30px;
}

#pageTop a {
    font-size: 14px;
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    text-align: center;
    position: relative;
    letter-spacing: 2px;
    display: block;
    width: 72px;
    height: 72px;
    background: #0e3092;
    border-radius: 50%;
}

#pageTop a:after {
    -moz-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    content: "";
    display: block;
    position: absolute;
    left: 50%;
    margin-left: -8px;
    margin-top: -8px;
    top: 50%;
    width: 16px;
    height: 16px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}

#pageTop a:hover {
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    -ms-transition: all 0.4s ease;
    -o-transition: all 0.4s ease;
    transition: all 0.4s ease;
    background: #ebeb27;
}

@media only screen and (max-width: 750px) {
    #pageTop {
        right: 10px;
        bottom: 47px;
    }
    #pageTop a {
        -moz-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
        -webkit-box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
        box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.25);
        width: 48px;
        height: 48px;
    }
    #pageTop a:after {
        width: 10px;
        height: 10px;
        margin-left: -5px;
        margin-top: -5px;
    }
}

*/


/*----------------------------------------------------
  キービジュアル
----------------------------------------------------*/

.eye_box {
    background-size: cover;
}

.eye_box .inner {
    position: relative;
    height: 270px;
}

.eye_box .h_eye {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-size: 28px;
    line-height: 48px;
    position: absolute;
    top: 50%;
    left: 2%;
    font-weight: 500;
    background: none;
    text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.8);
    color: #fff;
    text-align: left;
    transform: translateY(-50%);
    padding: 0;
    margin: 0;
}

@media only screen and (max-width: 750px) {
    .eye_box .inner {
        height: 150px;
    }
}


/*----------------------------------------------------
  下層共通
----------------------------------------------------*/

.column .inner {
    padding: 100px 0;
}


/* ページャー　*/

.pagination {
    text-align: center;
    margin-bottom: 80px;
    font-size: 16px;
}

.pagination span {
    padding: 10px;
    color: #ebeb27;
}

.pagination a {
    padding: 10px;
    border: 1px solid #ebeb27;
    color: #ebeb27;
    text-decoration: none;
    display: inline;
}

.pagination a:hover {
    background: #ebeb27;
    color: #fff;
}

.pagination .prev {
    margin-right: 5px;
}

.flex-2column {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.flex-2column div {
    width: 48%;
}

.flex-2column-rev {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.flex-2column-rev div {
    width: 48%;
}

.column .inner.bottom_p_adjust {
    padding: 100px 0px 0px;
}

@media only screen and (max-width: 1024px) {
    .column .inner {
        padding: 50px 20px;
    }
    .column .inner.bottom_p_adjust {
        padding: 50px 20px 20px;
    }
}

#cemetery_area div.map {
    position: relative;
}

#cemetery_area div.map:after {
    content: "";
    width: 100%;
    height: 50px;
    background: #F4FAFC;
    position: absolute;
    top: 0;
    left: 0;
}


/*----------------------------------------------------
	404 Not Found
----------------------------------------------------*/

.error-404 {
    text-align: center;
    padding: 200px 0;
    color: #0f3965;
    font-weight: 600;
}

.error-404 .btn_back {
    margin-top: 50px;
}

.error-404 .btn_back a {
    background: #0e3092;
    padding: 15px;
    color: #fff;
    border-radius: 30px;
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    max-width: 380px;
    width: 100%;
}

.error-404 .btn_back a:hover {
    background: #ebeb27;
}

section.bg-w {
    background: #fff;
}

.single-area .access_area .flex-2column>div {
    margin-right: 90px;
}

.single-area .access_area .flex-2column>div p {
    margin-bottom: 20px;
}

input.wpcf7-form-control.wpcf7-back.re-confirm.wpcf7c-elm-step2.wpcf7c-btn-back,
.complete-page p.btn a {
    font-family: "arial", "Yu Gothic", YuGothic, "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", Sans-Serif;
    -webkit-appearance: none;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid #0e3092;
    background: #fff;
    color: #0e3092;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: .1em;
    text-align: center;
    line-height: 60px;
    width: 280px;
    margin: 0px auto;
    -webkit-transition: .5s;
    -o-transition: .5s;
    transition: .5s;
}

input.wpcf7-form-control.wpcf7-back.re-confirm.wpcf7c-elm-step2.wpcf7c-btn-back:hover,
.complete-page p.btn a:hover {
    border: 1px solid #ebeb27;
    background: #ebeb27;
    color: #fff;
}

.complete-page p {
    text-align: center;
}

.complete-page p.btn {
    margin-top: 40px;
}

.complete-page p.btn a {
    display: inline-block;
}

.complete-page .inner .sec_cmn_heading {
    margin-bottom: 10px;
}

.inner .sec_cmn_heading.none>span:after {
    content: "";
}

@media screen and (max-width: 768px) {
    .complete-page p.btn a {
        width: 90%;
    }
}

p.btn_voice {
    border-bottom: 1px solid;
    display: inline-block;
    cursor: pointer;
}

div.btn_voice_wrap {
    text-align: right;
}

ul.page-numbers {
    display: flex;
    justify-content: center;
}

ul.page-numbers>li:not(:last-child) {
    margin-right: 5px;
}

pre {
    /* Mozilla */
    white-space: -moz-pre-wrap;
    /* Opera 4-6 */
    white-space: -pre-wrap;
    /* Opera 7 */
    white-space: -o-pre-wrap;
    /* CSS3 */
    white-space: pre-wrap;
    /* IE 5.5+ */
    word-wrap: break-word;
}

.blog-site-content p:not(:nth-of-type(1)) {
    margin-top: 20px;
}