<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */

/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

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

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs
*/
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

body {
  font: 14px/1.6 "Hiragino Kaku Gothic Pro", Osaka, "メイリオ",
    "ＭＳ Ｐゴシック", "MS PGothic", Verdana, Arial, sans-serif;
  margin: 0;
  color: #ffffff;
}

#bg {
  z-index: -900;
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: #000;
}

/**** ウィンドウ幅　狭いときのnav ****/

/* Toggle(Button) */
#navToggle {
  display: none;
  position: absolute; /*to body*/
  right: 13px;
  top: 13px;
  width: 30px;
  height: 25px;
  cursor: pointer;
  z-index: 900;
}

#navToggle div {
  position: relative;
}

#navToggle span {
  display: block;
  position: absolute; /*to div*/
  width: 90%;
  border-bottom: solid 3px #000;
  -webkit-transition: 0.35s ease-in-out;
  -moz-transition: 0.35s ease-in-out;
  transition: 0.35s ease-in-out;
}

#navToggle span:nth-child(1) {
  top: 0;
}
#navToggle span:nth-child(2) {
  top: 11px;
}
#navToggle span:nth-child(3) {
  top: 22px;
}

/*Media-queries_____________________________________*/

@media screen and (max-height: 640px) {
}

@media screen and (max-width: 640px) {
  header nav {
    position: fixed;
    right: 0;
    top: -1000px; /*通常時はビュー外に追いやる*/
    background: rgba(10, 80, 120, 0.9);
    width: 100%;
    -webkit-transition: 0.5s ease-in-out;
    -moz-transition: 0.5s ease-in-out;
    -o-transition: 0.5s ease-in-out;
    transition: 0.5s ease-in-out;
    text-align: left;
    z-index: 900;
  }

  header ul {
    margin: 0;
  }

  header ul li {
    display: block;
    margin: 0;
    border-bottom: dotted 1px #fff;
    line-height: 3;
    text-align: center;
    font-size: 120%;
    font-weight: 900;
  }

  header ul li a {
    display: block;
    padding: 20px 0 15px 0;
  }

  header ul li::after {
    content: "";
  }
  header ul li:last-child {
    border-bottom: none;
  }

  /* Toggle(Button) */
  #navToggle {
    display: block;
    position: fixed;
    background-color: rgba(38, 201, 255, 0.7);
    padding: 10px;
    border-radius: 5px;
  }

  /* Click Toggle(Button) */
  .openNav #navToggle span:nth-child(1) {
    top: 11px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  .openNav #navToggle span:nth-child(2),
  .openNav #navToggle span:nth-child(3) {
    top: 11px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  /*header menu*/
  .openNav nav {
    -moz-transform: translateY(1090px);
    -webkit-transform: translateY(1090px);
    transform: translateY(1090px);
  }
}

/**** ウィンドウ幅　大きいときのnav ****/
@media screen and (min-width: 640px) {
  nav {
    background-color: #000;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 900;
    font-size: 90%;
    max-height: 30px;
  }

  nav img {
    max-height: 18px;
  }

  nav a {
    color: #fff;
    font-weight: 900;
  }

  nav a:visited {
    color: #fff;
  }

  nav ul {
    max-width: 980px;
    margin: 0 auto;
  }

  /** widthの数字をメニューの数に変更する **/

  nav ul li {
    float: left;
    overflow: hidden;
    width: calc(100% / 6);
    text-align: center;
    letter-spacing: 6px;
  }

  nav a {
    display: block;
    padding: 5px 0;
  }

  nav a:hover {
    background-color: #10a5d6;
    color: #000;
    font-weight: 900;
  }
}

/**** セクション ****/
section {
  overflow: hidden;
  padding: 30px 0px;
  margin: 20px auto 60px auto;
  background-color: rgba(0, 0, 0, 0.3);
  text-align: center;
}

section h2 {
  font-size: 170%; /*フォントサイズの指定*/
  color: #fff;
  max-width: 600px;
  margin: 0 auto;
  font-weight: 900;
  padding-bottom: 10px;
  letter-spacing: 4px; /*文字と文字の間隔をあける*/
  border-bottom: 1px solid #555; /*文字の下部に線を描く*/
}

section h3 {
  width: 90%; /*横幅の指定*/
  font-size: 130%; /*フォントサイズの指定*/
  color: #fff;
  margin: 0 auto;
  font-weight: 900;
  padding: 15px 0 10px 0;
  letter-spacing: 2px; /*文字と文字の間隔をあける*/
  border-bottom: 1px solid #26c9ff; /*文字の下部に線を描く*/
}

/**** 共通 ****/
p {
  font-size: 100%; /*フォントサイズの指定*/
  color: #fff; /*文字色の変更*/
  letter-spacing: 1px; /*文字と文字の間隔をあける*/
  line-height: 150%; /*行間をあける*/
}

h4 {
  margin-bottom: 40px;
}

li {
  list-style: none;
}

.guide {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
}

a {
  color: #ffffff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
  text-decoration: none;
}

a:visited {
  color: #ffffff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}
a:hover {
  color: #ffffff;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s;
}

ul {
  margin: 0;
  padding: 0;
}

/*****　トップ部分　*****/

#particles {
  width: 100vw;
  height: 100vh;
  display: flex; /* 要素をflexboxに対応させる */
  align-items: center; /* 縦方向の中央揃え */
  justify-content: center; /* 横方向の中央揃え */
  flex-direction: column; /* 子要素の並びを上から下にする（要素の改行に対応） */
}

#particles img {
  margin: -80px auto 20px auto;
  max-width: 800px;
}

#particles h1 {
  font-size: 130%;
  padding: 0 3px;
  margin-bottom: 10px;
}

#particles a {
  background: #10a5d6;
  color: #000;
  padding: 5px 10px;
  text-align: center;
  letter-spacing: 2px;
  font-weight: 900;
  font-size: 120%;
  line-height: 130%;
}

#particles a:hover {
  background-color: #000;
  color: #10a5d6;
}

@media only screen and (max-width: 768px) {
  #particles {
    width: 90%;
    margin: 0 auto;
  }

  #particles img {
    width: 90%;
  }

  #particles a {
    display: block;
  }

  #particles p {
    color: rgba(0, 0, 0, 0);
  }
}

/*----------------- ボックス */

.ul_box {
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
}

.ul_box a {
  text-decoration: underline;
  color: #10a5d6;
  padding: 0;
}

.ul_box p {
  text-align: left;
  color: white;
  line-height: 180%;
}

.ul_box li {
  width: 400px;
  min-height: 250px;
  float: left;
  overflow: hidden;
  margin: 20px;
  padding: 20px;
  background-color: rgba(0, 0, 0, 0.7);
  border: solid 1px #10a5d6;
}

@media screen and (max-width: 1020px) {
  .ul_box li {
    max-width: 980px;
    width: 80%;
    min-height: 150px;
    margin: 20px auto;
    padding: 20px;
    float: none;
  }
}

/***** share *****/

.fb_box {
  width: 50%;
  margin: 40px auto;
  text-align: center;
  z-index: -100;
}

iframe {
  width: ;
  text-align: center;
}

/**** modal ****/

.remodal p {
  text-align: left;
  color: #333;
  line-height: 200%; /*行間をあける*/
  padding: 10px 0 30px 0;
}

.remodal img {
  max-width: 320px;
}

@media only screen and (max-width: 768px) {
  .remodal img {
    width: 90%;
    margin: 0 auto;
  }
}

/**** 支援内容 ****/

.assist_block {
  max-width: 420px;
  min-height: 200px;
  float: left;
  overflow: hidden;
  margin: 20px;
  padding: 20px;
  background-color: rgba(38, 201, 255, 0.2);
}

.assist_block p {
  text-align: left;
}

@media screen and (max-width: 1020px) {
  .assist_block {
    width: 80%;
    max-width: 980px;
    margin: 20px auto;
    padding: 20px;
    float: none;
  }
}

/**** アドバイザー ****/

#adv_ul img {
  width: 100%;
  margin: 10px auto;
}

#adv_ul h3 {
  width: 70%; /*横幅の指定*/
  padding: 5px 0;
  margin-bottom: 10px;
  font-size: 120%; /*フォントサイズの指定*/
  letter-spacing: 2px; /*文字と文字の間隔をあける*/
  border-bottom: solid 1px #ffffff;
  color: #fff;
}

#adv_ul a {
  text-decoration: none;
  color: #fff;
  padding: 0;
  font-size: 90%;
}

#adv_ul li {
  max-width: 245px;
  min-height: 350px;
  float: left;
  overflow: hidden;
  margin: 10px 20px;
  padding: 10px 20px;
}

@media screen and (max-width: 480px) {
  #adv_ul li {
    width: 90%;
    max-width: 980px;
    margin: 10px auto;
    padding: 10px 0;
    float: none;
  }
}

/**** ゲスト ****/

#gue_ul img {
  width: 100%;
  margin: 10px auto;
}

#gue_ul h3 {
  width: 70%; /*横幅の指定*/
  padding: 5px 0;
  margin-bottom: 10px;
  font-size: 120%; /*フォントサイズの指定*/
  letter-spacing: 2px; /*文字と文字の間隔をあける*/
  border-bottom: solid 1px #ffffff;
  color: #fff;
}

#gue_ul a {
  text-decoration: none;
  color: #fff;
  padding: 0;
  font-size: 90%;
}

#gue_ul li {
  max-width: 245px;
  min-height: 300px;
  float: left;
  overflow: hidden;
  margin: 10px 20px;
  padding: 10px 20px;
}

@media screen and (max-width: 480px) {
  #gue_ul li {
    width: 90%;
    max-width: 980px;
    margin: 10px auto;
    padding: 10px 0;
    float: none;
  }
}

/**** パートナー ****/

#partner {
  background-color: rgba(255, 255, 255, 1);
  margin: 20px auto 50px auto;
  width: 100%;
}

#partner h2 {
  color: #000000;
}
#partner p {
  color: #000000;
}

#partner a img {
  max-width: 180px;
  max-height: 80px;
  margin: 40px 20px;
}

/**** メンター ****/

#men_ul img {
  width: 100%;
  margin: 10px auto;
}

#men_ul h3 {
  width: 70%; /*横幅の指定*/
  padding: 5px 0;
  margin-bottom: 10px;
  font-size: 120%; /*フォントサイズの指定*/
  letter-spacing: 2px; /*文字と文字の間隔をあける*/
  border-bottom: solid 1px #ffffff;
}

#men_ul a {
  text-decoration: none;
  color: #fff;
  padding: 0;
}

#men_ul li {
  max-width: 245px;
  min-height: 350px;
  float: left;
  overflow: hidden;
  margin: 10px 20px;
  padding: 10px 20px;
}

@media screen and (max-width: 480px) {
  #men_ul li {
    width: 90%;
    max-width: 980px;
    margin: 10px auto 50px auto;
    padding: 0px 0;
    float: none;
  }
}

/**** adoption(採択企業) ****/

@media screen and (max-width: 920px) {
  #adoption {
    margin-bottom: 20px;
    width: 95%;
  }

  #adoption a img {
    max-width: 100px;
    max-height: 50px;
    margin: 30px 30px;
  }
}

#adoption {
  width: 100%;
  background-color: #fff;
}

#adoption h2 {
  color: #333;
  letter-spacing: 1px;
  border: none;
}
#adoption p {
  color: #333;
}

#adoption a {
  color: #10a5d6;
  font-weight: 900;
}

#adoption a:visited {
  color: #10a5d6;
  font-weight: 900;
}

#adoption a img {
  max-width: 200px;
  max-height: 80px;
  margin: 50px 20px;
}

.adop {
  color: #555;
  line-height: 400%;
  letter-spacing: 3px;
}

.adop a {
  color: #333;
  line-height: 200%;
  letter-spacing: 3px;
  border-bottom: solid 1px #10a5d6;
}

/**** フッター ****/

footer {
  width: 100%; /*横幅の指定*/
  text-align: center; /*文字の中央寄せ*/
  padding-top: 10px; /*文字上部の余白指定*/
  padding-bottom: 100px; /*文字下部の余白指定*/
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.7);
}

footer p {
  color: #ffffff;
  font-size: 80%;
}

footer a {
  text-decoration: underline #26c9ff dotted;
  letter-spacing: 2px;
}
footer a:hover {
  color: #26c9ff;
  background-color: #fff;
}

footer h3 {
  letter-spacing: 2px;
}

/**** ページトップへもどる ****/

#pageTop {
  position: fixed;
  bottom: 20px;
  right: 30px;
}

#pageTop a {
  display: block;
  z-index: 999;
  padding: 10px 0 0 2px;
  width: 40px;
  height: 30px;
  background-color: rgba(38, 201, 255, 0.6);
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  border-radius: 3px;
}

#pageTop a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/**** ボタン ****/

.btn {
  color: #fff; /*文字色の変更*/
  font-size: large;
  font-weight: 900;
  margin: 400px auto;
  background-color: #26c9ff; /*背景色の指定*/
  padding: 20px 40px;
  border-radius: 5px; /*線の角を丸くする*/
  letter-spacing: 1px; /*文字と文字の間隔をあける*/
  text-decoration: none; /*ブラウザ標準のリンク装飾をオフに*/
}

.btn:a visited {
  color: #fff;
}

.btn:hover {
  background-color: #ffffff; /*背景色の指定*/
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; /*ホバー時の変化をなめらかに*/
  color: #26c9ff; /*文字色の指定*/
  overflow: hidden; /*おまじない*/
}

/**** big btn ****/

.btn_big {
  color: #fff; /*文字色の変更*/
  font-size: 170%;
  font-weight: 900;
  min-height: 120px;
  background-color: #26c9ff; /*背景色の指定*/
  padding: 20px 40px;
  border-radius: 5px; /*線の角を丸くする*/
  letter-spacing: 1px; /*文字と文字の間隔をあける*/
  text-decoration: none; /*ブラウザ標準のリンク装飾をオフに*/
}

.btn_big:a visited {
  color: #fff;
}

.btn_big:hover {
  background-color: #ffffff; /*背景色の指定*/
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; /*ホバー時の変化をなめらかに*/
  color: #26c9ff; /*文字色の指定*/
  overflow: hidden; /*おまじない*/
}

/**** エントリーボタン ****/

#entry_btn {
  position: fixed;
  bottom: 30px;
  width: 420px;
  text-align: center;
  padding: 20px 40px;
  color: #fff; /*文字色の変更*/
  font-size: large;
  font-weight: 900;
  background-color: rgba(38, 201, 255, 0.9); /*背景色の指定*/
  border-radius: 5px; /*線の角を丸くする*/
  letter-spacing: 1px; /*文字と文字の間隔をあける*/
  text-decoration: none; /*ブラウザ標準のリンク装飾をオフに*/
  left: calc(50% - 250px);
}

@media screen and (max-width: 480px) {
  #entry_btn {
    bottom: 30px;
    width: 40%;
    max-width: 200px;
    left: calc(50% - 160px);
  }
}

#entry_btn:a visited {
  color: #fff;
}

#entry_btn:hover {
  background-color: #ffffff; /*背景色の指定*/
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  transition: all 0.5s; /*ホバー時の変化をなめらかに*/
  color: #26c9ff; /*文字色の指定*/
  overflow: hidden; /*おまじない*/
}
</pre></body></html>