@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 {
  /*background-color: #fbede1;*/
  font-size: 16px;
  line-height: 2;
  font-family: "ＭＳ Ｐ明朝", "MS PMincho", "Yu Mincho Light", "YuMincho",
    "Yu Mincho", "游明朝体", "Savoye LET", "Gabriola", "Cambria", serif;
  background: rgb(249, 221, 197);
  /* Old browsers */
  background: rgb(249, 220, 179);
  /* Old browsers */
  background: -moz-linear-gradient(left,
      rgba(249, 220, 179, 1) 0%,
      rgba(247, 236, 220, 1) 25%,
      rgba(255, 255, 255, 1) 52%,
      rgba(247, 236, 220, 1) 81%,
      rgba(249, 220, 179, 1) 100%);
  /* FF3.6-15 */
  background: -webkit-linear-gradient(left,
      rgba(249, 220, 179, 1) 0%,
      rgba(247, 236, 220, 1) 25%,
      rgba(255, 255, 255, 1) 52%,
      rgba(247, 236, 220, 1) 81%,
      rgba(249, 220, 179, 1) 100%);
  /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to right,
      rgba(249, 220, 179, 1) 0%,
      rgba(247, 236, 220, 1) 25%,
      rgba(255, 255, 255, 1) 52%,
      rgba(247, 236, 220, 1) 81%,
      rgba(249, 220, 179, 1) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9dcb3', endColorstr='#f9dcb3', GradientType=1);
  /* IE6-9 */
}

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

a:hover {
  opacity: 0.6;
  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 {
  color: #e01f0d;
  font-weight: bold;
  font-size: 26px;
  line-height: 1.4;
  margin-bottom: 25px;
  padding-left: 10px;
}

h3,
.under h2 {
  border-left: 7px solid #e01f0d;
  padding-left: 10px;
}

h4,
.under h3 {
  border-left: 7px solid #752a0c;
  padding-left: 10px;
}

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

h5 {
  font-size: 120%;
  border-bottom: 2px solid #752a0c;
}

h6 {
  font-size: 100%;
  border-bottom: 1px solid #752a0c;
}

strong {
  border-bottom: 3px double #e01f0d;
}

article ul {
  padding: 0.5em 0 0.5em 2.5em;
  margin: 1.5em 0;
  border: 2px solid #f9dcb3;
}

article ul li {
  position: relative;
}

article ul li:before {
  content: "";
  display: block;
  position: absolute;
  top: 8px;
  left: -16px;
  width: 6px;
  height: 6px;
  background: #752a0c;
  color: #752a0c;
  border-radius: 50%;
}

article ol {
  counter-reset: counter-name;
  border: 2px solid #f9dcb3;
  padding: 0.5em 0 0.5em 1.5em;
  margin: 1.5em 0;
  color: #752a0c;
}

article ol li {
  margin: 0;
  list-style: none;
  position: relative;
  padding-left: 20px;
}

article ol li:before {
  counter-increment: counter-name;
  content: counter(counter-name) ".";
  position: absolute;
  left: 0;
}

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

blockquote:before,
blockquote:after {
  font-size: 600%;
  line-height: 0em;
  color: #752a0c;
  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 #ccc;
  background: #f9dcb3;
}

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

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

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

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

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
  border-bottom: 1px dashed #752a0c;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/* top page */
.toparea {
  margin: 50px auto;
  background-color: #fff;
  border: 1px solid #eddbb8;
}

.toparea2 {
  margin: 50px 0 0 0;
}

.titleh1 a,
p.main-Cpy,
.gNav a,
h2,
h3,
h4,
h5,
h6,
aside a {
  font-style: italic;
}

/* header */
.headLi {
  width: 35%;
  float: left;
  padding: 30px;
}

.headLi2 {
  width: 100%;
  padding: 30px 30px 30px 0;
}

.titleh1 a,
p.main-Cpy {
  line-height: 1.4;
  color: #752a0c;
}

.titleh1 a {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 15px;
}

p.main-Cpy {
  margin-bottom: 10px;
}

.gNav {
  background-color: #e01f0d;
}

.gNav a {
  color: #fff;
  padding: 12px 0;
}

.gNav a:hover {
  opacity: 0.6;
}

.gNav>ul {
  display: flex;
  justify-content: space-around;
}

.gNav ul#gNav-menu>li {
  display: block;
  position: relative;
  width: 24%;
  font-size: 16px;
  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;
}

/* slider */
.mainIMG {
  width: 65%;
  float: right;
}

.bx-wrapper {
  margin: 0 auto;
  border: none;
  box-shadow: none;
  max-width: 1080px;
}

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

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

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

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

.page-Co {
  border-top: 1px solid #eddbb8;
  border-bottom: 1px solid #eddbb8;
  padding: 15px 0;
}

.page-Co2 {
  border-bottom: 1px solid #eddbb8;
  padding: 15px 0;
}

.page-Co img {
  float: left;
  width: 40%;
  margin-right: 3%;
}

.page-Co2 img {
  float: right;
  width: 40%;
  margin-left: 3%;
}

.page-Co h2,
.page-Co2 h2 {
  padding: 0;
  display: inline;
}

.page-Co.lcp {
  float: right;
  width: 50%;
}

.page-Co2.lcp {
  float: left;
  width: 50%;
}

.read_Mr {
  text-align: right;
  clear: both;
}

.read_Mr a {
  padding: 3px 3rem;
  color: #fff;
  background-color: #421d0e;
  display: inline-block;
}

.read_Mr a:hover {
  background: #e01f0d;
  color: #fff;
  opacity: 1;
}

article {
  margin-bottom: 30px;
}

.column {
  background-color: #fff;
  border: 1px solid #eddbb8;
  padding: 20px;
}

/* おすすめリンク */
.linkBxx {
  border: 1px solid #eddbb8;
  background-color: #fff;
  padding: 20px;
}

.linkBxx h2 {
  font-size: 50px;
  font-family: "Savoye LET", "Gabriola", "Cambria";
  margin-bottom: -10px;
}

.linkBxx h3 {
  border: none;
  margin: 0;
}

.linkBxx h3 a {
  display: block;
  background-color: #421d0e;
  color: #fff;
  padding: 6px;
}

.linkBxx h3 a::after {
  content: ">";
  margin-left: 10px;
}

.linkBxx h3 a:hover {
  display: block;
  background-color: #e01f0d;
}

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

.linkBxx a {
  text-align: left;
}

.link_T {
  float: left;
  width: 50%;
}

/* aside */
aside {
  float: right;

  /*min-*/
  width: 24%;

  position: sticky;
  top: 0;
  height: fit-content;
}

aside li>div {
  color: #e01f0d;
  font-size: 50px;
  font-family: "Savoye LET", "Gabriola", "Cambria";
  margin: -30px 0;
}

aside ul li ul {
  background-color: #fff;
  border: 1px solid #eddbb8;
  margin-bottom: 80px;
}

aside ul li ul li {
  padding: 0 15px 10px;
}

aside a {
  padding: 10px 0;
  color: #752a0c;
  font-weight: bold;
}

aside img {
  float: left;
  max-width: 100px;
  margin-right: 10px;
}

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

/* footer */
footer {
  position: relative;
  background: #e01f0d;
  padding: 50px 0 10px;
  color: #fff;
}

footer p {
  font-size: 21px;
}

footer a {
  color: #fff;
}

footer .contentBx {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 50px;
}

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

.footM {
  width: 27%;
  margin: 0 auto;
}

.footM ul {
  float: left;
  border-left: 1px solid #fff;
  padding-left: 20px;
}

.footM p,
.to_TOP p {
  float: left;
  margin-right: 20px;
  font-family: "Savoye LET", "Gabriola", "Cambria";
  font-size: 30px;
}

/* under */
.m_404 {
  font-size: 300%;
  color: #752a0c;
  font-family: "Savoye LET", "Gabriola", "Cambria";
}

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

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

.pan-NAV font {
  color: #752a0c;
}

/* SNS */
.snBtn-area {
  width: 100%;
}

.sns-contentBx {
  display: flex;
  justify-content: space-between;
  width: 35%;
  margin-left: 65%;
}

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

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

.snBtn-whole {
  width: 50px;
  box-sizing: border-box;
  margin: 0 0 10px;
}

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

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

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

/* SNSごとの背景色 */
#twitter,
#hatena,
#facebook,
#ggl-plus {
  background-color: #752a0c;
}