@charset "UTF-8";

html,
body{
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  font-weight: normal;
  box-sizing: border-box;
  vertical-align: baseline;
}

html{
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

*, *::before, *::after {
  box-sizing: inherit;
}

body{
  font-size: 16px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #fff;
  color: #000;
  line-height: 1;
  overflow-x: hidden;
  position: relative;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

.logo-sample{
  padding: 1rem 1.5rem;
  border: 1px solid #ccc;
  background-color: #fff;
}

.logo-sample > p{
  margin-bottom: 0;
  color: red;
}


/*************************
/* flex-box
*************************/
.flex-box {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-box-nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

.flex-box-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-box-row-rever {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-box-space-b {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-box-space-a {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-box-space-c {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-box-item-c {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}


/*******************************
*中央寄せ
*******************************/
.center-type1 {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  height: 100%;
  text-align: center;
}

.center-type2 {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.center-type3 {
  position: absolute;
  top: 0%;
  left: 50%;
  -webkit-transform: translate(-50%, 0%);
  transform: translate(-50%, 0%);
}

.center-type4 {
  position: absolute;
  top: 50%;
  left: 0%;
  -webkit-transform: translate(0%, -50%);
  transform: translate(0%, -50%);
}


/*************************
/* header
*************************/
header .site-title{
  padding: 1.5rem 0 0;
}

header .site-title h1{
  font-size: 0.875rem;
  font-weight: normal;
}

header .content-info{
  justify-content: space-between;
}

header .content-info .logo{
  width: 50%;
  max-width: fit-content;
  padding-block: 1rem;
}

header .content-info .btn-box{
  width: 50%;
  max-width: 360px;
  justify-content: flex-end;
}

header .content-info .btn-box > .btn{
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  max-width: 180px;
}

header .content-info .btn-box > .document{
  display: none;
}

header .content-info .btn > a{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 1rem 1.5rem;
  color: #fff;
  font-size: 0.9375rem;
  text-decoration: none;
}

header .content-info .btn > a:hover{
  opacity: 0.75;
}

header .content-info .btn.contact > a{
  background-color: #0073aa;
}

header .content-info .btn.document > a{
  margin-left: 0.5rem;
  background-color: #00aa82;
}

header .content-info .btn i{
  margin-right: 0.25rem;
}

@media only screen and (max-width: 640px) {
  header .site-title h1{
    text-align: center;
  }
  header .content-info{
    justify-content: center;
  }
  header .content-info .logo{
    width: 100%;
    text-align: center;
  }
  header .content-info .btn-box{
    width: 35%;
    max-width: 180px;
    display: none;
  }
  header .content-info .btn.contact{
    display: none;
  }
  header .content-info .btn > a{
    padding: 0.75rem;
    margin-left: 0 !important;
    font-size: 0.875rem;
  }
}


/*************************
/* footer
*************************/
footer{
  background-color: #E6E6E6;
}

.footer-inner{
  padding-block: min(10vw, 5rem);
}

footer .company{
  max-width: fit-content;
  margin-inline: auto;
}

footer .company .catch{
  margin-bottom: 0.5rem;
}

footer .company .name{
  margin-top: 0.5rem;
  text-align: right;
}

footer .company .address{
  width: fit-content;
  margin: 1rem auto 0;
}

@media only screen and (max-width: 767px) {
  .footer-inner{
    padding-inline: 1.25rem;
  }
  footer .company{
    font-size: 0.875rem;
  }
}


/*************************
/* layout
*************************/
.inner{
  max-width: 1024px;
  margin-inline: auto;
}

@media only screen and (max-width: 1024px) {
  .inner{
    margin-inline: 5rem;
  }
}

@media only screen and (max-width: 767px) {
  .inner{
    margin-inline: 1.25rem;
  }
}


/*************************
/* btn
*************************/
.c-btn{
  position: relative;
  display: block;
  max-width: 250px;
  margin-top: 1rem;
  padding: 1rem 1.5rem;
  font-size: 0.9375rem;
  color: #E30000;
  background-color: #FFF1F1;
  border: 1px solid #E30000;
  border-radius: 30px;
  text-align: center;
  text-decoration: none;
  transition-duration: 0.3s;
  transition: background-color 0.3s;
}

.c-btn:hover {
  background-color: #ffd6d6;
}

.c-btn:before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  width: 10px;
  height: 10px;
  margin-top: -5px;
  border-top: solid 1px #E30000;
  border-right: solid 1px #E30000;
  transform: rotate(45deg);
}


/*************************
/* title
*************************/
main h2{
  font-size: 2rem;
}

main h2 span.txt-size{
  font-size: 1.25rem;
}

.title-bline{
  position: relative;
  margin-bottom: min(10vw, 6.25rem);
  text-align: center;
}

.title-bline::after{
  content: '';
  display: block;
  max-width: 320px;
  height: 1px;
  margin-top: 1.5rem;
  margin-inline: auto;
}

.title-bline > span{
  display: block;
  margin-bottom: 1rem;
}

@media only screen and (max-width: 767px) {
  main h2{
    font-size: 1.75rem;
  }
  main h2 span.txt-size{
    font-size: 1.125rem;
  }
}


/*************************
/* content
*************************/
/* hero */
.hero{
  padding-top: min(10vw, 60px);
  padding-bottom: min(10vw, 80px);
  background: url(https://select-b.jp/wp-content/themes/zoomy_tcd067-child/img/partner/design/hero-bg-r.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-box{
  width: 50%;
  max-width: 475px;
}

.hero p.catch{
  margin-bottom: 1rem;
  color: #144B70;
  font-size: 1.5rem;
  font-weight: 900;
}

.hero p.cost-text{
  margin-bottom: 1.5rem;
}

.hero p.cost-text > span:first-child{
  display: block;
  color: #000;
  font-size: 2.75rem;
  font-weight: 900;
}

.hero p.cost-text > span:nth-child(2){
  color: #EF1A1A;
  font-size: 3rem;
  font-weight: 900;
  writing-mode: vertical-rl;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 50%);
}

.hero p.cost-text > span.percent{
  display: inline-block;
  color: #EF1A1A;
  font-size: 7.5rem;
  font-weight: 900;
  line-height: 1.0;
  text-shadow: 1px 1px 2px rgb(0 0 0 / 50%);
}

.hero p.cost-text > span:last-child{
  display: inline-block;
  color: #000;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.0;
}

.hero p.desc{
  margin-bottom: 2rem;
}

.hero p.desc > span.color-bg{
  display: block;
  max-width: 100%;
  margin-bottom: 0.5rem;
  padding: 0.5rem;
  font-size: 1.5rem;
  background-color: #fff;
}

.hero p.desc span.color{
  color: #FB550F;
  font-weight: 900;
}

.hero .c-btn{
  max-width: 360px;
  margin-inline: auto;
  color: #fff;
  border-color: #2D68A3;
  background-color: #2D68A3;
}

.hero .c-btn:hover{
  background-color: #04396f;
}

.hero .c-btn:before {
  border-color: #fff;
}

.hero .laurel{
  margin-top: 2rem;
}

.hero .laurel .box.flex-box{
  justify-content: center;
}

.hero .laurel .box.flex-box > div{
  width: auto;
}

.hero .laurel p{
  margin-top: 1rem;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 1024px) {
  .hero-box{
    width: 100%;
    max-width: 420px;
  }
  .hero p.catch {
    font-size: 1.25rem;
  }
  .hero p.cost-text > span:first-child {
    font-size: 2.5rem;
  }
  .hero p.cost-text > span:last-child{
    font-size: 3rem;
  }
  .hero p.desc > span.color-bg{
    font-size: 1.25rem;
  }
}

@media only screen and (max-width: 767px) {
  .hero-box{
    width: auto;
    margin-inline: auto;
  }
  .hero p.catch{
    font-size: 1.5rem;
    line-height: 1.25;
    letter-spacing: -1px;
    text-align: center;
  }
  .hero p.catch span.color > span{
    display: block;
  }
  .hero p.cost-text{
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .hero p.cost-text > span:first-child{
    font-size: 2rem;
  }
  .hero p.cost-text > span:nth-child(2){
    font-size: 2rem;
  }
  .hero p.cost-text > span.percent{
    font-size: 5rem;
  }
  .hero p.cost-text > span:last-child{
    font-size: 2.5rem;
  }
  .hero p.desc > span.color-bg{
    max-width: 290px;
    margin-inline: auto;
    font-size: 1rem;
    letter-spacing: -1px;
  }
  .hero .c-btn{
    margin-inline: auto;
  }
  .hero .laurel .box.flex-box > div{
    width: 33.3%;
  }
}

/* worry */
.p-worry{
  position: relative;
  padding-block: 6.25rem 12.5rem;
  background-color: #FFEEEE;
}

.p-worry h2 {
  position: relative;
  padding: 1.5rem 0rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid #E30000;
  text-align: center;
}

.p-worry h2:before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -18px;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-width: 18px 16px 0 16px;
  border-style: solid;
  border-color: #E30000 transparent transparent transparent;
}

.p-worry h2:after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -14px;
  transform: translate(-50%, 0);
  width: 0;
  height: 0;
  border-width: 18px 16px 0 16px;
  border-style: solid;
  border-color: #FFEEEE transparent transparent transparent;
}

.p-worry h2 > span.catch{
  display: block;
  margin-bottom: 1.5rem;
  padding: 1rem;
  color: #fff;
  background-color: #F01A1A;
  border-radius: 50px;
}

.p-worry h2 > span.color{
  color: #E51919;
  font-size: 3rem;
  letter-spacing: -1px;
}

.p-worry div.flex-box{
  gap: 20px
}

.p-worry dl{
  width: calc(50% - 10px);
  border: 1px solid #F01A1A;
  background-color: #fff;
}

.p-worry dl dt{
  padding: 1.5rem;
  text-align: center;
  background-color: #F01A1A;
}

.p-worry dl dt > span.text{
  display: inline-block;
  padding-left: 2.25rem;
  color: #fff;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1.0;
  background: url(https://select-b.jp/wp-content/themes/zoomy_tcd067-child/img/partner/design/worry-icon-r.png) no-repeat;
  background-size: 25px;
  background-position: 0px 5px;
}

.p-worry dl dd{
  padding: 1.5rem;
  min-height: 200px;
}

.p-worry dl dd:not(:last-of-type){
  margin-bottom: 2.5rem;
}

.p-worry ul li{
  padding-left: 1rem;
  text-indent: -1rem;
  font-size: 1rem;
  list-style: none;
  line-height: 1.5;
}

.p-worry ul li:not(:last-child){
  margin-bottom: 1rem;
}

.p-worry .arrow{
  position: absolute;
  left: 50%;
  bottom: -3.125rem;
  transform: translate(-50%, 0%);
  width: 200px;
  z-index: 10;
}

.p-worry .svg{
  position: absolute;
  left: auto;
  bottom: -15px;
  width: 100%;
  height: auto;
  z-index: 0;
}

@media only screen and (max-width: 1024px) {
  .p-worry h2 > span.color{
    font-size: 2rem;
  }
}

@media only screen and (max-width: 767px) {
  .p-worry h2{
    line-height: 1.25;
  }
  .p-worry h2 > span.color{
    font-size: 1.75rem;
  }
  .p-worry dl{
    width: 100%;
  }
  .p-worry dl dt > span.text {
    padding-left: 1.75rem;
    font-size: 1.25rem;
    background-size: 20px;
    background-position: 0px 0px;
  }
  .p-worry ul li {
    line-height: 1.25;
  }
}

/* recommend */
.p-recommend{
  padding-block: 9.375rem 6.25rem;
}

.p-recommend h2{
  margin-bottom: 3rem;
  text-align: center;
}

.p-recommend h2 > span{
  display: block;
  margin-top: 1rem;
  font-size: 1.5rem;
  color: #AE911F;
}

.p-recommend dl dt{
  position: relative;
  margin-bottom: 1rem;
  background: url(https://select-b.jp/wp-content/themes/zoomy_tcd067-child/img/partner/design/recommend-icon-r.png) no-repeat;
  background-size: 35px;
  background-position: left bottom;
}

.p-recommend dl dt > span.text{
  display: inline-block;
  margin-left: 3rem;
  font-size: 1.5rem;
  font-weight: 900;
  background: linear-gradient(transparent 70%, #fff465 50%);
  line-height: 1.5;
}

.p-recommend dl dd:not(:last-of-type){
  margin-bottom: 2.5rem;
}

.p-recommend dl dd{
  padding-left: 4.0625rem;
  font-size: 1.125rem;
}

.p-recommend dl dd p{
  padding-left: 1rem;
  text-indent: -1rem;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  .p-recommend dl dt{
    background-position-y: top;
  }
  .p-recommend dl dt > span.text{
    display: block;
    margin-left: 2.75rem;
  }
  .p-recommend dl dd{
    padding-left: 0;
  }
}

/* costdown */
.p-costdown{
  padding-block: 6.25rem;
  background: url(https://select-b.jp/wp-content/themes/zoomy_tcd067-child/img/partner/design/costdown-bg-r.jpg) no-repeat;
  background-size: cover;
}

.p-costdown h2{
  margin-bottom: 3rem;
  color: #fff;
  text-align: center;
}

.p-costdown h2 + p{
  width: fit-content;
  margin-inline: auto;
  margin-bottom: 3rem;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.5;
}

.p-costdown div.flex-box{
  gap: 40px;
  margin-bottom: 2rem;
}

.p-costdown div.flex-box > div{
  width: calc(33.333% - 27px);
}

.p-costdown div.flex-box div.img{
  margin-bottom: 0.5rem;
}

.p-costdown div.flex-box p{
  color: #fff;
  line-height: 1.5;
}

.p-costdown div.flex-box p > span{
  color: #F3E30A;
}

.p-costdown .c-btn{
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .p-costdown div.flex-box{
    gap: 20px;
  }
  .p-costdown div.flex-box > div {
    width: calc(50% - 10px);
  }
}

/* selectbeam */
.p-selectbeam{
  padding-block: 6.25rem;
}

.p-selectbeam h2 {
  position: relative;
  padding: 1.5rem 0rem;
  margin-bottom: 3rem;
  color: #E30000;
  border-bottom: 2px solid #E30000;
}

.p-selectbeam h2:before {
  content: '';
  position: absolute;
  left: 36px;
  bottom: -18px;
  width: 0;
  height: 0;
  border-width: 18px 16px 0 16px;
  border-style: solid;
  border-color: #E30000 transparent transparent transparent;
}

.p-selectbeam h2:after {
  content: '';
  position: absolute;
  left: 36px;
  bottom: -14px;
  width: 0;
  height: 0;
  border-width: 18px 16px 0 16px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.p-selectbeam h2 > span{
  display: flex;
  align-items: center;
  position: absolute;
  top: -5px;
  right: 0px;
  color: #edede3;
  font-size: 5rem;
  z-index: -1;
}

.p-selectbeam h2 + p{
  margin-bottom: 2rem;
  font-size: 1.125rem;
  line-height: 1.5;
}

.p-selectbeam h2 + p > span{
  color: #E30000;
}

.p-selectbeam div.img{
  margin-bottom: 1rem;
}

.p-selectbeam div.img img{
  display: block;
  margin-inline: auto;
}

.p-selectbeam .about-box{
  margin-bottom: 5rem;
}

.p-selectbeam .about-box p.text{
  line-height: 1.5;
}

.p-selectbeam .about-box div.flex-box{
  margin-bottom: 3rem;
  align-items: center;
}

.p-selectbeam .about-box div.flex-box > div.text{
  width: 45%;
}

.p-selectbeam .about-box  div.flex-box > div.cross{
  width: 10%;
}

.p-selectbeam .about-box p > span:first-child{
  display: block;
  padding: 1rem;
  color: #fff;
  font-size: 1.125rem;
  background-color: #2D68A3;
  text-align: center;
}

.p-selectbeam .about-box p > span:last-child{
  display: block;
  padding: 1.5rem;
  border: 1px solid #707070;
  border-top: transparent;
  line-height: 1.5;
}

.p-selectbeam .about-box div.cross span{
  display: block;
  color: #7a7a7a;
  font-size: 5rem;
  text-align: center;
}

.p-selectbeam .ferture-box div.flex-box{
  gap: 50px;
}

.p-selectbeam .ferture-box div.flex-box > div{
  width: calc(33.333% - 34px);
  margin-bottom: 1rem;
}

.p-selectbeam .ferture-box div.flex-box img{
  display: block;
  margin: 0 auto 1rem;
}

.p-selectbeam .ferture-box div.flex-box p{
  text-align: center;
}

.p-selectbeam .ferture-box div.flex-box p > span{
  color: #E30000;
}

@media only screen and (max-width: 767px) {
  .p-selectbeam .ferture-box div.flex-box {
    gap: 30px;
  }
  .p-selectbeam .ferture-box div.flex-box > div {
    width: calc(50% - 15px);
  }
  .p-selectbeam h2 > span {
    top: 50%;
    transform: translate(0px, -50%);
    font-size: 3rem;
  }
  .p-selectbeam .ferture-box div.flex-box img {
    max-width: 75%;
  }
}

@media only screen and (max-width: 480px) {
  .p-selectbeam h2 + p > br{
    display: none;
  }
}

/* company */
.p-company{
  padding-block: 6.25rem;
  background: url(https://select-b.jp/wp-content/themes/zoomy_tcd067-child/img/partner/design/company-bg-r.jpg) no-repeat;
  background-size: cover;
}

.p-company h2{
  color: #fff;
}

.p-company h2::after{
  background-color: #fff;
}

.p-company h3{
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  color: #fff;
  font-size: 1.5rem;
  border-bottom: 1px solid #fff;
  line-height: 1.75;
}

.p-company h3 + p{
  margin-bottom: 5rem;
}

.p-company h3 ~ p{
  margin-bottom: 1.5rem;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.5;
}

.p-company h3 ~ p:last-of-type{
  margin-bottom: 5rem;
}

.p-company h3 ~ p > span:first-child{
  display: block;
}

.p-company h3 ~ p > span:nth-child(2){
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
}

.p-company h3 + ul > li{
  margin-bottom: 1rem;
  color: #fff;
  font-size: 1.125rem;
  list-style: none;
  line-height: 1.5;
}

.p-company table {
  width: 100%;
  border-collapse: collapse;
}

.p-company table tr {
  border-bottom: 1px solid #fff;
}

.p-company table th,
.p-company table td {
  padding: 1rem;
  color: #fff;
  font-size: 1.125rem;
  line-height: 1.5;
  text-align: left;
}

.p-company table th {
  font-weight: bold;
}

.p-company table td {
  word-break: break-word;
}

.p-company table td > ul{
  list-style-position: inside;
}

@media only screen and (max-width: 960px) {
  .p-company table th{
    width: 150px;
  }
}

@media only screen and (max-width: 480px) {
  .p-company table th{
    display: block;
    width: 100%;
    padding-block: 0.75rem 0;
  }
  .p-company table td{
    display: block;
    width: 100%;
    padding-block: 0.25rem 0.75rem;
  }
}

/* work */
.p-work{
  padding-block: 6.25rem;
  background-color: #FFEEEE;
}

.p-work h2{
  color: #000;
}

.p-work h2::after{
  background-color: #E30000;
}

.p-work div.flex-box{
  gap: 35px;
}

.p-work div.flex-box > div{
  width: calc(33.333% - 24px);
}

.p-work div.flex-box div.img{
  margin-bottom: 0.75rem;
}

.p-work div.flex-box p{
  line-height: 1.5;
}

.p-work div.flex-box p > span{
  display: block;
}

@media only screen and (max-width: 767px) {
  .p-work div.flex-box{
    gap: 20px;
  }
  .p-work div.flex-box > div {
    width: calc(50% - 10px);
  }
  .p-work div.flex-box div.img{
    margin-bottom: 0.5rem;
  }
}

/* cta */
.p-cta{
  margin-bottom: 6.25rem;
}

.p-cta .title-h2{
  padding-block: 2rem;
  margin-bottom: 6.25rem;
  background-color: #E30000;
}

.p-cta h2{
  color: #fff;
  font-size: 2rem;
  text-align: center;
}

.p-cta .box .flex-box{
  justify-content: space-around;
}

.p-cta .box .flex-box > div{
  max-width: 300px;
}

.p-cta .box h3{
  margin-bottom: 1.5rem;
  font-size: 1.25rem;
  font-weight: 900;
  color: #E30000;
  text-align: center;
}

.p-cta .box h3 + p{
  line-height: 1.5;
}

.p-cta .box .c-btn{
  margin-inline: auto;
}

@media only screen and (max-width: 767px) {
  .p-cta h2{
    font-size: 1.25rem;
    letter-spacing: -0.5px;
  }
  .p-cta .box .flex-box > div:first-child{
    margin-bottom: 3rem;
  }
}