body {
  font-family: 'Noto Sans JP', sans-serif;
}

a {
  color: #000;
  text-decoration: none;
}

.ttlbox {
  width: max-content;
  text-align: center;
  margin: 63px auto 0;
}

.ttlbox-ttl {
  font-size: 48px;
  font-weight: 600;

}

.ttlbox-text {
  font-size: 24px;
  list-style: 1.2;
  margin-top: 10px;
}


@media (max-width: 670px) {
  .ttlbox-ttl {
    font-size: 16px;
    margin-top: 28px;
  }
  .ttlbox-text {
    display: none;
  }
}



/* 共通部分　 */

/* ヘッダー */
.header {
  width: 100%;
  height: 68px;
  position: fixed;
  top: 0;
  background-color: #D9D9D9;
  z-index: 100;
}

.header-inner {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-logo {
  width: auto;
  height: 100%;
}

.header-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.header-nav {
  width: auto;
  height: 100%;
}

.header-nav ul {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 21px;
  height: 100%;
}

.header-item {
  height: 100%;
}

.header-item a {
  display: block;
  display: flex;
  align-items: center;
  height: 100%;
  font-size: 13px;
  letter-spacing: 0;
}


.header-item.line a {
  width: 318px;
  height: 100%;
  background-color: #22BA4F;
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

.header-item.line a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 68px;
  height: 68px;
  background-image: url(../img/ico_line.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.header-item.line a span {
  display: block;
  margin-left: 93px;
}

@media (max-width: 670px) {
  .header {
    width: 100%;
    height: 47px;
  }
  
  .header-inner {
  }
  
  .header-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .header-logo img {
    width: 121px;
    height: 70%;
  }
  
  .header-nav {
  }
  
  .header-nav ul {
    gap: 14px;
  }
  
  .header-item {
  }
  
  .header-item a {
    font-size: 8px;
  }
  
  
  .header-item.line a {
    width: 46px;
    height: 100%;
    font-size: 1px;
    position: relative;
    z-index: 1;
  }
  
  .header-item.line a::before {
    width: 100%;
    height: 100%;
  }
  
  .header-item.line a span {
    display: block;
    margin-left: 93px;
  }
}
/* ヘッダー */

/* FV */
.fv {
  width: 100%;
  height: calc(100vh - 68px);
  margin-top: 68px;
  background-image: url(../img/fv.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.fv-inner {
  width: 1050px;
  height: 603px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 8px;
}

.fv-content {
  width: 100%;
  height: 100%;
}

.fv-ttl-wrap {
  display: flex;
  justify-content: end;
  gap: 10px;
  margin-left: auto;
  margin-right: 50px;
  margin-top: 40px;
  margin-bottom: 20px;
}

.fv-ttl-img {
  width: 138px;
  height: 116px;
}

.fv-ttl-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.fv-ttl {
  font-size: 40px;
  font-weight: 600;
  text-align: center;
}

.fv-ttl span {
  font-size: 64px;
}

.fv-btn-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 9px;
}

.fv-btn-txt {
  font-size: 24px;
  font-weight: 600;
}

.fv-btn {
  width: 478px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  color: #fff;
  font-size: 32px;
  font-weight: 600;
  background-color: #F06E2E;
}

.line-btn .fv-btn {
  background-color: #22BA4F;
}

.fv-copy {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 55px;
  margin: 25px auto 21px;
}

.fv-copy-img {
  width: 180px;
  height: 119px;
}

.fv-copy-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 670px) {
  .fv {
    width: 100%;
    height: 488px;
    margin-top: 47px;
  }
  
  .fv-inner {
    width: 87%;
    height: max-content;
    padding: 27px 12px;
  }
  
  .fv-content {
  }
  
  .fv-ttl-wrap {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-left: auto;
    margin-right: auto;
    margin-top: auto;
    margin-bottom: auto;
  }
  
  .fv-ttl-img {
    margin-top: 0px;
    width: 103px;
    height: auto;
  }
  
  .fv-ttl-img img {
  }
  
  .fv-ttl {
    font-size: 16px;
    margin-bottom: 29px;
  }
  
  .fv-ttl span {
    display: inline-block;
    margin-top: 10px;
    font-size: 24px;
  }
  
  .fv-btn-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 9px;
  }
  
  .fv-btn-txt {
    font-size: 16px;
  }
  
  .fv-btn {
    width: 68%;
    height: 33px;
    font-size: 13px;
  }
  
  .line-btn .fv-btn {
    background-color: #22BA4F
  }
  
  .fv-copy {
    justify-content: center;
    width: 100%;
    gap: 26px;
    margin: 23px auto 22px;
  }
  
  .fv-copy-img {
    width: 85px;
    height: auto;
  }
  
  .fv-copy-img img {
  }
}

/* FV */

/* メリット */
.merit {
  width: 100%;
  height: auto;
  background-image: url(../img/bg.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 19px 0 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.merit-text {
  font-size: 36px;
  font-weight: 600;
  text-align: center;
  line-height: 1.2;
}

.merit-text span {
  color: #F06E2E;
}

.merit-img {
  width: 890px;
  height: auto;
  margin: 20px auto;
}

.merit-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 670px) {
  .merit {
    padding: 54px 0;
    gap: 20px;
  }
  
  .merit-text {
    font-size: 11px;
  }
  
  .merit-text span {
  }
  
  .merit-img {
    width: 85%;
    margin: 0px auto;
  }
  
  .merit-img img {
  }
  
}
/* メリット */


/* お問い合わせ */
.contact {
  padding: 60px 0;
  background-color: #F3EEE8;
}

.ttlbox-img {
  width: 98px;
  height: auto;
  margin: 0 auto 10px;
}

.ttlbox-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-inner {
  box-sizing: border-box;
  width: 1000px;
  margin: 10px auto 0;
  padding: 23px 60px 30px;
  border-radius: 16px;
  background-color: #fff;
}

.contact-img {
  width: 100%;
  height: 100%;
}

.normal {
  margin-top: 23px;
}

.normal .text {
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 5px;
}

.two-column {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.two-column .sub {
  width: 40%;
}

.two-column .sub.end {
  width: 60%;
}

.two-column .subtext {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 5px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
select {
  width: 100%;
  height: 42px;
  font-size: 17px;
  padding: 0 10px;
}

select {
  height: 48px;
}

.special .ttl{
  font-size: 36px;
  font-weight: 600;
  margin-bottom: 20px;
}

.special .ttl::before {
  content: '';
  display: inline-block;
  width: 15px;
  height: 30px;
  background-color: #F06E2E;
  margin-right: 9px;
}

.special-inner {
  margin-bottom: 30px;
}


.check {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

.check .wpcf7-list-item {
  box-sizing: border-box;
  display: block;
  width: calc(50% - 5px);
  height: 42px;
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  padding:  0 15px 0 28px;
  display: flex;
  align-items: center;
  justify-content: start;
  background-color: #ECF0F3;
}

.submit {
  width: 387px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background-color: #F06E2E;
  border: none;
  border-radius: 16px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
  margin: 33px auto 0;
}

.wpcf7-list-item {
  position: relative;
  margin: 0!important;
}

.special input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  z-index: 2;
  width: 146px;
  height: 146px;
  left: 0;
}

.special.noicon input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  z-index: 2;
  width: 203px;
  height: 128px;
  left: 0;
}

.reason input[type="checkbox"] {
  opacity: 0;
  position: absolute;
  z-index: 2;
  width: 40px;
  height: 40px;
  left: 0;
}

.special .wpcf7-checkbox {
  width: 840px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  row-gap: 20px;
}

.special.noicon .wpcf7-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.wpcf7-list-item-label {
  color: #9d9d9d;
}

.special .wpcf7-list-item-label {
  box-sizing: border-box;
  width: 146px;
  height: 146px;
  padding: 25px 0;
  background-color: #ECF0F3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  border-radius: 16px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  font-size: 24px;
}

.special .wpcf7-list-item-label::before{
  content: '';
  display: block;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.special .wpcf7-list-item-label::after{
  display: none;
}

.special.icon .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label::before{
  background-image: url(../img/ico01.svg);
  width: 100px;
  height: 100px;
}

.special.icon .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::before{
  background-image: url(../img/ico02.svg);
  width: 64px;
  height: 64px;
}

.special.icon .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::before{
  background-image: url(../img/ico03.svg);
  width: 84px;
  height: 39px;
}

.special.icon .wpcf7-list-item:nth-child(4) .wpcf7-list-item-label::before{
  background-image: url(../img/ico04.svg);
  width: 64px;
  height: 64px;
}

.special.icon .wpcf7-list-item:nth-child(5) .wpcf7-list-item-label::before{
  background-image: url(../img/ico05.svg);
  width: 70px;
  height: 64px;
}

.special.icon .wpcf7-list-item:nth-child(6) .wpcf7-list-item-label::before{
  background-image: url(../img/ico06.svg);
  width: 56px;
  height: 65px;
}

.special.icon .wpcf7-list-item:nth-child(7) .wpcf7-list-item-label::before{
  background-image: url(../img/ico07.svg);
  width: 65px;
  height: 65px;
}

.special.icon .wpcf7-list-item:nth-child(8) .wpcf7-list-item-label::before{
  background-image: url(../img/ico08.svg);
  width: 25px;
  height: 65px;
}

.special.icon .wpcf7-list-item:nth-child(9) .wpcf7-list-item-label::before{
  background-image: url(../img/ico09.svg);
  width: 99px;
  height: 65px;
}

.special.icon .wpcf7-list-item:nth-child(10) .wpcf7-list-item-label::before{
  background-image: url(../img/ico010.svg);
  width: 65px;
  height: 65px;
}



.special input[type="checkbox"]:checked + .wpcf7-list-item-label {
  background-color: #F06E2E;
  color: #000;
}

.special.noicon .wpcf7-list-item-label{
  width: 203px;
  height: 128px;
  background-color: #ECF0F3;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 16px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
  transition: all 0.3s ease;
  font-size: 24px;
}

.special.noicon input[type="checkbox"]:checked + .wpcf7-list-item-label {
  background-color: #F06E2E;
  color: #000;
}

.wpcf7-list-item-label {
  position: relative;
}


.reason .wpcf7-list-item-label {
  margin-left: 15px;
}

.reason .wpcf7-list-item-label::before{
  z-index: 1;
  position: absolute;
  top: 10.5px;
  transform: translateY(-50%);
  left: -25px;
  content: '';
  display: block;
  width: 16px;
  height: 16px;
  background-color: #fff;
  border: 1px solid #000;
  border-radius: 50%;
}

.reason input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
  background-color: #F06E2E;
}

.wpcf7-not-valid-tip{
  margin-top: 10px;
  margin-bottom: 10px;
}

.requ {
  display: inline-block;
  color: red;
  font-size: 14px;
  font-weight: 600;
  margin-left: 5px;
}

@media (max-width: 670px) {
  .contact {
    padding: 36px 0 31px;
  }

  .contact .ttlbox {
    margin-top: 0;
  }
  
  .ttlbox-img {
    width: 51px;
    margin: 0 auto 7px;
  }
  
  .ttlbox-img img {
  }
  
  .contact-inner {
    width: 88%;
    margin: 30px auto 0;
    padding: 21px 20px 38px;
    border-radius: 8px;
  }
  
  .contact-img {
  }
  
  .normal {
  }
  
  .normal .text {
    font-size: 11px;
  }
  
  .two-column {
  }
  
  .two-column .sub {
  }
  
  .two-column .sub.end {
  }
  
  .two-column .subtext {
    font-size: 8px;
  }
  
  input[type="text"],
  input[type="email"],
  input[type="tel"],
  select {
    width: 90%;
    height: 31px;
    font-size: 11px;
    padding: 0 7px;
  }
  
  select {
    height: 38px;
  }
  
  .special .ttl{
    font-size: 13px;
    margin-bottom: 15px;
  }
  
  .special .ttl::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 23px;
    margin-right: 5px;
  }
  
  .special-inner {
    margin-bottom: 23px;
  }
  
  
  .check {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .check .wpcf7-list-item {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: start;
    height: 31px;
    font-size: 10px;
    font-weight: 600;
    padding:  0 10px 0 15px;
  }
  
  .submit {
    width: 225px;
    height: 33px;
    font-size: 13px;
    border-radius: 8px;
    margin: 31px auto 0;
  }
  
  .wpcf7-list-item {
    position: relative;
  }
  
  .special input[type="checkbox"] {
    width: 74px;
    height: 74px;
  }
  
  .special.noicon input[type="checkbox"] {
    width: 91px;
    height: 58px;
  }
  
  .reason input[type="checkbox"] {
  }
  
  .special .wpcf7-checkbox {
    width: 270px;
    row-gap: 8px;
  }
  
  .special.noicon .wpcf7-checkbox {
    width: 300px;
    gap: 10px;
  }
  
  .wpcf7-list-item-label {
  }
  
  .special .wpcf7-list-item-label {
    box-sizing: border-box;
    width: 74px;
    height: 74px;
    padding: 13px 0;
    border-radius: 8px;
    font-size: 13px;
  }
  
  .special .wpcf7-list-item-label::before{
  }
  
  .special .wpcf7-list-item-label::after{
    display: none;
  }
  
  .special.icon .wpcf7-list-item:nth-child(1) .wpcf7-list-item-label::before{
    width: 56px;
    height: 56px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(2) .wpcf7-list-item-label::before{
    width: 32px;
    height: 32px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(3) .wpcf7-list-item-label::before{
    width: 43px;
    height: 19px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(4) .wpcf7-list-item-label::before{
    width: 32px;
    height: 32px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(5) .wpcf7-list-item-label::before{
    width: 36px;
    height: 32px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(6) .wpcf7-list-item-label::before{
    width: 28px;
    height: 33px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(7) .wpcf7-list-item-label::before{
    width: 32px;
    height: 33px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(8) .wpcf7-list-item-label::before{
    width: 13px;
    height: 33px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(9) .wpcf7-list-item-label::before{
    width: 50px;
    height: 33px;
  }
  
  .special.icon .wpcf7-list-item:nth-child(10) .wpcf7-list-item-label::before{
    width: 32px;
    height: 33px;
  }
  
  
  
  .special input[type="checkbox"]:checked + .wpcf7-list-item-label {
  }
  
  .special.noicon .wpcf7-list-item-label{
    width: 91px;
    height: 58px;
    border-radius: 8px;
    font-size: 13px;
  }
  
  .special.noicon input[type="checkbox"]:checked + .wpcf7-list-item-label {
  }
  
  .wpcf7-list-item-label {
  }
  
  
  .reason .wpcf7-list-item-label {
    margin-left: 7px;
  }
  
  .reason .wpcf7-list-item-label::before{
    top: 5px;
    left: -17px;
    width: 12px;
    height: 12px;
  }
  
  .reason input[type="checkbox"]:checked + .wpcf7-list-item-label::before {
    background-color: #F06E2E;
  }
  
  .wpcf7-not-valid-tip{
    margin-top: 10px;
    margin-bottom: 10px;
  }
  
  .requ {
    display: inline-block;
    color: red;
    font-size: 14px;
    font-weight: 600;
    margin-left: 5px;
  }
}

/* お問い合わせ */

/* 価格 */
.price {
  width: 100%;
  height: auto;
  padding: 84px 0 89px;
}

.price-inner {
  width: 884px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  column-gap: 27px;
  row-gap: 69px;
}

.price-item {
  width: 274px;
}

.price-item-img {
  width: 100%;
  height: 274px;
}

.price-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

.price-item-cont {
}

.price-ttl {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 10px;
}

.price-price {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-top: 15px;
}

.price-price span {
  font-size: 48px;
  color: #F06E2E;
}

.price-btn {
  display: block;
  width: 387px;
  text-align: center;
  padding: 27px 0;
  margin: 0px auto 69px;
  font-size: 24px;
  font-weight: 600;
  color: #fff;
  background-color: #22BA4F;
  border-radius: 16px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
}

@media (max-width: 670px) {
  .price {
    padding: 26px 0 25px;
    overflow-x: scroll;
  }
  
  .price-inner {
    width: 590px;
    height: 366px;
    margin: 0 52px;
    display: flex;
    justify-content: start;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 34px;
    row-gap: 23px;
  }
  
  .price-item {
    width: 120px;
  }
  
  .price-item-img {
    width: 100%;
    height: 120px;
  }
  
  .price-item-img img {
  }
  
  .price-item-cont {
  }
  
  .price-ttl {
    font-size: 10px;
    margin-top: 9px;
  }
  
  .price-price {
    font-size: 10px;
  }
  
  .price-price span {
    font-size: 20px;
  }
  
  .price-btn {
    display: block;
    width: 60%;
    padding: 9px 0;
    margin: 36px auto;
    font-size: 13px;
    border-radius: 8px;
  }
}

/* 価格 */

/* 比較表 */
.compare {
  width: 100%;
  height: auto;
  padding: 80px 0 89px;
  background-color: #FAFAFA;
}

.compare-inner {
  width: 1058px;
  margin: 0 auto;
}

.compare-img {
  width: 100%;
  height: auto;
  margin-top: 69px;
}

.compare-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media (max-width: 670px) {
  .compare {
    padding: 14px 0 52px;
  }
  
  .compare-inner {
    width: 85%;
  }
  
  .compare-img {
    margin-top: 22px;
  }
  
  .compare-img img {
  }
}
/* 比較表 */

/* お客様の声 */
.voice {
  width: 100%;
  height: auto;
  padding: 0px 0 89px;
}

.voice-inner {
  width: 997px;
  margin: 62px auto 0;
}

.voice-item {
  width: 100%;
  height: 287px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 29px;
  background-color: #ECF0F3;
  border-radius: 16px;
}

.voice-item + .voice-item {
  margin-top: 77px;
}

.voice-item-cont {
  width: 483px;
}

.voice-item-name {
  font-size: 36px;
  font-weight: 600;
}

.voice-item-ttl {
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 10px;
}

.voice-item-text {
  font-size: 20px;
  margin-top: 28px;
  line-height: 1.2;
}

.voice-item-text span {
  color: #F06E2E;
}

.voice-item-img {
  width: 285px;
  height: 198px;
}

.voice-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 670px) {
  .voice {
    width: 100%;
    height: auto;
    padding: 0px 0 28px;
    overflow-x: scroll;
  }
  
  .voice-inner {
    width: calc(85vw + 85vw + 75px);
    margin: 40px 10px 0;
    display: flex;
    justify-content: start;
    align-items: center;
    gap: 19px;
  }
  
  .voice-item {
    width: 85vw;
    height: 200px;
    flex-direction: column;
    gap: 6px;
    padding: 0 21px;
  }
  
  .voice-item + .voice-item {
    margin-top: 0;
  }

  .voice-item-wrap {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 13px;
  }
  
  .voice-item-cont {
    width: calc(100% - (96px + 13px));
  }
  
  .voice-item-name {
    font-size: 16px;
  }
  
  .voice-item-ttl {
    font-size: 12px;
    margin-top: 10px;
  }
  
  .voice-item-text {
    width: 100%;
    font-size: 12px;
    margin-top: 0;
  }
  
  .voice-item-text span {
  }
  
  .voice-item-img {
    width: 96px;
    height: 61px;
  }
  
  .voice-item-img img {
  }
}
/* お客様の声 */

/* ご利用の流れ */
.flow {
  width: 100%;
  height: auto;
  padding: 0;
}

.flow-inner {
  width: 926px;
  margin: 138px auto 119px;
}

.flow-item {
  width: 100%;
  height: 221px;
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 33px;
  position: relative;
}

.flow-item::after {
  content: '▼';
  color: #F06E2E;
  font-size: 24px;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
}

.flow-item:last-child::after {
  display: none;
}

.flow-item + .flow-item {
  margin-top: 81px;
}

.flow-item-img {
  width: 213px;
  height: 100%;
}

.flow-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flow-item-ttl {
  font-size: 32px;
  font-weight: 600;
  letter-spacing: 0;
  color: #F06E2E;
}

.flow-item-text {
  font-size: 24px;
  margin-top: 19px;
  line-height: 1.2;
}

.flow-btnbox {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 78px;
  margin: 0 0 139px 0;
}

.flow-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  font-size: 36px;
  font-weight: 600;
  width: 478px;
  height: 142px;
  border-radius: 16px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.25);
}

.flow-btn:first-child {
  background-color: #22BA4F;
}

.flow-btn:last-child {
  background-color: #F06E2E;
}

@media (max-width: 670px) {
  .flow {
    width: 100%;
    height: auto;
    padding: 28px 0 34px;
    overflow-x: scroll;
  }
  
  .flow-inner {
    width: 879px;
    margin: 0 20px;
    display: flex;
    justify-content: start;
    align-items: center;
    column-gap: 33px;
  }
  
  .flow-item {
    width: 196px;
    height: 196px;
    flex-direction: column;
    justify-content: center;
    gap: 0;
    background-color: #ECF0F3;
    border-radius: 16px;
  }
  
  .flow-item::after {
    content: '▶︎';
    font-size: 20px;
    bottom: 50%;
    right: -25px;
    left: auto;
    transform: translateY(50%);
  }
  
  .flow-item:last-child::after {
    display: none;
  }
  
  .flow-item + .flow-item {
    margin-top: 0;
  }
  
  .flow-item-img {
    width: 95px;
    height: 95px;
  }
  
  .flow-item-img img {
  }
  
  .flow-item-ttl {
    font-size: 10px;
    text-align: center;
    margin: 10px 0;
  }
  
  .flow-item-text {
    font-size: 10px;
    margin-top: 0;
    text-align: center;
  }
  
  .flow-btnbox {
    margin: 34px auto 64px;
    flex-direction: column;
    gap: 19px;
  }
  
  .flow-btn {
    font-size: 13px;
    width: 60%;
    height: 33px;
    border-radius: 8px;
  }
  
  .flow-btn:first-child {
  }
  
  .flow-btn:last-child {
  }
}
/* フッター */
/* フッター */

@media (min-width: 671px) {
  .nonePC {
    display: none;
  }
}

@media (max-width: 670px) {
  .noneSP {
    display: none;
  }
}