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

@font-face {
  font-family: "Meiryo";
  src: url("./font/meiryo.ttc") format("truetype");
}

@font-face {
  font-family: "Koz";
  src: url("./font/KozGoPro-Heavy.otf") format("truetype");
}

body {
  background-color: #f9ebd6;
  font-size: 16px;
  line-height: 2;
  font-family: "Meiryo";
}

a {
  display: block;
  color: #000;
  text-decoration: underline;
}

a:hover {
  transition: 0.2s;
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.2;
  font-weight: normal;
  font-family: "Koz", sans-serif;
}

h3,
h4,
h5,
h6 {
  margin-bottom: 25px;
}

h1 {
  text-align: center;
}

h2 {
  font-size: 24px;
  color: #000;
  text-align: center;
  padding: 10px 0;
  border-bottom: solid 3px #ffeb00;
}

h3 {
  font-size: 22px;
  color: #e05b4a;
}

h3:before {
  content: "〇";
  margin-right: 5px;
}

h4 {
  font-size: 20px;
  border: 1px solid #333;
  line-height: 40px;
  padding-left: 12px;
}

h5 {
  font-size: 120%;
  border-bottom: dashed 2px #333;
}

h6 {
  font-size: 100%;
}

/* 下層用 */
.under h1 {
  font-size: 24px;
  color: #000;
  text-align: center;
  padding: 10px 0;
  border-bottom: solid 3px #ffeb00;
}

.under h2 {
  font-size: 22px;
  color: #e05b4a;
}

.under h3 {
  font-size: 20px;
  border: 1px solid #333;
  line-height: 40px;
  padding-left: 12px;
  margin-top: 40px;
}



strong {
  border-bottom: 2px dashed #e05b4a;
}

article ul {
  margin: 20px 0;
  padding-left: 20px;
  background: #fff6ea;
}

article ul li {
  margin: 12px;
}

article ul li:before {
  content: "・";
}

article ol {
  margin: 20px 0;
  padding-left: 30px;
  counter-reset: count;
  background: #fff6ea;
}

article ol li {
  display: list-item;
  text-align: -webkit-match-parent;
}

article ol li:before {
  counter-increment: count;
  content: counter(count);
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  margin-right: 5px;
  line-height: 1.4em;
  background: #ffec00;
  border-radius: 50%;
  font-family: "Koz", sans-serif;
  text-align: center;
}

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

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

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

blockquote:after {
  content: "”";
  right: 5px;
  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: #222;
  font-family: "Koz", sans-serif;
  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: 3px solid #eee;
  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 */
.headLine {
  width: 100%;
  padding: 0 0 10px;
}

.ttlBox {
  width: 100%;
  background: #ff8977;
  padding: 30px 0 150px;
}

.ttlBox2 {
  width: 100%;
  background: #ff8977;
  padding: 30px 0 20px;
}

.headLine a {
  color: #fff;
  text-decoration: none;
}

.headLine .headTtl a {
  font-size: 32px;
  font-weight: bold;
  font-family: "Koz", sans-serif;
  text-align: center;
}

.headLine p.cCopy {
  text-align: center;
  margin-bottom: 20px;
  font-size: 90%;
  font-weight: bold;
  color: #fff;
}

.navbarArea>ul {
  display: flex;
  justify-content: space-around;
  max-width: 1060px;
  margin: 0 auto 20px;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

.navbarArea ul#navbar>li {
  display: block;
  position: relative;
  width: 25%;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}

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

.slicknav_menu {
  display: none;
}

#navbar li a {
  display: block;
  color: #000;
  background-color: #fff;
  line-height: 500%;
  text-decoration: none;
}

#navbar li a:hover {
  color: #fff;
  background-color: #ffeb00;
}

/* slider */
.bx-wrapper {
  margin: -150px auto 0;
  border: none;
  box-shadow: none;
}

/* contents area */
.layout {
  max-width: 1060px;
  margin: 0 auto 20px;
  display: flex;
  justify-content: space-between;
}

.readMore {
  text-align: right;
}

.readMore a {
  padding: 3px 3rem;
  display: inline-block;
  background: #fff6ea;
  color: #e05b4a;
  border: solid 1px #e05b4a;
  text-decoration: none;
}

.readMore a:hover {
  background: #fff;
}

/* mainarea */
main {
  float: right;
  max-width: 760px;
  margin-bottom: 100px;
}

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

.linkArea img {
  max-width: 100%;
}

article {
  margin-bottom: 30px;
}

/* おすすめリンク */
.recoLink h3 {
  position: relative;
}

.recoLink h3:before {
  content: none;
  margin-right: 0;
}

.recoLink h3 a {
  display: block;
  background: #ffeb00;
  text-decoration: none;
  padding: 12px;
}

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

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

.recoLink a {
  text-align: left;
}

/* aside */
aside {
  float: left;
  /*min-*/
  width: 270px;
  position: sticky;
  top: 0;
  height: fit-content;
}

aside>ul>li {
  border: solid 1px #e05b4a;
  background: #fff6ea;
  margin-bottom: 10px;
}

aside li>div {
  color: #e05b4a;
  font-size: 16px;
  font-weight: bold;
  text-align: center;
  line-height: 300%;
  font-family: "Koz", sans-serif;
}

aside a {
  line-height: 400%;
  text-align: center;
  font-size: 14px;
  color: #e05b4a;
  text-decoration: none;
}

aside a:hover {
  background-color: #fff;
}

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

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

footer p {
  font-size: 18px;
  font-family: "Koz", sans-serif;
}

footer a {
  font-size: 100%;
}

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

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

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

.footerArea {
  width: 27%;
  margin-right: 3%;
}

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

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

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

.panList font {}

/* SNS */
.btnArea {
  width: 100%;
  margin: 50px 0;
}

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

.btnArea>div {
  text-align: center;
}

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

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

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

.btnWhole .fa {
  font-weight: bold;
}

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

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

/* SNSごとの背景色 */
#tw {
  background-color: #00acee;
}

#ques {
  background-color: #2d4c86;
}

#fb {
  background-color: #3b5998;
}

#ggl {
  background-color: #dd4b39;
}

/*下層などflex内で要素が増える時*/
.layout.cf:has(.panList) {
  flex-wrap: wrap;
}

/*パンくずが含まれる時のみ*/
.panList {
  width: 100%;
}

/*パンくず*/