@charset "UTF-8";

/*設定
--------------------*/
:root {
  --black: #212529;
  --white: #fff;
  --lightblue: #5DDEE3;
  --red: #EB5364;
  --yellow: #FDF190;
  --yellowMarker: #F9F587;
  --bg-yellow: #FDF8B0;
  --bg-gray: #EFEFEF;
  --border: #D9D9D9;
}

/*共通 パーツ
-------------------------------*/
article {
  font-family: "Yu Gothic", "Yu Gothic medium", "Arial", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-family: "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
  overflow: hidden;
}

a:hover {
  text-decoration: none;
  opacity: 0.6;
}

figure {
    margin: 0;
}

img {
  max-width: 100%;
  height: auto;
}

small {
  font-size: 90%;
  display: inline-block;
}

/*　PC/SP　switch
-------------------------------*/
/* sp */
@media screen and (max-width: 767px) {
  .pc-on {
    display: none;
  }
  .tab-on {
    display: none;
  }
  .sp-on {
    display: block;
  }
  .text-left-sp {
    text-align: left;
  }
}

/*pc・tab*/
@media screen and (min-width: 768px) {
  .pc-on {
    display: block;
  }
  .tab-on {
    display: none;
  }
  .sp-on {
    display: none;
  }

  .text-center-pc {
    text-align: center;
  }
}

/* only tab */
@media screen and (min-width: 768px) and (max-width: 991px) {
  .tab-on {
    display: block;
  }
}

@media (min-width: 1200px) {
    .container {
        max-width: 1000px;
    }
}

@media (min-width: 576px) and (max-width: 768px){
    .container {
        max-width: 100%;
    }
}


/* color
-----------------------------------*/
.color-black {
    color: var(--black)!important;
}
.color-white {
    color: var(--white)!important;
}
.color-red {
    color: var(--red)!important;
}


/* visiblity-hidden
--------------------------------------*/
.visiblity-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  margin: -1px !important;
  padding: 0 !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}


/* btn
-----------------------------------*/
.btn-wrap {
    margin: 30px auto 20px;
    text-align: center;
}
.btn-wrap > a {
    position: relative;
    transition: 0.3s;
}
.btn-wrap > a:hover {
   color: var(--black);
}

.btn-black {
    width: 100%;
    max-width: 246px;
    display: inline-block;
    padding: 15px 24px 14px 16px;
    border-radius: 50px;
    border: 2px solid var(--black);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    color: var(--black);
}
.btn-black::after {
    content: '\f0da';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: var(--black);
}

@media (max-width: 768px) {
    .btn-black {
        max-width: 80%;
        padding: 15px 24px 14px 16px;
        font-size: 14px;
    }
    .btn-black::after {
        right: 14px;
        font-size: 14px;
    }
}
@media (max-width: 600px) {
    .btn-black {
        max-width: 64%;
    }    
}

.btn-yellow {
    position: relative;
    width: 100%;
    max-width: 384px;
    display: inline-block;
    padding: 15px 24px 14px 16px;
    border-radius: 50px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color: var(--black);
    color: var(--white);
    background: #FFFAAA;
    background: #F0C620;
    border: 1px solid #F0C620;
    transition: 0.3s;
}
.btn-yellow:hover {
    color: var(--black);
    color: var(--white);
}
.btn-yellow::after {
    content: '\f107';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
/*    color: #B8ACAC;*/
    color: var(--white);
}
@media (max-width: 768px) {
    .btn-yellow {
        max-width: 80%;
        padding: 15px 24px 14px 16px;
        font-size: 13px;
    }
    .btn-yellow::after {
        right: 16px;
        font-size: 20px;
    }
}
@media (max-width: 600px) {
    .btn-yellow {
        max-width: 70%;
        padding: 12px 24px 12px 16px;
    }    
}

.btn-blue {
    color: var(--white);
    background: var(--lightblue);
}

.btn-orange {
    color: var(--white);
    background: #F0C620;
}
.btn-orange:hover {
    color: var(--white);
}

.btn-orange-v2 {
    position: relative;
    width: 100%;
    max-width: 330px;
    display: inline-block;
    padding: 15px 24px 14px 16px;
    border-radius: 30px;
    border: 2px solid #e5a204;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    color:  #e5a204;
    transition: 0.3s;
}
.btn-orange-v2:hover {
    color: #e5a204;
}
.btn-orange-v2::after {
    content: '\f105';
    position: absolute;
    top: 50%;
    right: 24px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 18px;
    color: #e5a204;
}


/*2つ並び*/
.pict-list {
    display: flex;
    flex-wrap: wrap;
}
.pict-list li:not(:last-child) {
   margin-right: 7px;
   margin-bottom: 5px;
}
.btn-list {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
}
.btn-item {
    width: 48%;
    margin-bottom: 10px;
}
.btn-item:last-child {
    margin-left: 1%;
}

@media (max-width: 768px) {
    .btn-list {
        display: flex;
        margin-top: 10px;
    }
    .btn-item {
        width: 48%;
        margin-bottom: 10px;
    }
    .btn-item:last-child {
        margin-left: 1%;
    }
}



/* text
----------------------------------------------------*/
.lead {
    font-size: 18px;
    font-weight: bold;
    line-height: 1.5;
    color: var(--black);
}

@media (max-width: 768px) {
    .lead {
        font-size: 13px;
        line-height: 1.5;
    } 
}

.small {
    font-size: 70%;
}


/* text decoration
----------------------------------------------------*/
.marker {
    background-image: linear-gradient(transparent 60%, var(--yellowMarker) 40%);
}


/*Hero
---------------------------------------------------*/
#Hero img{
	margin: 0 auto;
}

#Hero h1 a:hover{
	opacity: 0.8;
}


/*About
---------------------------------------------------*/
.about-note {
    position: relative;
    padding-left: 10px;
}
.about-note::after {
    content: '※';
    position: absolute;
    left: 0;
    font-size: 60%;
}

.note small{
    font-size: 12px;
}
.about-note small {
    font-size: 10px;
}

@media (max-width: 768px) {
    #About {
        padding: 20px 0 20px;
    }
    #About .btn-wrap {
        max-width: 360px;
        margin: 22px auto 10px;
    }
    
    .about-note small,
    .note small{
        font-size: 10px;
    }
}


/* Pickup
---------------------------------------------------*/
#Pickup {
   padding-bottom: 110px; 
}
.box-blue {
    border-radius: 60px;
/*  background: url('/static/img/campaign/pickup-bus/bg-dot.svg') repeat center center / 100%;*/
    background-color: var(--lightblue);
    background-color: #8ffbff;
    background-color: #b2f4f7;
    padding: 60px 40px;
    max-width: 1258px;
    width: 100%;
}
.box-white {
    border-radius: 30px;
    background-color: var(--white);
    padding: 20px 30px;
    margin: auto;
    max-width: 818px;
    width: 100%;
    box-shadow: 2px 2px 4px #a3eef1;
} 
.box-block {
    margin-top: 16px;
    border-top: 2px dashed #bbb;
    padding-top: 16px;
}

.pickup-ttl {
    margin: 0 auto 16px;
    max-width: 180px;
    font-size: 16px;
    font-weight: bold;
    padding: 8px 20px;
    text-align: center;
    border: 2px solid var(--lightblue);
    border-radius: 50px;
}
.seaticon-wrap {
    width: 90%;
    margin: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.seaticon-list {
    display: flex;
    align-items: center;
    width: calc(100% / 3);
    margin-bottom: 16px;
}
.pict-icon {
    max-width: 40px;
}
.pict-name {
    margin-left: 12px;
    font-size: 16px;
    color: var(--black);
}
.pict-name > span {
    font-weight: bold;
}
.dept-wrap {
    width: 98%;
}
.dept-wrap .pict-name {
    font-size: 14px;
}


/* switch */
.route-img-wrap {
    overflow: hidden;
}
.route-switch {
    text-align: center;
    font-size: 13px;
    border-bottom: none;
    justify-content: center;
    margin-bottom: 12px;
    margin-top: 10px;
}
.switch-item {
    display: block;
    width: fit-content;
    padding: 4px 20px 2px 8px;
    text-align: center;
    border: 1px solid #eee;
    border-radius: 5px;
    margin: 0 3px;
    cursor: pointer;
    position: relative;
    background: var(--bg-gray);
}
.switch-item::before {
    content: '\f138';
    position: absolute;
    top: 50%;
    right: 2px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 11px;
    color: #bbb;
}
.switch-item.active {
    border-color: var(--lightblue);
}

.switch-item.active::before {
    color: var(--lightblue);
}

#Pickup .btn-wrap {
    margin: 60px auto 10px;
}


@media (max-width: 768px) {
    #Pickup {
        padding-bottom: 60px;
    }
    #Pickup .container {
        padding-left: 0;
        padding-right: 0;
    }
    .box-blue {
/*      background: url('/static/img/campaign/pickup-bus/bg-dot.svg') repeat center center / contain;*/
        border-radius: 30px;
        padding: 50px 15px 40px;
        max-width: 100%;
    }
    .box-white {
        border-radius: 30px;
        background-color: var(--white);
        padding: 20px 16px;
        max-width: 92%;
    }
    .pickup-ttl {
        margin: 0 auto 12px;
        max-width: 120px;
        font-size: 14px;
        padding: 5px 14px;
    }

    .route-img-wrap {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .route-switch {
        order: 1;
        margin-top: 0;
    }
    .switch-content {
        order: 2;
        margin-bottom: 14px;
    }

    .seaticon-wrap {
        width: 100%;
    }
    .seaticon-list {
        display: flex;
        align-items: center;
        width: calc(100% / 2);
        margin-bottom: 16px;
    }
    .pict-icon {
        max-width: 32px;
    }
    .pict-name {
        margin-left: 8px;
        font-size: 13px;
    }
    .dept-wrap {
        width: 90%;
    }
    .dept-wrap .pict-name {
        font-size: 13px;
    }
    .dept-wrap .seaticon-list {
        width: 100%;
        margin-bottom: 12px;
    }
    
    /*btn*/
    #pickup .btn-wrap {
        margin: 40px auto 10px;
    }
}


/* Route
-----------------------------------------*/
.route-list {
    margin-top: 56px;
}
.rote-item {
    margin-bottom: 31px;
}
.route-item:not(:last-child) {
    margin-bottom: 32px;
}
.route-header {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 1px solid #bbb;
    position: relative !important;
}
.route-heading {
    padding-left: 68px;
}
.route-num {
    position: absolute;
    left: 0;
    background: #FBF56A;
    width: 56px;
    height: 56px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: bold;
    font-size: 30px;
    padding: 13px 12px 11px 12px;
    text-align: center;
    border-radius: 60px;
}
.company-name {
    display: block;
    font-size: 13px;
    color: var(--black);
    line-height: 1.4;
    margin-bottom: 3px;
}
.route-name {
    display: block;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 4px;
}
.route-name .ico {
    display: inline-block;
    margin: 0 10px;
}
.route-name.one {
    position: relative;
}
.route-content {
    display: flex;
/*    align-items: center;*/
}
.route-left {
    width: 46%;
    margin-right: 3%;
}
.route-right {
    width: 52%;
}
.route-img {
    max-width: 264px;
    text-align: center;
}
.route-img img {
    border-radius: 30px;
}

.route-price {
    text-align: right;
    margin-top: 16px;
    margin-bottom: 24px;
}
.route-price a{
   font-size: 24px;
    font-weight: bold;
   line-height: 1.2;
    color: var(--red);
}

#Pickup .btn-item a {
    position: relative;
    width: 100%;
    max-width: 180px;
    display: inline-block;
    padding: 15px 24px 14px 16px;
    border-radius: 10px;
    font-size: 18px;
    font-weight: bold;
    text-align: center;
    transition: 0.3s;
}
#Pickup .btn-item a:hover {
    transition: 0.3s;
    color: var(--white);
}
#Pickup .btn-item a:hover::after {
    right: 10px;
}
#Pickup .btn-item a:after {
    content: '\f0da';
    position: absolute;
    top: 50%;
    right: 16px;
    transform: translateY(-50%);
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 20px;
    color: var(--white);
}

@media (max-width: 768px) {
    .route-list {
        margin-top: 32px;
    }
    .route-list .box-white {
        border-radius: 20px;
    }
    .rote-item {
        margin-bottom: 18px;
    }
    .route-item:not(:last-child) {
        margin-bottom: 12px;
    }
    .route-header {
        padding-bottom: 10px;
        margin-bottom: 14px;
    }
    .route-heading {
        padding-left: 40px;
        line-height: 1.3;
    }
    .route-num {
        width: 35px;
        height: 35px;
        font-size: 20px;
        padding: 13px 12px 11px 12px;
    }
    .company-name {
        font-size: 10px;
        margin-bottom: 4px;
    }
    .route-name {
        font-size: 13px;
        margin-bottom: 5px;
    }
    .route-name .ico {
        margin: 0 8px;
        max-width: 16px;
    }
    .route-name.one {
        position: relative;
    }
    .route-content {
        flex-wrap: wrap;
    }
    .route-left {
        width: 100%;
        margin-right: 0;
    }
    .route-right {
        width: 100%;
    }

    .route-img {
        border-radius: 10px;
        margin: 0 auto 22px;
    }
    
    .rote-img img {
        border-radius: 16px;
    }
    
    .pict-list li:not(:last-child) {
       margin-right: 8px;
       margin-bottom: 5px;
    }

    .route-price {
        margin-top: 14px;
        margin-bottom: 12px;
    }
    .route-price a{
       font-size: 24px;
       line-height: 1.2;
    }

    #Pickup .btn-item a{
        max-width: 100%;
        padding: 15px 24px 14px 16px;
        font-size: 14px;
        color: var(--white);
    }
    #Pickup .btn-item a:hover::after {
        right: 10px;
    }
    #Pickup .btn-item a:after {
        font-size: 13px;
    }
   
}

@media (min-width: 561px) {
    .route-img {
        max-width: 264px;
        margin: 0 auto 22px;
    }
    .pict-list li {
        width: 40px;
    }
    .btn-item a {
        max-width: 100%;
    }
}

@media (max-width: 560px) {
    .route-img {
        max-width: 100%;
        margin: 0 auto 22px;
    }
    .pict-list li {
        width: 32px;
    }
    .pict-list li:not(:last-child) {
       margin-right: 10px;
       margin-bottom: 5px;
    }
}



/* Recommend
---------------------------------------------------*/
#Recommend{
	padding: 60px 0;
    background: var(--bg-gray);
}
#Recommend .card-plan-01{
	color: var(--black);
    min-height: 220px;
}
#Recommend .card-plan-title{
	font-size: 14px;
	padding-top: 10px;
	font-weight: bold;
}

.gallery {
    justify-content: center;
}

@media (max-width: 768px) {
    #Recommend{
        padding: 40px 0;
    }
}
@media (max-width: 767px) {
    #Recommend .header-section{
        margin-bottom: 20px;
    }
    #Recommend .card-plan-01{
        padding: 8px;
        margin-bottom: 20px;
        min-height: auto;
    }
    #Recommend .card-plan-title{
        font-size: 12px;
    }
}



/* Column
---------------------------------------*/
#Column {
	padding: 60px 0;
}

#Column .card-plan-01{
	color: #333;
}
.d-willercolle .card-plan-title{
	font-size: 14px;
	padding-top: 10px;
    font-weight: normal;
}
.tagcloud{
	background: #fff;
	padding: 20px;
	display: flex;
	flex-wrap: wrap;
}
.tag-cloud-link{
	border: 1px solid #e7e7e7;
	border-radius: 20px;
	display: inline-block;
	margin: 0px 2px 15px 2px;
	padding: 5px 15px;
	font-size: 14px;
	color: #666;
	background: #fff;
}
.box-other{
	display: block;
	width: 100%;
	text-align: center;
	margin-top: 20px;
}
.box-other a{
	display: inline-block;
	background: #333;
	color: #fff;
	padding: 10px 30px;
	border-radius: 8px;
}
.box-other a:hover{
	text-decoration: none;
	background: #ccc;
	color: #333;
}

@media (max-width: 768px) {
    #Column {
        padding: 40px 0;
    }
    #Column .header-section{
        margin-bottom: 20px;
    }
    #Column .card-plan-01{
        padding: 10px;
    }
    .d-willercolle{
        display: flex;
        width: 100%;
        justify-content: space-between;
    }
    .d-willercolle h3{
        width: 120px;
    }
    .d-willercolle .card-plan-title{
        padding-top: 0;
        width: calc(100% - 140px);
        font-size: 14px;
    }
    .tagcloud{
        border: none;
        border-top: dotted 1px #333;
        padding: 10px 0 0 0;
        background: none;
        margin-top: 5px;
    }
    .tag-cloud-link{
        font-size: 16px;
    }
}



/*Sns
---------------------------------------*/
#Sns{
    max-width: 935px;
    width: 92%;
    background: var(--bg-gray);
    padding: 48px;
    margin: 50px auto 110px;
    border-radius: 60px;
}
.sns-bnr{
	width: 80%;
    margin: auto;
	display: flex;
    justify-content: center;
    align-items: center;
}
.sns-bnr li{
	width: 32%;
    padding: 10px;
    margin-bottom: 10px;
}
.sns-bnr a{
	display: flex;
	width: 100%;
    justify-content: center;
    align-items: center;
}

@media(max-width: 768px) {
    #Sns {
        padding: 40px 0;
        max-width: 100%;
        width: 88%;
        margin: 0 auto 36px;
        border-radius: 30px;
    }
    #Sns .header-section {
        margin-bottom: 26px;
    }
    .sns-bnr li img {
        max-width: 48px;
    }
}


/* Cautions
---------------------------------------------------*/
#Cautions {
	background: var(--bg-yellow);
	padding: 60px 0;
}
#Cautions .title-h2{
	text-align: center;
	position: relative;
}
.notice-list {
	margin:20px auto 0;
	max-width: 960px;
	width: 100%;
	padding: 30px;
}
.notice-list li {
	position: relative;
	font-size: 16px;
	padding-left: 20px;
}
.notice-list li::before{
    content: "\f14a";
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    top: -1px;
    left: 0;
    color: var(--lightblue);
    font-size: 16px;
}
.notice-list li + li{
	margin-top: 10px;
}

.img-h2{
	margin-top: 40px;
}

@media(max-width:767px) {
    #Cautions{
        padding: 40px 0;
    }
    .img-h2{
        margin-top: 20px;
    }
	.img-h2 img{
		height: 50px;
    }
    .notice-list {
        padding: 0;
;
    }
    .notice-list li{
        font-size: 14px;
    }
    .notice-list li::before{
        font-size: 14px;
    }
}


.header-section{
	margin-bottom: 40px;
}
.header-section h2{
	text-align: center;
	font-weight: bold;
	font-size: 24px;
}
.header-section p{
	font-size: 14px;
}
.header-section h2 + p{
	margin-top: 30px;
}

.list-date{
	font-size: 16px;
	text-align: center;
	margin-bottom: 30px;
}
.list-date b{
	color: #dd2a13;
	font-size: 16px;
}
.list-date b:before{
	content: "：";
	color: #333;
	font-weight: normal;
	margin: 0 3px;
}
.list-date li + li{
	margin-top: 10px;
}
.list-date li i{
	color: #dca947;
}
@media(max-width:768px) {
    .list-date{
        font-size: 14px;
    }
    .list-date b{
        display: block;
    }
    .list-date b:before{
        display: none;
    }
    .list-date li + li{
        margin-top: 5px;
    }
}


/*fix Btn
------------------------------*/
.btn-wrapper {
    position: relative;
    display: inline-block;
}
.fixed-btn-cv {
    opacity: 0;
    position: fixed;
    z-index: 10;
    transition: 0.3s;
}
.fixed-btn {
    transition: 0.3s;
    margin-right: 20px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 150px;
    height: 150px;
    padding: 2% 1%;
    text-align: center;
    background: #F0C620;
    border: 2px solid var(--white);
    border-radius: 100%;
    color: var(--white);
}
.fixed-btn::before,
.fixed-btn::after {
    position: absolute;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--white);
}
.fixed-btn::before {
    content: '\f207';
    left: 46%;
    top: 14px;
    transform: translateX(-50%);
    font-size: 20px;
}
.fixed-btn::after {
    content: '\f0da';
    left: 46%;
    bottom: 42px;
    transform: translateX(-50%);
    font-size: 20px;
}
.fixed-btn span {
    font-size: 20px;
    line-height: 1.2;
    font-weight: bold;
    text-align: center;
    color: var(--black);
/*
    -webkit-text-stroke-width: 2px;
    -webkit-text-stroke-color: var(--white);
*/
}

/*追従*/
.fixed-btn-cv.is-view {
    opacity: 1;
    right: 0;
    bottom: 35px;
    transition: 0.3s;
}

/*フェードアウト*/
.fixed-btn-cv.is-fadeout {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.btn-close {
    position: absolute;
    z-index: 2;
    top: 0px;
    right: 69px;
    width: 22px;
    height: 22px;
    line-height: 1;
    cursor: pointer;
    opacity: 1;
    transition: opacity .2s;
    padding: 0;
    background: var(--white);
    border-radius: 10px;
    border: 1px solid #bbb;
    color: var(--black);
}
.btn-close:hover {
    opacity: 0.8;
}

@media (max-width: 767px) {
      .fixed-btn {
        margin-right: 0;
        margin-bottom: 0;
        width: 100px;
        height: 100px;
        border: 2px solid var(--white);
    }
    .fixed-btn::before {
        content: '\f207';
        left: 50%;
        top: 12px;
        transform: translateX(-50%);
        font-size: 16px;
    }
    .fixed-btn::after {
        content: '\f0da';
        left: 50%;
        bottom: 13px;
        transform: translateX(-50%);
        font-size: 16px;
    }
    .fixed-btn span {
        font-size: 13px;
    }
    
    .btn-close {
        top: -4px;
        right: 34px;
        width: 20px;
        height: 20px;
        padding: 0 0 2px;
    }
    .fixed-btn::before {
        top: 10px;
    }

}


/* cv
---------------------------------*/
.cv {
    padding: 0 15px 80px 15px;
}
.cv .btn-wrap {
    max-width: 384px;
    margin: 40px auto 24px;
}
.cv .btn-list {
    width: 80%;
    margin: auto;
}
#About.cv {
    padding: 55px 0 50px;
}
.cv.-second .btn-yellow::after {
    transform: translateY(-50%) rotate(-180deg);
}

@media (max-width: 768px) {
    .cv {
        padding: 0 15px 60px 15px;
    }
    #About.cv {
        padding: 20px 15px 20px 15px;
    }
    
    .cv .btn-list {
        width: 90%;
        flex-wrap: wrap;
    }
    .cv .btn-item {
        width: 100%; 
    }
    .cv .btn-item:first-child{
        margin-bottom: 16px;
    }
    .cv .btn-item a {
        width: 100%;
        max-width: 100%;
        font-size: 14px;
    }
    .cv .btn-item .btn-yellow {
        width: 100%;
        max-width: 100%;
        padding: 14px 20px 14px 16px;
    }
    .cv .btn-item .btn-orange-v2 {
        padding: 14px 20px 14px 16px;
    }
    .cv .btn-item .btn-orange-v2::after {
        right: 13px;
    }
}


