@charset "UTF-8";
/* 点滅 */
/* ローディングアニメ */
/* スクロールアニメ */
/* ページトップボタン */
/*リセット
--------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle;
}

q, blockquote {
  quotes: none;
}
q:before, q:after, blockquote:before, blockquote:after {
  content: "";
  content: none;
}

a img {
  border: none;
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block;
}

/*メディアクエリー
---------------------------------------------*/
/*変数
---------------------------------------------*/
/* 全体設定
---------------------------------------------*/
html {
  width: 100%;
  overflow-y: scroll;
  overflow-x: hidden;
  font-size: 62.5%;
}

body {
  background-image: none;
  width: 100%;
  overflow-x: hidden;
  color: #000;
  font-size: 1.2rem;
  letter-spacing: 0.08rem;
  line-height: 2.2rem;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 769px) {
  body {
    font-size: 1.4rem;
    line-height: 2.5rem;
    letter-spacing: 0.1rem;
  }
}

img {
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (min-width: 769px) {
  .pcNone {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .pcNone {
    display: block;
  }
}

@media screen and (min-width: 769px) {
  .spNone {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .spNone {
    display: none;
  }
}

/* link setting
--------------------------------------*/
a {
  color: #000;
  text-decoration: none;
  transition: all 0.4s;
}

/*ふわっと表示*/
.fadein {
  opacity: 0;
  transform: translateY(35px);
  transition: all 0.8s;
}

.fadein-side {
  opacity: 0;
  transform: translateX(35px);
  transition: all 1s;
}

#wrap {
  width: 100%;
  margin: 0 auto;
}

/* topArea
-------------------------*/
#topArea {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 1000;
}
@media screen and (min-width: 769px) {
  #topArea {
    width: 50%;
  }
}
#topArea .main {
  width: 100%;
  margin: 0px auto;
}

#page-top,
#page-top span {
  display: inline-block;
  box-sizing: border-box;
}

#page-top {
  position: fixed;
  width: 50px;
  height: 50px;
  background: #000;
  z-index: 9999;
  right: 0;
  bottom: 0;
  transition: all 0.4s;
  box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  #page-top {
    width: 40px;
    height: 40px;
  }
}
#page-top span {
  position: absolute;
  height: 2px;
  background-color: #fff;
}
#page-top span:nth-of-type(1) {
  top: 50%;
  transform: rotate(-45deg);
  width: 20px;
  left: 15%;
}
@media screen and (max-width: 768px) {
  #page-top span:nth-of-type(1) {
    width: 15px;
    left: 20%;
  }
}
#page-top span:nth-of-type(2) {
  top: 50%;
  transform: rotate(45deg);
  width: 22px;
  right: 15%;
}
@media screen and (max-width: 768px) {
  #page-top span:nth-of-type(2) {
    width: 14px;
    right: 20%;
  }
}

/* mainArea
--------------------------------------*/
#contents {
  width: 100%;
  margin: 0px auto 0;
  box-sizing: border-box;
}
#contents #read {
  width: 90%;
  box-sizing: border-box;
  margin: 0px auto 100px;
  line-height: 2.4rem;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  #contents #read {
    margin-bottom: 230px;
    text-align: center;
    line-height: 3rem;
    font-size: 1.5rem;
  }
}
#contents #read .read_txt {
  margin-bottom: 170px;
  font-weight: 500;
}
@media screen and (min-width: 769px) {
  #contents #read .read_txt {
    margin-bottom: 200px;
  }
}
#contents #read .read_img {
  position: relative;
}
@media screen and (min-width: 769px) {
  #contents #read .read_img {
    width: 45%;
    max-width: 500px;
    margin: 0 auto;
  }
}
#contents #read .read_img .read {
  margin: 150px auto 200px;
  width: 85%;
}
#contents #read .read_img .item {
  position: absolute;
  transition: all 0.4s;
}
#contents #read .read_img .item:hover {
  opacity: 0.6;
}
#contents #read .read_img .read_1 {
  width: 30%;
  top: -120px;
  left: 20%;
}
@media screen and (min-width: 769px) {
  #contents #read .read_img .read_1 {
    top: -40%;
  }
}
#contents #read .read_img .read_2 {
  width: 35%;
  top: -70px;
  right: 10%;
}
@media screen and (min-width: 769px) {
  #contents #read .read_img .read_2 {
    top: -25%;
    right: 10%;
  }
}
#contents #read .read_img .read_3 {
  width: 45%;
  top: 5px;
  left: 3%;
}
#contents #read .read_img .read_4 {
  width: 30%;
  top: 60px;
  right: 3%;
}
@media screen and (min-width: 769px) {
  #contents #read .read_img .read_4 {
    top: 20%;
  }
}
#contents #read .read_img .read_5 {
  width: 40%;
  bottom: 35px;
  left: 0;
}
@media screen and (min-width: 769px) {
  #contents #read .read_img .read_5 {
    bottom: 13%;
    left: -2%;
  }
}
#contents #read .read_img .read_6 {
  width: 42%;
  bottom: -100px;
  left: 5%;
}
@media screen and (min-width: 769px) {
  #contents #read .read_img .read_6 {
    bottom: -38%;
  }
}
#contents #read .read_img .read_7 {
  width: 35%;
  bottom: -10px;
  right: 0%;
}
@media screen and (min-width: 769px) {
  #contents #read .read_img .read_7 {
    bottom: 0px;
    right: -3%;
  }
}
#contents #read .read_img .read_8 {
  width: 28%;
  bottom: -130px;
  left: 45%;
}
@media screen and (min-width: 769px) {
  #contents #read .read_img .read_8 {
    bottom: -40%;
  }
}
#contents #category_area {
  width: 100%;
  margin: 0px auto 0;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #contents #category_area {
    width: 45%;
    max-width: 600px;
  }
}
#contents #category_area .ttl {
  width: 100%;
  margin: 0px auto 20px;
  border-left: solid 5px #3C6EB2;
}
@media screen and (min-width: 769px) {
  #contents #category_area .ttl {
    margin-bottom: 30px;
  }
}
#contents #category_area .ttl img {
  width: auto;
  height: 65px;
  padding-left: 10px;
}
@media screen and (min-width: 769px) {
  #contents #category_area .ttl img {
    height: 75px;
    padding-left: 15px;
  }
}
#contents #category_area .category_box {
  width: 90%;
  margin: 0px auto 70px;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #contents #category_area .category_box {
    width: 100%;
    margin: 0px auto 100px;
  }
}
#contents #category_area .flexbox {
  width: 100%;
  margin: 0 auto 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (min-width: 769px) {
  #contents #category_area .flexbox {
    margin-bottom: 40px;
  }
}
#contents #category_area .box_txt {
  width: 100%;
  margin: 15px auto;
}
@media screen and (min-width: 769px) {
  #contents #category_area .box_txt {
    margin: 30px auto;
  }
}
#contents #category_area .box_txt a {
  border-bottom: solid 1px;
  transition: all 0.4s;
}
#contents #category_area .box_txt a:hover {
  opacity: 0.8;
}
#contents #category_area .box_img {
  width: 46%;
  box-sizing: border-box;
}
@media screen and (min-width: 769px) {
  #contents #category_area .box_img {
    width: 55%;
  }
}
@media screen and (min-width: 769px) {
  #contents #category_area .fukidashi {
    width: 38%;
  }
}
#contents #category_area .info {
  width: 100%;
  background: #E6E7E7;
  padding: 30px 0;
}
@media screen and (min-width: 769px) {
  #contents #category_area .info {
    padding: 50px 0;
  }
}
#contents #category_area .info .flexbox {
  background: #fff;
  width: 90%;
  margin: 0px auto;
  padding: 30px 0;
  text-align: center;
  font-size: 1.4rem;
}
@media screen and (min-width: 769px) {
  #contents #category_area .info .flexbox {
    width: 80%;
    padding: 50px 0;
    font-size: 1.5rem;
  }
}
#contents #category_area .info .flexbox a img {
  width: 80%;
  margin: 10px auto 0;
  transition: all 0.4s;
}
#contents #category_area .info .flexbox a img:hover {
  opacity: 0.8;
}
#contents #category_area .info .flexbox .list {
  width: 85%;
  margin: 25px auto 20px;
}
@media screen and (min-width: 769px) {
  #contents #category_area .info .flexbox .list {
    width: 80%;
    margin: 30px auto;
  }
}
#contents #category_area .info .flexbox .movie {
  width: 100%;
  margin: 0px auto;
}
#contents #category_area .info .flexbox .movie video {
  width: 80%;
  box-sizing: border-box;
}
#contents #category_area .list {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 769px) {
  #contents #category_area .list {
    width: 100%;
  }
}
#contents #category_area .list .ttl_main {
  border: none;
  margin: 40px auto;
}
@media screen and (min-width: 769px) {
  #contents #category_area .list .ttl_main {
    margin: 60px auto;
  }
}
#contents #category_area .list .ttl_main img {
  width: 60%;
  height: auto;
  padding: 0;
  margin: 0 auto;
}
#contents #category_area .list .flexbox {
  width: 100%;
}
#contents #category_area .list .flexbox .box_item {
  width: 47%;
}
#contents #category_area .list .flexbox .box_item a img {
  transition: all 0.4s;
}
#contents #category_area .list .flexbox .box_item a img:hover {
  opacity: 0.8;
}
#contents #category_area .list .flexbox .box_txt {
  text-align: right;
  margin-top: 15px;
  margin-bottom: 40px;
}
@media screen and (min-width: 769px) {
  #contents #category_area .list .flexbox .box_txt {
    margin-bottom: 50px;
  }
}
#contents #category_area .list .flexbox .box_txt p {
  margin-top: 20px;
  text-align: left;
}
#contents #category_area .list .ttl {
  border: none;
  margin-bottom: 15px;
}
@media screen and (min-width: 769px) {
  #contents #category_area .list .ttl {
    margin-bottom: 20px;
  }
}
#contents #category_area .list .ttl img {
  height: 20px;
  padding: 0;
}
@media screen and (min-width: 769px) {
  #contents #category_area .list .ttl img {
    height: 30px;
  }
}
#contents .all_link {
  display: block;
  background: #004081;
  color: #fff;
  text-align: center;
  font-family: "Futura", "Century Gothic", sans-serif;
  letter-spacing: 0.2rem;
  font-size: 1.5rem;
  font-weight: 600;
  margin: 0px auto 15px;
  width: 85%;
  padding: 15px 0;
}
@media screen and (min-width: 769px) {
  #contents .all_link {
    width: 85%;
    font-size: 1.8rem;
    letter-spacing: 0.3rem;
  }
}
#contents .all_link:hover {
  background: #9B7E04;
}

.swiper-pagination {
  position: relative !important;
  margin: 0 auto;
  bottom: 0;
  top: 20px;
}

.swiper-pagination-bullet {
  margin: 0 10px;
}

.swiper-pagination-bullet-active {
  background: #000 !important;
}

@media screen and (min-width: 769px) {
  .slick-dots {
    right: 10px !important;
    bottom: 15px !important;
  }
}
/* endArea
--------------------------------------*/
footer {
  margin: 0px auto;
  text-align: center;
  padding: 50px 0 80px;
  line-height: 2rem;
}
@media screen and (min-width: 769px) {
  footer {
    padding: 100px 0;
    line-height: 2.4rem;
  }
}
footer #logo {
  width: 70px;
  margin: 0px auto 20px;
}
footer #logo:hover a img:hover {
  filter: alpha(opacity=60); /* IE 6と7*/
  -ms-filter: "alpha(opacity=60)"; /* IE 8と9 */
  -moz-opacity: 0.6; /* Firefox , Netscape */
  -khtml-opacity: 0.6; /* Safari 1系 */
  opacity: 0.6;
  zoom: 1; /*IE*/
  transition: all 0.3s ease-out;
}
footer #copyright {
  text-align: center;
  font-size: 1rem;
}/*# sourceMappingURL=style.css.map */