@charset "utf-8";
@import url("http://fonts.googleapis.com/earlyaccess/sawarabigothic.css");
@import url("http://fonts.googleapis.com/earlyaccess/sawarabimincho.css");

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

body {
  font-family: "Helvetica Light", "游ゴシック体", "Yu Gothic", YuGothic,
    "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic ProN",
    "Hiragino Kaku Gothic Pro", verdana, "メイリオ", "Meiryo", "Osaka",
    sans-serif;
  color: #1a1a1a;
  font-size: 14px;
  background: #fff;
}

del {
  text-decoration: line-through;
}

.alignleft {
  text-align: left;
}

.aligncenter {
  text-align: center;
}

.alignright {
  text-align: right;
}

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

strong {
  color: #e23a23;
}

em {
  background: rgba(0, 0, 0, 0) linear-gradient(transparent 60%, rgba(255, 221, 31, 0.4) 0%) repeat scroll 0 0;
}

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

ins {
  display: inline-block;
  background: #f2f0ed;
}

/*--- table*/
table {
  border-collapse: collapse;
  line-height: 1.5;
  margin-bottom: 20px;
  background: #fff;
}

table th {
  width: 150px;
  padding: 10px;
  text-align: center;
  vertical-align: top;
  background: #eae0d6;
  font-weight: normal;
  border: solid 1px #bfbfbf;
}

table td {
  width: 350px;
  padding: 10px;
  vertical-align: top;
  border: 1px solid #bfbfbf;
  font-size: 90%;
}

/*--- blockquote*/
blockquote {
  font-size: 110%;
  text-align: center;
  background: #e23a23;
  color: #fff;
  padding: 2em;
  position: relative;
  z-index: 1;
  font-family: "Sawarabi Mincho", serif;
}

blockquote:after {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 30px solid transparent;
  border-top: 50px solid #fff;
  content: "";
}

blockquote:before {
  content: "“";
  font-size: 80px;
  line-height: 1em;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  left: -10px;
  top: 0;
  z-index: -1;
}

/*--- list ul*/
article ul {
  width: 100%;
  margin: 40px 0;
  background: #eae0d6;
  position: relative;
  border-top: solid 2px #121212;
  border-bottom: solid 2px #121212;
}

article ul:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 35px solid transparent;
  border-top: 70px solid #121212;
  content: "";
}

article ul:after {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 35px solid transparent;
  border-bottom: 70px solid #121212;
  content: "";
}

article ul li {
  font-size: 12px;
  margin: 0.5em 0;
  padding: 10px 35px;
  line-height: 2.35em;
  font-family: "Sawarabi Gothic", sans-serif;
}

article ul li:before {
  content: "\f0da";
  font-family: FontAwesome;
  margin-right: 8px;
}

/*--- list ol*/
article ol {
  width: 100%;
  margin: 40px 0;
  background: #f2f0ed;

  counter-reset: number;
  list-style-type: none !important;
  position: relative;
}

article ol:before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-right: 35px solid transparent;
  border-top: 70px solid #fff;
  content: "";
}

article ol:after {
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  border-left: 35px solid transparent;
  border-bottom: 70px solid #fff;
  content: "";
}

article ol li {
  margin: 1.5em 0;
  padding: 15px 0 15px 65px;

  list-style: none;
  position: relative;
}

article ol li:before {
  font-size: 12px;
  color: #fff;
  background: #121212;
  font-weight: bold;

  position: absolute;
  counter-increment: number;
  content: counter(number);
  text-align: center;
  display: inline-block;

  width: 20px;
  height: 20px;
  line-height: 20px;
  left: 35px;

  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

/*--- layout ---*/
#page-wrap {
  max-width: 960px;
  margin: 65px auto 30px;
  /* overflow: hidden; */
  display: flex;
  justify-content: space-between;
}

article {
  margin-bottom: 30px;
}

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

/*--- link*/
a {
  display: block;
  color: #121212;
}

a:hover {
  color: #e23a23;
}

i {
  margin-right: 3px;
}

/*--- title ---*/
h1,
h2,
h3,
h4,
h5,
h6,
.under h1,
.under h2,
.under h3 {
  line-height: 1.2;
  font-weight: 700;
  font-family: "Sawarabi Mincho", serif;
}

h2,
h3,
h4,
h5,
h6 {
  font-size: 140%;
  margin-bottom: 15px;
}

h2,
.under h1 {
  color: #121212;
  font-size: 190%;
  letter-spacing: -0.1em;
  border-bottom: solid 2px #fff;
  box-shadow: 0px 2px #121212, 0px -3px #121212 inset;
}

h2:first-letter,
.under h1::first-letter {
  font-size: 140%;
}

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

h4,
.under h3 {
  border: solid 1px #121212;
  padding: 5px 10px;
}

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

h5 {
  font-size: 110%;
  background: #121212;
  color: #fff;
  padding: 5px 10px;
}

h6 {
  font-size: 110%;
  background: #eae0d6;
  padding: 5px 10px;
}

/*--- header ---*/
#page-hd {
  width: 100%;
  background: rgba(18, 18, 18, 0.38);
}

.page-hdIn {
  width: 100%;
  text-align: center;
  position: relative;
}

.page-hdTtl {
  width: 250px;
  height: 210px;
  margin: 0 auto 190px;
  overflow: hidden;
  background: rgba(226, 58, 35, 0.9);
}

/*--- h1*/
h1,
.ttl_h {
  clear: both;
  font-family: "Sawarabi Mincho", serif;
  position: static;
}

h1 a,
.ttl_h a {
  width: 200px;
  margin: 22px auto;
  font-size: 120%;
  font-weight: 700;
  letter-spacing: -0.05em;
  color: #fff;
  line-height: 1.3;
}

.ttl_h a {
  width: inherit;
}

h1 a:first-letter {
  font-size: 165%;
}

h1 a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- headCopy*/
.page-cp {
  width: 200px;
  margin: 0 auto;
  font-size: 75%;
  color: #fff;
  border-top: 1px solid #fff;
  padding-top: 20px;
}

/*--- 下層のみ*/
.page-lower .page-hdTtl {
  width: 100%;
  height: auto;
  margin: 0;
}

.page-lower h1 a {
  width: 960px;
  margin: 0 auto;
  padding: 15px 0;
}

.page-lower h1 a:hover {
  color: #fff;
}

.page-lower .page-cp {
  width: 960px;
  padding-bottom: 15px;
}

/*--- headNav ---*/
#page-hdnv {
  width: 100%;
  background: #121212;
  z-index: 999;
}

.page-nvIn {
  max-width: 960px;
  margin: 0 auto;
  overflow: hidden;
  text-align: center;
}

.page-nvIn li {
  width: 25%;
  float: left;
}

.page-nvIn li a {
  color: #fff;
  font-family: "Sawarabi Mincho", serif;
  padding: 30px 0;
}

.page-nvIn li a:hover {
  color: #e23a23;
}

.slicknav_menu {
  display: none;
}

/*--- mainSlider ---*/
#page-mainvisual {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: -1;
  opacity: 0.9;
}

.mainpage-slid {
  width: 100%;
  position: relative;
  left: 50%;
  margin-left: -530px;
}

.bx-wrapper {
  max-width: 100% !important;
  margin: 0 auto;
  position: relative;
  border: none;
  box-shadow: none;
}

.ntrs-mainvisual .bx-viewport {
  height: auto !important;
}

.bx-wrapper .bx-controls-direction a {
  display: none;
}

/*--- mainArea ---*/
#page-main {
  max-width: 78%;
  float: right;
}

/*--- 下層リンク ---*/
.page-sec {
  width: 100%;
  font-family: "Sawarabi Mincho";
}

.page-sec .page-lk {
  width: 49%;
  float: left;
  background: #eae0d6;
  overflow: hidden;
  padding: 0;
}

.page-sec .page-lk:nth-last-child(1) {
  float: right;
}

.page-lk h2 {
  border-bottom: 0;
  box-shadow: none;
  font-weight: normal;
  font-size: 160%;
}

.page-lk h2:first-letter {
  font-size: 100%;
}

.page-lk>div {
  width: 90%;
  margin: 0 auto;
}

.page-sec .page-lk img {
  width: 94%;
  margin: 3%;
  display: block;
}

/*--- readMore*/
.page-more {
  width: 210px;
  margin: 1.5em auto;
  border: solid 1px #121212;
  text-align: center;
}

.page-more a:before {
  font-family: FontAwesome;
  content: "\f0da";
  position: absolute;
  right: 15px;
}

.page-more a {
  font-size: 85%;
  line-height: 18px;
  padding: 10px 0;
  position: relative;
}

.page-more a:hover {
  background: #121212;
  color: #fff;
  text-decoration: none;
}

/*--- recommend ---*/
#page-rc {
  overflow: hidden;
  padding: 15px 15px 0;
  background: #eae0d6;
}

#page-rc h2 {
  border-bottom: none;
  box-shadow: none;
  text-align: center;
}

#page-rc h2:first-letter {
  color: #e23a23;
}

/*--- h3_link*/
.page-rcIn {
  margin: 20px 0;
}

.page-rcIn h3 {
  width: 90%;
  margin: 0 auto;
  position: relative;
  display: block;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-left: 0;
}

.page-rcIn h3 a {
  padding: 16px 0;
  color: #fff;
  background: #121212;
}

.page-rcIn h3 a:before {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
}

.page-rcIn h3 a:hover {
  opacity: 0.8;
  text-decoration: none;
}

.page-rcIn p {
  width: 90%;
  margin: 3px auto 0;
  /* text-align: right; */
  font-size: 85%;
}

/*--- aside ---*/
#page-side {
  /*min-*/
  width: 18%;
  float: left;
  position: sticky;
  top: 0;
  height: fit-content;
}

aside dl {
  margin-bottom: 50px;
}

aside dt {
  font-size: 100%;
  letter-spacing: 0.3em;
  padding: 8px 5px;
  margin-bottom: 2px;
  border-bottom: solid 2px #121212;
}

aside dd {
  font-size: 90%;
}

aside dd:nth-of-type(1) {
  border-top: solid 1px #121212;
}

/*--- 上block*/
aside .side_fi dd a {
  line-height: 38px;
  padding: 5px;
}

/*--- 下block*/
aside .side_se dd {
  width: 100%;
  font-size: 75%;
}

aside .side_se dd img {
  width: 100%;
  border-bottom: 1px #121212 solid;
}

aside .side_se dd p {
  width: 100%;
  background: #fff;
}

aside .side_se a {
  color: #121212;
}

aside .side_se a:hover {
  color: #e23a23;
}

aside .side_se a:hover img {
  opacity: 0.8;
}

/*--- footer ---*/
#page-ft {
  width: 100%;
  background: #121212;
}

footer ul {
  width: 950px;
  margin: 0 auto;
  overflow: hidden;
}

footer ul li {
  width: 220px;
  margin-right: 100px;
  float: left;
}

footer dl {
  padding: 20px 0;
  overflow: hidden;
}

footer dt {
  padding: 15px 10px;
  color: #fff;
  position: relative;
  font-family: "Sawarabi Mincho", serif;
}

footer dd {
  font-size: 90%;
}

footer dd a {
  color: #fff;
  padding: 10px;
}

/*--- footCopy*/
.page-fc {
  width: 85%;
  padding: 20px 0;
  margin: 0 auto;
  font-size: 75%;
  color: #fff;
  text-align: right;
}

/*--- 404*/
.page-nf b {
  font-size: 260%;
  color: #e23a23;
}

/*--- pan*/
.page-pan {
  width: 960px;
  margin: 10px auto;
}

.page-pan a {
  display: inline;
  padding: 0 8px;
  font-size: 85%;
}

/*--- SNS ---*/
#page-sns {
  overflow: hidden;
  padding: 15px;
  background: #eae0d6;
}

.page-snsIn h2 {
  border-bottom: none;
  box-shadow: none;
  text-align: center;
}

.page-snsIn h2:first-letter {
  color: #e23a23;
}

.page-snsIn dd {
  width: 25%;
  margin: 0 auto;
  float: left;
  display: block;
  font-size: 15px;
  text-align: center;
  text-decoration: none;
  border-left: 0;
}

.page-snsIn dd a {
  width: 94%;
  margin: 0 auto;
  padding: 16px 0;
  color: #fff;
  background: #28aae1;
  position: relative;
}

.page-snsIn dd a:before {
  content: "";
  position: absolute;
  right: 2px;
  bottom: 2px;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
}

.page-snsIn dd a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/*--- 個別*/
#tw {}

#fb {
  background: #041d4d;
}

#ggl {
  background: #dd4b39;
}

#ht {
  background: #3b5998;
}

.page-snsIn .fab {}

/*--- topPage*/
p.page-btn a {
  display: block;
  margin: 2px;
  padding-top: 15px;
  width: 64px;
  height: 64px;

  background: #fff;
  border: 1px solid #121212;
  border-radius: 32px;
  box-sizing: border-box;

  font-style: italic;
  font-family: "Sawarabi Mincho", serif;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;

  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}

p.page-btn a:hover {
  background: #e23a23;
  border: 1px solid #e23a23;
  color: #fff;
}

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

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

/*パンくず*/