@charset "UTF-8";

/* 
=====ブレイクポイントの設定=====
PC：1025px〜
タブレット：600px〜1024px
スマホ：〜599px

@media screen and (min-width: 1025px) {}
@media screen and (min-width: 600px) {}
============================

命名規則：スネークケース ex) contents_point_title
*/

/* 共通設定 */

.font-family_din {
  font-family: din-2014, sans-serif;
}

.font-family_notoSans {
  font-family: noto-sans-cjk-jp, sans-serif;
}

body {
  color: #333;
  font-family: din-2014, noto-sans-cjk-jp, sans-serif;
  font-size: 14px;
  background: #D9F2FD;
  background: linear-gradient(180deg,rgba(217, 242, 253, 1) 0%, rgba(143, 224, 235, 1) 100%);
  overflow-x: hidden;
}

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

a:hover {
  opacity: 0.8;
}

img {
  display: block;
  width: 100%;
}

.inner_p0 {
  padding:0;
}
.inner_p15 {
  padding-top: 20px;
  padding-left: 15px;
  padding-right: 15px;
}

.font_color_orange {
  color: #e9545e;
}

.marker_yellow {
  background: linear-gradient(to bottom, transparent 55%, #fdff4c 55%, #fdff4c 85%, transparent 85%);
  display: inline-block;
}

.hp_pc {
  display: none;
}

@media screen and (min-width: 600px) {
  .hp_pc {
    display: block;
  }

  .hp_sp {
    display: none;
  }
}

/* ページ全体 */
.fixed_inner {
  position: fixed;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: url(../img/pc_bg.jpg)center center / cover no-repeat;
}

/* logo_area */
.logo_area {
  width: calc(50% - 250px);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
}

.logo_img {
  width: 100%;
  max-width: 169px;
  padding-top: 27px;
  padding-left: 30px;
}

/* nacigation_area */
.navigation_area {
  width: calc(50% - 250px);
  position: fixed;
  top: 0;
  right: 0;
  height: 100vh;
}

.navigation_wrap {
  position: relative;
  height: 100%;
}

.navigation {
  width: 100%;
  max-width: 330px;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  position: absolute;
  left: 40px;
  bottom: 50px;
  box-sizing: border-box;
}

.navigation_logo {
  max-width: 167px;
  margin: 0 auto 40px;
}

.navigation_itemBox {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.navigation_item {
  width: 100%;
  border-bottom: dotted 1px #00a7ea;
  position: relative;
}

.navigation_item::before {
  content: "";
  width: 6.72px;
  height: 13.44px;
  background: url(../img/navigation-arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 9px);
  right: 4.96px;
  transform: translateY(-50%);
}

.navigation_item_link {
  padding-bottom: 18px;
}

.navigation_item:last-child {
  border-bottom: none;
}

.navigation_item:last-child::before {
  top: 50%;
}

.navigation_item:last-child .navigation_item_link {
  padding-bottom: 0;
}

/* main_content */
.header_bg {
  background: #fff;
  height: 73px;
  position: absolute;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  z-index: 1;
}

.fv {
  position: relative;
  width: 100%;
  aspect-ratio: 375 / 520;
}

.fv_event {
  position: absolute;
  width: 87%;
  bottom: 90px;
  left: 50%;
  transform: translateX(-50%);
}

.main_content {
  width: 100%;
  max-width: 599px;
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  transform: none;
  z-index: 1;
  overflow: hidden;
}

@media screen and (min-width: 600px) {
  .header_bg {
    height: 54px;
  }
  .logo_area {
    display: none;
    width: 0;
  }
  .fv_event {
    bottom: 95px;
  }
  .main_content {
    max-width: 375px;
    left: 50%;
    transform: translateX(-50%);
  }
  .navigation_area {
    display: none;
    width: calc(50% + 10px);
    top: -100px;
  }
}

@media screen and (min-width: 1025px) {
  .logo_area {
    display: block;
    width: calc(50% - 125px);
  }
}

@media screen and (min-width: 1100px) {
  .header_bg {
    height: 85px;
  }
  .logo_area {
    width: calc(50% - 290px);
  }
  .main_content {
    max-width: 580px;
    left: calc(50% - 290px);
    transform: none;
  }
  .navigation_area {
    display: block;
    width: calc(50% - 265px);
  }
  .fv_event {
    bottom: 140px;
  }
}

@media screen and (min-width: 1400px) {
  .navigation_area {
    width: calc(50% - 290px);
  }
}

.cta01 {
  background: #ffcc00;
}

.fixed_bottom {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 500px;
  z-index: 10;
}

.cta01_wrapper {
  padding-top: 10px;
  padding-bottom: 10px;
}

.cta01_download_link {
  background: #ebf4ff;
  padding: 10px 15px;
  border-radius: 10px;
}

.cta01_download_link_text {
  text-align: center;
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: 600;
  color: #214e7c;

}

.cta01_download_link_text_span{
  font-size: 22px;
  padding: 0 2px;
}

.cta01_download_link_btn_Area {
  display: flex;
  gap: 10px;
}

.cta01_register_link {
  margin-top: 10px;
  background: #000;
  padding: 15px 15px;
  border-radius: 7px;
  text-align: center;
  font-size: 17.06px;
  font-weight: 600;
  color: #fff;
}

@media screen and (min-width: 600px) {
  .cta01 {
    background: rgba(255,204,0,0.9);
  }

  .fixed_bottom {
    width: 100vw;
    max-width: 100%;
  }

  .cta01_wrapper {
    padding-top: 8px;
    padding-bottom: 8px;
    box-sizing: border-box;
  }

  .cta01_download_link {
    background: transparent;
    padding: 0px;
    border-radius: 5px;
    max-width: 580px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    box-sizing: border-box;
  }

  .cta01_download_link_text {
    flex: 1;
    margin-bottom: 0;
    font-size: 32px;
    color: #000;
  }

  .cta01_download_link_qr {
    max-width: 85px;
  }

  .cta01_copyright {
    display: none;
    padding-top: 17px;
    color: #fff;
    text-align: center;
    font-size: 12px;
  }
}

/* problem */
.problem {
  padding: 40px 0 0;
}

.problem_ttl {
  margin-bottom: 20px;
  text-align: center;
  font-weight: 600;
}

.problem_ttl_span01 {
  display: block;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 10px 20px;
  background: linear-gradient(90deg, rgba(108, 208, 243, 1) 0%, rgba(42, 197, 179, 1) 100%);
  color: #fff;
  position: relative;
}

.problem_ttl_span01::before {
  content: "";
  width: 20px;
  height: 15px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: linear-gradient(90deg, rgba(108, 208, 243, 1) 0%, rgba(42, 197, 179, 1) 100%);
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.problem_ttl_span02 {
  position: relative;
  font-size: 62px;
  font-weight: 600;
  letter-spacing: 1.2px;
}

.problem_ttl_span02::before {
  content: "";
  width: 285px;
  height: 40px;
  background: url(../img/yellou_marker.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
}

.problem_ttl_span02::after {
  content: "";
  width: 38px;
  height: 47px;
  background: url(../img/problem_ttl_obj.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -30px;
  right: -30px;
}

.problem_ttl_span03 {
  font-size: 83px;
}

.problem_ttl_span04 {
  font-size: 57px;
}

.problem_ttl_span05 {
  font-size: 46px;
}

.problem_itemBox {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.problem_item {
  position: relative;
  width: 100%;
}

.problem_item_uv {
  border: solid 2px #e9545e;
  border-radius: 2.5px;
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 20px);
}

.problem_item_uv:nth-child(3) {
  bottom: 7vw;
}

.problem_item_uv:nth-child(4) {
  bottom: 4vw;
}

.problem_item_uv:nth-child(5) {
  bottom: 4vw;
}

.problem_item_uv_ttl {
  font-size: 20px;
  font-weight: 600;
  color: #fff;
  background: #e9545e;
  text-align: center;
  padding: 5px 0;
  position: relative;
}

.problem_item_uv_ttl::before {
  content: "";
  width: 55px;
  height: 62px;
  background: url(../img/problem_item_uv_ttl01.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: -32px;
  left: 15px;
}

.problem_item:nth-child(2) .problem_item_uv_ttl::before {
  background: url(../img/problem_item_uv_ttl02.png)no-repeat;
  background-size: contain;
  top: -29px;
}

.problem_item:nth-child(3) .problem_item_uv_ttl::before {
  background: url(../img/problem_item_uv_ttl03.png)no-repeat;
  background-size: contain;
  top: -28px;
}

.problem_item:nth-child(4) .problem_item_uv_ttl::before {
  background: url(../img/problem_item_uv_ttl04.png)no-repeat;
  background-size: contain;
  width: 69px;
  top: -32px;
}
.problem_item:nth-child(5) .problem_item_uv_ttl::before {
  background: url(../img/problem_item_uv_ttl05.png)no-repeat;
  background-size: contain;
  top: -29px;
}

.problem_item_uv_text {
  font-size: 13px;
  font-weight: 600;
  line-height: 2.0;
  padding: 5px;
  background: #fff;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-decoration-color: #9d9d9d;
  text-underline-offset: 8px;
}

.decoration_area {
  background: #fff;
  clip-path: polygon(0 0, 100% 0%, 100% 55%, 50% 100%, 0% 55%);
  padding: 25px 0;
  font-size: 29px;
  font-weight: 600;
  text-align: center;
}

.no_01 {
  background: url(../img/no_01.png) no-repeat center center;
  background-size: cover;
  width: 100%;
  aspect-ratio: 375 / 288;
  margin-top: -40px;
  padding-top: 80px;
  box-sizing: border-box;
}

.no_01_title {
  position: relative;
  text-align: center;
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1.5px;
  width: fit-content;
  margin: 0 auto;
  padding-left: 5px;
}

.no_01_title::before {
  content: "";
  width: 70px;
  height: 140px;
  background: url(../img/no_01_title_left.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 5px);
  left: -65px;
  transform: translateY(-50%);
}

.no_01_title::after {
  content: "";
  width: 70px;
  height: 140px;
  background: url(../img/no_01_title_right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 5px);
  right: -60px;
  transform: translateY(-50%);
}

.no_01_title_span01 {
  display: block;
  font-size: 23px;
}

.no_01_title_span01_span {
  font-size: 27px;
}

.no_01_title_span02 {
  display: block;
  font-size: 100px;
  font-style: italic;
  letter-spacing: 4px;
}

.no_01_title_span03 {
  font-size: 125px;
  transform: translateX(-15px);
  display: inline-block;
}

.no_01_text {
  padding: 15px 20px 20px;
  font-size: 11px;
  color: #fff;
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 1.8px;
}

@media screen and (min-width: 1100px) {
  .problem_ttl {
    margin-bottom: 40px;
  }
  .problem_ttl_span01 {
    font-size: 24px;
  }
  .problem_ttl_span02 {
    font-size: 92px;
  }
  .problem_ttl_span03 {
    font-size: 123px;
  }
  .problem_ttl_span04 {
    font-size: 87px;
  }
  .problem_ttl_span05 {
    font-size: 66px;
  }
  .problem_ttl_span02::after {
    width: 48px;
    height: 57px;
    top: -50px;
    right: -30px;
  }
  .problem_item_uv {
    bottom: 13px;
  }
  .problem_item_uv_ttl {
    font-size: 32px;
    padding: 10px 0;
  }
  .problem_item_uv_ttl::before {
    width: 85px;
    height: 96px;
    top: -43px;
    left: 15px;
  }
  .problem_item_uv_text {
    font-size: 20px;
    padding: 10px;
  }
  .problem_item:nth-child(2) .problem_item_uv_ttl::before {
    top: -39px;
  }
  .problem_item:nth-child(3) .problem_item_uv_ttl::before {
    top: -36px;
  }
  .problem_item:nth-child(4) .problem_item_uv_ttl::before {
    top: -44px;
    width: 100%;
  }
  .problem_item:nth-child(5) .problem_item_uv_ttl::before {
    top: -38px;
  }
  .decoration_area {
    padding: 40px 0;
    font-size: 42px;
  }
  .no_01 {
    margin-top: -60px;
    padding-top: 110px;
  }
  .no_01_title {
    font-size: 40px;
    letter-spacing: 1.5px;
    line-height: 1.3;
  }
  .no_01_title::before {
    width: 100px;
    height: 200px;
    top: calc(50% + 5px);
    left: -110px;
  }
  .no_01_title::after {
    width: 100px;
    height: 200px;
    top: calc(50% + 5px);
    right: -105px;
  }
  .no_01_title_span01 {
    font-size: 40px;
  }
  .no_01_title_span01_span {
    font-size: 48px;
  }
  .no_01_title_span02 {
    font-size: 130px;
    letter-spacing: 4px;
    transform: translateY(-30px);
  }
  .no_01_title_span03 {
    font-size: 160px;
    transform: translateX(-20px);
  }
  .no_01_text {
    padding: 0px 25px 25px;
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 2.0px;
  }
}

/* cta02 */
.cta02 {
  padding-top: 20px;
  padding-bottom: 20px;
  background: #214e7c;
}

.cta02_btn_area {
  margin-bottom: 15px;
}

.cta02_btn_text {
  position: relative;
  color: #fff;
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  letter-spacing: 1px;
  width: fit-content;
  margin: 0 auto 10px;
}

.cta02_btn_text::before {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/cta_bubble_obj.svg)no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: -30px;
  transform: translateY(-50%);
}

.cta02_btn_text::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url(../img/cta_bubble_obj.svg)no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%)rotateY(180deg);
}

.cta02_btn_link01 {
  position: relative;
  text-align: center;
  color: #fff;
  font-weight: 600;
  font-size: 22px;
  background: #32c14a;
  border: 2px solid #fff;
  border-radius: 40px;
  padding: 15px 0;
  width: 98%;
  margin: 0 auto;
}

.cta02_btn_link01::before {
  content: "";
  width: 22px;
  height: 22px;
  background: url(../img/btn_arw.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
}

.cta02_btn_link01_span {
  display: block;
  font-size: 14px;
  padding-top: 8px;
}

@media screen and (min-width: 1100px) {
  .cta02 {
    padding-top: 30px;
  }
  .cta02_btn_area {
    margin-bottom: 20px;
  }
  .cta02_btn_text {
    font-size: 22px;
    letter-spacing: 1px;
    margin: 0 auto 15px;
  }  
  .cta02_btn_link01 {
    font-size: 32px;
    border-radius: 50px;
  }
  .cta02_btn_link01::before {
    width: 32px;
    height: 32px;
    right: 24px;
  }
  .cta02_btn_link01_span {
    font-size: 20px;
    padding-top: 8px;
  }
}

/* about */
.about {
  padding-top: 40px;
  padding-bottom: 40px;
}

.about_ttl {
  position: relative;
  margin-bottom: 50px;
}

.about_ttl::before {
  content: "";
  height: 115%;
  aspect-ratio: 1 / 2;
  background: url(../img/about_ttl_bg.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% - 10px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.about_ttl_text {
  text-align: center;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 15px;
}

.about_ttl_text_span01 {
  font-size: 43px;
  padding-top: 15px;
  display: block;
}

.about_ttl_text_span02 {
  font-size: 48px;
}

.about_ttl_text02 {
  font-size: 17px;
  font-weight: 600;
  border-top: 0.5px solid #214e7c;
  border-bottom: 0.5px solid #214e7c;
  padding: 10px 0;
  text-align: center;
  letter-spacing: 1.5px;
}

.about_difference {
  background: #fae4e6;
  border-radius: 2.5px;
  padding: 20px 10px;
  margin-bottom: 25px;
}

.about_difference_ttl {
  text-align: center;
  margin-top: -40px;
}

.about_difference_ttl_text {
  background: #e9545e;
  width: fit-content;
  margin: 0 auto 22.5px;
  padding: 15px 20px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 1.5px;
  color: #fff;
  border-radius: 23.5px;
  position: relative;
}

.about_difference_ttl_text::before {
  content: "";
  width: 20px;
  height: 15px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #e9545e;
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translateX(-50%);
}

.about_difference_ttl_text02 {
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 22.5px;
  line-height: 1.5;
}

.about_difference_description {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 7.5px;
}

.about_difference_description_item {
  background: #fff;
  border-radius: 2.5px;
  width: calc((100% - 7.5px) / 2);
}

.about_difference_description_item_ttl {
  background: #597fa6;
  font-size: 18.5px;
  color: #fff;
  font-weight: 600;
  text-align: center;
  padding: 10px;
  border-radius: 2.5px 2.5px 0 0;
  letter-spacing: 1.5px;
  margin-bottom: 10px;
}

.about_difference_description_item:nth-child(2) .about_difference_description_item_ttl {
  background: #e9545e;
}

.about_difference_description_item_img {
  max-width: 117px;
  margin: 0 auto 10px;
}

.about_difference_description_item:nth-child(2) .about_difference_description_item_img {
  max-width: 134px;
}

.about_difference_description_item_text {
  text-align: center;
  line-height: 1.2;
  font-size: 11.5px;
  font-weight: 600;
  padding: 0 10px;
  position: relative;
  height: 27.59px;
  width: fit-content;
  margin: 0 auto 10px;
}

.about_difference_description_item:nth-child(1) .about_difference_description_item_text::before {
  content: "";
  height: 14px;
  width: 1px;
  background: #141414;
  position: absolute;
  top: calc(50% + 6px);
  left: 4px;
  transform: translateY(-50%)rotate(-20deg);
}

.about_difference_description_item:nth-child(1) .about_difference_description_item_text::after {
  content: "";
  height: 14px;
  width: 1px;
  background: #141414;
  position: absolute;
  top: calc(50% + 6px);
  right: 4px;
  transform: translateY(-50%)rotate(20deg);
}

.about_difference_description_item:nth-child(2) .about_difference_description_item_text {
  padding: 15px 10px 0;
  margin-bottom: 5px;
  height: auto;
}

.about_difference_description_item_text02 {
  padding: 0 10px;
  text-align: center;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
  color: #4e7aa8;
}

.about_difference_description_item:nth-child(2) .about_difference_description_item_text02 {
  color: #e9545e;
}

.about_difference_description_item_text02_span {
  font-size: 28px;
  padding: 0 2px;
}

.about_difference_description_item_text02_span02 {
  color: #141414;
  display: inline-block;
  padding-bottom: 4px;
}

.about_simulation {
  background: #eef6f5;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-radius: 2.5px;
}

.about_simulation_ttl {
  text-align: center;
  margin-bottom: 20px;
}

.about_simulation_ttl_text {
  background: #3abba7;
  color: #fff;
  font-weight: 600;
  padding: 22.5px 0;
  font-size: 22.5px;
  letter-spacing: 1.5px;
  border-radius: 2.5px 2.5px 0 0;
}

.about_simulation_ttl_text02 {
  padding-top: 20px;
  font-size: 18.5px;
  font-weight: 600;
  line-height: 1.5;
}

.about_simulation_tab-list {
  display: flex;
  gap: 5px;
}

.about_simulation_tab_item {
  border-radius: 5px 5px 0 0;
  background-color: #aee4dc;
  cursor: pointer;
  color: #fff;
  width: calc((100% - 10px) / 3);
  padding: 10px 0;
  text-align: center;
  font-size: 20px;
  font-weight: 600;
}

.about_simulation_tab_item_span {
  font-size: 24px;
  font-weight: 400;
}

.about_simulation_tab_item_span02 {
  font-size: 14px;
  padding-left: 2px;
}

.about_simulation_tab_content {
  border: solid 2px #3abba7;
  background-image: url(../img/about_simulation_tab_content_bg.svg);
  background-color: #FFF;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 0 0 5px 5px;
}

.about_simulation_tab_panel {
  display: none;
}

.about_simulation_tab_item.active {
  background-color: #3abba7;
  transform: scaleY(1.1) translateY(-2px);
}

.about_simulation_tab_panel.active {
  display: block;
  padding: 20px 15px;
}
.about_simulation_tab_panel_ttl {
  font-size: 15px;
  text-align: center;
  line-height: 1.7;
  background: #3abba7;
  color: #fff;
  font-weight: 600;
  padding: 10px 0;
  letter-spacing: 1.2px;
  width: 100%;
  margin: 0 auto 40px;
  position: relative;
}

.about_simulation_tab_panel_ttl_span {
  color: #fff839;
}

.about_simulation_tab_panel_img {
  width: 95%;
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}

.about_simulation_tab_panel_description_txt {
  line-height: 1.4;
  font-size: 11px;
}

.about_simulation_description_moreover {
  padding-top: 20px;  
}

.about_simulation_description_moreover_sub_text {
  position: relative;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  background: #3abba7;
  border-radius: 20px;
  padding: 10px 20px;
  width: fit-content;
  margin: 0 auto 20px;
}

.about_simulation_description_moreover_sub_text::before {
  content: "";
  width: 12px;
  height: 10px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #3abba7;
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
}

.about_simulation_description_moreover_text {
  font-size: 22px;
  text-align: center;
  line-height: 1.5;
  font-weight: 600;
}

.about_simulation_description_moreover_text_span {
  display: block;
  font-size: 42px;
}

.about_nisa_point {
  background: #cdf4ff;
  padding-bottom: 20px;
  margin-bottom: 25px;
  border-radius: 2.5px;
}

.about_nisa_point_ttl {
  text-align: center;
  margin-bottom: 40px;
}

.about_nisa_point_ttl_text {
  background: #44bde1;
  color: #fff;
  font-weight: 600;
  padding: 23px 0;
  font-size: 23px;
  letter-spacing: 1.5px;
  border-radius: 2.5px 2.5px 0 0;
}

.about_nisa_point_ttl_text_span02 {
  font-size: 27px;
}

.about_nisa_point_ttl_text_span02 {
  font-size: 30px;
}

.about_nisa_point_description {
  display: flex;
  flex-wrap: wrap;
  padding-left: 10px;
  padding-right: 10px;
  column-gap: 7.5px;
  align-items: stretch;
  justify-content: center;
  row-gap: 25px;
}

.about_nisa_point_description_item {
  background: #fff;
  width: calc((100% - 7.5px) / 2);
  border-radius: 5px;
  padding: 20px 0;
  position: relative;
}

.about_nisa_point_description_item::before {
  content: "";
  width: 40px;
  height: 40px;
  background: url(../img/about_nisa_no01.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.about_nisa_point_description_item:nth-child(2)::before {
  background: url(../img/about_nisa_no02.png) no-repeat;
  background-size: contain;
}

.about_nisa_point_description_item:nth-child(3)::before {
  background: url(../img/about_nisa_no03.png) no-repeat;
  background-size: contain;
}

.about_nisa_point_description_item:nth-child(4)::before {
  background: url(../img/about_nisa_no04.png) no-repeat;
  background-size: contain;
}

.about_nisa_point_description_item_ttl {
  text-align: center;
  line-height: 1.5;
  margin-bottom: 15px;
  font-size: 11px;
  font-weight: 600;
}

.about_nisa_point_description_item_ttl_span {
  font-size: 19px;
  color: #11a7d3;
}

.about_nisa_point_description_item_img_img {
  max-width: 57px;
  margin: 0 auto;
}

.about_nisa_point_description_item:nth-child(2) .about_nisa_point_description_item_img_img {
  max-width: 102.5px;
  padding-top: 10px;
}

.about_nisa_point_description_item:nth-child(3) .about_nisa_point_description_item_img_img {
  max-width: 44.5px;
}

.about_table {
  margin-bottom: 40px;
}

.about_table_item_box {
  border: solid 2px #3abba7;
  margin-bottom: 15px;
}

.about_table_item_ttl {
  background: #3abba7;
  color: #fff;
  padding: 15px 20px;
  text-align: center;
  font-weight: 600;
  font-size: 18px;
}

.about_table_item_description {
  display: flex;
  position: relative;
}

.about_table_item_description_text_area:nth-child(1) {
  width: 50%;
  height: 63px;
  background: #f3fffd;
}

.about_table_item_description_text_area:nth-child(2) {
  width: 50%;
  height: 63px;
  background: #e2f9ff;
}

.about_table_item_description_text {
  font-size: 15px;
  padding: 24px 0;
  font-weight: 600;
  text-align: center;
}

.about_table_item_description_text.font_color_orange {
  font-size: 23px;
  font-weight: 600;
  letter-spacing: 1.0px;
}

.about_table_item_description_text_span {
  display: inline-block;
  font-size: 8px;
  transform: translateY(-6px);
}

.about_table_item:nth-child(2) .about_table_item_description_text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.about_table_item_description_text_area:last-child {
  border-left: solid 3px #3abba7;
}

.about_table_item:nth-child(4) .about_table_item_description .about_table_item_description_text {
  position: absolute;
  top: 25%;
  left: 50%;
  transform: translate(-50%, -25%);
}

.about_table_item:nth-child(4) .about_table_item_description .about_table_item_description_text_area:last-child {
  border-top: solid 3px #3abba7;
}

.about_table_item:nth-child(4) .about_table_item_description .about_table_item_description_text_area:last-child .about_table_item_description_text {
  position: relative;
}

.about_table_item:last-child .about_table_item_description_text_area {
  height: 110px;
  line-height: 1.4;
}

.about_table_note {
  font-size: 11px;
  line-height: 1.5;
}

.about_overview {
  position: relative;
  text-align: center;
}

.about_overview::before {
  content: "";
  width: 55px;
  height: 55px;
  background: url(../img/kirakira_left.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: -20px;
  left: -5px;
}

.about_overview::after {
  content: "";
  width: 45px;
  height: 45px;
  background: url(../img/kirakira_right.svg) no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -10px;
  right: -5px;
}

.about_overview_sub_ttl {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
}

.about_overview_sub_ttl_span {
  font-size: 31.2px;
  padding: 0 5px;
  -webkit-text-emphasis: filled;
  text-emphasis: filled;
  color: #22b1db;
}

.about_overview_ttl {
  font-size: 43px;
  font-weight: 600;
  line-height: 1.4;
}

@media screen and (min-width: 1100px) {
  .about {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .about_ttl {
    margin-bottom: 70px;
  }
  .about_ttl::before {
    height: 120%;
    top: calc(50% - 20px);
  }
  .about_ttl_text {
    font-size: 52px;
  }
  .about_ttl_text_span01 {
    font-size: 65px;
  }
  .about_ttl_text_span02 {
    font-size: 73px;
  }
  .about_ttl_text02 {
    font-size: 24px;
    padding: 15px 0;
  }
  .about_difference {
    padding: 20px 15px;
    margin-bottom: 30px;
  }
  .about_difference_ttl_text {
    font-size: 32px;
    border-radius: 36px;
    padding: 15px 20px;
  }
  .about_difference_ttl_text02 {
    font-size: 38px;
    letter-spacing: 1.5px;
    margin-bottom: 24px;
    line-height: 1.5;
  }
  .about_difference_description {
    gap: 15px;
  }
  .about_difference_description_item {
    border-radius: 5px;
    width: calc((100% - 15px) / 2);
  }
  .about_difference_description_item_ttl {
    font-size: 28px;
    padding: 10px;
    margin-bottom: 10px;
  }
  .about_difference_description_item_img {
    max-width: 175px;
  }
  .about_difference_description_item:nth-child(2) .about_difference_description_item_img {
    max-width: 204px;
  }
  .about_difference_description_item_text {
    font-size: 18px;
    padding: 0 10px;
    margin-bottom: 10px;
    height: 45px;
  }
  .about_difference_description_item_text02 {
    padding: 0 10px;
    font-size: 24px;
    line-height: 1.4;
    margin-bottom: 10px;
  }
  .about_difference_description_item_text02_span {
    font-size: 45px;
    padding: 0 3px;
  }
  .about_difference_description_item:nth-child(1) .about_difference_description_item_text::before {
    height: 18px;
    width: 1px;
    top: calc(50% + 10px);
    left: 0;
    transform: translateY(-50%)rotate(-20deg);
  }
  .about_difference_description_item:nth-child(1) .about_difference_description_item_text::after {
    height: 18px;
    width: 1px;
    top: calc(50% + 10px);
    right: 0;
    transform: translateY(-50%)rotate(20deg);
  }
  .about_simulation {
    margin-bottom: 35px;
  }
  .about_simulation_ttl {
    margin-bottom: 30px;
  }
  .about_simulation_ttl_text {
    padding: 24px 0;
    font-size: 32px;
    letter-spacing: 1.5px;
    border-radius: 5px 5px 0 0;
  }
  .about_simulation_ttl_text02 {
    padding-top: 20px;
    font-size: 28px;
    line-height: 1.5;
  }
  .about_simulation_tab_item {
    border-radius: 5px 5px 0 0;
    padding: 10px 0;
    font-size: 24px;
  }
  .about_simulation_tab_item_span {
    font-size: 32px;
    padding: 0 2px;
  }
  .about_simulation_tab_item_span02 {
    font-size: 16px;
  }
  .about_simulation_tab_panel_ttl {
    font-size: 22px;
    line-height: 1.7;
    width: 97%;
  }
  .about_simulation_tab_panel_img {
    width: 98%;
    margin-bottom: 15px;
  }
  .about_simulation_tab_panel_description_txt {
    line-height: 1.4;
    font-size: 14px;
    letter-spacing: 1.2px;
  }
  .about_simulation_description_moreover {
    padding-top: 30px;
  }
  .about_simulation_description_moreover_sub_text {
    font-size: 24px;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0 auto 25px;
  }
  .about_simulation_description_moreover_sub_text::before {
    width: 15px;
    height: 12px;
    bottom: -11px;
  }
  .about_simulation_description_moreover_text {
    font-size: 32px;
    line-height: 1.5;
  }
  .about_simulation_description_moreover_text_span {
    font-size: 60px;
  }
  .about_nisa_point {
    margin-bottom: 35px;
  }
  .about_nisa_point_ttl_text {
    padding: 23px 0;
    font-size: 38px;
    letter-spacing: 1.5px;
    border-radius: 5px 5px 0 0;
  }
  .about_nisa_point_ttl_text_span02 {
    font-size: 48px;
  }
  .about_nisa_point_description {
    padding-left: 15px;
    padding-right: 15px;
    column-gap: 15px;
    row-gap: 30px;
  }
  .about_nisa_point_description_item {
    width: calc((100% - 15px) / 2);
    border-radius: 5px;
    padding: 28px 0 15px;
  }
  .about_nisa_point_description_item::before {
    width: 50px;
    height: 50px;
    top: -20px;
    left: 50%;
  }
  .about_nisa_point_description_item_ttl {
    line-height: 1.5;
    margin-bottom: 15px;
    font-size: 17px;
  }
  .about_nisa_point_description_item_ttl_span {
    font-size: 28px;
  }
  .about_nisa_point_description_item_img_img {
    max-width: 65px;
  }
  .about_nisa_point_description_item:nth-child(2) .about_nisa_point_description_item_img_img {
    max-width: 135px;
  }
  .about_nisa_point_description_item:nth-child(3) .about_nisa_point_description_item_img_img {
    max-width: 50px;
  }
  .about_table {
    margin-bottom: 50px;
  }
  .about_table_item_ttl {
    padding: 15px 20px;
    font-size: 28px;
  }
  .about_table_item_description_text {
    font-size: 18px;
    padding: 24px 0;
  }
  .about_table_item:nth-child(6) .about_table_item_description_text {
    padding: 17px 0;
  }
  .about_table_item_description_text.font_color_orange {
    font-size: 38px;
    padding: 15px 0;
  }
  .about_table_note {
    font-size: 14px;
    line-height: 1.5;
  }
  .about_overview::before {
    width: 65px;
    height: 65px;
    top: -20px;
    left: -5px;
  }
  .about_overview::after {
    width: 65px;
    height: 65px;
    bottom: -35px;
    right: -5px;
  }
  .about_overview_sub_ttl {
    font-size: 38px;
    font-weight: 600;
    margin-bottom: 20px;
  }
  .about_overview_sub_ttl_span {
    font-size: 48px;
  }
  .about_overview_ttl {
    font-size:70px;
    line-height: 1.3;
  }
}

/* cta03 */
.cta03 {
  background: #214e7c;
}

.cta03_wrapper {
  padding-top: 20px;
  padding-bottom: 20px;
}

.cta03_download_link {
  background: #ebf4ff;
  padding: 10px 15px;
  border-radius: 2.5px;
}

.cta03_download_link_text {
  text-align: center;
  margin-bottom: 10px;
  font-size: 16px;
  font-weight: 600;
  color: #fff;
  position: relative;
}

.cta03_download_link_text::before {
  content: "";
  height: 18px;
  width: 2px;
  background: #fff;
  position: absolute;
  top: calc(50% + 2px);
  left: 0;
  transform: translateY(-50%)rotate(-30deg);
}

.cta03_download_link_text::after {
  content: "";
  height: 18px;
  width: 2px;
  background: #fff;
  position: absolute;
  top: calc(50% + 2px);
  right: 0;
  transform: translateY(-50%)rotate(30deg);
}

.cta03_download_link_text_span{
  font-size: 25px;
  padding: 0 2px;
}

.cta03_download_link_btn_Area {
  display: flex;
  gap: 10px;
}

.cta03_register_link {
  margin-top: 10px;
  background: #ebf4ff;
  padding: 15px 15px;
  border-radius: 7px;
  text-align: center;
  font-size: 17.06px;
  font-weight: 600;
  color: #134476;
}
@media screen and (min-width: 600px) {
  .cta03_download_link_qr {
    display: flex;
    background: #ebf4ff;
    margin-top: 15px;
    border-radius: 5px;
    padding: 0;
    align-items: center;
  }
  .cta03_download_link_qr_link_text {
    flex: 1;
    font-size: 19px;
    font-weight: 600;
    color: #134476;
    letter-spacing: 1.5px;
    line-height: 1.5;
  }
  .cta03_download_link_qr_link {
    font-size: 14px;
    font-weight: 600;
    color: #134476;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 20px;
    width: 100%;
  }
  .cta03_download_link_qr_img {
    max-width: 90px;
  }
}

@media screen and (min-width: 1100px) {
  .cta03_download_link_text {
    font-size: 24px;
    margin: 0 auto 10px;
    width: fit-content;
  }
  .cta03_download_link_text::before {
    height: 30px;
    top: calc(50% + 5px);
    left: -20px;
  }
  .cta03_download_link_text::after {
    height: 30px;
    top: calc(50% + 5px);
    right: -20px;
  }
  .cta03_download_link_text_span {
    font-size: 40px;
    padding: 0 4px;
  }
  .cta03_download_link {
    background: #ebf4ff;
    padding: 25px 20px;
    border-radius: 2.5px;
  }
  .cta03_download_link_btn {
    font-size: 26px;
    font-weight: 600;
    color: #134476;
    letter-spacing: 1.5px;
    position: relative;
  }
  .cta03_download_link_btn::before {
    content: "";
    height: 28px;
    width: 28px;
    background: url(../img/arrow_btn.svg)no-repeat;
    background-size: contain;
    position: absolute;
    top: calc(50% + 1px);
    right: 0;
    transform: translateY(-50%)rotate(-90deg);
  }
  .cta03_download_link_qr {
    display: flex;
    background: #ebf4ff;
    margin-top: 15px;
    border-radius: 5px;
    padding: 0;
    align-items: center;
  }
  .cta03_download_link_qr_link_text {
    flex: 1;
    font-size: 24px;
    font-weight: 600;
    color: #134476;
    letter-spacing: 1.5px;
    line-height: 1.5;
  }
  .cta03_download_link_qr_link {
    font-size: 24px;
    font-weight: 600;
    color: #134476;
    display: flex;
    align-items: center;
    padding: 10px 20px 10px 40px;
    width: 100%;
  }
  .cta03_download_link_qr_img {
    max-width: 90px;
  }
}

/* result */
.result {
  background: #6CD0F3;
  background: linear-gradient(146deg,rgba(108, 208, 243, 1) 0%, rgba(45, 235, 212, 1) 100%);  padding-top: 40px;
  padding-bottom: 40px;
}

.result_ttl {
  margin-bottom: 20px;
}

.result_ttl_text {
  text-align: center;
  margin-bottom: 20px;
}

.result_ttl_text_span01 {
  display: block;
  background: #fff;
  width: fit-content;
  padding: 10px 15px 10px 25px;
  font-size: 24px;
  font-weight: 600;
  color: #22b1db;
  letter-spacing: 1.5px;
  border-radius: 1.3px;
  position: relative;
  margin: 0 auto 25px;
}

.result_ttl_text_span01::before {
  content: "";
  width: 98%;
  height: 40px;
  border: solid 2px #fff;
  position: absolute;
  top: 5px;
  left: 7px;
}

.result_ttl_text_span02 {
  display: block;
  font-size: 60px;
  color: #fdff39;
  font-weight: 600;
  letter-spacing: 2px;
  padding-left: 20px;
  margin-bottom: 20px;
}

.result_ttl_text_span03 {
  display: block;
  font-size: 25px;
  line-height: 1.3;
  font-weight: 600;
  color: #fff;
}

.result_mockup {
  position: relative;
  max-width: 175px;
  margin: 0 auto;
}

.result_mockup::before {
  content: "";
  width: 129px;
  height: 129px;
  background: url(../img/result_img_icon.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: calc(50% + 40px);
  right: -90px;
  transform: translateY(-50%);
}

.result_list_item_box {
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 25px;
  background: #fff;
  padding: 25px 15px;
  border-radius: 2.5px;
}

.result_list_item {
  position: relative;
  width: 100%;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.7;
  padding-left: 35px;
  letter-spacing: 1.0px;
}

.result_list_item::before {
  content: "";
  width: 27px;
  height: 27px;
  background: url(../img/check.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.result_list_item_span {
  font-size: 18px;
  color: #009ecd;
}

.result_list_item_span_note {
  font-size: 10px;
  color: #141414;
  display: inline-block;
  transform: translateY(-8px);
}

.result_list_note {
  font-size: 11px;
  letter-spacing: 0.8px;
  color: #fff;
  line-height: 1.5;
}

@media screen and (min-width: 1100px) {
  .result {
    padding-top: 60px;
  }
  .result_ttl {
    margin-bottom: 30px;
  }
  .result_ttl_text {
    margin-bottom: 30px;
  }
  .result_ttl_text_span01 {
    padding: 10px 15px 10px 25px;
    font-size: 32px;
    letter-spacing: 1.5px;
    border-radius: 2.5px;
    margin: 0 auto 25px;
  }
  .result_ttl_text_span01::before {
    width: 98%;
    height: 49px;
    top: 5px;
    left: 9px;
  }
  .result_ttl_text_span02 {
    font-size: 85px;
    letter-spacing: 2px;
    padding-left: 40px;
    margin-bottom: 25px;
  }
  .result_ttl_text_span03 {
    font-size: 38px;
    line-height: 1.3;
  }
  .result_mockup {
    max-width: 235px;
  }
  .result_mockup::before {
    width: 190px;
    height: 190px;
    top: calc(50% + 40px);
    right: -125px;
  }
  .result_list_item_box {
    width: 95%;
    margin: 0 auto 15px;
    display: flex;
    gap: 20px;
    padding: 40px 30px;
    border-radius: 5px;
    box-sizing: border-box;
  }
  .result_list_item {
    width: 100%;
    font-size: 24px;
    line-height: 1.8;
    padding-left: 50px;
    letter-spacing: 1.0px;
  }
  .result_list_item::before {
    width: 30px;
    height: 30px;
  }
  .result_list_item_span {
    font-size: 26px;
  }
  .result_list_note {
    width: 95%;
    margin: 0 auto;
    font-size: 14px;
    letter-spacing: 0.8px;
    line-height: 1.7;
  }
}

/* flow */
.flow {
  padding-top: 40px;
}

.flow_step {
  text-align: center;
}

.flow_step_ttl {
  font-size: 27px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.3;
}

.flow_step_ttl_span {
  font-size: 44px;
  color: #22b1db;
  display: block;
  padding-left: 5px;
}

.flow_step_ttl_span02 {
  font-size: 55px;
  padding: 0 1px;
}

.flow_step_movie {
  width: 100%;
  aspect-ratio: 688 / 320;
  background: #dddddd;
  margin-bottom: 20px;
}

.flow_step_movie iframe {
  width: 100%;
  aspect-ratio: 688 / 320;
}

.flow_step_description {
  margin-bottom: 40px;
}

.flow_step_description_item_box {
  display: flex;
  flex-wrap: wrap;
  gap: 35px;
  justify-content: center;
  margin-bottom: 20px;
  position: relative;
}

.flow_step_description_item_box::before {
  content: "";
  width: 70px;
  height: 200px;
  background: url(../img/step_complete.png)no-repeat;
  background-size: contain;
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 1;
}

.flow_step_description_item {
  width: 100%;
  padding: 15px 25px;
  background: #ddf8ff;
  border-radius: 5px;
  gap: 10px;
  display: flex;
  align-items: center;
  position: relative;
}

.flow_step_description_item::before {
  content: "";
  width: 20px;
  height: 15px;
  background: url(../img/step_arrow01.svg)no-repeat;
  background-size: contain;
  position: absolute;
  bottom: -27px;
  left: 50%;
  transform: translateX(-50%);
}

.flow_step_description_item:nth-child(2) {
  background: #d6fdff;
}

.flow_step_description_item:nth-child(2)::before {
  background: url(../img/step_arrow02.svg)no-repeat;
  background-size: contain;
}

.flow_step_description_item:nth-child(3) {
  background: #dffdf8;
}

.flow_step_description_item:nth-child(3)::before {
  display: none;
}

.flow_step_description_item_icon {
  max-width: 60px;
}

.flow_step_description_item_text_step {
  max-width: 64px;
  margin-bottom: 7px;
}

.flow_step_description_item_text_ttl {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
}

.flow_step_description_item_text_ttl_span {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
}

.flow_step_description_note {
  font-size: 10px;
  text-align: left;
  margin-bottom: 10px;
  line-height: 1.2;
  letter-spacing: 1.5px;
}

.flow_document {
  background: #ddf8ff;
  padding-top: 40px;
  padding-bottom: 40px;
}

.flow_document_ttl {
  font-size: 25px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.flow_document_certificate {
  margin-bottom: 25px;
}

.flow_document_certificate_my_number {
  margin-bottom: 25px;
}

.flow_document_certificate_my_number_img {
  max-width: 180px;
  margin: 0 auto 15px;
}

.flow_document_certificate_my_number_txt {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: #44bde1;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  padding: 10px 30px;
  border-radius: 20px;
}

.flow_document_certificate_txt {
  text-align: center;
  margin-bottom: 25px;
  font-weight: 600;
  font-size: 20px;
}

.flow_document_certificate_license {
  margin-bottom: 25px;
}

.flow_document_certificate_license_img {
  max-width: 250px;
  margin: 0 auto 15px;
}

.flow_document_certificate_license_txt {
  text-align: center;
  font-size: 16px;
  font-weight: 600;
  background: #44bde1;
  width: fit-content;
  margin: 0 auto;
  color: #fff;
  padding: 10px 30px;
  border-radius: 20px;
}

.flow_document_certificate_note {
  font-size: 11px;
  letter-spacing: 0.3px;
  line-height: 1.3;
}

.flow_document_conditions {
  background: #fff;
  border-radius: 5px;
  padding: 25px;
}

.flow_document_conditions_ttl {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
}

.flow_document_conditions_list_box {
  margin-bottom: 5px;
}

.flow_document_conditions_list_item {
  margin-bottom: 5px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.2;
}

.flow_document_conditions_note {
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
}

.flow_document_conditions_note_txt {
  margin-bottom: 5px;
}

.detail_description_info {
  background: #eff9fb;
  border-radius: 5px;
  padding: 25px;
}

.detail_description_info_ttl {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  border-bottom: #141414 solid 2px;
  padding-bottom: 10px;
}

.detail_description_info_note {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
}

.detail_description_info_note_txt {
  margin-bottom: 5px;
}

.contact-img {
    width: 55%;
    height: 30px;
    margin: 0 auto;
    padding-bottom: 30px;
}

.contact-img img{
    width: 20%;
    height: 30px;
    margin: 0 auto;
}

.contact-img a {
    display: -webkit-box;
    display: flex;
    -webkit-box-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    align-items: center;
    gap: 0px;
}

.contact-img span {
    font-size: 30px;
}

.detail_description_info_list{
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
}

@media screen and (max-width: 1100px) {
  .contact-img {
    width: 80%;
  }

  .detail_description_info{
    margin: 40px 0px;
    text-align: center;
  }
}

@media screen and (min-width: 1100px) {
  .flow {
    padding-top: 60px;
  }
  .flow_step_ttl {
    font-size: 42px;
    margin-bottom: 30px;
  }
  .flow_step_ttl_span {
    font-size: 60px;
    padding-left: 5px;
  }
  .flow_step_ttl_span02 {
    font-size: 80px;
    padding: 0 2px;
  }
  .flow_step_description {
    margin-bottom: 60px;
  }
  .flow_step_description_item_box {
    gap: 45px;
  }
  .flow_step_description_item_box::before {
    width: 90px;
    height: 270px;
    top: 5px;
    right: 10px;
  }
  .flow_step_description_item {
    padding: 20px 40px;
    border-radius: 5px;
    gap: 30px;
  }
  .flow_step_description_item::before {
    width: 35px;
    height: 20px;
    bottom: -35px;
  }
  .flow_step_description_item_icon {
    max-width: 75px;
  }
  .flow_step_description_item_text_step {
    max-width: 80px;
    margin-bottom: 12px;
  }
  .flow_step_description_item_text_ttl {
    font-size: 26px;
  }
  .flow_step_description_item_text_ttl_span {
    font-size: 14px;
  }
  .flow_document {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .flow_document_ttl {
    font-size: 40px;
    margin-bottom: 40px;
  }
  .flow_document_certificate {
    margin-bottom: 35px;
  }
  .flow_document_certificate_my_number {
    margin-bottom: 30px;
  }
  .flow_document_certificate_my_number_txt {
    font-size: 20px;
    margin: 0 auto;
    padding: 10px 30px;
    border-radius: 20px;
  }
  .flow_document_certificate_txt {
    margin-bottom: 30px;
    font-size: 28px;
  }
  .flow_document_certificate_license_txt {
    font-size: 20px;
    padding: 10px 30px;
    border-radius: 20px;
  }
  .flow_document_certificate_note {
    font-size: 14px;
  }
  .flow_document_conditions {
    border-radius: 5px;
    padding: 30px;
  }
  .flow_document_conditions_ttl {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .flow_document_conditions_list_box {
    margin-bottom: 15px;
  }
  .flow_document_conditions_list_item {
    margin-bottom: 10px;
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1.2px;
  }
  .flow_document_conditions_note {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 1.2px;
  }
   .detail_description_info {
    border-radius: 5px;
    padding: 20px;
    margin: 40px 0px;
  }
  .detail_description_info_ttl {
    font-size: 26px;
    margin-bottom: 30px;
  }
  .detail_description_info_note {
    font-size: 18px;
    line-height: 1.4;
    letter-spacing: 1.2px;
    text-align: center;
  }
  
}

/* campaign */
.campaign {
  padding-bottom: 40px;
}

.campaign_ttl {
  background: url(../img/campaign_main.jpg) no-repeat;
  background-size: contain;
  width: 100%;
  aspect-ratio: 750 / 735;
  position: relative;
}

.campaign_ttl_topText {
  text-align: center;
  width: 100%;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  line-height: 1.4;
  position: absolute;
  top: 13px;
  left: 50%;
  transform: translateX(-50%);
}

.campaign_ttl_topText_span {
  display: block;
  font-size: 24px;
  position: relative;
}

.campaign_ttl_topText_span::before {
  content: "";
  width: 2px;
  height: 26px;
  background: #fff;
  position: absolute;
  top: 50%;
  left: calc(50% - 60px);
  transform: translateY(-50%) rotate(-30deg);
}

.campaign_ttl_topText_span::after {
  content: "";
  width: 2px;
  height: 26px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: calc(50% - 60px);
  transform: translateY(-50%) rotate(30deg);
}

.campaign_ttl_middleTxt {
  position: absolute;
  top: calc(50% + 30px);
  left: 50%;
  transform: translate(-50%, -50%);
}

.campaign_ttl_middleTxt_img {
  min-width: 325px;
}

.campaign_ttl_bottomText {
  display: flex;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-weight: 600;
  gap: 10px;
  align-items: center;
  background: #fff;
  width: 100%;
  max-width: 325px;
  border-radius: 5px;
  border: solid 2px #f25274;
  letter-spacing: 1.5px;
}

.campaign_ttl_bottomText_term {
  font-size: 17px;
  background: #f25274;
  padding: 10px 15px;
  border-radius: 3px 0 0 3px;
  color: #fff;
}

.campaign_ttl_bottomText_date {
  font-size: 15px;
}

.campaign_fair {
  position: relative;
}

.campaign_fair_link {
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  color: #f50001;
  padding: 15px;
  text-decoration: underline;
  text-underline-offset: 2px;
  position: relative;
}

.campaign_fair_link::before {
  content: "";
  width: 8px;
  height: 8px;
  border-left: solid 2px #f50001;
  border-bottom: solid 2px #f50001;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translateY(-50%)rotate(-135deg);
}

.campaign_description {
  padding-top: 30px;
  background: #ddf8ff;
}

.campaign_program {
  background: #fff;
  border: solid 1px #ffcc9a;
  border-radius: 5px;
  margin-bottom: 20px;
  margin-left: 15px;
  margin-right: 15px;
}

.campaign_program_ttl {
  margin-top: -16px;
}

.campaign_program_ttl_img {
  width: 100%;
  margin: 0 auto;
}

.campaign_program_contents {
  padding: 25px 5px;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}

.campaign_program_contents_item {
  width: 100%;
  box-sizing: border-box;
  position: relative;
}

.campaign_program_contents_item:nth-child(1)::before {
  content: "";
  width: 20px;
  height: 2px;
  background: #000000;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
}

.campaign_program_contents_item:nth-child(1)::after {
  content: "";
  width: 20px;
  height: 2px;
  background: #000000;
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%)rotate(90deg);
}

.campaign_program_contents_item_txt {
  background: #ffcc9a;
  padding: 10px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 10px;
  letter-spacing: 1.4px;
}

.campaign_program_contents_item_img {
  width: 85%;
  margin: 0 auto;
}

.campaign_benefit {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 40px;
}

.campaign_conditions {
  margin-bottom: 40px;
}
.campaign_conditions_text {
  font-size: 11px;
  line-height: 1.4;
}

.campaign_gift {
  background: #fff;
}

.campaign_gift_wrap {
  padding-top: 40px;
}

.campaign_gift_subText {
  background: #f25274;
  padding: 10px 30px;
  border-radius: 20px;
  width: fit-content;
  margin: 0 auto;
  position: relative;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  position: relative;
}

.campaign_gift_subText::before {
  content: "";
  width: 18px;
  height: 15px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
  background: #f25274;
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
}

.campaign_gift_ttl {
  text-align: center;
  line-height: 1.5;
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 20px;
}

.campaign_gift_ttl_span01 {
  display: inline-block;
}

.campaign_gift_ttl_span_img {
  max-width: 85px;
  transform: translateY(2px);
  padding: 0 4px;
}

.campaign_gift_ttl_span02 {
  display: block;
  font-size: 26px;
}

.campaign_gift_description {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.campaign_gift_description_item {
  background: #dffffa;
  aspect-ratio: 316 / 262;
  padding-bottom: 20px;
  border-radius: 5px;
}

.campaign_gift_description_item:nth-child(1) {
  width: 100%;
  aspect-ratio: auto;
  position: relative;
}

.campaign_gift_description_item:nth-child(1)::before {
  content: "";
  width: 98vw;
  height: auto;
  aspect-ratio: 676 / 269;
  background: url(../img/campaign_gift_description_item_img.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: 68%;
  left: calc(0% - 10px);
  transform: translateY(-50%);
}

.campaign_gift_description_item:nth-child(2),
.campaign_gift_description_item:nth-child(3) {
  width: calc((100% - 10px) / 2);
}

.campaign_gift_description_item_img {
  width: 80%;
  margin: 0 auto;
  padding-top: 20px;
}

.campaign_gift_description_item:nth-child(1) .campaign_gift_description_item_img {
  margin-left: 20px;
}

.campaign_gift_description_item:nth-child(2) .campaign_gift_description_item_img {
  aspect-ratio: 250 / 108;
}
.campaign_gift_description_item:nth-child(3) .campaign_gift_description_item_img {
  aspect-ratio: 242 / 75;
  margin-top: 11px;
  margin-bottom: 6px;
}

.campaign_gift_description_link {
  background: #fae4e6;
  width: 100vw;
  margin: 5px calc(50% - 50vw) 0;
}

.campaign_gift_description_link_text {
  text-decoration: underline;
  text-underline-offset: 2px;
  color: #f50001;
  font-weight: 600;
  font-size: 12px;
  position: relative;
  cursor: pointer;
  padding: 15px;
  text-align: center;
}

.campaign_gift_description_link_text::before {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid #f50001;
  border-right: 2px solid #f50001;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translate(-50%, -50%) rotate(45deg);
}

.campaign_gift_description_note {
  width: 100%;
  font-size: 11px;
  line-height: 1.4;
}

.campaign_gift_description_item_ttl {
  padding: 10px 0;
  text-align: center;
  background: #3abba7;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 5px 5px 0 0;
}

.campaign_gift_description_item_ttl_span01 {
  color: #fff95e;
}

.campaign_gift_description_item_ttl_span02 {
  font-size: 30px;
  font-weight: 400;
}

.campaign_gift_description_item_img {
  width: 80%;
  margin: 0 auto;
  padding-top: 20px;
}
@media screen and (min-width: 600px) {
  .campaign_gift_description_item:nth-child(1)::before {
    width: 110%;
    left: calc(0% - 16px);
  }
}
@media screen and (min-width: 1100px) {
  .campaign_ttl_topText {
    font-size: 42px;
    line-height: 1.5;
    top: 15px;
  }
  .campaign_ttl_topText_span {
    font-size: 36px;
  }
  .campaign_ttl_topText_span::before {
    height: 34px;
    left: calc(50% - 80px);
  }
  .campaign_ttl_topText_span::after {
    height: 34px;
    right: calc(50% - 80px);
  }
  .campaign_ttl_middleTxt_img {
    min-width: 455px;
  }
  .campaign_ttl_bottomText {
    bottom: 17px;
    gap: 20px;
    max-width: 490px;
    border-radius: 5px;
    letter-spacing: 1.5px;
  }
  .campaign_ttl_bottomText_term {
    font-size: 24px;
    padding: 10px 20px;
    border-radius: 3px 0 0 3px;
  }
  .campaign_ttl_bottomText_date {
    font-size: 24px;
  }
  .campaign_fair_link {
    font-size: 20px;
    padding: 20px;
  }
  .campaign_fair_link::before {
    width: 10px;
    height: 10px;
    top: 50%;
    right: 30px;
  }
  .campaign_description {
    padding-top: 50px;
  }
  .campaign_program_ttl_img {
    width: 95%;
  }
  .campaign_program_contents {
    padding: 25px;
  }
  .campaign_program_contents_item_txt {
    padding: 10px;
    font-size: 24px;
    margin-bottom: 15px;
    letter-spacing: 1.4px;
  }
  .campaign_benefit {
    gap: 20px;
  }
  .campaign_gift_wrap {
    padding-top: 60px;
  }
  .campaign_gift_subText {
    padding: 15px 30px;
    border-radius: 30px;
    font-size: 24px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 25px;
  }
  .campaign_gift_ttl {
    line-height: 1.5;
    font-size: 32px;
    font-weight: 600;
    margin-bottom: 30px;
  }
  .campaign_gift_ttl_span_img {
    max-width: 125px;
  }
  .campaign_gift_ttl_span02 {
    font-size: 36px;
  }
  .campaign_gift_description {
    gap: 15px;
  }
  .campaign_gift_description_item:nth-child(1)::before {
    width: 102%;
    height: 224px;
    top: 67%;
    left: -6px;
  }
  .campaign_gift_description_item_ttl {
    padding: 10px 0;
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    border-radius: 5px 5px 0 0;
    letter-spacing: 1.2px;
  }
  .campaign_gift_description_item_ttl_span02 {
    font-size: 48px;
  }
  .campaign_gift_description_item:nth-child(2), .campaign_gift_description_item:nth-child(3) {
    width: calc((100% - 15px) / 2);
    padding-bottom: 0;
  }
  .campaign_gift_description_item:nth-child(2) .campaign_gift_description_item_ttl, .campaign_gift_description_item:nth-child(3) .campaign_gift_description_item_ttl {
    font-size: 24px;
  }
  .campaign_gift_description_link_text {
    font-weight: 600;
    font-size: 20px;
    padding: 20px;
    letter-spacing: 1.2px;
  }
  .campaign_gift_description_link_text::before {
    width: 8px;
    height: 8px;
    right: calc(50% - 275px);
  }
  .campaign_gift_description_note {
    font-size: 14px;
    line-height: 1.7;
  }
}

/* qa */
.qa {
  padding-top: 40px;
  padding-bottom: 40px;
}

.qa_ttl {
  text-align: center;
  font-size: 32.5px;
  font-weight: 600;
  margin-bottom: 30px;
}

.qa_item_box {
  display: flex;
  flex-wrap: wrap;
  gap: 12.5px;
  justify-content: center;
}

.qa_item {
  width: 100%;
}

.qa_item_q {
  position: relative;
  background: #44bde1;
  padding: 20px 35px 20px 25px;
  cursor: pointer;
}

.qa_item_q::before {
  content: "";
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%);
}

.qa_item_q::after {
  content: "";
  width: 15px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%)rotate(90deg);
  transition: transform 0.3s ease;
}

.qa_item_q.active::after {
  transform: translateY(-50%) rotate(0deg);
}

.qa_item_q_text {
  font-size: 16px;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2.0px;
  position: relative;
  line-height: 1.3;
}

.qa_item_a {
  display: none;
  background: #def8ff;
  padding: 20px 25px;
}

.qa_item_a_text {
  font-size: 14px;
  letter-spacing: 1.5px;
  line-height: 1.5;
  font-weight: 600;
}

.qa_item_a_text_link {
  display: inline;
  text-decoration: underline;
  color: #1c4ef0;
}

@media screen and (min-width: 1100px) {
  .qa {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .qa_ttl {
    font-size: 42px;
    margin-bottom: 40px;
  }
  .qa_item_box {
    gap: 15px;
  }
  .qa_item_q {
    padding: 20px 25px;
  }
  .qa_item_q_text {
    font-size: 18px;
    letter-spacing: 1.5px;
  }
  .qa_item_a_text {
    font-size: 16px;
    letter-spacing: 1.5px;
    line-height: 1.5;
  }
}

/* detail */
.detail {
  margin-bottom: 40px;
}

.detail_ttl {
  text-align: center;
  font-size: 23.5px;
  font-weight: 600;
  margin-bottom: 40px;
}

.detail_description_ttl {
  text-align: center;
  font-size: 23.5px;
  font-weight: 600;
  margin-bottom: 40px;
  padding-top: 40px;
}

.detail_description_ttl.detail_accordion {
  border-bottom: solid 2px #141414;
  text-align: left;
  padding-bottom: 10px;
  position: relative;
  cursor: pointer;
  margin-bottom: 15px;
  padding-right: 35px;
  line-height: 1.3;
}

.detail_description_ttl.detail_accordion::before {
  content: "";
  width: 15px;
  height: 2px;
  background: #141414;
  position: absolute;
  top: calc(50% + 15px);
  right: 15px;
  transform: translateY(-50%);
}

.detail_description_ttl.detail_accordion::after {
  content: "";
  width: 15px;
  height: 2px;
  background: #141414;
  position: absolute;
  top: calc(50% + 15px);
  right: 15px;
  transform: translateY(-50%)rotate(90deg);
  transition: transform 0.3s ease;
}

.detail_description_ttl.detail_accordion.active::after {
  transform: translateY(-50%) rotate(0deg);
}

.detail_description_line {
  display: none;
  font-size: 11px;
  line-height: 1.5;
}

.detail_description_line_txt {
  margin-bottom: 28px;
}

.detail_description_line02_link {
  text-decoration: underline;
}

.detail_description_txt {
  padding-left: 10px;
  margin-bottom: 10px;
  font-size: 13.5px;
  font-weight: 600;
}

.detail_description_txt_link {
  text-decoration: underline;
  padding: 5px 0;
}

.detail_description_environment {
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 25px;
  margin-bottom: 35px;
}

.detail_description_environment_device {
  width: 100%;
}

.detail_description_environment_device_ttl {
  font-size: 17px;
  font-weight: 600;
  border-bottom: solid 0.5px #dddddd;
  padding-bottom: 5px;
  padding-left: 5px;
  margin-bottom: 10px;
}

.detail_description_environment_device_txt {
  padding-left: 5px;
  font-size: 13.5px;
  font-weight: 600;
}

.detail_description_environment_device_txt_span {
  display: block;
  font-weight: 400;
  font-size: 11px;
  padding-top: 10px;
  letter-spacing: 0.5px;
  line-height: 1.3;
}

.detail_maintenance {
  background: #def8ff;
  border-radius: 5px;
  padding: 20px 25px;
  margin-bottom: 40px;
  text-align: center;
}

.detail_maintenance_ttl {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

.detail_maintenance_txt {
  font-size: 20px;
  font-weight: 600;
}

@media screen and (min-width: 1100px) {
  .detail_ttl {
    font-size: 32px;
    margin-bottom: 40px;
  }
  .detail_description_txt {
    padding-left: 10px;
    margin-bottom: 10px;
    font-size: 20px;
  }
  .detail_description_txt_link {
    padding: 10px 0;
  }
  .detail_description_ttl.detail_accordion {
    padding-top: 50px;
    margin-bottom: 20px;
    font-size: 24px;
  }
  .detail_description_ttl {
    font-size: 28px;
    margin-bottom: 50px;
    padding-top: 50px;
  }
  .detail_description_line {
    font-size: 14px;
    line-height: 1.8;
    letter-spacing: 1.4px;
  }
  .detail_description_environment {
    gap: 30px;
    margin-bottom: 35px;
  }
  .detail_description_environment_device_ttl {
    font-size: 22px;
    padding-bottom: 10px;
    margin-bottom: 15px;
    letter-spacing: 1.2px;
  }
  .detail_description_environment_device_txt {
    font-size: 18px;
    letter-spacing: 1.2px;
  }
  .detail_description_environment_device_txt_span {
    font-size: 14px;
    padding-top: 14px;
  }
  .detail_maintenance {
    border-radius: 5px;
    padding: 20px 25px;
    margin-bottom: 40px;
  }
  .detail_maintenance_ttl {
    font-size: 18px;
    line-height: 1.3;
    margin-bottom: 20px;
  }
  .detail_maintenance_txt {
    font-size: 32px;
    letter-spacing: 1.2px;
  }
}

/* footer */
.footer {
  margin-bottom: 178px;
}

.footer_description {
  margin-bottom: 30px;
  text-align: center;
  line-height: 1.5;
}

.footer_description_text {
  font-size: 11.5px;
  font-weight: 600;
}

.footer_logo {
  margin-bottom: 30px;
}

.footer_logo_img {
  max-width: 295px;
  margin: 0 auto;
}

.footer_copyright {
  background: #214e7c;
  color: #fff;
  font-size: 11px;
  display: block;
  text-align: center;
  padding: 15px 0;
  letter-spacing: 1.0px;
}

@media screen and (min-width: 600px) {
  .footer {
    margin-bottom: 89px;
  }  
}

@media screen and (min-width: 1100px) {
  .footer_description {
    margin-bottom: 40px;
  }
  .footer_description_text {
    font-size: 16px;
    line-height: 1.7;
  }
  .footer_logo_img {
    max-width: 420px;
  }
  .footer_copyright {
    font-size: 14px;
    padding: 20px 0;
    letter-spacing: 1.0px;
  }
}

.about_bg, .flow_bg, .qa_bg {
  position: absolute;
  width: 100vw;
  height: 0;
  top: 0;
  left: 0;
  background: #224E7D;
}

/* 20250826追記 */
/*
* ===CTA切り替え方法；ver01とver02のdisplay: none; / block;を入れ替えることで表示切り替え===
*/
.cta01.ver01 {
  display: block;
}
.cta01.ver02 {
  display: none;
  background: #e9545e;
}
@media screen and (min-width: 600px) {
  /* ver02はSP用のため、600px以上の場合は非表示とする。 */
  .cta01.ver02 {
    display: none;
  }

  .cta01.ver01 {
    display: none;
  }
}
.cta01_campaign_link {
  margin-bottom: 10px;
}
.cta01.ver02 .cta01_download_link {
  background: transparent;
  padding: 0;
}