@charset "utf-8";
@import url("http://fonts.googleapis.com/earlyaccess/roundedmplus1c.css");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  list-style: none;
}
body {
  font-family: "メイリオ", "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3",
    Verdana, Geneva, Arial, sans-serif;
  color: #333;
  font-size: 12px;
  background: url(../images/bg.png) repeat-y;
  background-size: 100%;
}
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 {
  background: #e4007f;
  color: #fff;
}
em {
  color: #bc2379;
}
strong,
b {
  font-size: 100%;
}
ins {
  display: inline-block;
  background: #f0d2e3;
}

/*--- table*/
table {
  border-collapse: collapse;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}
table th {
  width: 150px;
  padding: 10px;
  text-align: left;
  vertical-align: top;
  border: solid 1px #ddd;
  background: #fffee3;
  font-weight: normal;
}
table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #ddd;
  font-size: 90%;
}

/*--- blockquote*/
blockquote {
  font-size: 110%;
  text-align: center;
  border: solid 1px #ddd;
  background: #fffee3;
  padding: 2em;
  margin-bottom: 30px;
  z-index: 1;
}
blockquote:before {
  content: "“";
  font-size: 80px;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: -10px;
  top: 0;
  z-index: -1;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  border: solid 1px #f8f0f5;
  border-radius: 6px;

  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #f8f0f5 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #f8f0f5 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #f8f0f5 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#f8f0f5',GradientType=0 );
}
article ul li {
  font-size: 12px;
  margin: 0.5em 0;
  padding: 10px 35px;
  line-height: 2.35em;
}
article ul li:before {
  content: "\f111";
  font-family: FontAwesome;
  margin-right: 8px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  background: #fce8f0;
  border-radius: 6px;

  counter-reset: number;
  list-style-type: none !important;
  position: relative;
}
article ol li {
  margin: 1.5em 0;
  padding: 15px 0 15px 65px;

  list-style: none;
  position: relative;
}
article ol li:before {
  font-size: 12px;
  color: #fff;
  background: #bc2379;
  font-weight: bold;

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

  width: 20px;
  height: 20px;
  line-height: 20px;
  left: 35px;

  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
/*--- layout ---*/
#type-wrap {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 5px 1px rgba(98, 23, 65, 0.3);
  /* overflow: hidden; */
}
/*clearfix*/
#type-wrap:after {
  content: "";
  display: block;
  clear: both;
}

article {
  margin-bottom: 30px;
}
article img {
  max-width: 100%;
  margin-bottom: 15px;
}
/*--- link*/
a {
  display: block;
  color: #121212;
}
a:hover {
  color: #e4007f;
}
/*--- title ---*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  font-family: "Rounded Mplus 1c";
}
h2,
h3,
h4,
h5,
h6, .under h1 {
  font-size: 135%;
  margin-bottom: 15px;
}
h2, .under h1 {
  font-size: 170%;
  letter-spacing: -0.07em;
  color: #bc2379;
  border: solid 1px #f0d2e3;
  padding: 8px 10px;
  border-radius: 6px;
  background: url(../images/h2.png) no-repeat bottom center;
}
h3, .under h2 {
  background: #bc2379;
  color: #fff;
  padding: 8px 10px;
  border-radius: 6px;
}
h4, .under h3 {
  border-left: solid 8px #bc2379;
  color: #bc2379;
  border-radius: 6px;
  background: #f0d2e3;
  padding: 5px 10px;
}
.under h3 {margin-top: 40px;}
h5 {
  font-size: 110%;
  border: solid 1px #ddd;
  background: #fffee3;
  padding: 5px 10px;
}
h6 {
  font-size: 110%;
  padding: 5px 10px;
  color: #bc2379;
}

/*--- header ---*/
#type-hd {
  width: 100%;
}
.type-hdIn {
  max-width: 1000px;
  margin: 0 auto;
  background: #fff;
  box-shadow: 0px 0px 5px 1px rgba(98, 23, 65, 0.3);
}
.type-hdTtl {
  margin: 0 auto;
  text-align: center;
  overflow: hidden;
}
/*--- h1*/
h1, .ttl_h {
  clear: both;
  font-family: "Rounded Mplus 1c";
}
h1 a, .ttl_h a {
  padding: 20px 0;
  font-size: 185%;
  font-weight: 900;
  letter-spacing: -0.1em;
  color: #e4007f;
  line-height: 1.3;
}
h1 a:hover, .ttl_h a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- headCopy*/
.type-cp {
  margin-top: 10px;
}

/*--- headNav ---*/
#type-hdnv {
  width: 100%;
  position: relative;
  z-index: 999;
  box-shadow: 0px 1px 2px 1px rgba(165, 45, 112, 0.25);

  background: #ffffff;
  background: -moz-linear-gradient(top, #ffffff 0%, #fce8f0 100%);
  background: -webkit-linear-gradient(top, #ffffff 0%, #fce8f0 100%);
  background: linear-gradient(to bottom, #ffffff 0%, #fce8f0 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#fce8f0',GradientType=0 );
}
.type-nvIn {
  max-width: 1002px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}
.type-nvIn li {
  width: 25%;
  float: left;
}
.type-nvIn li:nth-of-type(1) a {
  border-left: solid 1px #f7ccde;
}
.type-nvIn li a {
  font-size: 110%;
  font-weight: bold;
  padding: 20px 0;
  border-right: solid 1px #f7ccde;
}
.type-nvIn li a:hover {
  color: #e4007f;
  background: rgba(228, 0, 127, 0.05);
}
.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#type-mainvisual {
  margin: 0 0 10px;
}
#type-mainvisual li img {
  margin: 20px 0;
  border: solid 1px #d6c3cd;
}
.bx-wrapper {
  margin: 0 auto;
  border: none;
  box-shadow: none;
}
.bx-wrapper .bx-controls-direction a {
  display: none;
}

/*--- mainArea ---*/
#type-main {
  width: 67%;
  margin-left: 35px;
  float: left;
}
#type-main article {
  padding: 2%;
  background: #fff;
  box-shadow: 0px 0px 3px 1px #f0d2e3;
  border-radius: 6px;
  overflow: hidden;
}
/*--- 下層リンク ---*/
#type-main .type-lk {
  position: relative;
  overflow: hidden;
}
.type-lk h2 {
  font-size: 145%;
  letter-spacing: -0.05;
  color: #e4007f;
  background: none;
  border: none;
  padding: 0;
}
.type-lk p {
  line-height: 1.8;
}
.type-lk img {
  width: 52%;
  margin-bottom: 0;
  float: left;
}
.type-lk > div {
  width: 46%;
  float: right;
}
/*--- readMore*/
.type-more {
  width: 120px;
  text-align: center;
  position: absolute;
  bottom: 10px;
  right: 10px;
  margin-left: 10px;
}
.type-more a:before {
  font-family: FontAwesome;
  content: "\f144";
  position: absolute;
  right: 15px;
}
.type-more a {
  line-height: 18px;
  padding: 3px 0;
  position: relative;
  border-radius: 6px;
  border: solid 1px #f7ccde;
  background: #bc2379;
  color: #fff;
}
.type-more a:hover {
  background: #e4007f;
  color: #fff;
}

/*--- recommend ---*/
#type-rc {
  overflow: hidden;
  padding: 15px 0;
  background: #eae0d6;
}
/*--- h3_link*/
.type-rcIn {
  width: 50%;
  float: left;
  margin: 0 0 10px;
}
.type-rcIn h3 {
  width: 98%;
  margin: 0 auto;
  display: block;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-left: 0;
  background: none;
}
.type-rcIn h3 a {
  padding: 16px 30px 16px 10px;
  position: relative;
  border-radius: 6px;

  border: solid 1px #f7ccde;
  background: #bc2379;
  color: #fff;
}
.type-rcIn h3 a:before {
  font-family: FontAwesome;
  content: "\f144";
  position: absolute;
  right: 15px;
}
.type-rcIn h3 a:hover {
  opacity: 0.8;
  background: #e4007f;
  color: #fff;
}
.type-rcIn p {
  width: 90%;
  margin: 3px auto 0;
  text-align: left;
  font-size: 85%;
}

/*--- aside ---*/
#type-side {
  width: 23%;
  float: right;
  margin-right: 35px;
  position: sticky;
  top: 0;
  height: fit-content;
}
aside dl {
  margin-bottom: 30px;
  padding: 2%;
  background: #fff;
  border: solid 1px #edd8e3;
  border-radius: 6px;
  overflow: hidden;
}
aside dt {
  font-size: 100%;
  font-weight: bold;
  color: #bc2379;
  border-radius: 6px;
  background: #f0d2e3;
  padding: 5px 10px;
  text-align: center;
}
aside dd {
  font-size: 90%;
  margin: 6px auto;
}
aside dd a:hover {
  background: #fffee3;
}

/*--- 上block*/
aside .side-01 dd a {
  line-height: 32px;
  text-align: center;
  padding: 5px;
}
/*--- 下block*/
aside .side-02 dd {
  width: 100%;
  font-size: 75%;
  border-radius: 6px;
  box-sizing: border-box;
  line-height: 60px;
  background: #f8f0f5;
}
aside .side-02 dd p {
  text-align: center;
  display: inline-block;
}
aside .side-02 dd p:after {
  font-family: FontAwesome;
  content: "\f0da";
  color: #bc2379;
  font-weight: bold;
  margin-left: 5px;
}
aside .side-02 dd img {
  height: 60px;
  margin-right: 8px;
  border-radius: 6px 0 0 6px;
}
aside .side-02 a:hover img {
  opacity: 0.8;
}

/*--- footer ---*/
#type-ft {
  width: 100%;
  background: #f0d2e3;
}
footer ul {
  max-width: 950px;
  margin: 0 auto;
  overflow: hidden;
}
footer ul li {
  width: 220px;
  margin-right: 100px;
  float: left;
}
footer dl {
  padding: 20px 0;
  overflow: hidden;
}
footer dt {
  font-weight: bold;
  padding: 10px 0;
  position: relative;
}
footer dd {
  font-size: 90%;
}
footer dd a {
  padding: 5px 0;
}
footer dd a:before {
  font-family: FontAwesome;
  content: "\f144";
  color: #bc2379;
  margin-right: 5px;
}
/*--- footCopy*/
.type-fc {
  width: 85%;
  padding: 20px 0;
  margin: 0 auto;
  font-size: 75%;
  color: #bc2379;
  text-align: center;
}

/*--- 404*/
.type-nf {
  margin-top: 20px;
  min-height: 600px;
}
.type-nf b {
  font-family: "Rounded Mplus 1c";
  font-size: 260%;
  color: #e4007f;
}

/*--- pan*/
.type-pan {
  max-width: 950px;
  margin: 10px auto;
}
.type-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
}

/*--- SNS ---*/
#type-sns {
  overflow: hidden;
  padding: 15px;
  background: #f8f0f5;
  margin-bottom: 30px;
}
.type-snsIn h2 {
  box-shadow: none;
  text-align: center;
}
.type-snsIn h2:first-letter {
  color: #e4007f;
}
.type-snsIn dd {
  width: 25%;
  margin: 0 auto;
  float: left;
  display: block;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-left: 0;
}
.type-snsIn dd a {
  width: 94%;
  margin: 0 auto;
  padding: 16px 0;
  color: #fff;
  background: #28aae1;
  position: relative;
  border: solid 1px #f0d2e3;
  box-sizing: border-box;
  border-radius: 6px;
}
.type-snsIn dd a:hover {
  opacity: 0.8;
  text-decoration: none;
}
/*--- 個別*/
#tw {
}
#fb {
  background: #041d4d;
}
#ggl {
  background: #dd4b39;
}
#ht {
  background: #3b5998;
}
.type-snsIn .fab {
}

/*--- topPage*/
.type-btn a {
  width: 50px;
  height: 50px;
  line-height: 46px;
  text-align: center;

  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;

  font-size: 9px;
  border-radius: 50%;
  background: #bc2379;
}
.type-btn a:before {
  display: block;
  font-family: FontAwesome;
  content: "\f106";
  font-size: 46px;
  color: #fff;
}
.type-btn a:hover {
  background: #e4007f;
}
