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

/* 共通設定
------------------------------*/
/* ユーザー設定準拠 */
html {
  font-size: 100%;
  background: linear-gradient(
  -45deg,
  #fff 25%, #f0f0f0 25%,
  #f0f0f0 50%, #fff 50%,
  #fff 75%, #f0f0f0 75%,
  #f0f0f0
  );
  background-size: 100px 100px;
  scroll-behavior: smooth;
}

body {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  line-height: 1.7;
  color: #000;
}

/* aタグ傍線除去 */
a {
  text-decoration: none;
}

/* 表示領域最大幅制御 */
.container {
  display: block;
  margin: 40px auto 0 auto;
  max-width: 1400px;
}
@media screen and (min-width: 768px) {
  .container {
    display: block;
    margin: 100px auto 0 auto;
    min-width: 1002px;
  }
}

/* 画像最大幅制御 */
img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  padding: 0;
}


/* HEADER
------------------------------ */
.page-header {
  display: flex;
  position: fixed;
  top: 0;
  z-index: 99;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  background-color: rgba(254, 254, 254, 0.7);
}
@media screen and (min-width:768px) {
  .page-header {
    height: 100px;
  }
}

.logo-container {
  width: 15%;
}
@media screen and (min-width: 768px) {
  .logo-container {
    width: 20%;
    transition: all 0.2s ease;
  }
  .logo-container:hover {
    opacity: 0.8;
  }
}

.logo img {
  max-height: 40px;
}
@media screen and (min-width: 768px) {
  .logo img {
    max-height: 100%;
  }
}

nav {
  width: 85%;
}
@media screen and (min-width:768px) {
  nav {
    width: 80%;
  }
}

.main-nav {
  display: flex;
  width: 100%;
  height: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 0.875em;
  text-transform: uppercase;
  text-align: center;
  line-height: 10px;
  list-style: none;
}
@media screen and (min-width:768px) {
  .main-nav {
    font-size: 1.25em;
    line-height: 80px;
  }
}

.main-nav li {
  padding-top: 15px;
  margin-left: 2px;
  border-left: 2px solid #fa5089;
  width: 25%;
  box-sizing: border-box;
}

.main-nav a {
  display: inline-block;
  width: 100%;
  height: auto;
  color: #fa5089;
}
@media screen and (min-width:768px) {
  .main-nav a {
    transition: all 0.2s ease;
  }
  .main-nav a:hover {
    color: rgba(250, 80, 137, 0.3);
  }
}


/* ジャンプ用
---------- */
a.just-margin {
  display: block;
  padding-top: 40px;
  margin-top: -40px;
}
@media screen and (min-width: 768px) {
  a.just-margin {
    padding-top: 100px;
    margin-top: -100px;
  }
}


/* Content-wrapper
------------------------------ */
.content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}


/* Head-Container＋Content-Container
------------------------------ */
/* Head-Container
--------------------*/
.head-container {
  display: block;
  margin: 0 auto;
  width: 100%;
  height: auto;
  background-color: #fa5089;
  color: #fff;
  text-align: center;
  border-top: 10px double #fff;
  border-bottom: 10px double #fff;
}

.content-title {
  font-family: 'Open Sans', 'Noto Sans JP', sans-serif;
  font-size: 1.5em;
  letter-spacing: 0.125em;
}
@media screen and (min-width: 768px) {
  .content-title {
    font-size: 2em;
  }
}


/* Content-Container
--------------------*/
/* ★HTMLから整理★ */
.content-container1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  height: auto;
}

.content-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-width: 334px;
  min-height: 564px;
}
@media screen and (min-width: 768px) {
  .content-container {
    flex-direction: row;
    align-items: stretch;
    width: 100%;
    height: auto;
    min-width: 1002px;
  }
}

.content-container-cast-production {
  display: flex;
  flex-direction: column;
  min-width: 334px;
  min-height: 376px;
  width: 100%;
  height: auto;
}

.white-back {
  background-color: rgba(254, 254, 254, 0.5);
}


/* スマホ時非表示
------------------------------ */
@media screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}


/* PC時非表示
------------------------------ */
@media screen and (min-width: 768px) {
  .sp-only {
    display: none;
  }
}


/* 他、各コンテンツ毎の個別設定
------------------------------ */
/* Youtubeとか
-------------------- */
.youtube-link {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-width: 400px;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  .youtube-link {
    width: 50%;
  }
}

.youtube-ch-link {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 400px;
  height: auto;
}

.youtube-ch-link a {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .youtube-ch-link a img {
    transition: all 0.2s ease;
  }
  .youtube-ch-link a:hover img {
    opacity: 0.9;
  }
}

.twitter-embed-timeline {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  padding: 5%;
}
@media screen and (min-width: 768px) {
  .twitter-embed-timeline {
    width:50%;
  }
}

/* メールフォーム
-------------------- */
.form-button-container {
  min-width: 404px;
  width: 100%;
  height: auto;
  padding: 15px 0;
}

.form-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px 0;
  background-color: rgba(250, 80, 137, 0.1);
}

.form {
  text-align: left;
  width: 90%;
  padding: 10px;
}

.form-head {
  text-align: center;
  padding-bottom: 10px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125em;
}

.form-title {
  margin-top: 0.5em;
  margin-bottom: 0.25em;
  margin-left: 0.25em;
  color: rgba(0, 0, 0, 0.9);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125em;
}

.form input[type="text"] {
  width: 100%;
  outline: none;
}

.form textarea {
  display: block;
  margin: 0 auto;
  width: 100%;
  outline: none;
}

.form input[type="submit"] {
  width: 100%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.125em;
}

.fm-banner {
  text-align: center;
}


/* フォーム隠し
------------------------------ */
/* 全体
-------------------- */
.hidden_box {
  text-align: center;
  margin: 2em 0;/* 前後の余白 */
  padding: 0;
}

/* ボタン装飾
-------------------- */
.hidden_box label {
  display: inline-block;
  width: 400px;
  margin: 0 auto;
  padding: 15px;
  color: #000;
  font-size: 1.5em;
  font-weight: bold;
  font-family: 'Noto Sans JP', sans-serif;
  background-color: rgba(250, 80, 137, 0.3);
  border: 2px solid #000;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .hidden_box label {
    transition: all 0.2s ease;
  }
  .hidden_box label:hover {
    color: #fff;
    background: #fa5089;
  }
}

label.pp {
  display: block;
  width: 80%;
  margin: 2em auto 1em;
  padding: 0;
  padding: 0.5em;
  font-size:0.875em;
  text-align: center;
}


/* おたよりアイコン
-------------------- */
.form-button::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0e0";
  color: #fff;
}


/* チェックは見えなくする
-------------------- */
.hidden_box input {
  display: none;
}

/* 中身を非表示にしておく
-------------------- */
.hidden_box .hidden_show {
  display: block;
  height: 0;
  padding: 0;
  margin: 1em auto;
  border: 1px solid #000;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}


.hidden_box .hidden_show input[type="text"] {
  display: inline;
  border: 1px solid #000;
  cursor: text;
  background-color: #fff;
}

.hidden_box .hidden_show input[type="submit"] {
  display: block;
  width: 100%;
  margin: 1em auto;
  padding: 0.25em 1em;
  font-weight: bold;
  border: 2px solid #000;
  cursor: pointer;
  background-color: rgba(250, 80, 137, 0.3);
}
@media screen and (min-width: 768px) {
  .hidden_box .hidden_show input[type="submit"] {
    transition: all 0.2s ease;
  }
  .hidden_box .hidden_show input[type="submit"]:hover {
    color: #fff;
    background: #fa5089;
  }
}

.hidden_box .hidden_show textarea {
  border: 1px solid #000;
  cursor: text;
  background-color: #fff;
  font-weight: 600;
  overflow-y: auto;
}


.hidden_box .hidden_show_policy {
  height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
  transition: 0.5s;
}


/* クリックで中身表示
-------------------- */
.hidden_box input:checked ~ .hidden_show {
  width: 400px;
  height: auto;
  padding: 10px 10px;
  background-color: white;
  opacity: 1;
}


.hidden_box input:checked ~ .hidden_show_policy {
  width: 100%;
  height: 20em;
  padding: 10px;
  font-size: 0.875em;
  overflow-y: scroll;
  opacity: 1;
  background-color: #fff;
}

/* プライバシーポリシー
-------------------- */
.policy_head {
  font-weight: bold;
  font-size: 1.125em;
  margin-top: 0.5em;
  margin-bottom: 1em;
  text-align: center;
}
.policy_head2 {
  padding-right: 0.5em;
  font-weight: bold;
  border-bottom: 1px solid #fa5089;
  border-right: 1px solid #fa5089;
}

.policy_body {
  padding-bottom: 3em;
}
/* フォーム隠しここまで
------------------------------ */
/* 概要
-------------------- */
.story-text-frame {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 564px;
  padding: 2.5em 0;
  border: 0.5em solid rgba(250, 80, 137, 0.2);
  background-color: rgba(250, 80, 137, 0.2);
  text-align: center;
  color: #262626;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.875em;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 768px) {
  .story-text-frame {
    min-height: 500px;
    border: 2em solid rgba(250, 80, 137, 0.2);
    margin: 2em;
    font-size: 1em;
  }
}

/* span
--------------------*/
.shadow {
  text-shadow:
    1px 1px 0px rgba(255, 80, 137, 0.25),
    2px 2px 0px rgba(250, 80, 137, 0.25),
    4px 4px 4px rgba(250, 80, 137, 0.1);
}
.border {
  border-bottom: 0.25em solid #fff;
}

.story-text1 {
  font-size: 1.25em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  .story-text1 {
    font-size: 1.5em;
  }
}

.story-text2 {
  margin-bottom: 1em;
  line-height: 200%;
}
@media screen and (min-width: 768px) {
  .story-text2 {
    font-size: 1.25em;
  }
}

.story-text3 {
  margin-top: 0.5em;
  margin-bottom: 1.5em;
  font-size: 1.25em;
}
@media screen and (min-width: 768px) {
  .story-text3 {
    font-size: 1.5em;
  }
}

.story-text4 {
  margin-bottom: 1em;
  font-size: 1.125em;
}
@media screen and (min-width: 768px) {
  .story-text4 {
    font-size: 1.25em;
  }
}

.story-text5 {
  font-family: 'Open Sans', sans-serif;
  font-size: 1.25em;
}
@media screen and (min-width: 768px) {
  .story-text5 {
    font-size: 1.5em;
  }
}

.excl-icon::after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f12a";
  color: #fa5089;
}


/* キャラクター
-------------------- */
.character-container {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: auto;
  min-width: 334px;
  min-height: 564px;
}

.character-background {
  display: flex;
  justify-content: center;
  position: absolute;
  z-index: 1;
  width: 92%;
  height: 94%;
  background-color: white;
}

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

.character-profile-text {
  position: absolute;
  z-index: 3;
  bottom: 2%;
  width: 94%;
  height: auto;
  padding: 0;
  background-color: rgba(255, 255, 255, 0.85);
  text-align: center;
  border: 1px solid #7f7f7f;
}

.character-name {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5em;
}

.character-name-line-kanadech {
  background: linear-gradient(180deg, transparent 75%, #ffe970 75%);
}

.character-name-line-kanonch {
  background: linear-gradient(180deg, transparent 75%, #ff9bc6 75%);
}

.character-name-line-ritsuch {
  background: linear-gradient(180deg, transparent 75%, #57aaed 75%);
}

.cast-name::before {
  content: "ＣＶ."
}

.cast-name {
  font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.character-profile-birth {
  margin-top: 2.5%;
  font-size: 0.875em;
  font-weight: 600;
  text-align: center;
  color: rgba(0, 0, 0, 0.9);
}

.character-profile {
  font-size: 0.875em;
  font-weight: 600;
  display: inline-block;
  margin-bottom: 2.5%;
  text-align: left;
  color: rgba(0, 0, 0, 0.9);
}

.profile-character {
  display: inline-block;
  margin-top: 1.25%;
  margin-bottom: 2.5%;
}

/* タブ切り替え
------------------------------ */
/* タブエリア全体 */
.tab_wrap {
  width: 100%;
  margin: 0;
}


/* ラジオボタン非表示 */
input[type="radio"] {
  display: none;
}


/* inline-blockの余白を消すためにfont-size: 0; */
.tab_area {
  margin: 0;
  font-size: 0;
}


/* タブ化したラベルそのもの。つまりタブ */
.tab_area label {
  display: inline-block;
  width: 33.33%;
  margin: 0;
  padding: 5px 0;
  color: #676767;
  text-align: center;
  font-size: 1rem;
  font-family: 'Noto Sans JP', sans-serif;
  cursor: pointer;
}


/* タブの部分を非表示にしておく。
input ~ checkedでhtmlを書いているので、
チェックが全てから外れる事がないし、
予めパネルの領域は確保されているし、消えもしない。*/
.tab_panel {
  width: 100%;
  padding: 0;
  display: none;
}

/* タブ1がチェックされた時、というか表示中のラベルの表示 */
#tab1:checked ~ .tab_area .tab1_label {
  background-color: rgba(255, 240, 149, 1);
  color: #000;
}


/* 該当するタブがチェックされたとき、
↑の.tab_panelのdisplay: none;を上書きして表示する。
idで指定が入るのでちょっと混乱する。強さの問題かな？ */
#tab1:checked ~ .panel_area #panel1 {
  display: block;
}


#tab2:checked ~ .tab_area .tab2_label {
  background-color: rgba(255, 180, 211, 1);
  color: #000;
}


#tab2:checked ~ .panel_area #panel2 {
  display: block;
}


#tab3:checked ~ .tab_area .tab3_label {
  background-color: rgba(129, 191, 242, 1);
  color: #000;
}


#tab3:checked ~ .panel_area #panel3 {
  display: block;
}


/* タブ切り替えここまで
------------------------------*/
/* キャラクター毎の背景色
-------------------- */
.kanade-ch {
  background-color: rgba(255, 240, 149, 1);
}


.kanon-ch {
  background-color: rgba(255, 180, 211, 1);
}


.ritsu-ch {
  background-color: rgba(129, 191, 242, 1);
}

/* キャスト＆プロダクション
-------------------- */
.twitter-icon-button {
  display: inline-block;
  vertical-align: middle;
  padding: 0 0.2em;
  margin-left: 0.5em;
  border-radius: 0.1em;
  color: #262626;
  font-size: 1.25rem;
  background-color: #fff;
  font-family: 'Open Sans', sans-serif;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .twitter-icon-button {
    transition: all 0.2s ease;
  }
  .twitter-icon-button:hover {
    color: #fff;
    background-color: #00b9ff;
  }
}

.twitter-icon::before {
  font-family: "Font Awesome 5 Brands";
  content: '\f099';
  color: #00b9ff;
}

.cast-container {
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  min-height: 94px;
  min-width: 334px;
  width: 100%;
  height: auto;
  color: #262626;
  border-bottom: 10px double #fff;
}
@media screen and (min-width: 768px) {
  .cast-container {
    flex-direction: row;
  }
}

.cp-name1 {
  display: inline-block;
  margin-right: 20%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .cp-name1 {
    margin: 0;
    margin-left: 10%;
    font-size: 2em;
  }
}

.cp-name2 {
  display: inline-block;
  margin-right: 20%;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .cp-name2 {
    margin: 0 auto;
    font-size: 2em;
  }
}

.cp-name3 {
  display: inline-block;
  margin-right: 20%;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .cp-name3 {
    margin: 0;
    margin-left: 75%;
    font-size: 2em;
  }
}

.cp-name4 {
  display: inline-block;
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .cp-name4 {
    font-size: 2em;
  }
}

.cp-name5 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 114px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.5em;
}
@media screen and (min-width: 768px) {
  .cp-name5 {
    font-size: 2em;
  }
}

@media screen and (min-width: 768px) {
  .e-spring-logo {
    transition: all 0.2s ease;
  }
  .e-spring-logo:hover {
    opacity: 0.5;
  }
}


/* キャスト毎の背景色
-------------------- */
.kanade-ch-inside {
  background-color: rgba(255, 240, 149, 1);
}


.kanon-ch-inside {
  background-color: rgba(255, 180, 211, 1);
}


.ritsu-ch-inside {
  background-color: rgba(129, 191, 242, 1);
}

.character-desigh {
  background-color: rgba(240, 240, 240, 1);
  padding-top: 1em;
  padding-bottom: 0.5em;
}

.production-container-inside {
  background-color: rgba(187, 242, 222, 1);
  padding-top: 1em;
  padding-bottom: 0.5em;
}

/* FOOTER
------------------------------ */
.foot-container {
  height: 50px;
  background-color: #fa5089;
  line-height: 50px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #fff;
}
</pre></body></html>