.page-top-nav {
  padding: 80px 0 50px;
}
.page-top-nav .body {
  width: calc(1080px + 2em);
}
.page-top-nav ul {
  display: flex;
  flex-wrap: wrap;
}
.page-top-nav ul li {
  width: calc(100% / 3);
  padding: 0 1em;
}
.page-top-nav a {
  display: block;
  font-weight: 700;
  color: #000;
  padding: 1em 0;
  background: url("../images/common/btn-2.png") right center no-repeat;
  border-bottom: 1px solid #d9d9d9;
  transition: .2s;
}
.page-top-nav ul li.current a,
.page-top-nav a:hover {
  color: var(--c-blue);
  background: url("../images/common/btn-1.png") right center no-repeat;
  border-bottom-color: var(--c-blue);
}
@media (max-width:768px) {
  .page-top-nav {
    padding: 20px 0;
  }
  .page-top-nav ul {
    display: block;
  }
  .page-top-nav ul li {
    width: 100%;
    padding: 0;
  }
  .page-top-nav a {
    background-size: auto 1.25em !important;
  }
}
@media (max-width:540px) {
  .page-top-nav {
    display: none;
  }
}

.page-footer-nav {
  padding: 60px 0;
  background: #fff;
  margin: 100px 0 50px;
}
.page-footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.page-footer-nav ul li {
  width: 30.56%;
}
.page-footer-nav ul li:nth-child(n+4) {
  margin-top: 4.16%;
}
.page-footer-nav a {
  position: relative;
  display: block;
  font-size: 2.5rem;
  font-weight: 700;
  overflow: hidden;
}
.page-footer-nav ul li img {
  width: 100%;
  transition: .2s;
}
.page-footer-nav ul li a:hover img {
  filter: brightness(120%);
}
.page-footer-nav ul li span {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  color: #fff;
  display: block;
  line-height: 1.33;
  padding: .4em;
  padding-right: 1.25em;
  padding-bottom: .75em;
  background: url("../images/common/btn-2.png") right .5em center no-repeat;
}
.page-footer-nav ul li a:hover span {
  background-image: url("../images/common/btn-1.png");
}
@media (max-width:1024px) {
  .page-footer-nav a {
    font-size: 2.2rem;
  }
}
@media (max-width:880px) {
  .page-footer-nav {
    margin-top: 40px;
  }
  .page-footer-nav a {
    font-size: 2rem;
  }
  .page-footer-nav ul {
    justify-content: center;
  }
  .page-footer-nav ul li {
    width: 49%;
    margin: 0 !important;
  }
  .page-footer-nav ul li:nth-child(2n+2) {
    margin-left: 2% !important;
  }
  .page-footer-nav ul li:nth-child(n+3) {
    margin-top: 2% !important;
  }
}
@media (max-width:768px) {
  .page-footer-nav {
    padding: 50px 0;
  }
}
@media (max-width:540px) {
  .page-footer-nav a {
    font-size: 1.5rem;
  }
  .page-footer-nav ul li a span {
    background-size: 1.2em auto;
  }
}

.list-1 {
  border-bottom: 1px solid #d9d9d9;
}
.list-1 .item {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 1em 0;
  border-top: 1px solid #d9d9d9;
}
.list-1 .item .time {
  width: 7em;
  font-weight: 700;
}
.list-1 .item .title {
  width: calc(100% - 7em - 1em);
  padding-right: 1em;
}
.list-1 .item:after {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid var(--c-blue);
  border-right: 2px solid var(--c-blue);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  right: .25em;
  margin-top: -5px;
  transition: .2s;
}
.list-1 .item:hover:after {
  right: 0;
}
.list-1 .item:hover {
  color: var(--c-blue);
}
@media (max-width:768px) {
  .list-1 .item .time {
    width: 100%;
  }
  .list-1 .item .title {
    width: 100%;
  }
}

.list-card .item {
  max-width: 330px;
  display: block;
  overflow: hidden;
  border-radius: 0 40px 0 40px;
}
.list-card .item .photo {
  position: relative;
  overflow: hidden;
  padding-top: 66.66%;
}
.list-card .item .photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s;
}
.list-card .item:hover .photo img {
  transform: scale(1.05);
}
.list-card .item .content {
  font-weight: 700;
  text-align: center;
  padding: 1em;
  overflow: hidden;
  background: #fff;
  border-radius: 0 0 0 40px;
}
.list-card .item .arrow {
  position: relative;
  display: block;
  width: 30px;
  height: 30px;
  background: var(--c-blue);
  border-radius: 50%;
  margin: .5em auto;
}
.list-card .item .arrow:before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -5px;
  margin-left: -7px;
}
@media (max-width:540px) {
  .list-card .item {
    border-radius: 0 30px 0 30px;
  }
  .list-card .item .content {
    border-radius: 0 0 0 30px;
  }
}

.title-1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.3;
  text-align: center;
  color: #000;
  margin-bottom: 1.25em;
}
.title-1 > span,
.title-1:before {
  content: attr(data-txt);
  display: block;
  font-size: 2.8em;
  font-family: 'Helvetica',sans-serif;
  font-weight: 700;
  line-height: 1;
  color: var(--c-blue);
  margin-bottom: .15em;
}
@media (max-width:768px) {
  .title-1 {
    font-size: 2rem;
  }
  .title-1 > span,
  .title-1:before {
    font-size: 2.5em;
  }
}

.title-2 {
  position: relative;
  width: fit-content;
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  color: #000;
  padding: 0 1em .25em;
  margin: 0 auto 1.25em;
}
.title-2:before {
  content: attr(data-txt);
  display: block;
  font-size: .5555em;
  line-height: 1;
  color: var(--c-blue);
}
.title-2:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  max-width: 90%;
  width: 300px;
  height: 1px;
  background: var(--c-blue);
  margin: 0 auto;
}
@media (max-width:768px) {
  .title-2 {
    font-size: 3rem;
  }
}
@media (max-width:540px) {
  .title-2 {
    font-size: 2.6rem;
  }
}

.title-3 {
  position: relative;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.33;
  color: #000;
  padding-left: 1.5em;
  margin-bottom: 1em;
}
.title-3:before {
  content: '';
  position: absolute;
  top: .65em;
  left: 0;
  display: block;
  width: 1em;
  height: 2px;
  background: var(--c-blue);
}
@media (max-width:768px) {
  .title-3 {
    font-size: 2.2rem;
  }
}
@media (max-width:540px) {
  .title-3 {
    font-size: 2rem;
  }
}

.btn-1,
.btn-2 {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 100%;
  width: 350px;
  height: 70px;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.33;
  cursor: pointer;
  color: #fff;
  background: var(--c-blue);
  border-radius: 70px;
}
.btn-1:after,
.btn-2:after {
  content: '';
  position: absolute;
  top: 50%;
  right: 1em;
  display: block;
  width: 25px;
  height: 25px;
  background: url(../images/common/btn-1.png) center center /contain no-repeat;
  transition: .2s;
  transform: translateY(-50%);
}
.btn-1:hover,
.btn-2:hover {
  filter: brightness(110%);
}
.btn-1:hover:after,
.btn-2:hover:after {
  right: .8em;
}
.btn-1.back {
  padding-left: 50px;
  padding-right: 1.5em;
}
.btn-1.back:after {
  left: 1em;
  right: auto;
  transform: scale(-1,1) translateY(-50%);
}
.btn-1.back:hover:after {
  left: .8em;
}
.btn-2 {
  color: var(--c-blue);
  background: #fff;
}
.btn-2:after {
  background: url(../images/common/btn-2.png) center center /contain no-repeat;
}
@media (max-width:768px) {
  .btn-1,
  .btn-2 {
    width: 280px;
    height: 50px;
  }
  .btn-2 {
    width: 100%;
  }
}

table.default + *,* + table.default { margin-top:1em }
table.default {
  width: 100%;
}
table.default tr > th,table.default tr > td {
  text-align: center;
  padding: .75em;
  background: #fff;
  border: 1px solid #d9d9d9;
}
table.default tbody tr:nth-child(2n+2) > * {
  background: #f7f7f7;
}
table.default tr > th { font-weight:bold; color:#fff; background:#000; }
@media (max-width:768px) {
  table.default.responsive,
  table.default.responsive tbody,
  table.default.responsive tr,
  table.default.responsive tr > * {
    width: 100%;
    display: block;
  }
  table.default.responsive tr > th {
    padding: .75em;
    border-top: 0;
  }
  table.default.responsive tr > td {
    padding: .75em;
    border-top: 0;
    padding-left: 0;
    padding-right: 0;
  }
}
table.default-2 {
  width: 100%;
}
table.default-2 tr > * {
  padding: 1em;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
}
table.default-2 tr th {
  font-weight: 700;
  text-align: left;
  color: var(--c-blue);
  padding: 1em 1.5em;
  border-top: 1px solid var(--c-blue);
  border-bottom: 1px solid var(--c-blue);
}
@media (max-width:768px) {
  table.default-2,
  table.default-2 tbody,
  table.default-2 tbody tr,
  table.default-2 tbody tr > * {
    width: 100%;
    display: block;
  }
  table.default-2 tr th {
    padding: 1em 0;
  }
  table.default-2 tr td {
    padding: 1em 0;
    border-top: 0;
    border-bottom: 0;
  }
}

ul.pager-archive {
  text-align: center;
}
ul.pager-archive li {
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px;
}
ul.pager-archive li a {
  display: block;
  text-decoration: none !important;
  color: inherit;
}
ul.pager-archive li.num a {
  width: 2em;
  line-height: 2;
  color: var(--c-blue);
  background: #FFF;
}
ul.pager-archive li.num.current a[href],ul.pager-archive li.num a[href]:hover {
  color: #fff;
  background: var(--c-blue);
}
ul.pager-archive li.prev a,ul.pager-archive li.next a {
  color: var(--c-blue);
  opacity: 0.5;
}
ul.pager-archive li.prev a[href],ul.pager-archive li.next a[href] {
  opacity: 1;
}
ul.pager-archive li.prev a[href]:hover,ul.pager-archive li.next a[href]:hover {
  text-decoration: underline;
}
ul.pager-single {
  width: 100%;
  display: table;
  table-layout: fixed;
}
ul.pager-single li {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
ul.pager-single li a {
  display: inline-block;
  color: inherit;
  text-decoration: none !important;
  opacity: 0.5;
  padding: 0.5em 1em;
}
ul.pager-single li a[href] {
  opacity: 1;
}
ul.pager-single li a[href]:hover {
  color: #fff;
  background: #000;
}

#global-nav-btn {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  padding-top: 50px;
  height: 0;
  background: var(--c-blue);
}
#global-nav-btn:before,#global-nav-btn:after,#global-nav-btn span:before {
  content: '';
  position: absolute;
  left: 25%;
  display: block;
  width: 50%;
  height: 0;
  padding-top: 1px;
  background: #fff;
}
#global-nav-btn:before {
  top: 31%;
  transition: 0.2s top, 0.2s transform;
}
#global-nav-btn:after {
  top: 47%;
  transition: 0.2s opacity;
}
#global-nav-btn span:before {
  top: 63%;
  transition: 0.2s top, 0.2s transform;
}
.nav-active #global-nav-btn:before {
  top: 50%;
  transform: rotate(135deg);
}
.nav-active #global-nav-btn:after {
  opacity: 0;
}
.nav-active #global-nav-btn span:before {
  top: 50%;
  transform: rotate(45deg);
}

@media (min-width:769px) { .display-sp{display:none!important} }
@media (max-width:768px) { .display-pc{display:none!important} }

#breadcrumb { padding:1em 0 0; background:#f2f2f2; }
#breadcrumb ol { letter-spacing:-.4em; }
#breadcrumb ol li { display:inline-block; vertical-align:top; letter-spacing:normal; }
#breadcrumb ol li a { display:inline-block; color:var(--c-blue); }
#breadcrumb ol li ~ li:before { content:'・'; display:inline-block;font-weight:700; color:var(--c-blue); margin:0 .4em; }
@media (max-width:768px) { #breadcrumb { font-size:0.85em; } }

#pagetop { position:fixed; right:3.125%; bottom:3.125%; z-index:9998; }

ul.default,ol.default { margin-left:1.25em }
ul.default li ~ li,ol.default li ~ li { margin-top:0.4em }
ul.default + *,* + ul.default,ol.default + *,* + ol.default { margin-top:1em }
ul.default li { list-style:disc }
ol.default li { list-style:decimal }

[class*="flex"] {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  flex-wrap: wrap;
}
.flex-col-2.reverse { flex-direction:row-reverse }
.flex-col-2 > * { width:48% }
.flex-col-2 > *:nth-child(n+3) { margin-top:4% }
.flex-col-3 > * { width:30.56% }
.order-1 { order:1; }
.order-2 { order:2; }
.order-3 { order:3; }
.order-4 { order:4; }

.flex-box {
  position: relative;
  height: 0;
  padding-top: 56.25%;
}
.flex-box > * {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.flex-box > img {
  object-fit: cover;
}

[class*="inview"] { opacity:0; visibility:hidden;transition: 1s transform .1s, 1s opacity .1s; }
.inview-up { transform:translate3d(0,30px,0) }
.inview-left { transform:translate3d(30px,0,0) }
.inview-right { transform:translate3d(-30px,0,0) }
.inview-active { transform:translate3d(0,0,0); opacity:1; visibility:visible; }
.delay-1 { transition-delay:.1s; }
.delay-2 { transition-delay:.2s; }
.delay-3 { transition-delay:.3s; }
.delay-4 { transition-delay:.4s; }

.d-ib{display:inline-block} .d-b{display:block} .d-i{display:inline}
.c-red{color:#f00;}
.c-blue{color:var(--c-blue)}
.fw-b{font-weight:bold}

.ta-l{text-align:left!important} .ta-c{text-align:center!important} .ta-r{text-align:right!important}
@media (max-width:768px){ .sp-ta-l{text-align:left!important} .sp-ta-c{text-align:center!important} .sp-ta-r{text-align:right!important} }

[align="left"] { text-align:left !important; }[align="center"] { text-align:center !important; }[align="right"] { text-align:right !important; }

.fit-c { width:fit-content; margin-left:auto; margin-right:auto; }

#wp-admin-bar-comments,#wp-admin-bar-customize,#wp-admin-bar-wp-logo {
  display: none !important;
}
