@charset "utf-8";
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:300,400,500,700&display=swap&subset=japanese');
@import url('https://fonts.googleapis.com/css2?family=Lobster&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');

html {
    margin: 0;
    padding: 0;
    font-size: 62.5%;
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    width: 100%;
    height: 100%;
    background: #fff;
}

body {
    margin: 0;
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", sans-serif;
    color: #333;
    height: 100%;
    width: 100%;
    font-size: 1.6rem;
}

div {
    box-sizing: border-box;
}

a {
    color: #333;
    text-decoration: none;
}

a:visited {
    color: #333;
}

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

.bold {
    font-weight: bold;
}

.fc_blue {
    color: #175D72;
}

.mt5 {
    margin-top: 5px;
}

.mb_40 {
    margin-bottom: 40px !important;
}

.mt_150 {
    margin-top: 150px !important;
}

/*---------------------------------
Common
---------------------------------*/

#wrapper {
    position: relative;
    height: auto;
}

.container {
    margin: 0 auto;
}

.display_pc {
    display: none;
}

.display_sp {
    display: block;
}

.align_center, .has-text-align-center {
    text-align: center;
}

.has-text-align-left {
    text-align: left;
}

.has-text-align-right {
    text-align: right;
}

@media (min-width: 768px) {

    .display_pc {
        display: block;
    }

    .display_sp {
        display: none;
    }
}

@media (min-width: 1201px) {
    
    .container {
        max-width: 1200px;
    }
    
}

/*-------------------------------
Title
---------------------------------*/

.section_title {
    margin: 0;
    padding: 0 0 28px;
    font-size: 2.6rem;
    font-weight: 400;
    font-family: 'Lobster', sans-serif;
    line-height: 1em;
    letter-spacing: .5px;
    color: #000;
    text-align: center;
}

.section_title span {
    display: block;
    margin: 0;
    padding: 10px 0 0;
    font-size: 1.2rem;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1em;
    color: #FF5C08;
}

.page_title_area {
    padding: 45px 0 0;
    background: #FDF8F5;
}

.page_title {
    margin: 0;
    padding: 0 0 40px;
    font-size: 2.6rem;
    font-weight: 500;
    font-family: 'Lobster', sans-serif;
    line-height: 1em;
    letter-spacing: .5px;
    color: #333;
    text-align: center;
}

.page_title span {
    display: block;
    margin: 0;
    padding: 10px 0 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1em;
    color: #FF5C08;
}


.page_sub_title {
    margin: 0;
    padding: 6px 0 6px 14px;
    font-size: 2.0rem;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1em;
    letter-spacing: .5px;
    color: #333;
    border-left: 3px solid #FF5C08;
    position: relative;
}

@media (min-width: 1201px) {
    
    .section_title {
        margin: 0;
        padding: 0 0 60px;
        font-size: 5.6rem;
        letter-spacing: 1.5px;
    }
    
    .section_title span {
        display: block;
        margin: 0;
        padding: 18px 0 0;
        font-size: 1.6rem;
    }
    
    .page_title_area {
        padding: 75px 0 0;
    }
    
    .page_title {
        margin: 0;
        padding: 35px 0 90px;
        font-size: 5.0rem;
        letter-spacing: 1.5px;
    }
    
    .page_title span {
        display: block;
        margin: 0;
        padding: 18px 0 0;
        font-size: 2.4rem;
    }
    
    .page_sub_title {
        font-size: 2.8rem;
        letter-spacing: 1.0px;
        padding: 8px 0 8px 18px;
    }

}

/*---------------------------------
Header
---------------------------------*/

.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 128px;
    background: #fff;
    border-bottom: 1px solid #ededed;
    box-shadow: rgba(51, 51, 51, 0.1) 0px 5px 8px;
    width: 100%;
    z-index: 99;
}

.header_inner {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    justify-content: space-between;
    max-width: 90%;
    margin: 0 auto;
}

.header_logo {
    display: inline-block;
    width: 82px;
    height: auto;
    margin: 12px 0 0;
    transition: opacity .3s , width .3s;
}

.header_logo img {
    width: 100%;
    height: auto;
}

.header_contact {
    height: 48px;
    font-size: 1.6rem;
    font-weight: 500;
    font-family: 'Montserrat', sans-serif;
    line-height: 1em;
    color: #fff;
    background: #1d0a00;
    text-align: center;
    border-bottom: 1px solid #DDDDDD;
}

.header_contact p {
    margin: 0;
    padding: 3px 0 0;
    font-size: 1.4rem;
    font-weight: 400;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1em;
}
    
.header_contact i {
    margin: 0 5px 0 0;
    padding: 5px 0 0 0;
    background: #FF5C08;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    font-size: 1.4rem;
    color: #fff;
    text-align: center;
}

.header_contact_tel, .header_contact_mail {
    display: inline-block;
    height: 24px;
    line-height: 1;
    border-radius: 12px;
    margin: 3px 0 0;
    padding: 0 12px 0 0;
    /*background: #efefef;*/
}

.header_contact_tel i {
    margin: 0 5px 0px 0px;
}

.header_contact a {
    color:#fff;
}

@media (min-width: 1201px) {
    .header {
        height: 112px;
        transition: height .3s, box-shadow .3s;
    }
    
    .header_inner {
        max-width: 1200px;
        margin: 0 auto;
        height: 110px;
        position: relative;
    }

    .header_logo {
        width: 140px;
        height: auto;
        margin: 26px 0 0;
    }

    .header_contact {
        height: auto;
        font-weight: 500;
        padding: 6px 12px;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        right: calc( (100% - 1200px) / 2 );
        font-size: 1.8rem;
        border-radius: 4px;
        color: #333;
        background: #FFF;
        text-align: left;
        z-index: 10;
        border-bottom: none;
    }
    
    .header_contact i {
        margin: 0 9px 0 0;
        padding: 5px 0 0 0;
        background: #FF5C08;
        width: 24px;
        height: 24px;
        border-radius: 12px;
        font-size: 1.4rem;
        color: #fff;
        text-align: center;
    }
    
    .header_contact_tel, .header_contact_mail {
        display: block;
        height: 24px;
        line-height: 24px;
        background: #efefef;
        border-radius: 12px;
        margin: 0;
    }

    .header_contact_tel i {
        margin: 0 6px 0px 1px;
    }

    .header_contact p {
        font-size: 1.3rem;
        margin: 0 0 8px;
    }
    
    .header_contact_tel {
        margin: 0 0 5px;
    }

    .header_contact a {
        color:#333;
    }
    
}

/*-------------------------------
Global Nav
---------------------------------*/

.global_nav {
    display: flex;
    flex-direction: column-reverse;
    max-width: calc( 100% - 110px );
}
    
.header_banner {
    height: 30px;
    margin: 0 auto;
}

.header_banner img {
    width: auto;
    height: 30px;
}
    
.global_nav_inner {
    margin: 0;
    padding: 0;
}

.global_nav_list {
    height: 45px;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    border: 0;
}

.global_nav li {
    position: relative;
    padding: 0 8px 0;
}

.global_nav li:last-child {
    padding: 0 0 0 8px;
}

.global_nav li a {
    display: block;
    font-family: 'Lobster', sans-serif;
    color: #333333;
    font-weight: 400;
    font-size: 1.6rem;
}

@media (min-width: 1201px) {
    
    .global_nav {
        display: flex;
        height: auto;
        flex-direction: row;
        max-width: calc( 100% - 180px );
        padding: 0 300px 0 0;
    }
    
    .header_banner {
        width: 250px;
        height: auto;
        margin: 0 25px 0 0;
        display: flex;
        align-items: center;
    }

    .header_banner img {
        width: 100%;
        height: auto;
    }

    .global_nav_list {
        height: 112px;
    }

    .global_nav li {
        position: relative;
        padding: 0 16px 0;
        height: 100%;
    }
    
    .global_nav li:last-child {
        padding: 0 0 0 16px;
    }
    
    .global_nav li a {
        font-size: 2.4rem;
        transition: color .3s;
        height: 100%;
        width: 100%;
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display: flex;
        align-items: center;
    }
    
    .global_nav li a::after {
        display: none;
    }
    
    .global_nav li a:hover {
        color: #FF5C08;
    }
}

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

.footer {
    width: 100%;
    margin: 0;
    padding: 0;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.footer_inner {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    height: 68px;
    background: #333;
 }

.copyright {
    color: #fff;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}


@media (min-width: 1201px) {
    
    .footer {
    }
    
    .footer_inner {
        height: 112px;
        margin: 0;
     }
    
    .copyright {
        font-size: 1.6rem;
    }

}


/*---------------------------------
Main
---------------------------------*/

.main {
    margin-top: 128px;
}

.section {
    padding: 30px 0;
}

.section_info {
    padding: 0;
}

.info_area .container {
    max-width: 90%;
    padding: 50px 0;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

.info_area .container a {
    color: #175D72;
    text-decoration: underline;
}

.info_area .container p {
    margin: 0;
    padding: 0;
}

.info_area .container p + p {
    padding: 12px 0 0;
}

.description_list {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    width: 100%;
    margin: 0;
}

.description_list dt {
    color: #FF5C08;
    font-weight: 500;
    margin: 0;
    padding: 14px 0 5px 5px;
    width: 100%;
}

.description_list dd {
    border-bottom: 1px solid #DDDDDD;
    margin: 0;
    padding: 0 5px 14px 0;
    width: 100%;
}

.description_list:last-child {
    border-bottom: none;
}



@media (min-width: 1201px) {
    .main {
        margin-top: 112px;
        min-height: calc( 100vh - 112px );
    }

    .section {
        padding: 75px 0;  
    }

    .section_info {
        padding: 0;
    }
    
    .info_area .container {
        max-width: 1000px;
        padding: 100px 0;
        font-size: 1.6rem;
    }
    
    .info_area .container p + p {
        padding: 18px 0 0;
    }

    .description_list {
        font-size: 1.8rem;
    }


    .description_list dt {
        border-bottom: 1px solid #DDDDDD;
        width: 120px;
        margin: 0;
        padding: 15px 5px 15px 0;
    }
    
    .description_list dt:nth-child(1), .description_list dd:nth-child(2) {
        padding: 0 0 24px;
        
    }

    .description_list dd {
        border-bottom: 1px solid #DDDDDD;
        margin: 0;
        padding: 15px 5px 15px 0;
        width: calc( 100% - 120px );
    }

    .description_list dd:last-child {
        border-bottom: 1px solid #DDDDDD;
    }

}

/*-------------------------------
Hero Banner
---------------------------------*/

.hero_banner_area_wrap {
	position: relative;
	display: block;
	width: 100%;
    height: auto;
}

.hero_banner_area_wrap .hero_banner_area {
    padding: 0;
    margin: 0;
	width: 100%;
}


.hero_banner_area .hero_banner_slide {
    margin: 0;
    padding: 0;
    position: relative;
	opacity: .5;
}

.hero_banner_area .hero_banner_slide.slick-current {
	opacity: 1;
}

.hero_banner_area .hero_banner_slide img {
    width: 100%;
    height: auto;
}

.hero_banner_area li a {
    display: block;
}

.slick-initialized{
    opacity: 1
}

.hero_banner_area .slick-dots {
	position: absolute;
	bottom: -4px;
	left: 50%;
	transform: translateX(-50%);
}

.hero_banner_area .slick-dots button {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.hero_banner_area .slick-dots li {
	display: inline-block;
	margin: 0 8px 0 0 !important;
	width: 20px;
	height: 3px;
	/*border-radius: 50%;*/
	background: #ededed;
	transition: .15s ease;
	cursor: pointer;
	box-sizing: border-box;
}

.hero_banner_area .slick-dots > li:last-of-type {
	margin-right: 0 !important;
}

.hero_banner_area .slick-dots > li:first-of-type:last-of-type {
	display: none !important;
}

.hero_banner_area .slick-dots li:hover {
	opacity: .5;
}

.hero_banner_area .slick-dots li button {
	position: relative;
	text-indent: -9999px;
}

.hero_banner_area .slick-dots li.slick-active {
	background: #FF5C08;
}

@media (min-width: 768px) {

    .hero_banner_area_wrap::before {
        content: '';
        width: 15%;
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        /*background-size: auto auto;
        background-color: rgba(255, 168, 123, 1);
        background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(255, 92, 8, 1) 10px, rgba(255, 92, 8, 1) 20px );*/
        background-size: auto auto;
        background-color: rgba(51, 51, 51, 1);
        background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(95, 95, 95, 1) 10px, rgba(95, 95, 95, 1) 20px );
        z-index: 1;
        opacity: .4;
    }

    .hero_banner_area_wrap::after {
        content: '';
        width: 15%;
        height: 100%;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        background-size: auto auto;
        background-color: rgba(51, 51, 51, 1);
        background-image: repeating-linear-gradient(-45deg, transparent, transparent 10px, rgba(95, 95, 95, 1) 10px, rgba(95, 95, 95, 1) 20px );
        z-index: 1;
        opacity: .4;
    }
    
    .hero_banner_area_wrap .hero_banner_area {
        padding: 0;
        margin: 0;
        width: 100%;
        position: relative;
    }

    .hero_banner_area .hero_banner_slide {
        margin: 0;
        padding: 0;
        position: relative;
        
        /*min-height: 500px;*/
    }
    
    .hero_banner_area .slick-dots {
        bottom: 12px;
    }

    .hero_banner_area .slick-dots li {
        margin: 0 12px 0 0 !important;
        width: 34px;
        height: 5px;
    }
}


/*-------------------------------
Top News
---------------------------------*/
.section_news {
    margin: 0 auto;
    padding: 0 0 60px; /*0515*/
    /*background: #EDF2F2;*/
    position: relative;
    overflow: hidden;
}

.section_news .container {
    max-width: 90%;
}
/*0515
.section_news::before {
    content: '';
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255,168,123);
    background: linear-gradient(0deg, rgba(255,168,123,1) 0%, rgba(255,92,8,1) 65%, rgba(255,92,8,1) 100%);
    transform: skewY(-15deg) translateY(-100px);
    z-index: 1;
}*/
.section_news::before {
    content: '';
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #EDF2F2;
    transform: skewY(-15deg) translateY(-100px);
    z-index: -1;
}

.section_news .section_title {
    position: relative;
    z-index: 2;
}

.section_news .section_title span {
    /*color: #fff;0515*/
}

.news_list {
    background: #fff;
    padding: 12px 18px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.news_list li a, .news_list li.greeting {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    color: #333333;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    min-height: 36px;
    line-height: 1.4;
    padding: 10px 4px;
}

.news_list li.greeting .news_area {
    width: 100%;
}

.news_list li:last-child a {
    border-bottom: none;
}

.news_list li .news_time {
    display: inline-block;
    color: #91C0C6;
    padding: 0 12px 0 0;
    white-space: nowrap;
}

.news_list li a {
    transition: .3s;
}

.news_list li a:hover{
    color: #175D72;
    text-decoration: underline;
}
    
.news_list li .news_tag_area_pc {
    display: none;
}

.news_list li .news_tag_area_sp {
    display: inline-block;
}

.news_list li .news_tag_area_sp span, .single_tag_area span, .single_tag_area a {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1;
    background: #efefef;
    padding: 3px 6px;
    border-radius: 3px;
    color: #333 !important;
    text-decoration: none !important;
}
    
.news_list li .news_tag_area_sp span + span, .single_tag_area span + span, .single_tag_area a + a {
    margin: 0 0 0 3px;
}

.news_list li .news_time_area {
    margin: 0 0 5px;
}

.single_time_area {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    color: #6a6a6a;
    margin: 0 0 10px;
}

.single_time_area time {
    display: block;
    margin: 0 5px 0 0;
}

@media (min-width: 768px) {
    /*0515
    .section_news::before {
        content: '';
        width: 100%;
        height: 500px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgb(255,168,123);
        background: linear-gradient(0deg, rgba(255,168,123,1) 0%, rgba(255,92,8,1) 65%, rgba(255,92,8,1) 100%);
        transform: skewY(-5deg) translateY(-300px);
    }
    */
    .section_news::before {
        height: 1000px;
        transform: skewY(-5deg) translateY(-650px);
    }
}

@media (min-width: 1201px) {
    
    .section_news {
        /*padding: 50px 0;0515*/
        padding: 50px 0 115px;
    }
    
    .section_news .section_title {
        padding: 0 0 30px;
    }
    
    .section_news .section_title span {
        padding: 10px 0 0;
    }
    /*0515
    .section_news::before {
        content: '';
        width: 100%;
        height: 500px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgb(255,168,123);
        background: linear-gradient(0deg, rgba(255,168,123,1) 0%, rgba(255,92,8,1) 65%, rgba(255,92,8,1) 100%);
        transform: skewY(-5deg) translateY(-270px);
    }
    */
    
    .section_news::before {
        content: '';
        width: 100%;
        height: 1000px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #EDF2F2;
        transform: skewY(-5deg) translateY(-650px);
        z-index: -1;
    }
    
    .section_news .container {
        max-width: 1200px;
    }

    .news_list {
        padding: 15px 20px;
        border-radius: 20px;
    }
    
    .news_list li a, .news_list li.greeting {
        font-size: 1.6rem;
        min-height: 64px;
        padding: 20px 30px 20px 40px;
        line-height: 1.6;
        justify-content: space-between;
    }

    .news_list li .news_time {
        padding: 0 40px 0 0;
    }
    
    .news_list li .news_tag_area_pc {
        display: inline-block;
        white-space: nowrap;
    }
    
    .news_list li .news_tag_area_pc span, .single_tag_area span, .single_tag_area a {
        white-space: nowrap;
        height: auto;
        display: inline-block;
        font-size: 1.6rem;
        line-height: 1;
        background: #efefef;
        padding: 6px 8px;
        border-radius: 4px;
        color: #333 !important;
    }
    
    .news_list li .news_tag_area_pc span + span , .single_tag_area span + span, .single_tag_area a + a {
        margin: 0 0 0 3px;
    }
    
    .news_list li .news_tag_area_sp {
        display: none;
    }

    .news_list li .news_time_area {
        margin: 0 0 6px;
    }
    .single_time_area {
        font-size: 1.6rem;
        margin: 0 0 14px;
    }
}

/*-------------------------------
Archive News
---------------------------------*/
.section_archive_news {
    margin: 0 auto;
    padding: 0 0 60px;
    position: relative;
    overflow: hidden;
}

.section_archive_news::before {
    content: '';
    width: 100%;
    height: 400px;
    position: absolute;
    top: 50px;
    bottom: 0;
    left: 0;
    right: 0;
    background: #EDF2F2;
    transform: skewY(-15deg) translateY(-100px);
    z-index: -1;
}

.section_archive_news .container {
    max-width: 90%;
}

.section_archive_news .section_title {
    position: relative;
    z-index: 2;
}

.archive_news_list {
    background: #fff;
    padding: 12px 18px;
    border-radius: 15px;
    position: relative;
    z-index: 2;
}

.archive_news_list li {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    border-bottom: 1px solid #DDDDDD;
    color: #333333;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    min-height: 36px;
    line-height: 1.4;
    padding: 10px 4px;
    position: relative;
}

.archive_news_list li a {
    text-decoration: none !important;
    color: #333333 !important;
    flex-grow: 1;
}

.archive_news_list li .news_time {
    display: inline-block;
    color: #91C0C6;
    padding: 0 12px 0 0;
    white-space: nowrap;
}

.archive_news_list li a {
    transition: .3s;
}

.archive_news_list li a:hover{
    color: #175D72 !important;
    text-decoration: underline !important;
}
    
.archive_news_list li .news_tag_area_pc {
    display: none;
}

.archive_news_list li .news_tag_area_sp {
    display: inline-block;
    position: absolute;
    top: 10px;
    left: 90px;
}

.archive_news_list li .news_tag_area_sp span, .archive_news_list li .news_tag_area_sp a {
    display: inline-block;
    font-size: 1.3rem;
    line-height: 1;
    background: #efefef;
    padding: 3px 6px;
    border-radius: 3px;
    color: #333 !important;
    text-decoration: none !important;
}
    
.archive_news_list li .news_tag_area_sp span + span, .archive_news_list li .news_tag_area_sp a + a {
    margin: 0 0 0 3px;
}

.archive_news_list li .news_time_area {
    margin: 0 0 5px;
}

.pagination {
    margin: 30px 0 0;
    padding: 12px 18px;
    display: flex;
    justify-content: center;
}

.pagination a.page-numbers, .pagination span.page-numbers {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 3px;
    border: 1px solid #175D72;
    font-size: 1.4rem;
    color: #175D72;
    background: #fff;
    text-decoration: none;
    transition: .3s;
}

.pagination .prev.page-numbers, .pagination .next.page-numbers, .pagination .page-numbers.dots {
    border: none;
    margin: 0;
}

.pagination .page-numbers.current {
  color: #fff;
  background: #175D72;
  border: 1px solid #175D72;
}

@media (min-width: 768px) {
    
    .section_archive_news::before {
        height: 1000px;
        top: 30px;
        transform: skewY(-5deg) translateY(-650px);
    }
}

@media (min-width: 1201px) {
    
    .section_archive_news {
        padding: 0px 0 115px;
    }
    
    .section_archive_news::before {
        content: '';
        width: 100%;
        height: 1000px;
        position: absolute;
        top: 300px;
        bottom: 0;
        left: 0;
        right: 0;
        background: #EDF2F2;
        transform: skewY(-5deg) translateY(-650px);
        z-index: -1;
    }
    
    .section_archive_news .section_title {
        padding: 0 0 30px;
    }
    
    .section_archive_news .section_title span {
        padding: 10px 0 0;
    }
    
    .section_archive_news .container {
        max-width: 1200px;
        padding: 100px 0 20px;
    }

    .archive_news_list {
        padding: 15px 20px;
        border-radius: 20px;
    }
    
    .archive_news_list li {
        font-size: 1.6rem;
        min-height: 64px;
        padding: 20px 30px 20px 40px;
        line-height: 1.6;
        justify-content: space-between;
    }

    .archive_news_list li .news_time {
        padding: 0 40px 0 0;
    }
    
    .archive_news_list li .news_tag_area_pc {
        display: inline-block;
        white-space: nowrap;
    }
    
    .archive_news_list li .news_tag_area_pc span, .archive_news_list li .news_tag_area_pc a {
        white-space: nowrap;
        height: auto;
        display: inline-block;
        font-size: 1.6rem;
        line-height: 1;
        background: #efefef;
        padding: 6px 8px;
        border-radius: 4px;
        color: #333 !important;
    }

    .archive_news_list li .news_tag_area_pc a:hover{
        color: #333 !important;
        text-decoration: none !important;
        background: #dddddd;
    }
    
    .archive_news_list li .news_tag_area_pc span + span, .archive_news_list li .news_tag_area_pc a + a {
        margin: 0 0 0 3px;
    }
    
    .archive_news_list li .news_tag_area_sp {
        display: none;
    }

    .archive_news_list li .news_time_area {
        margin: 0 0 6px;
    }
    
    .pagination {
        padding: 15px 20px;
    }

    .pagination a.page-numbers, .pagination span.page-numbers {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
    
    .pagination a.page-numbers:not(.prev):not(.next):hover {
        background: #257e99;
        color: #fff;
    }
}

/*-------------------------------
Talent
---------------------------------*/
.section_talent {
    margin: 0 auto;
    padding: 30px 0 60px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #ededed;
    background: #EDF2F2; /*0515*/
}

.section_talent .section_title { /*0515*/
    position: relative;
    z-index: 2;
}


.section_talent .section_title span { /*0515*/
    color: #fff;
}
/*0515
.section_talent::before {
    content: '';
    width: 100%;
    height: 400px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: #EDF2F2;
    transform: skewY(-15deg) translateY(-100px);
    z-index: -1;
}
*/
.section_talent::before {
    content: '';
    width: 100%;
    height: 200px;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgb(255,168,123);
    background: linear-gradient(0deg, rgba(255,168,123,1) 0%, rgba(255,92,8,1) 65%, rgba(255,92,8,1) 100%);
    transform: skewY(-15deg) translateY(-100px);
    z-index: 1;
}

.section_talent .container {
    max-width: 90%;
}

.talent_list {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    margin: 8px 0 0;
    position: relative; /*0515*/
    z-index: 2; /*0515*/
}

.talent_list li {
    width: 47%;
    text-align: center;
}

.talent_list li:nth-child(2n) {
    margin-left: 6%;
}

.talent_list li:nth-child(n+3) {
    margin-top: 30px;
}

.talent_list li .talent_img {
    width: 100%;
    height: auto;
    overflow: hidden;
    position: relative;
}

.talent_list li .talent_img .icon_partnership {
    background: #FF5C08;
    font-size: 1.2rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    padding: 4px 6px;
    position: absolute;
    right: 0;
    bottom: 5px;
    color: #fff;
    letter-spacing: .5px;
}

.talent_list li .talent_img img {
    width: 100%;
    height: auto;
    transition: .3s;
}

.talent_list li .talent_img img:hover{
    transform:scale(1.2,1.2);
}

.talent_list li .talent_name {
    margin: 14px 0 0;
    color: #333;
    font-size: 1.6rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
}

.talent_list li .talent_name span {
    display: block;
    margin: 4px 0 0;
    color: #91C0C6;
    font-size: 1.2rem;
    font-family: 'Lobster', sans-serif;
    font-weight: 400;
}



@media (min-width: 768px) {

    /*0515
    .section_talent::before {
        height: 1000px;
        transform: skewY(-5deg) translateY(-650px);
    }
    */
    .section_talent::before {
        content: '';
        width: 100%;
        height: 500px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgb(255,168,123);
        background: linear-gradient(0deg, rgba(255,168,123,1) 0%, rgba(255,92,8,1) 65%, rgba(255,92,8,1) 100%);
        transform: skewY(-5deg) translateY(-300px);
    }
}

@media (min-width: 1201px) {

    .section_talent  {
        /*padding: 75px 0 115px;*/
        padding: 75px 0 30px; /*0515*/
    }
    /*0515
    .section_talent::before {
        content: '';
        width: 100%;
        height: 1000px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: #EDF2F2;
        transform: skewY(-5deg) translateY(-650px);
        z-index: -1;
    }*/
    .section_talent::before {
        content: '';
        width: 100%;
        height: 500px;
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        background: rgb(255,168,123);
        background: linear-gradient(0deg, rgba(255,168,123,1) 0%, rgba(255,92,8,1) 65%, rgba(255,92,8,1) 100%);
        transform: skewY(-5deg) translateY(-270px);
    }

    .section_talent .container {
        max-width: 1200px;
    }
    
    .talent_list {
        margin: 15px 0 0;
    }

    .talent_list li {
        width: 22%;
        margin-right: 4%;
    }

    .talent_list li:nth-child(2n) {
        margin-left: inherit;
    }

    .talent_list li:nth-child(n+3) {
        margin-top: 0px;
    }

    .talent_list li:nth-child(4n) {
        margin-right: 0;
        margin-left: inherit;
    }

    .talent_list li:nth-child(n+5) {
        margin-top: 50px;
    }

    .talent_list li .talent_name {
        margin: 20px 0 0;
        font-size: 1.8rem;
    }

    .talent_list li .talent_name span {
        margin: 6px 0 0;
        font-size: 1.4rem;
    }

    .talent_list li .talent_img .icon_partnership {
        font-size: 1.4rem;
        padding: 6px 8px;
        letter-spacing: .5px;
    }
}


/*-------------------------------
Talent Detail
---------------------------------*/
.section_talent_detail {
    margin: 0 auto;
    padding: 45px 0 65px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid #ededed;
    background: #FDF8F5;
}

.section_talent_detail_work  {
    background: #EDF2F2;
}

.section_talent_detail_work {
    padding: 30px 0 60px;
}

.section_talent_detail .container, .section_talent_detail_news .container, .section_talent_detail_work .container {
    max-width: 90%;
}

.talent_title {
    margin: 0;
    padding: 0 0 40px;
    font-size: 2.6rem;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1em;
    letter-spacing: .5px;
    color: #333;
    text-align: center;
}

.talent_title span {
    display: block;
    margin: 0;
    padding: 10px 0 0;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: 'Lobster', sans-serif;
    line-height: 1em;
    color: #FF5C08;
}

.talent_title_wrap {
    margin: 0;
    padding: 0 0 40px;
    font-family: 'Noto Sans JP', sans-serif;
    color: #333;
    text-align: center;
}

.talent_title_wrap h2 {
    margin: 0;
    padding: 0;
    font-size: 2.6rem;
    font-weight: 500;
    letter-spacing: .5px;
    line-height: 1em;
}

.talent_title_wrap span {
    display: block;
    margin: 0;
    padding: 10px 0 0;
    font-size: 1.4rem;
    font-weight: 500;
    font-family: 'Lobster', sans-serif;
    line-height: 1em;
    color: #FF5C08;
}

.talent_profile_area {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.talent_profile_area .talent_profile_img {
    width: 100%;
    position: relative;
}

.talent_profile_area .talent_profile_img img {
    width: 100%;
    height: auto;
}

.talent_profile_area .talent_profile_img .icon_partnership {
    background: #FF5C08;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 700;
    padding: 6px 8px;
    position: absolute;
    right: 0;
    bottom: 10px;
    color: #fff;
    letter-spacing: .5px;
}

.talent_profile_area .talent_profile {
    width: 100%;
    background: #fff;
}

.talent_profile_area .talent_profile  dl {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    width: 100%;
    margin: 0;
    padding: 10px 18px;
}

.talent_profile_area .talent_profile dt {
    color: #FF5C08;
    font-weight: 500;
    margin: 0;
    padding: 14px 0 5px;
    width: 100%;
}

.talent_profile_area .talent_profile dd {
    border-bottom: 1px solid #DDDDDD;
    margin: 0;
    padding: 0 0 14px;
    width: 100%;
}

.talent_profile_area .talent_profile dd:last-child {
    border-bottom: none;
}

.talent_detail_title {
    margin: 0;
    padding: 6px 0 6px 14px;
    font-size: 2.0rem;
    font-weight: 500;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1em;
    letter-spacing: .5px;
    color: #333;
    border-left: 3px solid #FF5C08;
    position: relative;
}

.talent_detail_title_wrap {
    margin: 0;
    padding: 6px 0 6px 14px;
    font-family: 'Noto Sans JP', sans-serif;
    border-left: 3px solid #FF5C08;
    position: relative;
}

.talent_detail_title_wrap h2 {
    margin: 0;
    padding: 0;
    font-size: 2.0rem;
    font-weight: 500;
    line-height: 1em;
    letter-spacing: .5px;
    color: #333;
}

.talent_detail_title .sns_list, .talent_detail_title_wrap .sns_list {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    position: absolute;
    right: 4px;
    top: 0;
}

.talent_detail_title .sns_list a, .talent_detail_title_wrap .sns_list a {
    width: 40px;
    height: 40px;
    line-height: 34px;
    border-radius: 20px;
    background: #FF5C08;
    display: block;
    vertical-align: middle;
    text-align: center;
    font-size: 2.0rem;
    transition: background .3s;
}

.talent_detail_title .sns_list a:hover, .talent_detail_title_wrap .sns_list a:hover {
    background: #ff7832;
}

.talent_detail_title .sns_list a + a, .talent_detail_title_wrap .sns_list a + a {
    margin: 0 0 0 4px;
}

.sns_facebook::after {
    content: "\f39e";
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
    color: #fff;
}

.sns_x::after {
    content: "\e61b";
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
    color: #fff;
}

.sns_insta::after {
    content: "\f16d";
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
    color: #fff;
}

.sns_youtube::after {
    content: "\f167";
    font-family: 'Font Awesome 5 Brands';
    font-weight: 400;
    color: #fff;
}

.sns_blog::after {
    content: "\f781";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #fff;
}

.sns_tiktok::after {
    content: "\e07b";
    font-family: "Font Awesome 5 Brands";
    font-weight: 900;
    color: #fff;
}

.talent_news_list li {
    padding: 12px 0px;
}
/*
.talent_news_list {
    padding: 12px 0px;
    position: relative;
    z-index: 2;
}

.talent_news_list li {
    border-bottom: 1px solid #DDDDDD;
    color: #333333;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    min-height: 36px;
    line-height: 1.4;
    padding: 10px 0px 0px 18px;
}

.talent_news_list li:last-child {
    border-bottom: none;
}

.talent_news_list li .news_time {
    display: block;
    color: #91C0C6;
    padding: 0 0 3px 0;
    white-space: nowrap;
}
*/
.talent_news_list li .accordion_title_area, .talent_work_list li .accordion_title_area {
    padding: 0 32px 10px 0;
    position: relative;
}

.talent_news_list li .accordion_title_area::before, .talent_work_list li .accordion_title_area::before {
    display: inline-block;
    content: "";
    position: absolute;
    border-top: 2px solid #FF5C08;
    width: 20px;
    height: 0;
	top: 50%;
	transform: translateY(-50%);
    right: 5px;
    background: #FF5C08;
}

.talent_news_list li .accordion_title_area::after, .talent_work_list li .accordion_title_area::after {
    display: inline-block;
    content: "";
    position: absolute;
    border-left: 2px solid #FF5C08;
    width: 0;
    height: 20px;
	top: 50%;
	transform: translateY(-50%);
    right: 14px;
    transition: .3s;
}

.talent_work_list li .accordion_title_area::before {
	top: 8px !important;
	transform: inherit !important;
    
}

.talent_work_list li .accordion_title_area::after {
	top: 0px !important;
	transform: inherit !important;
    
}

.talent_news_list li .accordion_title_area.open::after {
    transform: translateY(-50%) rotate(270deg);
}

.talent_work_list li .accordion_title_area.open::after {
    transform: rotate(270deg) !important;
    top: -1px !important;
}

.talent_news_list li .accordion_contents_area, .talent_work_list li .accordion_contents_area {
    display: none;
    font-weight: 400;
    padding: 10px 0;
    border-top: 1px solid #DDDDDD;
}

.talent_work_list {
    margin: 20px 0 0;
    padding: 5px 0px;
    position: relative;
    z-index: 2;
    background: #fff;
    border-radius: 5px;
}

.talent_work_list li {
    border-bottom: 1px solid #DDDDDD;
    color: #333333;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    min-height: 36px;
    line-height: 1.4;
    padding: 10px 4px 0 18px;
}

.talent_work_list li:last-child {
    border-bottom: none;
}

.talent_work_list a {
    color: #175D72;
    text-decoration: underline;
}

.talent_news_list li .accordion_contents_area p + p, .talent_work_list li .accordion_contents_area p + p ,.talent_work_area p + p {
    padding: 10px 0 0;
}

.talent_work_area {
    margin: 20px 0 0;
    padding: 15px;
    background: #fff;
    border-radius: 5px;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    line-height: 1.8;
}

.talent_work_area a {
    color: #175D72;
    text-decoration: underline;
}

@media (min-width: 1201px) {

    .section_talent_detail, .section_talent_detail_work  {
        padding: 75px 0 115px;
    }
    
    .section_talent_detail .container, .section_talent_detail_news .container, .section_talent_detail_work .container {
        max-width: 1000px;
    }
    
    .talent_title {
        margin: 0;
        padding: 35px 0 90px;
        font-size: 5.0rem;
        letter-spacing: 1.5px;
    }
    
    .talent_title span {
        display: block;
        margin: 0;
        padding: 18px 0 0;
        font-size: 2.4rem;
    }

    .talent_title_wrap {
        margin: 0;
        padding: 35px 0 90px;
    }

    .talent_title_wrap h2 {
        font-size: 5.0rem;
        letter-spacing: 1.5px;
    }

    .talent_title_wrap span {
        padding: 18px 0 0;
        font-size: 2.4rem;
    }

    .talent_profile_area .talent_profile_img {
        width: 48%;
    }

    .talent_profile_area .talent_profile_img .icon_partnership {
        font-size: 1.6rem;
        padding: 10px 12px;
        bottom: 14px;
        letter-spacing: .5px;
    }
    
    .talent_profile_area .talent_profile {
        width: 52%;
        padding: 0 40px;
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display: flex;
        align-items: center;
    }

    .talent_profile_area .talent_profile dl {
        font-size: 1.8rem;
    }


    .talent_profile_area .talent_profile dt {
        border-bottom: 1px solid #DDDDDD;
        width: 120px;
        margin: 0;
        padding: 15px 0;
    }
    
    .talent_profile_area .talent_profile dt:nth-child(1), .talent_profile_area .talent_profile dd:nth-child(2) {
        padding: 0 0 24px;
        
    }

    .talent_profile_area .talent_profile dd {
        border-bottom: 1px solid #DDDDDD;
        margin: 0;
        padding: 15px 0;
        width: calc( 100% - 120px );
    }

    .talent_profile_area .talent_profile dd:last-child {
        border-bottom: 1px solid #DDDDDD;
    }

    .talent_detail_title {
        font-size: 2.8rem;
        letter-spacing: 1.0px;
        padding: 8px 0 8px 18px;
    }
    
    .talent_detail_title_wrap {
        padding: 8px 0 8px 18px;
    }

    .talent_detail_title_wrap h2 {
        margin: 0;
        padding: 0;
        font-size: 2.8rem;
        letter-spacing: 1.0px;
    }
    
    /*
    .talent_news_list {
        padding: 15px 0px;
        border-radius: 20px;
    }
    
    .talent_news_list li {
        font-size: 1.6rem;
        min-height: 64px;
        padding: 20px 0px 0px 26px;
        line-height: 1.6;
    }
    

    .talent_news_list li .news_time {
        padding: 0 28px 0 0;
    }
    */
    
    .talent_news_list li .accordion_title_area, .talent_work_list li .accordion_title_area {
        padding: 0 32px 14px 0;
        position: relative;
    }

    .talent_news_list li .accordion_title_area::before, .talent_work_list li .accordion_title_area::before {
        display: inline-block;
        content: "";
        position: absolute;
        border-top: 2px solid #FF5C08;
        width: 20px;
        height: 0;
        top: 50%;
        transform: translateY(-50%);
        right: 9px;
        background: #FF5C08;
    }

    .talent_news_list li .accordion_title_area::after, .talent_work_list li .accordion_title_area::after {
        display: inline-block;
        content: "";
        position: absolute;
        border-left: 2px solid #FF5C08;
        width: 0;
        height: 20px;
        top: 50%;
        transform: translateY(-50%);
        right: 18px;
        transition: .3s;
    }

    .talent_news_list li .accordion_contents_area, .talent_work_list li .accordion_contents_area {
        font-weight: 400;
        padding: 14px 0 18px;
        border-top: 1px solid #DDDDDD;
    }
    
    .talent_work_list {
        margin: 40px 0 0;
    }
    
    .talent_work_list li {
        font-size: 1.6rem;
        min-height: 64px;
        padding: 20px 26px 0 26px;
        line-height: 1.6;
    }

    .talent_news_list li .accordion_contents_area p + p, .talent_work_list li .accordion_contents_area p + p, .talent_work_area p + p {
        padding: 16px 0 0;
    }

    .talent_work_area {
        padding: 15px 30px;
        font-size: 1.6rem;
    }
    
    
}


/*-------------------------------
Company
---------------------------------*/
.section_company {
    margin: 0 auto;
    padding: 0;
    position: relative;
    border-top: 1px solid #ededed;
}

.company_info_area {
    width: 100%;
    background: #fff;
}

.company_info_area .container {
    max-width: 90%;
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    flex-wrap: wrap;
}

.company_info_area .company_info_logo {
    width: 100%;
    padding: 70px 0 0;
    text-align: center;
}

.company_info_area .company_info_logo img {
    width: 50%;
    height: auto;
}

.company_info_area .company_info {
    width: 100%;
    background: #fff;
}

.company_info_area .company_info  dl {
    display:-webkit-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display: flex;
    flex-wrap: wrap;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 1.6rem;
    font-weight: 400;
    color: #333;
    width: 100%;
    margin: 0;
    padding: 10px 18px;
}

.company_info_area .company_info dt {
    color: #333;
    font-weight: 500;
    margin: 0;
    padding: 14px 0 5px;
    width: 100%;
}

.company_info_area .company_info dd {
    border-bottom: 1px solid #DDDDDD;
    margin: 0;
    padding: 0 0 14px;
    width: 100%;
}

.company_info_area .company_info dd:last-child {
    border-bottom: none;
}

@media (min-width: 1201px) {

    .company_info_area .container {
        max-width: 1000px;
        padding: 100px 0 0;
    }   
    

    .company_info_area .company_info_logo {
        width: 48%;
    }

    .company_info_area .company_info_logo img {
        width: 60%;
        height: auto;
        padding: 70px 0 0;
        
    }
    
    .company_info_area .company_info {
        width: 52%;
        padding: 0;
        display:-webkit-box;
        display:-webkit-flex;
        display:-ms-flexbox;
        display: flex;
        align-items: center;
    }

    .company_info_area .company_info dl {
        font-size: 1.8rem;
    }


    .company_info_area .company_info dt {
        border-bottom: 1px solid #DDDDDD;
        width: 160px;
        margin: 0;
        padding: 24px 0;
    }
    
    .company_info_area .company_info dt:nth-child(1), .company_info_area .company_info dd:nth-child(2) {
        padding: 0 0 24px;
        
    }

    .company_info_area .company_info dd {
        border-bottom: 1px solid #DDDDDD;
        margin: 0;
        padding: 24px 0;
        width: calc( 100% - 160px );
    }

    .company_info_area .company_info dd:last-child {
        border-bottom: 1px solid #DDDDDD;
    }
    
    
}

/*-------------------------------
Btn
---------------------------------*/

.btn_wrapper {
    margin-top: 20px;
    margin-bottom: 20px;
    text-align: center;
}

.btn {
    display: inline-block;
    color: #FF5C08 !important;
    border: 2px solid #FF5C08;
    height: 40px;
    line-height: 36px;
    width: 188px;
    border-radius: 19px;
    font-size: 1.4rem;
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 500;
    text-align: center;
    position: relative;
    transition: all .3s;
}

.btn:hover {
    background-color: #FF5C08;
    color: #FFF !important;;
}

.btn::after {
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: #FF5C08;
    font-size: 1.8rem;
    position: absolute;
    top: 1px;
    right: 12px;
}

.btn:hover::after {
    color: #FFF;
}

.btn_wrapper .btn + .btn {
    margin-left: 5px;
}

@media (min-width: 768px) {
    
    .btn_wrapper {
        margin-top: 40px;
        margin-bottom: 40px;
    }
    
    .btn {
        width: 200px;
        height: 72px;
        line-height: 70px;
        border-radius: 36px;
        font-size: 1.8rem;
        min-width: 320px;
    }

    .btn::after {
        font-size: 2.4rem;
        position: absolute;
        top: 1px;
        right: 20px;
    }

}

