@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Rubik:wght@300..900&display=swap');

/* =======================
	all
======================= */
html {
	scroll-behavior: smooth;
  scroll-padding-top: 80px;
}
body,
input,
select {
  font-family: "Noto Sans JP", "Arial", "メイリオ", "Meiryo", sans-serif;
  font-weight: 400;
  color: #000;
  font-size: 16px;
}
a:hover{
  opacity: 0.8;
}

/* pc */
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* sp */
@media print,screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}




/* =======================
	c-hdr
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-hdr {
    background-color: #fff;
    width: 100%;
    position: sticky;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #D1D1D1;
  }
  .c-hdr-inr {
    max-width: 1036px;
    margin: 0 auto;
    padding: 16px 0;
    box-sizing: content-box;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-hdr__logo {
    display: block;
    width: 139px;
    height: 43px;
  }
  .c-hdr__logo-item {
    width: 100%;
    height: 100%;
    display: block;
  }
  .c-hdr__wrap{
    display: flex;
  }
  .c-hdr__wrap-list {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .c-hdr__wrap-list-item:not(:last-of-type) {
    margin-right: 30px;
  }
  .c-hdr__wrap-list-item-link {
    font-weight: 700;
    line-height: 1.625;
    display: block;
    cursor: pointer;
    position: relative;
  }
  .c-hdr__wrap-list-item-link:hover::after{
    content: "";
    width: 100%;
    height: 2px;
    background-color: #000;
    position: absolute;
    left: 50%;
    bottom: -2px;
    transform: translateX(-50%);
  }
  .c-hdr__wrap-logo{
    margin-left: 30px;
  }
}

/* tab */
@media screen and (max-width: 1036px) and (min-width: 769px){
  .c-hdr-inr{
    padding-left: 10px;
    padding-right: 10px;
  }
  .c-hdr__logo{
    width: 100px;
    height: 30.922px;
  }
  .c-hdr__wrap{
    align-items: center;
  }
  .c-hdr__wrap-list-item:not(:last-of-type) {
    margin-right: 15px;
  }
  .c-hdr__wrap-list-item-link{
    font-size: 14px;
  }
  .c-hdr__wrap-logo{
    margin-left: 15px;
    width: 100px;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-hdr {
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 10;
    border-bottom: 1px solid #D1D1D1;
  }
  .c-hdr-inr {
    position: relative;
  }
  .c-hdr__head {
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
  }
  .c-hdr__head-logo {
    display: block;
    width: 149px;
    height: 45px;
  }
  .c-hdr__head-logo-item {
    width: 100%;
    height: 100%;
    display: block;
  }
  .c-hdr__head-trigger {
    display: block;
    width: 26px;
    height: 24px;
    position: relative;
    cursor: pointer;
  }
  .c-hdr__head-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #39E82C;
  }
  .c-hdr__head-trigger span:nth-of-type(1) {
    top: 0;
  }
  .c-hdr__head-trigger span:nth-of-type(2) {
    top: 11px;
  }
  .c-hdr__head-trigger span:nth-of-type(3) {
    bottom: 0;
  }
  .c-hdr__head-trigger.is-active span:nth-of-type(1) {
    -webkit-transform: translateY(11px) rotate(-45deg);
    transform: translateY(11px) rotate(-45deg);
  }
  .c-hdr__head-trigger.is-active span:nth-of-type(2) {
    opacity: 0;
  }
  .c-hdr__head-trigger.is-active span:nth-of-type(3) {
    -webkit-transform: translateY(-11px) rotate(45deg);
    transform: translateY(-11px) rotate(45deg);
  }
  .c-hdr__head-trigger,
  .c-hdr__head-trigger span {
    transition: all 0.4s;
    box-sizing: border-box;
  }
  .c-hdr__wrap {
    width: 100vw;
    position: absolute;
    top: 78px;
    left: 100vw;
    transition: 0.8s;
    background-color: #fff;
    padding: 40px 20px 100px;
    height: 100vh;
    overflow: scroll;
    z-index: 1;
  }
  .c-hdr__wrap.is-active {
    left: 0;
  }
  .c-hdr__wrap-list {
    margin-bottom: 40px;
  }
  .c-hdr__wrap-list-item {
    padding-bottom: 26px;
    border-bottom: 3px solid #000;
  }
  .c-hdr__wrap-list-item:not(:first-of-type) {
    margin-top: 22px;
  }
  .c-hdr__wrap-list-item-link {
    font-size: 18px;
    font-weight: 700;
    position: relative;
    display: block;
    cursor: pointer;
  }
  .c-hdr__wrap-list-item-link::after {
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_arrow_right_black.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 10px;
    height: 17px;
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
  .c-hdr__box{
    padding: 37px 17px;
    border: 3px solid #000;
    border-radius: 6px;
    background-color: #F8F8F4;
    margin-bottom: 30px;
  }
  .c-hdr__box-ttl{
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.52px;
    margin-bottom: 20px;
  }
  .c-hdr__box-txt{
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.32px;
    margin-bottom: 20px;
  }
  .c-hdr__box-link{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background-color: #39E82C;
    border: 3px solid #000;
    border-radius: 6px;
    padding: 19px 0;
    position: relative;
    display: block;
  }
  .c-hdr__box-link::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_black.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 41px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

/* small sp */
@media screen and (max-width: 374px){
  .c-hdr__box-link::after{
    width: 32px;
    height: 7px;
    right: 8px;
  }
}




/* =======================
	c-ftr
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-ftr{
    padding: 30px 0;
    border-top: 2px solid #D1D1D1;
  }
  .c-ftr__txt{
    text-align: center;
    color: #8E8E8E;
    line-height: 1.5625;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-ftr{
    padding: 20px;
    border-top: 2px solid #D1D1D1;
  }
  .c-ftr__txt{
    color: #8E8E8E;
    line-height: 1.5625;
  }
}




/* =======================
	c-main
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-main{
    overflow: hidden;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-main{
    padding-top: 77px;
    overflow: hidden;
  }
}




/* =======================
	c-cv
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-cv{
    max-width: 860px;
    margin: 0 auto;
    padding: 80px 0;
    border: 3px solid #000;
    border-radius: 6px;
    background-color: #D1F300;
    position: relative;
  }
  .c-cv::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/bg_cv_pc.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 777px;
    height: 151px;
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .c-cv-outer{
    padding: 0 20px;
    margin-top: 130px;
  }
  .c-cv-outer--mt0{
    margin-top: 0;
  }
  .c-cv__ttl{
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.52px;
    margin-bottom: 26px;
  }
  .c-cv__link{
    width: 332px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding: 19px 0;
    border-radius: 6px;
    position: relative;
    display: block;
  }
  .c-cv__link::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 46px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 27px;
    transform: translateY(-50%);
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-cv{
    padding: 47px 13px 139px;
    border: 3px solid #000;
    border-radius: 6px;
    background-color: #D1F300;
    position: relative;
  }
  .c-cv-outer{
    padding: 0 20px;
    margin-top: 68px;
  }
  .c-cv-outer--mt0{
    margin-top: 0;
  }
  .c-cv::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/bg_cv_sp.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 327px;
    height: 110px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .c-cv__ttl{
    text-align: center;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.52px;
    margin-bottom: 16px;
  }
  .c-cv__link{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    background-color: #000;
    text-align: center;
    padding: 19px 0;
    border-radius: 6px;
    position: relative;
    display: block;
  }
  .c-cv__link::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 41px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

/* small sp */
@media screen and (max-width: 374px){
  .c-cv::after{
    width: 85.2vw;
    height: 28.3333vw;
  }
  .c-cv__ttl{
    font-size: 22px;
  }
  .c-cv__link::after{
    width: 32px;
    height: 7px;
    right: 8px;
  }
}




/* =======================
	c-info
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-info{
    max-width: 1036px;
    background-color: #FFEBEB;
    padding: 10px 27px;
    margin: 0 auto 20px;
  }
  .c-info-inr{
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
  .c-info__ttl{
    color: #333;
    font-weight: 800;
    line-height: 1.5625;
    width: 7em;
  }
  .c-info__list{
    position: relative;
    margin-left: 40px;
  }
  .c-info__list::after{
    content: "";
    width: 1px;
    height: 100%;
    background-color: #000;
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
  }
  .c-info__list-item:not(:last-of-type){
    margin-bottom: 4px;
  }
  .c-info__list-item-link{
    color: #66A;
    text-decoration: underline;
    font-weight: 700;
    line-height: 1.5;
  }
}

/* tab */
@media screen and (max-width: 1036px) and (min-width: 769px){
  .c-info{
    margin: 0 10px 20px;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-info{
    background-color: #FFEBEB;
    padding: 16px;
    margin: 0 20px 20px;
  }
  .c-info__ttl{
    color: #333;
    font-weight: 800;
    line-height: 1.8;
    letter-spacing: 0.32px;
  }
  .c-info__list-item:not(:last-of-type){
    margin-bottom: 6px;
  }
  .c-info__list-item-link{
    color: #66A;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5;
  }
}




/* =======================
	c-sec
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-sec-inr{
    max-width: 1036px;
    margin:  0 auto;
  }
}

/* tab */
@media screen and (max-width: 1036px) and (min-width: 769px){
  .c-sec-inr{
    padding: 0 10px;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-sec-inr{
    padding: 0 20px;
  }
}




/* =======================
	c-sec__ttl
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-sec__ttl{
    padding-left: 21px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.52px;
    margin-bottom: 15px;
    position: relative;
  }
  .c-sec__ttl::before{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_thunder_green.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 11px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
  .c-sec__ttl--mb0{
    margin-bottom: 0;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-sec__ttl{
    padding-left: 21px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.52px;
    margin-bottom: 24px;
    position: relative;
  }
  .c-sec__ttl::before{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_thunder_green.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 11px;
    height: 23px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}




/* =======================
	c-sec__txt
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-sec__txt{
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.32px;
    margin-bottom: 19px;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-sec__txt{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    margin-bottom: 24px;
  }
}




/* =======================
	c-cards
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-cards{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .c-cards__unit{
    width: calc((100% - 40px) / 3);
    border-radius: 6px;
    border: 3px solid #000;
    background: #FFF;
    padding: 21px 21px 55px;
    position: relative;
    display: block;
  }
  .c-cards__unit::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_black.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 11px;
    position: absolute;
    bottom: 17px;
    right: 13px;
  }
  .c-cards__unit[target="_blank"]::after{
    background-image: url("/otona/howtoev/_share/img/icon_blank_black.svg");
    width: 19px;
    height: 17px;
  }
  .c-cards__unit-pic{
    display: block;
    width: 100%;
    height: auto;
    max-height: 197px;
    object-fit: cover;
    margin-bottom: 20px;
  }
  .c-cards__unit-main-head{
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .c-cards__unit-main-head-tag{
    width: auto;
    height: 23px;
    display: block;
  }
  .c-cards__unit-main-head-day{
    display: block;
    color: #8E8E8E;
    font-size: 12px;
  }
  .c-cards__unit-main-txt{
    font-weight: 700;
    line-height: 1.625;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-cards__unit{
    width: 100%;
    border-radius: 6px;
    border: 3px solid #000;
    background: #FFF;
    padding: 18px 13px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
  }
  .c-cards__unit:not(:last-of-type){
    margin-bottom: 20px;
  }
  .c-cards__unit::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_black.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 50px;
    height: 11px;
    position: absolute;
    bottom: 17px;
    right: 13px;
  }
  .c-cards__unit[target="_blank"]::after{
    background-image: url("/otona/howtoev/_share/img/icon_blank_black.svg");
    width: 19px;
    height: 17px;
  }
  .c-cards__unit-pic{
    display: block;
    width: 129px;
    height: 154px;
    object-fit: contain;
    margin-right: 9px;
  }
  .c-cards__unit-main-head{
    margin-bottom: 6px;
  }
  .c-cards__unit-main-head-tag{
    width: auto;
    height: 23px;
    display: block;
    margin-bottom: 6px;
  }
  .c-cards__unit-main-head-day{
    display: block;
    color: #8E8E8E;
    font-size: 12px;
  }
  .c-cards__unit-main-head-day.sp{
    margin-top: 6px;
  }
  .c-cards__unit-main-txt{
    font-weight: 500;
    line-height: 1.5;
    font-size: 14px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
  }
}




/* =======================
	c-return
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-return{
    margin: 70px auto 30px;
    max-width: 1036px;
  }
  .c-return-link{
    display: block;
    margin: 0 0 0 auto;
    width: 60px;
    height: 60px;
  }
  .c-return-link-img{
    display: block;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-return{
    margin: 50px auto 20px;
    padding: 0px 20px;
  }
  .c-return-link{
    display: block;
    margin: 0 0 0 auto;
    width: 60px;
    height: 60px;
  }
  .c-return-link-img{
    display: block;
  }
}




/* =======================
	c-links
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-links-inr{
    margin: 0 auto;
    padding: 30px 0;
    max-width: 1036px;
  }
  .c-links__sns{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  .c-links__sns-item{
    width: 30px;
    height: 30px;
    display: block;
  }
  .c-links__sns-item:not(:last-of-type){
    margin-right: 22px;
  }
  .c-links__sns-item-img{
    display: block;
  }
  .c-links__logo{
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .c-links__logo-item:not(:last-of-type){
    margin-right: 38px;
  }
  .c-links__logo-item--howtoev{
    width: 138px;
  }
  .c-links__logo-item--response{
    width: 134px;
  }
  .c-links__logo-item--otona{
    width: 102px;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-links-inr{
    padding: 0 20px 40px;
  }
  .c-links__sns{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  .c-links__sns-item{
    width: 30px;
    height: 30px;
    display: block;
  }
  .c-links__sns-item:not(:last-of-type){
    margin-right: 22px;
  }
  .c-links__sns-item-img{
    display: block;
  }
  .c-links__logo-item{
    display: block;
    margin: 0 auto;
  }
  .c-links__logo-item:not(:last-of-type){
    margin-bottom: 20px;
  }
  .c-links__logo-item--howtoev{
    width: 180px;
  }
  .c-links__logo-item--response{
    width: 175px;
  }
  .c-links__logo-item--otona{
    width: 133px;
  }
  .c-links__logo-item-img{
    display: block;
    width: 100%;
  }
}




/* =======================
	c-cards--list
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-cards--list{
    justify-content: flex-start;
    align-items: stretch;
  }
  .c-cards--list .c-cards__unit{
    margin-bottom: 40px;
  }
  .c-cards--list .c-cards__unit:not(:nth-of-type(3n)){
    margin-right: 20px;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-cards--list{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .c-cards--list .c-cards__unit{
    width: calc((100% - 13px) / 2);
    padding-top: 15px;
    padding-bottom: 40px;
    margin-bottom: 16px;
    display: block;
  }
  .c-cards--list .c-cards__unit-pic{
    margin-right: 0;
    margin-bottom: 9px;
    width: 100%;
    height: auto;
    object-fit: fill;
  }
  .c-cards--list .c-cards__unit-main-head-tag{
    margin-bottom: 0;
  }
  .c-cards--list .c-cards__unit-main-txt{
    font-size: 12px;
  }
}




/* =======================
	c-cards--contractor
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-cards--contractor .c-cards__unit{
    margin-bottom: 10px;
  }
  .c-cards--contractor .c-cards__unit-main-txt{
    overflow: visible;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: none;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-cards--contractor .c-cards__unit{
    padding: 21px 21px 55px;
    margin-bottom: 20px;
    display: block;
  }
  .c-cards--contractor .c-cards__unit-pic{
    margin-right: 0;
    margin-bottom: 9px;
    width: 100%;
    height: auto;
  }
  .c-cards--contractor .c-cards__unit-main-head{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  .c-cards--contractor .c-cards__unit-main-head-tag{
    margin-bottom: 0;
  }
  .c-cards--contractor .c-cards__unit-main-txt{
    font-size: 16px;
    overflow: visible;
    display: block;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: none;
  }
}




/* =======================
	c-article
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-article{
    max-width: 1125px;
    margin: 0 auto 120px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  .c-article__main{
    width: 704px;
    margin-right: 67px;
  }
}

/* tab */
@media screen and (max-width: 1124px){
  .c-article{
    display: block;
  }
  .c-article__main{
    margin: 0 auto;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-article{
    padding: 0 20px;
  }
}




/* =======================
	c-side
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-side{
    width: 354px;
  }
  .c-side__login{
    padding: 40px 20px;
    border-radius: 6px;
    border: 3px solid #000;
    background-color: #F8F8F4;
    margin-bottom: 40px;
  }
  .c-side__login-ttl{
    padding-left: 21px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.52px;
    margin-bottom: 20px;
    position: relative;
  }
  .c-side__login-ttl::before{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_thunder_green.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 11px;
    height: 23px;
    position: absolute;
    top: 11px;
    left: 0;
  }
  .c-side__login-txt{
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.32px;
    margin-bottom: 20px;
  }
  .c-side__login-link{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background-color: #39E82C;
    border: 3px solid #000;
    border-radius: 6px;
    padding: 19px 0;
    position: relative;
    display: block;
  }
  .c-side__login-link::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_black.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 41px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .c-side__cv{
    padding: 40px 20px;
    border-radius: 6px;
    border: 3px solid #000;
    background-color: #D1F300;
  }
  .c-side__cv-ttl{
    padding-left: 21px;
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.52px;
    margin-bottom: 20px;
    position: relative;
    white-space: nowrap;
  }
  .c-side__cv-ttl::before{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_thunder_black.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 11px;
    height: 23px;
    position: absolute;
    top: 11px;
    left: 0;
  }
  .c-side__cv-link{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 6px;
    padding: 19px 0;
    position: relative;
    display: block;
  }
  .c-side__cv-link::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 41px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

/* tab */
@media screen and (max-width: 1124px) and (min-width: 769px){
  .c-side{
    width: 704px;
    margin: 0 auto;
  }
  .c-side__login-ttl br,
  .c-side__cv-ttl br{
    display: none;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-side{
    width: 100%;
  }
  .c-side__login{
    padding: 40px 20px;
    border-radius: 6px 6px 46px 6px;
    background-color: #F8F8F4;
    margin-bottom: 40px;
  }
  .c-side__login-ttl{
    font-size: 20px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.4px;
    margin-bottom: 10px;
  }
  .c-side__login-txt{
    font-weight: 500;
    line-height: 1.8;
    letter-spacing: 0.32px;
    margin-bottom: 10px;
  }
  .c-side__login-link{
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    background-color: #39E82C;
    border: 3px solid #000;
    border-radius: 6px;
    padding: 19px 0;
    position: relative;
    display: block;
  }
  .c-side__login-link::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_black.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 41px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
  .c-side__cv{
    padding: 40px 20px 142px;
    border-radius: 6px;
    border: 3px solid #000;
    background-color: #D1F300;
    position: relative;
  }
  .c-side__cv::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/bg_cv_sp.png");
    background-repeat: no-repeat;
    background-size: contain;
    width: 327px;
    height: 110px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    pointer-events: none;
  }
  .c-side__cv-ttl{
    font-size: 26px;
    font-weight: 700;
    line-height: 1.8;
    letter-spacing: 0.52px;
    margin-bottom: 16px;
    text-align: center;
    white-space: nowrap;
  }
  .c-side__cv-link{
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 6px;
    padding: 19px 0;
    position: relative;
    display: block;
  }
  .c-side__cv-link::after{
    content: "";
    background-image: url("/otona/howtoev/_share/img/icon_link_white.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 41px;
    height: 12px;
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
  }
}

/* small sp */
@media screen and (max-width: 374px){
  .c-side__cv-ttl{
    font-size: 22px;
  }
  .c-side__cv-link::after{
    width: 26px;
    height: 7px;
    right: 8px;
  }
  .c-side__cv::after{
    width: 85.2vw;
    height: 28.3333vw;
  }
}




/* =======================
	c-cards--side
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-cards--side{
    display: block;
    margin-bottom: 40px;
  }
  .c-cards--side .c-cards__unit{
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 15px 12px;
  }
  .c-cards--side .c-cards__unit:not(:last-of-type) {
    margin-bottom: 20px;
  }
  .c-cards--side .c-cards__unit-pic{
    width: 132px;
    height: 132px;
    object-fit: cover;
    margin-right: 8px;
    margin-bottom: 0;
  }
  .c-cards--side .c-cards__unit-main-head{
    margin-bottom: 6px;
    flex-wrap: wrap;
  }
  .c-cards--side .c-cards__unit-main-txt{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    min-height: auto;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-cards--side{
    display: block;
    margin-bottom: 40px;
  }
  .c-cards--side .c-cards__unit{
    padding: 15px 12px;
  }
  .c-cards--side .c-cards__unit-pic{
    width: 129px;
    height: 154px;
    object-fit: contain;
  }
  .c-cards--side .c-cards__unit-main-txt{
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
  }
}




/* =======================
	c-flag
======================= */
/* pc */
@media screen and (min-width: 769px){
  .c-flag{
    position: absolute;
    width: 50px;
    height: 50px;
    top: 12px;
    left: 12px;
  }
  .c-flag__img{
    display: block;
    width: 100%;
  }

  .c-cards--side .c-flag{
    top: 7px;
    left: 7px;
  }
}

/* sp */
@media screen and (max-width: 768px){
  .c-flag{
    position: absolute;
    width: 45px;
    height: 45px;
    top: 8px;
    left: 8px;
  }
  .c-flag__img{
    display: block;
    width: 100%;
  }

  .c-cards--side .c-flag{
    top: 7px;
    left: 7px;
  }
}

/* small sp */
@media screen and (max-width: 374px){
  .c-flag{
    top: 0;
    left: 0;
  }
}
