@charset "UTF-8";
/* -------------------------------
	default
-------------------------------- */
html {
  font-size: 100%;
  /* 16px */
}
@media print, screen and (min-width: 1200px) {
  html {
    font-size: 112.5%;
    /* 18px */
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
  letter-spacing: 0.06em;
}

/* -------------------------------
	見出しタグ調整
-------------------------------- */
h1 {
  font-size: 1.74rem;
  /* 28px相当 */
}

h2 {
  font-size: 1.55rem;
  /* 25px相当 */
}

h3 {
  font-size: 1.38rem;
  /* 22px相当 */
}

h4 {
  font-size: 1.22rem;
  /* 20px相当 */
}

h5 {
  font-size: 1.09rem;
  /* 17px相当 */
}

h6 {
  font-size: 0.97rem;
  /* 16px相当 */
}

@media screen and (min-width: 768px) {
  h1 {
    font-size: 2.21rem;
    /* 35px相当 */
  }

  h2 {
    font-size: 1.97rem;
    /* 32px相当 */
  }

  h3 {
    font-size: 1.75rem;
    /* 28px相当 */
  }

  h4 {
    font-size: 1.56rem;
    /* 25px相当 */
  }

  h5 {
    font-size: 1.38rem;
    /* 22px相当 */
  }

  h6 {
    font-size: 1.23rem;
    /* 20px相当 */
  }
}
@media screen and (min-width: 992px) {
  h1 {
    font-size: 2.37rem;
    /* 38px相当 */
  }

  h2 {
    font-size: 2.11rem;
    /* 34px相当 */
  }

  h3 {
    font-size: 1.88rem;
    /* 30px相当 */
  }

  h4 {
    font-size: 1.67rem;
    /* 27px相当 */
  }

  h5 {
    font-size: 1.48rem;
    /* 24px相当 */
  }

  h6 {
    font-size: 1.32rem;
    /* 21px相当 */
  }
}
@media screen and (min-width: 1200px) {
  h1 {
    font-size: 2.25rem;
    /* 41px相当 */
  }

  h2 {
    font-size: 2rem;
    /* 36px相当 */
  }

  h3 {
    font-size: 1.78rem;
    /* 32px相当 */
  }

  h4 {
    font-size: 1.58rem;
    /* 28px相当 */
  }

  h5 {
    font-size: 1.4rem;
    /* 25px相当 */
  }

  h6 {
    font-size: 1.25rem;
    /* 23px相当 */
  }
}
h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 1.5rem;
}

p, ol, ul, dl, table {
  margin-bottom: 1rem;
}
p + h3, p + h4, p + h5, p + h6, ol + h3, ol + h4, ol + h5, ol + h6, ul + h3, ul + h4, ul + h5, ul + h6, dl + h3, dl + h4, dl + h5, dl + h6, table + h3, table + h4, table + h5, table + h6 {
  margin-top: 2rem;
}
p:last-child, ol:last-child, ul:last-child, dl:last-child, table:last-child {
  margin-bottom: 0;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

ul {
  padding-left: 1.5em;
}

ol {
  padding-left: 2em;
}

a {
  text-decoration: underline;
}
a:hover {
  text-decoration: none;
}

/* -------------------------------
	header
-------------------------------- */
/* 基本サイズ */
#header {
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}
#header .container-fluid {
  padding-left: min(calc(15px + 45 * (100vw - 320px) / 1280), 60px);
  padding-right: min(calc(15px + 45 * (100vw - 320px) / 1280), 60px);
}
@media print {
  #header {
    position: absolute;
  }
}
#header.page_header {
  background-color: #fff;
}

@media screen {
  #header {
    transition: background 0.3s ease;
  }

  .fixed-nav #header {
    background-color: #fff;
  }
}
/* ---  --- */
.row-head {
  display: flex;
  align-items: center;
  height: 50px;
}
@media print, screen and (min-width: 992px) {
  .row-head {
    height: 100px;
  }
}
.row-head .logo h1 {
  font-size: 1rem;
  line-height: normal;
  padding: 0;
  margin: 0;
}
.row-head .logo h1 img {
  height: 36px;
}
@media print, screen and (min-width: 992px) {
  .row-head .logo {
    flex: 0 0 15%;
  }
  .row-head .logo h1 img {
    height: auto;
  }
}
.row-head .head_contents {
  margin-left: auto;
  padding-right: 45px;
}
@media print, screen and (min-width: 992px) {
  .row-head .head_contents {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    flex: 0 0 85%;
    padding-right: 0;
  }
}

.head_search__btn {
  color: #fff;
  font-size: 13px;
  line-height: 3;
  letter-spacing: normal;
  text-align: center;
  width: 3em;
  height: 3em;
  border-radius: 50%;
  background-color: #3782bc;
  cursor: pointer;
}
@media print, screen and (min-width: 992px) {
  .head_search__btn {
    font-size: 16px;
  }
}

/* -------------------------------
	検索
-------------------------------- */
form.search {
  position: relative;
}
form.search .input-group {
  border: solid 1px #ccc;
  border-radius: 10em;
  overflow: hidden;
}
form.search .input-group .form-control {
  font-size: 1rem;
  line-height: 1.6;
  height: calc(1.6em + 0.93334em + 2px);
  border: none;
  padding: 0.46667em 2.6em 0.46667em 1em;
  border-radius: 10em 0 0 10em;
  background-color: #dcdcdc;
}
form.search .input-group .form-control:focus {
  border-color: #ccc;
  background-color: #fff;
  box-shadow: none;
}
form.search .input-group .form-control:not(:placeholder-shown) {
  border-color: #f7f7f7;
  background-color: #fff;
  box-shadow: none;
}
form.search .input-group .form-control:-moz-placeholder {
  color: #777;
  font-size: 0.875em;
}
form.search .input-group .form-control::-webkit-input-placeholder {
  color: #777;
  font-size: 0.875em;
}
form.search .input-group .form-control:-ms-input-placeholder {
  color: #777;
  font-size: 0.875em;
}
form.search .input-group .input-group-btn {
  position: absolute;
  top: 0;
  right: 0.5em;
  width: 2em;
  height: 100%;
  z-index: 10;
}
form.search .input-group .input-group-btn .btn {
  color: #777;
  font-size: 1rem;
  border-radius: 0 10em 10em 0;
  width: 100%;
  height: 100%;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* -------------------------------
	メインメニュー
-------------------------------- */
#gNavi {
  display: none;
}
@media print, screen and (min-width: 992px) {
  #gNavi {
    display: block;
  }
}

.list-gnav {
  font-size: min(calc(14px + 6 * (100vw - 992px) / 608), 18px);
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
}
.list-gnav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.list-gnav a {
  text-decoration: none;
}
.list-gnav > li {
  padding-right: min(calc(15px + 45 * (100vw - 992px) / 928), 60px);
}
.list-gnav > li > a {
  font-weight: 700;
  line-height: 2;
  display: block;
  position: relative;
}
.list-gnav > li > a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  background-color: #006bbf;
  transition: transform .3s ease, visibility .3s ease;
  visibility: hidden;
}
.list-gnav > li > a:hover:before, .list-gnav > li.active > a:before {
  transform: scaleX(1);
  visibility: visible;
}
.list-gnav > li.gnavi_link_1 > a {
  color: #fff;
  padding: 0.5em 2em;
  border-radius: 10em;
  border: solid 1px #3782bc;
  background-color: #3782bc;
  transition: color .3s ease, background .3s ease;
}
.list-gnav > li.gnavi_link_1 > a:before {
  display: none;
}
.list-gnav > li.gnavi_link_1 > a:after {
  content: "\f0da";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1em;
  margin-top: -.4em;
}
.list-gnav > li.gnavi_link_1 > a:hover {
  color: #3782bc;
  background-color: #fff;
}

/* サブメニュー */
.list-gnav > li > ul, .list-gnav > li > div {
  display: none;
}
.list-gnav > li.child > a {
  display: flex;
  align-items: center;
}
.list-gnav > li.child > a:after {
  content: "";
  width: 9px;
  height: 6px;
  display: block;
  margin-left: 0.5em;
  background: url("../images/common/arrow001.png") no-repeat;
}

.list-gnav > li.child {
  position: relative;
}
.list-gnav > li.child > div {
  position: absolute;
  top: 100%;
  left: 50%;
  padding-top: 10px;
  transform: translateX(-50%);
}
.list-gnav > li.child .list-gnav-child {
  font-weight: 600;
  font-size: 15px;
  letter-spacing: normal;
  list-style: none;
  padding: 30px;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(1, auto);
  gap: 10px;
  white-space: nowrap;
  background-color: #f3f4f6;
}
.list-gnav > li.child .list-gnav-child.col2 {
  grid-template-columns: repeat(2, 22em);
}
.list-gnav > li.child .list-gnav-child > li > a {
  color: #1a1a1a;
  padding: 0.5em 3em 0.5em 1em;
  border-radius: 0.25em;
  display: block;
  background-color: #fbfbfb;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.list-gnav > li.child .list-gnav-child > li > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0;
  height: 0;
  margin-top: -0.25em;
  border-style: solid;
  border-width: 0.25em 0px 0.25em 0.5em;
  border-color: transparent transparent transparent currentColor;
}
.list-gnav > li.child .list-gnav-child > li > a:hover, .list-gnav > li.child .list-gnav-child > li.active > a {
  color: #fff;
  background-color: #1a1a1a;
}

/* -------------------------------
	main
-------------------------------- */
.page-contents {
  overflow: hidden;
  position: relative;
  z-index: 10;
}
.page-contents.static {
  position: static;
}

/* -------------------------------
	main title
-------------------------------- */
.main_ttl {
  height: min(calc(150px + 150 * (100vw - 320px) / 1180), 300px);
  display: flex;
  align-items: center;
  margin-top: 50px;
  position: relative;
  z-index: 0;
}
@media print, screen and (min-width: 992px) {
  .main_ttl {
    margin-top: 100px;
  }
}
.main_ttl > .bg {
  background-color: #29353f;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: -1;
  pointer-events: none;
}
.main_ttl > .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.65;
}
.main_ttl h2 {
  color: #fff;
  font-size: min(calc(25px + 15 * (100vw - 320px) / 1280), 40px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  text-align: center;
  margin: 0;
}
.main_ttl h2 > small {
  font-size: min(calc(16px + 10 * (100vw - 320px) / 1280), 26px);
}

/* -------------------------------
	パンくず
-------------------------------- */
.breadcrumb_wrap {
  display: none;
  padding: 10px 0;
  background-color: #efefef;
}
@media print, screen and (min-width: 768px) {
  .breadcrumb_wrap {
    display: block;
  }
}
.breadcrumb_wrap .panlist {
  color: #777;
  font-weight: 500;
  font-size: 11px;
  line-height: 1.2;
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  overflow-y: hidden;
  overflow-x: auto;
}
.breadcrumb_wrap .panlist > li {
  display: flex;
  align-items: center;
}
.breadcrumb_wrap .panlist > li > a {
  color: #777;
  white-space: nowrap;
}
.breadcrumb_wrap .panlist > li.active > a {
  color: #aaa;
  text-decoration: none;
  pointer-events: none;
}
.breadcrumb_wrap .panlist > li + li:before {
  content: ">";
  letter-spacing: normal;
  display: block;
  padding: 0 0.5em;
}

/* -------------------------------
	pagetop
-------------------------------- */
#pagetop {
  position: fixed;
  right: 20px;
  bottom: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
  z-index: 10;
}
#pagetop.is-active {
  opacity: 1;
  visibility: visible;
}
@media (max-width: 767px) {
  #pagetop {
    right: 0;
    bottom: 0;
  }
  #pagetop img {
    width: 40px;
  }
}

/* -------------------------------
	スクロールバー
-------------------------------- */
div, .scrollbar {
  scrollbar-color: #111 #eeeeee;
  scrollbar-width: thin;
}
div::-webkit-scrollbar, .scrollbar::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
div::-webkit-scrollbar-track, .scrollbar::-webkit-scrollbar-track {
  background: #eeeeee;
}
div::-webkit-scrollbar-thumb, .scrollbar::-webkit-scrollbar-thumb {
  background: #111;
}

/* -------------------------------
	ページナビ
-------------------------------- */
.page_navi {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -5px;
}
.page_navi > .box {
  flex: 0 0 100%;
  padding: 0 5px;
  margin: 2px 0;
}
.page_navi > .box .btn {
  font-size: 0.88889rem;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 100%;
  padding-left: 1.5em;
}
@media print, screen and (min-width: 768px) {
  .page_navi {
    margin: 0 -5px;
  }
  .page_navi > .box {
    flex: 0 0 50%;
    padding: 0 5px;
    margin: 5px 0;
  }
}
@media print, screen and (min-width: 992px) {
  .page_navi.lg-2 > .box {
    flex: 0 0 50% !important;
  }
  .page_navi.lg-3 > .box {
    flex: 0 0 33.33334%;
  }
  .page_navi.xl-2 > .box {
    flex: 0 0 100% !important;
  }
}
@media print, screen and (min-width: 1200px) {
  .page_navi {
    margin: 0 -10px;
  }
  .page_navi > .box {
    flex: 0 0 25%;
    padding: 0 10px;
    margin: 10px 0;
  }
  .page_navi.xl-2 > .box {
    flex: 0 0 50% !important;
  }
}
@media print, screen and (min-width: 1600px) {
  .page_navi > .box {
    flex: 0 0 25%;
  }
}

/* -------------------------------
	サイドメニュー
-------------------------------- */
#sidebar {
  position: fixed;
  top: 0;
  bottom: 0;
  right: calc(-320px - 55 * (100vw - 320px) / 448);
  width: calc(320px + 55 * (100vw - 320px) / 448);
  padding-top: 50px;
  text-align: left;
  background-color: #393939;
  transition: transform 0.5s ease;
  overflow-y: auto;
  z-index: 990;
}
@media print, screen and (min-width: 768px) {
  #sidebar {
    right: -375px;
    width: 375px;
  }
}
.side-open #sidebar {
  transform: translate3d(-100%, 0, 0);
}
@media print, screen and (min-width: 992px) {
  #sidebar {
    display: none !important;
  }
}
#sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#sidebar a {
  text-decoration: none;
}
#sidebar .list-sidenav {
  width: 100%;
  padding: 16px;
}
#sidebar .list-sidenav > li {
  text-align: left;
  margin-bottom: 10px;
}
#sidebar .list-sidenav > li > a {
  color: #1a1a1a;
  font-weight: 700;
  letter-spacing: normal;
  line-height: 1.5;
  display: block;
  padding: 0.75em 2em 0.75em 1em;
  background-color: #fff;
  position: relative;
}
#sidebar .list-sidenav > li > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0.75em;
  width: 0;
  height: 0;
  margin-top: -0.25em;
  border-style: solid;
  border-width: 0.25em 0px 0.25em 0.5em;
  border-color: transparent transparent transparent currentColor;
}
#sidebar .list-sidenav > li > a:before {
  content: "";
  position: absolute;
  right: 2em;
  top: 0.5em;
  bottom: 0.5em;
  width: 2px;
  background-color: #f0f0f2;
}
#sidebar .list-sidenav > li.active > a, #sidebar .list-sidenav > li > a:hover {
  color: #1a1a1a;
  background-color: #ccc;
}

/* 
 * 下層メニュー
 */
.list-sidenav-child {
  font-size: min(calc(11px + 3 * (100vw - 320px) / 448), 14px);
  line-height: normal;
  letter-spacing: normal;
  padding: 15px 10px 15px !important;
  background-color: #fff;
  display: none;
}
.list-sidenav-child > li {
  margin-bottom: 5px;
}
.list-sidenav-child > li:last-child {
  margin-bottom: 0;
}
.list-sidenav-child > li > a {
  color: #1a1a1a;
  font-weight: 500;
  padding: 0.75em 2em 0.75em 1em;
  border-radius: 0.25em;
  display: block;
  background-color: #fbfbfb;
  position: relative;
  transition: color 0.3s ease, background 0.3s ease;
}
.list-sidenav-child > li > a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0;
  height: 0;
  margin-top: -0.25em;
  border-style: solid;
  border-width: 0.25em 0px 0.25em 0.5em;
  border-color: transparent transparent transparent currentColor;
}
.list-sidenav-child > li > a:hover, .list-sidenav-child > li.active > a {
  color: #fff;
  background-color: #1a1a1a;
}

/*
 * 下層メニュー用ボタン
 */
#sidebar .list-sidenav > li.child > a {
  position: relative;
}
#sidebar .list-sidenav > li.child > a:after {
  display: none;
}
#sidebar .list-sidenav > li.child > a .mean-expand {
  position: absolute;
  right: 0;
  top: 50%;
  width: 32px;
  height: 32px;
  margin-top: -16px;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
#sidebar .list-sidenav > li.child > a .mean-expand:before, #sidebar .list-sidenav > li.child > a .mean-expand:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 14px;
  height: 2px;
  margin: auto;
  background: #1a1a1a;
  transition: transform 0.3s ease;
}
#sidebar .list-sidenav > li.child > a .mean-expand:after {
  transform: rotate(90deg);
}

#sidebar .list-sidenav > li.open > a .mean-expand:before {
  transform: rotate(360deg);
}
#sidebar .list-sidenav > li.open > a .mean-expand:after {
  transform: rotate(0deg);
}

/* -------------------------------
	半透明
-------------------------------- */
.overlay {
  content: '';
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 99;
}
.side-open .overlay {
  visibility: visible;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (min-width: 992px) {
  .overlay {
    display: none;
  }
}

/* -------------------------------
	三本線
-------------------------------- */
.menuWrapper {
  position: fixed;
  right: 0;
  top: 0;
  width: 50px;
  height: 50px;
  transform: translate3d(0, 0, 0);
  z-index: 9999;
}
@media print, screen and (min-width: 992px) {
  .menuWrapper {
    display: none;
  }
}

#menuButton {
  overflow: hidden;
  display: block;
  position: absolute;
  z-index: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
#menuButton span, #menuButton:before, #menuButton:after {
  display: block;
  position: absolute;
  top: -10px;
  bottom: 0;
  left: 0;
  right: 0;
  width: 30px;
  height: 3px;
  margin: auto;
  background: #000;
}
#menuButton span {
  overflow: hidden;
  z-index: 1;
  color: #000;
}
#menuButton:before {
  z-index: 2;
  transform: translate(0, -9px);
  content: "";
}
#menuButton:after {
  z-index: 2;
  transform: translate(0, 9px);
  content: "";
}
#menuButton small {
  position: absolute;
  left: 0;
  bottom: 3px;
  width: 100%;
  color: #000;
  font-size: 10px;
  line-height: 1.2;
  letter-spacing: normal;
  text-align: center;
  display: block;
}

/* アニメーション */
#menuButton span {
  opacity: 1;
  transition: opacity 150ms 50ms;
}
#menuButton::before, #menuButton::after {
  transition: transform 200ms;
}
.side-open #menuButton span {
  opacity: 0;
  transition: opacity 150ms;
}
.side-open #menuButton::before {
  transform: rotate(45deg);
}
.side-open #menuButton::after {
  transform: rotate(-45deg);
}

/* -------------------------------
	footer
-------------------------------- */
/* ---  --- */
.footer_contact {
  padding: min(calc(50px + 100 * (100vw - 320px) / 1280), 100px) 0;
  background: url("../images/common/footer_contact_bg.jpg") no-repeat center center/cover;
  page-break-inside: avoid;
}
.footer_contact__item {
  display: flex;
}
.footer_contact__item .inner {
  margin: auto;
}
.footer_contact .telbox {
  color: #fff;
  font-weight: 700;
  font-size: 32px;
  line-height: 1;
  letter-spacing: normal;
  text-align: center;
}
.footer_contact .telbox i {
  color: #006bbf;
  font-size: 1.125em;
  line-height: 1;
}
.footer_contact .telbox small {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5;
  display: inline-block;
}
.footer_contact .faxbox {
  color: #fff;
  font-weight: 400;
  font-size: 1rem;
  letter-spacing: normal;
  text-align: center;
  margin-top: .5em;
}
.footer_contact .faxbox i {
  font-size: 0.88889em;
  line-height: 1;
}
.footer_contact .faxbox small {
  font-weight: 400;
  font-size: 0.88889em;
  display: inline-block;
}
.footer_contact .btn {
  padding: 1.13888em 2em;
  display: block;
  max-width: 645px;
  margin: 0 auto;
}
@media print, screen and (min-width: 992px) {
  .footer_contact .telbox, .footer_contact .faxbox {
    text-align: left;
  }
}

    .xbox {
    color: #29353f;
    font-weight: 400;
    font-size: 1rem;
    letter-spacing: normal;
    margin-top: .5em;
    transition: opacity 0.3s ease;
    text-align: center;
  }
  @media print, screen and (min-width: 992px) {
  .xbox {
    text-align: left;
  }
}

  .xbox i {
  font-size: 0.88889em;
  line-height: 1;
  padding: 1em;
  background: #fff;
  border-radius: 50%;
  transition: opacity 0.3s ease;
}

  .xbox i:hover {
  opacity: 0.65;
}


/* ---  --- */
.footer_contents {
  color: #fff;
  padding: min(calc(50px + 50 * (100vw - 320px) / 1280), 100px) 0;
  background-color: #29353f;
  page-break-inside: avoid;
}
.footer_contents h2 {
  font-size: 1rem;
  line-height: 1;
  text-align: center;
  margin: 0;
}
.footer_contents h2 img {
  height: 60px;
}
.footer_contents .hr {
  height: 1px;
  margin: 30px 0;
  background-color: #6f7b86;
}
.footer_contents p {
  font-size: 0.77778rem;
  text-align: center;
}
@media print, screen and (min-width: 992px) {
  .footer_contents h2 img {
    height: auto;
  }
  .footer_contents h2, .footer_contents p {
    text-align: left;
  }
}

.f_navi {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .f_navi {
    font-weight: 700;
    font-size: 0.88889rem;
    display: block;
    margin-top: 30px;
    display: none;
  }
  .f_navi > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
  }
  .f_navi > ul > li {
    margin-right: min(calc(15px + 45 * (100vw - 768px) / 832), 60px);
  }
  .f_navi > ul > li:last-child {
    margin-right: 0;
  }
  .f_navi > ul > li > a {
    color: #fff;
    text-decoration: none;
    transition: opacity 0.3s ease;
  }
  .f_navi > ul > li > a:hover {
    opacity: 0.65;
  }
}
@media print, screen and (min-width: 992px) {
  .f_navi > ul {
    justify-content: flex-end;
  }
}

.f_navi2 {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .f_navi2 {
    font-size: 0.77778rem;
    display: block;
    margin-top: 30px;
  }
  .f_navi2 > ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: center;
  }
  .f_navi2 > ul > li {
    margin-right: min(calc(15px + 25 * (100vw - 768px) / 832), 40px);
  }
  .f_navi2 > ul > li:last-child {
    margin-right: 0;
  }
  .f_navi2 > ul > li > a {
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: opacity 0.3s ease;
  }
  .f_navi2 > ul > li > a:after {
    content: "";
    display: block;
    width: 1em;
    height: 1em;
    margin-left: 0.25em;
    background: url("../images/common/arrow02.png") no-repeat center center/contain;
  }
  .f_navi2 > ul > li > a:hover {
    opacity: 0.65;
  }
}
@media print, screen and (min-width: 992px) {
  .f_navi2 {
    margin-top: 0;
  }
  .f_navi2 > ul {
    justify-content: flex-end;
  }
}

.copyright {
  color: #6f7b86;
  font-size: 12px;
  text-align: center;
  margin-top: min(calc(50px + 50 * (100vw - 320px) / 1280), 100px);
}
@media print, screen and (min-width: 992px) {
  .copyright {
    text-align: right;
  }
}

/* -------------------------------
	table
-------------------------------- */
table {
  line-height: 1.5;
}

.table-design-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
}
.table-design-1 > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-design-1 > tbody > tr > th, .table-design-1 > tbody > tr > td {
  padding: 1em 0;
}
.table-design-1 > tbody > tr > th {
  padding-left: 1em;
}
.table-design-1 > tbody > tr > td {
  padding-left: 2em;
}

.table-design-2 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th, .table-design-2 > tbody > tr > td {
  padding: 0.75em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-design-2 > tbody > tr > th {
  background: #eee;
}
.table-design-2 > tbody > tr > td {
  background-color: #fff;
}

.table-design-3 {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-top: 1px solid #ccc;
  border-left: 1px solid #ccc;
}
.table-design-3 > thead > tr > th, .table-design-3 > thead > tr > td {
  text-align: center;
  padding: 0.75em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  background: #efefef;
}
.table-design-3 > tbody > tr > th, .table-design-3 > tbody > tr > td {
  padding: 0.75em;
  border-right: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
.table-design-3 > tbody > tr > th {
  background: #f5f5f5;
}
.table-design-3 > tbody > tr > td {
  background-color: #fff;
}

.table_name_1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  border-top: 1px solid #ccc;
}
.table_name_1 > thead > tr > th, .table_name_1 > thead > tr > td {
  color: #333;
  padding: 0.5em;
  background-color: #efefef;
}
.table_name_1 > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table_name_1 > tbody > tr > th, .table_name_1 > tbody > tr > td {
  padding: 1em 0;
}
.table_name_1 > tbody > tr > th {
  padding-left: 0.5em;
  padding-right: 2em;
}
.table_name_1 > tbody > tr > td {
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .table_name_1 > tbody > tr {
    width: 100%;
    display: block;
  }
  .table_name_1 > tbody > tr > th, .table_name_1 > tbody > tr > td {
    width: 100% !important;
    display: block;
    padding: 0.75em 0.5em;
  }
  .table_name_1 > tbody > tr > th {
    padding-bottom: 0;
  }
  .table_name_1 > tbody > tr > td {
    padding-top: .5em;
  }
}

.table-member-1 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
.table-member-1 > thead > tr > th, .table-member-1 > thead > tr > td {
  color: #333;
  padding: 0.5em;
  background-color: #efefef;
}
.table-member-1 > thead > tr > th {
  padding-left: 1.5em;
}
.table-member-1 > tbody > tr {
  border-bottom: 1px solid #ccc;
}
.table-member-1 > tbody > tr > th, .table-member-1 > tbody > tr > td {
  padding: 0.5em;
}
.table-member-1 > tbody > tr > th {
  width: 10em;
  padding-left: 1.5em;
}
.table-member-1 > tbody > tr > th.post {
  position: relative;
}
.table-member-1 > tbody > tr > th.post:before {
  content: "◎";
  position: absolute;
  left: 0.2em;
}
.table-member-1 > tbody > tr > td {
  font-size: 0.875em;
  padding-left: 0.5em;
}
@media only screen and (max-width: 767px) {
  .table-member-1 > thead {
    display: none;
  }
  .table-member-1 > tbody > tr {
    width: 100%;
    display: block;
  }
  .table-member-1 > tbody > tr > th, .table-member-1 > tbody > tr > td {
    width: 100% !important;
    display: block;
  }
  .table-member-1 > tbody > tr > th {
    padding-bottom: 0;
  }
  .table-member-1 > tbody > tr > td {
    padding-top: .5em;
    padding-left: 1.5em;
  }
}

.table-sm > thead > tr > th, .table-sm > thead > tr > td, .table-sm > tbody > tr > th, .table-sm > tbody > tr > td {
  padding: 0.5em;
}

@media only screen and (max-width: 767px) {
  .table-inline colgroup, .rs colgroup {
    display: none !important;
  }
  .table-inline > tbody > tr, .rs > tbody > tr {
    width: 100%;
    display: block;
  }
  .table-inline > tbody > tr > th, .table-inline > tbody > tr > td, .rs > tbody > tr > th, .rs > tbody > tr > td {
    width: 100% !important;
    display: block;
  }

  .table-design-1.table-inline tbody > tr, .table-design-1.rs tbody > tr {
    padding: 1em 0.5em;
  }
  .table-design-1.table-inline tbody > tr > th, .table-design-1.table-inline tbody > tr > td, .table-design-1.rs tbody > tr > th, .table-design-1.rs tbody > tr > td {
    padding: 0;
  }
  .table-design-1.table-inline tbody > tr > th + td, .table-design-1.table-inline tbody > tr > td + td, .table-design-1.rs tbody > tr > th + td, .table-design-1.rs tbody > tr > td + td {
    margin-top: .5em;
  }

  .table-design-2.table-inline tbody > tr > th, .table-design-2.table-inline tbody > tr > td, .table-design-2.rs tbody > tr > th, .table-design-2.rs tbody > tr > td {
    padding: 0.5em 0.75em;
  }
}
@keyframes scroll-hint-appear {
  0% {
    transform: translateX(40px);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  50%,
  100% {
    transform: translateX(-40px);
    opacity: 0;
  }
}
.scroll-hint.is-right-scrollable {
  background: linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-right-scrollable.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0)), linear-gradient(270deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint.is-left-scrollable {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.15) 0, rgba(0, 0, 0, 0) 16px, rgba(0, 0, 0, 0));
}

.scroll-hint-icon {
  position: absolute;
  top: calc(50% - 25px);
  left: calc(50% - 60px);
  box-sizing: border-box;
  width: 120px;
  height: 80px;
  border-radius: 5px;
  transition: opacity .3s;
  opacity: 0;
  background: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 20px 10px 10px 10px;
}

.scroll-hint-icon-wrap {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  pointer-events: none;
}

.scroll-hint-text {
  font-size: 10px;
  color: #FFF;
  margin-top: 5px;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon {
  opacity: .8;
}

.scroll-hint-icon:before {
  display: inline-block;
  width: 40px;
  height: 40px;
  color: #FFF;
  vertical-align: middle;
  text-align: center;
  content: "";
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDM8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIiBmaWxsPSIjZmZmIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon:after {
  content: "";
  width: 34px;
  height: 14px;
  display: block;
  position: absolute;
  top: 10px;
  left: 50%;
  margin-left: -20px;
  background-repeat: no-repeat;
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDE8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIiBmaWxsPSIjZmZmIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIgZmlsbD0iI2ZmZiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIgZmlsbD0iI2ZmZiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiIGZpbGw9IiNmZmYiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiIGZpbGw9IiNmZmYiLz48L2c+PC9nPjwvc3ZnPg==);
  opacity: 0;
  transition-delay: 2.4s;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:after {
  opacity: 1;
}

.scroll-hint-icon-wrap.is-active .scroll-hint-icon:before {
  animation: scroll-hint-appear 1.2s linear;
  animation-iteration-count: 2;
}

.scroll-hint-icon-white {
  background-color: #FFF;
  box-shadow: 0 4px 5px rgba(0, 0, 0, 0.4);
}

.scroll-hint-icon-white:before {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyNS43NyIgaGVpZ2h0PSIzMC41MiIgdmlld0JveD0iMCAwIDI1Ljc3IDMwLjUyIj48dGl0bGU+44Ki44K744OD44OIIDQ8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxwYXRoIGQ9Ik0yMS4zMywzMC41Mkg3Ljg1QTEuNTUsMS41NSwwLDAsMSw2LjMsMjlhMTIuNDYsMTIuNDYsMCwwLDAtLjYzLTQuNDIsMjUuMTYsMjUuMTYsMCwwLDAtNC4yNS01bC0uMDYtLjA2QTUsNSwwLDAsMSwwLDE1Ljg2YTMuNjQsMy42NCwwLDAsMSwxLjE3LTIuNjIsMy42MywzLjYzLDAsMCwxLDUuMTQuMDdWMy43N2EzLjc3LDMuNzcsMCwxLDEsNy41NCwwVjguMzNhMy4zNSwzLjM1LDAsMCwxLDEuMjYsMCwzLDMsMCwwLDEsMiwxLjIyLDMuNSwzLjUsMCwwLDEsMi0uMDYsMy4yMSwzLjIxLDAsMCwxLDIsMS41NCwzLjc0LDMuNzQsMCwwLDEsMywuNDdBNC4yMSw0LjIxLDAsMCwxLDI1Ljc0LDE1YzAsLjExLDAsLjI3LDAsLjQ2YTE5LjI2LDE5LjI2LDAsMCwxLS44NCw3Yy0uMTQuMzgtLjM2LjgxLS41NiwxLjIybC0uMTEuMjJjMCwuMDctLjA5LjE0LS4xNC4yMWE3LjEzLDcuMTMsMCwwLDAtMS4xNywyLjE3Yy0uMDYuNTYtLjA2LDIuMTUtLjA1LDIuNzFBMS41NSwxLjU1LDAsMCwxLDIxLjMzLDMwLjUyWk04LjYxLDI4LjIxaDEyYzAtLjcxLDAtMS43MS4wNy0yLjIzYTguNzQsOC43NCwwLDAsMSwxLjU5LTMuMjVsLjA2LS4xMmExMCwxMCwwLDAsMCwuNDYtMSwxNi44LDE2LjgsMCwwLDAsLjctNi4xMmMwLS4yMywwLS40MSwwLS41NGgwYTIsMiwwLDAsMC0uNjQtMS41MiwxLjMzLDEuMzMsMCwwLDAtMS41NS4wOCwxLjEzLDEuMTMsMCwwLDEtMS4xOC4yOCwxLjE1LDEuMTUsMCwwLDEtLjc4LS45NCwxLjI2LDEuMjYsMCwwLDAtLjc1LTEuMTEsMSwxLDAsMCwwLTEuMTEuMjhsLS4xLjFhMS4xNSwxLjE1LDAsMCwxLTEuMTkuMjksMS4xNiwxLjE2LDAsMCwxLS43OC0uOTVjLS4wOS0uNjgtLjIxLS43Ny0uNy0uODdhLjgyLjgyLDAsMCwwLTEsLjQ4LDEuMTYsMS4xNiwwLDAsMS0yLjE2LS41OFYzLjc3YTEuNDYsMS40NiwwLDEsMC0yLjkyLDB2Ny44NWwwLDQuMzNhMS4xNywxLjE3LDAsMCwxLS44MywxLjExLDEuMTUsMS4xNSwwLDAsMS0xLjItLjM1bC0xLS45MWMtLjQ3LS40Mi0uNzMtLjY2LS44NC0uNzdhMS4zNSwxLjM1LDAsMCwwLTItLjEyTDIuNywxNWExLjMyLDEuMzIsMCwwLDAtLjM5LDFBMi41NywyLjU3LDAsMCwwLDMsMTcuODVsMCwwYTI3LjI0LDI3LjI0LDAsMCwxLDQuNyw1LjYyQTEyLjYzLDEyLjYzLDAsMCwxLDguNjEsMjguMjFaTTIzLjIsMjMuMzVaTTYuNTEsMTYuNTlaIi8+PC9nPjwvZz48L3N2Zz4=);
}

.scroll-hint-icon-white:after {
  background-image: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIzMy4yOSIgaGVpZ2h0PSIxMi4wMiIgdmlld0JveD0iMCAwIDMzLjI5IDEyLjAyIj48dGl0bGU+44Ki44K744OD44OIIDI8L3RpdGxlPjxnIGlkPSLjg6zjgqTjg6Tjg7xfMiIgZGF0YS1uYW1lPSLjg6zjgqTjg6Tjg7wgMiI+PGcgaWQ9IuODrOOCpOODpOODvF8xLTIiIGRhdGEtbmFtZT0i44Os44Kk44Ok44O8IDEiPjxsaW5lIHgxPSIxLjg1IiB5MT0iNi4wMSIgeDI9IjEwLjQiIHkyPSI2LjAxIi8+PHBhdGggZD0iTTEwLjQsNy4xN0gxLjg1YTEuMTYsMS4xNiwwLDEsMSwwLTIuMzFIMTAuNGExLjE2LDEuMTYsMCwxLDEsMCwyLjMxWiIvPjxwYXRoIGQ9Ik03LjQsMTJhMS4xNSwxLjE1LDAsMCwxLS43Mi0uMjVsLTYuMjUtNUExLjIsMS4yLDAsMCwxLDAsNS44NywxLjE0LDEuMTQsMCwwLDEsLjQ2LDVMNi43LjIzQTEuMTYsMS4xNiwwLDAsMSw4LjEsMi4wOEwzLDUuOTEsOC4xMiwxMEExLjE2LDEuMTYsMCwwLDEsNy40LDEyWiIvPjxsaW5lIHgxPSIzMS40NSIgeTE9IjYuMDEiIHgyPSIyMi44OSIgeTI9IjYuMDEiLz48cGF0aCBkPSJNMzEuNDUsNy4xN0gyMi44OWExLjE2LDEuMTYsMCwxLDEsMC0yLjMxaDguNTZhMS4xNiwxLjE2LDAsMCwxLDAsMi4zMVoiLz48cGF0aCBkPSJNMjUuOSwxMmExLjE4LDEuMTgsMCwwLDEtLjkxLS40M0ExLjE3LDEuMTcsMCwwLDEsMjUuMTcsMTBsNS4wOS00LjA1TDI1LjIsMi4wOEExLjE2LDEuMTYsMCwwLDEsMjYuNTkuMjNMMzIuODQsNWExLjE2LDEuMTYsMCwwLDEsLjQ1LjkxLDEuMTQsMS4xNCwwLDAsMS0uNDMuOTJsLTYuMjQsNUExLjE3LDEuMTcsMCwwLDEsMjUuOSwxMloiLz48L2c+PC9nPjwvc3ZnPg==);
}

.scroll-hint-icon-white .scroll-hint-text {
  color: #000;
}

/* -------------------------------
	list
-------------------------------- */
.list-num-1 {
  line-height: 1.75;
  list-style: none;
  padding-left: 0;
  counter-reset: number;
}
.list-num-1 > li {
  padding-left: 2.5em;
  margin-bottom: 0.25em;
  position: relative;
}
.list-num-1 > li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  text-align: center;
  counter-increment: number;
  content: "(" counter(number) ")";
}
.list-num-1 > li:last-child {
  margin-bottom: 0;
}

.list-num-2 {
  line-height: 1.75;
  list-style: none;
  padding-left: 0;
  counter-reset: number;
}
.list-num-2 > li {
  padding-left: 2.25em;
  margin-bottom: 0.25em;
  position: relative;
}
.list-num-2 > li:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 2em;
  text-align: right;
  counter-increment: number;
  content: counter(number) " )";
}
.list-num-2 > li:last-child {
  margin-bottom: 0;
}
.list-num-2.upper-alpha > li:before {
  content: counter(number,upper-alpha) " )";
}
.list-num-2 > li > ol, .list-num-2 > li > ul {
  font-size: 0.88889rem;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
}
.list-num-2 > li > ol > li, .list-num-2 > li > ul > li {
  margin-bottom: 0.5em;
}
.list-num-2 > li > ol > li:last-child, .list-num-2 > li > ul > li:last-child {
  margin-bottom: 0;
}

@counter-style circled {
  system: cyclic;
  symbols: '①' '②' '③' '④' '⑤' '⑥' '⑦' '⑧' '⑨' '⑩' '⑪' '⑫' '⑬' '⑭' '⑮' '⑯' '⑰' '⑱' '⑲' '⑳';
  suffix: " ";
}
.list-circled {
  list-style: circled;
}

.list-dot-1 {
  line-height: 1.75;
  list-style: none;
  padding-left: 0;
}
.list-dot-1 > li {
  padding-left: 1.25em;
  margin-bottom: 0.5em;
  position: relative;
}
.list-dot-1 > li:before {
  content: "●";
  position: absolute;
  left: 0;
  transform: scale(0.4);
  opacity: 0.9;
}
.list-dot-1 > li:last-child {
  margin-bottom: 0;
}

.list-link-1 {
  list-style: none;
  padding: 0;
  margin-left: -0.75em;
  margin-right: -0.75em;
  display: flex;
  flex-wrap: wrap;
}
.list-link-1 > li {
  padding: 0 0.75em;
  margin: 0.25em 0;
}
.list-link-1 > li > a, .list-link-1 > li > button {
  color: #2a2a2a;
  text-decoration: none;
  display: block;
  padding: 0.25em 1.5em;
  border-radius: 10em;
  border: none;
  background-color: #f3f3f3;
  transition: color 0.3s ease, background 0.3s ease;
  outline: none;
}
.list-link-1 > li > a > i, .list-link-1 > li > button > i {
  margin-right: .25em;
}
.list-link-1 > li > a:hover, .list-link-1 > li > button:hover {
  color: #fff;
  background-color: #2a2a2a;
}

.list-inlinebox {
  list-style: none;
  padding: 0;
  margin-left: -.75em;
  margin-right: -.75em;
  display: flex;
  flex-wrap: wrap;
}
.list-inlinebox > li {
  padding: 0 0.75em;
}

.list-line-1 {
  list-style: none;
  padding-left: 0;
}
.list-line-1 > li {
  padding-bottom: 0.5em;
  border-bottom: solid 1px #ccc;
}

/* -------------------------------
	dl
-------------------------------- */
.dl_member_list {
  display: grid;
  grid-template-columns: 8em 1fr;
  align-items: baseline;
  gap: 0.25em 1em;
}
@media print, screen and (min-width: 992px) {
  .dl_member_list {
    grid-template-columns: 11em 1fr;
  }
}
.dl_member_list > dt, .dl_member_list > dd {
  font-weight: 400;
  margin: 0;
}
.dl_member_list > dd {
  font-size: 0.75em;
}

.dl_grid_1 {
  line-height: 1.5;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1px;
}
.dl_grid_1 > dt, .dl_grid_1 > dd {
  margin: 0;
}
.dl_grid_1 > dt {
  font-weight: 700;
  white-space: nowrap;
  padding: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  background-color: #efefef;
}
.dl_grid_1 > dd {
  padding: 1em;
  background-color: #f3f3f3;
}

/* -------------------------------
	hr
-------------------------------- */
.hr_style_1 {
  height: 0;
  border-top: dashed 1px #ccc;
}

/* -------------------------------
	figure
-------------------------------- */
.link_figure {
  color: inherit;
  text-decoration: none;
}
.link_figure:hover {
  text-decoration: none;
}

figure {
  margin-bottom: 0;
  height: 100%;
  position: relative;
  z-index: 0;
}

/**/
.figure_event_1 {
  display: flex;
  flex-direction: column;
}
.figure_event_1 > .photo {
  aspect-ratio: 67 / 90;
  margin-bottom: 20px;
  position: relative;
  z-index: 0;
}
.figure_event_1 > .photo:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  box-shadow: inset 0px 0px min(calc(50px + 50 * (100vw - 320px) / 1280), 100px) 0px rgba(25, 25, 25, 0.7);
  background-color: rgba(0, 0, 0, 0);
  z-index: 10;
  mix-blend-mode: multiply;
  pointer-events: none;
}
.figure_event_1 figcaption {
  display: flex;
  flex-direction: column;
  flex: 1 1 0;
}
.figure_event_1 figcaption .cat {
  font-size: min(calc(12px + 2 * (100vw - 320px) / 1280), 14px);
  line-height: normal;
  letter-spacing: 0.1em;
  border-left: solid 3px #006bbf;
  padding-left: 7px;
  margin-bottom: 1em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.figure_event_1 figcaption .ttl {
  font-weight: 700;
  font-size: min(calc(16px + 2 * (100vw - 320px) / 1280), 18px);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 0.5em;
}
.figure_event_1 figcaption dl {
  font-size: min(calc(12px + 2 * (100vw - 320px) / 1280), 14px);
  letter-spacing: 0.1em;
  padding-top: 1em;
  margin-top: 1em;
  margin-bottom: 2.25em;
  border-top: solid 1px #dde3e9;
}
.figure_event_1 figcaption dl dt {
  font-weight: 400;
  font-size: min(calc(10px + 2 * (100vw - 320px) / 1280), 12px);
  line-height: 1.38462;
  display: inline-block;
  border: solid 1px #2a2a2a;
  padding: 0 0.25em;
}
.figure_event_1 figcaption dl dd {
  line-height: 1.5;
}
.figure_event_1 figcaption .more {
  color: #fff;
  font-weight: 700;
  font-size: min(calc(12px + 2 * (100vw - 320px) / 1280), 14px);
  line-height: 2;
  text-align: center;
  margin-top: auto;
  border: solid 1px #b6bfc8;
  background-color: #b6bfc8;
}

a > .figure_event_1 > .photo {
  overflow: hidden;
}
a > .figure_event_1 > .photo img {
  transition: transform 1s ease;
}
a > .figure_event_1 figcaption .more {
  color: #fff;
  border: solid 1px #006bbf;
  border-radius: 10em;
  background-color: #006bbf;
  position: relative;
  transition: color 0.5s ease, background 0.5s ease;
}
a > .figure_event_1 figcaption .more:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0;
  height: 0;
  margin-top: -4px;
  border-style: solid;
  border-width: 4px 0px 4px 6px;
  border-color: transparent transparent transparent currentColor;
}
a > .figure_event_1:hover > .photo {
  overflow: hidden;
}
a > .figure_event_1:hover > .photo img {
  transform: scale(1.15);
}
a > .figure_event_1:hover figcaption .more {
  color: #006bbf;
  background-color: #fff;
}

/**/
.figure_link_1 {
  box-shadow: 0px 6px 12px 0px rgba(42, 42, 42, 0.06);
  background-color: #fff;
}
.figure_link_1 > .photo {
  width: 100%;
  aspect-ratio: 17 / 7;
  overflow: hidden;
}
.figure_link_1 figcaption {
  line-height: 1.5;
  padding: 0.75em 1.5em;
}
.figure_link_1 figcaption p {
  font-weight: 900;
  padding-left: 1em;
  padding-right: 1em;
  position: relative;
}
.figure_link_1 figcaption p:before {
  content: "";
  position: absolute;
  top: 0.25em;
  left: 0;
  bottom: 0.25em;
  width: 3px;
  background-color: #3782bc;
}
.figure_link_1 figcaption p:after {
  display: none;
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 0;
  height: 0;
  margin-top: -0.25em;
  border-style: solid;
  border-width: 0.25em 0px 0.25em 0.5em;
  border-color: transparent transparent transparent currentColor;
}
a > .figure_link_1 {
  transition: box-shadow 0.3s ease;
}
a > .figure_link_1 figcaption p:after {
  display: block;
}
a > .figure_link_1:hover {
  box-shadow: 0px 6px 12px 0px rgba(42, 42, 42, 0.5);
}
a > .figure_link_1:hover figcaption p:after {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

/* -------------------------------
	画像関連
-------------------------------- */
/* フォントの縦幅に合わせる(svg) */
.img-font {
  width: auto;
  height: 1em;
}

/* 画像回り込み */
.aligncenter, .alignright, .alignleft {
  display: block;
  margin: 0 auto 1em;
  padding: 0 15%;
}

@media print, screen and (min-width: 768px) {
  .aligncenter, .alignright, .alignleft {
    padding: 0;
  }

  .alignright {
    max-width: 38%;
    margin-left: 30px;
    display: inline;
  }

  .alignleft {
    max-width: 38%;
    margin-right: 30px;
    display: inline;
  }

  .alignright {
    float: right;
  }

  .alignleft {
    float: left;
  }
}
@media print, screen and (min-width: 1200px) {
  /* 画像回り込み */
}
/* 画像を枠に収める */
.photo-ofi {
  height: 0;
  display: block;
  padding-top: 75%;
  overflow: hidden;
  position: relative;
}
.photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  object-fit: scale-down;
  position: absolute;
  left: 0;
  top: 0;
}
.photo-ofi a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.photo-ofi.cover img {
  object-fit: cover;
}

/* objectの位置 */
.object-lt {
  object-position: left top;
}

.object-lb {
  object-position: left bottom;
}

.object-rt {
  object-position: right top;
}

.object-rb {
  object-position: right bottom;
}

.object-cc {
  object-position: center center;
}

@media print, screen and (min-width: 576px) {
  .object-sm-lt {
    object-position: left top;
  }

  .object-sm-lb {
    object-position: left bottom;
  }

  .object-sm-rt {
    object-position: right top;
  }

  .object-sm-rb {
    object-position: right bottom;
  }

  .object-sm-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 768px) {
  .object-md-lt {
    object-position: left top;
  }

  .object-md-lb {
    object-position: left bottom;
  }

  .object-md-rt {
    object-position: right top;
  }

  .object-md-rb {
    object-position: right bottom;
  }

  .object-md-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 992px) {
  .object-lg-lt {
    object-position: left top;
  }

  .object-lg-lb {
    object-position: left bottom;
  }

  .object-lg-rt {
    object-position: right top;
  }

  .object-lg-rb {
    object-position: right bottom;
  }

  .object-lg-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1200px) {
  .object-xl-lt {
    object-position: left top;
  }

  .object-xl-lb {
    object-position: left bottom;
  }

  .object-xl-rt {
    object-position: right top;
  }

  .object-xl-rb {
    object-position: right bottom;
  }

  .object-xl-cc {
    object-position: center center;
  }
}
@media print, screen and (min-width: 1600px) {
  .object-xxl-lt {
    object-position: left top;
  }

  .object-xxl-lb {
    object-position: left bottom;
  }

  .object-xxl-rt {
    object-position: right top;
  }

  .object-xxl-rb {
    object-position: right bottom;
  }

  .object-xxl-cc {
    object-position: center center;
  }
}
/**/
.photo img, .bg img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------------------
	画像拡大
-------------------------------- */
a[data-rel]:after {
  content: "\f00e";
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 20;
  color: #222;
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 1rem;
  line-height: 2;
  text-align: center;
  width: 2em;
  border-radius: 50%;
  margin-top: -1em;
  margin-left: -1em;
  background-color: rgba(255, 255, 255, 0.8);
  opacity: 0;
  transition: opacity .3s ease;
}
a[data-rel]:hover:after {
  opacity: 1;
}

/* -------------------------------
	btn
-------------------------------- */
.btn-icon-l, .btn-icon-r {
  position: relative;
}
.btn-icon-l i, .btn-icon-r i {
  font-size: 0.875em;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  top: 50%;
  margin-top: -.5em;
}

.btn-icon-l {
  padding-left: 2em;
}
.btn-icon-l i {
  left: 1.2em;
}

.btn-icon-r {
  padding-right: 2em;
}
.btn-icon-r i {
  right: 1.2em;
}

.btn-1 {
  color: currentColor;
  text-align: left;
  padding: 0 2.5em 0.25em 0;
  border-bottom: solid 1px currentColor;
  position: relative;
}
.btn-1:after {
  content: "\F138";
  position: absolute;
  right: 0.5em;
  top: 50%;
  font-family: "bootstrap-icons";
  line-height: 1;
  margin-top: -.5em;
}
.btn-1:hover {
  color: currentColor;
}
.btn-1:hover:after {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}

.btn-2 {
  border-radius: 0.25em;
}

.btn-3 {
  font-weight: 400;
  font-size: 0.833334rem;
  text-align: left;
  border: solid 1px #2a2a2a;
  padding: 0.25em 2.5em 0.25em 1.5em;
  border-radius: 10em;
}
.btn-3:hover {
  color: #fff;
  background-color: #2a2a2a;
}

.btn-arrow-1 {
  position: relative;
}
.btn-arrow-1:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1em;
  width: 0;
  height: 0;
  margin-top: -0.277777em;
  border-style: solid;
  border-width: 0.277777em 0px 0.277777em 0.44444em;
  border-color: transparent transparent transparent currentColor;
}

.btn-w300 {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
  display: block;
}

.svg-btn {
  height: 1em;
  width: auto;
  max-width: inherit;
  cursor: pointer;
}

.btn-img {
  padding: 0;
  border: none;
  transition: all 0.3s ease;
}
.btn-img:hover {
  opacity: 0.65;
}

.btn-flex {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: center;
}

/* file icon */
.link-icon:after {
  content: "";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.875em;
  margin-left: 0.25em;
}
.link-icon [target="_blank"]:after {
  content: "\f35d";
  font-size: 0.875em;
}
.link-icon[href$=".pdf"]:after {
  content: "\f1c1";
  color: #ff0000;
}
.link-icon[href$=".xls"]:after, .link-icon[href$=".xlsx"]:after {
  content: "\f1c3";
}
.link-icon[href$=".doc"]:after, .link-icon[href$=".docx"]:after {
  content: "\f1c2";
}

/* --- keyframes --- */
@keyframes arrow-out-in {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  50% {
    transform: translateX(100%);
    opacity: 0;
  }
  51% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
/* -------------------------------
	box
-------------------------------- */
.box-flex-column {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.box-flex-column__inner {
  width: 100%;
  margin-top: auto;
  margin-bottom: auto;
}

.box-style-1 {
  border: solid 1px #1a1a1a;
  padding: min(calc(20px + 30 * (100vw - 320px) / 1280), 50px);
}

.box-style-2 {
  padding: min(calc(20px + 30 * (100vw - 320px) / 1280), 50px);
}

.box-member-1 > .ttl {
  font-weight: 500;
  margin-bottom: 0;
}
.box-member-1 > .column {
  margin-bottom: 0.5em;
}
.box-member-1 > .column:last-child {
  margin-bottom: 0;
}
@media print, screen and (min-width: 992px) {
  .box-member-1 {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0.5em 1em;
  }
  .box-member-1 > .ttl {
    white-space: nowrap;
    margin-bottom: 0;
  }
  .box-member-1 > .column {
    margin-bottom: 0;
  }
}

/* -------------------------------
	googlemap
-------------------------------- */
.googlemap {
  position: relative;
  padding-top: 66.666%;
  /*これが縦横比*/
  height: 0;
  background-color: #f8f8f8;
  overflow: hidden;
  z-index: 0;
}
.googlemap:before {
  color: #ccc;
  font-size: 20px;
  content: "google map";
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}
.googlemap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
}
@media print, screen and (min-width: 768px) {
  .googlemap {
    padding-top: 560px;
  }
}

/* -------------------------------
	電話番号
-------------------------------- */
.telphone {
  font-weight: 700;
  line-height: 1.2;
}
.telphone small {
  font-size: 0.8333em;
}
.telphone i {
  font-size: 0.8333em;
}
.telphone a {
  text-decoration: underline;
}
.telphone a:hover {
  text-decoration: none;
}

a.tel_link {
  color: inherit;
}

/* -------------------------------
	画像固定
-------------------------------- */
@media screen {
  .bg-fixed {
    background-attachment: fixed !important;
  }

  .bg-scroll {
    background-attachment: scroll !important;
  }
}
/* -------------------------------
	
-------------------------------- */
.page_foot_navi {
  display: grid;
  grid-template-columns: repeat(2, auto);
  gap: 20px;
  justify-content: center;
}
.page_foot_navi > .box .btn {
  font-size: min(calc(13px + 3 * (100vw - 320px) / 1280), 16px);
  padding: 0.75em 2em;
  border-radius: 10em;
  background-color: #DBDBDB;
}
.page_foot_navi > .box .btn:hover {
  color: #fff;
  background-color: #1a1a1a;
}

/* -------------------------------
	上部　カテゴリー
-------------------------------- */
.cat_navi .catbtn {
  color: #fff;
  line-height: 1.5;
  text-transform: uppercase;
  padding: 0.75em 1em;
  background-color: #1a1a1a;
  position: relative;
}
.cat_navi .catbtn:after {
  content: "\f0c9";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  line-height: 1;
  letter-spacing: normal;
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -.5em;
  transition: transform .3s ease;
}
.cat_navi .catbtn.on:after {
  content: "\f00d";
  transform: rotate(180deg);
}
.cat_navi .catnavi {
  display: none;
}
@media print, screen and (min-width: 768px) {
  .cat_navi .catbtn {
    display: none;
  }
  .cat_navi .catnavi {
    display: block;
  }
}

/* カテゴリー　一覧デザイン SP */
.cat_navi_list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .cat_navi_list > li {
    line-height: 1.5;
    border-bottom: solid 1px #2a2a2a;
  }
  .cat_navi_list > li > a {
    color: #999;
    text-decoration: none;
    padding: 0.75em 3em 0.75em 1em;
    display: block;
    position: relative;
  }
  .cat_navi_list > li > a:after {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875em;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -.5em;
  }
  .cat_navi_list > li > a:hover, .cat_navi_list > li.active > a {
    color: #2a2a2a;
  }
}

/* カテゴリー　一覧デザイン PC */
@media print, screen and (min-width: 768px) {
  .cat_navi_list {
    font-size: 0.9375rem;
    margin: 0 -5px;
    display: flex;
    flex-wrap: wrap;
  }
  .cat_navi_list > li {
    flex: 0 0 33.33334%;
    margin: 5px 0;
    padding: 0 5px;
  }
  .cat_navi_list > li > a {
    color: #2a2a2a;
    line-height: 1.5;
    text-decoration: none;
    text-align: left;
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0.5em 3em 0.5em 1em;
    border: solid 1px #2a2a2a;
    background-color: #fff;
    position: relative;
    z-index: 0;
    transition: color .3s ease, background .3s ease;
    position: relative;
  }
  .cat_navi_list > li > a:after {
    content: "\f105";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 0.875em;
    line-height: 1;
    position: absolute;
    right: 10px;
    top: 50%;
    margin-top: -.5em;
  }
  .cat_navi_list > li > a:hover {
    color: #2a2a2a;
    background-color: #efefef;
  }
  .cat_navi_list > li.active > a {
    color: #fff;
    background-color: #2a2a2a;
    pointer-events: none;
  }
  .cat_navi_list > li.active > a:after {
    display: none;
  }
}
@media print, screen and (min-width: 992px) {
  .cat_navi_list > li {
    flex: 0 0 20%;
  }
  .cat_navi__graphic .cat_navi_list > li {
    flex: 0 0 25%;
  }
}

/* -------------------------------
	ページング
-------------------------------- */
.paging {
  font-size: 13px;
  line-height: normal;
  letter-spacing: normal;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 -5px;
}
.paging span {
  display: block;
  flex: 0 0 2.6em;
  height: 2.6em;
  margin: 2px 3px;
  overflow: hidden;
}
.paging span.paging-text {
  cursor: pointer;
}
.paging span.current {
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: solid 1px #1a1a1a;
  background-color: #1a1a1a;
  cursor: auto;
}
.paging span.paging-text a {
  color: #2a2a2a;
  border: solid 1px #2a2a2a;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.3s ease, background 0.3s ease;
}
.paging span.paging-text a:hover {
  color: #2a2a2a;
  background-color: #efefef;
}

/* -------------------------------
	navi
-------------------------------- */
.page_top_navi {
  font-size: 0.833334rem;
}
.page_top_navi > ul {
  list-style: none;
  padding: 0;
  display: grid;
  grid-template-columns: auto;
  justify-content: flex-end;
  gap: 5px;
}
.page_top_navi > ul > li .btn {
  font-weight: 400;
  font-size: 0.833334rem;
  text-align: left;
  border: solid 1px #2a2a2a;
  padding: 0.25em 2.5em 0.25em 1.5em;
  border-radius: 10em;
  display: block;
}
.page_top_navi > ul > li .btn:hover {
  color: #fff;
  background-color: #2a2a2a;
}

/* -------------------------------
	adobe reader
-------------------------------- */
.adobe_reader {
  font-size: 0.77777rem;
}
.adobe_reader a {
  transition: opacity 0.3s ease;
}
.adobe_reader a:hover {
  opacity: 0.65;
}

/* -------------------------------
	ページ内アンカーメニュー
-------------------------------- */
.navi_anchor {
  font-size: 0.875rem;
  line-height: 1.5;
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
}
.navi_anchor > ul {
  list-style: none;
  padding-left: 0;
}
.navi_anchor > ul > li {
  border-bottom: dashed 1px #ccc;
}
.navi_anchor > ul > li:last-child {
  border: none;
}
.navi_anchor > ul > li > a {
  color: #333;
  text-decoration: none;
  display: block;
  width: 100%;
  padding: 10px 2em 10px 10px;
  position: relative;
}
.navi_anchor > ul > li > a:before {
  content: "\f105";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 0.875em;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 0.5em;
  margin-top: -.5em;
}
.navi_anchor > ul > li > a:hover {
  color: #2a2a2a;
}
.navi_anchor > ul > li > a:hover:before {
  animation: arrow-out-in 0.4s ease-in-out forwards;
}
@media print, screen and (min-width: 992px) {
  .navi_anchor {
    padding: 5px 0;
  }
  .navi_anchor > ul {
    display: flex;
    justify-content: space-between;
    margin: 0 -10px;
  }
  .navi_anchor > ul > li {
    flex-grow: 1;
    border-bottom: none;
    padding: 0 10px;
    border-right: solid 1px #efefef;
  }
  .navi_anchor > ul > li > a {
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
  }
}

/* -------------------------------
	common
-------------------------------- */
/* --▼color-- */
.bg-cr-1 {
  color: #fff;
  background-color: #002c64;
}

.bg-cr-2 {
  background-color: #f3f3f3;
}

/* --▼text-- */
.text-kome {
  font-size: 0.88888rem;
  padding-left: 1.5em;
  position: relative;
}
.text-kome:before {
  content: "※";
  position: absolute;
  left: 0;
}

.text-name {
  text-align: right;
  margin-top: 2rem;
}
.text-name img {
  width: auto;
  max-width: inherit;
  height: 1.35em;
  vertical-align: text-top;
}

/* --▼font -- */
.fs-xxs {
  font-size: 0.75em !important;
}

.fs-sm {
  font-size: 0.88889em !important;
}

.fs-md {
  font-size: 1.125em !important;
}

.fs-lg {
  font-size: 1.250em !important;
}

.f-feature {
  font-feature-settings: "palt";
  -webkit-font-feature-settings: "palt";
}

.fw4 {
  font-weight: 400 !important;
}

.fw5 {
  font-weight: 500 !important;
}

.fw7 {
  font-weight: 700 !important;
}

.fw6 {
  font-weight: 600 !important;
}

.fwn {
  font-weight: 400 !important;
}

.fwb {
  font-weight: 700 !important;
}

.fs-12-18 {
  font-size: min(calc(12px + 6 * (100vw - 320px) / 1280), 18px);
}

.fs-16-20 {
  font-size: min(calc(16px + 4 * (100vw - 320px) / 1280), 20px);
}

/* --▼margin-- */
/* space */
.mt-50 {
  margin-top: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
}

.mb-50 {
  margin-bottom: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
}

.mtb-50 {
  margin-top: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
  margin-bottom: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
}

.mt-60 {
  margin-top: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
}

.mb-60 {
  margin-bottom: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
}

.mtb-60 {
  margin-top: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
  margin-bottom: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
}

.mt-70 {
  margin-top: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
}

.mb-70 {
  margin-bottom: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
}

.mtb-70 {
  margin-top: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
  margin-bottom: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
}

.mt-80 {
  margin-top: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
}

.mb-80 {
  margin-bottom: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
}

.mtb-80 {
  margin-top: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
  margin-bottom: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
}

.mt-90 {
  margin-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.mb-90 {
  margin-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.mtb-90 {
  margin-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  margin-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.mt-100 {
  margin-top: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
}

.mb-100 {
  margin-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
}

.mtb-100 {
  margin-top: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
  margin-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
}

.mt-110 {
  margin-top: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
}

.mb-110 {
  margin-bottom: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
}

.mtb-110 {
  margin-top: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
  margin-bottom: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
}

.mt-120 {
  margin-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.mb-120 {
  margin-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.mtb-120 {
  margin-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  margin-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.pt-50 {
  padding-top: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
}

.pb-50 {
  padding-bottom: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
}

.ptb-50 {
  padding-top: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
  padding-bottom: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
}

.pt-60 {
  padding-top: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
}

.pb-60 {
  padding-bottom: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
}

.ptb-60 {
  padding-top: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
  padding-bottom: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
}

.pt-70 {
  padding-top: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
}

.pb-70 {
  padding-bottom: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
}

.ptb-70 {
  padding-top: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
  padding-bottom: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
}

.pt-80 {
  padding-top: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
}

.pb-80 {
  padding-bottom: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
}

.ptb-80 {
  padding-top: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
  padding-bottom: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
}

.pt-90 {
  padding-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.pb-90 {
  padding-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.ptb-90 {
  padding-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  padding-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
}

.pt-100 {
  padding-top: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
}

.pb-100 {
  padding-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
}

.ptb-100 {
  padding-top: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
  padding-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
}

.pt-110 {
  padding-top: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
}

.pb-110 {
  padding-bottom: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
}

.ptb-110 {
  padding-top: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
  padding-bottom: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
}

.pt-120 {
  padding-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.pb-120 {
  padding-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

.ptb-120 {
  padding-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  padding-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
}

@media print, screen and (min-width: 992px) {
  .mt-lg-50 {
    margin-top: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
  }

  .mb-lg-50 {
    margin-bottom: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
  }

  .mtb-lg-50 {
    margin-top: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
    margin-bottom: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
  }

  .mt-lg-60 {
    margin-top: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
  }

  .mb-lg-60 {
    margin-bottom: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
  }

  .mtb-lg-60 {
    margin-top: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
    margin-bottom: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
  }

  .mt-lg-70 {
    margin-top: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
  }

  .mb-lg-70 {
    margin-bottom: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
  }

  .mtb-lg-70 {
    margin-top: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
    margin-bottom: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
  }

  .mt-lg-80 {
    margin-top: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
  }

  .mb-lg-80 {
    margin-bottom: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
  }

  .mtb-lg-80 {
    margin-top: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
    margin-bottom: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
  }

  .mt-lg-90 {
    margin-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

  .mb-lg-90 {
    margin-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

  .mtb-lg-90 {
    margin-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
    margin-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

  .mt-lg-100 {
    margin-top: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
  }

  .mb-lg-100 {
    margin-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
  }

  .mtb-lg-100 {
    margin-top: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
    margin-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
  }

  .mt-lg-110 {
    margin-top: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
  }

  .mb-lg-110 {
    margin-bottom: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
  }

  .mtb-lg-110 {
    margin-top: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
    margin-bottom: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
  }

  .mt-lg-120 {
    margin-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }

  .mb-lg-120 {
    margin-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }

  .mtb-lg-120 {
    margin-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
    margin-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }
}
@media print, screen and (min-width: 992px) {
  .pt-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
  }

  .pb-lg-50 {
    padding-bottom: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
  }

  .ptb-lg-50 {
    padding-top: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
    padding-bottom: min(calc(28px + 22 * (100vw - 320px) / 1280), 50px);
  }

  .pt-lg-60 {
    padding-top: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
  }

  .pb-lg-60 {
    padding-bottom: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
  }

  .ptb-lg-60 {
    padding-top: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
    padding-bottom: min(calc(28px + 32 * (100vw - 320px) / 1280), 60px);
  }

  .pt-lg-70 {
    padding-top: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
  }

  .pb-lg-70 {
    padding-bottom: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
  }

  .ptb-lg-70 {
    padding-top: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
    padding-bottom: min(calc(28px + 42 * (100vw - 320px) / 1280), 70px);
  }

  .pt-lg-80 {
    padding-top: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
  }

  .pb-lg-80 {
    padding-bottom: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
  }

  .ptb-lg-80 {
    padding-top: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
    padding-bottom: min(calc(28px + 52 * (100vw - 320px) / 1280), 80px);
  }

  .pt-lg-90 {
    padding-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

  .pb-lg-90 {
    padding-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

  .ptb-lg-90 {
    padding-top: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
    padding-bottom: min(calc(28px + 62 * (100vw - 320px) / 1280), 90px);
  }

  .pt-lg-100 {
    padding-top: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
  }

  .pb-lg-100 {
    padding-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
  }

  .ptb-lg-100 {
    padding-top: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
    padding-bottom: min(calc(30px + 70 * (100vw - 320px) / 1280), 100px);
  }

  .pt-lg-110 {
    padding-top: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
  }

  .pb-lg-110 {
    padding-bottom: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
  }

  .ptb-lg-110 {
    padding-top: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
    padding-bottom: min(calc(33px + 77 * (100vw - 320px) / 1280), 110px);
  }

  .pt-lg-120 {
    padding-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }

  .pb-lg-120 {
    padding-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }

  .ptb-lg-120 {
    padding-top: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
    padding-bottom: min(calc(36px + 84 * (100vw - 320px) / 1280), 120px);
  }
}
/**/
.ml-full {
  margin-left: -15px;
}

.mr-full {
  margin-right: -15px;
}

@media print, screen and (min-width: 576px) {
  .ml-full, .ml-sm-full {
    margin-left: calc((510px - 100vw) / 2);
  }

  .mr-full, .mr-sm-full {
    margin-right: calc((510px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 768px) {
  .ml-full, .ml-sm-full, .ml-md-full {
    margin-left: calc((690px - 100vw) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full {
    margin-right: calc((690px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 992px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full {
    margin-left: calc((930px - 100vw) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full {
    margin-right: calc((930px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-full, .ml-sm-full, .ml-md-full, .ml-lg-full, .ml-xl-full {
    margin-left: calc((1110px - 100vw) / 2);
  }

  .mr-full, .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - 100vw) / 2);
  }
}
/**/
@media print, screen and (min-width: 992px) {
  .ml-lg-half {
    margin-left: calc((930px - 100vw) / 4);
  }

  .mr-lg-half {
    margin-right: calc((930px - 100vw) / 4);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-lg-half, .ml-xl-half {
    margin-left: calc((1110px - 100vw) / 4);
  }

  .mr-lg-half, .mr-xl-half {
    margin-right: calc((1110px - 100vw) / 4);
  }
}
/* 横幅いっぱいに広げるスタイル */
.ml-full {
  margin-left: -15px;
}

.mr-full {
  margin-right: -15px;
}

@media print, screen and (min-width: 576px) {
  .ml-sm-full {
    margin-left: calc((510px - 100vw) / 2);
  }

  .mr-sm-full {
    margin-right: calc((510px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 768px) {
  .ml-sm-full, .ml-md-full {
    margin-left: calc((690px - 100vw) / 2);
  }

  .mr-sm-full, .mr-md-full {
    margin-right: calc((690px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 992px) {
  .ml-sm-full, .ml-md-full, .ml-lg-full {
    margin-left: calc((930px - 100vw) / 2);
  }

  .mr-sm-full, .mr-md-full, .mr-lg-full {
    margin-right: calc((930px - 100vw) / 2);
  }
}
@media print, screen and (min-width: 1200px) {
  .ml-sm-full, .ml-md-full, .ml-lg-full, .ml-xl-full {
    margin-left: calc((1110px - 100vw) / 2);
  }

  .mr-sm-full, .mr-md-full, .mr-lg-full, .mr-xl-full {
    margin-right: calc((1110px - 100vw) / 2);
  }
}
/* -------------------------------
	ローディング
-------------------------------- */
#loading {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
  background-color: #002c64;
  z-index: 99999;
}
#loading .inner {
  padding: 30px;
  margin: auto;
}
#loading .inner .logo {
  width: 64%;
  max-width: 300px;
  margin: 0 auto;
  opacity: 0;
  animation: openingLogo 0.8s 0.4s forwards;
}
#loading .inner .txt {
  color: #fff;
  font-size: min(calc(16px + 8 * (100vw - 320px) / 1280), 24px);
  text-align: center;
  margin-top: 1.5em;
  opacity: 0;
  animation: openingTxt 0.8s 0.6s forwards;
}

.home_wrapper {
  opacity: 1;
}

@keyframes openingLogo {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes openingTxt {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
body.complete #loading {
  opacity: 0;
  visibility: hidden;
  transition: all .5s ease;
  pointer-events: none;
}
body.load_already #loading {
  opacity: 0;
  visibility: hidden;
  transition: all .2s ease;
  pointer-events: none;
}

/* 印刷用 */
@page {
  margin: 10mm 4mm 10mm 4mm;
}
@media print {
  body {
    min-width: 1500px !important;
  }

  .container {
    min-width: 1200px !important;
  }

  .container-fluid-xl {
    min-width: 1500px !important;
  }

  .row {
    overflow: visible !important;
  }

  [class^="col"], [class*=" col"], [class^="col-"], [class*=" col-"] {
    page-break-inside: avoid;
  }

  #pagetop {
    opacity: 0;
    visibility: hidden;
  }

  .page-break {
    page-break-inside: avoid;
    page-break-after: avoid;
  }
}
/* firefox　ハック */
@-moz-document url-prefix() {
  @page {
    margin: auto;
  }
}

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