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

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

body {
  font: 14px/2 "メイリオ", meiryo, Arial, sans-serif;
  color: #666;
}

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: #ff5c78;
}

em {
  background: #ffe9ec;
}

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

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

/*--- 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-top: dotted 1px #ccc;
  border-bottom: dotted 1px #ccc;
  background: #ffe9ec;
  color: #ff5c78;
}

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

/*--- blockquote*/
blockquote {
  margin-bottom: 30px;
  padding: 2em;
  text-align: center;
  font-style: italic;
  background: #ffe9ec;
  font-family: "Sawarabi Gothic";
  font-size: 110%;
  position: relative;
  z-index: 1;
}

blockquote:before,
blockquote:after {
  font-size: 26px;
  line-height: 1em;
  color: #ff5c78;
  font-family: FontAwesome;
  z-index: -1;
  text-shadow: none;
}

blockquote:before {
  content: "\f10d";
  position: absolute;
  left: 15px;
  top: 5px;
}

blockquote:after {
  content: "\f10e";
  position: absolute;
  right: 15px;
  bottom: 5px;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  position: relative;
  border: solid 2px #ffe9ec;
  background-color: #ffe9ec;
  background-image: -webkit-gradient(linear,
      0 0,
      100% 100%,
      color-stop(0.25, #fff),
      color-stop(0.25, transparent),
      color-stop(0.5, transparent),
      color-stop(0.5, #fff),
      color-stop(0.75, #fff),
      color-stop(0.75, transparent),
      to(transparent));
  -webkit-background-size: 30px 30px;
}

article ul li {
  margin: 0.5em 0;
  padding: 10px 35px;
  line-height: 2.35em;
}

article ul li:before {
  font-family: FontAwesome;
  content: "\f08d";
  color: #ff5c78;
  font-size: 16px;
  margin-right: 5px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  background-color: #ffe9ec;
  background-image: -webkit-gradient(linear,
      0 0,
      0 100%,
      color-stop(0.5, transparent),
      color-stop(0.5, #ffffff),
      to(#ffffff)),
    -webkit-gradient(linear, 0 0, 100% 0, color-stop(0.5, transparent), color-stop(0.5, #ffffff), to(#ffffff));
  -webkit-background-size: 5px 5px;

  counter-reset: number;
  list-style-type: none !important;
  position: relative;
}

article ol li {
  margin: 1.5em 0;
  padding: 15px 0 15px 55px;

  list-style: none;
  position: relative;
}

article ol li:before {
  color: #fff;
  background: #ff5c78;
  border-radius: 50%;
  font-weight: bold;

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

  width: 20px;
  height: 20px;
  font-size: 18px;
  line-height: 22px;
  left: 25px;

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

/*--- layout ---*/
#holy-wrap {
  max-width: 900px;
  margin: 0 auto;
  /* overflow: hidden; */
}

#holy-wrap main {
  display: flex;
  justify-content: space-between;
}

#holy-wrap main:has(#holy-sns) {
  display: block;
}

article {
  margin-bottom: 30px;
}

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

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

a:hover {
  color: #ff5c78;
}

/*--- title ---*/
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: 700;
  font-family: "Sawarabi Gothic";
  font-style: italic;
}

h2,
h3,
h4,
h5,
h6,
.under h1 {
  font-size: 135%;
  margin-bottom: 15px;
}

h2,
.under h1 {
  font-size: 150%;
  letter-spacing: -0.07em;
  padding: 10px;
  border-bottom: solid 3px #ddd;
  position: relative;
  text-align: center;
}

h2:after,
.under h1:after {
  content: "";
  display: block;
  line-height: 0;
  overflow: hidden;
  position: absolute;
  left: 40%;
  bottom: -3px;
  width: 20%;
  border-bottom: 3px solid #ff5c78;
}

h3,
.under h1 {
  border: dotted 2px #bbb;
  border-right: 0;
  border-left: 0;
  font-size: 150%;
  padding: 10px;
}

h4,
.under h1 {
  color: #ff5c78;
  padding: 5px 10px;
  background-color: #ffe9ec;
  background-image: -webkit-gradient(linear,
      0 0,
      100% 100%,
      color-stop(0.25, #fff),
      color-stop(0.25, transparent),
      color-stop(0.5, transparent),
      color-stop(0.5, #fff),
      color-stop(0.75, #fff),
      color-stop(0.75, transparent),
      to(transparent));
  -webkit-background-size: 20px 20px;
}

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

h5 {
  font-size: 110%;
  color: #ff5c78;
  padding: 5px 10px;
}

h6 {
  background: #ff5c78;
  font-size: 100%;
  padding: 5px 10px;
  color: #fff;
}

/*--- header ---*/
#holy-head {
  width: 100%;
  margin-bottom: 20px;
  font-family: "Sawarabi Gothic";
  background-color: #fff2f4;
  background-image: -webkit-gradient(linear,
      0 0,
      100% 100%,
      color-stop(0.25, #fff),
      color-stop(0.25, transparent),
      color-stop(0.5, transparent),
      color-stop(0.5, #fff),
      color-stop(0.75, #fff),
      color-stop(0.75, transparent),
      to(transparent));
  -webkit-background-size: 30px 30px;
}

.holy-headIn {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-style: italic;
}

/*--- h1*/
h1 a,
.ttl_h a {
  margin: 0 auto;
  font-size: 175%;
  letter-spacing: -0.1em;
  color: #ff5c78;
  padding-bottom: 30px;
  text-shadow: #fff 2px 2px 0;
}

h1 a:hover {
  color: rgba(255, 92, 120, 0.6);
}

/*--- headCopy*/
.holy-cp {
  color: #333;
  font-size: 100%;
  font-weight: 700;
  border: solid 2px #ddd;
  border-right: 0;
  border-left: 0;
  line-height: 140%;
  margin: 20px auto;
  padding: 15px;
  text-align: center;
}

/*--- indexのみ*/
.holy-top .holy-headTtl {
  width: 410px;
  position: absolute;
  top: 50px;
  right: 0px;
  z-index: 2;
}

.holy-top

/*h1*/
a,
.ttl_h a {
  /* text-align: right; */
  font-weight: bold;
  /* font-size: 250%; */
  padding-bottom: 0;
  line-height: 1.3;
}

.holy-top h1 a,
.ttl_h a {
  font-size: 250%;
}

.ttl_h a {
  text-align: left;
}

.holy-top .holy-cp {
  /* font-size: 120%; */
  padding: 20px 10px;
  /* text-align: right; */
  background-color: rgba(255, 255, 255, 0.65);
}

/*--- headNav ---*/
#holy-headnv {
  width: 100%;
  background: #fff2f4;
  margin-bottom: 30px;
}

.holy-nvIn {
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.holy-nvIn li {
  float: left;
  text-align: center;
  width: 25%;
}

.holy-nvIn li a {
  padding: 10px 0;
  color: #ff5c78;
  font-weight: 700;
}

.holy-nvIn li a>div {
  border-left: dotted 1px #ff5c78;
  padding: 10px 0;
}

.holy-nvIn li:nth-of-type(1) a>div {
  border-left: 0;
}

.holy-nvIn li a:hover {
  background: rgba(255, 92, 120, 0.15);
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
.holy-mainvisual {
  text-align: left;
}

.bx-wrapper {
  display: inline-block;
  margin: 0 auto 30px;
  border: none;
  box-shadow: none;
  border: solid 1px #fff;
  box-sizing: border-box;
}

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

/*--- mainArea ---*/
#holy-main {
  max-width: 80%;
  float: right;
}

#holy-main article {
  background: none;
  border: 1px solid #ddd;
  margin: 0 10px 30px;
  padding: 20px;
  position: relative;
}

#holy-main article:before {
  background: none;
  border: 1px solid #ddd;
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

/*--- 下層リンク ---*/
#holy-main .holy-under {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-bottom: 10px;
}

.holy-under p {
  line-height: 1.8;
}

/*--- readMore*/
.holy-more {
  width: 180px;
  margin: 10px auto;
  text-align: center;
}

.holy-more a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  right: 10px;
  font-style: normal;
}

.holy-more a {
  line-height: 42px;
  position: relative;
  border: solid 1px #ff5c78;
  color: #ff5c78;
  font-weight: 700;
  font-style: italic;
  background: #fff6f7;
}

.holy-more a:hover {
  background: #ffe9ec;
}

/*--- recommend ---*/
article#holy-recom {
  overflow: hidden;
  padding: 15px;
  border: 0;
}

#holy-recom:before {
  display: none;
}

/*--- h3_link*/
.holy-recomIn {
  width: 100%;
  margin: 0 auto 12px;
}

.holy-recomIn h3 {
  font-size: 110%;
  font-style: normal;
  border: solid 1px #ff5c78;
  background: #fff;
  padding: 0;
}

.holy-recomIn h3 a {
  position: relative;
  color: #ff5c78;
  padding: 10px;
  background: #fff6f7;
}

.holy-recomIn h3 a:after {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  right: 10px;
  font-weight: normal;
}

.holy-recomIn h3 a:hover {
  background: #ffe9ec;
}

.holy-recomIn p {
  width: 90%;
  margin: 3px auto 0;
  /* text-align: right; */
  font-size: 85%;
}

/*--- aside ---*/
#holy-side {
  /*min-*/
  width: 18%;
  float: left;
  font-family: "Sawarabi Gothic";
  position: sticky;
  top: 0;
  height: fit-content;
}

aside dt {
  font-weight: bold;
  font-style: italic;
  padding: 10px 0 0;
  color: #ff5c78;
  border-bottom: dotted 1px #ddd;
}

aside dd {
  font-size: 80%;
  font-weight: bold;
  border-bottom: dotted 1px #ddd;
  position: relative;
}

aside dd a:hover {
  background: #f5f5f5;
}

/*--- 上block*/
aside .side-1 dl {}

aside .side-1 dd a {
  text-align: center;
  line-height: 40px;
  background: #fff;
}

aside .side-1 dd a:before {
  font-family: FontAwesome;
  content: "\f152";
  position: absolute;
  left: 10px;
  color: #ff5c78;
  font-weight: normal;
}

aside .side-1 a:hover {
  background: #f5f5f5;
}

/*--- 下block*/
aside .side-2 dd a {
  background: #fff;
}

aside .side-2 a:hover {
  background: #f5f5f5;
}

aside .side-2 dd p {
  line-height: 50px;
  text-align: center;
}

aside .side-2 dd img {
  width: 100%;
  margin-top: 5px;
  margin-bottom: 0;
}

/*--- footer ---*/
#holy-foot {
  width: 100%;
  background: #ff5c78;
}

footer ul {
  width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

footer ul li {
  width: 250px;
  margin-right: 50px;
  float: left;
}

footer dl {
  padding: 10px 0;
  overflow: hidden;
}

footer dt {
  font-weight: bold;
  font-style: italic;
  padding: 10px 0;
  position: relative;
  color: #fff;
  border-bottom: solid 1px #fff;
}

footer dd {
  font-size: 85%;
  line-height: 30px;
  font-weight: bold;
}

footer dd a {
  padding: 5px 0;
  color: #fff;
  position: relative;
}

footer dd a:hover {
  color: #ffd1d7;
}

/*--- footCopy*/
.holy-fc {
  padding: 10px 20px;
  margin: 0 auto;
  text-align: center;
  font-size: 85%;
  color: #ff5c78;
  background: #fff;
}

/*--- 404*/
.holy-nf {
  margin: 20px auto;
}

.holy-nf b {
  font-family: "Sawarabi Gothic";
  color: #ff5c78;
  font-style: italic;
  font-size: 260%;
}

/*--- pan*/
.holy-pan {
  width: 900px;
  margin: 10px auto;
}

.holy-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
}

.holy-pan a:hover {
  background: #ffe9ec;
}

/*--- SNS ---*/
#holy-sns {
  overflow: hidden;
  padding: 15px;
  margin-bottom: 30px;
}

.holy-snsIn h2 {
  box-shadow: none;
  text-align: center;
}

.holy-snsIn dd {
  width: 25%;
  margin: 0 auto;
  float: left;
  display: block;
  font-size: 22px;
  text-align: center;
  text-decoration: none;
  border-left: 0;
}

.holy-snsIn dd a {
  width: 90%;
  margin: 0 auto;
  color: #bbb;
  border: solid 1px #bbb;
  position: relative;
  box-sizing: border-box;
}

.holy-snsIn dd a:hover,
#fb:hover,
#ggl:hover,
#ht:hover {
  background: #ffe9ec;
  color: #ff5c78;
  border: solid 1px #ff5c78;
}

#ht {
  font-weight: 900;
}

/*--- topPage*/
.holy-btn a {
  width: 60px;
  height: 60px;
  line-height: 56px;
  text-align: center;

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

  font-size: 9px;
  background: #fff;
  border: solid 1px #ff5c78;
}

.holy-btn a:before {
  display: block;
  font-family: FontAwesome;
  content: "\f106";
  font-size: 46px;
  color: #ff5c78;
}

.holy-btn a:hover {
  background: #ffe9ec;
}

@charset "utf-8";

@media screen and (max-width: 623px) {
  #holy-wrap main {
    flex-direction: column;
  }

  * {
    line-height: 1.7;
  }

  /*--- layout ---*/
  #holy-wrap {
    width: 100%;
    margin: 0 auto 30px;
    background: none;
    box-shadow: none;
  }

  /*--- title ---*/
  h2,
  h3,
  h4,
  h5,
  h6 {
    text-align: left;
    font-size: 125%;
    line-height: 1.3;
  }

  h1 a,
  .holy-lower h1 a {
    font-size: 140%;
    line-height: 1.2;
    text-align: center;
    width: 96%;
    margin: 0 auto;
    padding: 5px 0 15px;
  }

  h1 {
    margin-left: 0;
  }

  .holy-cp,
  .holy-lower .holy-cp {
    width: 90%;
    margin: 10px auto;
    padding: 10px 0;
    line-height: 1.2;
  }

  /*--- header ---*/
  .holy-headIn {
    width: 100%;
  }

  .holy-headTtl,
  .holy-lower .holy-headTtl {
    width: 100%;
    height: auto;
    margin: 40px auto 0;
  }

  .holy-top .holy-headTtl {
    width: 100%;
    height: auto;
    margin: 45px auto 0;
    background: none;
    position: static;
  }

  .holy-top

  /*h1*/
  a,
  .ttl_h a {
    font-size: 140%;
    width: 96%;
    margin: 0 auto;
    text-align: center;
  }

  .holy-top .holy-cp {
    font-size: 90%;
    width: 90%;
    margin: 10px auto;
    padding: 10px;
    text-align: center;
  }

  /*--- mainSlider ---*/
  #holy-mainvisual {
    width: 100%;
    height: auto;
    float: none;
    margin: 0 auto;
  }

  .holy-slider {
    position: relative;
    left: 0;
    width: 100%;
    margin-left: 0;
  }

  .holy-slider li {
    margin: 0;
  }

  .mainvisual .bx-viewport li {
    padding: 0;
  }

  .holy-slider li img {
    display: block;
    border-radius: 0;
  }

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

  /*--- mainArea ---*/
  #holy-main {
    width: 96%;
    margin: 0 2%;
    float: none;
    max-width: none;
  }

  /*--- 下層リンク ---*/
  .holy-under {
    width: 100%;
    float: none;
  }

  .holy-sec .holy-under,
  .holy-sec .holy-under:nth-of-type(2) {
    width: 100%;
    float: none;
  }

  #holy-main .holy-under,
  .holy-sec .holy-under {
    padding: 0;
    margin: 0 0 10px;
  }

  .holy-under>div {
    width: 96%;
    margin: 0 auto;
    float: none;
  }

  .holy-under img {
    width: 96%;
    margin: 2%;
    border: none;
    float: none;
  }

  /*--- readMore*/
  .holy-more {
    width: 90%;
    margin: 1em auto;
    text-align: center;
    position: static;
  }

  .holy-more a {
    line-height: 3em;
  }

  /*--- recommend ---*/
  article#holy-recom {
    padding: 0;
  }

  /*--- h3_link*/
  .holy-recomIn {
    width: 96%;
    float: none;
    margin: 0 auto;
  }

  /*--- footer ---*/
  #holy-foot {
    width: 100%;
  }

  footer ul {
    width: 94%;
    margin: 0 auto;
  }

  footer ul li {
    width: 100%;
    margin-right: 0;
    float: none;
  }

  footer dl {
    padding: 10px 0;
  }

  footer dd a {
    padding: 15px 20px;
  }

  /*--- footer copy*/
  .holy-fc {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  /*--- pan*/
  .holy-pan {
    width: 100%;
    margin: 5px auto;
  }

  /*--- SNS ---*/
  #holy-sns {
    width: 100%;
  }

  .holy-snsIn dd {
    width: 50%;
    margin: 0 0 5px;
  }

  .holy-nf {
    min-height: auto;
  }

  /*--- aside ---*/
  #holy-side {
    width: 100%;
    float: none;
  }

  aside dt {
    font-size: 100%;
    font-weight: bold;
    padding: 5px 10px;
  }

  aside dd {
    font-size: 100%;
  }

  aside .side-2 dd p {
    line-height: 40px;
  }

  aside .side-2 dd a:before {
    line-height: 40px;
    font-family: FontAwesome;
    content: "\f152";
    position: absolute;
    left: 10px;
    color: #ff5c78;
    font-weight: normal;
  }

  /*--- slicknav ---*/
  #holy-headnv,
  #holy-side {
    display: none;
  }

  .slicknav_menu .slicknav_icon {
    display: none;
  }

  .slicknav_nav {
    border-bottom: none;
  }

  .slicknav_btn {
    float: none;
    background: #000;
    /*--- bar背景*/
    border-radius: 0;
  }

  .slicknav_menu {
    width: 100%;
    display: block;
    padding: 0;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
    background: #fff;
    /*--- dt*/
  }

  .slicknav_menu a {
    margin: 0;
    overflow: hidden;
    padding: 0;
  }

  .slicknav_nav a {
    padding: 7px 15px;
    border: none;
    color: #666;
    /*--- dd a*/
  }

  .slicknav_nav a:hover {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
    background: none;
    opacity: 1;
    background: #ffe9ec;
    /*--- dd a:hover*/
    color: #ff5c78;
  }

  .slicknav_nav .slicknav_row {
    margin: 0;
    padding: 8px;
  }

  .slicknav_nav .slicknav_row:hover {
    color: #fff;
    border-radius: 0;
    background: none;
  }

  .slicknav_menu .slicknav_menutxt {
    float: right;
    text-shadow: none;
    line-height: 1.5em;
    font-size: 90%;
    padding: 10px;
    color: #ffffff;
    /*--- bar文字*/
  }

  .slicknav_menu img {
    display: none;
  }

  .slicknav_menu>ul>li>a>p {
    display: inline-block;
  }

  .slicknav_nav ul {
    margin: 0;
  }

  a.slicknav_btn.slicknav_collapsed {
    width: 100%;
    display: block;
  }

  ul.slicknav_nav li:last-child {
    border-bottom: none;
  }

  .slicknav_menu .slicknav_no-text {
    float: right;
    margin: 15px;
  }

  .sticky {
    position: fixed;
    top: 0;
    z-index: 100;
    width: 100%;
  }
}

/*clearfix*/
#holy-wrap:after {
  content: "";
  display: block;
  clear: both;
}