@charset "UTF-8";
/* ------------------------------------------------------------------
intial set
------------------------------------------------------------------ */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,600,700');
@import url('https://fonts.googleapis.com/css?family=Questrial');
@import url('https://fonts.googleapis.com/css?family=Oswald:400,500,600,700&display=swap');
@import url('https://fonts.googleapis.com/css?family=Roboto:400,700,900&display=swap');

html {
    font-size: 62.5%;
}

/* 10px */
body {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.5rem;
    color: #40220f;
    height: 100%;
    background: #fff;
}

div.page {
    overflow: hidden;
}

p {
    font-size: 1.5rem;
    /* 16px */
    line-height: 1.6em;
}

ol {
    padding: 0;
}

a,
a:focus,
a:active,
a.active {
    outline: 0;
    color: #70594b;
    text-decoration: none;
}

a:hover {
    outline: 0;
    color: #a99b93;
    text-decoration: none;
}

h1 {
    margin: 0;
}

h2,
h3,
h4,
h5,
h6 {
    text-transform: uppercase;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 600;
}

ul {
    padding: 0;
    list-style: none;
    margin: 0;
}

.img-centered {
    margin: 0 auto;
}

@media only screen and (max-width: 736px) {
    p {
        font-size: 1.3rem;
    }

    ul,
    ol {
        font-size: 1.3rem;
    }
}

/* ------------------------------------------------------------------
header nav
------------------------------------------------------------------ */
.navbar {
    border: 0px solid transparent;
    background: #fff;
    font-weight: 700;
    border-radius: 0;
    margin-bottom: 0;
}

.navbar a:focus {
    outline: 0;
}

.navbar .navbar-nav {
    letter-spacing: 1px;
}

ul.navbar-nav li {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    color: #000;

    transition: 0.3s;
    -moz-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    -webkit-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    -o-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    -ms-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
}

.navbar .navbar-nav li a:focus {
    outline: 0;
}

.navbar-default .navbar-toggle {
    border-color: transparent;
}

.navbar-toggle .icon-bar {
    background-color: #40220f;
    width: 24px;
    height: 4px;
}

.navbar-toggle {
    padding: 6px 10px;
}

@media (min-width: 768px) {
    .navbar-collapse {
        padding-right: 0px;
        padding-left: 0px;
    }

    .navbar {
        padding-top: 0px;
        height: 100px;
    }

    .navbar-header {
        float: none;
        height: 100px;
    }

    .fixed-top {
        background: #fff;
        height: 100px;
        position: fixed;
        right: 0;
        left: 0;
        z-index: 1030;
        -webkit-transition: padding 0.3s;
        -moz-transition: padding 0.3s;
        transition: padding 0.3s;
        top: 0;
        box-shadow: 0px 1px 15px rgba(0, 0, 0, 0.1);
    }

    .navBox {
        float: left;
        margin-top: 20px;
        width: 100%;
    }

    .navbar-nav {
        float: none;
        text-align: center;
        font-size: 0;
    }

    ul.navbar-nav li {
        float: none;
        display: inline-block;
        font-size: 1.1rem;
    }

    ul.navbar-nav li span {
        position: relative;
        display: inline-block;
    }

    ul.navbar-nav li a {
        display: block;
        color: #40220f;
        z-index: 1;
    }

    ul.navbar-nav li span::after {
        content: '';
        display: block;
        width: 0;
        height: 8px;
        background-color: rgba(64, 34, 15, 0.1);
        position: absolute;
        bottom: 20px;
        transition: 0.3s;
    }

    ul.navbar-nav li span:hover::after {
        width: 100%;
    }

    .nav > li > a:focus,
    .nav > li > a:hover {
        text-decoration: none;
        background-color: transparent;
        color: #40220f;
    }

    .navbar-nav > li:last-child > a:hover {
        background: transparent;
    }

    .nav > li > a {
        line-height: 60px;
        padding: 0px 12px;
    }

    .dropdown:hover > .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        border-radius: 0px;
        background: #133c67;
        padding: 0;
        border: solid 0px;
    }

    .nav .open > a,
    .nav .open > a:focus,
    .nav .open > a:hover {
        background: transparent;
    }

    ul.dropdown-menu li {
        display: block;
    }

    .dropdown p {
        margin-bottom: 0;
        padding: 0px 6px;
        color: #626262;
        font-size: 1.1rem;
        line-height: 60px;
    }

    .dropdown p:hover {
        color: #133c67;
    }

    ul.dropdown-menu li a {
        display: block;
        padding: 0px 15px;
        line-height: 40px;
        text-align: left;
        color: #fae976;
        -moz-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
        -webkit-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
        -o-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
        -ms-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
        transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    }

    .dropdown-menu > li > a:focus,
    .dropdown-menu > li > a:hover {
        color: #133c67;
        background-color: #fae976;
    }

    ul.dropdown-menu li::after {
        display: none;
    }
}

@media (min-width: 1024px) {
    .navbar-header {
        float: none;
        height: 100px;
    }

    .fixed-top {
        height: 100px;
    }

    .nav > li > a {
        padding: 0px 25px;
    }

    ul.navbar-nav li {
        font-size: 1.2rem;
    }

    .dropdown p {
        padding: 0px 10px;
        font-size: 1.2rem;
        line-height: 60px;
    }
}

@media (min-width: 1366px) {
    .navBox {
        width: auto;
        margin-left: 20px;
    }
    .nav > li > a {
        padding: 0px 20px;
    }

    .dropdown p {
        padding: 0px 20px;
    }

    ul.navbar-nav li {
        font-size: 1.4rem;
    }

    .dropdown p {
        padding: 0px 20px;
        font-size: 1.4rem;
    }
}

@media only screen and (max-width: 736px) {
    .navbar-nav {
        margin: 0px -15px;
    }

    ul.navbar-nav li {
        text-align: left;
    }

    .nav > li > a:focus,
    .nav > li > a:hover {
        background-color: #2758a7 !important;
    }

    .dropdown p {
        line-height: 25px;
        color: #fff;
        padding: 10px 15px;
        margin-bottom: 0;
    }

    .dropdown-menu > li > a {
        color: #fff;
    }

    .navbar-nav .open .dropdown-menu > li > a {
        line-height: 34px;
    }

    .navbar-default .navbar-collapse,
    .navbar-default .navbar-form {
        box-shadow: 0 6px 6px -6px rgba(0, 0, 0, 0.4);
        margin-left: -10px;
        margin-right: -10px;
    }

    .navbar-collapse {
        position: absolute !important;
        z-index: 3;
        width: 100%;
        margin-left: 0px;
        border-top: 0px solid transparent;
        top: 50px;
    }

    .navbar-collapse.in {
        position: absolute;
        z-index: 3;
        display: block;
        width: 100%;
        margin-left: 0px;
        top: 50px;
    }

    .navbar-nav > li {
        border-bottom: solid 0px #fff;
        background: #1b232d;
    }

    .navbar-nav > li > a {
        line-height: 40px;
        text-align: center;
        font-size: 1.6rem;
        color: #fff;
    }

    .navbar-default .navbar-nav > li > a {
        color: #fff;
        font-weight: 400;
    }
}

/* ------------------------------------------------------------------
logo　電話番号　ボタン
------------------------------------------------------------------ */
.header_logo {
    overflow: hidden;
}

.custom-navbar .navbar-brand {
    background-image: url('../img/logo.png');
    -webkit-background-image: url('../img/logo.png');
    -moz-background-image: url('../img/logo.png');
    -ms-background-image: url('../img/logo.png');
    -o-background-image: url('../img/logo.png');
    background-size: contain;
    -webkit-background-size: contain;
    -moz-background-size: contain;
    -ms-background-size: contain;
    -o-background-size: contain;
    vertical-align: middle;
    background-repeat: no-repeat;
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-indent: 500%;
    white-space: nowrap;
}

@media (min-width: 768px) {
    .header_logo {
        padding-top: 30px;
        padding-left: 50%;
        margin-left: -118px;
    }

    .navbar-brand {
        height: 48px;
        width: 236px;
    }

    .header_right {
        float: none;
    }

    .header-banner {
        float: right;
        margin-top: 0px;
        margin-left: 0px;
        margin-right: 10px;
        padding: 19px 8px;
        height: 100px;
    }

    .header-banner ul {
        letter-spacing: -0.4em;
        text-align: center;
    }

    .header-banner ul li {
        display: inline-block;
        vertical-align: middle;
        letter-spacing: normal;
    }

    .header-banner ul li:last-child {
        margin-left: 15px;
    }

    .header-banner .btn {
        padding: 13.5px 15px;
        line-height: 1.1em;
        font-size: 1rem;
    }

    .header-banner .btn p {
        line-height: 1;
        font-size: 1rem;
        margin-bottom: 3px;
    }

    .header-banner ul li:last-child p {
        display: block;
        line-height: 1;
        border-top: solid 1px #073190;
        margin-top: 4px;
        margin-bottom: 0;
        padding-top: 5px;
        font-size: 1.2rem;
        color: #073190;
    }

    .header-banner .header-phone {
        font-size: 3.6rem;
        padding-left: 35px;
    }

    .header-banner .header-phone:before {
        top: 4px;
        left: 0px;
        width: 30px;
        height: 30px;
        background-size: 30px 30px;
    }
}

@media (min-width: 1024px) {
    .header-banner {
        margin-right: 20px;
    }

    .header-banner .header-phone {
        font-size: 4rem;
        padding-left: 50px;
    }

    .header-banner .header-phone:before {
        top: 0px;
        left: 5px;
        width: 40px;
        height: 40px;
        background-size: 40px 40px;
    }

    .header-banner .btn {
        padding: 13.5px 20px;
        font-size: 1.6rem;
    }

    .header-banner .btn p {
        font-size: 1.5rem;
    }
}

@media (min-width: 768px) and (max-width: 1365px) {
    .header_tex {
        display: none;
    }
}

@media (min-width: 1366px) {
    .header_tex {
        display: inline-block;
        color: #8d8e8e;
        font-size: 1rem;
        position: absolute;
        top: 10px;
        left: 30px;
        font-weight: 400;
    }

    .header_logo {
        float: left;
        margin-left: 0;
        padding-left: 30px;
    }

    .header_right {
        float: right;
    }

    .header-banner {
        margin-left: 15px;
    }
}

@media only screen and (max-width: 736px) {
    .header_tex {
        display: none;
    }
    .header_logo {
        float: left;
        padding-top: 8px;
        padding-left: 10px;
    }

    .navbar-brand {
        height: 34px;
        width: 166px;
    }

    .header-banner {
        display: none;
    }

    .head_btn {
        float: left;
        width: 35%;
    }

    .head_btn ul {
        letter-spacing: -0.4em;
    }

    .head_btn ul li {
        display: inline-block;
        vertical-align: top;
        letter-spacing: normal;
        width: 42%;
        margin-left: 4%;
    }

    .head_btn ul li .btn {
        padding: 6px 10px;
    }

    .head_btn ul li img {
        width: 100%;
    }
}

/* ------------------------------------------------------------------
mv
------------------------------------------------------------------ */
.intro {
    height: auto;
}

.top_mv {
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    position: relative;
    display: flex;
    width: 100%;
    padding-bottom: 100px;
}

.header-box p {
    position: absolute;
    top: 5%;
    left: 55%;
    right: 5%;
    font-weight: 700;
    line-height: 1.3em;
    background-color: rgba(255, 255, 255, 0.5);
    color: #31332f;
}

@media (min-width: 768px) {
    .header-box {
        padding-top: 150px;
    }

    .top_mv {
        height: 356px;
    }

    .top_mv .inner {
        height: 356px;
    }

    .header-box h1 {
        font-size: 5rem;
    }

    .header-box p {
        font-size: 2.6rem;
    }
}

@media (min-width: 1024px) {
    .header-box {
        padding-top: 200px;
    }

    .top_mv {
        height: 475px;
    }

    .top_mv .inner {
        height: 475px;
    }

    .header-box h1 {
        font-size: 6rem;
    }

    .header-box p {
        font-size: 3rem;
    }
}

@media (min-width: 1366px) {
    .header-box {
        padding-top: 280px;
    }

    .top_mv {
        height: 668px;
    }

    .top_mv .inner {
        height: 668px;
    }

    .header-box h1 {
        font-size: 8.9rem;
    }

    .header-box p {
        font-size: 3.6rem;
    }
}

@media only screen and (max-width: 736px) {
    .top_mv {
        background: url(../img/mv01.png) no-repeat center left scroll;
        -webkit-background-size: cover;
        -moz-background-size: cover;
        background-size: cover;
        -o-background-size: cover;
        display: block;
        width: 100%;
        height: 325px;
    }

    .top_mv .inner {
        height: 325px;
    }

    .header-box {
        padding-top: 30px;
    }

    .header-box h1 {
        font-size: 3.7rem;
        margin-bottom: 30px;
    }

    .header-box p {
        font-size: 1.9rem;
    }
}

@media only screen and (max-width: 414px) {
    .top_mv {
        height: 617px;
    }

    .top_mv .inner {
        height: 617px;
    }

    .header-box {
        padding-top: 80px;
    }

    .header-box ul li {
        width: 47%;
        margin-right: 6%;
    }

    .header-box ul li:nth-child(2),
    .header-box ul li:last-child {
        margin-right: 0px;
    }

    .header-box h1,
    .header-box p {
        text-align: center;
    }
    .header-box p {
        font-size: 1.8rem;
    }
}

@media only screen and (max-width: 375px) {
    .header-box h1 {
        font-size: 3.5rem;
    }
}

@media only screen and (max-width: 320px) {
    .header-box h1 {
        font-size: 3rem;
    }

    .header-box p {
        font-size: 1.6rem;
    }
}

/* ------------------------------------------------------------------
inner
------------------------------------------------------------------ */
.inner,
.header-inner,
.innerBox {
    margin-left: auto;
    margin-right: auto;
}

.shadowBox {
    background: #fff;
    -moz-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, 0.4);
    -webkit-box-shadow: 0 0px 14px 0px rgba(115, 115, 115, 0.4);
    box-shadow: 0 0 14px 0px rgba(115, 115, 115, 0.4);
}

.white_bg {
    background-color: #fff;
}

.bg-fixed {
    margin: 60px 0 60px;
}

@media (min-width: 768px) {
    .inner {
        width: 680px;
    }

    .header-inner {
        margin-left: -15px;
        margin-right: -15px;
    }

    .innerBox {
        width: 600px;
    }
}

@media (min-width: 1024px) {
    .inner {
        width: 920px;
    }

    .innerBox {
        width: 820px;
    }
}

@media (min-width: 1366px) {
    .inner {
        width: 1160px;
    }

    .innerBox {
        width: 880px;
    }
}

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

    .header-inner {
        padding: 0px 15px 0;
    }

    .innerBox {
        padding: 0px 0px;
    }

    .bg-fixed {
        margin: 20px 0 20px;
    }
}

/* ------------------------------------------------------------------
リスト カラム
------------------------------------------------------------------ */
ul.list-3-column,
ol.list-3-column,
ul.list-2-column,
ul.list-4-column,
ol.list-4-column,
ul.list-5-column,
ul.list-6-column {
    letter-spacing: -0.4em;
    text-align: center;
}

ul.list-3-column li,
ol.list-3-column li,
ul.list-2-column li,
ul.list-4-column li,
ol.list-4-column li,
ul.list-5-column li,
ul.list-6-column li {
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
}

ul.list-3-column li,
ol.list-3-column li {
    width: 31%;
    margin-left: 3.5%;
    margin-bottom: 3.5%;
}

ul.list-3-column li:first-child,
ol.list-3-column li:first-child {
    margin-left: 0;
}

ul.list-3-column li:nth-child(3n + 1),
ol.list-3-column li:nth-child(3n + 1) {
    margin-left: 0;
}

ul.list-2-column li {
    width: 48%;
    margin-left: 4%;
    margin-bottom: 3.5%;
}

ul.list-2-column li:first-child {
    margin-left: 0;
}

ul.list-2-column li:nth-child(odd) {
    margin-left: 0;
}

ul.list-4-column li,
ol.list-4-column li {
    width: 23.5%;
    margin-left: 2%;
    margin-bottom: 2%;
}

ul.list-4-column li:first-child,
ol.list-4-column li:first-child {
    margin-left: 0;
}

ul.list-4-column li:nth-child(4n),
ol.list-4-column li:nth-child(4n) {
    margin-right: 0;
}

ul.list-4-column li:nth-child(4n + 5),
ol.list-4-column li:nth-child(4n + 5) {
    margin-left: 0;
}

ul.list-5-column li {
    width: 18.4%;
    margin-left: 2%;
    margin-bottom: 2%;
}

ul.list-5-column li:first-child {
    margin-left: 0;
}

ul.list-5-column li:nth-child(5n) {
    margin-right: 0;
}

ul.list-5-column li:nth-child(5n + 6) {
    margin-left: 0;
}

ul.list-6-column li {
    width: 15%;
    margin-left: 2%;
    margin-bottom: 2%;
}

ul.list-6-column li:first-child {
    margin-left: 0;
}

@media (min-width: 768px) {
    ul.list-6-column li:nth-child(6n) {
        margin-right: 0;
    }

    ul.list-6-column li:nth-child(6n + 7) {
        margin-left: 0;
    }
}

@media only screen and (max-width: 736px) {
    ul.list-3-column li,
    ol.list-3-column li,
    ul.list-2-column li,
    ul.list-5-column li {
        display: block;
    }

    ul.list-3-column li,
    ol.list-3-column li,
    ul.list-5-column li {
        width: 100%;
        margin-left: 0;
        margin-bottom: 20px;
    }

    ul.list-2-column li {
        width: 100%;
        margin-left: 0%;
    }
}

@media only screen and (max-width: 414px) {
    ul.list-4-column li,
    ol.list-4-column li,
    ul.list-6-column li {
        display: inline-block;
    }

    ul.list-4-column li,
    ol.list-4-column li {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 15px;
    }

    ul.list-4-column li:first-child,
    ol.list-4-column li:first-child {
        margin-left: 0;
    }

    ul.list-4-column li:nth-child(2n),
    ol.list-4-column li:nth-child(2n) {
        margin-right: 0;
    }

    ul.list-4-column li:nth-child(2n + 3),
    ol.list-4-column li:nth-child(2n + 3) {
        margin-left: 0;
    }

    ul.list-6-column li {
        width: 48%;
        margin-left: 4%;
        margin-bottom: 15px;
    }

    ul.list-6-column li:first-child {
        margin-left: 0;
    }

    ul.list-6-column li:nth-child(2n) {
        margin-right: 0;
    }

    ul.list-6-column li:nth-child(2n + 3) {
        margin-left: 0;
    }
}

/* ------------------------------------------------------------------
リストteble
------------------------------------------------------------------ */
ul.teble-list li {
    border-bottom: solid 1px #dddddd;
    display: table;
    width: 100%;
    font-size: 1.4rem;
}

ul.teble-list li:first-child {
    border-top: solid 1px #dddddd;
}

ul.teble-list li div {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 15px;
}

ul.teble-list li div:first-child {
    background: #f6f3ef;
    width: 20%;
    text-align: center;
    letter-spacing: 1px;
    border-left: solid 1px #dddddd;
    font-weight: 400;
    color: #40220f;
}

ul.teble-list li div:last-child {
    border-right: solid 1px #dddddd;
}

/* -----teble-listライン----- */
ul.teble-listLine li {
    display: table;
    width: 100%;
    font-size: 1.3rem;
}

ul.teble-listLine li div {
    display: table-cell;
    vertical-align: middle;
    padding: 10px 15px;
}

ul.teble-listLine li div:first-child {
    width: 25%;
    letter-spacing: 0.5px;
    border-bottom: solid 1px #40220f;
    font-weight: 600;
    text-align: center;
    padding: 8px 0px;
}

ul.teble-listLine li div:last-child {
    border-bottom: solid 1px #e8e0d6;
}

@media (min-width: 768px) {
    /* -----teble-listライン----- */
    ul.teble-listLine li:first-child div:first-child {
        border-top: solid 1px #40220f;
    }

    ul.teble-listLine li:first-child div:last-child {
        border-top: solid 1px #e8e0d6;
    }
}

@media only screen and (max-width: 736px) {
    ul.teble-list li {
        display: block;
        border: 0;
        font-size: 1.3rem;
    }

    ul.teble-list li:first-child {
        border: 0;
    }

    ul.teble-list li div {
        display: block;
        padding: 10px 10px 20px;
    }

    ul.teble-list li div:first-child {
        width: 100%;
        text-align: left;
        padding: 5px 10px;
        border-right: solid 0px #dddddd;
        border-left: solid 0px #dddddd;
    }

    ul.teble-list li div:last-child {
        border-left: solid 0px #dddddd;
        border-right: solid 0px #dddddd;
    }

    ul.teble-list li:first-child div {
        border-top: solid 0px #dddddd;
    }

    ul.teble-list li:last-child div {
        border-bottom: solid 0px #dddddd;
    }

    /* -----teble-listライン----- */
    ul.teble-listLine li {
        display: block;
        border: 0;
        font-size: 1.3rem;
    }

    ul.teble-listLine li:first-child {
        border: 0;
    }

    ul.teble-listLine li div {
        display: block;
    }

    ul.teble-listLine li div:first-child {
        width: 100%;
        text-align: left;
        padding: 5px 10px;
    }

    ul.teble-listLine li div:last-child {
        border-bottom: solid 0px #eee;
        padding: 10px 10px 30px;
    }
}

/* ------------------------------------------------------------------
bootsytap teble
------------------------------------------------------------------ */
.table-bordered {
    border: 1px solid #ccc;
}

.table-bordered > tbody > tr > td,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > td,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border: 1px solid #ccc;
}

.table > tbody > tr > td,
.table > tbody > tr > th,
.table > tfoot > tr > td,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > thead > tr > th {
    padding: 13px;
    text-align: center;
    vertical-align: middle;
}

.table-bordered > thead > tr > td,
.table-bordered > thead > tr > th {
    border-bottom-width: 1px;
}

.table > thead > tr > th {
    vertical-align: middle;
    text-align: center;
    background: #2758a7;
    color: #fff;
}

.table > tbody > tr > td:first-child {
    background-color: #dfe6f2 !important;
    font-weight: 600;
}

.table > tbody > tr:first-child > td {
    background: #f3ecc8;
    color: #000;
    font-weight: 600;
}

.table > tbody > tr > td:last-child {
    text-align: left;
}

.table-bordered {
    font-size: 1.3rem;
}

@media only screen and (max-width: 736px) {
    .table > tbody > tr > td,
    .table > tbody > tr > th,
    .table > tfoot > tr > td,
    .table > tfoot > tr > th,
    .table > thead > tr > td,
    .table > thead > tr > th {
        padding: 13px 8px;
    }
}

/* ------------------------------------------------------------------
leftBox/rightBox
------------------------------------------------------------------ */

.leftBox {
    float: left;
    width: 48%;
    margin-left: 0%;
}

.rightBox {
    float: left;
    width: 48%;
    margin-left: 4%;
}

@media only screen and (max-width: 736px) {
    .leftBox {
        float: none;
        width: 100%;
        margin-left: 0%;
    }

    .rightBox {
        float: none;
        width: 100%;
        margin-left: 0%;
    }
}

/* ------------------------------------------------------------------
img
------------------------------------------------------------------ */
.photaria {
    margin-left: auto;
    margin-right: auto;
}

.photaria img {
    display: block;
    margin-right: auto;
    margin-left: auto;
    width: 100%;
    height: auto;
}

.phot-disc {
    display: block !important;
    font-size: 1.18rem;
    margin: 0.3em 0 0.5em;
    text-align: center;
}

/* -----画像トリミング・角丸.3em----- */
.fix-phot-radius {
    position: relative;
    width: 100%;
    /*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
    padding-top: 100%;
    /*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）　*/
    overflow: hidden;
    /*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
    margin: 0 auto;
    -moz-transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
    -webkit-transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
    -o-transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
    -ms-transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
    transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
}

.fix-phot-radius img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 150%;
    max-height: 150%;
}

.fix-phot-top {
    position: relative;
    width: 100%;
    padding-top: 66.666666%;
    overflow: hidden;
    margin: 0 auto;
    border-radius: 0;
    -moz-transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
    -webkit-transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
    -o-transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
    -ms-transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
    transition: border-radius 0.2s linear, color 0.2s linear, border 0.2s linear;
}

.fix-phot-top img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 150%;
    max-height: 150%;
}

.blog-phot,
.trimming-photo {
    background: url(../img/nophoto.png) no-repeat top center scroll;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    background-size: cover;
    -o-background-size: cover;
    position: relative;
    width: 100%;
    /*　トリミングしたい枠の幅（固定にしたい場合はサイズを入力）　*/
    padding-top: 100%;
    /*　トリミングしたい枠の高さ（固定にしたい場合はサイズを入力）　*/
    overflow: hidden;
    /*　画像が枠からはみ出た部分はトリミング（非表示）する　*/
    margin: 0 auto;
}

.trimming-photo {
    padding-top: 75%;
}

.blog-phot img,
.trimming-photo img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    max-width: 140%;
    max-height: 140%;
}

.photoLeft {
    width: 190px;
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
}

.photoRight {
    width: 300px;
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
}

.photoLeft img,
.photoRight img {
    width: 100%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

@media only screen and (max-width: 736px) {
    .photoLeft {
        margin-right: 15px;
        margin-bottom: 5px;
    }

    .photoRight {
        width: 170px;
        margin-left: 15px;
        margin-bottom: 25px;
    }
}

/* ------------------------------------------------------------------
margin　スクロール
------------------------------------------------------------------ */
.mb-box {
    margin-bottom: 50px;
}

.mb-box:last-child {
    margin-bottom: 0px;
}

.scrollBox {
    margin-top: -120px;
    padding-top: 120px;
}
.mb8 {
    margin-bottom: 8px;
}

@media only screen and (max-width: 736px) {
    .mb-box {
        margin-bottom: 30px;
    }
    .scrollBox {
        margin-top: -50px;
        padding-top: 50px;
    }
}

/* ------------------------------------------------------------------
inline-block
------------------------------------------------------------------ */
.need_container {
    text-align: center;
}

.needsBox {
    display: inline-block;
}

/* ------------------------------------------------------------------
ボタン
------------------------------------------------------------------ */
.btn {
    position: relative;
    line-height: 34px;
    color: #fff;
    text-align: center;
    font-size: 1.6rem;
    text-transform: uppercase;
    letter-spacing: normal;
    font-weight: 600;
    -moz-border-radius: 0.1em;
    -webkit-border-radius: 0.1em;
    -o-border-radius: 0.1em;
    -ms-border-radius: 0.1em;
    border-radius: 0.1em;
    border: 0px solid transparent;
    padding: 0px 0 0 0px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    -moz-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    -webkit-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    -o-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    -ms-transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
    transition: background-color 0.2s linear, color 0.2s linear, border 0.2s linear;
}

.btn:focus,
.btn:active,
.btn.active {
    outline: 0;
    color: #fff;
}

.btn a {
    text-decoration: none !important;
}

.btn:hover {
    background: #fff;
}

.radius {
    -moz-border-radius: 30px !important;
    -webkit-border-radius: 30px !important;
    -o-border-radius: 30px !important;
    -ms-border-radius: 30px !important;
    border-radius: 30px !important;
}

.btn-blue,
.btn-blue:focus,
.btn-blue:active {
    background-color: #0e59cf;
    color: #fff;
}

.btn-blue:hover {
    background-color: #023eed;
    color: #fff;
}

.btn-green,
.btn-green:focus,
.btn-green:active {
    background: #00b162;
    color: #fff;
}

.btn-green:hover {
    background: #00cf4b;
    color: #fff;
}

.btn-orange,
.btn-orange:focus,
.btn-orange:active {
    background-color: #ff7000;
    color: #fff;
}

.btn-orange:hover {
    background: #ffaf00;
    color: #fff;
}

.btn-red,
.btn-red:focus,
.btn-red:active {
    background-color: #e60012;
    color: #fff;
}

.btn-red:hover {
    background: #ff322d;
    color: #fff;
}

.btn-brown,
.btn-brown:focus,
.btn-brown:active {
    background-color: #40220f;
    color: #fff;
}

.btn-brown:hover {
    background: #e8e0d6;
    color: #40220f;
}

.btn-brown-o,
.btn-brown-o:focus,
.btn-brown-o:active {
    background-color: #fff;
    color: #40220f;
    border: solid 1px #40220f;
}

.btn-brown-o:hover {
    background: #40220f;
    color: #fff;
    border: solid 1px #40220f;
}

/* ------------------------------------------------------------------
fontsize color 蛍光マーカー
------------------------------------------------------------------ */
.toptex {
    font-weight: 600;
    line-height: 1.9em;
    font-size: 2rem;
}

.yellow_line_narrow {
    background: rgba(0, 0, 0, 0) linear-gradient(transparent 30%, #fdf64d 0%) repeat scroll 0 0;
}

.text-red {
    color: #e60012;
}

.text-block {
    color: #2d2d2d;
}

.text-green {
    color: #00af3a;
}

.text-blue {
    color: #114dd0;
}

.md-center {
    text-align: center;
    display: block;
}

.kome {
    display: block;
    font-size: 12px;
    line-height: 1.2em;
    font-weight: 400 !important;
}

.kome1 {
    display: block !important;
    font-size: 11px;
    line-height: 1em;
    font-weight: 400 !important;
}

.kome3 {
    font-size: 12px;
    line-height: 34px;
    font-weight: 400;
}

@media only screen and (max-width: 736px) {
    .toptex {
        line-height: 1.5em;
        font-size: 1.5rem;
    }

    .kome1 {
        display: block;
    }
    .md-center {
        text-align: left;
    }
}

/* ------------------------------------------------------------------
footer
------------------------------------------------------------------ */
footer {
    background-color: #c9caca;
    padding-top: 40px;
}

footer .inner {
    position: relative;
}

footer ul {
    letter-spacing: -0.4em;
    text-align: center;
    margin: 0 0 40px;
}

footer ul li {
    text-align: left;
    font-size: 1.2rem;
    display: inline-block;
    vertical-align: top;
    letter-spacing: normal;
}

footer ul li a {
    display: block;
    color: #40220f;
    margin-bottom: 0.5em;
    padding-left: 0.8em;
}

footer ul li a:hover {
    color: #8c7a6f;
    text-decoration: underline;
}

.f_logo {
    display: block;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
    width: 140px;
}

footer .copy {
    font-weight: 600;
    text-align: center;
    color: #fff;
    margin: 0;
    font-size: 1.2rem;
    line-height: 40px;
    background-color: #1b232d;
}

@media (min-width: 768px) {
    footer ul li {
        font-size: 1rem;
    }

    footer ul li a {
        padding: 0;
        margin: 0 1em 0em;
    }
}

@media (min-width: 1366px) {
    footer ul li {
        font-size: 1.2rem;
    }
}

@media only screen and (max-width: 736px) {
    footer ul li {
        width: 100% !important;
        margin-left: 0 !important;
        display: block !important;
        font-size: 1.4rem;
    }

    footer ul li a {
        display: block;
        margin-bottom: 1em;
    }

    footer ul li a:before {
        top: 6px;
    }

    footer .copy {
        font-size: 1.1rem;
        line-height: 40px;
    }
}

/* ------------------------------------------------------------------
パンくず
------------------------------------------------------------------ */
.breadcrumb {
    padding: 10px 30px 0;
    margin: 0;
    background-color: transparent;
    font-size: 1rem;
    border-radius: 0;
    white-space: nowrap;
    overflow-x: hidden;
    font-weight: 600;
}

.breadcrumb li {
    position: relative;
    padding: 0 0.8em;
    color: #8d8e8e;
}

.breadcrumb li a {
    color: #8d8e8e;
}

.breadcrumb li a:hover {
    color: #40220f !important;
    text-decoration: underline !important;
}

.breadcrumb li:first-child {
    padding-left: 0;
    padding-right: 0.4em;
}

.breadcrumb > li + li:before {
    display: inline-block;
    content: '／';
    position: absolute;
    left: -9px;
    top: 0px;
    color: #8d8e8e;
}

@media only screen and (max-width: 736px) {
    .breadcrumb {
        display: none;
    }
}

/* ------------------------------------------------------------------
404
------------------------------------------------------------------ */
.errorBox {
    text-align: center;
    padding-bottom: 80px;
}

.errorBox h3 {
    font-size: 6rem;
    color: #cc845c;
    margin: 0 0 40px;
}

.errorBox p {
    font-size: 1.9rem;
    line-height: 2em;
    margin: 0px 0 0px;
}

.errorBox a {
    text-decoration: underline;
}

@media only screen and (max-width: 736px) {
    .errorBox {
        padding: 40px 0 100px;
        text-align: center;
    }

    .errorBox h3 {
        margin: 0px 0 20px;
        font-size: 3rem;
    }

    .errorBox p {
        font-size: 1.6rem;
        line-height: 2em;
        margin: 0px 0 0px;
    }
}

/* ------------------------------------------------------------------
ページナビ
------------------------------------------------------------------ */
.wp-pagenavi {
    margin: 40px 0 0px;
    display: block;
    float: left;
    height: 39px;
}

.wp-pagenavi a,
.wp-pagenavi span {
    background: #fff;
    margin: 0 5px 0 0 !important;
    color: #40220f;
    padding: 10px 15px !important;
    border: solid 1px #40220f;
    font-family: 'Roboto', sans-serif;
}

.wp-pagenavi span.current {
    color: #40220f;
    background: #e8e0d6;
    border: solid 1px #e8e0d6;
}

@media only screen and (max-width: 736px) {
    .wp-pagenavi {
        margin: 20px 0px 0px 0px;
    }
    .wp-pagenavi a,
    .wp-pagenavi span {
        padding: 5px 10px !important;
    }
}

/* ------------------------------------------------------------------
ページトップへ
------------------------------------------------------------------ */
.scroll-top {
    z-index: 1049;
    position: fixed;
    right: 30px;
    bottom: 70px;
    width: 50px;
    height: 50px;
}

.scroll-top .btn:before {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: url('../img/arrow-buttom.png') no-repeat 0 0;
    background-size: 20px 20px;
    margin-top: -10px;
    margin-left: -10px;
}

.scroll-top .btn:hover:before {
    display: block;
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    background: url('../img/arrow-white.png') no-repeat 0 0;
    background-size: 20px 20px;
    margin-top: -10px;
    margin-left: -10px;
}

.scroll-top .btn {
    width: 60px;
    height: 60px;
    border-radius: 0;
    font-size: 30px;
    box-shadow: 0px 3px 10px rgba(0, 0, 0, 0.4);
    text-overflow: ellipsis;
    -webkit-text-overflow: ellipsis;
    -o-text-overflow: ellipsis;
    text-indent: 200%;
    white-space: nowrap;
}

.scroll-top .btn:focus {
    outline: 0;
}

@media (min-width: 768px) {
    .scroll-top {
        display: none;
    }
}

@media only screen and (max-width: 736px) {
    .scroll-top {
        position: fixed;
        right: 25px;
        bottom: 65px;
        width: 50px;
        height: 50px;
    }
}

/* ------------------------------------------------------------------
selection
------------------------------------------------------------------ */
::-moz-selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(255, 255, 255, 0.2);
}

::selection {
    text-shadow: none;
    background: #fcfcfc;
    background: rgba(0, 0, 0, 0.1);
}

img::selection {
    background: 0 0;
}

img::-moz-selection {
    background: 0 0;
}

/* ------------------------------------------------------------------
br 非表示
------------------------------------------------------------------ */
.hidden {
    display: none;
}
@media only screen and (max-width: 736px) {
    .hidden_md {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .brmd:before {
        content: '\A';
        white-space: pre;
    }

    .hidden_xs {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1021px) {
    .brmd_pad:before {
        content: '\A';
        white-space: pre;
    }
}
@media (min-width: 568px) and (max-width: 415px) {
    .brsp:before {
        content: '\A';
        white-space: pre;
    }
}
@media only screen and (max-width: 414px) {
    .brxs:before {
        content: '\A';
        white-space: pre;
    }
}
