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

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

.cf:after {
  content: "";
  clear: both;
  display: block;
}

body {
  background: #ededed;
  color: #333;
  font-size: 12px;
  line-height: 1.5em;
  font-family: "Noto Sans Japanese";
}

/*----- ul -----*/
article ul {
  padding: 0.5em 0 0.5em 2.5em;
  margin: 1.5em 0;
  border: 1px solid #bbb;
}

article ul li:before {
  content: "■";
  margin-right: 5px;
  color: #ff2688;
}

/*----- ol -----*/
article ol {
  counter-reset: list;
  list-style-type: none;
  font: 10px/1.6 "arial narrow", sans-serif;
  padding: 0px;
  background: #eee;
}

article ol li {
  position: relative;
  line-height: 20px;
  margin: 7px 0 7px 60px;
  font-size: 12px;
}

article ol li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  top: 0;
  left: -34px;
  width: 20px;
  height: 20px;
  text-align: center;
  color: #fff;
  line-height: 22px;
  font-weight: bold;
  z-index: 1;
}

article ol li:after {
  content: "";
  position: absolute;
  top: 50%;
  left: -32px;
  width: 15px;
  height: 15px;
  background: #ff2688;
  color: #fff;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*----- blockquote -----*/
blockquote {
  background: #ff2688;
  padding: 3em 1em;
  position: relative;
  color: #fff;
  text-align: center;
}

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #eee;
  position: absolute;
}

blockquote:before {
  content: "“";
  left: 10px;
  top: 0;
  line-height: 1em;
}

blockquote:after {
  content: "”";
  right: 10px;
  bottom: 0;
}

/*----- table -----*/
table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 30%;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 1px solid #ccc;
  background: #333;
  color: #fff;
}

table td {
  padding: 10px;
  vertical-align: top;
  border: 1px solid #ccc;
}

/*----- other -----*/
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: 3px solid #eee;
  margin: 1em 0;
  padding: 1em;
}

strong {
  background: #333;
  color: #fff;
  padding: 2px;
  font-weight: normal;
}

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

em {
  font-style: normal;
  color: #ff2688;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
  border-bottom: dashed 2px #bbb;
  margin-bottom: 3px;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/*■■■■■ 大枠　■■■■■*/
#ccc {
  max-width: 1010px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

main {
  float: left;
  max-width: 72%;
  /*800px*/
  margin-bottom: 30px;
}

@media (max-width: 655px) {
  main {
    max-width: inherit;
  }
}

#bbb-area {
  float: right;
  /*min-*/
  width: 25%;
  /*210px*/
  position: sticky;
  top: 0;
  height: fit-content;
}

/*----- 見出し -----*/
h2,
h3,
h4,
h5,
h6,
.under h1 {
  line-height: 1.2;
  font-weight: normal;
  margin-bottom: 20px;
}

h2,
.under h1 {
  display: inline-block;
  font-family: "Lato-Regular", "Hiragino Kaku Gothic ProN", Verdana, Meiryo,
    sans-serif;
  font-size: 18px;
  padding: 10px;
  letter-spacing: 0.14em;
  border-bottom: solid 2px #ff2688;
}

h3,
.under h2 {
  font-size: 14px;
  color: #fff;
  background: #ff2688;
  padding: 10px 15px;
}

h4,
.under h3 {
  margin: 0 0 30px;
  padding: 0 0 10px;
  font-size: 18px;
  font-weight: normal;
  border-bottom: solid 1px #bbb;
}

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

h5 {
  color: #ff2688;
  font-size: 14px;
  font-weight: bold;
}

h6 {
  font-size: 14px;
  font-weight: bold;
  border: solid 1px #bbb;
  padding: 10px 15px;
}

img {
  max-width: 100%;
  font-weight: bold;
}

/*----- リンク -----*/
a {
  color: #333;
  display: block;
}

a:hover {
  color: #ff2688;
}

/*■■■■■ top page　■■■■■*/
/*----- header -----*/
#hhh {
  background: #fff;
  width: 100%;
}

#hhh-area {
  max-width: 1010px;
  margin: 0 auto;
  text-align: center;
}

.hhh-ttl a {
  width: 100%;
  padding-top: 20px;
  font-size: 23px;
  font-family: "Sawarabi Mincho";
  font-weight: normal;
  line-height: 1.3;

}

.hhh-copy {
  margin: 5px;
  font-size: 85%;
}

#hhh-bar ul {
  max-width: 1010px;
  margin: 0 auto 10px;
  font-size: 16px;
  display: flex;
  justify-content: flex-end;
}

#hhh-bar li {
  width: 25%;
}

#hhh-bar li a {
  flex: 1 1 auto;
  margin: 10px;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

#hhh-bar li a:after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  height: 3px;
  background: #ff2688;
}

#hhh-bar li a:hover:after {
  width: 100%;
  left: 0;
}

.slicknav_menu {
  display: none;
}

/*----- slider -----*/
.vvv-btn {
  width: 100%;
}

#vvv-area {
  max-width: 1010px;
  /*1010px*/
  /* max-height: 540px; */
  margin: 0 auto 50px;
  position: relative;
}

.grad {
  background: url(../images/slider.png) no-repeat;
  max-width: 1010px;
  /*1010px*/
  /* max-height: 540px; */
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
}

.bx-wrapper {
  margin: 0 auto;
  border: none;
  box-shadow: none;
}

.bx-wrapper .bx-prev {
  background: url(../images/lefticon.png) no-repeat 0 0;
  left: 0;
  /*-100px*/
}

.bx-wrapper .bx-next {
  background: url(../images/righticon.png) no-repeat 0 0;
  right: 0;
  /*-100px*/
}

/*----- main -----*/
main article {
  margin-bottom: 30px;
}

main article img {
  margin-bottom: 10px;
}

/*----- 本文 -----*/
.iii-box {
  width: 100%;
  padding: 10px 40px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  background: #fff;
}

/*----- 下層リンク -----*/
.lll-col {
  display: flex;
  justify-content: space-between;
}

.lll-col article {
  width: 49%;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  background: #fff;
}

/*----- もっと読む -----*/
.mmm-btn {
  text-align: center;
}

.mmm-btn a {
  width: 91px;
  margin: 20px auto;
  padding: 12px 0 12px 20px;
  color: #fff;
  text-align: left;
  font-size: 10px;
  font-family: "Lato-Regular", "Hiragino Kaku Gothic ProN", Verdana, Meiryo,
    sans-serif;
  display: inline-block;
  line-height: 0;
  letter-spacing: 0.16em;
  background: #ff2688;
}

.mmm-btn a:after {
  content: ">";
  margin-left: 10px;
}

.mmm-btn a:hover:after {
  margin-left: 15px;
  transition: 0.3s;
}

/*----- おすすめ -----*/
.ooo-box h3 a {
  display: block;
  color: #fff;
  position: relative;
}

.ooo-box h3 a:after {
  content: ">";
  position: absolute;
  right: 10px;
}

.ooo-box h3 a:hover:after {
  position: absolute;
  right: 10%;
  transition: 0.3s;
}

.ooo-box p {
  padding: 0 0 20px;
}

.ooo-box a {
  text-align: left;
}

/*----- aside -----*/
#bbb-area li {
  width: 90%;
  margin-left: 10%;
  padding: 10px;
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
  background: #fff;
}

#bbb-area dt {
  padding: 0 0 5px;
  font-size: 18px;
  font-weight: normal;
  border-bottom: solid 1px #bbb;
}

#bbb-area dd {
  padding: 10px 0;
}

#bbb-area .bbb-box1 a:before {
  content: ">";
  margin-right: 5px;
}

#bbb-area .bbb-box1 a:hover:before {
  margin-right: 10px;
  transition: 0.3s;
}

#bbb-area img {
  box-shadow: rgba(0, 0, 0, 0.1) 0px 2px 3px 0px;
}

/*----- footer -----*/
#fff-area {
  width: 100%;
  background: #fff;
  padding: 40px 0;
}

#fff-area ul {
  width: 1010px;
  margin: 0 auto;
}

#fff-area dl {
  display: flex;
  justify-content: flex-start;
  line-height: 14px;
  padding: 30px 0;
  border-bottom: 0.5px solid #ccc;
}

#fff-area dt {
  width: 70px;
  font-size: 14px;
  font-weight: bold;
  font-family: "Lato-Regular", "Hiragino Kaku Gothic ProN", Verdana, Meiryo,
    sans-serif;
}

#fff-area dd {
  margin: 0 20px;
}

#fff-area a:before {
  content: ">";
}

.fff-copy {
  width: 1010px;
  margin: 0 auto;
  font-size: 70%;
  text-align: right;
  padding: 10px 0 0;
  color: #ccc;
}

.ttt-btn {
  position: fixed;
  bottom: 10px;
  right: 20px;
  z-index: 1;
}

/*----- 404 -----*/
.no-page {
  padding: 1.5em 0.5em;
}

.no-page b {
  font-size: 46px;
  display: block;
  margin-bottom: 10px;
  color: #ff2688;
}

/*----- pan nav -----*/
#ppp-bar {
  margin-bottom: 10px;
}

#ppp-bar li {
  display: inline-block;
  margin-right: 5px;
}

/*----- SNS -----*/
#nnn-area {
  width: 100%;
  margin: 50px 0;
  text-align: center;
}

#nnn-area dt {
  width: 100%;
  text-align: center;
  display: block;
  font-size: 14px;
  padding: 6px 15px;
  margin-bottom: 10px;
  background: #333;
  color: #fff;
}

#nnn-area dd {
  width: 24%;
  float: left;
  margin: 0 0.5%;
}

#nnn-area dd .fa {
  font-weight: bold;
}

#nnn-area dd a {
  flex: 1 1 auto;
  margin: 10px;
  padding: 20px;
  text-align: center;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
  transition: 0.3s;
}

#nnn-area dd a:after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  height: 3px;
}

#nnn-area dd a#twitter:after {
  background: #00acee;
}

#nnn-area dd a#hatena:after {
  background: #2d4c86;
}

#nnn-area dd a#facebook:after {
  background: #3b5998;
}

#nnn-area dd a#ggl-plus:after {
  background: #dd4b39;
}

#nnn-area dd a:hover:after {
  width: 100%;
  left: 0;
}

/*----- SNS背景色 -----*/
#twitter {
  border: solid 3px #00acee;
  color: #00acee;
}

#hatena {
  border: solid 3px #2d4c86;
  color: #2d4c86;
}

#facebook {
  border: solid 3px #3b5998;
  color: #3b5998;
}

#ggl-plus {
  border: solid 3px #dd4b39;
  color: #dd4b39;
}

/*下層などflex内で要素が増える時*/
#ccc:has(#ppp-bar) {
  flex-wrap: wrap;
}

/*パンくずが含まれる時のみ*/
#ppp-bar {
  width: 100%;
}

/*パンくず*/