@charset "UTF-8";
/*--------------------------
  全体
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
:root {
  --bc-gap-s: 20px;
  --bc-gap-m: 40px;
  --bc-gap-l: 80px;
  
  --color-dark:#01182c;
  --color-light:#01182c;

  --font-base: clamp(14px, 0.784rem + 0.45vw, 18px);
  --font-m: clamp(16px, 0.909rem + 0.45vw, 20px);
  
  --font-ml: clamp(14px, 0.648rem + 1.14vw, 24px);
  --font-l: clamp(18px, 0.716rem + 2.05vw, 36px);
  --font-ll: clamp(20px, 0.614rem + 3.18vw, 48px);
} 
@media screen and (max-width:767px){
  :root {
  --bc-gap-s: 10px;
  --bc-gap-m: 30px;
  --bc-gap-l: 60px;
  }
}

/*--------------------------
  共通
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
#business-create{
  text-align:center;
}
#business-create img{
  width:100%;
}

.p-bc__cont{
  padding:var(--bc-gap-l) var(--bc-gap-s);
}
.p-bc__cont:nth-of-type(even){
  background:#ecf8fd;
}
.p-bc__cont-inner{
  margin:auto;
  width:100%;
  max-width:1140px;
}
h2.c-headline__h2{
  margin-bottom:40px;
  font-size:var(--font-l);
}
  
/*--------------------------
  キービジュアル
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
.p-business-create__hero{
  position:relative;
  width:100%;
  background: #004da1 url(../images/kv-back.webp) no-repeat top center / cover;
  z-index:2;
}

.p-bc-hero__inner{
  margin:auto;
  width:100%;
  max-width:1140px;
  display:flex;
  justify-content: space-between;
}
.p-bc-hero__txt{
  display:flex;
  align-items: center;
}
.p-bc-hero__img{
  width:28%;
  max-width:320px;
}

.p-bc-hero__txt h1{
  font-size: var(--font-ll);
  color:#fff;
  font-weight:900;
  padding-left:10px;
}
.p-bc-hero__txt h1::before{
  position:absolute;
  content:'';
  top:calc(50% - 0.8em);
  left:0;
  background:var(--color-dark);
  width:100%;
  height:1.6em;
  z-index:-1;
}
@media screen and (max-width: 767px) {
  .p-bc-hero__txt{
    padding-top:20px;
  }
  .p-bc-hero__txt h1{
    padding:10px;
    text-align:center;
    width:100%;
    background:var(--color-dark);
  }
  .p-bc-hero__txt h1::before{
    display:none;
  }
  .p-bc-hero__inner{
    flex-direction: column;
  }
  .p-bc-hero__img{
    margin:auto;
    width:50%;
    max-width:320px;
  }
}

/*--------------------------
  リード
ｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰｰ*/
.lead-txt{
  font-size:var(--font-m);
  line-height:1.8;
}

.p-bc__cont.lead-block{
  padding:var(--bc-gap-m) var(--bc-gap-s);
}


/*-------------------------------------
　モデルブロック
---------------------------------------*/
.model_wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  justify-content: space-between;
}
.model_wrapper:not(:last-child) {
  margin-bottom: 20px;
}
.model_wrapper + .text_title {
  margin-top: 80px;
}
.model_box {
  background-color: #fff;
  border: 3px solid #e60813;
  box-shadow: 3.5px 3.5px 0 0 rgba(72,72,72,.1);
  position: relative;
  width: calc((100% / 3) - 16px);
  text-align:left;
}
.model_null_box {
  position: relative;
  width: calc((100% / 3) - 16px);
}
.model_box:nth-child(4n) {
  margin-right: 0;
}
.model_box:nth-of-type(n+4){
  margin-top:20px;
}
.model_box:hover {
  border: 3px solid #51090d;
}
.model_box a {
  display: block;
  padding: 20px;
  height: 100%;
  width: 100%;
}
.model_box__point-return {
  background-color: #e43344;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  letter-spacing: .78px;
  margin-bottom: 20px;
  padding: 4px 0;
  text-align: center;
}
.is-no-point .model_box__point-return {
  visibility: hidden;
}
.model_box__image {
  margin: 0 auto 20px;
  width: 100%;
}
.model_box__image img {
  height: auto;
  width: 75%;
}
.model_box__catchcopy {
  font-size: 14px;
  letter-spacing: 1.08px;
  line-height: 1.4;
  margin-bottom: 10px;
}
.model_box__name {
  font-size: 20px;
  font-weight: bold;
  /* height: 45px; */
  letter-spacing: .78px;
  line-height: 1.4;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid #aaa;
  overflow: hidden;
  /* display: -webkit-box; */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  max-width: 320px;
  width: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.model_box__spec {
  line-height: 1.4;
  margin-bottom: 10px;
}
.model_box__price {
  border-bottom: 0px solid #cdcdcd;
  color: #e43344;
  font-weight: bold;
  margin-bottom: 10px;
}
.model_box__price span {
  font-size: 28px;
  padding-right: 2px;
}
.model_box__button {
  width: 100%;
}
.model_box__point {
  background-color: #e50011;
  color: #fef18c;
  font-size: 16px;
  display: inline-block;
  letter-spacing: 1px;
  margin-bottom: 20px;
  padding: 6px 12px;
  text-align: center;
  width: 100%;
}
.model_box__point span {
  color: #fef18c;
}
h5.text_title {
  font-size: 20px;
  color: #004da1;
  font-weight: bold;
}
.model_wrapper {
  display: flex;
  margin: 0 auto;
  gap: 20px;
}
.model_box {
  border: 3px solid #555;
  margin-top: 0 !important;
}
.model_box:hover {
  border: 3px solid #0e2e51;
  cursor: pointer;
}
.model_box__image {
  text-align: center;
}
.grade {
  text-align: center;
}
.grade span {
  display: inline-block;
  width: 120px;
  padding: 0.2rem 0;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.1rem;
  color: #fff;
  background-color: #e43344;
}
.model_box__price {
  display: flex;
  gap: 16px;
  align-items: center;
  border-bottom: 0px solid #cdcdcd;
  color: #e43344;
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 16px;
}
p.delivery {
  padding: 10px 8px;
  border: #e43344 1px solid;
  font-weight: bold;
  font-size: 12px;
  letter-spacing: 1.28px;
  line-height: 1.0;
  display: block;
  height: 100%;
}
.model_text {
  padding-bottom:10px;
  text-align: center;
  font-weight:bold;
  color:#063761;
}
#lp_page .c-button--secondaryB-black {
  background-color: #222;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .model_wrapper .model_box__price {
    margin-bottom: 10px !important;
  }
  .model_wrapper div:not(:last-child){
    margin-bottom: 40px;
  }
  .model_box {
    width: 100%;
  }
  .model_box:nth-of-type(n+4){
    margin-top:0;
  }
  .model_null_box {
    width: 100%;
  }
  .model_null_box:nth-of-type(n+4){
    margin-top:0;
  }	
  .model_wrapper {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .model_wrapper:not(:last-child) {
    margin-bottom: 0;
  }
  .model_wrapper div.model_box:not(:last-of-type) {
    margin-bottom: 40px;
  }
  p.delivery {
    margin-bottom: 0;
    max-width: fit-content;  
  }
  .model_box__name {
    max-width: unset;  
  }
  .model_box__image img {
    margin-left: 0;
  }
  .model_box__price {
    flex-direction: column-reverse;
  }
}

/*-------------------------------------
  選定ポイント
---------------------------------------*/
.recommend-block{
  margin-bottom:40px;
  border-radius: 20px;
  background:#eee;
  border:2px solid #063761;
  overflow: hidden;
}

.recommend-block h3{
  padding:5px;
  font-size:var(--font-ml);
  font-weight:bold;
  color:#fff;
  background: linear-gradient(45deg, #063761 0%, #1D262E 25%, #063761 87%);
  text-align:center;
  border-radius: 10px;
  line-height:1.2;
}

.recommend-block-inner{
  text-align:left;
  display:flex;
  padding:40px;
  justify-content: space-between;
}

.recommend-block-txt{
  width:calc(65% - 40px);
  font-size:var(--font-base);
  line-height:1.6;
}
.recommend-block-txt dl{
  padding-top:10px;
  margin-top:10px;
  border-top:1px dotted #fff;
}
.recommend-block-txt dl:nth-child(2){
  border-top:none;
}
.recommend-block-txt dt{
  color:#063761;
  font-weight:bold;
}
.recommend-block-model{
  position:relative;
  width:35%;
}

.recommend-block-model .model_box{
  width:100%;
}

.recommend-block-model .recommend-block-model-title{
  position:absolute;
  top:-20px;
  right:-20px;
  text-align:center;
  color:#fff;
  background:#063761;
  font-weight:bold;
  font-size: var(--font-base);
  padding:20px;
  border-radius: 50%;
  z-index:2;
}


@media screen and (max-width: 767px) {
  .recommend-block-inner{
    flex-direction: column;
    padding:10px;
  }
  .recommend-block-txt{
    width:100%;
  }
  .recommend-block-model{
    margin-top:20px;
    width:100%;
  }
  .recommend-block-txt dl{
    padding-left:10px;
    padding-right:10px;
  }
}


/*-------------------------------------
　リンク
---------------------------------------*/

.p-bc-link{
  position: relative;
  text-align:right;
  color:#4472c4;
  font-weight:bold;
  font-size: var(--font-m);
  padding-right:16px;
}

.p-bc-link::after{
  position: absolute;
  top: calc(50% - 4px);
  right: 0;
  width: 8px;
  height: 8px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  border-right: 2px solid;
  border-bottom: 2px solid;
  border-color: #4472c4;
  content: '';
}
.p-bc-link:hover{
  opacity: 0.7;
}
