@charset "UTF-8";

/* --------------------------
GoogleFont
-----------------------------*/
body {
    font-family: 'BIZ UDPGothic', sans-serif;
    font-family: 'Noto Sans JP', sans-serif;
    letter-spacing: 0.3px;
    -webkit-tap-highlight-color: transparent;
}

main {
    overflow: hidden;
}

.wrapper {
    position: relative;
    min-height: 100vh;
    padding-bottom: 80px;
}

@media screen and (max-width: 430px) {
    .wrapper {
        padding-bottom: 50px;
    }
}

/* --------------------------
common
-----------------------------*/
@media screen and (max-width: 768px) {
    .pc_visual {
        display: none;
    }
}

.animation_up.delighter {
    transition: 1.8s cubic-bezier(.33, 0, .01, 1);
    transform: scale(1.2);
}

.animation_up.delighter.started {
    transform: scale(1);
    transition-delay: .15s;
}

.pc {
    display: block !important;
}

.sp {
    display: none !important;
}

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

    .sp {
        display: block !important;
    }
}

*:focus {
    outline: none;
}

a {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    cursor: pointer;
}

.text_URL a:link {
    color: #58A573;
    text-decoration: underline;
}

.text_URL a:visited {
    color: #8AC79F;
    text-decoration: underline;
}
.text_URL a:active {
    color: #58A573;
    text-decoration: underline;
}



.store_btn img:hover,
#news .news_item:hover,
.footer_logo:hover,
.more_btn:hover,
.newa_detail_btn:hover,
.news_list_item:hover {
    opacity: 60%;
}

/* --------------------------
Header
-----------------------------*/
header {
    display: flex;
    width: 100%;
}

.header_layout {
    position: fixed;
    display: flex;
    z-index: 980;
    top: 0;
    width: 100vw;
    height: 6vw;
    background-color: #FFFFFF;
    box-sizing: border-box;
    justify-content: space-between;
    padding: 0 5vw;
}

.header_logo {
    width: 17vw;
    text-align: center;
    margin: auto 0;
}

.navigation_menu {
    width: 35vw;
    margin: auto 0;
}

.navigation_menu .close {
    display: none;
}

header ul {
    width: 100%;
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: space-between;
}

header ul li a {
    display: block;
    position: relative;
    width: 100%;
    text-align: right;
    color: #35A86E;
    font-weight: 800;
    font-size: 1.4vw;
    margin-top: 0.8vw;
    height: 2.5vw;
}

header ul li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 4px;
    border-radius: 2px;
    background: #35A86E;
    bottom: -0.6vw;
    transform: scale(0, 1);
    transform-origin: center top;
    transition: transform 0.3s;
}

header ul li a:hover::after {
    transform: scale(1, 1);
}

#hamburger {
    display: none;
}

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

    .header_logo {
        width: 300px;
        text-align: center;
        margin: auto 0;
    }

    .header_layout {
        height: 4.5vw;
        padding: 0 6vw;
    }

    .navigation_menu {
        width: 450px;
    }

    header ul li a {
        font-size: 18px;
        height: 2vw;
    }

    header ul li a::after{
        bottom: -0.2vw;
    }

}

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

    .header_logo {
        width: 20vw;
        text-align: center;
        margin: auto 0;
    }

    .header_layout {
        height: 7vw;
        padding: 0 6vw;
    }

    .navigation_menu {
        width: 30vw;
    }

    header ul li a {
        font-size: 1.4vw;
    }

}

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

    .header_logo {
        width: 40vw;
        text-align: center;
        margin: auto 0;
    }

    .header_layout {
        height: 18vw;
        padding: 0 6vw;
    }

    #hamburger {
        z-index: 985;
        display: block !important;
        position: absolute;
        top: 1vw;
        right: 1vw;
        width: 17vw;
        height: auto;
        padding: 3vw;
    }

    .hamburger_btn{

    }

    /* --------------------------
  Hamburger Menu
  -----------------------------*/
    .navigation_menu {
        z-index: 999;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        display: block;
        width: 100%;
        background: #FFFFFF;
        transition: all .0s;
        opacity: 0;
        transform: translateY(-100%);
    }

    .navigation_menu ul {
        padding: 0;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        height: 110vw;
    }

    .navigation_menu li {
        margin: 0;
        padding: 0;
    }

    .navigation_menu li span {
        font-size: 15px;
        color: #fff;
    }

    .navigation_menu li a,
    .sp-nav li span {
        display: block;
        padding: 20px 0;
    }

    .navigation_menu .close {
        z-index: 985;
        display: block !important;
        position: absolute;
        top: 1vw;
        right: 1vw;
        width: 17vw;
        height: auto;
        padding: 3vw;
    }

    .toggle {
        transform: translateY(0);
        opacity: 1;
    }

    .main-visual {
        padding: 0 4%;
    }

    h2 {
        line-height: 1.6;
        text-align: center;
    }

    header .navigation_menu ul li a {
        font-size: 20px;
        margin-top: 10vw;
    }

    header .navigation_menu ul li a::after {
        position: absolute;
        left: 0;
        content: '';
        width: 100%;
        height: 4px;
        border-radius: 2px;
        background: #35A86E;
        bottom: -1px;
        transform: scale(0, 1);
        transform-origin: center top;
        transition: transform 0.3s;
    }
}

@media screen and (min-width: 1280px) {
    header ul li a {
        font-size: 18px;
    }

}


/* --------------------------
Contents
-----------------------------*/
main {
    margin-top: 6vw;
}


.top_photo {
    margin: 1vw 5vw 5vw 5vw;
}

.catchimage {
    display: grid;
    align-items: center;
    background-image: url(../images/top_image.png);
    height: 60vh;
    min-height: 550px;
    width: 100%;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.main_image {
    width: 100%;
    font-size: 5vw;
    font-weight: 700;
    text-align: left;
    line-height: 140%;
    margin-left: 5vw;
    margin-bottom: 6vw;
    color: #FFFFFF;
    text-shadow: #373940 1px 0 50px;
}

.main_image img {
    width: 28vw;
    margin-bottom: 2vw;
}

.store_btn {
    width: 28vw;
    display: flex;
    justify-content: space-between;
    margin: 3.3vw auto;
}

.store_btn img {
    width: 13vw;
    height: auto;
}

@media screen and (min-width: 1500px) {
    main {
        margin-top: 4.5vw;
    }

    .main_image {
        font-size: 70px;
    }

    .main_image img {
        width: 400px;
        margin-bottom: 2vw;
    }

    .catchimage {
        height: 70vh;
    }

    .store_btn {
        width: 450px;
        margin: 3.3vw auto;
    }

    .store_btn img {
        width: 200px;
    }
}

@media screen and (max-width: 960px) {
    main {
        margin-top: 7vw;
    }

    .catchimage {
        height: 40vh;
        min-height: 400px;
        align-items: center;
        background-image: url(../images/top_image.png);
    }

    .store_btn {
        width: 44vw;
    }

    .store_btn img {
        width: 20vw;
    }
}

@media screen and (max-width: 430px) {
    main {
        margin-top: 18vw;
    }

    .catchimage {
        height: 70vh;
        min-height: 500px;
        align-items: start;
        background-image: url(../images/top_image_sp.png);
    }

    .main_image {
        font-size: 10vw;
        text-align: center;
        margin: 3vw;
        width: auto;
    }

    .main_image img {
        width: 50vw;
        margin-bottom: 2vw;
    }

    .store_btn {
        width: 74vw;
    }

    .store_btn img {
        width: 35vw;
    }
}
@media screen and (max-width: 320px) {
    .catchimage {
        min-height: 80vh;
    }
}



/* --------------------------
Contents News
-----------------------------*/
#news {
    background-color: #EFEFF4;
    padding-bottom: 4vw;
}

#news .title {
    color: #34525F;
    text-align: center;
    font-size: 3.6vw;
    padding-top: 3vw;
    padding-bottom: 2vw;
}

.news_table {
    display: flow;
    position: relative;
    width: 65vw;
    margin: 0 auto;
}

.news_item {
    display: flex;
    background-color: #FFFFFF;
    height: auto;
    min-height: 4.5vw;
    border-radius: 1.5vw;
    margin-bottom: 1.5vw;
    justify-content: space-between;
    text-align: left;
}

.news_item p {
    font-weight: 800;
    color: #34525F;
    margin: auto;
}

.sp_news_inner {
    display: flex;
    padding: 10px 0;
}

.news_date {
    font-size: 1.2vw;
    width: auto;
    padding-right: 1.5vw;
}

.news_title {
    font-size: 1.2vw;
    width: 100%;
    text-align: left;
    padding: 0 1.5vw 0 1.2vw;
}

.arroe_icon {
    width: auto;
    height: auto;
    margin: auto;
    margin-right: 1.5vw;
    vertical-align: bottom;
    line-height: 1.0em;
}

.arroe_icon img {
    width: 18px;
    max-width: none;
}


.more_btn_item {
    margin-top: 30px;
}

.more_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 12.5vw;
    height: 3vw;
    margin: auto;
    border-radius: 1.5vw;
    background-color: #35A86E;
    text-align: center;
}

.more_btn p {
    font-size: 1.3vw;
    font-weight: 700;
    color: #ffffff;
}



.news_label {
    display: flex;
    margin-left: 2vw;
}

.label {
    margin: auto;
    text-align: center;
    margin-left: 0;
}

.label_info {
    background-color: #1D9EBF;
    border-radius: 6px;
    width: 5vw;
    height: auto;
    text-align: center;
}

.label_important {
    background-color: #E3596E;
    border-radius: 6px;
    width: 5vw;
    height: auto;
    text-align: center;
}

.label_feature {
    background-color: #35A86E;
    border-radius: 6px;
    width: 5vw;
    height: auto;
    text-align: center;
}

.label p {
    font-size: 0.8vw;
    font-weight: 600;
    color: #ffffff;
    width: auto;
    padding: 0.3vw 0;
    text-align: center;
}



@media screen and (min-width: 1280px) {
    #news .title {
        font-size: 40px;
    }

    .news_date {
        font-size: 20px;
    }

    .news_title {
        font-size: 20px;
    }

    .label p {
        font-size: 14px;
    }

    .more_btn{
        width: 230px;
        height: 50px;
    }

    .more_btn p{
        font-size: 16px;
    }

}

@media screen and (max-width: 960px) {
    #news {
        padding-bottom: 6vw;
    }

    #news .title {
        font-size: 4vw;
        padding-top: 4vw;
        padding-bottom: 2vw;
    }

    .news_table {
        width: 90vw;
    }

    .news_item {
        display: flex;
        height: auto;
    }

    .sp_news_inner {
        display: flow;
        width: 83vw;
        margin: 0;
    }

    .news_date {
        padding-right: 0;
        font-size: 1.8vw;
        padding-left: 4vw;
    }

    .label {
        margin-left: 2vw;
    }

    .news_label {
        display: inline-flex;
        margin-left: auto;
    }

    .label_info {
        width: 7vw;

    }

    .label_important {
        width: 7vw;

    }

    .label_feature {
        width: 7vw;

    }

    .label p {
        font-size: 1.2vw;
    }

    .news_title {
        padding-left: 4vw;
        font-size: 2.1vw;
    }

    .news_item p {
        margin-bottom: 0.5vw;
    }

    .arroe_icon {
        width: 25px;
    }

    .more_btn_item {
        margin-top: 30px;
    }

    .more_btn {
        width: 180px;
        height: 40px;
        border-radius: 20px;
    }

    .more_btn p {
        font-size: 2vw;
    }

}

@media screen and (max-width: 430px) {
    #news {
        padding-bottom: 10vw;
    }

    #news .title {
        font-size: 25px;
        padding-top: 8vw;
        padding-bottom: 8vw;
    }

    .news_table {
        width: 90vw;
    }

    .news_item {
        display: flex;
        height: auto;
    }

    .sp_news_inner {
        display: flow;
        width: 83vw;
        margin: 0;
    }

    .news_date {
        padding-right: 0;
        font-size: 16px;
        padding-left: 4vw;
    }

    .label {
        margin-left: 2vw;
    }

    .news_label {
        display: inline-flex;
        margin-left: auto;
    }

    .label_info {
        width: 17vw;

    }

    .label_important {
        width: 17vw;

    }

    .label_feature {
        width: 17vw;

    }

    .label p {
        font-size: 12px;
    }


    .news_title {
        padding-left: 4vw;
        font-size: 16px;
    }

    .line {
        display: none;
    }

    .news_item p {
        margin-bottom: 2vw;
    }

    .arroe_icon {
        width: 6.5vw;
    }

    .more_btn_item {
        margin-top: 30px;
    }

    .more_btn {
        width: 150px;
        height: 40px;
        border-radius: 20px;
    }

    .more_btn p {
        font-size: 14px;
    }
}


/* --------------------------
youtube
-----------------------------*/
#youtube_area{
    width: 100%;
    margin: 30px 0;
}

.youtube_video{
    width: 100%;
    aspect-ratio: 16 / 9;
}


/* --------------------------
Contents Feature
-----------------------------*/
#feature {
    width: 100%;
}

#feature .feature_main {
    position: relative;
    margin: 0 auto;
    padding-top: 7vw;
    width: 74vw;
}

#feature .About_inner {
    display: flex;
    position: relative;
    align-items: end;
    flex-direction: row-reverse;
    margin-bottom: 7vw;
}

#feature .imageWrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    width: 44vw;
    border-radius: 20px;
}

#feature .text_box1 {
    margin-left: 5vw;
    width: 52vw;
    margin-top: 4vw;
}

#feature .text_box2 {
    margin-right: 5vw;
    width: 52vw;
    margin-top: 4vw;
}

#feature .title_pc {
    font-weight: 800;
    color: #34525F;
    position: relative;
    padding-bottom: 4.1vw;
    font-size: 3.6vw;
    line-height: 1.6;
}

#feature .feature_content {
    margin-right: 0;
    padding-top: 2vw;
}

#feature .feature_content .sub_title {
    font-weight: bold;
    font-size: 1.7vw;
    line-height: 1.6;
    margin-bottom: 0.8vw;
    color: #34525F;
}

#feature .feature_content .text {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1.2vw;
    line-height: 2.0;
    color: #34525F;
}

.About__title--sp {
    display: none;
}

.sp {
    display: none;
}

.balloon {
    position: relative;
    display: inline-block;
    margin: 0 0 2vw 0;
    padding: 15px 20px;
    min-width: 120px;
    max-width: 100%;
    color: #34525F;
    font-size: 1.5vw;
    line-height: 1.6;
    font-weight: 700;
    background: #FFF;
    border: solid 3px #58A573;
    box-sizing: border-box;
    border-radius: 20px;
}

.balloon:before {
    content: "";
    position: absolute;
    bottom: -24px;
    left: 20%;
    margin-left: -15px;
    border: 12px solid transparent;
    border-top: 12px solid #FFF;
    z-index: 2;
}

.balloon:after {
    content: "";
    position: absolute;
    bottom: -30px;
    left: 20%;
    margin-left: -17px;
    border: 14px solid transparent;
    border-top: 14px solid #58A573;
    z-index: 1;
}

.balloon p {
    margin: 0;
    padding: 0;
}

.balloon .example {
    color: #58A573;
    font-size: 1.3vw;
}

@media screen and (min-width: 1500px) {
    #feature .title_pc {
        font-size: 55px;
    }

    .balloon {
        margin: 0 0 30px 0;
        padding: 15px 20px;
        min-width: 120px;
        max-width: 100%;
        color: #34525F;
        font-size: 1.5vw;
        line-height: 1.6;
    }

    .balloon:before {
        left: 20%;
        margin-left: -15px;
    }

    .balloon:after {
        bottom: -30px;
        left: 20%;
        margin-left: -17px;
    }

    .balloon .example {
        font-size: 1.3vw;
    }

    #feature .feature_content .text {
        font-size: 18px;
    }
}

@media screen and (min-width: 1280px) {
    #feature .title_pc {
        font-size: 3.6vw;
    }

    #feature .feature_content .sub_title {
        font-size: 1.7vw;
    }

    #feature .feature_content .text {
        font-size: 1.2vw;
    }
}

@media screen and (max-width: 960px) {
    #feature .feature_main {
        width: 84vw;
        padding-top: 12vw;
    }

    #feature .text_box1 {
        margin-top: auto;
        margin-left: 4vw;
    }

    #feature .text_box2 {
        margin-top: auto;
        margin-right: 4vw;
    }

    #feature .title_pc {
        padding-bottom: 1vw;
    }

    #feature .feature_content .text {
        margin-top: 2vw;
        font-size: 2vw;
        line-height: 1.6;
    }

    .balloon {
        padding: 8px 12px;
        min-width: 120px;
        max-width: 100%;
        font-size: 2vw;
        line-height: 1.4;
        border-radius: 16px;
    }

    .balloon:before {
        left: 20%;
        margin-left: -15px;
    }

    .balloon:after {
        bottom: -30px;
        left: 20%;
        margin-left: -17px;
    }

    .balloon .example {
        font-size: 1.8vw;
        padding-bottom: 0.5vw;
    }

}

@media screen and (max-width: 430px) {
    #feature .feature_main {
        width: 90vw;
        margin-bottom: 13vw;
    }

    #feature .title_pc {
        display: none;
    }

    #feature .About_inner {
        flex-direction: column-reverse;
    }

    #feature .About_inner {
        margin-bottom: 10vw;
    }

    .About__title--sp {
        display: block;
        font-weight: 800;
        color: #34525F;
        line-height: 1.4;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 2;
    }

    .About__title--sp .title {
        font-size: 8.5vw;
    }

    #feature .text_box1 {
        margin-left: 0;
        width: 100%;
        margin-top: 4vw;
    }

    #feature .imageWrapper {
        width: 100%;
        margin-top: 18vw;
    }

    #feature .feature_content {
        padding-top: 0;
    }

    .balloon {
        margin: 0 0 10px 0;
        padding: 15px 20px;
        min-width: 120px;
        max-width: 100%;
        color: #34525F;
        font-size: 3.8vw;
        line-height: 1.6;
    }

    .balloon:before {
        left: 20%;
        margin-left: -15px;
    }

    .balloon:after {
        bottom: -30px;
        left: 20%;
        margin-left: -17px;
    }

    .balloon .example {
        font-size: 3.3vw;
    }

    #feature .feature_content .text {
        font-size: 16px;
        line-height: 1.8;
        margin: 4vw 0;
    }

    .sp {
        display: block;
    }

    #feature .text_box2 {
        display: none;
    }
}



/* --------------------------
Contents Feature Another
-----------------------------*/
.feature_another {
    background-color: #EFEFF4;
    padding: 4vw 0 0;
}

.feature_another h1 {
    font-weight: 800;
    color: #34525F;
    padding-bottom: 5vw;
    font-size: 3.6vw;
    text-align: center;
}

.feature_another .feature_another_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    width: 74vw;
    margin: auto;
}

.feature_another .content {
    display: flex;
    flex-direction: column-reverse;
    align-items: baseline;
    margin-bottom: 5vw;
    width: 33vw;
}

.feature_another_list .content .another_img {
    position: relative;
    border-radius: 20px;
    height: auto;
    overflow: hidden;
}

.feature_another_list .content .ttl {
    font-size: 2vw;
    line-height: 1.6;
    margin: 1vw 0 0.7vw 0;
    font-weight: 800;
    color: #34525F;
}

.feature_another_list .content .text {
    font-weight: 500;
    font-size: 1.2vw;
    line-height: 1.7;
    color: #34525F;
}

@media screen and (min-width: 1280px) {
    .feature_another h1 {
        font-size: 40px;
        text-align: center;
    }

    .feature_another_list .content .ttl {
        font-size: 24px;
    }

    .feature_another_list .content .text {
        font-size: 18px;
    }
}

@media screen and (max-width: 960px) {
    .feature_another .feature_another_list {
        width: 85vw;
    }

    .feature_another .content {
        width: 40vw;
    }

    .feature_another h1 {
        font-size: 4vw;
    }

    .feature_another_list .content .ttl {
        font-size: 2.5vw;
        margin: 1.5vw 0 0.5vw 0;
    }

    .feature_another_list .content .text {
        font-size: 1.8vw;
        margin: 1.4vw 0 2vw 0;
    }
}

@media screen and (max-width: 430px) {
    .feature_another h1 {
        font-size: 25px;
        padding-top: 4vw;
        padding-bottom: 10vw;
    }

    .feature_another .feature_another_list {
        width: 90vw;
    }

    .feature_another_list .content .another_img {
        height: 58vw;
    }

    .feature_another .content {
        width: 100%;
        margin-bottom: 8vw;
    }

    .feature_another_list .content .ttl {
        font-size: 20px;
        margin-top: 2vw;
    }

    .feature_another_list .content .text {
        font-size: 16px;
        line-height: 1.6;
        margin: 1vw 0;
    }
}

/* --------------------------
user_voice
-----------------------------*/
#user_voice {
    background-color: #EFEFF4;
    padding: 0 7vw 5vw;
}

.user_voice_back{
    background-color: #ffffff;
    border-radius: 50px;
    padding: 5vw 0;
}

#user_voice .title{
    padding-bottom: 2.5vw;
}

#user_voice h1 {
    font-weight: 800;
    color: #34525F;
    padding-bottom: 1.5vw;
    font-size: 3.6vw;
    text-align: center;
}

#user_voice h2 {
    font-weight: 800;
    color: #34525F;
    padding-bottom: 0.5vw;
    font-size: 2vw;
    text-align: center;
}

#user_voice .sab_comment{
    font-weight: 800;
    color: #34525F;
    font-size: 1.7vw;
    text-align: center;
    padding-bottom: 4vw;
}

#user_voice .user_voice_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: baseline;
    width: 70vw;
    margin: auto;
}

#user_voice .content {
    display: flex;
    flex-direction: column-reverse;
    align-items: baseline;
    margin-bottom: 2vw;
    width: 18vw;
}

#user_voice .user_voice_img {
    margin-bottom: 1.6vw;
    overflow: hidden;
    border-radius: 50%;
}

#user_voice .user_voice_img img {
    border-radius: 50%;
}


#user_voice .user_voice_text .ttl {
    margin-bottom: 0.90278vw;
    font-size: 1.5vw;
    line-height: 1.4;
    font-weight: 800;
    color: #34525F;
    text-align: center;
}

#user_voice .user_voice_text .text {
    font-weight: 400;
    font-size: 1.2vw;
    line-height: 1.7;
    color: #34525F;
}

@media screen and (min-width: 1500px) {
    #user_voice h1 {
        padding-bottom: 3vw;
        font-size: 40px;
    }

    #user_voice h2 {
        padding-bottom: 0.5vw;
        font-size: 25px;
    }

    #user_voice .user_voice_text .ttl {
        margin-bottom: 0.90278vw;
        font-size: 24px;
    }

    #user_voice .user_voice_text .text {
        font-size: 18px;
    }

    #user_voice .title{
        padding-bottom: 10px;
    }

    #user_voice .sab_comment{
        font-size: 20px;
        padding-bottom: 50px;
    }

}

@media screen and (max-width: 960px) {
    .user_voice_back {
        border-radius: 30px;
    }
    #user_voice h2 {
        font-size: 2.5vw;
    }

    #user_voice h1 {
        font-size: 4vw;
    }

    #user_voice .user_voice_list {
        width: 76vw;
    }

    #user_voice .content {
        width: 21vw;
    }

    #user_voice .user_voice_text .ttl {
        font-size: 2.2vw;
    }

    #user_voice .user_voice_text .text {
        font-size: 1.8vw;
        margin: 1.4vw 0 2vw 0;
    }
}

@media screen and (max-width: 430px) {
    #user_voice {
        padding: 0 5vw 10vw;
    }
    .user_voice_back {
        border-radius: 30px;
        padding: 7vw 0;
    }

    #user_voice h2 {
        font-size: 16px;
    }

    #user_voice h1 {
        font-size: 25px;
        padding-bottom: 5vw;
    }

    #user_voice .title{
        padding-bottom: 2.5vw;
    }

    #user_voice .sab_comment{
        font-size: 18px;
        padding-bottom: 7vw;
    }


    #user_voice .user_voice_list {
        width: 100%;
    }

    #user_voice .content {
        width: 100%;
        margin: auto 6vw;
        margin-bottom: 7vw;
    }

    #user_voice .user_voice_img {
        margin: auto;
        margin-bottom: 1.3vw;
        width: 60vw;
    }

    #user_voice .user_voice_text {
        margin: 0;
    }

    #user_voice .user_voice_text .ttl {
        font-size: 20px;
        margin-top: 1vw;
        text-align: left;
    }

    #user_voice .user_voice_text .text {
        font-size: 16px;
        line-height: 1.6;
        margin: 1vw 0;
    }
}

/* --------------------------
Footer
-----------------------------*/

footer {
    background-color: #ffffff;
    padding-top: 8vw;
}

footer .download {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 75vw;
    margin: auto;
}

footer .download .iphon_img {
    width: 12vw;
}

footer .download .download_box {
    display: flex;
    flex-direction: column-reverse;
    align-items: baseline;
    width: auto;
    margin-left: 5vw;
}

footer .download .download_box .ttl {
    font-weight: 800;
    color: #34525F;
    padding-bottom: 0.5vw;
    font-size: 3.6vw;
    text-align: left;
}

footer .download .download_box .ttl .sub_tll {
    font-size: 2.5vw;
}

footer .download .download_box .store_btn {
    display: flex;
    position: relative;
    justify-content: space-between;
    margin: 2vw 0;
    width: 32vw;
}

footer .download .download_box .store_btn img {
    margin: 0;
    width: 15vw;
}

footer .download .download_box .txt {
    font-weight: 600;
    font-size: 1.2vw;
    line-height: 1.7;
    color: #34525F;
}


@media screen and (min-width: 1500px) {
    footer {
        padding-top: 100px;
        padding-bottom: 10px;
    }

    footer .download .download_box .ttl {
        font-size: 60px;
    }

    footer .download .download_box .txt {
        font-size: 18px;
    }
}

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

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

footer .footer_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin: auto;
    padding: 2vw 12vw;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
}

footer .footer_logo {
    width: 6vw;
}

footer .copyright {
    color: #848484;
    font-size: 1vw;
    margin: auto;
}



@media screen and (min-width: 1280px) {
    footer .privacy .link {
        font-size: 16px;
    }

    footer .copyright {
        font-size: 13px;
    }

    footer .footer_logo {
        width: 60px;
    }
}

@media screen and (max-width: 960px) {
    footer .footer_menu {
        width: 100%;
    }

    footer .download {
        width: auto;
    }

    footer .download .iphon_img {
        width: 100px;
    }

    footer .download .sp .ttl {
        font-size: 26px;
    }

    footer .download .download_box {
        margin-left: 7vw;
    }

    footer .download .download_box .store_btn {
        width: 38vw;
    }

    footer .download .download_box .store_btn img {
        width: 18vw;
    }

    footer .download .download_box .txt {
        font-size: 1.8vw;
    }

    footer .download .download_box .ttl {
        padding-bottom: 0.5vw;
        font-size: 5.6vw;
    }

    footer .download .download_box .ttl .sub_tll {
        font-size: 3.5vw;
    }

    footer .footer_menu {
        width: 100%;
        padding: 2vw 10vw;
    }

    footer .privacy .link {
        font-size: 14px;
    }

    footer .copyright {
        font-size: 8px;
    }

    footer .footer_logo {
        width: 60px;
        margin: 0;
    }
}

@media screen and (max-width: 430px) {
    footer {
        padding-top: 12vw;
    }

    footer .download {
        display: flow;
    }

    footer .download .iphon_img {
        width: 32vw;
        margin: auto;
        margin-bottom: 4vw;
    }

    footer .download .download_box .ttl {
        display: none;
    }

    footer .download .sp {
        display: contents;
    }

    footer .download .sp .ttl {
        font-weight: 800;
        color: #34525F;
        padding-bottom: 7vw;
        font-size: 33px;
        text-align: center;
    }

    footer .download .sp .ttl .sub_tll {
        font-size: 23px;
    }

    footer .download .download_box {
        width: 100%;
        margin-left: 0;
    }

    footer .download .download_box .store_btn {
        display: inline-grid;
        position: relative;
        justify-content: center;
        width: 100%;
        padding: 0 40px;
        margin-top: 5vw;
    }

    footer .download .download_box .store_btn img {
        width: 46vw;
        margin-bottom: 10px;
    }

    footer .download .download_box .txt {
        font-size: 14px;
        margin: auto;
        margin-top: 2vw;
        margin-bottom: 2vw;
    }

    footer .footer_menu {
        display: block;
        width: 100%;
        padding: 4vw 2vw;
    }

    footer .footer_logo {
        width: 60px;
        margin: auto;
    }

    footer .privacy {
        width: 60vw;
        margin: auto;
        margin-top: 6vw;
    }

    footer .privacy .link {
        font-size: 14px;
    }

    footer .privacy .line {
        display: block;
        height: 4.5vw;
    }

    footer .copyright {
        font-size: 11px;
        text-align: center;
        margin-top: 3vw;
    }
}



/* --------------------------
News List
-----------------------------*/
.news_list_table {
    display: flow;
    position: relative;
    width: 65vw;
    margin: 0 auto;
    margin-top: 6vw;
}

.news_list_item {
    margin-bottom: 1vw;
}

.news_list_table .news_item {
    display: flex;
    background-color: #FFFFFF;
    height: auto;
    min-height: 4.5vw;
    border: 1px solid;
    border-color: #E4E4EA;
    border-radius: 1.5vw;
    margin-bottom: 1.5vw;
    justify-content: space-between;
    text-align: left;
}

.news_list_table .sp_news_inner {
    display: flex;
    padding: 10px 0;
}

.news_list_table .news_date {
    font-size: 1.2vw;
    width: auto;
    padding-right: 1.5vw;
    font-weight: 800;
    color: #34525F;
}

.news_list_table .news_title {
    font-size: 1.2vw;
    width: 100%;
    text-align: left;
    padding: 0 1.5vw 0 1.2vw;
    font-weight: 800;
    color: #34525F;
}

.news_list_table .arroe_icon {
    width: auto;
    height: auto;
    margin: auto;
    margin-right: 1.5vw;
    vertical-align: bottom;
    line-height: 1.0em;
}

.news_list_table .arroe_icon img {
    width: 18px;
}



@media screen and (min-width: 1500px) {
    .news_list_table {
        margin-top: 100px;
        width: 900px;
        margin-bottom: 100px;
    }

    .news_list_table .news_date {
        font-size: 20px;
    }

    .news_list_table .news_title {
        font-size: 20px;
    }


}

@media screen and (max-width: 960px) {
    .news_list_table {
        margin: auto;
        margin-top: 6vw;
        width: 90vw;
        margin-bottom: 5vw;
    }

    .news_list_item {
        margin-bottom: 2vw;
    }

    .news_list_table .news_item {
        display: flex;
        height: auto;
    }

    .news_list_table .sp_news_inner {
        display: flow;
        width: 83vw;
        margin: 0;
    }

    .news_list_table .news_date {
        padding-right: 0;
        font-size: 1.8vw;
        padding-left: 4vw;
    }

    .news_list_table .news_title {
        padding-left: 4vw;
        font-size: 2.1vw;
    }

    .news_list_table .news_item p {
        margin-bottom: 0.5vw;
    }

    .news_list_table .arroe_icon {
        width: 25px;
    }

    .news_list_table .more_btn_item {
        margin-top: 30px;
    }
}

@media screen and (max-width: 430px) {
    .news_list_table {
        width: 90vw;
        margin: 7vw 20px 0 20px;
    }

    .news_list_item {
        margin-bottom: 4vw;
    }

    .news_list_table .news_item {
        display: flex;
        height: auto;
    }

    .news_list_table .sp_news_inner {
        display: flow;
        width: 83vw;
        margin: 0;
    }

    .news_list_table .news_date {
        padding-right: 0;
        font-size: 16px;
        padding-left: 4vw;
    }

    .news_list_table .news_title {
        padding-left: 4vw;
        font-size: 16px;
    }

    .news_list_table .news_item p {
        margin-bottom: 2vw;
    }

    .news_list_table .arroe_icon {
        width: 6.5vw;
    }


}





/* --------------------------
News Detail
-----------------------------*/
.head_area {
    background-color: #35A86E;
    width: 100%;
    top: 0;
    height: 15vw;
}

.head_detail_area{
    background-color: #35A86E;
    width: 100%;
    top: 0;
    height: 7vw;
}

.head_area .title {
    color: #ffffff;
    text-align: center;
    font-size: 3.3vw;
    padding-top: 5.5vw;
}

.news_detail {
    margin: auto;
    margin-top: 6vw;
    width: 55vw;
    margin-bottom: 120px;
}

.news_detail_label {
    display: flex;
    margin: auto;
    margin-bottom: 1.5vw;
}

.news_detail_label .date {
    font-weight: 800;
    color: #34525F;
    text-align: left;
    font-size: 1.6vw;
}

.news_detail_label .label {
    margin: auto;
    margin-left: 2vw;
    text-align: center;
}

.title {
    font-weight: 800;
    color: #34525F;
    position: relative;
    padding-bottom: 4vw;
    font-size: 2.2vw;
    line-height: 1.3;
}

.text {
    font-weight: 400;
    font-size: 1.4vw;
    line-height: 1.7;
    color: #34525F;
    margin: 0.5vw 0;
}

.news_image {
    overflow: hidden;
    width: 100%;
    margin: 3vw auto;
    border-radius: 15px;
}

.news_image_title {
    overflow: hidden;
    width: 100%;
    margin: 0 auto 3vw auto ;
    border-radius: 15px;
}

.news_list_btn {
    margin-top: 70px;
}


@media screen and (min-width: 1500px) {
    .head_area {
        width: 100%;
        top: 0;
        height: 190px;
    }

    .head_detail_area{
        width: 100%;
        top: 0;
        height: 80px;
    }

    .head_area .title {
        font-size: 40px;
        padding-top: 70px;
    }

    .news_detail {
        margin-top: 60px;
        width: 800px;
        margin-bottom: 120px;
    }

    .news_detail_label .date {
        font-size: 20px;
    }

    .news_detail_label .label {
        margin-left: 30px;
    }

    .title {
        padding-bottom: 50px;
        font-size: 24px;
    }

    .text {
        font-size: 16px;
        margin: 20px 0;
    }

    .news_image {
        margin: 60px auto;
    }
}

@media screen and (max-width: 960px) {
    .head_area {
        height: 18vw;
    }
    .head_detail_area{
        height: 8vw;
    }
    .head_area .title {
        font-size: 30px;
        padding-top: 5vw;
    }

    .news_detail {
        width: auto;
        margin: 6vw 40px 0 40px;
    }

    .date p {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .title {
        font-size: 24px;
        line-height: 1.5;
        padding-bottom: 20px;
    }

    .text {
        font-size: 16px;
        margin: 20px 0;
    }

    .news_image {
        width: 100%;
    }
}

@media screen and (max-width: 430px) {
    .head_area {
        height: 30vw;
    }

    .head_detail_area {
        height: 13vw;
    }

    .head_area .title {
        font-size: 25px;
        padding-top: 10vw;
    }

    .news_detail {
        margin-top: 27vw;
        width: auto;
        margin: 8vw 20px 0 20px;
    }

    .news_detail_label {
        margin-bottom: 2vw;
    }

    .news_detail_label .date {
        font-size: 4vw;
    }

    .news_detail_label .label {
        margin: auto;
        margin-left: 2vw;
        text-align: center;
    }

    .date p {
        margin-bottom: 36px;
    }

    .title {
        font-size: 20px;
        line-height: 1.5;
        padding-bottom: 20px;
    }

    .text {
        font-size: 16px;
        margin: 30px 0;
    }

    .news_image {
        width: auto;
    }
}