@charset "utf-8";
@import url("http://fonts.googleapis.com/earlyaccess/notosansjapanese.css");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}

body {
  color: #3c3c3c;
  font-family: -apple-system, BlinkMacSystemFont, "Yu Gothic", YuGothic, Verdana,
    Meiryo, sans-serif;
  font-size: 14px;
  background: #f4f6fb;
  line-height: 1.8;
}

del {
  text-decoration: line-through;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

pre {
  white-space: -moz-pre-wrap;
  /* Mozilla */
  white-space: -pre-wrap;
  /* Opera 4-6 */
  white-space: -o-pre-wrap;
  /* Opera 7 */
  white-space: pre-wrap;
  /* CSS3 */
  word-wrap: break-word;
  /* IE 5.5+ */
  display: inline-block;
  border: 2px solid #bbb;
  margin: 1em 0;
  padding: 1em;
}

strong {
  color: #514068;
  font-family: "Noto Sans Japanese";
}

em {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 80%, #ffb2d8 0%) repeat scroll 0 0;
}

strong,
b {
  font-size: 100%;
}

ins {
  display: inline-block;
  background: #efebfa;
}

/*--- table*/
table {
  border-collapse: collapse;
  line-height: 1.5;
  margin-bottom: 20px;
  border-top: solid 1px #ddd;
}

table th {
  width: 150px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  border: solid 1px #ddd;
  background: #efebfa;
  color: #514068;
  text-align: center;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: solid 1px #ddd;
  font-size: 90%;
}

/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  text-align: center;
  background: rgba(81, 64, 104, 0.95);
  border-bottom: 4px solid #ef8bae;
  color: #fff;
  font-size: 100%;
  position: relative;
  font-family: "Noto Sans Japanese";
  z-index: 1;
}

blockquote:before {
  font-size: 90px;
  content: "❝";
  color: rgba(255, 255, 255, 0.2);
  position: absolute;
  left: 5px;
  top: -45px;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  padding: 10px 0;
  position: relative;
  background: #fdeff8;
}

article ul li {
  margin: 20px;
  padding: 0 15px;
  border-left: solid 6px #ef8bae;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  padding: 10px 0;
  counter-reset: number;
  list-style-type: none !important;
  position: relative;
  background: #f4f6fb;
}

article ol li {
  width: 96%;
  margin: 10px auto;
  padding: 10px 0 10px 50px;

  list-style: none;
  position: relative;
  background: #fff;
}

article ol li:before {
  font-size: 12px;
  font-family: "Noto Sans Japanese";
  color: #fff;
  background: #514068;

  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  display: inline-block;

  width: 26px;
  height: 26px;
  line-height: 26px;
  left: 15px;

  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--- layout ---*/
#rock-wrap {
  margin: 0 auto;
  /* overflow: hidden; */
}

main {
  max-width: 1200px;
  margin: 20px auto;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

article {
  margin-bottom: 30px;
}

article img {
  max-width: 100%;
  margin-bottom: 15px;
}

/*--- link*/
a {
  display: block;
  color: #3c3c3c;
}

a:hover {
  color: #ef8bae;
}

/*--- title ---*/
h2,
h3,
h4,
h5,
h6,
.under h1,
.under h2,
.under h3 {
  line-height: 1.2;
  font-weight: normal;
  font-family: "Noto Sans Japanese";
  margin-bottom: 15px;
}

h2,
.under h1 {
  font-size: 170%;
  letter-spacing: -0.07em;
  margin: 0 10px 15px;
  padding-left: 10px;
  font-weight: 500;
  line-height: 30px;
  border-left: solid 6px #514068;
  position: relative;
}

h2::after,
.under h1::after {
  position: absolute;
  bottom: 0;
  left: -6px;
  z-index: 2;
  content: "";
  width: 6px;
  height: 50%;
  background-color: #ef8bae;
}

h3,
.under h2 {
  font-size: 150%;
  padding: 10px;
  background: #f6f6f6;
  position: relative;
}

h3:after,
.under h2::after {
  position: absolute;
  top: 25%;
  left: 0;
  z-index: 2;
  content: "";
  width: 4px;
  height: 50%;
  background-color: #ef8bae;
}

h4,
.under h3 {
  font-size: 130%;
  padding: 5px;
  border-top: solid 4px #514068;
  position: relative;
  display: inline-block;
}

h4:after,
.under h3::after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: -4px;
  width: 30%;
  border-top: 4px solid #ef8bae;
}

.under h3 {
  margin-top: 40px;
}

h5 {
  font-size: 110%;
  border-left: solid 4px #514068;
  padding: 0 5px;
  font-weight: bold;
}

h6 {
  font-size: 100%;
  background: #f6f6f6;
  font-weight: bold;
  padding: 5px 10px;
}

/*--- header ---*/
#rock-he {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.rock-heTtl {
  max-width: 1200px;
  margin: 0 auto;
  position: static;
  padding: 0 0 125px;
  /*40px 0 125px*/
}

.rock-top .rock-heTtl {
  width: auto;
  position: absolute;
  top: 42%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  /* Safari用 */
  transform: translate(-50%, -50%);
  line-height: 1.2;
  padding-bottom: 0;
  text-align: center;
}

/*--- h1*/
h1,
.ttl_h {
  font-weight: 900;
  font-family: "Noto Sans Japanese";
}

h1 a,
.ttl_h a {
  display: inline-block;
  padding: 0.3em 0.8em;
  margin-bottom: 10px;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  letter-spacing: -0.1em;
  background: rgba(81, 64, 104, 0.9);
  line-height: 1.3;
}

h1 a:hover {
  background: #514068;
  color: #fff;
}

/*--- headCopy*/
.rock-cp {
  display: inline-block;
  font-weight: bold;
  font-size: 110%;
  background: #ef8bae;
  color: #fff;
  padding: 5px 10px;
  margin: 0 auto;
}

/*--- headNav ---*/
#rock-henv {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: rgba(81, 64, 104, 0.95);
  border-bottom: 4px solid #ef8bae;
}

.rock-nvIn {
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.rock-nvIn li {
  width: 25%;
  float: left;
}

.rock-nvIn li a {
  line-height: 80px;
  color: #fff;
  border-left: solid 1px rgba(255, 255, 255, 0.2);
}

.rock-nvIn li:nth-last-of-type(1) a {
  border-right: solid 1px rgba(255, 255, 255, 0.2);
}

.rock-nvIn li a:hover {
  background: #514068;
  color: #fff;
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#rock-mainvisual {
  width: 100%;
  height: auto;
  position: relative;
  overflow: hidden;
}

.rock-slider {
  width: 100%;
  position: relative;
  left: 50%;
  margin-left: -600px;
  /* = img幅/2 */
}

.bx-wrapper {
  max-width: 100% !important;
  margin: 0 auto;
  position: relative;
  border: none;
  box-shadow: none;
}

#rock-mainvisual .bx-viewport {
  height: auto !important;
}

.bx-wrapper .bx-controls-direction a {
  display: none;
}

/*--- mainArea ---*/
#rock-main {
  max-width: 72%;
  float: right;
}

#rock-main article {
  padding: 2%;
  overflow: hidden;
  background: #fff;
}

/*--- 下層リンク ---*/
.rock-sec {
  overflow: hidden;
}

.rock-sec .rock-un {
  width: 49%;
  float: right;
}

.rock-sec .rock-unIn {
  width: 100%;
  position: relative;
  background: #514068;
  margin-bottom: 10px;
}

.rock-sec .rock-unIn img {
  opacity: 0.5;
  margin-bottom: 0;
}

.rock-sec .rock-un:nth-child(1) {
  float: left;
}

.rock-sec .rock-un h2 {
  width: 90%;
  color: #fff;
  padding: 0;
  margin: 0;
  text-align: center;
  position: absolute;
  bottom: 15px;
  left: 5%;
  border-left: 0;
  z-index: 2;
}

.rock-sec .rock-un h2:after {
  display: none;
}

.rock-un p {
  font-size: 90%;
  color: #747474;
}

/*--- readMore*/
.rock-more {
  margin-top: 20px;
  text-align: center;
  font-family: "Noto Sans Japanese";
}

.rock-more a {
  width: 180px;
  margin: 0 auto;
  line-height: 34px;
  position: relative;
  border: solid 1px #ccc;
  background: #fff;
  border-radius: 18px;
}

.rock-more a:before {
  font-family: FontAwesome;
  content: "\f0a9";
  position: absolute;
  right: 15px;
  color: #514068;
}

.rock-more a:hover {
  background: #514068;
  border: solid 1px #514068;
  color: #fff;
}

.rock-more a:hover:before {
  color: #fff;
}

/*--- recommend ---*/
#rock-re {
  margin-bottom: 0;
  background: #fdeff8;
  padding-bottom: 10px;
}

#rock-re h2 {
  width: 100%;
  margin: 0 0 20px;
  padding: 8px 0;
  font-size: 140%;
  background: #ef8bae;
  color: #fff;
  border: 0;
  text-align: center;
}

#rock-re h2:after {
  display: none;
}

/*--- h3_link*/
.rock-reIn {
  margin: 0 0 10px;
}

.rock-reIn h3 {
  width: 90%;
  margin: 0 auto;
  padding: 0;
  font-size: 105%;
  background: none;
}

.rock-reIn h3:after {
  display: none;
}

.rock-reIn h3 a {
  position: relative;
  padding: 10px 25px 10px 15px;
  border: solid 1px #ccc;
  border-radius: 25px;
  background: #fff;
}

.rock-reIn h3 a:before {
  font-family: FontAwesome;
  content: "\f0a9";
  position: absolute;
  right: 10px;
  color: #514068;
}

.rock-reIn h3 a:hover {
  color: #fff;
  background: #514068;
}

.rock-reIn h3 a:hover:before {
  color: #fff;
}

.rock-reIn p {
  width: 90%;
  margin: 3px auto 0;

  font-size: 85%;
}

/*--- aside ---*/
#rock-side {
  /*min-*/
  width: 25%;
  float: left;
  position: sticky;
  top: 0;
  height: fit-content;
}

aside dl {
  background: #fff;
}

aside dt {
  font-weight: bold;
  border-bottom: solid 1px #ccc;
  padding: 10px 0;
  text-align: center;
  font-family: "Noto Sans Japanese";
  color: #514068;
}

aside dl {
  margin-bottom: 35px;
}

aside dd a {
  position: relative;
  padding-left: 30px;
  border-bottom: solid 1px #ccc;
}

aside dd a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  left: 15px;
  font-size: 12px;
  color: #ef8bae;
}

aside dd a:hover {
  background: rgba(81, 64, 104, 0.95);
  color: #fff;
}

/*--- 上block*/
aside .si-01 dd {
  line-height: 60px;
}

/*--- 下block*/
aside .si-02 a:before {
  display: none;
}

aside .si-02 dd a {
  background: #fff;
  padding: 0;
  position: relative;
}

aside .si-02 dd a p {
  width: 100%;
  text-align: center;
  line-height: 60px;
  font-family: "Noto Sans Japanese";
  position: absolute;
  background: rgba(81, 64, 104, 0.8);
  color: #fff;
  bottom: 0;
}

aside .si-02 dd img {
  width: 100%;
}

aside .si-02 dd a:hover img {
  opacity: 0.8;
}

aside .si-02 dd a:hover p {
  background: rgba(81, 64, 104, 0.95);
}

/*--- footer ---*/
#rock-fo {
  width: 100%;
  background: #fff;
}

footer ul {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 0;
  overflow: hidden;
}

footer dl {
  padding: 10px 0;
  overflow: hidden;
  border: solid 1px #ddd;
  border-right: 0;
  border-left: 0;
}

footer dt {
  width: 120px;
  padding-left: 10px;
  display: inline-block;
  font-weight: 700;
  font-family: "Noto Sans Japanese";
}

footer dd {
  display: inline-block;
  padding-left: 10px;
}

footer dd a {
  line-height: 40px;
  padding: 0 20px;
  position: relative;
}

footer dd a:before {
  font-family: FontAwesome;
  content: "\f0a9";
  position: absolute;
  left: 0;
  color: #ef8bae;
}

footer dd a:hover {
  color: #3c3c3c;
  text-decoration: underline;
}

/*--- footCopy*/
.rock-fc {
  padding: 20px 120px;
  margin: 0 auto;
  font-size: 70%;
  text-align: right;
  font-family: "Noto Sans Japanese";
  background: #f5f5f5;
}

/*--- 404*/
.rock-nf b {
  font-family: "Noto Sans Japanese";
  font-size: 400%;
  color: #514068;
}

/*--- pan*/
.rock-pan {
  width: 100%;
  background: #514068;
  padding: 2px 0;
}

.rock-pan>div {
  max-width: 940px;
  margin: 0 auto;
}

.rock-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
  color: #fff;
}

.rock-pan font {
  color: #fff;
}

.rock-pan a:hover {
  background: #fff;
  border-radius: 10px;
  color: #514068;
}

/*--- SNS ---*/
#rock-sns {
  margin-bottom: 0;
  background: #fdeff8;
  padding-bottom: 10px;
  overflow: hidden;
}

#rock-sns h2 {
  width: 100%;
  margin: 0 0 20px;
  padding: 8px 0;
  font-size: 140%;
  background: #ef8bae;
  color: #fff;
  border: 0;
  text-align: center;
}

#rock-sns h2:after {
  display: none;
}

.rock-snsIn dd {
  width: 50%;
  float: left;
  padding: 0;
  font-size: 105%;
  background: none;
  text-align: center;
}

.rock-snsIn dd a {
  width: 90%;
  margin: 0 auto 10px;
  position: relative;
  padding: 5px 15px;
  border: solid 1px #ccc;
  border-radius: 20px;
  background: #fff;
  font-weight: bold;
}

.rock-snsIn dd a:hover {
  color: #fff;
  background: #514068;
}

#ht>span {
  font-weight: bold;
}

/*--- 個別*/
#tw {
  color: #28aae1;
}

#fb {
  color: #041d4d;
}

#ggl {
  color: #dd4b39;
}

#ht {
  color: #3b5998;
}

#tw:hover,
#fb:hover,
#ggl:hover,
#ht:hover {
  color: #fff;
}

/*--- topPage*/
.rock-btn {
  text-align: right;
  position: fixed;
  bottom: 45px;
  right: 20px;
  z-index: 1;
}

.rock-btn span {
  font-size: 90%;
  font-family: "Noto Sans Japanese";
  width: 0;
  height: 0;
  border: 50px solid transparent;
  border-bottom: 50px solid #514068;
  border-top: none;
  position: relative;
}

.rock-btn a {
  color: #fff;
  position: absolute;
  left: -12px;
  bottom: -48px;
  text-align: center;
}

.rock-btn a:before {
  font-family: FontAwesome;
  content: "\f077";
  color: #ef8bae;
  display: block;
}

.rock-btn a:hover {
  color: #ef8bae;
}