@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 {
  font-size: 16px;
  line-height: 2;
  font-family: 游ゴシック体, "Yu Gothic", YuGothic, "ヒラギノ角ゴシック Pro",
    "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, Osaka, "ＭＳ Ｐゴシック",
    "MS PGothic", sans-serif;
  background: -moz-linear-gradient(
    left,
    #ec8867 0%,
    #ec8867 71%,
    #fff 71%,
    #fff 100%
  ); /* FF3.6-15 */
  background: -webkit-linear-gradient(
    left,
    #ec8867 0%,
    #ec8867 71%,
    #fff 71%,
    #fff 100%
  ); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(
    to right,
    #ec8867 0%,
    #ec8867 71%,
    #fff 71%,
    #fff 100%
  ); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ec8867', endColorstr='#fff9f9',GradientType=1 ); /* IE6-9 */
}
a {
  color: #ec8867;
  display: block;
}
a:hover {
  /*opacity: 0.6;*/
  text-decoration: underline;
  transition: 0.2s;
}
h1,
h2,
h3,
h4,
h5,
h6,
.site-name a,
p.mainc,
.glnav a,
aside div,
aside a,
footer p,
footer a,
.notf404,
.share,
.pa_nav {
  font-family: "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体",
    "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", "ＭＳ 明朝", "MS Mincho", serif;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
}
h2,
h3,
h4,
h5,
h6 {
  font-size: 140%;
  margin-bottom: 25px;
  clear: both;
}
h2 {
  color: #ec8867;
  padding: 15px;
  margin-bottom: 10px;
  font-weight: bold;
}
h3 {
  border: 2px solid #ec8867;
  padding: 10px 15px;
}
h4 {
  border-bottom: 6px double #ec8867;
  padding: 10px 15px;
}
h5 {
  border-bottom: 2px solid #ec8867;
  padding: 5px 10px;
  font-size: 120%;
}
h6 {
  padding: 5px 10px;
  font-size: 100%;
  border-bottom: 1px solid #ec8867;
}

/* 下層用 */
.under h1 {color: #ec8867;
  padding: 15px;
  /* margin-bottom: 10px; */
  font-weight: bold;
  font-size: 140%;
  /* margin-bottom: 25px; */
}

.under h2 {border: 2px solid #ec8867;
  padding: 10px 15px;}

.under h3 {border-bottom: 6px double #ec8867;
  padding: 10px 15px;
  margin-top: 40px;}




strong {
  color: #ec8867;
}
article ul {
  padding: 0.5em 0 0.5em 2.5em;
  margin: 1.5em 0;
  border: 2px solid #ec8867;
}
article ul li {
  position: relative;
  padding: 0 0 0 10px;
}
article ul li:before,
article ul li:after {
  content: "";
  display: block;
  position: absolute;
}
article ul li:before {
  top: 8px;
  left: -16px;
  width: 10px;
  height: 10px;
  background: #ec8867;
  border-radius: 50%;
}
article ol {
  counter-reset: number;
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
  border: 2px solid #ec8867;
}
article ol li {
  margin: 0;
  list-style: none;
  position: relative;
}
article ol li:before {
  counter-increment: number;
  content: counter(number);
  display: inline-block;
  margin-right: 10px;
  width: 20px;
  height: 20px;
  color: #ec8867;
  text-align: center;
  line-height: 1.2;
}
blockquote {
  background: #fff9f9;
  padding: 3em 1em;
  position: relative;
}
blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #ec8867;
  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: 150px;
  padding: 10px;
  font-weight: bold;
  vertical-align: top;
  border: 1px solid #666;
  background: #ec8867;
  color: #fff;
}
table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #666;
}
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 dashed #ec8867;
  margin: 1em 0;
  padding: 1em;
}
strong,
b {
  font-size: 100%;
}
em {
  border: 2px dotted #ec8867;
  font-style: normal;
}
del {
  text-decoration: line-through;
}
ins {
  background-color: #eee;
  display: inline-block;
}
.alignleft {
  text-align: left;
}
.aligncenter {
  text-align: center;
}
.alignright {
  text-align: right;
}
/* shadow */
.mainimg,
.pagec,
.hb,
footer {
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  -moz-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.2);
}
/* top page */
/* header */
.headera {
  float: left;
  width: 70%;
  padding: 40px 30px 0 0;
}
.site-name a,
p.mainc {
  color: #fff;
  line-height: 1.4;
}
.site-name a {
  position: relative;
  font-size: 33px;
  font-weight: bold;
}
.site-name a:hover {
  text-decoration: none;
}
p.mainc {
  margin: 0 0 15px;
  font-size: 110%;
}
.glnav {
  float: right;
  width: 30%;
}
.glnav,
#glnav-menu {
  position: relative;
}
.glnav > ul {
  margin: 30px 0 0;
}
.glnav ul#glnav-menu > li {
  display: block;
  position: relative;
  padding: 8px 0;
  text-align: center;
}
#glnav-menu li ul.sub-menu {
  display: none;
  position: absolute;
  padding: 0;
  z-index: 9999;
}
.slicknav_menu {
  display: none;
}
#glnav-menu li a {
  display: block;
  color: #ec8867;
}
/* slider */
.mainimg {
  overflow: hidden;
  position: relative;
  width: 100%;
  margin: 20px auto 0;
  border: 15px solid #fff;
  outline: 1px solid #ec8867;
}
.slider_bx {
  position: relative;
  left: 50%;
  width: 2100px;
  margin-left: -1050px;
}
.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;
}
/* contents area */
.conta {
  margin: 0 auto;
  padding: 0 8%;
}
.moreb {
  text-align: right;
  margin-top: 15px;
}
.moreb a {
  position: relative;
  padding: 3px 3rem;
  border: 2px solid #ec8867;
  color: #ec8867;
  display: inline-block;
}
.moreb a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 10px;
  left: 30px;
  border: 8px solid transparent;
  border-left: 10px solid #ec8867;
}
.moreb a:hover {
  background: #ec8867;
  color: #fff;
  text-decoration: none;
}
/* main */
.link-wrapper {
  margin: 40px auto;
  z-index: 1;
  padding: 0 8%;
}
.link-wrapper article {
  margin-bottom: 0;
}
.pagec {
  float: left;
  width: 32%;
  margin-right: 2%;
  padding: 15px;
  background-color: #fff;
  border: 1px solid #ec8867;
}
.link-wrapper article.pagec:last-child {
  margin-right: 0;
}
.pagec img {
  margin-bottom: 0;
}
.pagec h2 {
  font-size: 120%;
  margin-bottom: 0;
}
.pagec p {
  font-size: 15px;
  line-height: 1.6;
}
main {
  float: left;
  width: 70%;
}
article img {
  max-width: 100%;
  margin-bottom: 10px;
}
article {
  margin-bottom: 30px;
}
.hb {
  clear: both;
  background-color: #fff;
  padding: 15px;
}
/* おすすめリンク */
.linkbxx {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #ddd;
}
.link_it {
  margin: 0 0 30px;
}
.linkbxx h2 {
  margin: 0 0 15px;
  padding: 0;
  background: none;
  border: none;
  color: #ec8867;
}
.linkbxx h3 {
  margin: 0 2%;
  border: none;
  background-color: #fff;
  padding: 0;
}
.linkbxx h3 a {
  display: block;
  padding: 10px 10px 10px 30px;
  position: relative;
  display: block;
  color: #ec8867;
  border: 2px solid #ec8867;
  font-size: 18px;
  text-align: left;
}
.linkbxx h3 a:hover {
  background-color: #ec8867;
  color: #fff;
  text-decoration: none;
}
.linkbxx h3 a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  top: 13px;
  left: 15px;
  border: 8px solid transparent;
  border-left: 10px solid #ec8867;
}
.linkbxx p {
  padding: 0 0 0 10px;
}
/* aside */
aside {
  float: right;
  width: 25%;
  margin: 0 0 50px 5%;
  padding: 0 15px;
  position: sticky;
  top: 0;
  height: fit-content;
}
aside li > div {
  padding-left: 20px;
  color: #666;
  font-size: 24px;
  font-weight: bold;
}
aside a {
  padding: 10px 0 10px 20px;
  color: #ec8867;
}
aside img {
  float: left;
  max-width: 100%;
  margin-right: 10px;
}
.side-conta {
  margin-bottom: 50px;
}
.s_link a {
  padding-bottom: 10px;
}
.underside {
  border-top: 1px solid #ec8867;
  padding-top: 20px;
}
.underside2 {
  border-top: 1px solid #ec8867;
  padding-top: 20px;
  margin-top: 32px;
}
/* footer */
footer {
  position: relative;
  margin-bottom: 20px;
  padding: 50px 0 10px;
  color: #ec8867;
  background-color: #fff;
  border: 1px solid #ec8867;
}
footer p {
  font-size: 21px;
  color: #666;
  font-weight: bold;
}
footer a {
  color: #ec8867;
}
footer .conta {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}
.foot_cp {
  font-size: 70%;
  text-align: center;
}
.to-top {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
}
.ft-m {
  width: 50%;
  margin: 0 auto;
  padding: 15px;
}
/* subpage */
.notf404 {
  font-size: 200%;
  color: #666;
}
.p404 {
  margin-top: 32px;
}
/* pan nav */
.pa_nav {
}
.pa_nav a {
  display: inline;
  font-size: 85%;
  color: #fff;
}
.pa_nav font {
  color: #fff;
}
/* SNS */
.btn-area {
  width: 100%;
  margin: 20px 0;
}
.sns-conta {
  display: flex;
  justify-content: space-between;
  width: 50%;
  float: right;
}
.btn-area > div {
  text-align: center;
}
.btn-area:after {
  content: "";
  clear: both;
  display: block;
}
.share {
  text-align: center;
  display: block;
  font-size: 1.2vw;
  width: 45%;
  padding: 6px 15px;
  margin: 0 5% 10px 0;
  box-sizing: border-box;
  float: left;
  position: relative;
  border-bottom: 1px solid #ec8867;
  color: #ec8867;
}
.share::after {
  position: absolute;
  content: "";
  border: 5px solid transparent;
  border-left: 5px solid #ec8867;
  border-bottom: 5px solid #ec8867;
  top: 80%;
  right: 0;
}
.btn-whole {
  width: 23%;
  box-sizing: border-box;
  margin: 0 0.1%;
}
.btn-whole .fa {
  font-weight: bold;
}
.btn-link {
  display: block;
  text-align: center;
  color: #fff !important;
  font-size: 1.1vw !important;
  padding: 7px 0 !important;
  box-sizing: border-box;
  text-decoration: none;
}
.btn-link:hover {
  text-decoration: none !important;
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  opacity: 0.7;
}
/* SNSごとの背景色 */
#twitter {
  background-color: #00acee;
}
#hatena {
  background-color: #2d4c86;
}
#facebook {
  background-color: #3b5998;
}
#ggl-plus {
  background-color: #dd4b39;
}
