@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&family=M+PLUS+Rounded+1c:wght@700&family=Noto+Sans+JP:wght@100..900&family=Poppins:wght@500;600;700;800;900&display=swap');

/* Reset */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	border: 0;
	vertical-align: baseline;
	background: transparent;
	font-weight: inherit;
	font-size: inherit;
	font-style: inherit;
	-webkit-tap-highlight-color: transparent;
}

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

ul,
ol {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

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

table {
	border-collapse: collapse;
	border-spacing: 0;
	empty-cells: show;
}

button {
	font-family: inherit;
}

a {
    text-decoration: none;
}

img {
    width: 100%;
}

.u-margin-none {
    margin-top: 0 !important;
}

.u-fz-15 {
    font-size: 15px !important;
}


/* main */
.l-main {
    color: #595757;
    position: relative;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 2;
}

.l-main p + p {
    margin-top: 15px;
}

.sp-block {
    display: block;
}

.pc-block {
    display: none;
}

@media (min-width: 768px) {
    .l-main {
        font-size: 16px;
    }

    .sp-block {
        display: none;
    }
    
    .pc-block {
        display: block;
    }
}



/* header */
.l-mainheader {
    font-family: "Noto Sans JP", sans-serif;
    width: 100%;
    padding: 0 20px;
    background-color: transparent;
    position: fixed;
    top: 15px;
    z-index: 100;
}

.l-mainheader .l-mainheader__logo {
    width: 110px;
    font-size: 8px;
    font-weight: 500;
    color: #595757;
}

.l-mainheader .l-mainheader__logo a {
    display: block;
    transition: 0.5s;
    margin-bottom: 5px;
}

.l-mainheader .l-mainheader__logo a:hover {
    opacity: 0.5;
    transition: 0.5s;
}

.l-mainheader__navtoggle {
    display: none;
}

.l-mainheader__menu {
    font-family: "M PLUS 1", sans-serif;
    font-weight: 600;
}

@media (max-width: 850px) {

    .l-mainheader__bg {
        position: absolute;
        top: -15px;
        left: 0;
        height: 100vh;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.5);
    }

    .l-mainheader__nav {
        display: none;
    }

    .l-mainheader__navtoggle {
        display: block;
        position: absolute;
        z-index: 12;
        right: 15px;
        top: 0;
        width: 45px;
        height: 45px;
        border-radius: 100px;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
    }

    .l-mainheader__navtoggle span {
        height: 2px;
        width: 17px;
        display: block;
        position: absolute;
        top: -8px;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        background-color: #005A5A;
        transition: 0.5s;
    }

    .l-mainheader__navtoggle span:last-child {
        top: 8px;
    }

    .l-mainheader__navtoggle.is-active span {
        transform: rotate(45deg);
        transition: 0.5s;
        top: 0;
    }

    .l-mainheader__navtoggle.is-active span:last-child {
        transform: rotate(-45deg);
    }

    .l-mainheader__menu {
        position: absolute;
        z-index: 11;
        top: -15px;
        left: 0;
        width: 100%;
        border-radius: 0 0 30px 30px;
        background-color: #24A885;
        padding: 75px 0 140px;
    }

    .l-mainheader__menu ul {
        width: 70%;
        margin: auto;
        text-align: center;
    }

    .l-mainheader__menu ul li {
        border-bottom: 2px dotted #fff;
    }

    .l-mainheader__menu ul li a {
        padding: 25px 0;
        color: #fff;
        text-align: center;
        font-size: 18px;
        display: block;
        position: relative;
    }

    .l-mainheader__menu ul li a::after {
        content: '';
        position: absolute;
        width: 25px;
        height: 25px;
        background-image: url(../images/icn_arrow_green.svg);
        right: 4%;
        top: 0;
        bottom: 0;
        margin: auto;
        transform: rotate(90deg);
    }

    .l-mainheader__menu .l-mainheader__ill {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: auto;
        width: 114px;
        line-height: 0;
    }
}

@media (min-width: 849px) {

    .l-mainheader__navtoggle,
    .-mainheader__bg,
    .l-mainheader__menu .l-mainheader__ill {
        display: none;
    }

    .l-mainheader__nav {
        display: block !important;
    }

    .l-mainheader {
        padding: 0 40px;
        top: 36px;
    }

    .l-mainheader .l-mainheader__logo {
        width: 176px;
        font-size: 12px;
    }

    .l-mainheader__menu {
        position: absolute;
        right: 40px;
        top: 0;
        background-color: #fff;
        box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
        border-radius: 60px;
        padding: 17px 40px;
    }

    .l-mainheader__menu ul {
        display: flex;

    }

    .l-mainheader__menu li + li {
        margin-left: 50px;
    }

    .l-mainheader__menu li a {
        font-size: 18px;
        color: #005A5A;
        transition: 0.5s;
    }

    .l-mainheader__menu li a:hover {
        transition: 0.5s;
        opacity: 0.5;
    }
}




.l-mainfooter {
    font-family: "Noto Sans JP", sans-serif;
    margin-top: 50px;
    color: #595757;
    font-size: 10px;
}

.l-mainfooter .l-mainfooter__inner {
    padding: 30px 20px 10px;
    border-top: 1px solid #C6C6C6;
}

.l-mainfooter .l-mainfooter__inner .l-mainfooter__item {
    margin: 0 0 30px;
}

.l-mainfooter .l-mainfooter__inner .l-mainfooter__logo {
    max-width: 110px;
    font-size: 8px;
    margin-bottom: 20px;
}

.l-mainfooter .l-mainfooter__inner .l-mainfooter__tx {
    font-weight: 400;
}

.l-mainfooter .l-mainfooter__inner .l-mainfooter__tx p + p {
    margin-top: 1em;
}

.l-mainfooter .l-mainfooter__inner .copy {
    font-weight: 400;
    text-align: right;
    font-size: 8px;
}

@media (min-width: 768px) {

    .l-mainfooter {
        margin-top: 80px;
        font-size: 14px;
        padding: 0 20px;
    }
    
    .l-mainfooter .l-mainfooter__inner {
        max-width: 1200px;
        margin: auto;
        padding: 40px 0 20px;
    }

    .l-mainfooter .l-mainfooter__inner .l-mainfooter__item {
        margin: 0 0 42px;
        display: flex;
        align-items: flex-start;
    }

    .l-mainfooter .l-mainfooter__inner .l-mainfooter__logo {
        max-width: 156px;
        font-size: 12px;
        margin-bottom: 0;
        margin-right: 78px;
    }

    .l-mainfooter .l-mainfooter__inner .l-mainfooter__tx p + p {
        margin-top: 0;
    }

    .l-mainfooter .l-mainfooter__inner .copy {
        font-size: 10px;
    }

}

@media (min-width: 1200px) {

    .l-mainfooter {
        padding: 0;
    }
}


/* bnr */
.l-bnr {
    position: fixed;
    bottom: 2%;
    right: 5%;
    z-index: 5;
    width: 110px;
    height: 110px;
    text-align: center;
}

.l-bnr .l-bnr__ill {
    position: absolute;
    width: 90px;
    right: 0;
    top: -36%;
}

.l-bnr a {
    line-height: 1.4;
    font-family: "M PLUS 1", sans-serif;
    width: 100%;
    height: 100%;
    background-color: #24A885;
    border-radius: 100px;
    display: block;
    box-shadow: 0 10px 14px rgba(0, 0, 0, 0.16);
    color: #fff;
    display: flex;
    align-items: end;
    justify-content: center;
    padding-bottom: 20%;
}

.l-bnr:hover .l-bnr__ill {
    transform: rotate(5deg) translateY(-5px);
}

@media (min-width: 768px) {
    .l-bnr {
        width: 140px;
        height: 140px;
        bottom: 5%;
        right: 5%;
    }
    
    .l-bnr .l-bnr__ill {
        width: 124px;
        top: -36%;
    }
}


/* MV */
.l-mv {
}

.l-mv .l-mv__wrap {
    position: relative;
    overflow: hidden;
    padding: 80px 0 0 ;
    width: 100%;
    border-radius: 0 0 30px 30px;
    height: 72vh;
    background-image: url(../images/bg_mv_sp.jpg);
    background-size: cover;
    background-position: 60% 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.l-mv .l-mv__wrap::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background-image: url(../images/bg_pt.png);
    background-size: cover;
}

.l-mv .l-mv__inner {
    text-align: center;
    position: relative;
}

.l-mv .l-mv__inner .l-mv__ttl {
    width: 90%;
    margin: auto;
}

.l-mv .l-mv__inner .l-mv__ill {
    width: 60%;
    margin: auto;
}

@media (min-width: 768px) {

    .l-mv .l-mv__wrap {
        padding: 110px 0 0 ;
        border-radius: 0 0 50px 50px;
        height: 600px;
        background-image: url(../images/bg_mv.jpg);
    }

    .l-mv .l-mv__inner {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 90%;
    }

    .l-mv .l-mv__inner .l-mv__ttl {
        width: 55%;
    }

    .l-mv .l-mv__inner .l-mv__ill {
        width: 45%;
    }

}

@media (min-width: 1200px) {

    .l-mv .l-mv__inner {
        max-width: 980px;
    }

    .l-mv .l-mv__inner .l-mv__ttl {
        width: 555px;
    }

    .l-mv .l-mv__inner .l-mv__ill {
        width: 370px;
    }

}

/* section */
.l-section .l-section__inner {
    max-width: 1200px;
    margin: auto;
    padding: 70px 20px 80px 20px;
}

@media (min-width: 1200px) {
    .l-section .l-section__inner {
        padding: 80px 0 120px 0;
    }
}


/* title */
.c-heading-secondary {
    padding-top: 42px;
    position: relative;
    text-align: center;
    margin: 0 0 40px;
}

.c-heading-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 30px;
    height: 35px;
    background-image: url(../images/img_ichigo.png);
    background-size: cover;
}

.c-heading-secondary h2 {
    font-family: "M PLUS Rounded 1c", sans-serif;
    font-weight: 700;
    color: #005A5A;
    font-size: 30px;
    padding-bottom: 7px;
    line-height: 1.4;
}
.c-heading-secondary p {
    font-family: "Poppins", sans-serif;
    font-weight: 600;
    color: #24A885;
    font-size: 13px;
}

@media (min-width: 768px) {

    .c-heading-secondary {
        padding-top: 66px;
        margin: 0 0 70px;
    }

    .c-heading-secondary::before {
        width: 50px;
        height: 59px;
    }

    .c-heading-secondary h2 {
        font-size: 50px;
    }

    .c-heading-secondary p {
        font-size: 18px;
    }
}


/* news */
.c-news .c-news__tab {
    display: flex;
    justify-content: space-between;
    margin-bottom: 30px;
}

.c-news .c-news__tab li {
    flex: 0 0 33%;
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 20px 0;
    position: relative;
}

.c-news .c-news__tab li::after {
    content: '';
    height: 5px;
    width: 100%;
    background-color: #B4DDD0;
    border-radius: 30px;
    position: absolute;
    bottom: 0;
    left: 0;
}

.c-news .c-news__tab li.is-active::before {
    content: '';
    position: absolute;
    bottom: -10%;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 4px solid transparent;
    border-left: 4px solid transparent;
    border-top: 8px solid #24A885;
    border-bottom: 0;
}

.c-news .c-news__tab li.is-active::after {
    background-color: #24A885;
}

.c-news .c-news__contents li {
    padding-bottom: 20px;
    border-bottom: 1px dotted #707070;
}

.c-news .c-news__contents li:nth-child(n + 4) {
    display: none;
}

.c-news .c-news__contents li + li {
    margin-top: 20px;
}

.c-news .c-news__contents dl dt {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.c-news .c-news__contents dl dt .c-news__tag {
    padding: 5px 0 6px;
    width: 100px;
    border-radius: 30px;
    color: #fff;
    line-height: 1;
    text-align: center;
    margin-left: 10px;
    font-size: 12px;
}

.c-news .c-news__contents dl dt .c-news__tag.tag-news {
    background-color: #25A885;
}

.c-news .c-news__contents dl dt .c-news__tag.tag-campaign {
    background-color: #A8C316;
}

.c-news .c-news__contents dl dd {
    padding-right: 6%;
}

.c-news .c-news__contents dl dd a {
    position: relative;
    transition: 0.5s;
    color: #595757;
    display: block;
}

.c-news .c-news__contents dl dd a::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: -6%;
    margin: auto;
    width: 25px;
    height: 25px;
    background-image: url(../images/icn_arrow_green.svg);
    transition: 0.5s;
}

.c-news .c-news__contents dl dd a:hover {
    color: #25A885;
}

.c-news .c-news__contents dl dd a:hover::after {
    right: -8%;
}



@media (min-width: 768px) {
    .c-news .c-news__tab {
        margin-bottom: 50px;
    }

    .c-news .c-news__tab li {
        cursor: pointer;
        padding: 22px 0 24px;
        font-size: 20px;
    }

    .c-news .c-news__tab li.is-active::before {
        bottom: -8px;
        border-right: 6px solid transparent;
        border-left: 6px solid transparent;
        border-top: 8px solid #24A885;
    }

    .c-news .c-news__contents dl {
        display: flex;
        justify-content: space-between;
    }

    .c-news .c-news__contents dl dt {
        flex: 0 0 20%;
        margin-bottom: 0;
    }

    .c-news .c-news__contents dl dt .c-news__tag {
        padding: 5px 0 6px;
        width: 127px;
        margin-left: 20px;
        font-size: 16px;
    }

    .c-news .c-news__contents dl dd {
        flex: 0 0 70%;
    }
}

@media (min-width: 1200px) {
    .c-news .c-news__contents dl dd {
        flex: 0 0 78%;
    }
}


/* column */
.c-2col .c-2col__item + .c-2col__item {
    margin-top: 30px;
}

.c-2col .c-2col__item figure {
    border-radius: 30px;
    overflow: hidden;
    line-height: 0;
}

@media (min-width: 768px) {
    .c-2col {
        display: flex;
        justify-content: space-between;
    }

    .c-2col.c-2col__reverse {
        flex-direction: row-reverse;
    }

    .c-2col .c-2col__item {
        flex: 0 0 48%;
    }

    .c-2col .c-2col__item + .c-2col__item {
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .c-2col .c-2col__item {
        flex: 0 0 570px;
    }
}


/* btn */
.c-btn {
    width: 100%;
    margin: 20px auto 0;
    border-radius: 100px;
    overflow: hidden;
    border: 2px solid #24A885;
    box-sizing: border-box;
    text-align: center;
}

.c-btn a {
    display: block;
    padding: 15px 0;
    line-height: 1.2;
    background-color: #24A885;
    color: #fff;
    font-weight: 700;
    position: relative;
    transition: 0.5s;
}

.c-btn a::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-image: url(../images/icn_arrow.svg);
    right: 4%;
    top: 0;
    bottom: 0;
    margin: auto;
}

.c-btn a:hover {
    transition: 0.5s;
    background-color: #fff;
    color: #24A885;
}

.c-btn a:hover::after {
    background-image: url(../images/icn_arrow_green.svg);
}

@media (min-width: 768px) {
    .c-btn {
        max-width: 320px;
        margin: 40px auto 0;
    }
}


/* note */
.c-note {
    margin-top: 20px;
}
.c-note li {
    position: relative;
    font-size: 12px;
    color: #959595;
}
.c-note li::before {
    content: '※';
}

@media (min-width: 768px) {
    .c-note {
        margin-top: 30px;
    }
}



/* about */
.about ,
.service {
    position: relative;
    background-color: #F0F8F1;
    border-radius: 30px;
}

.about::before ,
.service::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 20px;
    background-image: url(../images/bg_ichigo.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100px;
    height: 130px;
}

.service::before {
    top: 20px;
    transform: rotate(-30deg);
}

@media (min-width: 768px) {
    .about,
    .service {
        border-radius: 50px;
    }

    .about::before,
    .service::before {
        top: -20px;
        left: 20%;
        width: 250px;
        height: 300px;
    }

    .service::before {
        top: 20px;
    }

}

.about .about__list {
    margin-top: 40px;
}

.about .about__list .about__list-ttl {
    text-align: center;
    color: #25A885;
    background-color: #fff;
    width: 100%;
    padding: 15px 0;
    border-radius: 80px;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .about .about__list {
        margin-top: 30px;
        display: flex;
        align-items: center;
    }

    .about .about__list .about__list-ttl {
        width: 120px;
        height: 120px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 10px;
        margin-bottom: 0;
    }
}


/* merit */
.merit {
    position: relative;
}

.merit::before {
    content: '';
    position: absolute;
    top: 40px;
    right: 16px;
    background-image: url(../images/bg_ichigo_green.svg);
    background-repeat: no-repeat;
    background-size: cover;
    width: 100px;
    height: 120px;
}

.merit .c-2col + .c-2col {
    margin-top: 60px;
}

.merit .merit__ttl {
    position: relative;
    font-family: "M PLUS 1", sans-serif;;
    font-weight: 700;
    color: #005A5A;
    font-size: 22px;
    margin-bottom: 20px;
    text-align: center;
}

.merit .merit__ttl .merit__ttl-fukidashi {
    position: relative;
    width: 66px;
    height: 66px;
    margin: 0 auto 18px;
    padding: 8px 0 0 ;
    background-color: #24A885;
    color: #fff;
    border-radius: 100px;
    font-size: 30px;
    line-height: 1.1;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.merit .merit__ttl .merit__ttl-fukidashi::before {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 6px solid transparent;
    border-left: 6px solid transparent;
    border-top: 14px solid #24A885;
    border-bottom: 0;
}

.merit .merit02 .merit__ttl .merit__ttl-fukidashi {
    background-color: #A8C316;
}

.merit .merit02 .merit__ttl .merit__ttl-fukidashi::before {
    border-top-color:  #A8C316;
}

.merit .merit__ttl .merit__ttl-fukidashi span {
    display: block;
    font-size: 10px;
}

@media (min-width: 768px) {
    .merit::before {
        top: 25px;
        right: 20%;
        width: 300px;
        height: 245px;
    }

    .merit .c-2col {
        text-align: center;
    }

    .merit .c-2col + .c-2col {
        margin-top: 70px;
    }

    .merit .merit__ttl {
        font-size: 32px;
        margin-bottom: 30px;
    }

    .merit .merit__ttl .merit__ttl-fukidashi {
        position: relative;
        width: 94px;
        height: 94px;
        margin: 0 auto 20px;
        padding: 14px 0 0 ;
        font-size: 43px;
    }
    
    .merit .merit__ttl .merit__ttl-fukidashi::before {
        bottom: -14px;
        border-right: 9px solid transparent;
        border-left: 9px solid transparent;
        border-top: 20px solid #24A885;
    }

    .merit .merit__ttl .merit__ttl-fukidashi span {
        font-size: 15px;
    }

}


/* service */
.service .l-section__inner {
    padding-bottom: 300px;
}
.service__item {
    background-color: #fff;
    border-radius: 20px;
    overflow: hidden;
}

.service__item .service__item-img {
    background-color: #69D1B1;
    padding: 10px 0;
}

.service__item .service__item-img figure {
    max-width: 150px;
    margin: auto;
}

.service__item .service__item-ttl {
    padding: 25px 20px 30px 20px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #005A5A;
    font-family: "M PLUS Rounded 1c", sans-serif;
}

.service__item .service__item-ttl span {
    display: block;
    font-size: 14px;
    line-height: 1.5;
}

.service__item .service__item-tx {
    padding: 0 20px 30px 20px;
}

.service__item .service__item-tx h4 {
    font-size: 16px;
    font-weight: 700;
    padding-left: 20px;
    position: relative;
    margin-top: 27px;
}

.service__item .service__item-tx p {
    font-weight: 400;
}

.service__item .service__item-tx h4::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 8px;
    height: 8px;
    background-color: #005A5A;
    border-radius: 50px;
}

.service__item-btn {
    padding: 20px;
    position: relative;
    text-align: center;
    border-top: 1px solid #E0E0E0;
    cursor: pointer;
}

.service__item-btn::before {
    content: 'more';
    text-align: center;
    width: 100%;
    transition: 0.5s;
}

.service__item-btn::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    width: 25px;
    height: 25px;
    background-image: url(../images/icn_arrow_green.svg);
    transform: rotate(90deg);
    transition: 0.5s;
}

.service__item-btn.is-active::before {
    content: 'close';
    transition: 0.5s;
}

.service__item-btn.is-active::after {
    transform: rotate(-90deg);
    transition: 0.5s;
}


@media (max-width: 769px) {

    .service__items .service__item + .service__item {
        margin-top: 30px;
    }

}

@media (min-width: 768px) {
    .service .l-section__inner {
        padding-bottom: 280px;
    }

    .service__items {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        align-items: flex-start;
    }

    .service__items .service__item {
        flex: 0 0 48%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .service__items .service__item.is-active {
        height: auto;
    }

    .service__items .service__item:nth-child(n + 3) {
        margin-top: 30px;
    }
    
    .service__items .service__item + .service__item {
        margin-left: 30px;
    }
    
    .service__items .service__item:first-child,
    .service__items .service__item:nth-child(3) {
        margin-left: 0;
    }

    .service__item .service__item-img figure {
        max-width: 170px;
    }
    
    .service__item .service__item-ttl {
        padding: 30px 30px 40px 30px;
        font-size: 26px;
    }

    .service__item .service__item-ttl span {
        font-size: 18px;
    }

    .service__item .service__item-tx {
        padding: 0 30px 40px 30px;
    }

    .service__item .service__item-tx h4 {
        font-size: 18px;
        margin-top: 40px;
    }

}

@media (min-width: 1200px) {
    .service__items .service__item {
        flex: 0 0 380px;
    }
    .service__items .service__item:nth-child(3) {
        margin-left: 30px;
        margin-top: 0;
    }

    .service__items .service__item:nth-child(n + 4) {
        margin-top: 30px;
    }
}



.atm {
    padding: 0 20px;
    margin-top: -210px;
}

.atm .l-section__inner {
    background-color: #00837D;
    border-radius: 30px;
    position: relative;
    padding: 40px 20px 140px;
}

.atm .l-section__inner .c-heading-secondary {
    margin: -60px auto 0;
    
}
.atm .l-section__inner .c-heading-secondary h2 {
    color: #fff;
    padding-bottom: 0;
}

.atm .atm__contents {
    margin-top: 20px;
    text-align: center;
    color: #fff;
    position: relative;
}

.atm .atm__contents p {
    font-size: 16px;
}

.atm .atm__contents .atm_ill {
    position: absolute;
    bottom: -140px;
    left: 0;
    right: 0;
    margin: auto;
    width: 111px;
    line-height: 0;
}

.atm .atm__btnarea .c-btn {
    border-color: #00837D;
}

.atm .atm__btnarea .c-btn a {
    background-color: #fff;
    color: #005A5A;
}

.atm .atm__btnarea .c-btn a::after {
    background-image: url(../images/icn_arrow_green.svg);
}

.atm .atm__btnarea .c-btn a:hover {
    color: #fff;
    background-color: #24A885;
}

.atm .atm__btnarea .c-btn a:hover::after {
    background-image: url(../images/icn_arrow.svg);
}

@media (min-width: 768px) {

    .atm {
        padding: 0 20px;
        margin-top: -150px;
    }

    .atm .l-section__inner {
        border-radius: 50px;
        padding: 60px 0 180px;
    }

    .atm .l-section__inner .c-heading-secondary {
        margin: -90px auto 0;
    }

    .atm .atm__contents {
        margin-top: 50px;
    }

    .atm .atm__contents p {
        font-size: 18px;
    }

    .atm .atm__contents .atm_ill {
        width: 167px;
        left: 50px;
        bottom: -180px;
        margin: 0;
    }

    .atm .atm__btnarea {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 36px;
    }

    .atm .atm__btnarea .c-btn {
        margin: 0;
    }

    .atm .atm__btnarea .c-btn:first-child {
        margin: 0 30px 0 0;
    }

}

@media (min-width: 1200px) {
    .atm {
        padding: 0;
    }

    .atm .l-section__inner {
        padding: 60px 0 70px;
    }

    .atm .atm__contents .atm_ill {
        bottom: -70px;
    }

}


.attention {
    margin-top: 60px;
    padding: 0 20px;
}

.attention .attention__ttl {
    font-size: 19px;
    color: #005A5A;
    margin-bottom: 33px;
}

.attention .attention__ttl h2 {
    font-weight: 700;
}

.attention ul li {
    font-weight: 400;
    position: relative;
    padding-left: 20px;
}

.attention ul li::before {
    content: '●';
    position: absolute;
    left: 0;
    color: #25A885;
}

@media (min-width: 768px) {
    .attention {
        margin-top: 70px;
        padding: 0 20px;
    }
    .attention .attention__inner {
        max-width: 1200px;
        margin: auto;
    }

    .attention .attention__ttl {
        font-size: 26px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1200px) {
    .attention {
        padding: 0;
    }
}
