@charset "UTF-8";

/*////////// reset ////////////*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}


/* PC・SP表示切り替え */
.visible_pc {
	display: block;
}
.visible_sp {
	display: none;
}
@media (max-width: 767px) {
	.visible_pc {
		display: none;
	}
	.visible_sp {
		display: block;
	}
}

/* 改行 */
.br_pc {
    display: block;
}
@media (max-width: 767px) {
    .br_pc {
        display: inline;
    }
    .br_sp {
        display: block;
    }
}

/* effect-fade */
.effect-fade {
    opacity: 0;
    -webkit-transform: translate(0, 100px);
    -ms-transform: translate(0, 100px);
    transform: translate(0, 100px);
    -webkit-transition: all 1000ms;
    -o-transition: all 1000ms;
    transition: all 1000ms;
}  
.effect-fade.effect-scroll {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); 
}
.effect-fade-sp {
    opacity: 0;
    -webkit-transform: translate(0, 0px);
    -ms-transform: translate(0, 0px);
    transform: translate(0, 0px);
    -webkit-transition: all 1000ms;
    -o-transition: all 1000ms;
    transition: all 1000ms;
}
.effect-fade-sp.effect-scroll {
    opacity: 1;
    -webkit-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    transform: translate(0, 0); 
}


body {
    font-family: YuGothic, "Yu Gothic", sans-serif;
    background: #FFF;
    color: #8B712C;
}
ul {
    list-style: none;
}
a {
    text-decoration: none;
    color: #fff;
}
a:hover {
    opacity: 0.8;
}
img {
    width: 100%;
    vertical-align: bottom;
}
address {
    font-style: normal;
}

/* ----------
    header
------------- */
.kv{
    margin-top: 6.4%;
    position: relative;
}
.kv .kv_box {
    position: absolute;
    top: -3%;
    left: 3%;
}
.kv .kv_box-sub {
    display: inline-block;
    width: 50%;
}
.kv .kv_box h1 {
    font-size: 68px;
    line-height: 1.3;
    margin-top: -34px;
}
.kv .kv_box h1 span {
    display: block;
    margin-left: 1.5rem;
}
.kv .kv_box p {
    display: inline-block;
    color: #FFF;
    font-size: 22px;
    font-weight: bold;
    padding: 11px 20px 10px;
    background: #8B712C;
    border-radius: 6px;
    margin: 33px 0 0 2.5rem;
}
.kv .kv_box .apply_btn02 {
    margin-top: 60px;
}
@media screen and (min-width: 1500px) {
    .kv .kv_main {
        width: 86%;
        margin-left: auto;
    }
}
@media screen and (max-width: 767px) {
    .kv {
        margin-top: 70px;
    }
}

/* ----------
    nav
------------- */
.header-nav {
    display: flex;
    justify-content: space-between;
    font-weight: bold;
    padding: 36px 0px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 5;
}
.header-nav .icon-logo{
    margin-left: 50px;
}
.header-nav .icon-logo img {
    width: 192px;
}
.header-nav ul {
    display: flex;
    align-items: center;
    margin-right: 50px;
}
.header-nav ul li {
    display: flex;
    padding-left: 38px;
    position: relative;
}
.header-nav ul li.current {
    justify-content: center;
}
.header-nav ul li.current:after {
    display: inline-block;
    content: "";
    width: 80px;
    height: 1px;
    background: #FC6B01;
    position: absolute;
    bottom: -12px;
}
.header-nav ul li a {
    color: #8B712C;
    font-size: 16px;
    font-weight: bold;
}
.header-nav ul li.current a {
    color: #FC6B01;
}
.header-nav ul li a button {
    color: #FFF;
    font-size: 18px;
    background: #FC6B01;
    border-radius: 6px;
    border: 0;
    padding: 7px 26px 6px;
}
@media screen and (max-width: 767px){
    .header-nav .icon-logo {
        margin-left: 4.2%;
    }
    .header-nav .header-nav-open {
        width: 32px;
        height: 20px;
        margin-right: 4.2%;
        position: relative;
    }
    .header-nav .header-nav-open span {
        display: inline-block;
        width: 100%;
        height: 2px;
        background: #8B712C;
        border-radius: 10px;
        position: absolute;
        transition: 0.6s;
    }
    .header-nav .header-nav-open span:nth-of-type(1) {
        top: 0;
    }
    .header-nav .header-nav-open span:nth-of-type(2) {
        top: 10px;
    }
    .header-nav .header-nav-open span:nth-of-type(3) {
        top: 20px;
    }
    .header-nav.is-open .icon-logo, .header-nav.is-open .header-nav-open {
        position: relative;
        z-index: 6;
    }
    .header-navis-open .header-nav-open span {
        transition: 0.6s;
    }
    .header-nav.is-open .header-nav-open span:nth-of-type(1) {
        top: 10px;
        transform: rotate(45deg);
    }
    .header-nav.is-open .header-nav-open span:nth-of-type(2) {
        transform: rotate(-45deg);
    }
    .header-nav.is-open .header-nav-open span:nth-of-type(3) {
        display: none;
    }
    .header-nav ul {
        width: 100%;
        height: 100vh;
        padding: 66px 4.2% 0;
        margin-right: 0;
        flex-direction: column;
        background: #FFF;
        position: fixed;
        top: 0;
        right: -100%;
        transition: 0.6s;
    }
    .header-nav.is-open ul {
        right: 0;
        transition: 0.6s;
    }
    .header-nav ul li {
        width: 100%;
        font-size: 20px;
        padding: 25px 0;
        justify-content: center;
        border-bottom: 1px solid #8B712C;
    }
    .header-nav ul li a {
        font-size: 18px;
    }
    .header-nav ul li.current:after {
        display: none;
    }
    .header-nav ul li.current a {
        color: #8B712C;
    }
}

.main-nav {
    width: 100%;
    background: #FFF3EB;
    padding: 12px 0;
}
.main-nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}
.main-nav ul li {
    width: 300px;
    padding: 4px 0;
}
.main-nav ul li:not(:last-of-type) {
    border-right: 1px dotted #8B712C;
}
.main-nav ul li a {
    color: #8B712C;
    font-size: 20px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 40px;
    position: relative;
}
.main-nav ul li a:after {
    display: inline-block;
    content: "";
    width: 18px;
    height: 18px;
    border-right: 2px solid #8B712C;
    border-bottom: 2px solid #8B712C;
    transform: rotate(45deg);
    position: absolute;
    left: 0;
    right: 0;
    bottom: 16px;
    margin: auto;
}
.main-nav ul li a span {
    display: inline-block;
    width: 48px;
    margin-bottom: 14px;
}
@media screen and (max-width: 767px) {
    .main-nav ul {
        flex-wrap: wrap;
    }
    .main-nav ul li {
        width: 45%;
    }
    .main-nav ul li:not(:last-of-type) {
        border-right: 0;
    }
    .main-nav ul li:nth-of-type(odd) {
        border-right: 1px dotted #8B712C;
    }
    .main-nav ul li:nth-last-of-type(-n+2) {
        border-top: 1px dotted #8B712C;
    }
    .main-nav ul li a {
        font-size: 18px;
        text-align: center;
    }
}

/* ----------
    cta
------------- */
.cta {
    text-align: center;
    padding: 80px 0;
    margin: 80px auto 60px;
}
.cta.-orange {
    background: #FFF3EB;
}
.flt.cta {
    background: rgba(255,255,255,0.7);
    width: 100%;
    height: 100px;
    margin: 0;
    padding: 16px 0;
    position: fixed;
    bottom: -100px;
    z-index: 3;
    transition: 0.6s;
    opacity: 0;
}
.flt.cta.fadein {
    bottom: 0;
    transition: 0.6s;
    opacity: 1;
}
.cta h2 {
    font-size: 30px;
    margin-bottom: 36px;
}
.cta h2 span {
    display: block;
    font-size: 24px;
}
.cta h2 span:before, .cta h2 span:after {
    display: inline-block;
    content: "";
    width: 16px;
    height: 24px;
    vertical-align: bottom;
}
.cta h2 span:before {
    border-right: 2px solid #8B712C;
    margin-right: 1.5rem;
    transform: rotate(-35deg);
}
.cta h2 span:after {
    border-left: 2px solid #8B712C;
    margin-left: 1rem;
    transform: rotate(35deg);
}
.cta_inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.cta_button {
    display: inline-block;
    width: 28%;
    max-width: 400px;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    border-radius: 10px;
    border: 2px solid #FC6B01;
    padding: 14px 0;
}
.cta_button.-atm {
    color: #FC6B01;
    background: #FFF;
    margin-right: 40px;
}
.cta_button.-store {
    color: #FFF;
    background: #FC6B01;
}
@media screen and (max-width: 767px) {
    .cta {
        padding: 40px 0;
        margin: 40px auto 30px;
    }
    .cta h2 {
        font-size: 30px;
        line-height: 1.3;
    }
    .cta h2 span {
        font-size: 20px;
        margin-bottom: 24px;
    }
    .cta h2 span:before, .cta h2 span:after {
        vertical-align: text-top;
    }
    .cta_button {
        width: 168px;
        font-size: 18px;
        line-height: 22px;
    }
    .cta_button.-atm {
        margin-right: 8px;
    }
    .cta_button.-store span {
        display: none;
    }
    .flt.cta {
        height: 108px;
        bottom: -108px;
    }
}

/* ----------
    main
------------- */
main {
    margin-top: 20px;
}
@media screen and (max-width: 767px) {
    main {
        margin-top: 0;
    }
}
/* ----------
    intro
------------- */
.intro {
    width: 85%;
    max-width: 1200px;
    margin: 80px auto;
    padding-top: 108px;
    position: relative;
}
.intro_cont h2 {
    color: #8B712C;
    font-size: 48px;
    line-height: 1.4;
    margin-left: 5%;
    position: relative;
    z-index: 2;
}
.intro_point {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    margin-top: 76px;
    /* position: absolute;
    bottom: 0;
    left: 0; */
    position: relative;
    z-index: 2;
}
.intro_point-item {
    position: relative;
}
.intro_point-item:nth-of-type(1) {
    width: 269px;
    padding: 73px 0 70px;
    margin-right: 16px;
    background: url(../images/bg_intro01.png) center top/contain no-repeat;
}
.intro_point-item:nth-of-type(2) {
    width: 251px;
    padding: 81px 0 77px;
    margin-right: 16px;
    background: url(../images/bg_intro02.png) center top/contain no-repeat;
}
.intro_point-item:nth-of-type(3) {
    width: 267px;
    padding: 78px 0 74px;
    background: url(../images/bg_intro03.png) center top/contain no-repeat;
}
.intro_point-item dt {
    color: #FFF;
    font-size: 24px;
    text-align: center;
    width: 152px;
    background: #FC6B01;
    border-radius: 40px;
    padding: 3px 0;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.intro_point-item dd {
    color: #8B712C;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    line-height: 1.4;
}
.intro_cont img,
.intro_cont video {
    width: 55%;
    max-width: 663px;
    border-radius: 30px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
@media screen and (max-width: 767px) {
    .intro {
        width: 100%;
        max-width: 100%;
        padding: 0 4.2%;
    }
    .intro_cont h2 {
        font-size: 30px;
        margin-left: 0;
        text-align: center;
    }
    .intro_point {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        justify-content: center;
    }
    .intro_point-item:nth-of-type(1),
    .intro_point-item:nth-of-type(2),
    .intro_point-item:nth-of-type(3) {
        width: 100%;
        max-width: 100%;
        padding: 53px 0 48px;
        background: #FEF3EB;
        border-radius: 20px;
    }
    .intro_point-item:nth-of-type(1),
    .intro_point-item:nth-of-type(2) {
        margin-right: 0;
        margin-bottom: 45px;
    }
    .intro_point-item dt {
        top: -21px;
    }
}
/* ----------
    about
------------- */
.about {
    background: #FFF3EB;
    text-align: center;
}
.about_inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 180px 0 90px;
    position: relative;
}
.about_inner:before,.about_inner:after {
    display: inline-block;
    content: "";
    position: absolute;
}
.about_inner:before {
    width: 219px;
    height: 245px;
    background: url(../images/icon_about_01.png) center/contain no-repeat;
    top: -120px;
    right: 22%;
}
.about_inner:after {
    width: 94%;
    height: 35%;
    background: url(../images/icon_about_02.png) center/contain no-repeat;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
.about_inner h2 {
    font-size: 46px;
    line-height: 1.4;
    margin-bottom: 60px;
}
.about_inner p {
    font-size: 22px;
    line-height: 1.8;
}
.about_inner p + p {
    margin-top: 48px;
}
.about_inner p span {
    display: block;
}
@media screen and (max-width: 767px) {
    .about_inner {
        max-width: 100%;
        padding: 120px 0;
    }
    .about_inner:before {
        width: 138px;
        height: 154px;
        right: 6.4%;
        top: -60px;
    }
    .about_inner:after {
        width: 91%;
        height: 19%;
    }
    .about_inner h2 {
        font-size: 32px;
        line-height: 1.3;
    }
    .about_inner p {
        font-size: 18px;
        text-align: left;
        line-height: 2;
        padding: 0 4.2%;
    }
    .about_inner p + p {
        margin-top: 32px;
    }
    .about_inner p span {
        display: inline;
    }
}

/* ----------
    point
------------- */
.point {
    padding-top: 125px;
    padding-bottom: 48px;
    background: #FFF3EB;
}
.point_inner {
    margin: auto;
    padding-left: 10vw;
}
.point_box_wrap {
    position: relative;
}
.point_box_wrap .point_box {
    position: relative;
    text-align: left;
    padding-top: 60px;
}
.point_box_wrap .point_box h3 {
    position: absolute;
    top: -20px;
    left: -120px;
    width: 255px;
    z-index: 2;
}
.point_box_wrap .point_box h4 {
    font-size: 48px;
    line-height: 1.6;
    position: inherit;
    z-index: 2;
}
.point_box_wrap .point_img {
    width: 70%;
    max-width: 970px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1;
}
.point_box_container:not(:first-of-type) {
    margin-top: 80px;
}
.point_box_container .point_box .point1_box_container {
    max-width: 1200px;
    margin: 100px auto 82px 0;
    position: relative;
    z-index: 2;
    /* background: linear-gradient(90deg,#FFF3EB 75%,transparent 75%); */
}
.point1_box_container .point1_box-lead {
    color: #FFF;
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    display: block;
    background: #FC6B01;
    width: 328px;
    padding: 3px 0;
    border-radius: 40px;
}
.point1_box-inner {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: center;
}
.point_box_container:first-of-type .point1_box-img {
    display: flex;
    margin-right: 50px;
    margin-top: 48px;
}
.point_box_container:first-of-type .point1_box-img img:first-of-type {
    width: 276px;
    margin-right: 24px;
}
.point_box_container:first-of-type .point1_box-img img:last-of-type {
    width: 366px;
}
.point_box_container:nth-of-type(2) .point1_box-inner {
    margin-top: 55px;
    align-items: flex-start;
}
.point_box_container:nth-of-type(2) .point1_box-img {
    width: 43.6%;
    max-width: 524px;
    margin-right: 81px;
    margin-top: 11px;
}
.point_box_container:last-of-type .point1_box-inner {
    width: 65%;
    max-width: 780px;
    padding-top: 34px;
    margin-right: auto;
    background: #FFF3EB;
    flex-wrap: nowrap;
}
.point1_box-text p {
    color: #8B712C;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    text-align: left;
}
.point1_box-text p.point1_box-text-merit {
    color: #FC6B01;
    font-size: 28px;
    line-height: 1.4;
    margin-bottom: 44px;
}
.point1_box-text p.point1_box-text-merit span.small {
    font-size: 16px;
}
.point1_box-text p.point1_box-text-merit span.note {
    display: block;
    color: #382F16;
    font-size: 16px;
    margin-top: 24px;
}
.point_box_container .point_case {
    width: 85%;
    max-width: 1200px;
    margin-right: auto;
    background: #FFF3EB;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    position: relative;
}
.point_box_container .point_case + .point_case {
    margin-top: 40px;
}
.point_box_container .point_case-lead {
    color: #8B712C;
    font-size: 28px;
    font-weight: bold;
    text-align: left;
    padding: 0 30px 27px 0;
    background: #FFF3EB;
    position: relative;
    z-index: 2;
}
.point_box_container .point_case-lead span {
    display: block;
}
.point_box_container .point_case .point-case-img {
    width: 65.25%;
    max-width: 783px;
    position: absolute;
    top: 2.5%;
    left: 6.4%;
    z-index: 1;
}
.point_box_container .point_case .point-case-img_caption {
    display: inline-block;
    text-align: left;
    padding-bottom: 16px;
    margin-top: 40px;
    border-bottom: 2px solid #FC6B01;
}
.point_box_container .point_case .point-case-img_caption img {
    width: auto;
}
.point_box_container .point_case-cont {
    width: 43%;
    max-width: 516px;
    margin-top: 141px;
    padding: 30px;
    background: #FFF;
    position: relative;
    z-index: 2;
}
.point_box_container .point_case-cont-lead {
    font-size: 20px;
    font-weight: bold;
    padding-bottom: 12px;
    margin-bottom: 36px;
    border-bottom: 2px solid #8B712C;
}
.point_case-price {
    font-weight: bold;
}
.point_case-price + .point_case-price {
    margin-top: 76px;
    position: relative;
}
.point_case-price + .point_case-price:after {
    display: inline-block;
    content: "";
    width: 40px;
    height: 40px;
    background: url(../images/icon_arrow.png) center/contain no-repeat;
    position: absolute;
    top: -61px;
    left: 111px;
}
.point_case-price .point_case-price-tag {
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    padding: 3px 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    background: #8B712C;
}
.point_case-price .point_case-price-num {
    margin-bottom: 20px;
}
.point_case-price .point_case-price-num img {
    width: auto;
}
.point_case-price .point_case-price-num span {
    display: block;
    font-size: 16px;
    font-family: YuGothic, "Yu Gothic", sans-serif;
    line-height: 1.625;
    margin-bottom: 20px;
}
.point_case-price .point_case-price-brakedown {
    font-weight: normal;
}
.point_case-price .point_case-price-brakedown img {
    width: auto;
}
.point_attn {
    width: 85%;
    max-width: 1200px;
    padding: 28px 0;
    margin: 36px auto 0 0;
    background: #FFE5D3;
}
.point_attn p {
    color: #382F16;
    font-size: 18px;
    line-height: 1.5;
    text-align: center;
}
.point_attn p span {
    display: block;
}
.point_type {
    display: flex;
    flex-direction: column;
    width: 51%;
    max-width: 400px;
}
.point_type + .point_type {
    width: 43%;
    max-width: 340px;
    margin-left: 34px;
}
.point_type img {
    max-width: 286px;
}
.point_type-tag {
    display: inline-block;
    color: #FFF;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    padding: 3px 32px;
    margin: 13px auto 20px 0;
    background: #FC6B01;
    border-radius: 40px;
}
.point_type-text {
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
}
@media screen and (min-width: 1401px) {
    .point_box_container .point_box .point1_box_container {
        background: linear-gradient(90deg,#FFF3EB 90%,transparent 90%);
    }
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
    .point_box_container .point_box .point1_box_container {
        background: linear-gradient(90deg,#FFF3EB 75%,transparent 75%);
    }
}
@media screen and (max-width:767px){
    .point {
        width: 100%;
        max-width: 100%;
        margin: auto;
        margin-top: 0px;
        padding-top: 62px;
    }
    .point_inner {
        padding-left: 0;
        max-width: 600px;
    }
    .point_box_container {
        flex-flow: column;
        flex-direction: column-reverse;
        margin-top: 0;
    }
    .point_box_container .point_box{
        width: auto;
    }
    /* point1 */
    .point_box_container .point_box .point1_box_container {
        max-width: 100%;
        padding: 0 4.2%;
        margin-top: 40px;
        margin-bottom: 60px;
    }
    .point1_box_container .point1_box-lead {
        margin: 0 auto;
    }
    .point_box_wrap .point_box h3 {
        top: -10px;
        left: 4.2%;
        width: 186px;
    }
    .point_box_wrap .point_box h4 {
        font-size: 32px;
        text-align: center;
    }
    .point_box_wrap .point_img {
        max-width: 100%;
        width: 100%;
        position: static;
        margin-top: 28px;
    }
    .point1_box-inner {
        flex-direction: column;
    }
    .point_box_container:first-of-type .point1_box-img {
        flex-direction: column;
        align-items: center;
        margin-right: 0;
        margin-top: 40px;
    }
    .point_box_container:first-of-type .point1_box-img img:first-of-type {
        width: 65.8%;
        max-width: 247px;
        margin-right: 0;
        margin-bottom: 40px;
    }
    .point_box_container:first-of-type .point1_box-img img:last-of-type {
        width: 87.4%;
        max-width: 328px;
    }
    .point_box_container:nth-of-type(2) .point1_box-img {
        width: 100%;
        max-width: 100%;
    }
    .point_box_container:last-of-type .point1_box-inner {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        padding-top: 0;
    }
    .point_box_container:last-of-type .point_box .point1_box_container {
        margin-bottom: 0;
    }
    .point1_box-text {
        margin-top: 40px;
    }
    .point1_box-text p {
        font-size: 16px;
        line-height: 2;
    }
    .point1_box-text p.point1_box-text-merit {
        font-size: 24px;
        line-height: 1.6;
        text-align: center;
    }
    .point1_box-text p.point1_box-text-merit span.small {
        font-size: 14px;
    }
    .point_box_container .point_case {
        width: 100%;
        max-width: 100%;
        margin: 0;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    .point_box_container .point_case + .point_case {
        margin-top: 60px;
        padding-bottom: 84px;
    }
    .point_box_container .point_case-lead {
        padding: 0;
        background: transparent;
        margin-bottom: 28px;
        text-align: center;
    }
    .point_box_container .point_case-lead span {
        font-size: 20px;
    }
    .point_box_container .point_case .point-case-img {
        width: 100%;
        max-width: 100%;
        position: static;
    }
    .point_box_container .point_case .point-case-img_caption {
        font-size: 32px;
        text-align: center;
        padding-bottom: 12px;
        max-width: 330px;
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
    }
    .point_box_container .point_case .point-case-img_caption img {
        max-width: 100%;
    }
    .point_box_container .point_case-cont {
        width: 100%;
        max-width: 100%;
        margin-top: 0;
        text-align: center;
    }
    .point_box_container .point_case-cont-lead {
        font-size: 16px;
        padding: 0 15px 16px;
        margin-bottom: 24px;
    }
    .point_case-price + .point_case-price {
        margin-top: 71px;
    }
    .point_case-price + .point_case-price:after {
        top: -56px;
        left: 0;
        right: 0;
        margin: auto;
    }
    .point_case-price .point_case-price-tag {
        font-size: 16px;
        padding: 3px 12px;
        margin-bottom: 16px;
    }
    .point_case-price .point_case-price-num {
        margin-bottom: 16px;
    }
    .point_case-price .point_case-price-num img {
        max-width: 100%;
    }
    .point_case-price .point_case-price-brakedown img {
        max-width: 100%;
    }
    .point_attn {
        width: 89%;
        max-width: 333px;
        padding: 20px;
        margin: 40px auto 0;
    }
    .point_attn p {
        font-size: 14px;
        line-height: 1.7;
        text-align: left;
    }
    .point_attn p span {
        display: inline;
    }
    .point_type {
        align-items: center;
        width: 100%;
        max-width: 100%;
    }
    .point_type + .point_type {
        margin: 48px auto 0;
        width: 100%;
        max-width: 100%;
    }
    .point_type img {
        order: 2;
        max-width: 217px;
    }
    .point_type-tag {
        order: 1;
        display: block;
        font-size: 24px;
        width: 100%;
        padding: 3px 0;
        margin: 0 auto 24px;
    }
    .point_type-text {
        order: 3;
        font-size: 16px;
        line-height: 2;
    }
}

/* ----------
    features
------------- */
.features {
    text-align: center;
    margin-bottom: 160px;
}
.features h2 {
    font-size: 48px;
    line-height: 1.4;
    margin-bottom: 60px;
}
.features_item {
    width: 71%;
    max-width: 1000px;
    font-weight: bold;
    text-align: center;
    margin: 40px auto 100px;
    padding: 66px 0 60px;
    border-radius: 10px;
    background: #FFF3EB;
    position: relative;
}
.features_num {
    color: #FC6B01;
    font-size: 80px;
    font-family: Helvetica, Arial, sans-serif;
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    margin: auto;
}
.features_item h3 {
    color: #8B712C;
    font-size: 34px;
    line-height: 1.4;
    margin-bottom: 40px;
}
.features_item img {
    width: 43%;
    max-width: 430px;
    margin-bottom: 40px;
    border-radius: 10px;
}
.features_item p {
    color: #8B712C;
    font-size: 20px;
    line-height: 1.2;
    margin-bottom: 20px;
}
.features_note {
    color: #595959;
    font-size: 16px;
    font-weight: normal;
}
.features_example {
    width: 90%;
    max-width: 900px;
    margin: 31px auto 44px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.features_example-item {
    width: 27.8%;
    max-width: 251px;
    padding: 45px 0 39px;
    margin-right: 80px;
    background: #FFF;
    border-radius: 20px;
    position: relative;
}
.features_example-item:before, .features_example-item:after {
    display: inline-block;
    content: "";
    width: 30px;
    height: 6px;
    background: #FC6B01;
    position: absolute;
}
.features_example-item:first-of-type:before, .features_example-item:first-of-type:after {
    top: 0;
    bottom: 0;
    right: -56px;
    margin: auto;
}
.features_example-item:first-of-type:after {
    transform: rotate(90deg);
}
.features_example-item:last-of-type:before, .features_example-item:last-of-type:after {
    right: -60px;
}
.features_example-item:last-of-type:before {
    top: 63px;
}
.features_example-item:last-of-type:after {
    top: 79px;
}
.features_example-item dt {
    display: inline-block;
    width: 226px;
    color: #FFF;
    font-size: 14px;
    padding: 3px 0 2px;
    background: #FC6B01;
    border-radius: 40px;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: -13px;
}
.features_example-item dd {
    color: #8B712C;
    font-size: 53px;
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
}
.features_example-item dd span.unit {
    font-size: 49px;
    font-weight: normal;
}
.features_example .features_example-ans {
    color: #FC6B01;
    font-size: 55px;
    font-weight: bold;
    line-height: 1;
    flex-shrink: 0;
}
.features_example .features_example-ans span {
    display: block;
}
.features_example .features_example-ans span.atm {
    font-size: 24px;
    margin-bottom: 12px;
}
.features_example .features_example-ans span.time {
    font-size: 40px;
}
.features_example + p {
    line-height: 1.8;
    margin-bottom: 28px;
}
.features a {
    color: #8B712C;
    font-size: 17px;
    font-weight: normal;
    text-align: center;
    text-decoration: underline;
}
@media screen and (max-width: 767px) {
    .features {
        margin-bottom: 60px;
        padding: 0 4.2%;
    }
    .features h2 {
        font-size: 32px;
        line-height: 1.3;
    }
    .features_item {
        width: 100%;
        max-width: 100%;
        padding: 62px 0 48px;
    }
    .features_item h3 {
        font-size: 24px;
        line-height: 1.5;
        margin-bottom: 0;
    }
    .features_item img {
        width: 100%;
        max-width: 100%;
        margin: 32px auto;
        border-radius: 0;
    }
    .features_item p {
        font-size: 16px;
        line-height: 2;
        text-align: left;
        padding: 0 4.6%;
    }
    .features_item h3 + p {
        text-align: center;
        line-height: 1.5;
        margin-top: 48px;
    }
    .features_note {
        font-size: 14px;
        text-align: left;
        padding: 0 4.6%;
    }
    .features_example {
        width: 100%;
        max-width: 311px;
        margin: 41px auto 48px;
        flex-wrap: wrap;
    }
    .features_example-item {
        width: 135px;
        padding: 23px 0 14px;
        margin-right: 38px;
        margin-bottom: 48px;
    }
    .features_example-item:last-of-type {
        margin-right: 0;
    }
    .features_example-item:before, .features_example-item:after {
        width: 20px;
        height: 4px;
    }
    .features_example-item:first-of-type:before, .features_example-item:first-of-type:after {
        right: -28px;
    }
    .features_example-item:last-of-type:before, .features_example-item:last-of-type:after {
        width: 16px;
        transform: rotate(90deg);
    }
    .features_example-item:last-of-type:before {
        top: 95px;
        right: 144px;
    }
    .features_example-item:last-of-type:after {
        top: 95px;
        right: 152px;
    }
    .features_example-item dt {
        width: 100%;
        height: 32px;
        font-size: 12px;
        line-height: 1;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .features_example-item dd {
        font-size: 36px;
    }
    .features_example-item dd span.unit {
        font-size: 34px;
    }
    .features_example .features_example-ans {
        font-size: 36px;
        text-align: center;
        margin-bottom: 0;
    }
    .features_example .features_example-ans span.atm {
        font-size: 16px;
        margin-bottom: 8px;
    }
    .features_example .features_example-ans span.time {
        font-size: 28px;
        display: inline;
    }
    .features_example + p {
        line-height: 2;
        margin-bottom: 24px;
    }
    .features a {
        font-size: 16px;
    }
}

/* ----------
    voice
------------- */
.voice {
    background: #FFF3EB;
    padding-top: 84px;
    padding-bottom: 80px;
}
.voice_ttl {
    max-width: 1000px;
    width: 71%;
    margin: -114px auto 0;
}
.voice_ttl h2 {
    font-size: 36px;
    text-align: left;
}
.voice_ttl h2 img {
    display: block;
    width: 473px;
}
.voice_item {
    width: 71%;
    max-width: 1000px;
    margin: 40px auto 80px;
    display: flex;
    align-items: flex-start;
}
.voice_item:last-child {
    margin-bottom: 0;
}
.voice_item-icon {
    width: 24%;
    max-width: 240px;
    margin-right: 40px;
    flex-shrink: 0;
}
.voice_item-text {
    flex-grow: 1;
}
.voice_item-text dt {
    padding-bottom: 24px;
    margin-bottom: 24px;
    border-bottom: 2px solid #8B712C;
}
.voice_item-text dt h3 {
    font-size: 32px;
    line-height: 1.375;
    text-align: left;
    margin-bottom: 16px;
}
.voice_item-text dt h3 span {
    display: block;
}
.voice_item-text dt p {
    display: inline-block;
    font-size: 18px;
    font-weight: bold;
    padding: 12px 16px;
    background: rgba(167,142,74,0.1);
}
.voice_item-text dd p {
    color: #382F16;
    font-size: 20px;
    line-height: 1.8;
}
@media screen and (max-width: 767px) {
    .voice {
        padding: 60px 4.2%;
    }
    .voice_ttl {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }
    .voice_ttl h2 {
        font-size: 20px;
        padding: 0 8.5%;
    }
    .voice_ttl h2 img {
        width: 100%;
    }
    .voice_item {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        align-items: center;
        margin-bottom: 40px;
        padding-bottom: 40px;
        border-bottom: 2px solid #A78E4A;
    }
    .voice_item-icon {
        width: 180px;
        max-width: 180px;
        margin-right: 0;
        margin-bottom: 28px;
    }
    .voice_item-text dt {
        border-bottom: 0;
        padding-bottom: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    .voice_item-text dt h3 {
        font-size: 24px;
        line-height: 1.5;
        text-align: center;
        margin-bottom: 24px;
    }
    .voice_item-text dd p {
        font-size: 18px;
    }
    .voice_item-text .grad-btn p{
        width: 59%;
        max-width: 224px;
        display: block;
        color: #A78E4A;
        font-size: 16px;
        font-weight: bold;
        text-align: center;
        padding: 12px 0;
        margin: 0 auto;
        background: #FFF;
        border: 1px solid #A78E4A;
        border-radius: 40px;
        position: relative;
        transition: all .5s;
    }
    .voice_item-text .grad-btn p:before,
    .voice_item-text .grad-btn p:after {
        display: inline-block;
        content: "";
        width: 10px;
        height: 2px;
        background: #A78E4A;
        border-radius: 4px;
        position: absolute;
        top: 50%;
    }
    .voice_item-text .grad-btn p:before {
        transform: rotate(45deg);
        right: 26px;
    }
    .voice_item-text .grad-btn p:after {
        transform: rotate(-45deg);
        right:20px;
    }
    .grad-wrap.is-open .grad-btn p {
        margin-top: 15px;
    }
    .grad-wrap.is-open .grad-btn p:before {
        transform: rotate(-45deg);
    }
    .grad-wrap.is-open .grad-btn p:after {
        transform: rotate(45deg);
    }
    .voice_item-text .grad-item {
        position: relative;
        overflow: hidden;
        height: 176px;
    }
    .voice_item-text .grad-item:before {
        display: block;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: 88px;
        background: linear-gradient(to bottom,transparent 0%, #FEF3EB 100%);
        content: "";
        z-index: 1;
    }
    .grad-wrap.is-open .grad-item {
        height: auto;
    }
    .grad-wrap.is-open .grad-item:before {
        display: none;
    }
}

/* ----------
    target
------------- */
.target {
    margin-top: 100px;
}
.target h2 {
    font-size: 48px;
    text-align: center;
}
.target h2 + p {
    color: #382F16;
    font-size: 22px;
    font-weight: bold;
    text-align: center;
    margin-top: 24px;
}
.target h2 + p .tag {
    display: inline-block;
    color: #FFF;
    font-size: 18px;
    background: #FC6B01;
    border-radius: 40px;
    margin-right: 16px;
    padding: 2px 16px 1px;
}
.target_box {
    max-width: 800px;
    width: 57%;
    color: #382F16;
    margin: 25px auto;
    border: 2px solid #8B712C;
    border-radius: 10px;
    padding: 30px 30px 40px 40px;
}
.target_box.-terms {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.target_box.-terms .check {
    display: inline-block;
    width: 38px;
    margin-right: 36px;
}
.target_box.-terms > p {
    font-size: 22px;
    line-height: 1.4;
    width: auto;
}
.target_box-details {
    width: 100%;
    margin-top: 28px;
}
.target_box-details p {
    font-size: 20px;
}
.target_box-details ul {
    margin-top: 16px;
}
.target_box-details ul li {
    font-size: 18px;
    line-height: 1.5;
}
.target_box.-purpose {
    text-align: center;
}
.target_box.-purpose p {
    color: #8B712C;
    font-size: 44px;
    font-weight: bold;
    margin-bottom: 20px;
}
.target_box.-purpose p + span {
    display: block;
    color: #382F16;
    font-size: 20px;
    font-weight: lighter;
}
@media screen and (max-width: 767px) {
    .target {
        padding: 80px 2.6% 0;
        margin-top: 0;
    }
    .target h2 {
        font-size: 32px;
    }
    .target_box.-terms + h2 {
        margin-top: 60px;
    }
    .target h2 + p {
        font-size: 14px;
    }
    .target h2 + p .tag {
        font-size: 12px;
        margin-right: 8px;
        padding: 3px 10px;
    }
    .target_box {
        width: 100%;
        max-width: 100%;
        padding: 24px;
    }
    .target_box.-terms {
        align-items: flex-start;
    }
    .target_box.-terms .check {
        width: 24px;
        margin-right: 20px;
    }
    .target_box.-terms > p {
        font-size: 18px;
    }
    .target_box.-purpose p {
        font-size: 24px;
        margin-bottom: 10px;
    }
    .target_box.-purpose p + span {
        font-size: 16px;
    }
    .target_box-details {
        margin-top: 24px;
    }
    .target_box-details p {
        font-size: 18px;
        line-height: 1.4;
    }
    .target_box-details ul li {
        font-size: 16px;
    }
}

/* ----------
    qanda
------------- */
.qanda {
    margin-top: 80px;
    text-align: center;
}
.qanda h2 {
    display: inline-block;
    font-size: 48px;
    position: relative;
}
.qanda h2 span {
    display: inline-block;
    width: 231px;
    position: absolute;
    top: -60px;
    left: -80px;
}
.qanda_item {
    width: 71%;
    max-width: 1000px;
    margin: 48px auto 0;
    padding: 48px 0;
    text-align: left;
    background: #FFF3EB;
    border-radius: 10px;
}
.qanda_item > * {
    width: 80%;
    max-width: 800px;
    margin: 0 auto;
}
.qanda_item dt {
    display: flex;
    align-items: flex-start;
    border-bottom: 2px solid #8B712C;
    padding-bottom: 25px;
    margin-bottom: 32px;
}
.qanda_item dt span {
    display: inline-block;
    width: 40px;
    margin-right: 20px;
    flex-shrink: 0;
}
.qanda_item dt p {
    color: #8B712C;
    font-size: 28px;
    font-weight: bold;
    line-height: 1.43;
    margin-top: -5px;
}
.qanda_item dd {
    color: #382F16;
    font-size: 18px;
    font-weight: bold;
    line-height: 1.8;
}
.qanda_item dd span {
	color: #FC6B01;
}
.qanda + .cta {
    margin-top: 0;
}
@media screen and (max-width: 767px) {
    .qanda {
        padding: 0 4.2%;
    }
    .qanda h2 {
        font-size: 32px;
    }
    .qanda h2 span {
        width: 188px;
        left: -55px;
    }
    .qanda_item {
        width: 100%;
        max-width: 100%;
        margin: 38px auto;
        padding: 40px 24px 28px;
        position: relative;
    }
    .qanda_item > * {
        width: 100%;
        max-width: 100%;
        margin: 0;
    }
    .qanda_item dt {
        padding-bottom: 16px;
        margin-bottom: 24px;
        border-bottom: 1px solid #8B712C;
    }
    .qanda_item dt p {
        font-size: 16px;
        line-height: 2;
    }
    .qanda_item dt span {
        width: 36px;
        margin: 0;
        position: absolute;
        top: -12px;
        left: 0;
    }
    .qanda_item dd {
        font-size: 16px;
        line-height: 2;
    }
    .qanda + .cta {
        padding: 0;
    }
    .qanda + .cta h2 {
        font-size: 24px;
    }
}

/* ----------
    no1
------------- */
.no1 {
    background: url(../images/bg_no1.jpg) center top/100% auto no-repeat;
    padding: 70px 0;
}
.no1 p {
    max-width: 868px;
    width: 62%;
    margin: 0 auto;
}
@media screen and (max-width: 767px) {
    .no1 {
        background: url(../images/bg_no1_sp.jpg) center top/100% auto no-repeat;
        padding: 36px 0;
    }
    .no1 p {
        max-width: 307px;
        width: 81%;
    }
}

/* ----------
    contract
------------- */
.contract {
    text-align: center;
    padding-top: 90px;
    padding-bottom: 80px;
    counter-reset: flow;
}
.contract h2 {
    display: inline-block;
    font-size: 48px;
    position: relative;
}
.contract h2 span {
    display: inline-block;
    width: 226px;
    position: absolute;
    top: -60px;
    left: -100px;
}
.contract_flow {
    max-width: 1000px;
    width: 71%;
    margin: 48px auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    counter-increment: flow;
}
.contract_flow-img {
    width: 24%;
    max-width: 240px;
    margin-right: 40px;
    flex-shrink: 0;
    position: relative;
}
.contract_flow-img:before {
    display: inline-block;
    content: "0" counter(flow);
    color: #FC6B01;
    font-size: 56px;
    font-weight: bold;
    font-family: Helvetica, Arial, sans-serif;
    position: absolute;
    left: 0;
    top: -10px;
}
.contract_flow-text {
    text-align: left;
    flex-grow: 1;
}
.contract_flow-text h3 {
    font-size: 32px;
}
.contract_flow-text h3 + p {
    color: #382F16;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    margin-top: 20px;
}
.contract_flow-text h3 + p span {
    display: block;
}
.contract_flow-text .cta_inner {
    justify-content: flex-start;
    margin-top: 40px;
}
.contract_flow-text .cta_button {
    width: 44%;
    max-width: 320px;
    font-size: 23px;
    padding: 15px 0 14px;
}
.contract_point {
    width: 71%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 66px 0 58px;
    border: 2px solid #8B712C;
    border-radius: 10px;
    position: relative;
}
.contract_point h3 {
    display: inline-block;
    max-width: 200px;
    text-align: center;
    font-size: 40px;
    color: #FC6B01;
    background: #FFF;
    position: absolute;
    top: -30px;
    left: 0;
    right: 0;
    margin: auto;
}
.contract_point-lead {
    font-size: 32px;
}
.contract_point-sup {
    color: #382F16;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.8;
    margin-top: 28px;
}
.contract_point-sup span {
    display: block;
}
@media screen and (max-width: 767px) {
    .contract {
        padding: 100px 4.2% 60px;
    }
    .contract h2 {
        font-size: 32px;
    }
    .contract h2 span {
        width: 183px;
        left: -70px;
    }
    .contract_flow {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        margin: 48px auto 55px;
    }
    .contract_flow-img {
        width: 240px;
        margin-right: 0;
        margin-bottom: 36px;
    }
    .contract_flow-text h3 {
        font-size: 24px;
        text-align: center;
    }
    .contract_flow-text h3 + p {
        font-size: 16px;
        line-height: 2;
    }
    .contract_flow-text h3 + p span {
        display: inline;
    }
    .contract_flow-text h3 + p span.note {
        display: block;
    }
    .contract_flow-text .cta_inner {
        justify-content: center;
        flex-wrap: nowrap;
        margin-top: 32px;
    }
    .contract_flow-text .cta_button {
        width: 168px;
        font-size: 18px;
        padding: 10px 0 9px;
        border: 1px solid #FC6B01;
    }
    .contract_point {
        width: 100%;
        max-width: 100%;
        padding: 60px 24px 36px;
    }
    .contract_point-lead {
        font-size: 24px;
        line-height: 1.5;
    }
    .contract_point-sup {
        font-size: 16px;
        line-height: 2;
        text-align: left;
    }
    .contract_point-sup span {
        display: inline;
    }
}


/* ----------
    store
------------- */
.store {
    background: #FFF3EB;
    padding: 120px 0;
}
.store h2 {
    font-size: 48px;
    line-height: 1.4;
    text-align: center;
    margin-bottom: 80px;
}
.store h2 span {
    display: block;
}
.store_item {
    width: 71%;
    max-width: 1000px;
    padding: 30px 40px 30px 48px;
    margin: 32px auto;
    background: #FFF;
    border-radius: 20px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.store_item-info {
    flex-grow: 1;
    margin-right: 30px;
    text-align: left;
}
.store_item-info h3 {
    font-size: 32px;
}
.store_item-info p {
    color: #382F16;
    font-size: 20px;
    font-weight: bold;
    margin-top: 14px;
}
.store_item-info p + p {
    margin-top: 7px;
}
.store_item-action {
    display: flex;
    flex-direction: column;
}
.store_item-action .cta_button {
    width: 320px;
}
.store_item-action .cta_button span {
    display: inline-block;
    margin-left: 1rem;
    position: relative;
}
.store_item-action .cta_button span:before{
    display: inline-block;
    content: "";
    width: 28px;
    height: 28px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc( (28px + 0.5rem) * -1);
    margin: auto;
}
.store_item-action .cta_button.-store span:before {
    background: url(../images/icon_tel.png) center/contain no-repeat;
}
.store_item-action .cta_button.-atm {
    margin-right: 0;
    margin-top: 16px;
}
.store_item-action .cta_button.-atm span:before {
    background: url(../images/icon_map.png) center/contain no-repeat;
}
.store_item-action .cta_button.-map {
    cursor: pointer;
    transition: 0.2s;
}
.store_map {
    display: none;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    left: 0;
    z-index: 6;
}
.store_map-inner {
    display: inline-block;
    width: auto;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.store_map-close {
    width: 50px;
    height: 50px;
    position: relative;
    text-align: right;
    margin-left: auto;
    cursor: pointer;
    transition: 0.2s;
}
.store_map-close:before, .store_map-close:after {
    display: inline-block;
    content: "";
    width: 100%;
    height: 3px;
    background: #FFF;
    box-shadow: 0 3px 12px rgba(0,0,0,0.1);
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
}
.store_map-close:before {
    transform: rotate(45deg);
}
.store_map-close:after {
    transform: rotate(-45deg);
}
@media screen and (min-width: 768px) {
    .store_item-action .cta_button.-map:hover,
    .store_map-close:hover {
        opacity: 0.8;
        transition: 0.3s;
    }
    .store_map-close:hover .store_map-close:before,
    .store_map-close:hover .store_map-close:after {
        box-shadow: 0 3px 12px rgba(0,0,0,0.32);
    }
}
@media screen and (max-width: 767px) {
    .store {
        padding: 70px 4.2% 36px;
    }
    .store h2 {
        font-size: 32px;
        line-height: 1.3;
    }
    .store_item {
        width: 100%;
        max-width: 100%;
        flex-direction: column;
        padding: 28px;
        margin-bottom: 24px;
    }
    .store_item-info {
        margin-right: 0;
    }
    .store_item-info h3 {
        font-size: 24px;
    }
    .store_item-info p {
        font-size: 14px;
        margin-top: 20px;
    }
    .store_item-info p + p {
        margin-top: 8px;
    }
    .store_item-action {
        margin-top: 24px;
    }
    .store_item-action .cta_button {
        width: 287px;
        padding: 9px 0 8px;
    }
    .store_map-inner {
        width: 92%;
        max-width: 345px;
    }
    .store_map-inner iframe {
        width: 100%;
    }
    .store_map-close {
        width: 30px;
        height: 30px;
    }
    .store_map-close:before, .store_map-close:after {
        top: -10px;
        right: 0;
    }
}

/* footer */
footer {
    background: #8B712C;
    color: #FFF;
    text-align: center;
    line-height: 1.5em;
    margin-top: 90px;
}
footer .layout{
    padding: 60px;
}
footer h2 {
    font-size: 27px;
    font-weight: bold;
    margin: 0 auto 1.4em;
    line-height: 1.5;
}
footer h2 span {
    display: block;
}
footer .call {
    font-size: 18px;
    font-weight: bold;
    margin: 0 auto;
}
footer .call_ttl {
    display: inline-block;
    font-size: 24px;
    position: relative;
}
footer .call_ttl:before {
    background: url(../images/icon_tel.png) center/contain no-repeat;
    content: "";
    display: inline-block;
    width: 33px;
    height: 33px;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: calc((33px + 0.5rem) * -1);
}
footer address{
    display: block;
    font-size: 50px;
    letter-spacing: 2px;
    margin: 30px auto;
}
footer .info {
    margin: 0 auto;
    text-align: left;
}
footer .info_box {
    display: flex;
    justify-content: center;
    font-size: 16px;
}
footer .info p {
    text-align: center;
}
footer .copyright {
    background: #FFF;
    color: #333;
    font-size: 14px;
    text-align: center;
    padding: 1.5em 0;
    letter-spacing: 0.5px;
    border-top: 1px solid #FFF;
}
footer .ncb_logo {
    width: 204px;
    margin: 0 auto 10px;
}
footer .ncb_info {
    margin-bottom: 10px;
}
@media screen and (max-width: 767px) {
    footer {
        margin-top: 0;
    }
    footer .layout{
        padding: 42px 10px;
    }
    footer h2 {
        font-size: 16px;
        font-weight: bold;
        margin: 0 auto 1.4em;
    }
    footer .call {
        font-size: 16px;
    }
    footer .call_ttl {
        font-size: 16px;
    }
    footer .call_ttl:before {
        width: 20px;
        height: 20px;
        left: calc((20px + 0.5rem) * -1);
    }
    footer address{
        font-size: 36px;
        margin: 20px auto;
        line-height: 1.5em;
    }
    footer .info p {
        margin: 0 auto;
        font-size: 14px;
    }
    footer .info_box {
        font-size: 14px;
        flex-wrap: wrap;
    }
    footer .info_item01, 
    footer .info_item02{
        text-align: center;
    }
    footer .copyright {
        font-size: 12px;
    }
}