@charset "UTF-8";
/* ======================= VARIABLE ====== */
/* red */
/* black */
/* placeholder color */
/* ======================= IMPORT ====== */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*=================
     
    basic.scss

=======================*/
.common_main {
  padding: 60px 0 0;
}

/* layout */
.body_wrap {
  height: 100%;
  position: relative;
}
.body_wrap .body_menu {
  background: #fff;
  position: relative;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.body_wrap .body_main {
  height: 100%;
  position: relative;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.body_wrap.active {
  overflow: hidden;
}
.body_wrap.active .header_wrap {
  -moz-box-shadow: 0px 3px 6px transparent;
  -webkit-box-shadow: 0px 3px 6px transparent;
  box-shadow: 0px 3px 6px transparent;
}
.body_wrap.active .header_sp_filter {
  display: block;
}
.body_wrap.active .body_menu {
  -moz-transform: translateX(0);
  -ms-transform: translateX(0);
  -webkit-transform: translateX(0);
  transform: translateX(0);
}
.body_wrap.active .body_main {
  -moz-transform: translateX(306px);
  -ms-transform: translateX(306px);
  -webkit-transform: translateX(306px);
  transform: translateX(306px);
}
@media only screen and (max-width: 375px) {
  .body_wrap.active .body_main {
    -moz-transform: translateX(81.6%);
    -ms-transform: translateX(81.6%);
    -webkit-transform: translateX(81.6%);
    transform: translateX(81.6%);
  }
}

.layout_wrap {
  padding: 80px 16px;
}
@media only screen and (max-width: 960px) {
  .layout_wrap {
    padding: 60px 16px;
  }
}

.layout_inner {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  width: 100%;
  margin: 0 auto;
}
@media only screen and (max-width: 960px) {
  .layout_inner {
    display: block;
  }
}
.layout_inner .layout_main {
  width: 744px;
}
@media only screen and (max-width: 960px) {
  .layout_inner .layout_main {
    width: 100%;
    margin: 0 auto 60px;
  }
}
.layout_inner .layout_aside {
  width: 168px;
  margin: 0 24px 0 0;
}
@media only screen and (max-width: 960px) {
  .layout_inner .layout_aside {
    width: 100%;
    margin: 0 auto;
  }
}

/* heading */
.page_heading_wrap {
  position: relative;
  background: url("../images/common/bg01.jpg") center center no-repeat;
  background-size: cover;
  height: 143px;
  padding: 0 16px;
}
.page_heading_wrap:before {
  content: "";
  height: 100%;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuMCIgeDI9IjAuMCIgeTI9IjEuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzAwMDAwMCIgc3RvcC1vcGFjaXR5PSIwLjciLz48c3RvcCBvZmZzZXQ9IjEwMCUiIHN0b3AtY29sb3I9IiMwMDAwMDAiIHN0b3Atb3BhY2l0eT0iMC4xIi8+PC9saW5lYXJHcmFkaWVudD48L2RlZnM+PHJlY3QgeD0iMCIgeT0iMCIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNncmFkKSIgLz48L3N2Zz4g');
  background: -moz-linear-gradient(225deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  background: -webkit-linear-gradient(225deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
  background: linear-gradient(-135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1));
}
.page_heading_wrap .common_inner {
  height: 100%;
}
.page_heading_wrap .page_heading {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  color: #fff;
}
.page_heading_wrap .page_heading span {
  display: block;
  font-size: 16px;
}

h1 {
  font-size: 32px;
  font-weight: bold;
  color: #212121;
}
@media only screen and (max-width: 350px) {
  h1 {
    font-size: 30px;
  }
}

h2 {
  font-size: 28px;
  font-weight: bold;
  color: #212121;
}

h3 {
  font-size: 24px;
  font-weight: bold;
  color: #212121;
}
h3.deep_gray {
  color: #4C4C4C;
}
h3 .special_title {
  display: block;
  color: #B4A252;
  margin: 0 0 4px;
}

h4 {
  font-size: 20px;
  font-weight: bold;
  color: #212121;
}

/* COLOR */
.black {
  color: #212121;
}

/* BUTTON */
.common_btn01 {
  position: relative;
  display: block;
  width: 100%;
  background: #69001B;
  border: 4px #69001B solid;
  font-size: 14px;
  text-align: center;
  font-weight: bold;
  color: #fff;
  text-decoration: none;
  padding: 8px 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.common_btn01.center {
  margin: 0 auto;
}
.common_btn01.w168 {
  max-width: 168px;
}
.common_btn01.w272 {
  max-width: 272px;
}
.common_btn01.w360 {
  max-width: 360px;
}
.common_btn01:hover {
  color: #fff;
  background: #520015;
  border: 4px #520015 solid;
}
.common_btn01:active {
  background: #520015;
  border: 4px #520015 solid;
  -moz-box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
  -webkit-box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
  box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
}
.common_btn01:focus {
  border: 4px #B3002E solid;
  -moz-box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
  -webkit-box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
  box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
}
.common_btn01 img {
  display: block;
  width: 16px;
  position: absolute;
  right: 12px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

/* LINK */
.viewmore_btn01 {
  display: inline-block;
  font-weight: bold;
  color: #212121;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.viewmore_btn01:hover {
  color: #000;
}
.viewmore_btn01:active {
  color: #000;
}
.viewmore_btn01:focus {
  color: #000;
}
.viewmore_btn01 img {
  display: inline-block;
  width: 16px;
  margin: 0 0 0 8px;
  vertical-align: -2px;
}

/* HOVER */
.pager_wrap .pager_prev, .pager_wrap .pager_next, .header_wrap .header_main .header_logo, .header_logout_btn {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pager_wrap .pager_prev:hover, .pager_wrap .pager_next:hover, .header_wrap .header_main .header_logo:hover, .header_logout_btn:hover {
  opacity: 0.7;
}

.pager_wrap .pager_list .pager_link, .footer_bottom_block .footer_sublist .footer_sublink, .page_news_block .page_news_title a, .page_anchor_list .page_anchor_link, a {
  color: #212121;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.pager_wrap .pager_list .pager_link:hover, .footer_bottom_block .footer_sublist .footer_sublink:hover, .page_news_block .page_news_title a:hover, .page_anchor_list .page_anchor_link:hover, a:hover {
  color: #000;
}

.common_btn01 {
  -moz-box-shadow: 0px 2px 4px rgba(105, 0, 27, 0.2);
  -webkit-box-shadow: 0px 2px 4px rgba(105, 0, 27, 0.2);
  box-shadow: 0px 2px 4px rgba(105, 0, 27, 0.2);
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common_btn01:hover {
  -moz-box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
  -webkit-box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
  box-shadow: 0px 2px 8px rgba(105, 0, 27, 0.4);
}

.common_category_list .common_category_link, .page_mem_list .page_mem_link, .page_account_btn {
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.common_category_list .common_category_link:hover, .page_mem_list .page_mem_link:hover, .page_account_btn:hover {
  -moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.08);
}

/* 余白 */
.mb150 {
  margin: 0 0 150px;
}
@media only screen and (max-width: 960px) {
  .mb150 {
    margin: 0 0 75px;
  }
}

.mb80 {
  margin: 0 0 80px;
}
@media only screen and (max-width: 960px) {
  .mb80 {
    margin: 0 0 60px;
  }
}

.mb60 {
  margin: 0 0 60px;
}

.mb40 {
  margin: 0 0 40px;
}

.mb36 {
  margin: 0 0 36px;
}

.mb32 {
  margin: 0 0 32px;
}

.mb28 {
  margin: 0 0 28px;
}

.mb24 {
  margin: 0 0 24px;
}

.mb20 {
  margin: 0 0 20px;
}

.mb16 {
  margin: 0 0 16px;
}

.mb12 {
  margin: 0 0 12px;
}

.mb8 {
  margin: 0 0 8px;
}

.mb5 {
  margin: 0 0 5px;
}

/* ALIGN */
.align_right {
  text-align: right;
}

.align_center {
  text-align: center;
}

/* TEXT WRAP */
.nowrap {
  white-space: nowrap;
}

/* FONT WEIGHT */
.fw_bold {
  font-weight: bold;
}

/* CATEGORY */
.common_category_list {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 0 -24px;
}
@media only screen and (max-width: 960px) {
  .common_category_list {
    margin: 0 0 -12px;
  }
}
@media only screen and (max-width: 768px) {
  .common_category_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.common_category_list .common_category_item {
  width: calc( ( 100% - 72px ) / 4 );
  margin: 0 24px 24px 0;
}
@media only screen and (max-width: 960px) {
  .common_category_list .common_category_item {
    width: calc( ( 100% - 48px ) / 4 );
    margin: 0 12px 12px 0;
  }
}
@media only screen and (max-width: 768px) {
  .common_category_list .common_category_item {
    width: calc( 50% - 6px );
    margin: 0 0 12px;
  }
}
.common_category_list .common_category_item:nth-of-type(4n) {
  margin: 0 0 24px;
}
@media only screen and (max-width: 960px) {
  .common_category_list .common_category_item:nth-of-type(4n) {
    margin: 0 0 12px;
  }
}
.common_category_list .common_category_link {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #212121;
  font-weight: bold;
  background: #fff;
  padding: 13px 0 23px;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.common_category_list .common_category_link:after {
  content: "";
  background: url("../images/common/icon01.svg") center center no-repeat;
  background-size: contain;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

/* PAGER */
.pager_wrap {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.pager_wrap.book {
  margin: 0 0 80px;
}
@media only screen and (max-width: 960px) {
  .pager_wrap.book {
    margin: 0 0 60px;
  }
}
.pager_wrap .pager_prev {
  display: block;
  width: 16px;
  margin: 0 12px 0 0;
}
.pager_wrap .pager_prev img {
  display: block;
  width: 100%;
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}
.pager_wrap .pager_next {
  display: block;
  width: 16px;
  margin: 0 0 0 12px;
}
.pager_wrap .pager_next img {
  display: block;
  width: 100%;
}
.pager_wrap .pager_list {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.pager_wrap .pager_list .pager_item {
  margin: 0 12px;
  color: #212121;
}
.pager_wrap .pager_list .pager_link {
  text-decoration: none;
}
.pager_wrap .pager_list .pager_link.active {
  font-weight: bold;
}

/*=================
     
    header.scss

=======================*/
.header_wrap {
  height: 60px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 60;
  padding: 0 16px;
  -moz-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}
.header_wrap .header_inner {
  height: 100%;
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  max-width: 1128px;
  width: 100%;
  margin: 0 auto;
}
.header_wrap .header_main {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.header_wrap .header_main .header_menu_btn {
  display: none;
  border: none;
  background: no-repeat;
  width: 24px;
  height: 24px;
  margin: 0 12px 0 0;
}
@media only screen and (max-width: 960px) {
  .header_wrap .header_main .header_menu_btn {
    display: block;
  }
}
.header_wrap .header_main .header_menu_btn img {
  display: block;
  width: 100%;
}
.header_wrap .header_main .header_logo {
  display: block;
  width: 222px;
  text-decoration: none;
}
.header_wrap .header_main .header_logo img {
  display: block;
  width: 100%;
}
.header_wrap .header_nav {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 960px) {
  .header_wrap .header_nav {
    display: none;
  }
}
.header_wrap .header_nav_list {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 24px 0 0;
  padding: 0 24px 0 0;
  border-right: 1px #E5E5E5 solid;
}
@media only screen and (max-width: 1100px) {
  .header_wrap .header_nav_list {
    margin: 0 8px 0 0;
  }
}
.header_wrap .header_nav_list .header_nav_item {
  margin: 0 24px 0 0;
}
@media only screen and (max-width: 1100px) {
  .header_wrap .header_nav_list .header_nav_item {
    margin: 0 16px 0 0;
  }
}
.header_wrap .header_nav_list .header_nav_item:last-of-type {
  margin: 0;
}
.header_wrap .header_nav_list .header_nav_link {
  font-weight: bold;
  color: #4C4C4C;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.header_wrap .header_nav_list .header_nav_link img {
  display: inline-block;
  width: 8px;
  margin: 0 0 0 8px;
  vertical-align: 2px;
}
.header_wrap .header_nav_list .header_nav_link:hover {
  color: #212121;
}
.header_wrap .header_nav_list .header_nav_link.active {
  color: #212121;
}

.header_logout_btn {
  color: #16263C;
  font-weight: bold;
  text-decoration: none;
}

.header_sp_filter {
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(229, 229, 229, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 65;
}

.header_sp_menu {
  overflow: scroll;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 70;
  width: 81.6%;
  max-width: 306px;
  height: 100vh;
}
.header_sp_menu .header_sp_menu_main {
  padding: 32px 24px;
  border-bottom: 1px #E5E5E5 solid;
}
.header_sp_menu .header_sp_menu_sub {
  padding: 32px 24px;
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_item {
  margin: 0 0 32px;
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_item:last-of-type {
  margin: 0;
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_link {
  display: inline-block;
  text-decoration: none;
  color: #212121;
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_link img {
  display: inline-block;
  width: 8px;
  margin: 0 0 0 8px;
  vertical-align: 2px;
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_btn {
  cursor: pointer;
  position: relative;
  display: block;
  width: 100%;
  color: #212121;
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_btn:before {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #A7A7A7;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_btn:after {
  content: "";
  display: block;
  width: 16px;
  height: 2px;
  background: #A7A7A7;
  -moz-border-radius: 2px;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  right: 0;
  top: 50%;
  -moz-transform: translateY(-50%) rotate(90deg);
  -ms-transform: translateY(-50%) rotate(90deg);
  -webkit-transform: translateY(-50%) rotate(90deg);
  transform: translateY(-50%) rotate(90deg);
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_btn.active:before {
  background: #212121;
}
.header_sp_menu .header_sp_menu_list .header_sp_menu_btn.active:after {
  content: none;
}
.header_sp_menu .header_sp_menu_sublist {
  display: none;
  padding: 0 0 0 24px;
}
.header_sp_menu .header_sp_menu_sublist .header_sp_menu_subitem {
  margin: 24px 0 0;
}
.header_sp_menu .header_sp_menu_sublist .header_sp_menu_sublink {
  display: inline-block;
  text-decoration: none;
  color: #212121;
}

/*=================
     
    aside.scss

=======================*/
.aside_block {
  margin: 0 0 20px;
  padding: 20px 0;
  background: #F9F9F9;
}
.aside_block:last-of-type {
  margin: 0;
}

.aside_list .aside_item .aside_list .aside_link {
  padding: 12px 32px 12px 40px;
}
.aside_list .aside_link {
  position: relative;
  display: block;
  text-decoration: none;
  color: #4C4C4C;
  padding: 12px 32px 12px 24px;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.aside_list .aside_link img {
  display: block;
  width: 16px;
  position: absolute;
  right: 14px;
  top: 50%;
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.aside_list .aside_link:hover {
  font-weight: bold;
  color: #212121;
}
.aside_list .aside_link:active {
  font-weight: bold;
  color: #212121;
}
.aside_list .aside_link.active {
  font-weight: bold;
  color: #212121;
}

/*=================
     
    footer.scss

=======================*/
.footer_wrap {
  padding: 0 16px;
}

.footer_bottom_block {
  border-top: 1px #E5E5E5 solid;
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  padding: 21px 0;
}
@media only screen and (max-width: 768px) {
  .footer_bottom_block {
    display: block;
    padding: 19px 0;
  }
}
.footer_bottom_block .footer_sublist {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .footer_bottom_block .footer_sublist {
    margin: 0 0 8px;
  }
}
.footer_bottom_block .footer_sublist .footer_subitem {
  margin: 0 24px 0 0;
}
.footer_bottom_block .footer_sublist .footer_subitem:last-of-type {
  margin: 0;
}
.footer_bottom_block .footer_sublist .footer_sublink {
  font-size: 12px;
  display: inline-block;
}
.footer_bottom_block .footer_copyright {
  display: inline-block;
  font-size: 10px;
}

.footer_login_block {
  padding: 0 16px 12px;
  text-align: center;
}
.footer_login_block .footer_copyright {
  display: inline-block;
  font-size: 16px;
}
@media only screen and (max-width: 960px) {
  .footer_login_block .footer_copyright {
    font-size: 10px;
  }
}

/*=================
     
    form.scss

=======================*/
.form_wrap {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

.form_input {
  outline: none;
  display: block;
  width: 100%;
  height: 46px;
  font-size: 16px;
  color: #333;
  border: 1px #E9E9E9 solid;
  background: #F0F0F0;
  padding: 0 12px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}
.form_input:placeholder-shown {
  color: #ADADAD;
}
.form_input::-webkit-input-placeholder {
  color: #ADADAD;
}
.form_input:-moz-placeholder {
  color: #ADADAD;
  opacity: 1;
}
.form_input::-moz-placeholder {
  color: #ADADAD;
  opacity: 1;
}
.form_input:-ms-input-placeholder {
  color: #ADADAD;
}
.form_input:focus {
  border: 4px #B3002E solid;
}

.form_checkbox_label .form_checkbox_input {
  display: none;
}
.form_checkbox_label .form_checkbox_text {
  display: inline-block;
  padding: 0 0 0 32px;
  color: #4C4C4C;
  font-size: 14px;
  position: relative;
  line-height: 24px;
}
.form_checkbox_label .form_checkbox_text::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 24px;
  height: 24px;
  background: #F0F0F0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.form_checkbox_label .form_checkbox_input:checked + .form_checkbox_text {
  color: #000;
}
.form_checkbox_label .form_checkbox_input:checked + .form_checkbox_text::after {
  content: "";
  display: block;
  position: absolute;
  top: 4px;
  left: 4px;
  width: 16px;
  height: 16px;
  background: url("../images/check_icon.svg") center center no-repeat;
  background-size: contain;
}

.form_error {
  display: none;
  font-size: 14px;
  margin: 8px 0 0;
  color: #76001F;
}

.form_complete_icon {
  display: block;
  width: 80px;
  margin: 0 auto 24px;
}
@media only screen and (max-width: 640px) {
  .form_complete_icon {
    width: 60px;
  }
}

.form_login_wrap {
  max-width: 552px;
  width: 100%;
  margin: 0 auto;
}

.form_login_logo {
  display: block;
  width: 222px;
  margin: 0 0 32px;
}

.form_login_block {
  width: 100%;
  border: 1px #E5E5E5 solid;
  padding: 48px 16px 36px;
}
.form_login_block .form_login_inner {
  max-width: 360px;
  width: 100%;
  margin: 0 auto;
}

/*=================
     
 	 page.scss

=======================*/
.page_wrap {
  padding: 80px 16px 120px;
}
@media only screen and (max-width: 960px) {
  .page_wrap {
    padding: 60px 16px 80px;
  }
}
.page_wrap .page_inner {
  max-width: 744px;
  width: 100%;
  margin: 0 auto;
}
.page_wrap .page_inner.large {
  max-width: 936px;
}

.page_info_box {
  background: #F9F9F9;
  padding: 24px;
}
@media only screen and (max-width: 640px) {
  .page_info_box {
    padding: 16px;
  }
}

.page_mem_wrap {
  padding: 0 0 146px;
}
@media only screen and (max-width: 960px) {
  .page_mem_wrap {
    padding: 0 0 80px;
  }
}

.page_mem_list {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  margin: 0 0 -24px;
}
@media only screen and (max-width: 960px) {
  .page_mem_list {
    margin: 0 0 -12px;
  }
}
@media only screen and (max-width: 768px) {
  .page_mem_list {
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}
.page_mem_list .page_mem_item {
  width: calc( ( 100% - 48px ) / 3 );
  margin: 0 24px 24px 0;
}
@media only screen and (max-width: 960px) {
  .page_mem_list .page_mem_item {
    width: calc( ( 100% - 24px ) / 3 );
    margin: 0 12px 12px 0;
  }
}
@media only screen and (max-width: 768px) {
  .page_mem_list .page_mem_item {
    width: calc( 50% - 6px );
    margin: 0 0 12px;
  }
}
@media only screen and (max-width: 640px) {
  .page_mem_list .page_mem_item {
    width: 100%;
  }
}
.page_mem_list .page_mem_item:nth-of-type(3n) {
  margin: 0 0 24px;
}
@media only screen and (max-width: 960px) {
  .page_mem_list .page_mem_item:nth-of-type(3n) {
    margin: 0 0 12px;
  }
}
.page_mem_list .page_mem_link {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  color: #212121;
  font-weight: bold;
  background: #F9F9F9;
  padding: 32px 0;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.page_mem_list .page_mem_link:after {
  content: "";
  background: url("../images/icon01.svg") center center no-repeat;
  background-size: contain;
  width: 8px;
  height: 8px;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.page_news_list .page_news_item {
  margin: 0 0 40px;
}
.page_news_list .page_news_item:last-of-type {
  margin: 0;
}

.page_news_block {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  margin: 0 0 12px;
}
.page_news_block .page_news_pic {
  display: block;
  width: 168px;
  min-width: 168px;
  padding: 14px 0;
  background: #F9F9F9;
  margin: 0 24px 0 0;
}
@media only screen and (max-width: 640px) {
  .page_news_block .page_news_pic {
    width: 80px;
    min-width: 80px;
    padding: 7px 0;
    margin: 0 12px 0 0;
  }
}
.page_news_block .page_news_pic img {
  margin: 0 auto;
  display: block;
  width: 96px;
  height: 139px;
  object-fit: cover;
}
@media only screen and (max-width: 640px) {
  .page_news_block .page_news_pic img {
    width: 46px;
    height: 67px;
  }
}
.page_news_block .page_news_main {
  width: 100%;
}
.page_news_block .page_news_title {
  text-decoration: underline;
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin: 0 0 16px;
}
@media only screen and (max-width: 640px) {
  .page_news_block .page_news_title {
    font-size: 16px;
    margin: 0 0 12px;
  }
}
.page_news_block .page_news_title a {
  color: #333;
}

.page_anchor_list .page_anchor_item {
  margin: 0 0 12px;
}
.page_anchor_list .page_anchor_item:last-of-type {
  margin: 0;
}
.page_anchor_list .page_anchor_link {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  text-decoration: none;
  font-weight: bold;
}
.page_anchor_list .page_anchor_link img {
  display: block;
  width: 16px;
  min-width: 16px;
  margin: 4px 8px 0 0;
}

.page_table {
  width: 100%;
  border-top: 1px #E5E5E5 solid;
  border-bottom: 1px #E5E5E5 solid;
}
@media only screen and (max-width: 768px) {
  .page_table.special .page_table_title {
    display: block;
    padding: 16px 12px 4px;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .page_table.special .page_table_text {
    display: block;
    width: 100%;
    padding: 4px 12px 16px;
  }
}
.page_table tr {
  border-bottom: 1px #E5E5E5 solid;
}
.page_table tr:last-of-type {
  border-bottom: none;
}
.page_table .page_table_title {
  padding: 16px;
  width: 266px;
  text-align: left;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page_table .page_table_title {
    padding: 16px 12px;
    width: 100px;
  }
}
.page_table .page_table_text {
  padding: 16px 16px 16px 8px;
}
@media only screen and (max-width: 768px) {
  .page_table .page_table_text {
    padding: 16px 12px 16px 4px;
  }
}

.page_tel_text {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  margin: 0 0 12px;
}
.page_tel_text img {
  display: block;
  width: 16px;
  min-width: 16px;
  margin: 0 8px 0 0;
}

.page_time_list .page_time_item {
  padding: 16px 24px;
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .page_time_list .page_time_item {
    padding: 16px;
  }
}
@media only screen and (max-width: 350px) {
  .page_time_list .page_time_item {
    display: block;
  }
}
.page_time_list .page_time_item:nth-of-type(odd) {
  background: #F9F9F9;
}
.page_time_list .page_time_item .status {
  width: 64px;
  min-width: 64px;
  text-align: center;
  margin: 0 24px 0 0;
}
@media only screen and (max-width: 640px) {
  .page_time_list .page_time_item .status {
    margin: 0 12px 0 0;
  }
}
@media only screen and (max-width: 350px) {
  .page_time_list .page_time_item .status {
    margin: 0 0 8px;
    width: inherit;
    min-width: inherit;
    text-align: left;
  }
}
.page_time_list .page_time_item .date {
  margin: 0 24px 0 0;
}
@media only screen and (max-width: 640px) {
  .page_time_list .page_time_item .date {
    margin: 0 12px 0 0;
  }
}
@media only screen and (max-width: 350px) {
  .page_time_list .page_time_item .date {
    margin: 0 0 8px;
  }
}

.page_book_list .page_book_item {
  margin: 0 0 40px;
}
.page_book_list .page_book_item:last-of-type {
  margin: 0;
}
.page_book_list .page_book_link {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: start;
  -ms-flex-align: start;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  text-decoration: none;
  -moz-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.page_book_list .page_book_link:hover .page_book_title {
  color: #000;
}
.page_book_list .page_book_link:hover .page_book_text {
  color: #000;
}
.page_book_list .page_book_pic {
  display: block;
  width: 168px;
  min-width: 168px;
  padding: 14px 0;
  background: #F9F9F9;
  margin: 0 24px 0 0;
}
@media only screen and (max-width: 640px) {
  .page_book_list .page_book_pic {
    width: 80px;
    min-width: 80px;
    padding: 7px 0;
    margin: 0 12px 0 0;
  }
}
.page_book_list .page_book_pic img {
  margin: 0 auto;
  display: block;
  width: 96px;
  height: 139px;
  object-fit: cover;
}
@media only screen and (max-width: 640px) {
  .page_book_list .page_book_pic img {
    width: 46px;
    height: 67px;
  }
}
.page_book_list .page_book_info {
  width: 100%;
}
.page_book_list .page_book_title {
  font-size: 20px;
  text-decoration: underline;
  color: #333;
  margin: 0 0 16px;
}
@media only screen and (max-width: 640px) {
  .page_book_list .page_book_title {
    font-size: 16px;
    margin: 0 0 12px;
  }
}
.page_book_list .page_book_text {
  color: #4C4C4C;
}

.page_account_title_block {
  -js-display: flex;
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  margin: 0 0 24px;
}

.page_account_btn {
  display: block;
  width: 104px;
  min-width: 104px;
  line-height: 44px;
  text-align: center;
  background: #fff;
  border: 1px #E5E5E5 solid;
  color: #4C4C4C;
  text-decoration: none;
  margin: 0 0 0 12px;
  -moz-border-radius: 8px;
  -webkit-border-radius: 8px;
  border-radius: 8px;
}

/* ======================= BASE ====== */
* {
  word-break: break-word;
  box-sizing: border-box;
}

html, body {
  margin: 0;
  height: 100%;
  font-size: 16px;
  line-height: 1.5;
  color: #4C4C4C;
}

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

.fm {
  font-family: "游明朝", YuMincho,"Times New Roman", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "メイリオ", Meiryo, serif;
}

.fg, html, body {
  font-family: "Helvetica Neue" , Helvetica , 'Noto Sans JP', 'Noto Sans Japanese', "游ゴシック" , "Yu Gothic" , "游ゴシック体" , "YuGothic" , "ヒラギノ角ゴ Pro W3" , "Hiragino Kaku Gothic Pro" , "Meiryo UI" , "メイリオ" , Meiryo , "ＭＳ Ｐゴシック" , "MS PGothic" , sans-serif;
}

button {
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  -webkit-appearance: none;
}

a {
  cursor: pointer;
}

.common_inner {
  position: relative;
  max-width: 1128px;
  width: 100%;
  margin: 0 auto;
}
.common_inner.h100 {
  height: 100%;
}

.common_pc {
  display: block;
}
.common_pc.height_100 {
  height: 100%;
}
@media only screen and (max-width: 960px) {
  .common_pc {
    display: none;
  }
}

.common_sp {
  display: none;
}
@media only screen and (max-width: 960px) {
  .common_sp {
    display: block;
  }
}

.common_pc_768 {
  display: block;
}
@media only screen and (max-width: 768px) {
  .common_pc_768 {
    display: none;
  }
}

.common_sp_768 {
  display: none;
}
@media only screen and (max-width: 768px) {
  .common_sp_768 {
    display: block;
  }
}

.common_pc_640 {
  display: block;
}
@media only screen and (max-width: 640px) {
  .common_pc_640 {
    display: none;
  }
}

.common_sp_640 {
  display: none;
}
@media only screen and (max-width: 640px) {
  .common_sp_640 {
    display: block;
  }
}

/*# sourceMappingURL=style.css.map */
