@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Roboto:wght@400;700&display=swap");
/*----------
	Reset
----------*/
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
  font-weight: inherit;
  font-size: inherit;
  font-style: inherit;
  -webkit-tap-highlight-color: transparent;
}

article,
aside,
details,
figcaption,
figure,
picture,
main,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

button {
  font-family: inherit;
}

/*----------
	vars
----------*/
:root {
  --color-base: #06236F;
  --color-red: #DB0000;
  --color-fill: #f7f7f7;
}

/* ------------------------------------------------------------
	ベースレイアウト
------------------------------------------------------------ */
html {
  font-size: 10px;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  background-color: #F7F7F7;
  font-size: 1.8rem;
  font-weight: 400;
  line-height: 1.7;
  font-family: "Noto Sans JP", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Helvetica Neue", Meiryo, sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-variation-settings: "wdth" 100;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0;
  color: var(--color-base);
}

@media screen and (max-width: 767px) {
  body {
    font-size: 1.6rem;
  }
}
img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
}

sup {
  display: inline-block;
  font-size: 1rem;
  vertical-align: text-top;
}

.svg-symbol {
  position: absolute;
  width: 0;
  height: 0;
  pointer-events: none;
}

/* ------------------------------------------------------------
	汎用パーツ
------------------------------------------------------------ */
/* 出し分け
---------------------------------------- */
@media screen and (max-width: 767px) {
  *[pc] {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  *[sp] {
    display: none !important;
  }
}
/* マージン
---------------------------------------- */
.margin-xxs {
  margin-top: 10px !important;
}

.margin-xs {
  margin-top: 20px !important;
}

.margin-sm {
  margin-top: 40px !important;
}

.margin-md {
  margin-top: 60px !important;
}

.margin-lg {
  margin-top: 80px !important;
}

@media screen and (max-width: 767px) {
  .margin-xs {
    margin-top: 10px !important;
  }
  .margin-lg {
    margin-top: 60px !important;
  }
}
/* テキスト
---------------------------------------- */
.text {
  line-height: 2;
}

@media screen and (max-width: 767px) {
  .text {
    line-height: 1.8;
  }
}
.text-bold {
  font-weight: 700 !important;
}

.text-center {
  text-align: center !important;
}

.text-red {
  color: var(--color-red) !important;
}

/* アニメーション
---------------------------------------- */
.js-anime-trigger {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease-in;
  transition-delay: 0.3s;
}

.js-anime-trigger.is-anime-completed {
  transform: translateY(0);
  opacity: 1;
}

.js-anime-delay {
  opacity: 0;
  transform: translateY(10px);
  transition: 0.4s ease-in;
  transition-delay: 0.3s;
}

.js-anime-delay.is-anime-completed {
  transform: translateY(0);
  opacity: 1;
}

/* simplebar
---------------------------------------- */
.simplebar-track {
  background: #D3D3D3;
  border-radius: 10px;
}

.simplebar-track.simplebar-horizontal {
  width: 95%;
  height: 12px;
  margin: 0 auto;
}

.simplebar-track.simplebar-vertical {
  display: none !important;
}

.simplebar-track .simplebar-scrollbar.simplebar-visible::before {
  opacity: 1;
  border-radius: 10px;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

.simplebar-track .simplebar-scrollbar::before {
  background-color: var(--color-base);
}

/* main
---------------------------------------- */
.main {
  overflow: hidden;
}

/* keyvisual
---------------------------------------- */
.keyvisual img {
  width: 100%;
}

/* section
---------------------------------------- */
.section_btnbox {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 40px;
}
.section_btnbox .section_btn {
  display: grid;
  place-content: center;
  min-width: 380px;
  background-color: #fff;
  border-radius: calc(infinity * 1px);
  border: 2px solid #fff;
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.3;
  letter-spacing: 0.02em;
  text-align: center;
  color: var(--color-base);
  padding: 20px 44px 23px;
  position: relative;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.section_btnbox .section_btn:hover {
  background-color: #0A4CC7;
  color: #fff;
}
.section_btnbox .section_btn:hover::after {
  background-color: #fff;
  right: 18px;
}
.section_btnbox .section_btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 22px;
  -webkit-mask-image: url("/fund/feature/ifree-ztech20/images/g_iconArrow_img_01.svg");
          mask-image: url("/fund/feature/ifree-ztech20/images/g_iconArrow_img_01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: var(--color-base);
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
  transition: background-color 0.3s ease, right 0.3s ease;
}
.section_btnbox .section_btn.is-color03:hover {
  background-color: #8924C7;
}

.section_container {
  max-width: 880px;
  padding: 0 40px;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}

.section_contents {
  padding-bottom: 140px;
  position: relative;
}
.section_contents:not(:first-child) {
  padding-top: 100px;
}
.section_contents.is-bg-color01 {
  background: linear-gradient(180deg, #726208 0%, #d1ba3a 100%);
}
.section_contents.is-bg-color02 {
  background: linear-gradient(120deg, #06236f 0%, #176596 100%);
}
.section_contents.is-bg-color02::after {
  background: url("/fund/feature/ifree-ztech20/images/g_bg_img_04.png") no-repeat center bottom/cover;
}
.section_contents.is-bg-color03 {
  background: linear-gradient(120deg, #726208 0%, #d1ba3a 100%);
}
.section_contents::after {
  content: "";
  display: block;
  width: 100%;
  height: 1236px;
  background: url("/fund/feature/ifree-ztech20/images/g_bg_img_03.png") no-repeat center bottom/cover;
  position: absolute;
  bottom: 0;
  left: 0;
}
.section_contents_title {
  display: block;
  background: url("/fund/feature/ifree-ztech20/images/g_bg_img_01.svg") no-repeat center/100% 100%;
  margin-bottom: 40px;
}
.section_contents_title.is-color01 {
  background: url("/fund/feature/ifree-ztech20/images/g_bg_img_02.svg") no-repeat center/100% 100%;
}
.section_contents_title .is-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: left;
  color: #fff;
  padding: 12px 40px 13px;
  position: relative;
  z-index: 1;
}
.section_contents_title .is-small {
  display: flex;
  align-items: center;
  gap: 20px;
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  text-align: left;
  color: #fff;
  white-space: nowrap;
}
.section_contents_title .is-small::after {
  content: "";
  display: block;
  width: 26px;
  height: 2px;
  background-color: #fff;
}
.section_contents_txt {
  font-weight: 500;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.75;
  color: #fff;
  margin-bottom: 40px;
}
.section_contents_txt.is-small {
  font-size: 1.4rem;
}
.section_contents_lead {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: #000;
}

.section_block {
  background-color: #fff;
  padding: 40px 0;
}
.section_block:not(:last-child) {
  margin-bottom: 60px;
}
.section_block_title {
  font-weight: 700;
  font-size: 2.8rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  padding: 0 20px;
}
.section_block_txt {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: left;
  color: #000;
  padding: 0 40px;
}
.section_block_icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.section_block_icon .is-text {
  font-weight: normal;
  font-size: clamp(1rem, 3vw, 1.2rem);
  color: #000;
}
.section_block_image.is-overflow {
  min-width: 550px;
}

@media screen and (max-width: 767px) {
  .section_btnbox {
    gap: 30px;
  }
  .section_btnbox .section_btn {
    min-width: 300px;
    font-size: 1.8rem;
    padding: 20px 44px;
  }
  .section_btnbox .section_btn::after {
    right: 23px;
  }
  .section_container {
    padding: 0 10px;
  }
  .section_contents {
    padding-bottom: 70px;
  }
  .section_contents:not(:first-child) {
    padding-top: 60px;
  }
  .section_contents_title {
    max-width: 355px;
    margin: 0 auto 20px;
  }
  .section_contents_title .is-inner {
    justify-content: flex-start;
    gap: 15px;
    font-size: clamp(1.2rem, 4.65vw, 2rem);
    padding: 15px 10px 15px 30px;
  }
  .section_contents_title .is-small {
    gap: 10px;
    font-size: 2rem;
    line-height: 1.2;
    text-align: center;
    white-space: wrap;
  }
  .section_contents_title .is-small::after {
    width: 1px;
    height: 42px;
    transform: rotate(10deg);
  }
  .section_contents_txt {
    font-size: 1.4rem;
    padding: 0 20px;
    margin-bottom: 20px;
  }
  .section_contents_txt.is-small {
    font-size: 1.2rem;
  }
  .section_contents_lead {
    font-size: 1.2rem;
  }
  .section_block {
    padding: 20px 10px;
  }
  .section_block:not(:last-child) {
    margin-bottom: 30px;
  }
  .section_block_title {
    font-size: clamp(1.4rem, 4.8vw, 2rem);
    padding: 0;
  }
  .section_block_txt {
    font-size: 1.2rem;
    padding: 0 6px;
  }
  .section_scroll {
    overflow-x: auto;
    -ms-overflow-style: none;
    /* IE, Edge 対応 */
    scrollbar-width: none;
    /* Firefox 対応 */
    padding-bottom: 16px;
  }
  .section_scroll::-webkit-scrollbar {
    display: none;
  }
}
/* section_point
---------------------------------------- */
.section_point {
  padding: 120px 0 0;
  position: relative;
}
.section_point_title {
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  margin-bottom: 24px;
}
.section_point_lead {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: center;
  color: #fff;
  margin-bottom: 40px;
}
.section_point_head {
  margin-bottom: 80px;
}
.section_point_list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 80px;
  -moz-column-gap: 30px;
       column-gap: 30px;
}
.section_point_item {
  position: relative;
}
.section_point_btn {
  display: block;
  position: relative;
  filter: drop-shadow(5px 5px 5px #554810);
  transition: opacity 0.3s ease;
}
.section_point_btn:hover {
  opacity: 0.7;
}
.section_point_btn:hover::after {
  bottom: 8px;
}
.section_point_btn::after {
  content: "";
  display: block;
  width: 10px;
  height: 22px;
  -webkit-mask-image: url("/fund/feature/ifree-ztech20/images/g_iconArrow_img_01.svg");
          mask-image: url("/fund/feature/ifree-ztech20/images/g_iconArrow_img_01.svg");
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-size: contain;
          mask-size: contain;
  background-color: #fff;
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transition: bottom 0.3s ease;
}
.section_point_box {
  background: linear-gradient(90deg, #06236f 0%, #176596 100%);
  -webkit-clip-path: polygon(14.41% 0, 100% 0, 100% 100%, 0 100%, 0 22.05%);
          clip-path: polygon(14.41% 0, 100% 0, 100% 100%, 0 100%, 0 22.05%);
  padding: 40px 0;
  transition: background-color 0.3s ease;
}
.section_point_txt {
  font-weight: 700;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
  color: #fff;
}
.section_point_number {
  position: absolute;
  top: -28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

@media screen and (min-width: 768px) {
  .section_point_item {
    flex: 0 0 240px;
  }
}
@media screen and (max-width: 767px) {
  .section_point {
    padding: 60px 0 0;
  }
  .section_point::before {
    width: 230px;
    height: 38px;
    background: url("/fund/feature/ifree-ztech20/images/g_bg_sp_img_01.svg") no-repeat left center/contain;
  }
  .section_point_title {
    font-size: clamp(1.8rem, 5.3vw, 2rem);
  }
  .section_point_lead {
    font-size: 1.4rem;
  }
  .section_point_head {
    width: calc(100% + 20px);
    margin-left: -10px;
    margin-bottom: 50px;
  }
  .section_point_list {
    row-gap: 20px;
  }
  .section_point_item {
    width: 100%;
  }
  .section_point .section_contents_title {
    margin-bottom: 0;
  }
}
/* section_fund
---------------------------------------- */
#fund {
  padding-top: 90px;
}

@media screen and (max-width: 767px) {
  #fund {
    padding-top: 50px;
  }
  .section_fund_inner {
    padding-bottom: 10px;
    margin-bottom: 10px;
  }
  .section_fund_img {
    min-width: 400px;
  }
}
/* section_feature
---------------------------------------- */
.section_feature_txt {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: left;
  color: #000;
  padding: 0 25px;
}
.section_feature_img.is-static::after {
  content: "";
  display: block;
  width: 2px;
  height: 439px;
  background-color: var(--color-base);
}
.section_feature_img.is-overflow {
  width: 1190px;
}
.section_feature_inner {
  flex: 1;
  overflow-x: auto;
}
.section_feature_note {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #000;
  text-align: right;
}

@media screen and (min-width: 768px) {
  .section_feature_block {
    display: flex;
    align-items: flex-start;
    padding-right: 40px;
  }
  .section_feature_img.is-static {
    display: flex;
    align-items: flex-start;
    flex: 0 0 400px;
  }
  .section_feature_note {
    padding-right: 40px;
  }
}
@media screen and (max-width: 767px) {
  .section_feature_txt {
    font-size: 1.2rem;
  }
  .section_feature_note {
    font-size: clamp(1rem, 3vw, 1.2rem);
    white-space: nowrap;
  }
  .section_feature_img.is-static::after {
    width: 100%;
    height: 2px;
  }
  .section_feature_img.is-overflow {
    width: 840px;
  }
}
/* section_simulation
---------------------------------------- */
.section_simulation {
  padding: 0 40px;
}
.section_simulation_txt {
  font-weight: 400;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: #000;
}
.section_simulation_block {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.section_simulation_block .is-unit {
  font-weight: 400;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: left;
  color: #000;
  position: absolute;
  bottom: 24px;
  left: 20px;
}
.section_simulation_img.is-static {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 0 0 175px;
}
.section_simulation_img.is-static::after {
  content: "";
  display: block;
  width: 2px;
  height: 526px;
  background-color: var(--color-base);
}
.section_simulation_img.is-static02 {
  flex: 0 0 20.5px;
}
.section_simulation_img.is-overflow {
  padding-bottom: 30px;
}
.section_simulation_img.is-img01 {
  width: 3038px;
}
.section_simulation_img.is-img02 {
  width: 1360px;
}
.section_simulation_inner {
  flex: 1;
  overflow-x: auto;
}
.section_simulation_row {
  display: flex;
  align-items: center;
}
.section_simulation_box {
  flex: 0 0 249px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  line-height: 1.5;
  color: #000;
}
.section_simulation_box::before {
  content: "";
  width: 26px;
  height: 26px;
  background-color: #FFDFE2;
}
.section_simulation_note {
  font-weight: 400;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  line-height: 1.5;
  color: #000;
  text-align: right;
}

#simulation .section_contents::after {
  opacity: 0.6;
}
#simulation .section_btn {
  flex: 1;
  max-width: 530px;
  font-size: 1.6rem;
  padding: 20px 32px 20px 24px;
}
#simulation .section_btn::after {
  right: 20px;
}
#simulation .section_btn:hover::after {
  right: 12px;
}

@media screen and (max-width: 767px) {
  .section_simulation {
    padding: 0 6px;
  }
  .section_simulation_txt {
    font-size: 1.2rem;
  }
  .section_simulation_block .is-unit {
    font-size: 1rem;
    bottom: 16px;
    left: 15px;
  }
  .section_simulation_inner {
    padding-bottom: 10px;
  }
  .section_simulation_img.is-static {
    align-items: flex-start;
    flex: 0 0 108px;
    padding-right: 7px;
    position: relative;
  }
  .section_simulation_img.is-static::after {
    height: 332px;
    position: absolute;
    top: 0;
    right: 0;
  }
  .section_simulation_img.is-static02 {
    flex: 0 0 15px;
  }
  .section_simulation_img.is-overflow {
    padding-bottom: 10px;
  }
  .section_simulation_img.is-img01 {
    width: 1919px;
  }
  .section_simulation_img.is-img02 {
    width: 1000px;
  }
  .section_simulation_box {
    flex: 0 0 108px;
    gap: 5px;
    font-size: clamp(1rem, 3vw, 1.2rem);
  }
  .section_simulation_box::before {
    width: 12px;
    height: 12px;
  }
  .section_simulation_note {
    font-size: clamp(1rem, 3vw, 1.2rem);
    white-space: nowrap;
  }
  #simulation .section_btnbox .section_btn::after {
    right: 14px;
  }
  #simulation .section_btn {
    max-width: 300px;
    font-size: 1.8rem;
    padding: 13px 30px;
  }
}
/* section_info
---------------------------------------- */
.section_info {
  background: linear-gradient(90deg, #88daff 0%, #051b74 100%);
  -webkit-clip-path: polygon(0 min(70px, 4.375vw), 70vw min(70px, 4.375vw), 74.5vw 0, 100% 0, 100% 100%, 0 100%);
          clip-path: polygon(0 min(70px, 4.375vw), 70vw min(70px, 4.375vw), 74.5vw 0, 100% 0, 100% 100%, 0 100%);
  padding: 140px 40px 130px;
  position: relative;
  margin-top: calc(-1 * min(70px, 4.375vw));
}
.section_info_txt {
  font-weight: 700;
  font-size: 3.2rem;
  letter-spacing: 0.02em;
  line-height: 1.25;
  color: #fff;
  text-align: center;
  margin-bottom: 24px;
}
.section_info_link {
  transition: opacity 0.3s ease;
}
.section_info_link:hover {
  opacity: 0.7;
}

@media screen and (max-width: 767px) {
  .section_info {
    padding: 50px 20px;
  }
  .section_info_inner {
    gap: 24px;
    padding: 30px 7px;
  }
  .section_info_img {
    max-width: 223px;
  }
  .section_info_txt {
    font-size: 1.4rem;
    margin-bottom: 10px;
  }
  .section_info_txt span {
    display: inline-block;
  }
}

/*追加分*/

.section-title {
	font-size: 3.0rem !important;
}

.apply-cta-title{
	font-size: 3.0rem !important;
}

.apply-cta-header{
	font-size: 1.8rem !important;
}

.apply-cta-button{
	font-size: 2.0rem !important;
}

.theme-box-base{
	max-width: 124rem;
	margin: 0 auto;
	}
	
@media screen and (max-width: 767px) {	
.ft-section .theme-box-base {
		max-width: inherit;
		margin: 0 2.0rem;
	}
	}
	
	.box-title
	{
	font-size: 1.8rem 

}

.list-section{
	max-width: 124rem;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
	}
	
@media screen and (max-width: 767px) {	
.list-section {
		max-width: inherit;
		margin: 0 2.0rem;
	}
	}
	
.theme-list-asterisk{
	font-size: 1.5rem !important;
}

/*footer用*/

.footer-top a:link {
	color: #ffffff;
	text-decoration: none;
	font-size: 16px;
}

@media only screen and (max-width: 767px) {
.footer-top a:link {
	font-size: 14px;
}
}

.footer-top a:visited {
	color: #ffffff;
}
.footer-top a:hover {
	color: #ffffff;
}
.footer-top a:active {
	color: #ffffff;
}

.footer-bottom a:link {
	font-size: 14px;
	}
	
.footer-hdg {
	font-size: 14px;
}

.footer-txt {
	font-size: 12px;
}

.footer-corporate {
	font-size: 12px;
}

.footer__inner small{
	font-size: 12px;
}
