@charset "utf-8";

body {  overflow-x: clip;  color: #333333;  }
.bg_gray {  background: #f5f5f5;  }
.bg_white {  background: #ffffff;  }
.text_normal {  font-weight: normal!important;  }
.display_grid {  display: grid;  }
.align-self_center {  align-self: center;  }
a [class*=text-link] {  color: #333333;  }
.text-huge {  line-height: 1.6 !important;  }
.text_huge_40 {  font-size: min(40px, 6vw);  }
.text_huge_50 {  font-size: min(50px, 6vw);  }
.text_huge_60 {  font-size: min(60px, 6vw);  }
.text_huge_80 {  font-size: min(80px, 10vw);  }
.text-size-s, .text-size-s a {  font-size: 14px !important;  }
.pt-40 {  padding-top: 40px;  }
.pt-45 {  padding-top: 45px;  }
.po_a_b {
	position: absolute;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
	bottom: 0;	
}
.drawLine:before {  background: #F8CE00!important;  }
@media screen and (max-width: 768px) {
	.text-md-center {  text-align: center;  }
	.text-md-left {  text-align: left;  }
	.text-size-m, .text-size-m a {  font-size: 16px !important;  }
	.text-size-l, .text-size-l a {  font-size: 20px !important;  }
	.text-size-s, .text-size-s a {  font-size: 13px !important;  }
}


/** --------------------  アコーディオン  ------------------------------------------------------------ **/
.is-hover .accordion_button, .is-open .accordion_button {
    background: #fc0f3a;
}
.accordion_button:after {
    -webkit-transform: translate(-50%, -50%) rotate(180deg);
    transform: translate(-50%, -50%) rotate(180deg);
}
.is-open .accordion_button:after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg);
}
.text-nomal {
	font-weight: normal!important;
}


/** --------------------  header  ------------------------------------------------------------ **/
.l-header-inner {
    max-width: 1030px;
	padding: 0 30px;
	margin: 0 auto;
}
.header-logo-lp {
	margin: 0 0 0 30px;
}
#cta_area_header {
	position: absolute;
    right: 0;	
	bottom: -3px;
}
#cta_area_header .section_wrapper {
    max-width: calc(980px - 280px);
    margin: 0;
}
#cta_area_header .section_wrapper {
	padding: 0;
}
#cta_area_header .btn-inline-wrapper > div {
    margin: 0 6px;
}
#cta_area_header .btn {
	min-width: 205px;
	padding: 5px 10px;
	border-radius: 100px;
}
#cta_area_header .btn_red_border {
	border: 2px solid #fc0f3a;
	padding: 6px 10px;
}
#cta_area_header .btn_arrow:before,
#cta_area_header .btn_red_border.btn_arrow:before {
    width: 9px;
    height: 9px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
}
#cta_area_header .btn_red_border.btn_arrow:before {
    border-top: 2px solid #fc0f3a;
    border-right: 2px solid #fc0f3a;
}
#cta_area_header .btn_rc p {
    font-size: 1.5rem;
	padding-right: 7px;
}
#cta_area_header .btn_rc p > span {
    left: 4px;
	padding: 3px;
}
#cta_area_header .btn_rc p > span > span {
    font-size: 1.1rem;
	line-height: 1;
	padding-top: 3px;
}
#cta_area_header .btn-inline-wrapper div:nth-child(2n) .btn_rc p > span > span {
	padding-top: 6px;
}
@media screen and (max-width: 768px) {
	.l-header-lp { 
		height: 58px;
		padding-top: 15px;
	}
	.l-header-inner {
		max-width: auto;
		width: 100%;		
	}
	.header-logo-lp {
		position: absolute;
		top: 0;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		margin-left: 0;
	}	
	#cta_area_header {
		display: none;
	}
}


/** --------------------  KV　イメージ  ------------------------------------------------------------ **/
.kv {
	position: relative;
}
.kv_img {
	margin-bottom: 0;
	background-color: #d30021;
}


/** --------------------  KV　アニメーションやじるし  ------------------------------------------------------------ **/
.cp_arrows_w {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: -140px;
}
.cp_arrows {
    position: relative;
    display: flex;
    height: 300px;
    justify-content: center;
    align-items: center;
}
.cp_arrows .cp_arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    opacity: 0;
}
.cp_arrows .cp_arrow:first-child {
    animation: arrow-move08 2s ease-in-out infinite;
}
.cp_arrows .cp_arrow:nth-child(2) {
    animation: arrow-move08 2s 1s ease-in-out infinite;
}
.cp_arrows .cp_arrow:before,
.cp_arrows .cp_arrow:after {
    position: absolute;
    content: '';
    top: 0;
    width: 30px;
    height: 3px;
    background: #fff;
}
.cp_arrows .cp_arrow:before {
    left: 3px;
    transform: rotate(30deg);
}
.cp_arrows .cp_arrow:after {
    right: 3px;
    transform: rotate(-30deg);
}
.cp_arrows .cp_arrow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 10px;
    opacity: 0;
    transition: opacity 1s ease;
}
@keyframes arrow-move08 {
    0% { opacity: 0; top: 40%; }
    70% { opacity: 1; }
    100% { opacity: 0; }
}
@media screen and (max-width: 768px) {
	.cp_arrows_w {
		bottom: -114px;	
	}
	.cp_arrows {
		height: 250px;
	}
}


/** --------------------  KV　注釈  ------------------------------------------------------------ **/
.note {
	background-color: #b3001c;
	color: #fff;
}


/** --------------------  CVボタン  ------------------------------------------------------------ **/
.pt-2 {  padding-top: 2px;  }
.btn_border {
	border: 3px solid #fc0f3a;
}
.btn_red_border {
	border: 3px solid #fc0f3a;
    background: #fff;
	color: #fc0f3a;
}
.btn_arrow:before {
    content: "";
    right: 20px;
    width: 13px;
    height: 13px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
}
.btn_red_border.btn_arrow:before {
    border-top-color: #fc0f3a;
    border-right-color: #fc0f3a;
}
@media (max-width: 768px) {
	.btn-inline-wrapper .btn {
		width: 48%;
	}
	.btn_arrow:before {
        right: 6px;
    width: 10px;
    height: 10px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
	}
}
.btn_cv_red:before {
    content: "";
    right: 20px;
    width: 13px;
    height: 13px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%) rotate(45deg);
    transform: translate(0, -50%) rotate(45deg);
}
@media screen and (max-width: 767px) {
    .btn_cv_red:before {
        right: 6px;
        width: 8px;
        height: 8px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }
}

.cta_area .section_wrapper {
		padding: 40px 0 40px 0;
}
.cta_area.bg_gray {
	background-color: #E8E8E8;
}
.cta_area h2{
	font-size: min(2.6rem, 6vw);  
}
.btn-inline-wrapper {
    display: inline-flex;
}
.btn-inline-wrapper > div {
	margin: 0 15px;
	position: relative;
}
.btn_rc {
	border-radius: 50px;
}
.btn_rc p {
	font-size: min(2.0rem, 5vw);
}
.btn_rc p > span {
	position: absolute;    
	top: 50%;
	left: 3px;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
    aspect-ratio: 1 / 1;
    border-radius: 100px;
    padding: 8px;
    background-color: #F8CE00;
}
.btn_rc p > span > span {
	display: block;
	padding-top: 5px;
	color: #333333;
}
.cta_area .section_wrapper h2 {
	margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
	.cta_area .section_wrapper {
		padding: 30px 0 35px 0;
	}
	.cvArea_block .btn {
        width: 90%;
    }
	.cvArea_block .col-md-12 {
		margin-bottom: 10px;
	}
	.cta_area .section_wrapper .text-size-l, .text-size-l a {
        font-size: 18px !important;
    }
	.btn-inline-wrapper {
		display: block;
	}
	.btn-inline-wrapper div:nth-child(2n) {
		margin-top: 20px;
	}
	.btn_rc p > span {
		padding: 4px;
	}
}


/** --------------------  お困りの企業様こんなお悩みありませんか？ #concerns  -------------------- **/
.icon_checkbox:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    background-repeat: no-repeat;
    background-size: contain;
    width: 1.067em;
    height: 1.067em;
    position: relative;
    top: -1px;
    margin-right: 0.6em;
    background-image: url("../../images/icon_checkbox_gray.svg");
}
.icon_checkbox {
	padding-bottom: 20px;
	text-indent: -3.3rem;
	padding-left: 3rem;
}
@media screen and (max-width: 768px) {
	.icon_checkbox {
	padding-bottom: 15px;
	text-indent: -2.6rem;
	}
}	


/** --------------------  ワイモバイルにおまかせ #solution  -------------------- **/
.border_yellow {

	border: 1px solid #F8CE00;
}
.bg_yellow {
	background-color: #F8CE00; padding: 17px 15px;
}


/** --------------------  ケア現場で使える「かんたんスマホ3」 #model_introduction  ------------------------------------------------------------ **/
#model_introduction .list > li {
    padding-left: 18px;
    font-size: 18px;
    font-weight: bold;
}
#model_introduction .list-price-item {
    padding: 5px 0;
}
#model_introduction .list-price-item:first-child {
	font-weight: bold;
	text-align: center;
	background: #fafafa;
}
#model_introduction .list-price-item:first-child .list-price-item-title {
	color: #333333!important;
}
#model_introduction .list-price-item:first-child .list-price-item-title,
#model_introduction .list-price-item:first-child .list-price-item-number {
	padding-left: 0!important;
}
#model_introduction .list-price-item-title {
    padding: 0px 0px 0px 5%;
}
#model_introduction .list-price-item-number {
	padding: 0px 0px 0px 5%;
}
#model_introduction .a205kc_01 img {
	margin: 0 auto;
	width: 70%;
}
@media (max-width: 768px) {
	#model_introduction .a205kc img {
		margin: 0 auto;
	}
	#model_introduction .a205kc_01 img {
		margin: 0 auto;
		width: 60%;
	}
	#model_introduction .list > li {
		padding-left: 16px;
		font-size: 16px;
	}
}


/** --------------------  ワイモバイルが選ばれる理由 #unique_selling_proposition  ------------------------------------------------------------ **/
#unique_selling_proposition .row.bg_gray {
	padding: 45px 20px 30px 20px;
}
.icon_number {
	margin-top: 15px;
	font-size: 70px !important;
    font-weight: bold !important;
	line-height: 0.6 !important;
    position: relative;
    top: 13px;
	left: 20px;
	display: block;
	letter-spacing: .05em;
	color: #fff;
	text-shadow: #333 2px 0, #333 -2px 0, #333 0 -2px, #333 0 2px, #333 2px 2px, #333 -2px 2px, #333 2px -2px, #333 -2px -2px, #333 1px 2px, #333 -1px 2px, #333 1px -2px, #333 -1px -2px, #333 2px 1px, #333 -2px 1px, #333 2px -1px, #333 -2px -1px;
}
.usp_wrapper .usp_detail:first-child .icon_number {
	margin-top: 0;
}
.usp_wrapper .usp_detail:nth-child(2n) .icon_number {
	left: -15px;
	text-align: right;
}
.align-self_center {
	align-self: center;
}
.icon_bullet > li:before {
    content: "・"!important;
}
.icon_bullet p,
.icon_bullet > li,
.icon_bullet > li a {
    font-size: 14px;
	margin-bottom: 6px;
}
.icon_bullet > li ul {
  padding-top: 6px;
}
.icon_bullet p, .icon_bullet > li ul li,
.icon_bullet p, .icon_bullet > li ul li a {
  font-size: 14px;
  margin-bottom: 6px;
}
@media screen and (max-width: 768px) {
	#unique_selling_proposition .row.bg_gray {
		padding-top: 30px;
	}
	.usp_detail {
		margin-top: 40px;
	}
	.icon_number,
	.usp_wrapper .usp_detail:nth-child(2n) .icon_number {
		position: absolute;
		top: -20px;
		left: 50%;
		transform: translateX(-50%);
		-webkit-transform: translateX(-50%);
		-ms-transform: translateX(-50%);
		margin-top: 0;
		font-size: 50px !important;
	}
	.usp_wrapper .usp_detail:first-child {
		margin-top: 55px;
	}
	.usp_detail .usp_detail_text {
		padding-top: 15px;
	}
	.usp_detail:nth-child(2n) .usp_detail_text {
		padding-top: 0;
		padding-bottom: 15px;
	}
}


/** --------------------  お申し込みの流れ  ------------------------------------------------------------ **/
.document {
    background: #fff;
}
.borderBox_body {  padding: 20px 20px;  }
.list_side li {
	display: inline-flex;
	padding-left: 10px;
}
.list_side li:first-child {  padding-left: 0;  }
.list_dot.list_side li:before {  margin-top: 2px;  }
@media (max-width: 768px) {
	.borderBox_body {  padding: 20px 10px;  }
	.list_side li {  padding-left: 2px;  }
}
.begginer-step-flow-item {
    width: 100%;
    height: 100%;
    background-color: #fff;
    text-align: center;
    border: #E8E8E8 solid 1px;
    border-radius: 8px;
    display: block;
    padding: 10px 5px;
    position: relative;
}
@media (max-width: 768px) {	
.begginer-step-flow-item {
        border: none;
        border-radius: 0;
        text-align: left;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding: 15px 50px 15px 30px;
    }    
	.begginer-step-flow-num {
        width: 75px;
	} 
	.begginer-step-flow-head {
        width: calc(100% - 80px);
	}
}


/** --------------------  クロージング  ------------------------------------------------------------ **/
.text_yellow {
	color: #F8CE00 !important;
}
.section#closing {
	padding: 0;
}
.bg_img_l {
	background-image: url(../../images/img_bg_footer.jpg);
	background-repeat: no-repeat;
    background-position: center;
	background-size: auto 100%;	
	max-height: 580px; 
	height: 580px;
	max-height: 420px; 
	height: 420px;
}
.bg_img_text_area {
	max-width: 980px;
	width: 980px;
	max-width: 1030px;
	margin: 0 auto;
	display: contents;
	position: relative;
}
.bg_img_l .bg_img_text_left {
	padding: 15px;
	background:rgba(211, 0, 33,0.85);
	position: absolute;
	right: 56.5%;
	top: 20px;
    font-size: 35px;
	font-size: min(32px, 5vw);	
	font-weight: bold;
    line-height: 1.2;
	color: #fff;
}
.bg_img_l .bg_img_text_right {
	padding: 15px;
	background:rgba(211, 0, 33,0.85);
	position: absolute;
	left: 45%;
	left: 60%;
	bottom: 20px;
	font-size: min(32px, 5vw);	
	font-weight: bold;
    line-height: 1.2;
	color: #fff;
	text-align: right;
}
@media (max-width: 1000px) {
	.bg_img_l .bg_img_text_left {
		left: 0;
		right: auto;
	}
	.bg_img_l .bg_img_text_right {
		right: 0;
		left: auto;
	}
}
@media (max-width: 768px) {
	.bg_img_l {
		max-height: 320px; 
		height: 320px;    
	}
	.bg_img_l .bg_img_text_left {
		left: 0;
		top: 10px;
	}
	.bg_img_l .bg_img_text_right {
		right: 0;
		bottom: 10px;
	}
}


/** --------------------  footer  ------------------------------------------------------------ **/
.l-footer-hasfixcv {
    padding: 45px 0 15px 0;
	background-color: #333;
}
.footer-bottom-nav-list-item a,
.footer-bottom .copyright {
	color: #fff;
}
.footer-bottom .copyright {
	padding-top: 15px;
}
@media screen and (max-width: 768px) {
	.l-footer.l-footer-hasfixcv {
		margin-bottom: 0;
	}
.gotop {
        bottom: 15px!important;
    }
}
@media (max-width: 1180px) {
    .l-footer-bottom .l-inner {
		padding: 0!important;
    }
}
@media screen and (max-width: 768px) {
	.footer-bottom-nav-list-item {
        width: 49%;
	}
	.footer-bottom-nav-list-item a {
        padding: 0 5px 0 0;
	}
}

/* START 202508 事務無料キャンペーン用***************************************** */
.btn-l.campaign {
  border-radius:35px;
  min-width: 500px;
  box-shadow: 0px 3px 0px #d30021;
  border: 3px solid #d30021;
  color: #d30021;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .btn-l.campaign {
    min-width: 300px;
  }
}
.lp_list .ttl-section{
  margin-top: 40px;
  margin-bottom: 20px;
}
.adlp-wrapper img.campaign_img{
  width: auto;
  margin: 0 auto;
}

.begginer-step-flow-item {
    width: 100%;
    height: 100%;
    background-color: #fff;
    text-align: center;
    border: #E8E8E8 solid 1px;
    border-radius: 8px;
    display: block;
    padding: 10px 5px;
    position: relative;
}

@media (max-width: 768px) {	
.begginer-step-flow-item {
        border: none;
        border-radius: 0;
        text-align: left;
        display: flex;
        align-items: center;
        flex-wrap: wrap;
        padding: 15px 50px 15px 30px;
    }    
	.begginer-step-flow-num {
        width: 75px;
	} 
	.begginer-step-flow-head {
        width: calc(100% - 80px);
	}
}

.text-size-cp-ttl  {  font-size: 28px !important;  }
#campaign .text-huge {  font-size: 38px !important;  }
@media (max-width: 768px) {	
	.text-size-cp-ttl,
	#campaign .text-huge {  font-size: 28px !important;  }
}

#campaign .text-red {
    color: #d30021 !important;
}
#campaign .ttl-section:after {
    background: #d30021;
    border: 1px solid #d30021;
}
@media (max-width: 349px) {	
	#campaign .btn-l.campaign {  min-width: 260px;  }
	#campaign .text-size-m {  letter-spacing: 0;  }
}
/* END 202508 事務無料キャンペーン用***************************************** */