
/************************************
** コピー用
************************************/
/* コピー用
************************************/
/*コピー用*/

/*--------------------------------------------------------------
# ナビゲーションメニュー
--------------------------------------------------------------*/
/**
* Desktop Navigation
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0 10px 30px;
  font-size: 15px;
  font-weight: 500;
  color: #fff;
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar li:hover > a {
  color: #47b2e4;
}

.navbar .getstarted {
  padding: 8px 20px;
  margin-left: 30px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid #47b2e4;
  font-weight: 600;
}

.navbar .getstarted:hover {
  color: #fff;
  background: #31a9e1;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 10px 20px;
  font-size: 14px;
  text-transform: none;
  font-weight: 500;
  color: #0c3c53;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar .dropdown:hover > ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover > ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }
  .navbar .dropdown .dropdown:hover > ul {
    left: -100%;
  }
}

/**
* モバイルナビゲーション
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.bi-x {
  color: #fff;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }
  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(40, 58, 90, 0.9);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a {
  padding: 10px 20px;
  font-size: 15px;
  color: #37517e;
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .getstarted {
  margin: 15px;
  color: #37517e;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
  color: #47b2e4;
}

.navbar-mobile .dropdown > .dropdown-active {
  display: block;
}

/*--------------------------------------------------------------
# ヘッダー
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
}

#header.header-scrolled, #header.header-inner-pages {
  background: rgba(40, 58, 90, 0.9);
}

@media (max-width: 768px) {
  #header.header-scrolled, #header.header-inner-pages {
    background: rgba(0, 0, 0, 0);
}}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

@media (max-width: 768px){
#header .logo {
    font-size: calc(70vw/13.66);
}}

#header .logo a {
  color: rgba(0,0,0,0);
}

@media (max-width: 768px){
  #header .logo a {
    color: rgb(0 0 0 / 0%);
}}

#header .logo img {
  max-height: 40px;
}


/************************************
** ヘッダー
************************************/

/* ヘッダーキャラ
************************************/
.header_chara_position {
    position: absolute;
    top: 50px;
    right: 60px;
    z-index: 0;
}

/*ロゴ
************************************/
.header_logo {
    position: absolute;
    top: 120px;
    left: 100px;
    transform: rotate(-2deg);
    z-index: 2;
}


@media screen and (max-width: 768px){
.logo-img-sp {
    width: 50%;
    position: relative;
    bottom: 120px;
    right: 80px;
}}

/* 概要ボックス_PC
************************************/
.concept {
    text-align: left;
    font-size: 12pt;
    line-height: 21px;
    background: url("https://solar-jp.net/img/waku.png")left top no-repeat;
    width: 430px;
    height: 270px;
    transform: rotate(-2deg);
    position: absolute;
    top: 350px;
    left: 100px;
    padding: 23px 20px 10px;
    z-index: 1;
}

.concept_btn {
    position: absolute;
    left: 50px;
    bottom: -12px;
    background-color: rgb(255 255 255 / 90%);
    padding: 10px 8px;
    border-radius: 20px;
    font-size: 14px;
    border: solid 2px #fb2273;
}

/* 概要ボックス_mobile
************************************/
.sp_enjoy {
    text-align: left;
    display: block;
    position: relative;
    font-size: 12px;
    line-height: 1.5em;
    background: 0;
    background-color: rgba(255,255,255,0.9);
    background-size: auto 217px;
    width: 82%;
    height: auto;
    border: #ff8635 solid 8px;
    border-image: url("https://solar-jp.net/img/border-bar-mobile.png") 24 24 round;
    transform: none;
    top: 240px;
    left: auto;
    margin: 0 auto;
    padding: 15px 15px 15px;
    z-index: 1;
}
.sp_enjoy .enjoy_dokopika_tit {
	position: absolute;
	top: -30px;
	left: -35px;
	font-size: 0;
	line-height: 0;
	background-size: contain;
	width: 254px;
	height: 55px
}

@media screen and (max-width: 420px){
.sp_enjoy {
  top: 380px;
}
.concept_btn {
    left: 150px;
    bottom: -28px;
    background-color: rgb(255 255 255 / 100%);

}}

@media screen and (max-width: 380px){
  .sp_enjoy {
  top: 300px;
  }
  .concept_btn {
    left: 100px;
}}

@media screen and (max-width: 330px){
  .sp_enjoy {
  top: 240px;
  }
  .concept_btn {
    left: 70px;
}}


/* 概要見出し
************************************/
.header-block-p {
    font-size: 20px;
    font-weight: 700;
    color: #FF8C00;
    background: -webkit-linear-gradient(0deg, #FF0080, #FF8C00, #40E0D0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 6px 0px 8px 0px;
    padding: 2px 0px 0px 0px;
}

/* 境目のシャドウ
************************************/
.header_shadow {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background: url("https://solar-jp.net/img/btm-grad-long.png") repeat-x left 62vw;
    index:2;
}


/*--------------------------------------------------------------
# ファーストビュー
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 1000px;
  background: #37517e;
  background: URL("https://solar-jp.net/img/bg4.jpg");
  background-size:cover;
  background-attachment: fixed;
}

#hero .container {
  padding-top: 72px;
}

#hero h1 {
  margin: 0 0 10px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero h2 {
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 50px;
  font-size: 24px;
}

#hero .btn-get-started {
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px 11px 28px;
  border-radius: 50px;
  transition: 0.5s;
  margin: 10px 0 0 0;
  color: #fff;
  background: #47b2e4;
}

#hero .btn-get-started:hover {
  box-shadow: 5px 5px 15px #fff3af;
}

#hero .btn-watch-video {
  font-size: 16px;
  display: flex;
  align-items: center;
  transition: 0.5s;
  margin: 10px 0 0 25px;
  color: #fff;
  line-height: 1;
}

#hero .btn-watch-video i {
  line-height: 0;
  color: #fff;
  font-size: 32px;
  transition: 0.3s;
  margin-right: 8px;
}

#hero .btn-watch-video:hover i {
  color: #47b2e4;
}

#hero .animated {
  animation: up-down 2s ease-in-out infinite alternate-reverse both;
}

@media (max-width: 991px) {
  #hero {
    height: 80vh;
    text-align: center;
  }
  #hero .animated {
    -webkit-animation: none;
    animation: none;
  }
  #hero .hero-img {
    text-align: center;
  }
  #hero .hero-img img {
    width: 50%;
  }
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 28px;
    line-height: 36px;
  }
  #hero h2 {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }
  #hero .hero-img img {
    width: 70%;
  }
}

@media (max-width: 768px) {
  #hero .hero-img img {
    width: 80%;
  }
  #hero .btn-get-started {
    background: linear-gradient(45deg, #E47218, #ECCE21);
    border: solid 2px #000;
    border-radius: 10em;
    color: #fff;
    font-weight: 700;
    width: 250px;
    line-height: 34px;
    font-size: calc(62vw/13.66);
    position: relative;
    top: 400px;
  }
}

@-webkit-keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

@keyframes up-down {
  0% {
    transform: translateY(10px);
  }
  100% {
    transform: translateY(-10px);
  }
}

/************************************
** おすすめ記事
************************************/
/* navi */
.cont-top-navi{ }
.cont-top-navi .cont-top-content{ background-color: #ffea00; }

.navi-bnr > a{ display: block; position: relative; text-decoration: none; border: rgba(255,255,255,.6) solid 2px; padding: .3em; margin-bottom: 10px;}
.navi-bnr > a::before,.navi-bnr > a::after,.navi-bnr > a > .inner::before,.navi-bnr > a > .inner::after{ content:""; display: block; width: calc(33em * 0.1); height: calc(26.777em * 0.1); background: url("https://solar-jp.net/img/common-flora-l.png") no-repeat center center; background-size: contain; position: absolute; }
.navi-bnr > a::before{ top:.5em; left:.4em;}
.navi-bnr > a::after{ top:.5em; right:.4em; transform:scale(-1, 1);}
.navi-bnr > a > .inner{ border: rgba(255,255,255,.6) solid 2px; background-color: rgba(255,255,255,.1); padding: 1.2em 1em 1.2em 1em; line-height: 1; text-align: center; }
.navi-bnr > a > .inner::before{ bottom:.5em; left:.4em; transform:scale(1, -1);}
.navi-bnr > a > .inner::after{ bottom:.5em; right:.4em; transform:rotateZ(180deg);}
.navi-bnr .text{ display: flex; justify-content: center; align-items: center; min-height: 5em; background-color: rgba(255,255,255,.9); position: relative; z-index: 3;}

.navi-bnr .text > p{ font-size: 1.3em; padding: 0; margin-bottom: 0; line-height: 1.3; letter-spacing: .1em; text-align: center; }

@media (max-width: 768px) {
  .navi-bnr .text > p{
  font-size: calc(60vw/13.66);
  }}

.navi-bnr > a { color: #494c3b; }
.navi-bnr > a:hover{ color: #000; background-color: #ffd900; }


/************************************
** 当サイトについて
************************************/
.cont-top-story{ }
.cont-top-story .cont-top-content{ background-color: rgba(214,186,0,.2); }
.story-container{ margin: 0 auto; position: relative; }

.story-container::before{
  content:"";
  display: block;
  height: calc( 240/24*1em );
  background: url("https://solar-jp.net/img/intro-container-bgu.png") no-repeat center bottom;
  background-size: 100%;
  opacity: 0.9;
}

.intro-text > p{ font-size:1.222em; line-height: 2;}


.story-container::before{
  content:"";
  display: block;
  height: calc( 240/24*1em );
  background: url("https://solar-jp.net/img/intro-container-bgu.png") no-repeat center bottom;
  background-size: 100%;
  opacity: 0.9;
}

@media (max-width: 768px) {
.story-container::before{
  height: calc( 75/24*1em );
}}

.story-container::after{
  content:"";
  display: block;
  height: calc( 200/20*1em );
  background: url("https://solar-jp.net/img/intro-container-bgb.png") no-repeat center top;
  background-size: 100%;
  opacity: 0.9;
}

@media (max-width: 768px) {
.story-container::after{
 height: calc( 65/20*1em );
}}

.story-container > .body{
  background: url("https://solar-jp.net/img/intro-container-bgm.png") repeat-y center top;
  background-size: 100%; opacity: 0.9;
}

.cont-story-navi{
  margin-bottom: 1em;
}

.cont-story-navi > nav ul{
  display: block; text-align: center; list-style-type: none; margin: 0; padding: 0;
}

.cont-story-navi > nav ul li{
  display: inline-block; margin: 0; padding: .1em ;
}
.cont-story-navi > nav ul li a{
  display: inline-block; background:rgba(255,255,255,.6); position: relative; text-align: center; color: #3a3732; border-radius: 3em; padding: .3em 0; width: 2.1em;
}

.cont-story-navi > nav ul li.intro a{
  padding: .3em .5em; width: inherit;
}

.cont-story-navi > nav ul li a:hover,
.cont-story-navi > nav ul li.crt a{
  background:rgba(58,55,50,1); position: relative; text-align: center; color: #fff; text-decoration: none;
}

.cont-story-navi > nav ul li.crt a{
  pointer-events: none;
}

.cont-story-navi > nav ul li.cs a{
  pointer-events: none; color: #999; background-color: #CCC;
}

.cont-story-navi > nav ul li a span{
  font-size: 1em; line-height: 1; font-weight: 900;
}

.story-data{
  display: none;
}

.story-data{
  color: #3a3732;
  /*background-color: rgba(255,255,255,.3);*/
  padding: 0em 2em;
  margin: 0 5em;
  border-radius:
  2em; position:
  relative; overflow: hidden;
}

@media (max-width: 768px) {
.story-data {
    margin: 0em;
}}

.story-data .ep-title{
  font-size: 1em;
  text-align: center;
  padding: 0 0 1.5em 0;
  margin-bottom: 1.5em;
  background:url("https://solar-jp.net/img/story-eptitle-line.png") no-repeat center bottom;
  background-size: calc(1071/30*1em);
  position: relative; z-index: 2;
}

.story-data .ep-title > span{
  font-size: 30px; letter-spacing: .1em;
}

@media (max-width: 768px) {
  .story-data .ep-title > span{
    font-size: calc(62vw/13.66);
    }}


.story-data .ep-title > span.ep-title-label{
  font-size: 0.8em;
}

.story-data .ep-staff{
  font-size: 1em; color: #5e5340; text-align: center; position: relative; z-index: 2;
}

.story-data .ep-staff > p{
  font-size: .8em; letter-spacing: .1em; line-height: 2.3; margin-bottom: 3em;
}

.story-data .ep-title-sub{
  font-size: 1em; text-align: center; margin-bottom: .5em; position: relative; z-index: 2;
}

.story-data .ep-title-sub > span{
  font-weight: 900; letter-spacing: .1em;
}

.story-data .ep-text{
  font-size: 1em; text-align: center; margin-bottom: 1.5em; position: relative; z-index: 2;
}

.story-data .ep-text > p{
  font-size: 1.222em; letter-spacing: .1em; line-height: 2; margin-bottom: 0
}

.story-data .ep-slider-sceneImage{
  max-width: calc(1280/30*1em);
  padding: .4em;
  background-color: #f7f3e7;
  margin:0 auto 2.5em auto;　
  -webkit-filter: drop-shadow(0 0 .3em #3a3732);
  filter: drop-shadow(0 0 .3em #3a3732);
  position: relative;
  z-index: 2;
}

.story-data .ep-slider-sceneImage .slick-dots{
  bottom:-2em;
}

.story-data .ep-trailer-title{
  position: relative;
  z-index: 2;
  text-align: center;
}

.story-data .ep-trailer-title > span{
  font-weight: 900;
  font-size: 1em;
  letter-spacing: .1em;
}

.story-data .ep-trailer{
  max-width: 50%;
  padding: .4em;
  background-color: #f7f3e7;
  margin: 0 auto;
  -webkit-filter: drop-shadow(0 0 .3em #3a3732);
  filter: drop-shadow(0 0 .3em #3a3732);
}

.story-data.crt{
  display: block;
  animation: fadeIn 1.0s 0s ease-out both;
}

.intro-text{
  position: relative;
  z-index: 2;
}

.intro-text > p{
  font-size:1.222em;
  line-height: 2;
}

@media (max-width: 768px) {
  .intro-text > p{
    font-size: calc(58vw/13.66);
  }}

  /************************************
  ** キャラクター紹介
  ************************************/
  .character-cont {
      position: relative;
      width: 100%;
      display: block;
  }

  .character-bg-star {
      width: 33em;
      height: 26.777em;
      background: url("https://solar-jp.net/img/common-flora-r.png") no-repeat center center;
      background-size: contain;
      position: absolute;
      top: 22em;
      right: 0;
      opacity: .6;
  }

  .character-bg-line {
      width: 100%;
      position: absolute;
      top: 26em;
      z-index: 0;
      opacity: .6;
  }

  @media (max-width: 768px){
  .character-navi ul > li {
      width: 7em;
  }}

  .character-navi ul > li {
      width: 8em;
      margin: 0 1em 0 0;
  }

  @media (max-width: 767px){
  .cont-character-navi {
      margin: 0 auto 1em auto;
  }}

  .cont-character-navi {
      margin: 0 auto;
  }
  .lo-part, .character-cont {
      position: relative;
      width: 100%;
      display: block;
  }

  .lo-part, .character-cont {
      position: relative;
      width: 100%;
      display: block;
  }

  *, ::after, ::before {
      box-sizing: border-box;
  }

  .character-navi ul {
      display: flex;
      justify-content: center;
      list-style-type: none;
      margin: 0;
      padding: 0;
  }

  @media (max-width: 767px){
  body {
      font-size: calc((100vw / 960) * 24);
  }}

  .character-data.crt .chara-prof {
      animation: slideInRight .5s 0s ease-out both;
  }

  @media (max-width: 768px){
  .character-data .chara-prof {
      width: 90%;
      position: relative;
      top: inherit;
      left: 0;
      right: 0;
      margin: 0 auto;
      margin-top: 30px;
  }}

  @media (max-width: 768px) {
  .character-data .chara-prof .chara-name {
      font-size: calc(82vw/13.66) !important;
  }}

  @media (max-width: 768px) {
  .character-data .chara-prof .chara-catchcopy, .character-data .chara-prof {
      font-size: calc(58vw/13.66) !important;
  }}

  @media (max-width: 768px) {
  .character-data .chara-prof .profile {
      font-size: calc(58vw/13.66) !important;
  }}


  img {
      max-width: 100%;
      height: auto;
      width: auto\9;
  }

  .character-data .chara-prof > .inner {
      background-color: rgba(243,137,202,.3);
      position: relative;
      padding: 1em;
  }

  /* キャラレイアウト
  ************************************/
  header,article,article,footer{ position: relative; width: 100%; display: block; }


  /* メディア別キャラレイアウト
  ************************************/
  @media (max-width: 767px) {
  cont-top-character character-cont{ font-size: calc((100vw / 960) * 24); }
  }

  /* character */
  .cont-top-character{}
  .character-bg-star{ top:22em;  }
  .character-bg-line{ top:26em;  }
  .cont-character-navi{ margin: 0 auto 1em auto; }
  .character-navi ul > li{ width: 7em; }
  .cont-character-data{ width: 100%; height: inherit; position: relative; margin-bottom: 2em; }
  .character-data{ position: relative; }
  .character-data .chara-img{ width: 100%; position: relative; }
  .character-data .chara-prof{ width: 90%; position: relative; top:inherit; left: 0; right: 0; margin: 0 auto; }


  .header_list {
    position: absolute;
    top: 400px;
    z-index: 2;
  }

  .header_list li {
    font-size: 20px;
        background-color: #000;
        margin: 0px 0px 10px -33px;
        padding: 5px 5px 5px 10px;
        transform: rotate(-5deg);
        text-align: left;
  }


  /* キャラレイアウト
  ************************************/
  .character-bg-line::before, .character-bg-line::after {
      content: "";
      display: block;
      width: 100%;
      height: calc(25/36*1em);
      background: url("https://solar-jp.net/img/common-deco-line1.png") repeat-x center top;
      background-size: auto calc(25/36*1em);
      position: relative;
      margin: 0;
      padding: 4px 0;
      z-index: 1;
  }

  .cont-top-character{ }
  .cont-top-character .cont-top-content{ background-color: #00b5ff; }
  .character-bg{ width: 100%; min-height: 105%; background: url("https://solar-jp.net/img/bg6.jpg") no-repeat center top; background-size: cover; position: absolute; top:0; z-index: 0;  }

  .character-bg-star{ width: 33em; height: 26.777em; background: url("https://solar-jp.net/img/common-flora-r.png") no-repeat center center; background-size: contain; position: absolute; top:22em; right: 0; opacity: .6; }
  .character-bg-line{ width: 100%; position: absolute; top:26em; z-index: 0;opacity: .6; }

  .character-bg-line::before{ border-top: #FFF solid 2px; }
  .character-bg-line::after{ border-bottom: #FFF solid 2px; }
  .character-bg-line > div{ width: 100%; height: 18em; background: #FFF; }

  .cont-character-navi{ margin: 0 auto; }
  .character-navi ul{ display: flex; justify-content: center; list-style-type: none; margin: 0; padding: 0; }
  .character-navi ul > li{ width: 8em; margin: 0 1em 0 0; }
  .character-navi ul > li:last-child{ margin-right: 0; }
  .character-navi ul > li a:hover img{ transform: scale(1.1,1.1); }

  .character-data{ position: relative; display: none; }
  .character-data .chara-img{ width: calc(1440/36*1em); position: relative; }
  .character-data .chara-prof{ width: calc(880/36*1em - 1em); position: absolute; top:130px; left: 40em; border: rgba(255,255,255,.6) solid 2px; padding: .3em; line-height: 1; }
  .character-data .chara-prof > .inner{ background-color: rgba(255,255,255,.6); position: relative; padding: 1em; }
  .character-data .chara-prof .chara-catchcopy,
  .character-data .chara-prof{ font-size: 1em; display: inline-block; margin-bottom: 1.0em; margin-left: 5px;}
  .character-data .chara-prof .chara-name{font-size: 2em;}
  .character-data .chara-prof .profile{ margin-bottom: 0; font-size: 1em; line-height: 1.8; }

  .character-data.crt{ display: block; /* animation: fadeIn 1.5s 0s ease-out both; */ }
  .character-data.crt .chara-prof{ animation: slideInRight .5s 0s ease-out both; }
  .character-data.crt .chara-img{ animation: fadeIn .5s 0s ease-out both; }


  /* キャラクターモバイルレイアウト
  ************************************/
  @media screen and (max-width: 768px){
  .cont-top-character{ }
  .character-bg-star{ top:14em;  }
  .character-bg-line{ top:17em;  }
  .cont-character-navi{ margin: 0 auto 1em auto; }
  .character-navi ul > li{ width: 7em; }

  .character-data{ position: relative; }
  .character-data .chara-img{ width: 100%; position: relative; }
  .character-data .chara-prof{ width: 90%; position: relative; top:inherit; left: 0; right: 0; margin: 0 auto; }

  }

  /************************************
  ** 新着記事
  ************************************/

  /* 余計なボーダー透過
  ************************************/
  div.mamewaza_blog > div {
      border: 1px solid rgb(0,0,0,0) !important;
  }

  /* サイトタイトル
  ************************************/
  div.mamewaza_blog h5.mamewaza_blog a {
      color: rgb(0, 0, 0) !important;
      font-size: 1.6em !important;
      font-weight: 600 !important;
  }

  /* 個別記事タイトル
  ************************************/
  div.mamewaza_blog a.mamewaza_blog_title {
      color: rgb(0, 0, 0);
      font-size: 1.4em !important;
  }

  @media (max-width: 768px) {
    div.mamewaza_blog a.mamewaza_blog_title {
        font-size: calc(58vw/13.66) !important;
    }}

  div.mamewaza_blog li {
      padding: 20px 0px 20px 0px !important;
  }

  .new-cont-list > .new-cont-col > .inner {
      background-color: rgb(255 255 255 / 80%);
      position: relative;
      padding: 1em;
      min-height: 100%;
  }

  .new-cont-list {
    max-width: 40em;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 0 auto;
    margin-bottom: 1em;
}

.new-cont-list > .new-cont-col {
    width: 100%;
    border: rgba(255,255,255,.6) solid 2px;
    padding: .3em;
    color: #543d47;
    margin: 0px 10px 0px 10px;
}

/************************************
** 人気記事
************************************/
.col-inner {
  border: rgba(255,255,255,.6) solid 2px;
  background-color: rgba(255,255,255,.1);
  padding: 0.8em 0.6em 0.8em 0.6em;
  line-height: 1;
  text-align: center;
  margin-bottom: 10px;
}

.img-fluid {
    max-width: 120px;
    height: auto;
    border-radius: 50%;
}

@media (max-width: 991px) {
.img-fluid {
    max-width: 200px;
    margin-bottom: 20px;
}}

.team a {
  color: #444444;
}

.team .member {
  position: relative;
  padding: 30px;
  background-color: rgba(255,255,255,.9);
    border-radius: 0px;
  transition: 0.5s;
}

.team .member .pic img {
  transition: ease-in-out 0.3s;
}

.team .member:hover {
  transform: translateY(-10px);
}

@media screen and (min-width: 768px){
.team .member .member-info {
  padding-left: 10px;
}}

.team .member h4 {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 20px;
  color: #37517e;
  text-align: left;
}

@media screen and (max-width: 768px){
.team .member h4 {
  font-size: calc(64vw/13.66);
}}

.team .member span {
  display: block;
  font-size: 15px;
  padding-bottom: 10px;
  position: relative;
  font-weight: 500;
  text-align: left;
}

.team .member span::after {
  content: '';
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: #cbd6e9;
  bottom: 0;
  left: 0;
}

.team .member p {
  margin: 10px 0 0 0;
  font-size: 14px;
  text-align: left;
}

.team .member .social {
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.team .member .social a {
  transition: ease-in-out 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50px;
  width: 32px;
  height: 32px;
  background: #eff2f8;
}

.team .member .social a i {
  color: #37517e;
  font-size: 16px;
  margin: 0 2px;
}

.team .member .social a:hover {
  background: #47b2e4;
}

.team .member .social a:hover i {
  color: #fff;
}

.team .member .social a + a {
  margin-left: 8px;
}


/*--------------------------------------------------------------
# よくある質問
--------------------------------------------------------------*/
.faq .faq-list {
  padding: 0px 100px 60px 100px;
}

.faq .faq-list ul {
  padding: 0;
  list-style: none;
}

.faq .faq-list li + li {
  margin-top: 15px;
}

.faq .faq-list li {
  padding: 20px;
  background: #fff;
  border-radius: 4px;
  position: relative;
}

.faq .faq-list a {
  display: block;
  position: relative;
  font-size: 18px;
  line-height: 24px;
  font-weight: 500;
  padding: 0 30px;
  outline: none;
  cursor: pointer;
  display: inline-block;
}

.faq .faq-list .icon-help {
  font-size: 24px;
  position: absolute;
  right: 0;
  left: 20px;
  color: #47b2e4;
}

.faq .faq-list .icon-show, .faq .faq-list .icon-close {
  font-size: 24px;
  position: absolute;
  right: 0;
  top: 0;
}

.faq .faq-list p {
  margin-bottom: 0;
  padding: 10px 0 0 0;
}

.faq .faq-list .icon-show {
  display: none;
}

.faq .faq-list a.collapsed {
  color: #37517e;
  transition: 0.3s;
}

@media screen and (max-width: 768px){
.faq .faq-list a.collapsed {
  font-size: calc(58vw/13.66);
}}

.faq .faq-list a.collapsed:hover {
  color: #47b2e4;
}

.faq .faq-list a.collapsed .icon-show {
  display: inline-block;
}

.faq .faq-list a.collapsed .icon-close {
  display: none;
}

@media (max-width: 1200px) {
  .faq .faq-list {
    padding: 0;
  }
}

/*--------------------------------------------------------------
# フッター
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: #37517e;
}


#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: #fff;
}

#footer .copyright {
  float: left;
}

#footer .credits {
  float: right;
  font-size: 13px;
}

#footer .credits a {
  transition: 0.3s;
}

@media (max-width: 768px) {
  #footer .footer-bottom {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  #footer .copyright, #footer .credits {
    text-align: center;
    float: none;
  }
  #footer .credits {
    padding-top: 4px;
  }
}



/************************************
** 背景
************************************/

/* 背景画像1
************************************/
.cover-bg1 {
    width: 100%;
    min-height: 105%;
    background: url("https://solar-jp.net/img/bg1.jpg") no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 0;
}

/* 背景画像2
************************************/
.cover-bg2 {
    width: 100%;
    min-height: 105%;
    background: url("https://solar-jp.net/img/bg2.jpg") no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 0;
}

/* 背景画像3
************************************/
.cover-bg3 {
    width: 100%;
    min-height: 105%;
    background: url("https://solar-jp.net/img/bg3.jpg") no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 0;
}

/* 背景画像4
************************************/
.cover-bg4 {
    width: 100%;
    min-height: 105%;
    background: url("https://solar-jp.net/img/bg4.jpg") no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 0;
}

/* 背景画像5
************************************/
.cover-bg5 {
    width: 100%;
    min-height: 105%;
    background: url("https://solar-jp.net/img/bg5.jpg") no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 0;
}

/* 背景画像6
************************************/
.cover-bg6 {
    width: 100%;
    min-height: 105%;
    background: url("https://solar-jp.net/img/bg6.jpg") no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 0;
}

/* 背景画像7
************************************/
.cover-bg7 {
    width: 100%;
    min-height: 105%;
    background: url("https://solar-jp.net/img/bg7.jpg") no-repeat center top;
    background-size: cover;
    position: absolute;
    top: 0;
    z-index: 0;
}

/************************************
** オーバーレイ
************************************/
.bg-blue {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg, rgb(2 45 255 / 60%), rgb(0 8 255 / 60%));
  opacity: 0.5;
  z-index: 0;
}

.bg-yellow {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg, rgb(255 224 2 / 60%), rgb(255 247 0 / 60%));
  opacity: 0.5;
  z-index: 0;
}

.bg-red {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg, rgb(255 2 2 / 60%), rgb(255 0 0 / 60%));
  opacity: 0.5;
  z-index: 0;
}

.bg-green {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: linear-gradient(45deg, rgb(53 255 2 / 60%), rgb(27 255 0 / 60%));
  opacity: 0.5;
  z-index: 0;
}


/************************************
** セクションチェーン
************************************/
.chain::before{
    content: "";
    display: block;
    width: 100%;
    height: calc(25/36*1em);
    background: url("https://solar-jp.net/img/common-deco-line1.png") repeat-x center top;
    background-size: auto calc(25/36*1em);
    position: relative;
    margin: 2px 0;
    z-index: 1;
}

.chain::after{
    content: "";
    display: block;
    width: 100%;
    height: calc(25/36*1em);
    background: url("https://solar-jp.net/img/common-deco-line1.png") repeat-x center top;
    background-size: auto calc(25/36*1em);
    position: relative;
    margin: 2px 0;
    z-index: 1;
}

/************************************
** 共通要素
************************************/
h1, h2, h3, h4, h5, h6 {
    font-weight: 700 !important;
}

.cont-top-content{
  background-color: rgba(255,255,255,.6)
}

.cont-top-character .cont-top-content {
    background-color: #00b5ff;
}

.cont-top-content {
    width: 100%;
    min-height: 100%;
    position: relative;
    overflow: hidden;
}

.cont-w1200 {
    width: 100%;
    max-width: 66.66em;
    margin: 0 auto;
    position: relative;
}

.cont-title {
    font-size: 1em;
    width: 100%;
    max-width: 51em;
    margin: 0 auto 2em auto;
}

body {
  font-family: "游ゴシック体",YuGothic,"Yu Gothic M","游ゴシック Medium","Yu Gothic Medium","ヒラギノ角ゴ ProN W3","Hiragino Kaku Gothic ProN W3",HiraKakuProN-W3,"ヒラギノ角ゴ ProN","Hiragino Kaku Gothic ProN","ヒラギノ角ゴ Pro","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,Osaka,"ＭＳ Ｐゴシック","MS PGothic","Helvetica Neue",HelveticaNeue,Helvetica,Arial,"Segoe UI",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji" !important;
  color: #444444;
  font-size: 18px;
}

a {
  color: #47b2e4;
  text-decoration: none !important;
}

a:hover {
  color: #73c5eb;
  text-decoration: none;
}

/*--------------------------------------------------------------
# 上に戻るボタン
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: #47b2e4;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 24px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #6bc1e9;
  color: #fff;
}

.back-to-top.active {
  visibility: visible;
  opacity: 1;
}


/*--------------------------------------------------------------
# articles General
--------------------------------------------------------------*/
article {
  overflow: hidden;
}

.article-bg {
  background-color: #f3f5fa;
}

.article-title {
  text-align: center;
  padding-bottom: 30px;
}

.article-title h2 {
  font-size: 40px;
  padding-bottom: 20px;
  padding-top: 50px;
  position: relative;
  color: #ffffff;
}

@media (max-width: 768px) {
.article-title h2 {
  font-size: calc(98vw/13.66);
}}

.article-title p {
  margin-bottom: 0;
}
