@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,700|Noto+Serif+JP:300,600&subset=japanese");
@import url("https://fonts.googleapis.com/earlyaccess/cwtexfangsong.css");
@import url("https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");
@import url("https://use.fontawesome.com/releases/v5.0.4/css/all.css");
@import url("/files/css/common/setting.css");
@import url("/files/css/common/slick/slick.css");
@import url("/files/css/common/slick/slick-theme.css");
/*---------------------------------------------
Initialization
---------------------------------------------*/
html {
  font: 62.5%/1.231 "Noto Sans JP", sans-serif;
}

body {
  font-size: 1.4rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: -0.001em;
  -webkit-text-size-adjust: 100%;
}

select,
input,
button,
textarea,
table {
  font: 1.4rem "Noto Sans JP", sans-serif;
}

pre,
code,
kbd,
samp,
tt {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1;
}

*,
*:before,
*:after {
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

@media all and (min-width: 768px) {
  html,
  body {
    height: 100%;
  }
}

body {
  overflow-x: hidden;
}

figure {
  margin: 0;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 767px) {
  .inner {
    padding: 0 10px;
  }
  .inner.spInnerNone {
    padding: 0;
  }
}

@media all and (min-width: 768px) {
  .inner {
    width: 1200px;
    margin: 0 auto;
  }
}

/*---------------------------------------------
Font Setting
---------------------------------------------*/
.fonmin {
  font-family: 'Noto Serif JP', serif;
}

.yumin {
  font-family: '游明朝体', 'Yu mincho', YuMincho, serif;
}
.cwTeXFangSong{
	font-family: 'cwTeXFangSong', serif;
	font-weight:normal;
}
.century{
	font-family: century-old-style-std, serif !important;
	font-weight: 400;
	font-style: normal;
}

/*---------------------------------------------
Column Setting
---------------------------------------------*/
/* float
------------------------------- */
.fll > * {
  float: left;
}

.flr > * {
  float: right;
}

@media screen and (max-width: 767px) {
  .fll.nosp > *,
  .flr.nosp > * {
    float: none;
  }
}

/* display inline-block
------------------------------- */
/*.dib { font-size: 0; }*/
.dib > * {
  box-sizing: border-box;
  display: inline-block;
  vertical-align: top;
}

@media screen and (max-width: 767px) {
  .dib.nosp > * {
    width: 100%;
  }
}

/* display table
------------------------------- */
.dtc {
  display: table;
}

.dtc > * {
  display: table-cell;
  vertical-align: top;
}

.dtc .max_w_none {
  max-width: none;
}

@media screen and (max-width: 767px) {
  .dtc.nosp,
  .dtc.nosp > * {
    display: block;
  }
  .dtc.nosp .max_w_none {
    max-width: 100%;
  }
}

@media screen and (min-width: 768px), print {
  .col-2 > * {
    width: 49%;
  }
  .col-2 > *:nth-child(even) {
    margin-left: 2%;
  }
  .col-3 > * {
    width: 32%;
    margin-left: 2%;
  }
  .col-3 > *:nth-child(3n+1) {
    margin-left: 0 !important;
  }
  .col-4 > * {
    width: 24%;
    margin-left: 1.33%;
  }
  .col-4 > *:nth-child(4n+1) {
    margin-left: 0 !important;
  }
  .rev > *:nth-child(even) {
    margin-left: 0;
    margin-right: 2%;
  }
  .rev > *:nth-child(odd) {
    float: right;
  }
}

@media screen and (max-width: 768px) {
  .spcol-2 > * {
    width: 49%;
  }
  .spcol-2 > *:nth-child(even) {
    margin-left: 2%;
  }
  .spcol-3 > * {
    width: 32%;
    margin-left: 2%;
  }
  .spcol-3 > *:nth-child(3n+1) {
    margin-left: 0 !important;
  }
}

/*---------------------------------------------
flex Setting
---------------------------------------------*/
.flex {
  display: flex;
}

.fd__row {
  flex-direction: row;
}

.fd__row__rev {
  flex-direction: row-reverse;
}

.fd__col {
  flex-direction: column;
}

.fd__col__rev {
  flex-direction: column-reverse;
}

.fw__no {
  flex-wrap: nowrap;
}

.fw__wrap {
  flex-wrap: wrap;
}

.fw__wrap__rev {
  flex-wrap: wrap-reverse;
}

.jc__st {
  justify-content: start;
}

.jc__end {
  justify-content: end;
}

.jc__center {
  justify-content: center;
}

.jc__fs {
  justify-content: flex-start;
}

.jc__fe {
  justify-content: flex-end;
}

.jc__left {
  justify-content: left;
}

.jc__right {
  justify-content: right;
}

.jc__sb {
  justify-content: space-between;
}

.jc__sa {
  justify-content: space-around;
}

.jc__se {
  justify-content: space-evenly;
}

.jc__str {
  justify-content: stretch;
}

.jc__no {
  justify-content: normal;
}

.ai__str {
  align-items: stretch;
}

.ai__center {
  align-items: center;
}

.ai__fs {
  align-items: flex-start;
}

.ai__fe {
  align-items: flex-end;
}

.ai__st {
  align-items: start;
}

.ai__end {
  align-items: end;
}

.ai__ss {
  align-items: self-start;
}

.ai__se {
  align-items: self-end;
}

.ai__base {
  align-items: baseline;
}

.ai__no {
  align-items: normal;
}

.ac__str {
  align-content: stretch;
}

.ac__st {
  align-content: start;
}

.ac__end {
  align-content: end;
}

.ac__fs {
  align-content: flex-start;
}

.ac__center {
  align-content: center;
}

.ac__fe {
  align-content: flex-end;
}

.ac__no {
  align-content: normal;
}

.ac__base {
  align-content: baseline;
}

.ac__sb {
  align-content: space-between;
}

.ac__sa {
  align-content: space-around;
}

.ac__se {
  align-content: space-evenly;
}

.as__auto {
  align-self: auto;
}

.as__no {
  align-self: normal;
}

.as__center {
  align-self: center;
}

.as__st {
  align-self: start;
}

.as__end {
  align-self: end;
}

.as__ss {
  align-self: self-start;
}

.as__se {
  align-self: self-end;
}

.as__fs {
  align-self: flex-start;
}

.as__fe {
  align-self: flex-end;
}

.as__base {
  align-self: baseline;
}

.fb40 {
  flex-basis: 40%;
}

.fb55 {
  flex-basis: 55%;
}

.fb30 {
  flex-basis: 30%;
}

.fb60 {
  flex-basis: 60%;
}

@media screen and (max-width: 767px) {
  .sp__fd__col {
    flex-direction: column;
  }
  .sp__fd__col__rev {
    flex-direction: column-reverse;
  }
}

/*---------------------------------------------
Icon Setting
---------------------------------------------*/
/*---------------------------------------------
module
---------------------------------------------*/
.bg01 {
  background: url("/files/img/common/bg01.png");
}

.secbox {
  padding: 10px 10px;
}

.secbox02 {
  padding: 20px 10px;
}

.boxStyle01 {
  padding: 20px;
}

@media screen and (max-width: 767px) {
  .spBold {
    font-weight: bold;
  }
}

@media all and (min-width: 768px) {
  .secbox {
    padding: 20px 0px;
  }
  .secbox02 {
    padding: 40px 0px;
  }
  .boxStyle01 {
    padding: 40px;
  }
}

.fc01 {
  color: #a12626;
}

.fcbk {
  color: #212121;
}

.lh01 {
  line-height: 180%;
}

.lh02 {
  line-height: 140%;
}

.lh03 {
  line-height: 200%;
}

/*---------------------------------------------
title
---------------------------------------------*/
.hr01 {
  margin: 0;
  border: none;
  border-bottom: 1px solid #999999;
}

.title {
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  line-height:140%;
}

.ts42 {
  font-size: 2.8rem;
}

.ts32 {
  font-size: 2.4rem;
}

.ts24 {
  font-size: 2.0rem;
}

.ts20 {
  font-size: 1.6rem;
}

.ts18 {
  font-size: 1.6rem;
}

.fs16 {
  font-size: 1.6rem;
}

@media all and (min-width: 768px) {
  .ts42 {
    font-size: 4.2rem;
  }
  .ts32 {
    font-size: 3.2rem;
  }
  .ts24 {
    font-size: 2.4rem;
  }
  .ts20 {
    font-size: 2.0rem;
  }
  .ts18 {
    font-size: 1.8rem;
  }
  .fs16 {
    font-size: 1.6rem;
  }
}

.ttl01 {
  margin-bottom: 30px;
  font-size: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-weight: normal;
  border-bottom: 2px solid #d9d9d9;
}

.ttl01::after {
  margin-top: 15px;
  margin-bottom: -2px;
  display: block;
  content: '';
  width: 28%;
  height: 2px;
  background-color: #000;
}

.ttl01.type02 {
  color: #a12626;
}

.ttl01.type02::after {
  background-color: #a12626;
}

.ttl02 {
  font-size: 2.0rem;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.ttl02 .num {
  margin-right: 10px;
  padding: 4px 16px;
  background-color: #a12626;
  color: #fff;
  font-weight: normal;
}

@media all and (min-width: 768px) {
  .ttl01 {
    font-size: 2.8rem;
  }
}

/*---------------------------------------------
btn
---------------------------------------------*/
.btn {
  max-width: 100%;
  position: relative;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
}

.btn:hover {
  text-decoration: none;
}

.btn.btn01 {
  width: 160px;
  line-height: 28px;
  font-family: "Noto Serif JP", serif;
  background-color: #000;
  border-radius: 50px;
  color: #fff;
}

.btn.btn01::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: 11px 20px;
  width: 7px;
  height: 7px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.btn.btn01.btn01_02 {
  background-color: #fff;
  color: #212121;
}

.btn.btn01.btn01_02::after {
  border-right: 2px solid #212121;
  border-bottom: 2px solid #212121;
}

.btn.btn01.btn_220 {
  width: 220px;
}

.btn.btn01.prev::after {
  left: 0;
  right: inherit;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.btn.btn02 {
  width: 290px;
  line-height: 58px;
  background-color: #a12626;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  font-size: 2.0rem;
}

.btn.btn02::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 20px;
  width: 10px;
  height: 10px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.btn.btn02.btn02_02 {
  background-color: #000;
}

.btn.btn02.btn02_sm {
  width: 240px;
}

.btn.btn02.prev::after {
  left: 0;
  right: inherit;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.btn.btn03 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 420px;
  height: 80px;
  max-width: 100%;
  margin: 0 auto;
  background-color: #a12626;
  color: #fff;
  font-size: 1.8rem;
  font-family: "Noto Serif JP", serif;
}

.btn.btn03.btnPdf::before {
  margin-right: 10px;
  padding: 0 5px;
  content: 'PDF';
  font-size: 1.4rem;
  border: 1px solid #fff;
  font-family: "Noto Sans JP", sans-serif;
}

.btn.btn04 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 120px;
  height: 30px;
  background-color: #000;
  font-size: 1.6rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}

@media all and (min-width: 768px) {
  .btn {
    transition: 0.3s ease-in-out;
  }
  .btn::after {
    transition: 0.3s ease-in-out;
  }
  .btn.btn01:hover {
    background-color: #a12626;
  }
  .btn.btn02:hover {
    color: #a12626;
    border: 1px solid #a12626;
    background-color: #fff;
  }
  .btn.btn02:hover::after {
    border-right: 1px solid #a12626;
    border-bottom: 1px solid #a12626;
  }
  .btn.btn02.btn02_02:hover {
    color: #fff;
    border: 1px solid #a12626;
    background-color: #a12626;
  }
  .btn.btn02.btn02_02:hover::after {
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fff;
  }
  .btn.btn03 {
    transition: 0.3s ease-in-out;
  }
  .btn.btn03:hover {
    background-color: #000;
  }
}

/*---------------------------------------------
table
---------------------------------------------*/
.table01 {
  margin-bottom: 30px;
  line-height: 180%;
  word-break: break-all;
}

.table01 th,
.table01 td {
  padding: 10px;
}

.table01 th {
  white-space: nowrap;
  font-weight: normal;
}

.table02 {
  margin-bottom: 30px;
  line-height: 180%;
}

.table02 th,
.table02 td {
  padding: 10px;
}

.table02 th {
  min-width: 200px;
  background-color: #f9f9f9;
  text-align: left;
  font-weight: normal;
}

@media screen and (max-width: 767px) {
  .table01,
  .table02 {
    border-top: 1px solid #999999;
  }
  .table01 th,
  .table01 td,
  .table02 th,
  .table02 td {
    display: block;
    word-break: break-word;
  }
  .table01 th,
  .table02 th {
    font-weight: bold;
  }
  .table01 td,
  .table02 td {
    border-bottom: 1px solid #999999;
  }
  .table01 th {
    text-align: left;
    border-bottom: 1px dashed #999999;
  }
}

@media all and (min-width: 768px) {
  .table01 th,
  .table01 td {
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
    padding: 20px;
    font-size: 1.6rem;
    word-break: break-word;
  }
  .table01 th {
    font-size: 1.8rem;
  }
  .table02 th,
  .table02 td {
    padding: 20px;
    border-top: 1px solid #999999;
    border-bottom: 1px solid #999999;
  }
}

/*---------------------------------------------
list
---------------------------------------------*/
.indent {
  position: relative;
  padding-left: 15px;
}

.indent .target {
  position: absolute;
  left: 0;
}

.ul01 li {
  position: relative;
  padding-left: 15px;
}

.ul01 li::before {
  position: absolute;
  left: 0;
  content: '・';
}

.ul01 li.kome::before {
  content: '※';
}

.ol01 {
  padding-left: 15px;
}

.ol01 li {
  list-style-type: decimal;
}

.nav01 .item {
  margin-bottom: 5px;
}

.nav01 .item a {
  padding-left: 15px;
  position: relative;
  text-decoration: none;
  color: #212121;
}

.nav01 .item a::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto 0;
  display: inline-block;
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 4px 0 4px 6px;
  border-color: transparent transparent transparent #a12626;
}

@media all and (min-width: 768px) {
  .nav01 .item a {
    transition: 0.3s ease-in-out;
  }
  .nav01 .item a:hover {
    color: #a12626;
  }
}

/*---------------------------------------------
list contents
---------------------------------------------*/
.recList .item figure {
  max-height: 500px;
}

.recList .item .detail .tag .itemNum {
  margin-left: 10px;
}

@media screen and (max-width: 767px) {
  .recList .item figure {
    padding: 0 60px;
    max-height: 270px;
  }
  .recList .item figure img {
    max-height: -webkit-fill-available;
  }
  .recList .item .detail {
    padding: 30px 10px;
  }
  .recList .item .detail .tag {
    margin-bottom: 10px;
  }
  .recList .item .detail .title {
    margin-bottom: 10px;
  }
  .recList .item .detail .author {
    margin-bottom: 10px;
  }
}

@media all and (min-width: 768px) {
  .recList .item {
    padding: 0 60px;
    display: flex;
    justify-content: center;
  }
  .recList .item figure {
    width: 680px;
  }
  .recList .item figure img {
    height: 100%;
  }
  .recList .item .detail {
    margin-left: 30px;
    width: 490px;
  }
  .recList .item .detail .tag {
    margin-bottom: 25px;
  }
  .recList .item .detail .title {
    margin-bottom: 25px;
  }
  .recList .item .detail .author {
    margin-bottom: 20px;
  }
}

.arrList {
  display: flex;
  flex-wrap: wrap;
}

.arrList .item {
  text-align: center;
  background: url("/files/img/common/bg01.png");
}

.arrList .item a {
  display: block;
  text-decoration: none;
  color: #212121;
}

.arrList .item.new a:before {
  position: absolute;
  content: "";
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 50px 50px 0 0;
  border-color: #a12626 transparent transparent transparent;
}
.arrList .item.new a:after {
  position: absolute;
  content: "NEW";
  transform: rotate(315deg);
  display: block;
  font-size: 11px;
  white-space: pre;
  color: #fff;
  top: 12px;
  left: 4px;
  text-align: center;
  z-index: 2;
  line-height: 1.2;
}

.arrList .item figure {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 240px;
  overflow: hidden;
}

.arrList .item figure img {
  max-height: 100%;
  max-width: 100%;
}

.arrList .item .label {
  margin-bottom: 25px;
  display: inline-block;
}

.arrList .item .title {
  margin-bottom: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.arrList .item .name {
  margin-bottom: 25px;
}

@media screen and (max-width: 767px) {
  .arrList .item {
      position: relative;
    margin-bottom: 30px;
    width: 49%;
  }
  .arrList .item:nth-of-type(even) {
    margin-left: 2%;
  }
  .arrList .item a {
    padding: 10px 10px 0;
  }
  .arrList .item a .hover01 {
    display: none;
  }
}

@media all and (min-width: 768px) {
  .arrList .item {
    position: relative;
    margin-left: 60px;
    margin-bottom: 60px;
    width: 255px;
  }
  .arrList .item:nth-of-type(4n+1) {
    margin-left: 0;
  }
  .arrList .item a {
    padding: 20px;
  }
  .arrList .item a .hover01 {
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    transition: 0.3s ease-in-out;
  }
  .arrList .item a .hover01 .btn01_02:hover {
    background-color: #fff;
  }
  .arrList .item a:hover .hover01 {
    visibility: visible;
    opacity: 1;
  }
}

.initialList {
  padding-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-around;
}

.initialList .item {
  width: 100%;
  border-right: 1px solid #999999;
  text-align: center;
  font-size: 1.8rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.initialList .item::after {
  display: block;
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin: 0 auto -10px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #a12626;
  border-bottom: 1px solid #a12626;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.initialList .item:nth-of-type(1) {
  border-left: 1px solid #999999;
}

.initialList .item:hover {
  color: #a12626;
}

.initialList .item.active {
  color: #a12626;
  position: relative;
}

.initialList .item.active::after {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .initialList .item {
    padding: 5px;
  }
  .initialList .item::after {
    display: none;
  }
}

.initialList02 {
  padding-top: 30px;
  margin-bottom: 30px;
  display: flex;
  justify-content: space-around;
}

.initialList02 .item {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 50px;
  text-align: center;
  font-size: 1.8rem;
  background-color: #f9f9f9;
  cursor: pointer;
  transition: 0.3s ease-in-out;
}

.initialList02 .item:nth-of-type(n+2) {
  border-left: 1px solid #d9d9d9;
}

.initialList02 .item:hover {
  color: #fff;
  background-color: #a12626;
}

.initialList02 .item.active {
  color: #fff;
  background-color: #a12626;
}

.scrollBoxWrap {
  padding: 5px;
  border: 1px solid #999999;
}

.scrollBox {
  padding: 20px;
  height: 270px;
  overflow-y: scroll;
}

.scrollBox::-webkit-scrollbar {
  width: 15px;
}

.scrollBox::-webkit-scrollbar-track {
  background-color: #fff;
}

.scrollBox::-webkit-scrollbar-thumb {
  background-color: #ccc;
}

@media all and (min-width: 768px) {
  .pcScrollBox {
    padding-right: 20px;
    height: 380px;
    overflow-y: scroll;
  }
  .pcScrollBox::-webkit-scrollbar {
    width: 15px;
  }
  .pcScrollBox::-webkit-scrollbar-track {
    background-color: #fff;
  }
  .pcScrollBox::-webkit-scrollbar-thumb {
    background-color: #ccc;
  }
}

.writerList {
  margin-bottom: 30px;
  border-bottom: 1px solid #999999;
}

.writerList .title {
  margin-bottom: 20px;
}

.writerList ul {
  display: flex;
  flex-wrap: wrap;
}

.writerList ul li {
  margin-bottom: 20px;
}

.writerList ul li a {
  color: #212121;
  font-size: 1.8rem;
  text-decoration: none;
  font-family: "Noto Serif JP", serif;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .writerList ul li {
    width: calc(100%/2);
  }
  .writerList ul li a:hover {
    color: #a12626;
  }
}

@media all and (min-width: 768px) {
  .writerList ul li {
    margin-right: 60px;
  }
  .writerList ul li a:hover {
    color: #a12626;
  }
}

.newsList .item {
  margin-bottom: 15px;
  border-bottom: 1px solid #999999;
}

.newsList .item a {
  padding-bottom: 15px;
  display: block;
  color: #212121;
  text-decoration: none;
  font-size: 1.6rem;
}

.newsList .item a .dateTag {
  display: flex;
}

.newsList .item a .dateTag .tag {
  margin-left: 20px;
  padding: 0 10px;
  color: #a12626;
  border: 1px solid #a12626;
  font-size: 1.4rem;
    min-width: 85px;
    text-align: center;
}

@media screen and (max-width: 767px) {
  .newsList .item a .dateTag {
    margin-bottom: 10px;
  }
}

@media all and (min-width: 768px) {
  .newsList .item {
    margin-bottom: 40px;
  }
  .newsList .item a {
    padding-bottom: 30px;
    display: flex;
  }
  .newsList .item a .newsTitle {
    margin-left: 40px;
  }
}

.wp-pagenavi {
  font-size: 1.6rem;
  display: flex;
  justify-content: center;
  align-items: center;
}

.wp-pagenavi > * {
  margin-left: 10px;
}

.wp-pagenavi .first,
.wp-pagenavi .last,
.wp-pagenavi .pages {
  display: none;
}

.wp-pagenavi a {
  text-decoration: none;
  color: #212121;
}

.wp-pagenavi .page,
.wp-pagenavi .current {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  background-color: #d9d9d9;
  transition: 0.3s ease-in-out;
}

.wp-pagenavi .page:hover,
.wp-pagenavi .current {
  background-color: #a12626;
  color: #fff;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
  display: block;
  width: 8px;
  height: 8px;
  border-right: 2px solid #a12626;
  border-bottom: 2px solid #a12626;
}

.wp-pagenavi .nextpostslink {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.wp-pagenavi .previouspostslink {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

.sitemapList .item {
  margin-bottom: 20px;
}

.sitemapList .item a {
  text-decoration: none;
  color: #212121;
}

.sitemapList .item a::after {
  display: inline-block;
  content: '';
  vertical-align: top;
  margin: 5px 0 0 15px;
  width: 7px;
  height: 7px;
  border-right: 1px solid #a12626;
  border-bottom: 1px solid #a12626;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

@media all and (min-width: 768px) {
  .sitemapList {
    display: flex;
    flex-wrap: wrap;
  }
  .sitemapList .item {
    width: 25%;
  }
  .sitemapList .item a {
    transition: 0.3s ease-in-out;
  }
  .sitemapList .item a::after {
    transition: 0.3s ease-in-out;
  }
  .sitemapList .item a:hover {
    color: #a12626;
  }
  .sitemapList .item a:hover::after {
    margin-left: 20px;
  }
}

.tabContents .tabItem:nth-of-type(n+2) {
  display: none;
}

@media screen and (max-width: 767px) {
  .spListCol5 {
    flex-wrap: wrap;
  }
  .spListCol5 .item {
    width: calc(100%/5);
  }
  .spListCol5 .item:nth-of-type(5n+1) {
    border-left: none;
  }
  .spListCol5 .item:nth-of-type(n+6) {
    border-top: 1px solid #999999;
  }
  .spListCol5 .item:nth-last-of-type(5n+1) {
    border-right: none;
  }
}

/*---------------------------------------------
search contents
---------------------------------------------*/
.searchBox {
  background-color: #fff;
}

.searchTable {
  table-layout: fixed;
  font-size: 1.6rem;
}

.searchTable .subCat {
  background-color: #f9f9f9;
}

.searchTable .season {
  display: flex;
}

.searchTable .col3List {
  display: flex;
  flex-wrap: wrap;
}

.searchTable .selectArea {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .searchBox {
    padding: 10px;
  }
  .searchTable {
    margin-bottom: 20px;
  }
  .searchTable th,
  .searchTable td {
    padding: 10px 0;
    display: block;
  }
  .searchTable td {
    border-bottom: 1px solid #999999;
  }
  .searchTable .subCat {
    padding-left: 20px;
    position: relative;
  }
  .searchTable .subCat.first {
    border-top: 1px solid #999999;
  }
  .searchTable .subCat::after {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    margin: 17px 20px;
    width: 8px;
    height: 8px;
    border-right: 2px solid #212121;
    border-bottom: 2px solid #212121;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    transition: 0.3s ease-in-out;
  }
  .searchTable .subCat.acOpen::after {
    margin-top: 22px;
    -webkit-transform: rotate(-135deg);
            transform: rotate(-135deg);
  }
  .searchTable .season {
    flex-wrap: wrap;
  }
  .searchTable .season .item {
    width: 49%;
  }
  .searchTable .season .item:nth-of-type(even) {
    margin-left: 2%;
  }
  .searchTable .season .item:nth-of-type(n+3) {
    margin-top: 2%;
  }
  .searchTable .col3List .item {
    width: 49%;
  }
  .searchTable .col3List .item:nth-of-type(even) {
    margin-left: 2%;
  }
  .searchTable .col3List .item.oneLine {
    width: 100%;
    margin-left: 0;
  }
  .searchTable .col3List .item:nth-of-type(n+3) {
    margin-top: 10px;
  }
  .searchTable .meiso {
    margin-top: 5px;
    padding: 10px;
    border: 1px solid #999999;
    border-radius: 5px;
  }
  .searchTable .meiso .meisoList {
    display: flex;
    flex-wrap: wrap;
  }
  .searchTable .meiso .meisoList .item02 {
    width: calc(100%/3);
  }
  .searchTable .meiso .meisoList .item02:nth-of-type(n+4) {
    margin-top: 10px;
  }
  .searchTable .selectArea {
    justify-content: center;
  }
  .searchTable.searchTableEn .meiso .meisoList .item02 {
    width: calc(100%/2);
  }
  .searchTable.searchTableEn .meiso .meisoList .item02:nth-of-type(n+3) {
    margin-top: 10px;
  }
}

@media all and (min-width: 768px) {
  .searchBox {
    padding: 40px;
  }
  .searchTable {
    margin-bottom: 30px;
    border-top: 1px solid #999999;
    border-collapse: separate;
    border-spacing: 0;
  }
  .searchTable th,
  .searchTable td {
    padding: 10px;
    border-bottom: 1px solid #999999;
  }
  .searchTable th.dashed,
  .searchTable td.dashed {
    border-bottom: 1px dashed #999999;
  }
  .searchTable th {
    width: 160px;
  }
  .searchTable .subCat {
    text-align: center;
    width: 140px;
  }
  .searchTable .catCell {
    display: block !important;
  }
  .searchTable .season .item {
    width: 12.5%;
  }
  .searchTable .col3List .item {
    width: calc(100%/3);
  }
  .searchTable .col3List .item:nth-of-type(n+4) {
    margin-top: 10px;
  }
  .searchTable .meiso {
    margin-top: 10px;
    padding: 15px;
    background-color: #f9f9f9;
    font-size: 1.4rem;
  }
  .searchTable .meiso .meisoList {
    display: flex;
    flex-wrap: wrap;
  }
  .searchTable .meiso .meisoList .item02 {
    width: 50%;
  }
  .searchTable .meiso .meisoList .item02 input[type="checkbox"] + label::before {
    width: 11px;
    height: 11px;
    margin: 5px 0;
  }
  .searchTable .meiso .meisoList .item02 input[type="checkbox"] + label::after {
    margin: 5px 2px;
  }
  .searchTable .meiso .meisoList .item02:nth-of-type(n+3) {
    margin-top: 5px;
  }
  .searchTable .meiso label {
    font-size: 1.6rem;
  }
  .searchTable label {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 374px) {
  .searchTable .season {
    flex-wrap: wrap;
  }
  .searchTable .season .item {
    width: 49%;
    margin-left: 0 !important;
  }
  .searchTable .season .item:nth-of-type(even) {
    margin-left: 2% !important;
  }
  .searchTable .season .item:nth-of-type(n+3) {
    margin-top: 2%;
  }
  .searchTable .selectArea {
    flex-direction: column;
  }
}

/*---------------------------------------------
label
---------------------------------------------*/
.label {
  padding: 2px 15px;
  background-color: #000;
  color: #fff;
}

.label.colorBlue {
  background-color: #3d5d98;
}

.label.colorRed {
  background-color: #d75e5e;
}

.label.colorYel {
  background-color: #99852e;
}

.label.colorGre {
  background-color: #618033;
}

.label.colorPur {
  background-color: #ac3749;
}

/*---------------------------------------------
slick ini
---------------------------------------------*/
.slider02 img {
  margin: 0 auto;
}

.slick-arrow {
  display: block;
  position: absolute;
  z-index: 2;
  cursor: pointer;
}

.arw01 {
  width: 30px;
  height: 30px;
  border-right: 2px solid #999999;
  border-bottom: 2px solid #999999;
}

.arw01.next {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.arw01.prev {
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

@media screen and (max-width: 767px) {
  .arw01 {
    top: 50%;
    margin: -320px 20px 0;
  }
  .arw01.next {
    right: 0;
  }
  .arw01.prev {
    left: 0;
  }
}

@media all and (min-width: 768px) {
  .arw01 {
    top: 0;
    bottom: 0;
    margin: auto 20px;
  }
  .arw01.next {
    right: 50%;
    margin-right: -600px;
  }
  .arw01.prev {
    left: 50%;
    margin-left: -600px;
  }
}

.slick-slide:focus {
  outline: none;
}

/*---------------------------------------------
form parts
---------------------------------------------*/
input[type="date"],
input[type="text"],
input[type="tel"],
input[type="number"],
input[type="password"],
input[type="email"] {
  -webkit-appearance: none;
  border-radius: 0;
  padding: 10px;
  height: 40px;
  border: 1px solid #999999;
}

input[type="file"] {
  display: none !important;
}

.fileWrap {
  display: flex;
}

.fileWrap label {
  position: relative;
  display: inline-block;
  border-radius: 0;
  width: 120px;
  height: 30px;
  line-height: 28px;
  border: 1px solid #999999;
  text-align: center;
  color: #212121;
  cursor: pointer;
}

.fileWrap label::after {
  content: '選択されていません';
  font-size: 1.4rem;
  height: 20px;
  line-height: 20px;
  position: absolute;
  right: -140px;
  top: calc(50% - 10px);
}

.fileWrap label.changed::after {
  content: '';
}

.fileWrap .filename {
  font-size: 1.2rem;
  margin: 5px 0 0px 10px;
}

@media all and (min-width: 768px) {
  .fileWrap label {
    width: 150px;
  }
}

textarea {
  padding: 10px;
  border: 1px solid #999999;
}

input.i60 {
  width: 60px;
}

input.i100 {
  width: 100px;
}

input.i130 {
  width: 130px;
}

input.i200 {
  width: 200px;
}

input.i100p,
textarea.i800,
input.i800,
input.i480,
input.i240 {
  width: 100%;
}

input.var2 {
  height: 30px;
}

textarea.i800 {
  height: 120px;
}

@media all and (min-width: 768px) {
  input.i480 {
    width: 480px;
  }
  input.i240 {
    width: 240px;
  }
  input.i800 {
    width: 800px;
  }
  textarea.i800 {
    width: 800px;
  }
}

.mwform-radio-field input[type="radio"],
.radioStyle01 input[type="radio"] {
  display: none;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text,
.mwform-radio-field input[type="radio"] + label,
.radioStyle01 input[type="radio"] + .mwform-radio-field-text,
.radioStyle01 input[type="radio"] + label {
  padding-left: 20px;
  position: relative;
  transition: 0.3s ease-in-out;
  cursor: pointer;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text::before,
.mwform-radio-field input[type="radio"] + label::before,
.radioStyle01 input[type="radio"] + .mwform-radio-field-text::before,
.radioStyle01 input[type="radio"] + label::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 13px;
  height: 13px;
  margin: auto;
  border: 1px solid #000;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
}

.mwform-radio-field input[type="radio"] + .mwform-radio-field-text::after,
.mwform-radio-field input[type="radio"] + label::after,
.radioStyle01 input[type="radio"] + .mwform-radio-field-text::after,
.radioStyle01 input[type="radio"] + label::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  display: block;
  width: 5px;
  height: 5px;
  margin: auto 4px;
  background-color: #a12626;
  border-radius: 50%;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.mwform-radio-field input[type="radio"]:checked + .mwform-radio-field-text,
.mwform-radio-field input[type="radio"]:checked + label,
.radioStyle01 input[type="radio"]:checked + .mwform-radio-field-text,
.radioStyle01 input[type="radio"]:checked + label {
  color: #a12626;
}

.mwform-radio-field input[type="radio"]:checked + .mwform-radio-field-text::before,
.mwform-radio-field input[type="radio"]:checked + label::before,
.radioStyle01 input[type="radio"]:checked + .mwform-radio-field-text::before,
.radioStyle01 input[type="radio"]:checked + label::before {
  border: 1px solid #a12626;
}

.mwform-radio-field input[type="radio"]:checked + .mwform-radio-field-text::after,
.mwform-radio-field input[type="radio"]:checked + label::after,
.radioStyle01 input[type="radio"]:checked + .mwform-radio-field-text::after,
.radioStyle01 input[type="radio"]:checked + label::after {
  visibility: visible;
  opacity: 1;
}

.radio2 {
  display: flex;
}

.radio3,
.radio6 {
  display: flex;
  justify-content: space-between;
}

.radio3 {
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .mwform-radio-field input[type="radio"]:not(.catChild) + .mwform-radio-field-text,
  .mwform-radio-field input[type="radio"]:not(.catChild) + label,
  .radioStyle01 input[type="radio"]:not(.catChild) + .mwform-radio-field-text,
  .radioStyle01 input[type="radio"]:not(.catChild) + label {
    width: 100%;
    display: inline-block;
    padding: 5px 10px 5px 35px;
    background-color: #f9f9f9;
    border: 1px solid #999999;
    border-radius: 5px;
  }
  .mwform-radio-field input[type="radio"]:not(.catChild) + .mwform-radio-field-text::before,
  .mwform-radio-field input[type="radio"]:not(.catChild) + label::before,
  .radioStyle01 input[type="radio"]:not(.catChild) + .mwform-radio-field-text::before,
  .radioStyle01 input[type="radio"]:not(.catChild) + label::before {
    margin-left: 10px;
  }
  .mwform-radio-field input[type="radio"]:not(.catChild) + .mwform-radio-field-text::after,
  .mwform-radio-field input[type="radio"]:not(.catChild) + label::after,
  .radioStyle01 input[type="radio"]:not(.catChild) + .mwform-radio-field-text::after,
  .radioStyle01 input[type="radio"]:not(.catChild) + label::after {
    margin-left: 14px;
  }
  .mwform-radio-field input[type="radio"]:checked:not(.catChild) + .mwform-radio-field-text,
  .mwform-radio-field input[type="radio"]:checked:not(.catChild) + label,
  .radioStyle01 input[type="radio"]:checked:not(.catChild) + .mwform-radio-field-text,
  .radioStyle01 input[type="radio"]:checked:not(.catChild) + label {
    background-color: #fbeeee;
  }
  .radio2 {
    justify-content: space-between;
  }
  .radio2 .item {
    width: 49%;
  }
  .radio2 .horizontal-item {
    width: 49%;
  }
  .radio3,
  .radio6 {
    flex-wrap: wrap;
  }
  .radio3 .item,
  .radio6 .item {
    width: 49%;
  }
  .radio3 .item:nth-of-type(n+3),
  .radio6 .item:nth-of-type(n+3) {
    margin-top: 10px;
  }
  .radio3 .horizontal-item,
  .radio6 .horizontal-item {
    width: 49%;
  }
  .radio3 .horizontal-item:nth-of-type(n+3),
  .radio6 .horizontal-item:nth-of-type(n+3) {
    margin-top: 10px;
  }
  .mw_wp_form .radio2 .horizontal-item + .horizontal-item,
  .mw_wp_form .radio3 .horizontal-item + .horizontal-item,
  .mw_wp_form .radio6 .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
}

@media all and (min-width: 768px) {
  .mw_wp_form .radio2 .horizontal-item:nth-of-type(n+2) {
    margin-left: 60px;
  }
  .mw_wp_form .radio3 .horizontal-item + .horizontal-item {
    margin-left: 0;
  }
  .radio2 .item:nth-of-type(n+2) {
    margin-left: 60px;
  }
  .radio3 .item {
    width: calc(100%/3);
  }
  .radio3 .item:nth-of-type(n+4) {
    margin-top: 10px;
  }
  .radio3 .horizontal-item {
    width: calc(100%/3);
  }
  .radio3 .horizontal-item:nth-of-type(n+4) {
    margin-top: 10px;
  }
}

.mwform-checkbox-field input[type="checkbox"],
.checkboxStyle01 input[type="checkbox"] {
  display: none;
}

.mwform-checkbox-field input[type="checkbox"] + .mwform-checkbox-field-text,
.mwform-checkbox-field input[type="checkbox"] + label,
.checkboxStyle01 input[type="checkbox"] + .mwform-checkbox-field-text,
.checkboxStyle01 input[type="checkbox"] + label {
  padding-left: 20px;
  position: relative;
  transition: 0.3s ease-in-out;
  cursor: pointer;
  display: inline-block;
}

.mwform-checkbox-field input[type="checkbox"] + .mwform-checkbox-field-text::before,
.mwform-checkbox-field input[type="checkbox"] + label::before,
.checkboxStyle01 input[type="checkbox"] + .mwform-checkbox-field-text::before,
.checkboxStyle01 input[type="checkbox"] + label::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #000;
  border-radius: 3px;
  transition: 0.3s ease-in-out;
}

.mwform-checkbox-field input[type="checkbox"] + .mwform-checkbox-field-text::after,
.mwform-checkbox-field input[type="checkbox"] + label::after,
.checkboxStyle01 input[type="checkbox"] + .mwform-checkbox-field-text::after,
.checkboxStyle01 input[type="checkbox"] + label::after {
  content: '\f00c';
  position: absolute;
  top: 0;
  left: 0;
  height: 12px;
  font-family: 'fontawesome';
  font-size: 1.2rem;
  text-shadow: 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff, 0 0 1px #fff;
  color: #a12626;
  visibility: hidden;
  opacity: 0;
  transition: 0.3s ease-in-out;
}

.mwform-checkbox-field input[type="checkbox"]:checked + .mwform-checkbox-field-text,
.mwform-checkbox-field input[type="checkbox"]:checked + label,
.checkboxStyle01 input[type="checkbox"]:checked + .mwform-checkbox-field-text,
.checkboxStyle01 input[type="checkbox"]:checked + label {
  color: #a12626;
}

.mwform-checkbox-field input[type="checkbox"]:checked + .mwform-checkbox-field-text::before,
.mwform-checkbox-field input[type="checkbox"]:checked + label::before,
.checkboxStyle01 input[type="checkbox"]:checked + .mwform-checkbox-field-text::before,
.checkboxStyle01 input[type="checkbox"]:checked + label::before {
  border: 1px solid #a12626;
}

.mwform-checkbox-field input[type="checkbox"]:checked + .mwform-checkbox-field-text::after,
.mwform-checkbox-field input[type="checkbox"]:checked + label::after,
.checkboxStyle01 input[type="checkbox"]:checked + .mwform-checkbox-field-text::after,
.checkboxStyle01 input[type="checkbox"]:checked + label::after {
  visibility: visible;
  opacity: 1;
}

@media screen and (max-width: 767px) {
  .mwform-checkbox-field input[type="checkbox"] + label::before,
  .checkboxStyle01 input[type="checkbox"] + label::before {
    bottom: 0;
    margin: auto;
  }
  .mwform-checkbox-field input[type="checkbox"] + label::after,
  .checkboxStyle01 input[type="checkbox"] + label::after {
    bottom: 0;
    margin: auto 2px;
  }
  .mwform-checkbox-field input[type="checkbox"]:not(.catChild) + .mwform-checkbox-field-text,
  .mwform-checkbox-field input[type="checkbox"]:not(.catChild) + label,
  .checkboxStyle01 input[type="checkbox"]:not(.catChild) + .mwform-checkbox-field-text,
  .checkboxStyle01 input[type="checkbox"]:not(.catChild) + label {
    width: 100%;
    display: inline-block;
    padding: 5px 10px 5px 35px;
    background-color: #f9f9f9;
    border: 1px solid #999999;
    border-radius: 5px;
  }
  .mwform-checkbox-field input[type="checkbox"]:not(.catChild) + .mwform-checkbox-field-text::before,
  .mwform-checkbox-field input[type="checkbox"]:not(.catChild) + label::before,
  .checkboxStyle01 input[type="checkbox"]:not(.catChild) + .mwform-checkbox-field-text::before,
  .checkboxStyle01 input[type="checkbox"]:not(.catChild) + label::before {
    margin-left: 10px;
  }
  .mwform-checkbox-field input[type="checkbox"]:not(.catChild) + .mwform-checkbox-field-text::after,
  .mwform-checkbox-field input[type="checkbox"]:not(.catChild) + label::after,
  .checkboxStyle01 input[type="checkbox"]:not(.catChild) + .mwform-checkbox-field-text::after,
  .checkboxStyle01 input[type="checkbox"]:not(.catChild) + label::after {
    margin-left: 12px;
  }
  .mwform-checkbox-field input[type="checkbox"]:checked:not(.catChild) + .mwform-checkbox-field-text,
  .mwform-checkbox-field input[type="checkbox"]:checked:not(.catChild) + label,
  .checkboxStyle01 input[type="checkbox"]:checked:not(.catChild) + .mwform-checkbox-field-text,
  .checkboxStyle01 input[type="checkbox"]:checked:not(.catChild) + label {
    background-color: #fbeeee;
  }
}

@media all and (min-width: 768px) {
  .checkboxStyle01 input[type="checkbox"] + label::before {
    margin: 7px 0;
  }
  .checkboxStyle01 input[type="checkbox"] + label::after {
    margin: 7px 2px;
  }
}

.selectWrap {
  position: relative;
  display: inline-block;
  background-color: #fff;
}

.selectWrap select {
  position: relative;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  border: 1px solid #999999;
  margin: 0;
  padding: 0 35px 0 10px;
  background: none transparent;
  vertical-align: top;
  font-size: inherit;
  color: #212121;
  box-sizing: border-box;
  cursor: pointer;
  height: 37px;
  z-index: 1;
}

.selectWrap select::-ms-expand {
  display: none;
}

.selectWrap select.select100 {
  width: 100px;
}

.selectWrap select.select200 {
  width: 200px;
}

.selectWrap select.select300 {
  width: 300px;
}

.selectWrap::before {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 7px;
  height: 7px;
  margin: 15px 14px 0 0;
  border-right: 2px solid #222;
  border-bottom: 2px solid #222;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  z-index: 0;
}

.selectWrap.var02 select {
  height: 30px;
}

.selectWrap.var02::before {
  margin: 10px 14px 0 0;
  border-right: 1px solid #222;
  border-bottom: 1px solid #222;
}

@media all and (min-width: 768px) {
  .selectWrap select {
    padding: 0 45px 0 10px;
  }
}

th.required::after {
  margin-left: 15px;
  content: '※';
  color: #a12626;
}

th.required.reqEn::after {
  content: '*';
}

#agree-1 + .mwform-checkbox-field-text {
  font-size: 1.6rem;
  color: #a12626;
}

#agree-1 + .mwform-checkbox-field-text::before {
  margin-top: 9px;
}

#agree-1 + .mwform-checkbox-field-text::after {
  margin-top: 8px;
}

@media all and (min-width: 768px) {
  #agree-1 + .mwform-checkbox-field-text {
    font-size: 2.0rem;
  }
  #agree-1 + .mwform-checkbox-field-text::before {
    width: 15px;
    height: 15px;
    margin-top: 5px;
  }
  #agree-1 + .mwform-checkbox-field-text::after {
    margin-top: 6px;
    margin-left: 1px;
  }
}

.mw_wp_form_input .btn.submit.btnClose {
  background-color: #ddd;
  color: #999;
  pointer-events: none;
}

.error-pink input[type="text"],
.error-pink input[type="email"],
.error-pink input[type="tel"],
.error-pink textarea {
  background-color: pink !important;
}

.mwWpFormTel {
  width: 65px !important;
}

.mw_wp_form_confirm .selectWrap::before {
  display: none;
}

/*---------------------------------------------
modal
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .spModal {
    padding: 65px 10px 10px;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 21;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    background-color: #00000099;
  }
  .modal02_contents {
    background-image: none !important;
    background-color: #00000099 !important;
  }
  .modal02_contents .inner {
    background: url("/files/img/common/bg01.png");
  }
  .modal02_contents .inner .tabContents {
    height: auto;
  }
  .modal02 .modal02_contents {
    visibility: visible;
    opacity: 1;
  }
  body::before {
    content: '';
    display: block;
    position: fixed;
    width: 100%;
    height: 100%;
    background-color: #00000099;
    z-index: 3;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
  }
  body.blindBg::before {
    visibility: visible;
    opacity: 1;
  }
}

@media all and (min-width: 768px) {
}

.searchTitle .item:nth-of-type(n+2)::before {
  margin: 0 5px;
  content: '-';
}

/*---------------------------------------------
seach Window
---------------------------------------------*/
.modalBtn {
    cursor: pointer;
}
.searchModal {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 100px 10px;
    overflow-y: scroll;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    background-color: #00000099;
    z-index: 101;
}
.modal01 .modal01_contents {
    visibility: visible;
    opacity: 1;
}
.spCloseBtn {
    margin: 5px;
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
}
.spCloseBtn i {
    font-size: 2.4rem;
    color: #000;
}
.pcSearchModal {
    position: relative;
}
@media screen and (max-width: 767px) {
    .searchModal::-webkit-scrollbar {
        display: none;
    }
    .pcSearchModal {
        padding: 10px;
    }
    .pcSearchModal .search02 {
        padding-bottom: 10px;
        background-color: #fff;
    }
    .pcSearchModal .search02 .searchTable02 {
        margin-bottom: 20px;
        font-family: 'Noto Serif JP', serif;
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }
    .pcSearchModal .search02 .searchTable02 .th {
        margin-bottom: 20px;
        width: 100%;
        padding: 12px 0;
        background-color: #f2f3e8;
        font-size: 1.8rem;
        text-align: center;
    }
    .pcSearchModal .search02 .searchTable02 .th.th02 {
        margin-top: 20px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 {
        width: 100%;
        display: flex;
        flex-wrap: wrap;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item input[type="checkbox"] {
        display: none;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item label {
        padding: 10px;
        text-align: center;
        display: inline-block;
        border-radius: 3px;
        transition: 0.3s ease-in-out;
        border: 1px solid #e5e5e5;
        background-color: #fff;
        color: #000;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item input[type="checkbox"]:checked + label {
        border: 1px solid #a12626;
        background-color: #a12626;
        color: #fff;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item label.btnDisabled2,
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item label.btnDisabled {
        background-color: #ccc;
        color: #999;
        pointer-events: none;
    }
    
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver01 {
        padding: 0 10px;
        justify-content: space-between;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver01 .item {
        width: 19%;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver01 .item label {
        width: 100%;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver02 .item {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver03 .item {
        margin-right: 10px;
        margin-bottom: 10px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver04 .item {
        margin-right: 10px;
        margin-top: 10px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.verCol04 .item {
      margin-right: 10px;
      margin-top: 10px;
  }
    .pcSearchModal .search02 .searchTable02 .allBtn input[type="checkbox"] {
        display: none;
    }
    .pcSearchModal .search02 .searchTable02 .allBtn input[type="checkbox"]:checked + label {
        border: 1px solid #a12626;
        background-color: #a12626;
        color: #fff;
    }
    .pcSearchModal .search02 .searchTable02 .allBtn label {
        padding: 1px 7px;
        font-size: 1.2rem;
        text-align: center;
        display: inline-block;
        border: 1px solid #e5e5e5;
        border-radius: 3px;
        transition: 0.3s ease-in-out;
    }
    .pcSearchModal .search02 .searchTable02 .tdTop {
        display: flex;
        flex-wrap: wrap;
    }
    .pcSearchModal .search02 .searchTable02 .tdTop .childTitle {
        margin-bottom: 10px;
        margin-right: 20px;
        color: #a12626;
        font-size: 1.6rem;
    }
    .pcSearchModal .search02 .searchTable02 .tdTop .childTitle::before {
        margin-right: 5px;
        content: '■';
    }
    .pcSearchModal .search02 .searchTable02 .tdTop .attention02 {
        margin-bottom: 10px;
        width: 100%;
        font-size: 1.2rem;
    }
    .pcSearchModal .search02 .searchTable02 .genreCol2 .genreChild:nth-of-type(1) {
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e5e5e5;
    }
    .pcSearchModal .search02 .searchTable02 .genreSpace {
        margin-bottom: 20px;
        padding-bottom: 10px;
        border-bottom: 1px solid #e5e5e5;
    }
    .pcSearchModal .search02 .searchTable02 .selectWrap02 {
        position: relative;
        width: 94%;
    }
    .pcSearchModal .search02 .searchTable02 .selectWrap02 select {
        position: relative;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
        border: 1px solid #e5e5e5;
        border-radius: 3px;
        margin: 0;
        padding: 0 35px 0 10px;
        background: none transparent;
        vertical-align: top;
        font-size: inherit;
        color: #212121;
        box-sizing: border-box;
        cursor: pointer;
        width: 100%;
        height: 40px;
        z-index: 1;
    }
    .pcSearchModal .search02 .searchTable02 .selectWrap02::after {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 7px;
        height: 7px;
        margin: 15px 14px 0 0;
        border-right: 2px solid #222;
        border-bottom: 2px solid #222;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: 0;
    }
    .pcSearchModal .search02 .searchTable02 .genre,
    .pcSearchModal .search02 .searchTableWrap04 .searchTable02 .genreChild{
        padding: 0 10px;
    }
/*
    .pcSearchModal .search02 .searchTableWrap03 .genreChild {
        padding: 0 10px;
    }
*/
    .pcSearchModal .kara {
        margin: 0 10px;
    }
}

@media all and (min-width: 768px) {
    .pcSearchModal {
        width: 1200px;
        padding: 10px;
        margin: 0 auto;
    }
    .pcSearchModal .search02 {
        padding: 30px 30px 20px;
        background-color: #fff;
    }
    .pcSearchModal .search02 .searchTableWrap01 {
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e5e5;
    }
    .pcSearchModal .search02 .searchTableWrap02 {
        padding: 20px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    .pcSearchModal .search02 .searchTableWrap03 {
        padding: 20px 0;
        border-bottom: 1px solid #e5e5e5;
    }
    .pcSearchModal .search02 .searchTableWrap04 {
        padding: 20px 0 30px;
    }
    .pcSearchModal .search02 .searchTable02 {
        font-family: 'Noto Serif JP', serif;
        display: flex;
        align-items: center;
    }
    .pcSearchModal .search02 .searchTable02 .th {
        margin-right: 20px;
        padding: 12px 0;
        width: 110px;
        background-color: #f2f3e8;
        font-size: 1.8rem;
        text-align: center;
    }
    .pcSearchModal .search02 .searchTable02 .th.th02 {
        margin-left: 20px;
    }
    .pcSearchModal .search02 .searchTable02 .th.genreTitle {
/*        height: 384px;*/
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .pcSearchModal .search02 .searchTable02 .genre {
        max-width: 1010px;
    }
    .pcSearchModal .search02 .searchTable02 .genre .genreSpace {
        margin-bottom: 20px;
        padding-bottom: 20px;
        border-bottom: 1px solid #e5e5e5;
    }
    .pcSearchModal .search02 .searchTable02 .tdTop {
        display: flex;
    }
    .pcSearchModal .search02 .searchTable02 .genreCol2 {
        display: flex;
    }
    .pcSearchModal .search02 .searchTable02 .genreCol2 .genreChild {
        width: 50%;
    }
    .pcSearchModal .search02 .searchTable02 .allBtn input[type="checkbox"] {
        display: none;
    }
    .pcSearchModal .search02 .searchTable02 .allBtn input[type="checkbox"]:checked + label {
        border: 1px solid #a12626;
        background-color: #a12626;
        color: #fff;
    }
    .pcSearchModal .search02 .searchTable02 .allBtn label {
        padding: 1px 7px;
        font-size: 1.2rem;
        text-align: center;
        display: inline-block;
        border: 1px solid #e5e5e5;
        border-radius: 3px;
        transition: 0.3s ease-in-out;
        cursor: pointer;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 {
        display: flex;
        flex-wrap: wrap;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item {
        margin-left: 10px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item input[type="checkbox"] {
        display: none;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item label {
        padding: 4px 10px;
        text-align: center;
        display: inline-block;
        border-radius: 3px;
        transition: 0.3s ease-in-out;
        cursor: pointer;
        border: 1px solid #e5e5e5;
        background-color: #fff;
        color: #000;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item input[type="checkbox"]:checked + label {
        border: 1px solid #a12626;
        background-color: #a12626;
        color: #fff;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item label.btnDisabled2,
    .pcSearchModal .search02 .searchTable02 .searchBtnList02 .item label.btnDisabled {
        background-color: #ccc;
        color: #999;
        pointer-events: none;
    }
    
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver01 .item:nth-of-type(1) {
        margin-left: 0;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver01 .item label {
        width: 100px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver02 .item {
        margin-top: 10px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver02 .item:nth-of-type(5n+1) {
        margin-left: 0;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver02 .item label {
        width: 190px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.verCol04 .item {
      margin-top: 10px;
  }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.verCol04 .item:nth-of-type(4n+1) {
      margin-left: 0;
  }
  .pcSearchModal .search02 .searchTable02 .searchBtnList02.verCol04 .item label {
      width: 240px;
  }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver03 .item, .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver04 .item {
        margin-top: 10px;
    }
    .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver03 .item:nth-of-type(1), .pcSearchModal .search02 .searchTable02 .searchBtnList02.ver04 .item:nth-of-type(1) {
        margin-left: 0;
    }
    .pcSearchModal .search02 .searchTable02 .selectWrap02 {
        position: relative;
        width: 350px;
    }
    .pcSearchModal .search02 .searchTable02 .selectWrap02 select {
        position: relative;
        -moz-appearance: none;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
        border: 1px solid #e5e5e5;
        border-radius: 3px;
        margin: 0;
        padding: 0 35px 0 10px;
        background: none transparent;
        vertical-align: top;
        font-size: inherit;
        color: #212121;
        box-sizing: border-box;
        cursor: pointer;
        width: 100%;
        height: 40px;
        z-index: 1;
    }
    .pcSearchModal .search02 .searchTable02 .selectWrap02::after {
        display: block;
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        width: 7px;
        height: 7px;
        margin: 15px 14px 0 0;
        border-right: 2px solid #222;
        border-bottom: 2px solid #222;
        -webkit-transform: rotate(45deg);
        transform: rotate(45deg);
        z-index: 0;
    }
    .pcSearchModal .search02 .searchTable02 .tdTop .childTitle {
        margin-right: 20px;
        color: #a12626;
        font-size: 1.6rem;
    }
    .pcSearchModal .search02 .searchTable02 .tdTop .childTitle::before {
        margin-right: 5px;
        content: '■';
    }
    .pcSearchModal .search02 .searchTable02 .tdTop .attention02 {
        margin-left: 10px;
    }
    .pcSearchModal .search02 .searchTable02 .kara {
        margin: 0 10px;
    }
}

.btn05 {
    width: 200px;
    background-color: #000;
    color: #fff;
    line-height: 60px;
    font-size: 2.0rem;
    border-radius: 6px;
}

.btn06 {
    width: 200px;
    background-color: #fff;
    color: #000;
    line-height: 60px;
    font-size: 2.0rem;
    border-radius: 6px;
    border: 1px solid #000;
}

.secondSearchArea {
/*
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
*/
    display: none;
}
/*
.secondSearchArea.show {
    visibility: visible;
    opacity: 1;
}
*/

.foundPosts {
    margin-bottom: 20px;
    text-align: center;
    font-size: 3rem;
    color: #a12626;
}
.foundPosts .unit {
    font-size: 2rem;
}
.foundPosts .found {
    font-size: 1.6rem;
    color: #000;
}

.searchBtnArea {
    display: flex;
    justify-content: center;
}

@media screen and (max-width: 767px) {
    .searchBtnArea {
        flex-direction: column-reverse;
    }
    .searchBtnArea .x2 {
        margin: 10px 0;
    }
}
@media all and (min-width: 768px) {
    .searchBtnArea .x2 {
        margin: 0 10px;
    }
}
/*---------------------------------------------
header
---------------------------------------------*/
#logout {
  margin: 60px 10px;
  position: fixed;
  top: 0;
  right: 0;
  padding: 5px 10px;
  background-color: #000;
  border-radius: 3px;
  color: #fff;
  cursor: pointer;
  z-index: 100;
  text-decoration: none;
}

@media screen and (max-width: 767px) {
  #header {
    padding-top: 55px;
  }
  #header .headNav {
    display: flex;
    justify-content: space-between;
    width: 100%;
    height: 55px;
    position: fixed;
    top: 0;
    left: 0;
    background: #fff;
    box-sizing: border-box;
    z-index: 11;
  }
  #header .headNav .logo {
    display: flex;
    align-items: center;
    padding: 0 0 0 10px;
    width: 30%;
    height: 100%;
  }
  #header .headNav .logo a {
    font-size: 0;
    line-height: normal;
  }
  #header .headNav .logo img {
    width: 90%;
    max-width: 100px;
  }
  #header .headNav .spHeadNav {
    width: 70%;
    height: 100%;
    max-width: 240px;
  }
  #header .headNav .spHeadNav .item {
    width: 25%;
    height: 100%;
    max-width: 64px;
  }
  #header .headNav .spHeadNav .item a {
    height: 100%;
    display: block;
    text-decoration: none;
    font-size: 1.0rem;
    font-weight: bold;
    color: #212121;
    text-align: center;
  }
  #header .headNav .spHeadNav .item a i {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 33px;
  }
  #header .headNav .spHeadNav .item a i img {
    width: 30%;
    max-width: 20px;
  }
  #header .headNav .spHeadNav .item a p {
    line-height: normal;
  }
  #header .navArea {
    margin-top: 55px;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #fff;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s ease-in-out;
    z-index: 10;
  }
  #header .navArea .gnav .item {
    border-top: 1px solid #999999;
  }
  #header .navArea .gnav .item a {
    position: relative;
    padding: 10px 25px;
    display: block;
    text-decoration: none;
    color: #212121;
  }
  #header .navArea .gnav .item a::before {
    display: block;
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 10px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #a12626;
    border-bottom: 1px solid #a12626;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
  }
  #header .navArea .subNav {
    padding: 15px;
    background-color: #212121;
    text-align: center;
  }
  #header .navArea .subNav a {
    display: block;
    text-decoration: none;
    color: #fff;
    background-color: #a12626;
  }
  #header .navArea .subNav .lang {
    display: flex;
    margin-bottom: 15px;
  }
  #header .navArea .subNav .lang .eng,
  #header .navArea .subNav .lang .jpn {
    width: 50%;
  }
  #header .navArea .subNav .lang .eng a,
  #header .navArea .subNav .lang .jpn a {
    line-height: 40px;
  }
  #header .navArea .subNav .lang .active a {
    background-color: #f6f6f6;
    color: #999999;
  }
  #header .navArea .subNav .login a {
    line-height: 60px;
    font-size: 2.2rem;
  }
  .menuOn #header .navArea {
    visibility: visible;
    opacity: 1;
  }
  .menuOn #logout {
/*    margin: 121px 10px 0;*/
      margin: 445px 10px 0;
  }
  .searchBoxArea {
    padding: 10px;
    position: relative;
  }
  .searchBoxArea input[type="text"] {
    width: 100%;
    border-radius: 5px;
  }
  .searchBoxArea input[type="text"]:focus {
    outline: none;
  }
  .searchBoxArea button {
    padding: 0 10px;
    position: absolute;
    top: 0;
    right: 0;
    margin-top: 13px;
    margin-right: 13px;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
    min-width: 50px;
    height: 34px;
    font-size: 1.3rem;
    cursor: pointer;
	border:none;
  }
  .searchBoxArea button:focus {
    outline: none;
  }
  #header .navArea .nav_subarea ul li{
  	display:block;
	width:100%;
  	border-bottom:1px solid #999999;
	}
  #header .navArea .nav_subarea ul li a{
  	color:#212121;
	padding:10px 25px;
	display:block;
	position:relative;
	text-decoration:none;

}
  #header .navArea .nav_subarea ul li a:before{
	position:absolute;
    display:block;
    content: '';
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto 10px;
    width: 6px;
    height: 6px;
    border-right: 1px solid #a12626;
    border-bottom: 1px solid #a12626;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }  
}

@media screen and (max-width: 320px) {
  #header .headNav .logo {
    padding: 3% 0 0 5px;
  }
}

@media all and (min-width: 768px) {
  #header {
    position: relative;
	/*overflow:hidden;*/
  }
  #header .headNav {
    padding-top: 20px;
    width: 1200px;
    margin: 0 auto;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
  }
  #header .headNav .logo {
    text-align: right;
  }
  #header .headNav .logo img {
    max-width: 120px;
    max-height: 314px;
    -webkit-filter: drop-shadow(0px 0px 20px #000) drop-shadow(0px 0px 20px #000);
            filter: drop-shadow(0px 0px 20px #000) drop-shadow(0px 0px 20px #000);
  }
  #header .headNav .logo.logo02 {
    text-align: left;
  }
  #header .headNav .logo.logo02 a {
    text-decoration: none;
  }
  #header .headNav .logo.logo02 img {
    max-width: 200px;
    max-height: 78.19px;
  }
  #header .headNav .logo.logo02 .enSubTitle {
    display: inline-block;
    color: #fff;
    text-shadow: 0 0 20px #000, 0 0 20px #000;
	font-size: 1.4rem;
	font-style:italic;
  }
  #header .headNav .logo.enLogo{
  	text-align:left;
	}
  #header .headNav .logo.enLogo img {
    max-width: 314px;
  }
  #header .headNav .spHeadNav {
    display: none;
  }
  #header .navArea {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
  }
    #header .navArea .backBlack{
        background-color: rgba(0, 0, 0, 0.8);
    }
    .navFixed #header .navArea .backBlack {
        background-color: rgba(0, 0, 0, 1);
    }
  #header .navArea a {
    font-size: 1.6rem;
    text-decoration: none;
  }
  #header .navArea .navAreaInner {
    display: flex;
    justify-content: space-between;
    width: 1200px;
    margin: 0 auto;
    height: 60px;
	position:relative;
  }
  #header .navArea .navAreaInner .gnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width:auto;
  }
  #header .navArea .navAreaInner .gnav .item {
    line-height: 60px;
    color: #fff;
    font-family: "Noto Serif JP", serif;
    margin-right: 10px;
  }
  #header .navArea .navAreaInner .gnav .item a {
    font-family: "Noto Serif JP", serif;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s ease-in-out;
  }
  #header .navArea .navAreaInner .gnav .item a:hover {
    color: #fff;
  }
  #header .navArea .navAreaInner .gnav .item a .pt02 {
    padding: 0 20px;
    display: inline-block;
    background-color: #a12626;
    line-height: 30px;
    border-radius: 50px;
    color: #fff;
    transition: 0.3s ease-in-out;
  }
  #header .navArea .navAreaInner .gnav .item a .pt03 {
    padding: 0 20px;
    display: inline-block;
    background-color: #222;
    border: 1px solid #333;
    line-height: 30px;
    border-radius: 50px;
    color: #fff;
    transition: 0.3s ease-in-out;
  }
  #header .navArea .navAreaInner .gnav .item a .colorChange {
    background-color: #99852e;
    color: #fff;
  }
  #header .navArea .navAreaInner .gnav .item a .pt02:hover {
    background-color: #fff;
    color: #a12626;
  }
  #header .navArea .navAreaInner .gnav .item a .pt03:hover {
    background-color: #fff;
    color: #000;
  }
  #header .navArea .navAreaInner .gnav .item a .colorChange:hover {
    color: #99852e;
  }
  #header .navArea .navAreaInner .subNav {
    display: flex;
  }
  #header .navArea .navAreaInner .subNav .lang a {
    font-family: "Noto Serif JP", serif;
    width: 90px;
    display: block;
    line-height: 60px;
    background: #000;
    color: #fff;
    text-align: center;
    transition: 0.3s ease-in-out;
  }
  #header .navArea .navAreaInner .subNav .lang a:hover {
    background-color: #fff;
    color: #000;
  }
  #header .navArea .navAreaInner .subNav .lang .active {
    display: none;
  }
  #header .navArea .navAreaInner .subNav .login a {
    text-align: center;
    width: 200px;
    display: block;
    line-height: 60px;
    background-color: #a12626;
    color: #fff;
    transition: 0.3s ease-in-out;
  }
  #header .navArea .navAreaInner .subNav .login a:hover {
    background-color: #fff;
    color: #a12626;
  }
  #logout {
    margin: 40px;
    transition: 0.3s ease-in-out;
  }
  #logout:hover {
    opacity: .7;
  }
  .navFixed #header .navArea {
    position: fixed;
    top: 0;
    bottom: inherit;
    z-index: 11;
  }
  .navFixed #logout {
    margin: 130px 40px 0;
  }
/*
  .navFixed #logout.searchBarVar {
    margin: 160px 40px;
  }
*/
  .searchBoxArea form {
      display: flex;
  }
  .searchBoxArea input[type="text"] {
    width: 310px;
    height: 30px;
    border-radius: 5px;
  }
  .searchBoxArea input[type="text"]:focus {
    outline: none;
  }
  .searchBoxArea button {
      margin-left: 5px;
    padding: 0 10px;
    background-color: #000;
    color: #fff;
    border-radius: 5px;
	border:none;
    min-width: 50px;
    height: 30px;
    line-height: 28px;
    font-size: 1.3rem;
    cursor: pointer;
  }
  .searchBoxArea button:focus {
    outline: none;
  }
	#header .nav_subarea {
		background: rgba(255,255,255,1);
		width: 100%;
		padding:10px 0;
		border-bottom:1px solid #ddd;
        transition: 0.3s ease-in-out;
	}
	#header .nav_subarea > div{
		width: 1200px;
		margin: 0 auto;
	}
	#header .nav_subarea ul{
		text-align: right;
	}
	#header .nav_subarea ul li{
  	display:inline-block;
	margin-left:20px;
}
  #header .nav_subarea ul li a{
  	/* color:#333; */
  text-decoration:none;
  width: auto;
  padding: 0 40px 0 30px;
  vertical-align: bottom;
}
  /* #header .nav_subarea ul li a:before{
    content: "\f105";
  	font-family: FontAwesome;
  	font-weight:900;
	display:inline-block;
	margin-right:5px;
  } */
	.navFixed #header .nav_subarea {
		background: rgba(255,255,255,0.8);
	}
}

/*---------------------------------------------
header
---------------------------------------------*/
#footer {
  border-top: 1px solid #999999;
}

#footer .top {
  line-height: 180%;
}

#footer .top .left .fLogo img {
  width: 240px;
}

#footer .copy {
  background-color: #000;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
  line-height: 30px;
}
#footer .top .left li a{ color:#212121; text-decoration:none;}
#footer .top .left li a:hover{ color:#a12626;}

#footer .top .snsLink a{
    color: #000;
    text-decoration: none;
}
#footer .top .snsLink a i {
    margin-right: 5px;
}
@media screen and (max-width: 767px) {
  #footer .top .left {
    padding: 30px 10px;
    border-bottom: 1px solid #999999;
    text-align: center;
  }
  #footer .top .left .fLogo {
    margin-bottom: 20px;
  }
  #footer .top .left .fInfo figure {
    margin-bottom: 20px;
  }
  #footer .top .left .fInfo .address {
    text-align: left;
  }
  #footer .top .right {
    padding: 15px 10px 20px;
  }
  #footer .top .right .attention {
    margin-bottom: 20px;
    text-align: center;
  }
}

@media all and (min-width: 768px) {
  #footer .top {
    padding: 40px 0;
    width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  #footer .top .left {
    display: flex;
  }
  #footer .top .left .fInfo {
    margin-left: 40px;
  }
  #footer .top .left .fInfo .address {
    margin-bottom: 20px;
  }
    #footer .top .left .shopImg {
        width: 360px;
    }
  #footer .top .right {
/*    text-align: right;*/
      border-left: 1px solid #999;
      padding-left: 40px;
  }
    
  #footer .top .right .attention {
    margin-bottom: 10px;
  }
  #footer .top .right .fNav {
    display: inline-block;
    text-align: left;
  }
}

/*---------------------------------------------
Pagetop Btn
---------------------------------------------*/
#pagetop {
  margin: 10px;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 9;
  cursor: pointer;
  transition: 0.5s ease-in-out;
  opacity: 0;
  visibility: hidden;
}

#pagetop::before {
  content: '';
  width: 40px;
  height: 40px;
  background: #000;
  display: block;
  transition: 0.2s ease-in-out;
}

#pagetop::after {
  display: block;
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
  margin: 17px 15px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  -webkit-transform: rotate(135deg);
          transform: rotate(135deg);
}

#pagetop.show {
  opacity: 1;
  visibility: visible;
}

@media all and (min-width: 768px) {
  #pagetop {
    margin: 10px 20px;
  }
  #pagetop::before {
    width: 60px;
    height: 60px;
  }
  #pagetop::after {
    margin: 27px 22px;
    width: 15px;
    height: 15px;
  }
  #pagetop:hover::before {
    background: #a12626;
  }
}

/*---------------------------------------------
Display setting
---------------------------------------------*/
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
  .sptel a {
    color: #a12626;
  }
}

@media all and (min-width: 768px) {
  .sp {
    display: none;
  }
}

/* ----------------------------------------

clearfix

---------------------------------------- */
/* Modern Browsers
------------------------------- */
.cf:after,
.fll:after,
.flr:after {
  display: block;
  visibility: hidden;
  clear: both;
  height: 0;
  content: " ";
  line-height: 0;
}

/* Legacy IE
------------------------------- */
.cf,
.fll,
.flr {
  *zoom: 1;
}
