@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;
}

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

body {
  width: 100%;
  background-color: #e1f5fb;
  font-size: 14px;
  line-height: 2;
  font-family: "Noto Sans Japanese", "HiraKakuProN-W3", "ヒラギノ角ゴ Pro W3",
    "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo",
    "ＭＳ\ Ｐゴシック", "sans-serif";
}

a {
  color: #000;
  display: block;
}

a:hover {
  color: #b1a395;
  transition: 0.2s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
}

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

h2,
.under h1 {
  font-size: 18px;
  background: #fff;
  padding: 10px 15px;
  color: #000;
  border-bottom: solid 6px #e73276;
}

h2.oslink {
  font-size: 18px;
  background: #e73276;
  padding: 10px 15px;
  border-bottom: solid 6px #fff;
  color: #fff;
}

h3,
.under h2 {
  font-size: 18px;
  border-left: 5px solid #e73276;
  padding-left: 10px;
  background: #fff;
  padding: 9px;
}

h3.oslink {
  font-size: 18px;
  background: #e73276;
  padding: 10px 15px;
  border-bottom: solid 6px #fff;
  color: #fff;
}

h4,
.under h3 {
  font-size: 18px;
  border-bottom: 2px dotted #000;
  padding-bottom: 5px;
}

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

h5 {
  color: #e74570;
  font-size: 120%;
}

h6 {
  color: #249c81;
  font-size: 100%;
}

h7 {
  padding: 10px 15px;
  font-size: 18px;
  background: #e73276;
  color: #fff;
}

strong {
  background: linear-gradient(transparent 40%, #8dff9f 60%);
}

article ul {
  padding: 0 10px 18px 10px;
  margin: 1.5em 0;
  border: 2px solid #e73276;
}

article ul li {
  position: relative;
  line-height: 0;
  border-bottom: 1px dashed #e73276;
  padding: 20px;
}

article ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 17px;
  left: 2px;
  width: 10px;
  height: 10px;
  background: #e73276;
  border-radius: 20px;
}

article ol {
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
  padding: 0.3em 0.8em;
  margin: 1.5em 0;
  border: solid 2px #e73276;
}

article ol li {
  border-bottom: dashed 1px #e73276;
  position: relative;
  padding: 0.5em 0.5em 0.5em 30px;
  line-height: 1.5em;
}

article ol li:before {
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: counter(number);
  /*数字のデザイン変える*/
  display: inline-block;
  background: #e73276;
  color: white;
  font-family: "Avenir", "Arial Black", "Arial", sans-serif;
  font-weight: bold;
  font-size: 15px;
  border-radius: 50%;
  left: 0;
  width: 25px;
  height: 25px;
  line-height: 25px;
  text-align: center;
  /*以下 上下中央寄せのため*/
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

ol li:last-of-type {
  border-bottom: none;
  /*最後のliの線だけ消す*/
}

blockquote {
  background: #fff;
  padding: 3em 1em;
  position: relative;
}

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

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

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

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

table th {
  width: 165px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 2px dotted #e73276;
  background: #ff92bb;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 2px dotted #e73276;
}

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 #70706f;
  margin: 1em 0;
  padding: 1em;
}

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

em {
  font-style: normal;
}

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/* top page */
/* header */
.h_eadarea {
  position: fixed;
  left: 0;
  width: 22%;
  box-sizing: border-box;
  background: #fff;
  z-index: 9999;
  float: left;
}

.h_eadarea a {
  color: #fff;
  text-align: center;
  margin: 10px;
}

.h_eadarea .s_itettl a {
  font-size: 18px;
  color: #707070;
  text-align: left;
  margin-bottom: 35px;
  line-height: 1.3;
}

p.c_atchcopy {
  margin-bottom: 10px;
  color: #707070;
  font-size: 10px;
  padding: 5px 10px 5px 10px;
  line-height: 15px;
}

.gnav>ul {
  /*追加*/
  list-style: none;
  line-height: 1.4;
  margin: 0 auto;
}

.gnav ul#gnav-menu>li {
  display: block;
  position: relative;
  width: 24%;
  font-size: 14px;
  text-align: center;
}

#gnav-menu li ul.sub-menu {
  display: none;
  position: absolute;
  padding: 0;
  z-index: 9999;
}

.slicknav_menu {
  display: none;
}

#gnav-menu li a {
  display: block;
  color: #e73276;
  font-size: 15px;
}

#gnav-menu li a:hover {
  background: #e73276;
  color: #fff;
}

/* slider */
.m_ainvisual {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin-bottom: 50px;
}

.s_liderbox {
  position: relative;
  left: 50%;
  width: 2940px;
  margin-left: -1470px;
}

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

.bx-wrapper .bx-controls-direction a {
  position: absolute;
  top: 50%;
  margin-top: -16px;
  outline: 0;
  width: 60px;
  height: 60px;
  text-indent: -9999px;
  z-index: 9999;
}

.bx-wrapper .bx-pager,
.bx-wrapper .bx-controls-auto {
  bottom: 10px;
}

.bx-wrapper .bx-next:hover,
.bx-wrapper .bx-next:focus {
  background-position: 0 0;
}

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

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

/* contents area */
.c_ontainer {
  max-width: 1265px;
  margin: 0 auto;
}

.m_orebtn {
  text-align: right;
}

.m_orebtn a {
  padding: 3px 3rem;
  border: 4px dotted #d2e81c;
  color: #e73276;
  display: inline-block;
  margin: 10px 5px 0 0;
  background: #fff;
}

.m_orebtn a:hover {
  background: #fff;
  color: #e73276;
}

/* main */
main {
  max-width: 820px;
  margin-bottom: 100px;
  float: left;
  background: #fff;
  padding: 15px;
  border: dotted 4px #e0f5fc;
  margin-left: 20%;
  /*topのみに*/
}

main.under {
  max-width: 100%;
  margin-left: 200px;
}

/*下層*/
@media (max-width: 650px) {
  main.under {
    margin-left: inherit;
  }
}

article img {
  max-width: 100%;
  margin-bottom: 10px;
  border: 5px #fff solid;
}

.l_inkcont img {
  float: left;
  max-width: 340px;
  margin-right: 10px;
}

article {
  margin-bottom: 30px;
}

/* おすすめリンク */
.l_inkbox h5 a {
  display: block;
  color: #e73276;
}

.l_inkbox h5 a::after {
  content: ">";
  margin-left: 7px;
}

.l_inkbox p {
  padding: 0 0 20px;
}

.l_inkbox a {
  text-align: left;
}

/* aside */
aside {
  float: right;

  /*min-*/
  width: 23%;
  position: sticky;
  top: 0;
  height: fit-content;
}

aside li>div {
  color: #e73276;
  font-size: 18px;
  border-bottom: 8px dotted #ffffff;
  border-top: dotted 8px #ffffff;
  text-align: center;
}

aside a {
  padding: 8px 0;
}

aside img {
  float: left;
  max-width: 100px;
  margin-right: 10px;
  border: 5px #fff solid;
}

.s_idelink a {
  margin-bottom: 10px;
}

/* footer */
footer {
  position: relative;
  background: #b1a395;
  color: #ffffff;
  width: 100%;
  margin-top: 20px;
  background: #e73276;
  padding: 40px 0 15px 0;
}

footer p {
  font-size: 21px;
}

footer a {
  color: #fff;
  font-size: 85%;
}

footer a:hover {
  color: #fff;
  text-decoration: underline;
}

footer .c_ontainer {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 35px;
  width: 45%;
}

.f_tcopy {
  font-size: 70%;
  text-align: center;
}

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

.f_tmenu {
  width: 27%;
  margin-right: 3%;
  margin: auto;
  text-align: left;
}

/* under */
.notfound {
  font-size: 200%;
  color: #e73276;
}

/* pan nav */
.panav {
  margin-bottom: 10px;
}

.panav a {
  display: inline;
  font-size: 85%;
}

.panav font {
  color: #ccc;
}

/* SNS */
.button-area {
  width: 100%;
  margin: 50px 0;
}

.sns-c_ontainer {
  display: flex;
  justify-content: space-between;
}

.button-area>div {
  text-align: center;
}

.button-area:after {
  content: "";
  clear: both;
  display: block;
}

.title-fill {
  color: #e73276;
  border-bottom: 6px dotted #e73276;
  border-top: dotted 6px #e73276;
  text-align: center;
  display: block;
  font-size: 14px;
  width: 100%;
  padding: 6px 15px;
  margin-bottom: 10px;
  box-sizing: border-box;
}

.button-whole {
  width: 23%;
  box-sizing: border-box;
  margin: 0 0.1%;
}

.button-whole .fa {
  font-weight: bold;
}

.button-link {
  display: block;
  text-align: center;
  color: #fff !important;
  font-size: 14px !important;
  padding: 10px 0 !important;
  box-sizing: border-box;
  text-decoration: none;
}

.button-link:hover {
  text-decoration: none !important;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}

/* SNSごとの背景色 */
#twitter {
  background-color: #43cbfe;
}

#hatena {
  background-color: #536b9a;
}

#facebook {
  background-color: #5072b7;
}

#ggl-plus {
  background-color: #e46150;
}

/*m_ainarea*/
.m_ainarea {
  max-width: 100%;
  color: #000;
  background-color: #e1f5fb;
  float: right;
}

.m_aincontents {
  margin: 10px auto;
  /* width: 96%; */
  display: flex;
  justify-content: space-between;
}