@charset "UTF-8";
html {
  /* ベースフォントサイズを10pxにする */
  font-size: 62.5%;
}

body {
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  /* bodyのfont-sizeは14px */
  font-size: 1.4rem;
  max-width: 1980px;
  margin: 0 auto;
}

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

a:hover,
a:focus {
  opacity: 0.8;
}

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

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

.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

.header {
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  z-index: 10;
}
.header.fix {
  background-color: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
}
.header_logo {
  position: absolute;
  left: 40px;
}
@media screen and (max-width: 1200px) {
  .header_logo {
    left: 20px;
  }
}
@media screen and (max-width: 560px) {
  .header_logo {
    width: 150px;
  }
}
.header_nav_pc {
  width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 960px) {
  .header_nav_pc {
    display: none;
  }
}
.header_nav_pc ul {
  display: flex;
  justify-content: flex-end;
}
.header_nav_pc ul li {
  font-size: 15px;
  font-weight: bold;
  letter-spacing: 0.05em;
  padding: 10px 0;
}
.header_nav_pc ul li:not(:first-of-type) {
  margin-left: 80px;
}
@media screen and (max-width: 1200px) {
  .header_nav_pc ul li:not(:first-of-type) {
    margin-left: 40px;
  }
}
.header a.entrybtn {
  color: #fff;
  background-color: #222;
  padding: 10px 40px;
  border-radius: 20px;
}
@media screen and (max-width: 560px) {
  .header a.entrybtn {
    font-size: 15px;
    padding: 10px 24px;
  }
}
.header_nav_sp {
  display: none;
  position: absolute;
  right: 20px;
  z-index: 20;
}
@media screen and (max-width: 960px) {
  .header_nav_sp {
    display: block;
    transition: 0.3s ease-out;
  }
}

.nav_bk {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  background-color: rgba(34, 34, 34, 0.8);
  display: none;
  z-index: 10;
}
.nav_bk.open {
  display: block;
}

.hamburger {
  position: absolute;
  right: 20px;
  top: 20px;
  cursor: pointer;
  width: 60px;
  height: 60px;
  margin-left: 16px;
  z-index: 100;
  display: none;
}
@media screen and (max-width: 960px) {
  .hamburger {
    display: block;
  }
}
.hamburger span {
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  border-radius: 5px;
  background: #222;
  width: 56%;
}
.hamburger span:nth-of-type(1) {
  top: 12px;
}
.hamburger span:nth-of-type(2) {
  top: 20px;
}
.hamburger span:nth-of-type(3) {
  top: 28px;
}
.hamburger span:nth-of-type(3)::after {
  content: "MENU"; /*3つ目の要素のafterにMenu表示を指定*/
  position: absolute;
  top: 6px;
  left: -2px;
  color: #222;
  font-size: 13px;
  font-weight: bold;
  text-transform: uppercase;
}
.hamburger.open span:nth-of-type(1) {
  top: 12px;
  left: 18px;
  transform: translateY(8px) rotate(-45deg);
  width: 40%;
}
.hamburger.open span:nth-of-type(2) {
  opacity: 0;
}
.hamburger.open span:nth-of-type(3) {
  top: 27px;
  left: 18px;
  transform: translateY(-8px) rotate(45deg);
  width: 40%;
}
.hamburger.open span:nth-of-type(3)::after {
  content: "Close"; /*3つ目の要素のafterにClose表示を指定*/
  transform: translateY(0) rotate(-45deg);
  top: 6px;
  left: 4px;
}

.wrapper {
  width: 100%;
  overflow: hidden;
  margin-top: -100px;
}

.bkimg {
  background-image: url(../images/bkimg.png);
  background-position: 50% 0%;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width: 1039px) {
  .bkimg {
    background-image: url(../images/bkimg_ltab.png);
  }
}
@media screen and (max-width: 960px) {
  .bkimg {
    background-image: url(../images/bkimg_tab.png);
  }
}
@media screen and (max-width: 560px) {
  .bkimg {
    background-image: none;
  }
}

.title {
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.title h1 {
  margin-top: 200px;
  padding-left: 30px;
}
@media screen and (max-width: 960px) {
  .title h1 {
    width: 85%;
    max-width: 542px;
  }
}
@media screen and (max-width: 560px) {
  .title h1 {
    width: 90%;
    padding-left: 16px;
    margin-top: 140px;
  }
}
.title_desc {
  width: 600px;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.03em;
  line-height: 1.8;
  text-align: center;
  margin-bottom: 100px;
  margin-top: 30px;
}
@media screen and (max-width: 560px) {
  .title_desc {
    width: 100%;
    padding: 0 20px;
    font-size: 18px;
    text-align: left;
  }
  .title_desc .br-pc {
    display: none;
  }
}

.inner {
  width: 100%;
  max-width: 1040px;
  padding: 0 20px;
  margin: 0 auto;
}

.subTitle {
  font-size: 36px;
  font-weight: bold;
  letter-spacing: 0.01em;
  line-height: 1.24;
  text-align: center;
}
@media screen and (max-width: 1039px) {
  .subTitle {
    font-size: 30px;
  }
}
@media screen and (max-width: 560px) {
  .subTitle {
    font-size: 24px;
  }
}
.subTitle-read {
  font-size: 22px;
  letter-spacing: 0;
}
@media screen and (max-width: 560px) {
  .subTitle-read {
    font-size: 16px;
  }
}
.subTitle-en {
  font-family: sofia-pro, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 48px;
}
@media screen and (max-width: 560px) {
  .subTitle-en {
    font-size: 32px;
  }
}

.assistance {
  font-size: 18px;
  font-weight: bold;
  line-height: 27px;
  text-align: center;
  color: #e4007f;
  margin-bottom: 18px;
}

.br-sp {
  display: none;
}

.purpose_list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 48px;
}
@media screen and (max-width: 960px) {
  .purpose_list {
    flex-direction: column;
    margin-top: 36px;
  }
}
@media screen and (max-width: 560px) {
  .purpose_list {
    margin-top: 22px;
  }
}
.purpose_list li {
  padding: 20px 24px;
  border: 3px solid #222;
  border-radius: 44px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  background-color: #fff;
  line-height: 1.4;
  font-feature-settings: "palt";
}
.purpose_list li span {
  color: #e4007f;
}
@media screen and (max-width: 1039px) {
  .purpose_list li {
    font-size: 1.8vw;
  }
}
@media screen and (max-width: 960px) {
  .purpose_list li {
    padding: 16px 24px;
    font-size: 18px;
    margin-top: 18px;
  }
}

.detail_title_wrap {
  text-align: center;
}
.detail_title {
  font-size: 29px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: center;
  color: #222;
  margin-top: 126px;
  position: relative;
  display: inline-block;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .detail_title {
    font-size: 3.4vw;
    margin-top: 90px;
  }
}
@media screen and (max-width: 560px) {
  .detail_title {
    margin-top: 80px;
    font-size: 21px;
  }
  .detail_title .br-sp {
    display: block;
  }
}
.detail_title span {
  font-size: 42px;
}
@media screen and (max-width: 960px) {
  .detail_title span {
    font-size: 1.6em;
  }
}
@media screen and (max-width: 560px) {
  .detail_title span {
    font-size: 34px;
  }
}
.detail_title::before, .detail_title::after {
  content: "";
  width: 59px;
  height: 54px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 560px) {
  .detail_title::before, .detail_title::after {
    width: 34px;
    height: 34px;
    background-size: contain;
    background-repeat: no-repeat;
    top: auto;
    bottom: 0;
  }
}
.detail_title::before {
  background-image: url(../images/detail_title_left.png);
  left: -59px;
}
@media screen and (max-width: 560px) {
  .detail_title::before {
    left: -24px;
  }
}
.detail_title::after {
  background-image: url(../images/detail_title_right.png);
  right: -59px;
}
@media screen and (max-width: 560px) {
  .detail_title::after {
    right: -24px;
  }
}
.detail_desc {
  text-align: center;
}
.detail_desc p {
  font-size: 21px;
  font-weight: 500;
  letter-spacing: 0.08em;
  display: inline-block;
  padding: 12px 80px;
  color: #fff;
  background-color: #222;
  border-radius: 30px;
  margin-top: 18px;
}
@media screen and (max-width: 960px) {
  .detail_desc p {
    padding: 12px 60px;
    font-weight: bold;
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .detail_desc p {
    letter-spacing: 0;
    padding: 12px 16px;
  }
}

.example {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 46px;
}
@media screen and (max-width: 960px) {
  .example {
    flex-direction: column;
  }
}
.example_text {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .example_text {
    width: 90%;
  }
}
.example_text h3 {
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-align: left;
  color: #e4007f;
}
@media screen and (max-width: 960px) {
  .example_text h3 {
    margin-top: 12px;
  }
}
.example_list li {
  padding: 18px 30px 18px 50px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-align: left;
  line-height: 29px;
  border: 2px solid #222222;
  border-radius: 7px;
  background: #fff;
  position: relative;
  display: inline-block;
  margin-top: 12px;
}
.example_list li::before {
  content: "";
  width: 17px;
  height: 30px;
  background-image: url(../images/example_list_icon.png);
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 24px;
}
@media screen and (max-width: 960px) {
  .example_list li::before {
    left: 16px;
  }
}
@media screen and (max-width: 960px) {
  .example_list li {
    font-size: 18px;
    padding: 14px 16px 14px 40px;
    line-height: 1.3;
  }
}

.benefit {
  background-image: url(../images/benefit_bkimg.png);
  padding-bottom: 110px;
}
@media screen and (max-width: 960px) {
  .benefit {
    padding-bottom: 100px;
  }
}
@media screen and (max-width: 560px) {
  .benefit {
    padding-bottom: 80px;
  }
}
.benefit_title {
  background-image: url(../images/benefit_title_bk.png);
  background-position: 50% 0;
  background-repeat: no-repeat;
  padding: 20px 0 120px;
  position: relative;
  margin-top: 100px;
}
@media screen and (max-width: 560px) {
  .benefit_title {
    margin-top: 60px;
  }
}
.benefit_subTitle::after {
  content: "";
  width: 18px;
  height: 106px;
  background-image: url(../images/benefit_title_line.png);
  display: block;
  position: absolute;
  left: 50%;
  bottom: -4px;
}

.award {
  width: 98%;
  max-width: 1120px;
  margin: 0 auto;
  margin-top: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .award {
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  .award img {
    width: 200px;
    height: auto;
    margin-top: -15px;
  }
}
.award_excellence {
  width: 398px;
  height: 398px;
  background: #fff;
  border: 3px solid #b98126;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
@media screen and (max-width: 960px) {
  .award_excellence {
    width: 90%;
    height: 398px;
    max-width: 398px;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 400px) {
  .award_excellence {
    width: 90%;
    height: 90vw;
    margin: 0 auto;
  }
}
.award_excellence {
  position: relative;
  z-index: 3;
}
.award_excellence img {
  width: 65%;
  max-width: 218px;
}
.award_excellence--sanka {
  z-index: 2;
}
@media screen and (max-width: 960px) {
  .award_excellence--sanka {
    position: relative;
    left: auto;
  }
}
.award_excellence--sanka img {
  width: 80%;
  max-width: 121px;
}
.award_excellence:nth-child(3) {
  position: absolute;
  top: 0px;
  left: 740px;
  z-index: 1;
}
@media screen and (max-width: 1200px) {
  .award_excellence:nth-child(3) {
    left: 64vw;
  }
}
@media screen and (max-width: 960px) {
  .award_excellence:nth-child(3) {
    position: relative;
    left: auto;
  }
}
.award_excellence:nth-child(3) img {
  width: 65%;
  max-width: 262px;
  margin-bottom: 15px;
}
.award_effort {
  width: 90%;
  max-width: 468px;
  background-color: #fff;
  border: 3px solid #cba157;
  border-radius: 36px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 10px;
}
@media screen and (max-width: 960px) {
  .award_effort {
    margin-top: 16px;
  }
}
.award_effort img {
  margin-right: 18px;
}
@media screen and (max-width: 560px) {
  .award_effort img {
    width: 50%;
  }
}
.award_topic {
  font-size: 22px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.55;
  text-align: center;
  margin-top: 26px;
}
@media screen and (max-width: 560px) {
  .award_topic {
    line-height: 1;
    font-size: 20px;
  }
}
.award_topic-price {
  font-weight: bold;
  font-size: 40px;
  letter-spacing: 0;
  line-height: 27px;
  color: #e4007f;
}
@media screen and (max-width: 560px) {
  .award_topic-price {
    font-size: 40px;
  }
}
.award_topic::before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #222;
  border-radius: 50%;
  display: inline-block;
  position: relative;
  top: -4px;
  margin-right: 4px;
}
.award_notes {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.5;
  text-align: center;
  margin-top: 4px;
}
@media screen and (max-width: 560px) {
  .award_notes {
    font-size: 3.4vw;
  }
}
.award_text {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 1.6;
  text-align: center;
  margin-top: 24px;
  padding-bottom: 6px;
}
@media screen and (max-width: 560px) {
  .award_text {
    line-height: 1;
  }
}
.award_text-price {
  font-size: 50px;
  font-family: sofia-pro, sans-serif;
  font-weight: bold;
  letter-spacing: 0.03em;
  padding-bottom: 20px;
}
@media screen and (max-width: 560px) {
  .award_text-price {
    font-size: 40px;
  }
}
.award-desc-text {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  margin-top: 30px;
  color: #333;
}
@media screen and (max-width: 560px) {
  .award-desc-text {
    font-size: 18px;
  }
}

.overview {
  padding: 130px 0 120px 0;
  background-color: #f8f8f8;
}
@media screen and (max-width: 560px) {
  .overview {
    padding: 80px 0 140px 0;
  }
}
.overview_title::after {
  content: "";
  width: 80px;
  height: 5px;
  background: #e4007f;
  display: block;
  position: relative;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
}
.overview_table {
  width: 100%;
  background-color: #fff;
  margin-top: 86px;
  position: relative;
  font-feature-settings: "palt";
}
@media screen and (max-width: 560px) {
  .overview_table {
    margin-top: 60px;
  }
}
.overview_table::before {
  content: "";
  width: 355px;
  height: 237px;
  background-image: url(../images/overview_person.png);
  display: block;
  position: absolute;
  top: -143px;
  right: -16px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1039px) {
  .overview_table::before {
    width: 220px;
    height: 143px;
    background-size: contain;
    top: -30px;
    right: -10px;
  }
}
@media screen and (max-width: 560px) {
  .overview_table::before {
    top: auto;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
  }
}
.overview_table tr:not(:last-of-type) {
  border-bottom: 3px solid #f8f8f8;
}
.overview_table th {
  padding: 30px 24px 32px 60px;
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.4;
  color: #222;
  text-align: left;
}
@media screen and (max-width: 1039px) {
  .overview_table th {
    padding: 20px 40px 10px 40px;
    font-size: 18px;
    width: 100%;
    display: block;
    text-align: left;
  }
}
@media screen and (max-width: 560px) {
  .overview_table th {
    font-size: 16px;
    padding: 20px 20px 10px 20px;
  }
}
.overview_table td {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
  color: #222;
}
@media screen and (max-width: 1039px) {
  .overview_table td {
    padding: 0px 40px 20px 40px;
    font-size: 18px;
    width: 100%;
    display: block;
    font-size: 16px;
  }
}
@media screen and (max-width: 560px) {
  .overview_table td {
    padding: 0px 20px 20px 20px;
  }
}
.overview_table td span {
  display: block;
  font-size: 16px;
}
@media screen and (max-width: 1039px) {
  .overview_table td span {
    font-size: 15px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 560px) {
  .overview_table td span {
    font-size: 14px;
  }
}
.overview_table td a {
  border-bottom: 1px dotted #707070;
}

.flow {
  background-color: #cee8f5;
  padding-bottom: 160px;
  padding-top: 100px;
  font-feature-settings: "palt";
}
@media screen and (max-width: 560px) {
  .flow {
    padding-bottom: 80px;
    padding-top: 80px;
  }
}
.flow .assistance {
  z-index: 2;
}
.flow .flow_title {
  z-index: 2;
}
@media screen and (max-width: 560px) {
  .flow .flow_title {
    font-size: 22px;
    letter-spacing: 0;
  }
}
.flow .flow_title .dot {
  position: relative;
  z-index: 2;
  letter-spacing: -0.1em;
}
.flow .flow_title .dot::after {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #e4007f;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 560px) {
  .flow .flow_title .dot::after {
    width: 5px;
    height: 5px;
    top: -4px;
  }
}
.flow .flow_title .img_3_wrap {
  position: relative;
  display: inline-block;
  width: 46px;
  height: 64px;
  z-index: 1;
}
@media screen and (max-width: 560px) {
  .flow .flow_title .img_3_wrap {
    width: 30px;
    height: 40px;
  }
}
.flow .flow_title .img_3_wrap .img_3_bk::before {
  content: "";
  width: 1006px;
  height: 772px;
  background-image: url(../images/flow_3_bk.png);
  display: block;
  position: absolute;
  bottom: -36px;
  left: -38px;
  z-index: 2;
}
@media screen and (max-width: 560px) {
  .flow .flow_title .img_3_wrap .img_3_bk::before {
    width: 600px;
    height: 460px;
    background-size: contain;
    bottom: -24px;
    left: -24px;
  }
}
.flow .flow_title .img_3_wrap .img_3 {
  z-index: 2;
  position: absolute;
  left: 0;
  bottom: -4px;
}
.flow .flow_title .step {
  position: relative;
  z-index: 2;
}
.flow_list {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  gap: 90px;
  margin-top: 115px;
  padding-bottom: 36px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .flow_list {
    flex-direction: column;
  }
}
@media screen and (max-width: 560px) {
  .flow_list {
    margin-top: 60px;
  }
}
.flow_list::after {
  content: "";
  width: 398px;
  height: 189px;
  display: block;
  background-image: url(../images/flow_img.png);
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: 1;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .flow_list::after {
    width: 300px;
    height: 150px;
    background-size: contain;
    bottom: -40px;
  }
}
@media screen and (max-width: 560px) {
  .flow_list::after {
    bottom: 0;
  }
}
.flow_list li {
  width: 100%;
  padding: 50px 34px 45px 34px;
  position: relative;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.flow_list li:nth-child(2)::after {
  content: "";
  width: 35px;
  height: 44px;
  display: inline-block;
  background-image: url(../images/step_icon.png);
  position: absolute;
  top: -80px;
  transform: rotate(90deg);
}
.flow_list li img {
  position: absolute;
  top: -25px;
}
.flow_list li h3 {
  font-size: 26px;
  font-weight: bold;
  letter-spacing: 0.05em;
  line-height: 1.6;
  text-align: left;
}
.flow_list li p {
  font-size: 18px;
  font-family: "Noto Sans JP";
  font-weight: normal;
  letter-spacing: 0.04em;
  line-height: 1.45;
  text-align: center;
  margin-top: 20px;
}
.flow_list li p a {
  border-bottom: 1px dotted #707070;
}
@media screen and (max-width: 960px) {
  .flow_list li {
    width: 100%;
    padding: 50px 40px 40px 40px;
    margin: 0 auto 24px;
  }
  .flow_list li h3 .br-pc {
    display: none;
  }
  .flow_list li p {
    margin-top: 16px;
  }
}
@media screen and (max-width: 560px) {
  .flow_list li {
    padding: 40px 20px 35px 20px;
    margin: 0 auto;
  }
  .flow_list li p {
    font-size: 14px;
    margin-top: 12px;
    text-align: justify;
  }
  .flow_list li h3 {
    font-size: 18px;
  }
}
.flow_list li.flow-branch {
  display: flex;
  flex-direction: row;
  background-color: unset;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  margin-top: -40px;
  padding: 40px 0 96px 0;
}
@media screen and (max-width: 1039px) {
  .flow_list li.flow-branch {
    gap: 20px;
  }
}
@media screen and (max-width: 560px) {
  .flow_list li.flow-branch {
    gap: 10px;
  }
}
.flow_list li.flow-branch .flow-branch-box {
  background-color: #fff;
  width: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px;
  border-radius: 12px;
}
@media screen and (max-width: 560px) {
  .flow_list li.flow-branch .flow-branch-box {
    padding: 40px 15px;
  }
}
.flow_list li.flow-branch .flow-branch-box::after {
  content: "";
  width: 35px;
  height: 44px;
  display: inline-block;
  background-image: url(../images/step_icon.png);
  position: absolute;
  top: -40px;
  transform: rotate(90deg);
}
.flow_list li.flow-branch .flow-branch-box h3 {
  text-align: center;
}
.flow_list li.flow-branch .flow-branch-box h3 span {
  display: block;
  font-size: 22px;
  letter-spacing: 0.05em;
  text-align: center;
  color: #e4007f;
  margin-bottom: 10px;
}
@media screen and (max-width: 560px) {
  .flow_list li.flow-branch .flow-branch-box h3 span {
    font-size: 14px;
  }
}
@media screen and (max-width: 1039px) {
  .flow_list li.flow-branch .flow-branch-box p .br-pc {
    display: none;
  }
}
.flow_list li.flow-branch .flow-branch-box img {
  position: absolute;
  top: 24px;
}
.flow_list li.flow-branch .flow-branch-box--none::after {
  content: "";
  width: 44px;
  height: 35px;
  display: inline-block;
  background-image: url(../images/step-icon-non.png);
  position: absolute;
  top: -40px;
  transform: rotate(0deg);
}
.flow_list li.flow-branch .flow-branch-box--none h3 span {
  color: #0095de;
}
.flow_entrybtn {
  font-size: 20px;
  font-weight: bold;
  letter-spacing: 0.1em;
  line-height: 64px;
  text-align: center;
  color: #fff;
  background-color: #222;
  display: block;
  border-radius: 42px;
  margin-top: 20px;
}
@media screen and (max-width: 560px) {
  .flow_entrybtn {
    font-size: 16px;
    line-height: 1.6;
    padding: 14px;
    margin-top: 8px;
  }
  .flow_entrybtn .br-sp {
    display: block;
  }
}

.footer {
  padding: 60px 0 80px 0;
}
.footer img {
  display: block;
  margin: 0 auto;
}
@media screen and (max-width: 560px) {
  .footer img {
    width: 80%;
  }
}

.concreteExample {
  width: 100%;
  max-width: 1160px;
  border-radius: 34px;
  background: #f8f8f8;
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, -1.691rem + 4.9vw, 4.375rem);
  margin-top: 140px;
  margin-right: auto;
  margin-left: auto;
  padding-bottom: 80px;
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 560px) {
  .concreteExample {
    flex-direction: column;
    gap: 100px;
  }
}
.concreteExample-box {
  width: 100%;
  max-width: 480px;
  position: relative;
}
.concreteExample-box img {
  margin-top: -80px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 960px) {
  .concreteExample-box img {
    width: 80%;
  }
}
@media screen and (max-width: 560px) {
  .concreteExample-box {
    max-width: unset;
  }
}
.concreteExample-title {
  font-weight: 500;
  font-size: 18px;
  letter-spacing: 0.06em;
  line-height: 1.7;
  text-align: left;
  color: #008fd5;
  margin-top: 8px;
}
@media screen and (max-width: 1039px) {
  .concreteExample-title {
    font-size: 16px;
  }
}
.concreteExample-input {
  font-family: "Noto Sans JP";
  font-weight: 500;
  font-size: 18px;
  line-height: 1.4;
  text-align: left;
  color: #333;
  width: 100%;
  padding: 22px;
  border-radius: 5px 25px;
  background: #cfefff;
  text-align: justify;
}
.concreteExample-input--main {
  font-size: 24px;
}
@media screen and (max-width: 1039px) {
  .concreteExample-input {
    font-size: 16px;
    padding: 20px;
  }
  .concreteExample-input--main {
    font-size: 18px;
  }
}
.concreteExample-select {
  font-weight: 500;
  font-size: 18px;
  line-height: 2;
  text-align: left;
  color: #333;
}
@media screen and (max-width: 1039px) {
  .concreteExample-select {
    font-size: 16px;
  }
}
.concreteExample-select span {
  position: relative;
}
.concreteExample-select span::after {
  content: "";
  width: 74px;
  height: 50px;
  background-image: url(../images/example-select.svg);
  background-size: contain;
  background-repeat: no-repeat;
  display: block;
  position: absolute;
  top: -8px;
  left: -6px;
  opacity: 0.8;
}
.concreteExample-select span.moti::after {
  left: 27%;
}
/*# sourceMappingURL=style.css.map */