@charset "UTF-8";
/* CSS Document */

/*ここから共通の表示設定　PC*/
html {
  font-size: 62.5%;
  width: 100%;
  box-sizing: border-box;
  scroll-behavior: smooth;
}
body {
  /*文字*/
  color: #006666;
  font-family: "Zen Kaku Gothic New", serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 3.0rem;
  text-align: left;
  letter-spacing: 0.1rem;
  /*背景*/
  background-image: url("../image/main_bg.png");
  background-position: center center;
  background-attachment: fixed;
  background-size: auto 120%;
}
section h2 {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 5.0rem;
  letter-spacing: 0.7rem;
}
section h3 {
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 4.5rem;
  letter-spacing: 0.4rem;
}
.text_marker_line {
  /*マーカー文字*/
  text-decoration-color: #fefeed;
  text-decoration-line: underline;
  text-decoration-thickness: 15px;
  text-underline-offset: -7px;
}
.text_marker_line_bold{
  /*マーカー文字　しましま　太字*/
  background-image: repeating-linear-gradient(-45deg,
    #fefeed 0, #fefeed 2px,
    transparent 2px, transparent 4px
  );
  background-repeat: no-repeat;
  background-position: left bottom;
  background-size: 100% 0.5em;
}
.text_green {
  /*黄緑文字*/
  color: #50b595;
}
.text_yellow{
 /*黄文字*/
  color: #ffe061;
}
.text_small {
  /*最小文字*/
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 3.0px;
}

a {
  color: #126c79;
  text-decoration: none;
}

/*アニメーション　回転*/
.rotate{
  animation:30s linear infinite rotation1;
}
@keyframes rotation1{
  0%{ transform:rotate(0);}
  100%{ transform:rotate(360deg); }
}
/*アニメーション　ふわふわ*/
.fluffy {
  animation: floating-y 1.5s ease-in-out infinite alternate-reverse;
}
@keyframes floating-y {
  0% {
    transform: translateY(-1%);
  }
  100% {
    transform: translateY(1%);
  }
}

/*アニメーション　フェードイン*/
.inview.fadeup {
	opacity: 0;
	transition-duration: .5s;
	transform: translateY(20px);
}
.inview.fadeup.active {
	opacity: 1;
	transform: translateY(0px);
}

/*ここから共通の表示設定　SP*/
@media (max-width: 960px) {
    body {
      /*背景*/
    background-image: url("../image/main_bg.png");
    background-position: center center;
    background-attachment: fixed;
    background-size: 400%;
  }
}
@media (max-width: 1250px) {
  body {
    /*文字*/
    font-weight: 400;
    font-size: 1.6rem;
    line-height: 2.5rem;
     /*背景*/
    background-image: url("../image/main_bg.png");
    background-position: center center;
    background-attachment: fixed;
    background-size: 500%;
  }
  section h2 {
    font-size: 2.7rem;
    font-weight: bold;
    line-height: 4.5rem;
    letter-spacing: 0.5rem;
  }
  section h3 {
    font-size: 2.3rem;
    font-weight: bold;
    line-height: 4.5rem;
    letter-spacing: 0.3rem;
  }
}

/*ここから個別設定*/

/*TOP　PC表示の設定*/
.sample1_top {
  /*TOP　背景*/
  z-index: 100;
  background-image: url("../image/top_bg.png");
  background-position: top center; /*背景の表示位置*/
  background-repeat: repeat; /*背景をリピートしない*/
  background-attachment: fixed;/*背景画像の固定(スクロールしない)*/
  background-size: auto 100%;
  width: 100%;
  height: 900px;
  margin-bottom: 100px;
  position: relative;
}
/*TOP　イラスト*/
.rogo_sample1_img {
  z-index: 1000;
  width: 15%;
  padding: 4vw 0 0 4vw;
  max-height: 100px;
  max-width: 100px;
  position: absolute;
}
/*TOP　コインイラスト*/
.illust_coin_star_img {
  z-index: 10;
  width: 90%;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
.sp_illust_coin_1-1_img,.sp_illust_coin_1-2_img{
  display: none;
}

/*TOP　イラスト*/
.top_img_wrap{
  z-index: 1000;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: row; /*flexアイテムを横並びに変更*/
  position: relative;
  margin: 0 35px;
  height: 900px;
}
.top_img{
  width: 40%;
  max-width: 650px;
  min-width: 300px;
}
.illust_family_img {
  width: 100%;
  flex: 2;
}
.top_title_img {
  width: 100%;
  max-width: 550px;
  padding-bottom: 80px;
  flex: 1;
}

/*scrollボタン*/
.top_button {
  z-index: 10000;
  position: absolute;
  right: 4vw;
  bottom: 4vw;
}
.top_button:hover {
  transform: translateY(-10px);
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.button_scroll {
  width: 10vw;
  height: 10vw;
  position: relative;
}
.button_scroll_img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.button_scroll_text {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
}
.button_scroll_text_1 {
  font-size: calc(1vw + 1.0rem);/*文字の大きさを指定した幅に合わせて調整*/
  font-weight: 600;
  letter-spacing: 0.2rem;
  text-align: center;
  color: #50b595;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 38% auto 0 auto;
}
.button_scroll_text_2 {
  font-size: calc(1vw + 0.5rem);/*文字の大きさを指定した幅に合わせて調整*/
  font-weight: 900;
  text-align: center;
  color: #50b595;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 70% auto 0 auto;
}

/*TOP　SP表示の設定*/
@media (max-width: 960px) {
  .sample1_top {
  /*TOP　背景*/
  z-index: 100;
  background-image: url("../image/top_bg.png");
  background-position: top center; /*背景の表示位置*/
  background-repeat: repeat; /*背景をリピートしない*/
  background-attachment: fixed;/*背景画像の固定(スクロールしない)*/
  background-size: 400%;
  width: 100%;
  height: 900px;
  margin-bottom: 100px;
  position: relative;
}
}
@media (max-width: 1250px) {
  /*TOP　背景*/
  .sample1_top {
    max-height: 700px;
    position: relative;
      /*TOP　背景*/
    z-index: 100;
    background-image: url("../image/top_bg.png");
    background-position: top center; /*背景の表示位置*/
    background-repeat: repeat; /*背景をリピートしない*/
    background-attachment: fixed;/*背景画像の固定(スクロールしない)*/
    background-size: 500%;
  }
  /*TOP　コインイラスト*/
  .illust_coin_star_img {
    display: none;
  }
.sp_illust_coin_1-1_img,.sp_illust_coin_1-2_img{
  display: block;
  z-index: 10;
  position: absolute;
}
  .sp_illust_coin_1-1_img{
  width: 50px;
  position: absolute;
  top:80px;
  right: 8vw;
  }
  .sp_illust_coin_1-2_img{
  width: 50px;
  position: absolute;
  bottom:100px;
  left: 10vw;
  }
  
  /*TOP　イラスト*/
   .top_img_wrap {
    height: 700px;
    flex-direction: column-reverse;   
  }
  .top_img{
    width: 100%;
    max-width: 400px;
    min-width: 300px;
  }
  .top_title_img {
  padding-bottom: 0px;
  }

.top_button {
  bottom: 6vw;
}
    .button_scroll {
  min-width: 80px;
  min-height: 80px;
}


}
/*section_question_1、section_question_2　PC表示の設定*/
.section_question_1 {
  margin-bottom: 150px;
}
.section_question_2 {
  margin-bottom: 150px;
}
.question_arae {
  position: relative;
  height: auto;
  margin-bottom: 50px;
  padding-top: 10px;
}
.illust_question_img {
  width: 10%;
  position: absolute;
  top: 0;
  right: 18vw;
}
.question_bg {
  margin: 0 15% 0 15%;
  background-color: #ffe061;
  border: solid 3px #006666;
  border-radius: 20px;
  height: 100%;
}
.question_wrap_1 {
  margin: 8vw 0 3vw 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row; /*flexアイテムを横並びに変更*/
  align-items: center;
  
}
.question_wrap_2 {
  margin: 0 0 8vw 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row; /*flexアイテムを横並びに変更*/
align-items: center;
}
.section_question_1 h2, .section_question_1 h3, .section_question_2 h2, .section_question_2 h3 {
  margin-bottom: 40px;
}
.section_question_1 p, .section_question_2 p {
  text-align: justify; /*文字を均等間隔にする*/
  margin-bottom: 40px;
}
.question_text {
  display: block;
  width: 25vw;
  height: 100%;
}
.question_img {
  display: block;
  width: 27vw;
  height: 27vw;
  margin-right: 5vw;
  position: relative;
}
.illust_circle {
  background-color: #fefeed;
  width: 100%;
  height: 100%;
  border-radius: 10000px;
  position: absolute;
}
.illust_boy_img, .illust_girl_img {
  width: 85%;
  position: absolute;
  left: 5%;
}
.illust_girl_img {
  top: 6%;
  left: 9%;
}
.illust_coin_2_img, .illust_coin_3_img {
  width: 100%;
  position: absolute;
  top: 5%;
}
.illust_coin_3_img {
  top: 0%;
}
.graph_img {
  display: block;
  width: 27vw;
  height: 27vw;
  margin-left: 5vw;
}
.graph_asset_img, .graph_simulation_img {
  width: 100%;
  margin-top: 50px;
}

/*section_question_1、section_question_2　SP表示の設定*/
@media (max-width: 950px) {
  .section_question_1 {
  margin-bottom: 50px;
}
.section_question_2 {
  margin-bottom: 50px;
}
  .question_bg {
    margin: 0 5% 0 5%;
  }
  .illust_question_img {
    width: 20%;
    max-height: 200px;
    max-width: 150px;
    position: absolute;
    top: 0;
    right: 11%;
  }
  .question_wrap_1 {
    margin-top: 80px;
    flex-direction: column-reverse; /*flexアイテムを縦並び・逆順に変更*/
  }
  .question_wrap_2 {
    margin-top: 80px;
    flex-direction: column; /*flexアイテムを縦並びに変更*/
  }
  .question_text {
    width: 70vw;
    height: auto;
  }
  .question_img {
    display: block;
    margin: 0 auto;
    width: 55vw;
    height: 55vw;
    position: relative;
  }
  .graph_img {
    display: block;
    margin: 0 auto;
    width: 55vw;
    height: 55vw;
  }
  .graph_asset_img {
    margin-top: 0px;
    width: 100%;
  }
}

/*.section_nisa_recommendation
  .section_nisa_nisa PC表示の設定*/

/*背景*/
.nisa_recommendation_area_bg{
  background-image: url("../image/nisa_area_bg.png");
  background-position: center center;
  background-attachment: fixed;
  background-size: auto 120%;
  position: relative;
  width: 100%;
  z-index: 100;
}
.nisa_start_area_bg{
  background-image: url("../image/illust_cloud.png"),url("../image/nisa_area_bg.png");
  background-position: center,center center;
  background-repeat: no-repeat,repeat;
  background-attachment: scroll,fixed;
  background-size: contain,auto 120%;
  position: relative;
  width: 100%;
}
/*PC非表示*/
.sp_nisa_recommendation_h2_img,.sp_nisa_start_h2_img,
.sp_illust_coin_4-1_img,.sp_illust_coin_4-2_img,
.sp_illust_coin_4-3_img,.sp_illust_coin_4-4_img,
.sp_illust_cloud_img{
  display: none;

}

/*イラスト*/
.under_coin{
 position: relative;
}
.illust_coin_4-1_img,.illust_coin_5-1_img{
  width: 13%;
  position: absolute;
  top:100px;
  left:5vw;
}
.illust_coin_4-2_img,.illust_coin_5-2_img{
  width: 13%;
  position: absolute;
  top:100px;
  right:5vw;
}
.illust_coin_5-1_img,.illust_coin_5-2_img{
  width: 5%;
  top:50px;
}
.under_coin_top{
  width: 7%;
  top:0px;
}


/*コンテンツ 全体*/
.nisa_recommendation_text,.nisa_start_text{
  display: block;
  width: 100%;
  height: auto;
  padding: 100px 0;
}

/*コンテンツ 見出し*/
.nisa_recommendation_h2_text,.nisa_start_h2_text{
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}
.nisa_recommendation_h2_img,.nisa_start_h2_img{
  display: block;
  width: 700px;
  margin: 0 auto 50px auto;
}
.nisa_start_h2_img{
  width: 800px;
}
.nisa_recommendation_text p,.nisa_start_text p{
  width: 600px;
  color: #fff;
  margin: 0 auto;
}
.section_nisa_recommendation h3{
  color: #fff;
  font-size: 3.0rem;
  text-align: center;
  margin: 0 30px;
}

/*recommendation 二つの枠コンテンツ*/
.nisa_recommendation_contents{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row; /*flexアイテムを横並びに変更*/
  align-items: center;
}
.nisa_investment_limit{
  max-width: 550px; 
  width: 80vw;
  height: 400px;
  padding-top: 60px;
  position: relative;
  margin:20px 25px 0 25px;
}
.nisa_investment_limit_bg{
  background-color: #fefeed;
  border: solid 3px #006666;
  border-radius: 20px;
  padding-bottom: 40px;
}
.icon_investment_limit_img{
  width: 120px;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0 auto;
}
.nisa_investment_limit_text{
  text-align: center;
  margin: 50px 0 20px 0;
}
.nisa_investment_limit_text_bold{
  font-size: 2.5rem;
  font-weight: bold;
  padding: 15px 0;
}
.investment_limit_detail_bg{
  background-color: #ffe061;
  border-radius: 20px;
  margin: 0 3vw 20px 3vw;
  height: 100%;
  padding: 15px;
}
.detail_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row; /*flexアイテムを横並びに変更*/
  align-items: center;
  align-items:flex-start;

}
.detail_text_left{
  flex: 1;
  padding: 2px;
  word-wrap: break-word;
  min-width: 0;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: left;
}
.detail_text_right{
  flex: 3;
  padding: 2px;
  word-wrap: break-word;
  min-width: 0;
  color: #50b595;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: right;
}
/*start 4つのコンテンツ*/
.nisa_start_contents{
    position: relative;
}
.nisa_start_contents_wrap{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row; /*flexアイテムを横並びに変更*/
  align-items: center;
}
.start_contents{
  max-width:400px;
  height: 250px;
  padding-top: 100px;
  margin:25px 30px;
  border: solid 3px #006666;
  border-radius: 20px;
  text-align: center;
  padding: 30px;
}
.start_contents h3{
  padding: 0 0 20px 0;
  font-weight: 700;
}
.start_contents p{
  padding: 0 0 30px 0;
}
/*背景イラスト*/
.bg_flag{
  background: url("../image/illust_flag_nohover.png");
  background-position: right bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.bg_flag:hover{
  background: url("../image/illust_flag_hover.png");
  background-position: right bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transform: translateY(-5px);
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.bg_reefcoin{
  background: url("../image/illust_reefcoin_nohover.png");
  background-position: right bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.bg_reefcoin:hover{
  background: url("../image/illust_reefcoin_hover.png");
  background-position: right bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transform: translateY(-5px);
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.bg_pencil{
  background: url("../image/illust_pencil_nohover.png");
  background-position: right bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.bg_pencil:hover{
  background: url("../image/illust_pencil_hover.png");
  background-position: right bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transform: translateY(-5px);
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}
.bg_peaple{
  background: url("../image/illust_peaple_nohover.png");
  background-position: right bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
}

.bg_peaple:hover{
  background: url("../image/illust_peaple_hover.png");
  background-position: right bottom;
  background-attachment: scroll;
  background-repeat: no-repeat;
  background-size: auto 100%;
  transform: translateY(-5px);
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

/*ダミーボタン*/
.button_dummy{
  width: 160px;
  height: 50px;
  margin: 0 auto;
  font-weight: 600;
	transition: 0.3s;
}
.button_dummy p{
  padding: 10px;
  background-color: #fff;
  border: solid 3px #006666;
  border-radius: 100px;
}
.start_contents:hover .button_dummy p{
  background-color: #ffe061;
}
.button_dummy p:hover{
  transform: translateY(-5px);
  transition: .3s cubic-bezier(0.45, 0, 0.55, 1);
}

/*ボタン*/
.button a{
  display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
  width: 130px;
  height: 40px;
  margin: 0 auto;
  font-size: 1.6rem;
  font-weight: 500;
	text-decoration: none;
	transition: 0.3s;
}

.button_item a{
  background-color: #fff;
  border: solid 3px #006666;
  border-radius: 100px;
}
.button_item a:hover{
  background-color: #ffe061;
  transform: translateY(-5px);
}

/*人物イラスト*/
.nisa_illust_peaple{
    position: relative;
    width: 100%;
    height: 150px;
    margin-bottom: 50px;
  }
.illust_peaple_1_img{
  z-index: 1000;
  height: 150%;
  position: absolute;
  top: -100%;
  left:5%;
}
.illust_peaple_2_img{
  z-index: 1000;
  height: 120%;
  position: absolute;
  top: -100%;
  right:5%;
}
.illust_peaple_4_img{
  z-index: 1000;
  height: 150%;
  position: absolute;
  top: -50%;
  right:25%;
}
.illust_peaple_3_img{
  z-index: 1000;
  height: 150%;
  position: absolute;
  top: -50%;
  left:25%;
}


/*.section_nisa_recommendation
  .section_nisa_nisa SP表示の設定*/
@media (max-width: 1250px) {
  /*背景*/
.nisa_recommendation_area_bg{
  background-image: url("../image/nisa_area_bg.png");
  background-position: center center;
  background-attachment: fixed;
  background-size: 500%;
  position: relative;
  width: 100%;
  z-index: 100;
}
.nisa_start_area_bg{
  background-image: url("../image/illust_cloud.png"),url("../image/nisa_area_bg.png");
  background-position: center,center center;
  background-repeat: no-repeat,repeat;
  background-attachment: scroll,fixed;
  background-size: contain,500%;
  position: relative;
  width: 100%;
}
}
@media (max-width: 960px) {
/*背景*/
.nisa_recommendation_area_bg{
  background-image: url("../image/nisa_area_bg.png");
  background-position: center center;
  background-attachment: fixed;
  background-size: 400%;
  position: relative;
  width: 100%;
  z-index: 100;
}
.nisa_start_area_bg{
  background-image: url("../image/illust_cloud.png"),url("../image/nisa_area_bg.png");
  background-position: center,center center;
  background-repeat: no-repeat,repeat;
  background-attachment: scroll,fixed;
  background-size: contain,400%;
  position: relative;
  width: 100%;
}
  
  /*SP再表示*/
.sp_nisa_recommendation_h2_img,.sp_nisa_start_h2_img,
.sp_illust_coin_4-1_img,.sp_illust_coin_4-2_img,
.sp_illust_coin_4-3_img,.sp_illust_coin_4-4_img{
  display: block;
}
  
 /*SP非表示*/
.nisa_recommendation_h2_img,.nisa_start_h2_img,
.illust_coin_4-1_img,.illust_coin_4-2_img,
.illust_coin_5-1_img,.illust_coin_5-2_img{
  display: none;
}
/*イラスト*/
.sp_illust_coin_4-1_img,.sp_illust_coin_4-3_img,
.sp_illust_coin_4-2_img,.sp_illust_coin_4-4_img{
  width: 50px;
}
.sp_illust_coin_4-1_img{
  position: absolute;
  top:10vw;
  left:10vw;
}
  .sp_illust_coin_4-2_img{
  position: absolute;
  top:15vw;
  right:10vw;
  }
.sp_illust_coin_4-3_img{
  position: absolute;
  top:550px;
  right:5vw;
  }
  .sp_illust_coin_4-4_img{
  position: absolute;
  top:550px;
  left:5vw;
  }
  .under_coin_top{
  top:15px;
  }
  
/*コンテンツ 全体*/
.nisa_recommendation_text,.nisa_start_text{
  display: block;
  width: 100%;
  height: auto;
  padding: 120px 0 150px 0;
}

  
/*コンテンツ 見出し*/
.sp_nisa_recommendation_h2_text,.sp_nisa_start_h2_text{
  color: #fff;
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 20px;
}
.sp_nisa_recommendation_h2_img,.sp_nisa_start_h2_img{
  display: block;
  width: 45%;
  min-width: 300px;
  margin: 0 auto 50px auto;
}
.nisa_start_h2_img{
  width: 800px;
  }
.nisa_recommendation_text p,.nisa_start_text p{
  width: 90vw;
  margin: 0 auto;
}
.section_nisa_recommendation h3{
  color: #fff;
  font-size: 3.0rem;
  text-align: center;
  margin: 0 30px;
}
  
 /*recommendation 二つの枠コンテンツ*/ 
  .nisa_recommendation_contents,.detail_wrap{
    flex-direction: column;
    align-items: center;
  }
  .nisa_investment_limit{
  height: auto;
}
  
  .detail_text_left,.detail_text_right{
    text-align:  center;
    font-size: 1.6rem;
    font-weight: 500;
  }

/*人物イラスト*/
.nisa_illust_peaple{
    position: relative;
    width: 100%;
    height: 100px;
  }
.illust_peaple_1_img{
  z-index: 1000;
  height: 140%;
  position: absolute;
  top: -100%;
  left:5%;
}
.illust_peaple_2_img{
  z-index: 1000;
  height: 110%;
  position: absolute;
  top: -100%;
  right:5%;
}
.illust_peaple_4_img{
  z-index: 1000;
  height: 140%;
  position: absolute;
  top: -50%;
  right:25%;
}
.illust_peaple_3_img{
  z-index: 1000;
  height: 140%;
  position: absolute;
  top: -50%;
  left:25%;
}

  
}

  @media (max-width: 500px) {
  .nisa_start_area_bg{
  background-image: url("../image/sp_illust_cloud.png"),url("../image/nisa_area_bg.png");
  background-position: center,center center;
  background-repeat: no-repeat,repeat;
  background-attachment: scroll,fixed;
  position: relative;
  width: 100%;
    }
      /*人物イラスト*/
    .illust_peaple_2_img{
      display: none;
    }
.illust_peaple_1_img{
  z-index: 1000;
  height: 120%;
  position: absolute;
  top: -100%;
  left:5%;
}

.illust_peaple_4_img{
  z-index: 1000;
  height: 120%;
  position: absolute;
  top: -100%;
  right:5%;
}
.illust_peaple_3_img{
  z-index: 1000;
  height: 120%;
  position: absolute;
  top:0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}
}

.footer_text{
  text-align: center;
  padding: 100px 0;
  margin: 0 35px;
}
.rogo_nakanomaki_img{
  display: block;
  margin: 0 auto;
  width: 100px;
}
.footer_copyright_text{
  text-align: center;
  padding: 30px 0 50px 0;
}