@charset "utf-8";
@import url(https://fonts.googleapis.com/earlyaccess/roundedmplus1c.css);

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

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

body {
  background: #d10b11;
  color: #333;
  font-size: 13px;
  line-height: 170%;
  font-family: "Arial", sans-serif;
}

a {
  color: #231414;
  display: block;
  text-decoration: none;
}

a:hover {
  transition: 0.3s;
  text-decoration: underline;
}

h1,
h2 {
  line-height: 1.2;
  font-weight: 900;
  font-family: "Rounded Mplus 1c";
}

h2,
h3,
h4,
.under h1 {
  font-size: 160%;
  margin: 0 auto;
}

h3,
h4,
.under h2,
.under h3 {
  font-size: 140%;
  font-family: "Rounded Mplus 1c";
  margin: 10px 0;
}

h5,
h6 {
  font-size: 120%;
  font-family: "Rounded Mplus 1c";
  margin: 10px 0;
}

h2,
.under h1 {
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  background-color: #231815;
  color: #ffffff;
  border-radius: 10px;
}

/* 色付きの半円 */
h2::before,
.under h1::before {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  right: 20px;
  bottom: -15px;
  border-right: 20px solid #231815;
  border-bottom: 20px solid #231815;
  border-left: 20px solid transparent;
  border-top: 20px solid transparent;
}

/* 白い半円 */
h2::after,
.under h1::after {
  content: "";
  position: absolute;
  display: block;
  width: 0;
  height: 0;
  border-radius: 50%;
  transform: rotate(45deg);
  right: 35px;
  bottom: -20px;
  border-right: 20px solid #fff;
  border-bottom: 20px solid #fff;
  border-left: 20px solid transparent;
  border-top: 20px solid transparent;
}

h3,
.under h2 {
  color: #d10b11;
  padding-left: 5px;
  border-left: 8px solid #d10b11;
}

h4,
.under h3 {
  color: #d10b11;
  padding: 8px;
  border: solid 2px #d10b11;
}

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

h5 {
  background: #f39800;
  padding: 5px;
}

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

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

em {
  color: #d10b11;
}

section {
  /* width: 96%; */
  margin: 25px 0;
  padding: 10px 2%;
  background: #fff;
  border-radius: 15px;
}

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

article ul {
  margin: 20px 0;
  background: #f39800;
  padding: 10px 30px;
  border-radius: 15px;
}

article ul li {
  line-height: 1.2;
  padding: 10px 0;
}

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

article ol {
  counter-reset: list;
  list-style-type: none;
  padding: 0;
}

article ol li {
  position: relative;
  margin: 7px 0 7px 0px;
  padding-left: 40px;
  font-weight: bold;
  line-height: 30px;
  border: solid 2px #d10b11;
  border-radius: 20px;
  transition: 0.3s;
}

article ol li:before {
  counter-increment: list;
  content: counter(list);
  position: absolute;
  left: 0px;
  width: 30px;
  height: 30px;
  text-align: center;
  color: #fff;
  line-height: 30px;
  background: #d10b11;
  border-radius: 50%;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

blockquote {
  position: relative;
  padding: 10px 15px 10px 50px;
  box-sizing: border-box;
  font-style: italic;
  background: #efefef;
  color: #555;
}

blockquote:before {
  display: inline-block;
  position: absolute;
  top: 10px;
  left: -3px;
  vertical-align: middle;
  content: "“";
  font-family: sans-serif;
  color: #cfcfcf;
  font-size: 90px;
  line-height: 1;
}

blockquote p {
  padding: 0;
  margin: 10px 0;
  line-height: 1.7;
}

blockquote cite {
  display: block;
  text-align: right;
  color: #888888;
  font-size: 0.9em;
}

table {
  border-collapse: collapse;
  text-align: left;
  line-height: 1.5;
  margin-bottom: 20px;
  font-size: 12px;
}

table th {
  padding: 10px;
  vertical-align: top;
  border: 2px solid #f39800;
  background: #f39800;
  text-align: center;
}

table td {
  padding: 10px;
  vertical-align: top;
  border: 2px solid #f39800;
  background: #fff;
}

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

del {
  text-decoration: line-through;
}

ins {
  display: inline-block;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

/* top page */
/* header */
#headWrap {
  width: 100%;
  text-align: center;
  background: #fff;
}

#headWrap-inner {
  width: 100%;
  background-image: linear-gradient(-45deg,
      #fff 25%,
      #dcf0f7 25%,
      #dcf0f7 50%,
      #fff 50%,
      #fff 75%,
      #dcf0f7 75%,
      #dcf0f7);
  background-size: 8px 8px;
}

#headWrap .headWrap-ttl a {
  padding: 20px 0 0;
  font-size: 28px;
  color: #d10b11;
  line-height: 1.3;
}

#headWrap .headWrap-ttl a:hover {
  text-decoration: none;
  letter-spacing: 0.1em;
}

#headWrap p.headWrap-copy {
  background: #d10b11;
  color: #fff;
  font-size: 80%;
  letter-spacing: 0.8em;
}

#headWrap-nav {
  max-width: 700px;
  margin: 0 auto;
}

#headWrap-nav>ul {
  display: flex;
  justify-content: space-around;
}

#headWrap-nav ul>li {
  display: block;
  width: 25%;
  font-family: "Rounded Mplus 1c";
}

#headWrap-nav ul>li a {
  line-height: 50px;
}

#headWrap-nav ul>li a:hover {
  background: url(../images/nav_btn.gif) no-repeat center bottom;
  letter-spacing: 0.2em;
  text-decoration: none;
}

.slicknav_menu {
  display: none;
}

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

/* contents area */
#wrapper {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}

/* 2column */
.link-2column {
  display: flex;
  -webkit-justify-content: space-around;
  /* Safari */
  justify-content: space-around;
  padding-bottom: 25px;
}

.link-2column article {
  width: 260px;
  text-align: center;
  border-radius: 15px;
}

.link-2column article img {
  width: 100%;
  margin: 20px 0;
}

.link-col2 article p {
  text-align: left;
}

.motto-bn {
  margin: 20px 0;
  font-weight: bold;
  font-size: 120%;
}

.motto-bn a {
  padding: 10px 30px;
  text-decoration: none;
  text-align: center;
  background: #f39800;
  border-radius: 15px;
  box-shadow: 5px 5px 0px -1px #231414;
  -moz-box-shadow: 5px 5px 0px -1px #231414;
  -webkit-box-shadow: 5px 5px 0px -1px #231414;
}

.motto-bn a:hover {
  letter-spacing: 0.1em;
  margin: 0 0 5px 5px;
  box-shadow: none;
  text-decoration: none;
}

/* main */
main {
  float: right;
  max-width: 70%;
  /*600px*/
  margin: 0 0 30px;
}

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

.link-1column {
  background: #fff;
  padding: 20px;
  border-radius: 15px;
}

/* おすすめリンク */
.recommendBox p {
  padding: 0 0 10px;
}

.recommendBox h3 {
  border: none;
  margin: 20px 0;
  position: relative;
}

.recommendBox h3 a {
  text-align: left;
  padding: 10px 30px;
  text-decoration: none;
  background: #f39800;
  border-radius: 15px;
  box-shadow: 5px 5px 0px -1px #231414;
  -moz-box-shadow: 5px 5px 0px -1px #231414;
  -webkit-box-shadow: 5px 5px 0px -1px #231414;
}

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

.recommendBox h3 a:hover {
  letter-spacing: 0.1em;
  margin: 0 0 5px 5px;
  box-shadow: none;
  text-decoration: none;
}

/* #sideWrap */
#sideWrap {
  float: left;
  /*min-*/
  width: 23%;
  /*240px*/
  text-align: center;
  margin: 25px 0 0;
  position: sticky;
  top: 0;
  height: fit-content;
}

#sideWrap li dl {
  margin-bottom: 60px;
}

#sideWrap li dt {
  font-family: "Rounded Mplus 1c";
  margin: 10px 0;
  color: #fff;
  font-size: 140%;
  font-weight: bold;
}

#sideWrap li dd {
  margin: 15px 0;
}

#sideWrap li dd a {
  line-height: 330%;
  background: #fff;
  border-radius: 15px;
  box-shadow: 5px 5px 0px -1px #231414;
  -moz-box-shadow: 5px 5px 0px -1px #231414;
  -webkit-box-shadow: 5px 5px 0px -1px #231414;
}

#sideWrap li dd a:hover {
  margin: 0 0 5px 5px;
  box-shadow: none;
  text-decoration: none;
  letter-spacing: 0.2em;
}

#sideWrap img {
  max-width: 90%;
  margin: 10px 5% 0;
  border-radius: 10px;
}

/* footer */
#footWrap {
  width: 100%;
  position: relative;
  background: #231816;
}

#footWrap ul {
  max-width: 880px;
  margin: 0 auto;
  display: -webkit-flex;
  /* Safari */
  display: flex;
}

#footWrap li {
  /*min-*/
  width: 240px;
  background: #fff;
  border-radius: 15px;
  padding: 10px 2%;
  margin: 10px;
}

#footWrap dl {
  font-size: 12px;
}

#footWrap dt {
  color: #d10b11;
  font: 140% "Rounded Mplus 1c";
  font-weight: bold;
}

#footWrap dd {
  color: #999;
  line-height: 300%;
}

#footWrap dd a:hover {
  text-decoration: none;
  letter-spacing: 0.2em;
}

.footWrap-copy {
  text-align: center;
  padding: 5px 0;
  font: 90% "Rounded Mplus 1c";
  color: #fff;
  background: #d10b11;
}

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

/* under */
.notF {
  padding: 50px 20px;
  color: #fff;
}

.notF b {
  font-size: 250%;
}

/* pan nav */
.breadcrumb {
  padding: 10px 0;
  margin-left: 0;
}

.breadcrumb li {
  position: relative;
  display: inline-block;
  /*横に並ぶように*/
  list-style: none;
  font-weight: bold;
  /*太字*/
  margin-right: 6px;
}

.breadcrumb li:after {
  content: "";
  position: absolute;
  top: 7px;
  right: -19px;
  border-style: solid;
  border-color: transparent;
  border-left-color: #fff;
  border-width: 7px 12px;
  width: 0;
  height: 0;
}

.breadcrumb li a {
  display: inline-block;
  padding: 0 7px;
  height: 28px;
  line-height: 28px;
  text-decoration: none;
  color: #d10b11;
  background: #fff;
  font-size: 13px;
  border-radius: 20px;
  transition: 0.3s;
}

.breadcrumb li a:hover {
  transform: translateY(-3px);
}

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

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

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

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

.title-fill {
  text-align: center;
  display: block;
  background-color: #231414;
  color: #fff;
  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: #00acee;
}

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

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

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

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

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

/*パンくず*/