/* Basic Config */
/* Configurations */
/* Color Palette */
/* Scrollbar */
/* Selection */
/* Design Width */
/* Device Width */
/* Default */
/* Tablet Landscape */
/* Tablet Portrait */
/* Smartphone Max Width */
/* Smartphone Min Width */
/* Device Height */
/* Default */
/* Tablet Landscape */
/* Tablet Portrait */
/* Smartphone Max Height */
/* Smartphone Min Height */
/* Default font-size */
/* Noto-sans font-weight */
/* Common font-family */
/* Responsive Mixins */
/* Extends */
/* Animation Mixins */
/* Graphic Mixins */
/* Reset CSS */
html, body, div, span, iframe, h1, h2, h3, h4, h5, h6, p, pre,
a, code, img, small, strong, b, u, i, center, dl, dt, dd, ol,
ul, li, form, label, table, caption, tbody, tfoot, thead, tr,
th, td, article, aside, canvas, details, figure, figcaption,
footer, header, menu, nav, section, summary, time, audio, video,
input, textarea, select, button, mark {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  background: transparent;
  color: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, menu, nav, section {
  display: block;
  transition: all 0.7s ease-in-out;
}

body {
  line-height: 1.6;
  /* W3C Recommendation */
}

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

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
* *:focus {
  outline: none;
}

a {
  display: block;
  text-decoration: none;
}
a img {
  transition: opacity 0.4s ease;
}
a:hover {
  text-decoration: underline;
}
a:hover img {
  opacity: .8;
}

img {
  vertical-align: top;
  max-width: 100%;
  transition: all 0.4s ease;
}

ul {
  list-style: none;
}

/* ADD TAB BEFORE THE CHILDREN OL */
ol {
  counter-reset: item;
  list-style: none;
}
ol li:before {
  content: counters(item,".") ".";
  counter-increment: item;
}

h1, h2, h3, h4, h5, h6, strong {
  font-weight: 400;
  /* Can set to bold if necessary */
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 8px;
  cursor: pointer;
  position: relative;
  z-index: 100;
}

/* Track */
::-webkit-scrollbar-track {
  background-color: #fff;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background-color: #bbb;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background-color: #ccc;
}

/* Selection */
::-moz-selection {
  color: #fff;
  background-color: #000;
}

::selection {
  color: #fff;
  background-color: #000;
}

/* Form HTML5 */
input[type=submit]
, input[type=reset]
, input[type=button]
, button
, a {
  cursor: pointer;
}

::placeholder {
  color: inherit;
  font: inherit;
  opacity: .7;
}

::-webkit-outer-spin-button
, ::-webkit-inner-spin-button {
  display: none;
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=date]
, input[type=month]
, input[type=week]
, input[type=datetime-local]
, input[type=time] {
  position: relative;
}
input[type=date]::-webkit-clear-button
, input[type=month]::-webkit-clear-button
, input[type=week]::-webkit-clear-button
, input[type=datetime-local]::-webkit-clear-button
, input[type=time]::-webkit-clear-button {
  cursor: pointer;
}
input[type=date]::-webkit-datetime-edit-text
, input[type=month]::-webkit-datetime-edit-text
, input[type=week]::-webkit-datetime-edit-text
, input[type=datetime-local]::-webkit-datetime-edit-text
, input[type=time]::-webkit-datetime-edit-text {
  display: none;
  -webkit-appearance: none;
}

select {
  border: solid 1px #a6a6a6;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0.25em;
  position: relative;
}

.select-wrapper {
  display: inline-block;
  position: relative;
}
.select-wrapper:after {
  content: " ";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 7px 6px 0 6px;
  border-color: #000000 transparent transparent transparent;
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translate(0, -50%);
}

/* Common Styles */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 300;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 3.4375vw;
  }
}

.container {
  width: 100%;
  margin: 0 auto;
}

.pc {
  display: inherit;
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
@media only screen and (max-width: 1024px) {
  .pc-1024 {
    display: none !important;
  }
}

.sp {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp {
    display: inherit;
  }
}
.sp-1024 {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .sp-1024 {
    display: inherit;
  }
}

/* Components */
.btn-link li a, a.btn-link, button.btn-link,
.wp-block-button__link {
  display: block;
  width: 320px;
  height: 45px;
  padding: 15px 0 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: url(../img/icn_box_btn03.png) right center no-repeat #999;
  background-size: 32px auto;
  border: 0;
  border-radius: 3px;
  transition: background 0.5s;
}
@media only screen and (max-width: 767px) {
  .btn-link li a, a.btn-link, button.btn-link,
  .wp-block-button__link {
    width: 100%;
    height: 43px;
    padding: 17px 0 0;
    font-size: 14px;
  }
}
.btn-link li a:hover, a.btn-link:hover, button.btn-link:hover,
.wp-block-button__link:hover {
  background: url(../img/icn_box_btn03.png) right center no-repeat #55c0e2;
  background-size: 32px auto;
  text-decoration: none;
}

.btn-all {
  display: block;
  width: 318px;
  margin: 0 auto 10px;
  padding: 13px 0;
  color: #000;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  letter-spacing: 0.1em;
  transition: all 0.5s;
  background: url(../img/icn_arrow_btn01.png) right center no-repeat #fff;
  background-size: 32px auto;
  border: solid 1px #000;
}
@media only screen and (max-width: 767px) {
  .btn-all {
    width: auto;
  }
}
.btn-all:hover {
  color: #fff;
  text-decoration: none;
  background: url(../img/icn_arrow_btn01_hov.png) right center no-repeat #c7181f;
  background-size: 32px auto;
  border: solid 1px #c7181f;
  text-decoration: none;
}

.btn-black {
  display: block;
  width: 400px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: url(../img/icn_box_btn03.png) right center no-repeat #000;
  background-size: 46px auto;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background 0.5s;
}
@media only screen and (max-width: 1019px) {
  .btn-black {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .btn-black {
    font-size: 14px;
  }
}
.btn-black:hover {
  background: url(../img/icn_box_btn03.png) right center no-repeat #c7181f;
  background-size: 46px auto;
  text-decoration: none;
}

.btn-submit {
  display: block;
  width: 400px;
  margin: 0 auto;
  padding: 20px 0;
  text-align: center;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-decoration: none;
  background: url(../img/icn_box_btn03.png) right center no-repeat #c7181f;
  background-size: 46px auto;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  -webkit-appearance: none;
  transition: background 0.5s;
}
@media only screen and (max-width: 1019px) {
  .btn-submit {
    width: 100%;
  }
}
@media only screen and (max-width: 767px) {
  .btn-submit {
    font-size: 14px;
  }
}
.btn-submit:hover {
  background: url(../img/icn_box_btn03.png) right center no-repeat #831014;
  background-size: 46px auto;
  text-decoration: none;
}

.btn-back {
  background: url(../img/icn_arrow_back.png) 18px center no-repeat #999;
  background-size: auto 19px;
}
.btn-back:hover {
  background: url(../img/icn_arrow_back.png) 18px center no-repeat #000;
  background-size: auto 19px;
  text-decoration: none;
}

.btn-entry {
  padding: 35px 0;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .btn-entry {
    padding: 25px 0;
    font-size: 16px;
  }
}
@media only screen and (max-width: 767px) {
  .btn-entry {
    font-size: 14px;
  }
}

.btn-entry-blue {
  padding: 35px 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1;
  background: url(../img/icn_box_btn03.png) right center no-repeat #55c0e2;
  background-size: 46px auto;
}
@media only screen and (max-width: 768px) {
  .btn-entry-blue {
    font-size: 14px;
  }
}
.btn-entry-blue:hover {
  background: url(../img/icn_box_btn03.png) right center no-repeat #999;
  background-size: 46px auto;
  text-decoration: none;
}
.btn-entry-blue span {
  display: block;
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 300;
}
@media only screen and (max-width: 768px) {
  .btn-entry-blue span {
    font-size: 12px;
  }
}

.btn-small {
  width: 200px;
  margin: 0;
}

.c-action-btns {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
}
.c-action-btns li {
  width: 48.1481481481%;
}
.c-action-btns a {
  background: #c7181f;
  display: block;
  width: 100%;
  padding: 10px 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .c-action-btns a {
    font-size: 3.75vw;
  }
}
.c-action-btns a:before {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  content: " ";
  transform: rotate(-45deg);
  border-bottom: #fff solid 1px;
  border-right: #fff solid 1px;
  position: static;
  display: inline-block;
  margin-right: 1em;
  vertical-align: middle;
}

.c-home-link a {
  display: block;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .c-home-link a {
    font-size: 3.75vw;
  }
}
.c-home-link a:before {
  position: absolute;
  display: block;
  width: 5px;
  height: 5px;
  content: " ";
  transform: rotate(-45deg);
  border-bottom: #000 solid 1px;
  border-right: #000 solid 1px;
  position: static;
  display: inline-block;
  margin-right: 1em;
  vertical-align: middle;
}

.c-logged_in_name {
  margin-bottom: 20px;
  font-size: 14px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .c-logged_in_name {
    margin-bottom: 3.125vw;
    font-size: 3.75vw;
  }
}

.c-archive_list .select-wrapper {
  width: 100%;
  margin-top: 15px;
}
.c-archive_list .select-wrapper:after {
  border-color: #fff transparent transparent transparent;
}
.c-archive_list select {
  background: #000;
  border-radius: 0;
  display: inline-block;
  width: 100%;
  color: #fff;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .c-archive_list select {
    -webkit-appearance: none;
    -moz-appearance: none;
  }
}

.c-default-title {
  border-bottom: solid 1px #000;
  margin-bottom: 35px;
  font-size: 35px;
  font-weight: 400;
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .c-default-title {
    margin-bottom: 5.46875vw;
    font-size: 6.25vw;
  }
}

.c-btn_container {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.c-btn_container > *:not(:first-child) {
  margin-left: 20px;
}

.c-logo-block {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  line-height: 1;
}
.c-logo-block .big {
  display: block;
  width: 100%;
  font-size: 117px;
  padding-bottom: 10px;
  border-bottom: 5px solid;
}
@media only screen and (max-width: 768px) {
  .c-logo-block .big {
    font-size: 18.28125vw;
  }
}
.c-logo-block .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid;
  margin-bottom: 5px;
}
.c-logo-block .med {
  display: block;
  font-size: 70px;
}
@media only screen and (max-width: 768px) {
  .c-logo-block .med {
    font-size: 10.9375vw;
  }
}
.c-logo-block .med02 {
  display: block;
  font-size: 35px;
  padding-left: 10px;
}
@media only screen and (max-width: 768px) {
  .c-logo-block .med02 {
    font-size: 5.46875vw;
  }
}

.c-sidebar {
  margin-top: -10px;
}
@media only screen and (max-width: 768px) {
  .c-sidebar {
    margin-top: 0;
  }
}
.c-sidebar > .iframe-container {
  position: relative;
  height: 0;
  overflow: hidden;
}
.c-sidebar > .iframe-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.c-sidebar > .iframe-container.title {
  padding-top: 106.1776061776%;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar > .iframe-container.title {
    padding-top: 80.8924485126%;
  }
}
@media only screen and (max-width: 908px) {
  .c-sidebar > .iframe-container.title {
    padding-top: 94.9868073879%;
  }
}
@media only screen and (max-width: 747px) {
  .c-sidebar > .iframe-container.title {
    padding-top: 96.6898954704%;
  }
}
@media only screen and (max-width: 579px) {
  .c-sidebar > .iframe-container.title {
    padding-top: 99.0950226244%;
  }
}
@media only screen and (max-width: 432px) {
  .c-sidebar > .iframe-container.title {
    padding-top: 102.1341463415%;
  }
}
@media only screen and (max-width: 337px) {
  .c-sidebar > .iframe-container.title {
    padding-top: 106.7193675889%;
  }
}
.c-sidebar > .iframe-container.calendar {
  margin-top: 40px;
  margin-bottom: 35px;
  padding-top: 71.8146718147%;
}
@media only screen and (max-width: 1236px) {
  .c-sidebar > .iframe-container.calendar {
    padding-top: 74.4%;
  }
}
@media only screen and (max-width: 1193px) {
  .c-sidebar > .iframe-container.calendar {
    padding-top: 77.1784232365%;
  }
}
.c-sidebar > .iframe-container.newest_post {
  padding-top: 87.417218543%;
}
@media only screen and (max-width: 1362px) {
  .c-sidebar > .iframe-container.newest_post {
    padding-top: 85.5072463768%;
  }
}
@media only screen and (max-width: 1311px) {
  .c-sidebar > .iframe-container.newest_post {
    padding-top: 89.0566037736%;
  }
}
@media only screen and (max-width: 1258px) {
  .c-sidebar > .iframe-container.newest_post {
    padding-top: 92.9133858268%;
  }
}
@media only screen and (max-width: 1206px) {
  .c-sidebar > .iframe-container.newest_post {
    padding-top: 97.1193415638%;
  }
}
.c-sidebar h1 {
  font-family: 'Noto Serif JP', serif;
  font-weight: 500;
  line-height: 1;
}
.c-sidebar h1 a {
  text-decoration: none;
}
.c-sidebar h1 a:hover {
  text-decoration: none;
}
.c-sidebar h1 .big {
  display: block;
  width: 100%;
  font-size: 5.3125vw;
  padding-bottom: 10px;
  border-bottom: 5px solid;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar h1 .big {
    font-size: 13.4765625vw;
  }
}
@media only screen and (max-width: 768px) {
  .c-sidebar h1 .big {
    font-size: 21.5625vw;
    padding-bottom: 0;
    line-height: 100%;
  }
}
.c-sidebar h1 .inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid;
  margin-bottom: 5px;
}
@media only screen and (max-width: 768px) {
  .c-sidebar h1 .inner {
    padding: 5px 0;
  }
}
.c-sidebar h1 .med {
  display: block;
  font-size: 3.3854166667vw;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar h1 .med {
    font-size: 8.49609375vw;
  }
}
@media only screen and (max-width: 768px) {
  .c-sidebar h1 .med {
    font-size: 13.59375vw;
  }
}
.c-sidebar h1 .med02 {
  display: block;
  font-size: 1.5625vw;
  padding-left: 2.7027027027%;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar h1 .med02 {
    font-size: 3.90625vw;
    padding-left: 0.78125vw;
  }
}
@media only screen and (max-width: 768px) {
  .c-sidebar h1 .med02 {
    padding-left: 3.125vw;
    font-size: 6.25vw;
  }
}
.c-sidebar h1 .small {
  display: block;
  padding-top: 5px;
  font-size: 0.8333333333vw;
  letter-spacing: 0.14em;
}
@media only screen and (max-width: 1024px) {
  .c-sidebar h1 .small {
    font-size: 2.05078125vw;
  }
}
@media only screen and (max-width: 768px) {
  .c-sidebar h1 .small {
    font-size: 3.28125vw;
  }
}
@media only screen and (max-width: 1024px) {
  .c-sidebar figure.-hide {
    display: none;
  }
}
.c-sidebar figure img {
  width: 100%;
}
.c-sidebar .c-widget_calendar {
  margin-top: 40px;
  margin-bottom: 35px;
}

.c-widget_post .title {
  display: block;
  font-weight: 400;
  width: 100%;
  font-size: 19px;
  line-height: 1.8;
  border-bottom: 2px solid;
}
.c-widget_post ins {
  font-family: 'Noto Serif JP', serif;
  text-decoration: none;
  font-size: 16px;
  padding-left: 15px;
}
.c-widget_post ul {
  padding: 15px 0;
}
.c-widget_post ul li {
  margin-bottom: 15px;
}
.c-widget_post ul li:last-child {
  margin-bottom: 0;
}
.c-widget_post ul a {
  text-decoration: underline;
  font-weight: 400;
}
.c-widget_calendar {
  position: relative;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.c-widget_calendar .meta {
  text-align: center;
  width: 21.6216216216%;
  padding-right: 5.4054054054%;
}
.c-widget_calendar .meta #js-calendar-year {
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 1.4px;
  line-height: 1.3;
}
.c-widget_calendar .meta #js-calendar-month {
  display: block;
  font-family: 'Noto Serif JP', serif;
  font-weight: 400;
  font-size: 30px;
  letter-spacing: 1.4px;
  line-height: 1;
}
.c-widget_calendar .meta div {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 10px;
}
.c-widget_calendar .meta #js-calendar-next, .c-widget_calendar .meta #js-calendar-prev {
  display: inline-block;
  font-size: 16px;
  line-height: 1;
}
.c-widget_calendar .meta #js-calendar-next:hover, .c-widget_calendar .meta #js-calendar-prev:hover {
  text-decoration: none;
}
.c-widget_calendar .meta #js-calendar-next:after {
  transform: rotate(45deg);
}
.c-widget_calendar .meta #js-calendar-prev:after {
  transform: rotate(225deg);
}
.c-widget_calendar table {
  width: 78.3783783784%;
}
.c-widget_calendar table caption {
  display: none;
}
.c-widget_calendar thead {
  border-top: 2px solid;
  border-bottom: 1px solid;
}
.c-widget_calendar tr {
  width: 100%;
}
.c-widget_calendar th, .c-widget_calendar td {
  text-align: center;
  font-weight: 400;
  font-size: 14px;
  padding: 4px;
  width: 10.8108108108%;
}
.c-widget_calendar th:nth-last-child(1), .c-widget_calendar td:nth-last-child(1) {
  color: #E76B5B;
}
.c-widget_calendar th:nth-last-child(2), .c-widget_calendar td:nth-last-child(2) {
  color: #6B96DC;
}
.c-widget_calendar td a {
  background-color: #F2F2F2;
  display: block;
  padding: 2px;
}
.c-widget_calendar tfoot {
  display: none;
}
.c-widget_calendar nav.wp-calendar-nav {
  display: none;
}

.c-postlist01 {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}
@media only screen and (max-width: 768px) {
  .c-postlist01 {
    justify-content: space-between;
  }
}
.c-postlist01 li {
  position: relative;
  transition: .2s ease;
  width: 30.5084745763%;
  margin-right: 4.2372881356%;
  margin-bottom: 5.0847457627%;
}
.c-postlist01 li:nth-child(3n) {
  margin-right: 0;
}
.c-postlist01 li:nth-child(3n):after {
  content: none;
}
.c-postlist01 li:after {
  content: "";
  position: absolute;
  bottom: -10.5555555556%;
  right: -11.1111111111%;
  display: block;
  width: 8.3333333333%;
  height: 8.3333333333%;
  background-image: url(../img/bg_plus.png);
  background-size: contain;
  background-repeat: no-repeat;
}
.c-postlist01 li:last-child:after, .c-postlist01 li:nth-last-child(2):after, .c-postlist01 li:nth-last-child(3):after {
  content: none;
}
@media only screen and (max-width: 1024px) {
  .c-postlist01 li {
    width: 47.8813559322%;
  }
  .c-postlist01 li:nth-child(even) {
    margin-right: 0;
  }
  .c-postlist01 li:nth-child(odd) {
    margin-right: 4.2372881356%;
  }
  .c-postlist01 li:after {
    content: none;
  }
}
@media only screen and (max-width: 768px) {
  .c-postlist01 li {
    width: 48.3%;
    margin-bottom: 6.25vw;
  }
  .c-postlist01 li:nth-child(odd) {
    margin-right: 0;
  }
  .c-postlist01 li:last-child {
    margin-bottom: 0;
  }
}
.c-postlist01 li:hover .title {
  color: #c7171f;
}
.c-postlist01 a {
  font-weight: 400;
}
.c-postlist01 a:hover {
  text-decoration: none;
}
.c-postlist01 a:hover img {
  opacity: .9;
}
.c-postlist01 figure {
  height: 176px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 1400px) {
  .c-postlist01 figure {
    height: 12.5714285714vw;
  }
}
@media only screen and (max-width: 1145px) {
  .c-postlist01 figure {
    height: 12.2270742358vw;
  }
}
@media only screen and (max-width: 1103px) {
  .c-postlist01 figure {
    height: 10.8794197643vw;
  }
}
@media only screen and (max-width: 1024px) {
  .c-postlist01 figure {
    height: auto;
  }
}
@media only screen and (max-width: 768px) {
  .c-postlist01 figure {
    width: 100%;
    height: auto;
    margin-right: 3.3333333333%;
  }
}
.c-postlist01 figure img {
  width: 100%;
  height: auto !important;
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
@media only screen and (max-width: 1024px) {
  .c-postlist01 figure img {
    position: static;
    transform: none;
  }
}
@media only screen and (max-width: 768px) {
  .c-postlist01 .inner {
    width: 100%;
  }
}
.c-postlist01 header {
  padding: 20px 10px;
  background-color: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .c-postlist01 header {
    padding: 3.125vw 3.125vw 3.125vw;
  }
}
.c-postlist01 header.-new {
  position: relative;
}
.c-postlist01 header.-new:before {
  content: "NEW";
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-100%);
  font-weight: 400;
  font-size: 15px;
  padding: 0 8px;
  color: #fff;
  background-color: #C7171F;
}
@media only screen and (max-width: 768px) {
  .c-postlist01 header.-new:before {
    padding: 0 1.25vw;
    font-size: 3.75vw;
  }
}
.c-postlist01 small {
  font-size: 12px;
  letter-spacing: 1.4px;
}
@media only screen and (max-width: 768px) {
  .c-postlist01 small {
    font-size: 3.125vw;
  }
}
.c-postlist01 .title {
  display: block;
  text-decoration: underline;
  font-weight: 500;
  font-size: 18px;
}
@media only screen and (max-width: 768px) {
  .c-postlist01 .title {
    font-size: 4.0625vw;
  }
}
.c-postlist01 .excerpt {
  padding-top: 20px;
  padding-bottom: 10px;
  font-weight: 300;
}
.c-postlist01 .excerpt p {
  word-wrap: break-word;
}
@media only screen and (max-width: 768px) {
  .c-postlist01 .excerpt {
    padding-top: 3.90625vw;
    padding-bottom: 1.5625vw;
    font-weight: 400;
  }
  .c-postlist01 .excerpt p {
    font-size: 3.4375vw;
  }
}

.c-pagi01 {
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .c-pagi01 {
    padding: 0 3.125vw;
  }
}
.c-pagi01.-single {
  font-weight: 300;
  justify-content: space-between;
}
.c-pagi01 > a {
  position: relative;
  text-decoration: underline;
}
.c-pagi01 > a.-empty {
  text-indent: -9999px;
}
.c-pagi01 > a:first-child {
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .c-pagi01 > a:first-child {
    padding-left: 3.125vw;
  }
}
.c-pagi01 > a:first-child:after {
  content: "<";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  left: 0;
}
.c-pagi01 > a:last-child {
  padding-right: 20px;
}
@media only screen and (max-width: 768px) {
  .c-pagi01 > a:last-child {
    padding-right: 3.125vw;
  }
}
.c-pagi01 > a:last-child:after {
  content: ">";
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  right: 0;
}
.c-pagi01 ul {
  display: flex;
  justify-content: center;
  align-items: center;
}
.c-pagi01 ul li {
  margin-right: 10px;
}
.c-pagi01 ul li:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 768px) {
  .c-pagi01 ul li {
    margin-right: 1.5625vw;
  }
}
@media only screen and (max-width: 768px) {
  .c-pagi01 ul li.-hide {
    display: none;
  }
}
.c-pagi01 ul a {
  transition: .3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 16px;
  background-color: #f2f2f2;
}
@media only screen and (max-width: 768px) {
  .c-pagi01 ul a {
    width: 9.375vw;
    height: 9.375vw;
    font-size: 3.75vw;
  }
}
.c-pagi01 ul a:hover, .c-pagi01 ul a.-current {
  text-decoration: none;
  background-color: #e1e1e1;
}

footer {
  padding: 0 2.60417%;
  padding-bottom: 20px;
}
@media only screen and (max-width: 1024px) {
  footer {
    width: 100%;
    padding: 0 40px;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 768px) {
  footer {
    padding: 0 6.25vw;
    padding-bottom: 6.25vw;
  }
}
footer .copy {
  text-align: center;
  font-size: 10px;
}
@media only screen and (max-width: 768px) {
  footer .copy {
    font-size: 3.125vw;
  }
}
footer .go_to_top {
  position: fixed;
  right: 0;
  bottom: 0;
}

/* Pages */
.p-index {
  padding: 0 2.6041666667%;
  padding-top: 25px;
  padding-bottom: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
@media only screen and (max-width: 1024px) {
  .p-index {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0;
    padding-top: 40px;
    padding-bottom: 80px;
  }
}
@media only screen and (max-width: 768px) {
  .p-index {
    padding-top: 3.125vw;
    padding-bottom: 9.375vw;
  }
}
.p-index_content {
  width: 70.6586826347%;
}
@media only screen and (max-width: 1024px) {
  .p-index_content {
    width: 100%;
    padding: 0 40px;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_content {
    padding: 0 3.125vw;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_content .c-postlist01 {
    padding-bottom: 10.9375vw;
  }
}
.p-index .c-sidebar {
  min-width: 250px;
  width: 22.1556886228%;
  margin-right: 7.1856287425%;
}
@media only screen and (max-width: 1024px) {
  .p-index .c-sidebar {
    margin-right: 0;
    width: 100%;
    min-width: 100%;
    padding: 0 70px;
    padding-bottom: 60px;
  }
}
@media only screen and (max-width: 768px) {
  .p-index .c-sidebar {
    padding: 0 10.9375vw;
    padding-bottom: 9.375vw;
  }
}
.p-index .c-sidebar .c-action-btns {
  margin-bottom: 14px;
}
@media only screen and (max-width: 768px) {
  .p-index .c-sidebar .c-action-btns {
    margin-bottom: 4.375vw;
  }
}
.p-index .c-sidebar .c-home-link {
  margin-bottom: 40px;
}
@media only screen and (max-width: 768px) {
  .p-index .c-sidebar .c-home-link {
    margin-bottom: 0;
  }
}
.p-index .c-sidebar .c-widget_post {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .p-index .c-sidebar .c-widget_post {
    margin-bottom: 0;
  }
}
.p-index .c-sidebar .bnr .btn {
  margin-bottom: 20px;
}
@media only screen and (max-width: 768px) {
  .p-index .c-sidebar .bnr .btn {
    margin-bottom: 3.125vw;
  }
}
.p-index .c-sidebar .bnr p {
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .p-index .c-sidebar .bnr p {
    font-size: 3.75vw;
  }
}
.p-index_single header {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  font-weight: 400;
  letter-spacing: 1.4px;
  border-bottom: 2px solid;
}
@media only screen and (max-width: 1024px) {
  .p-index_single header {
    flex-wrap: wrap;
  }
}
.p-index_single .date {
  display: block;
  font-size: 12px;
  padding: 40px 22px;
  background-color: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .p-index_single .date {
    padding: 15px 35px;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_single .date {
    font-size: 3.4375vw;
    padding: 2.34375vw 5.46875vw;
  }
}
.p-index_single .title {
  font-size: 35px;
  padding: 0 25px 0.5em;
  line-height: 130%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .p-index_single .title {
    padding: 0;
    padding-top: 15px;
    padding-bottom: 0.5em;
    width: 100%;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_single .title {
    font-size: 5.46875vw;
    padding-top: 2.34375vw;
  }
}
.p-index_single .content {
  font-weight: 300;
  font-size: 16px;
  padding: 50px 7.6271186441% 20px;
  line-height: 1.75;
}
@media only screen and (max-width: 1024px) {
  .p-index_single .content {
    padding: 1.953125vw 0 1.953125vw;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_single .content {
    padding: 6.25vw 0 3.125vw;
    font-size: 3.75vw;
  }
}
.p-index_single .content:after {
  clear: both;
  display: block;
  content: "";
  width: 0;
  height: 0;
  font-size: 0;
}
.p-index_single .content .wp-block-column,
.p-index_single .content .wp-block-image {
  margin-bottom: 0;
}
.p-index_single .content .wp-block-image figcaption {
  color: #000;
  line-height: 1.75;
}
.p-index_single .content > h2, .p-index_single .content > p, .p-index_single .content > div, .p-index_single .content > ul, .p-index_single .content > ol, .p-index_single .content > dl, .p-index_single .content > table, .p-index_single .content > figure {
  margin-bottom: 30px !important;
}
@media only screen and (max-width: 1024px) {
  .p-index_single .content > h2, .p-index_single .content > p, .p-index_single .content > div, .p-index_single .content > ul, .p-index_single .content > ol, .p-index_single .content > dl, .p-index_single .content > table, .p-index_single .content > figure {
    margin-bottom: 5.859375vw 0 !important;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_single .content > h2, .p-index_single .content > p, .p-index_single .content > div, .p-index_single .content > ul, .p-index_single .content > ol, .p-index_single .content > dl, .p-index_single .content > table, .p-index_single .content > figure {
    margin-bottom: 7.8125vw !important;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_single .content > h2:last-child, .p-index_single .content > p:last-child, .p-index_single .content > div:last-child, .p-index_single .content > ul:last-child, .p-index_single .content > ol:last-child, .p-index_single .content > dl:last-child, .p-index_single .content > table:last-child, .p-index_single .content > figure:last-child {
    margin-bottom: 0 !important;
  }
}
.p-index_single .content ul li, .p-index_single .content ol li {
  padding-left: 1.25em;
  list-style-position: inside;
  text-indent: -1.25em;
}
.p-index_single .content ul li {
  list-style-type: disc;
}
.p-index_single .content a {
  display: inline-block;
  height: auto !important;
  text-decoration: underline;
}
.p-index_single .content .wp-block-column > figure {
  margin-bottom: 1em;
}
.p-index_single img {
  display: inline-block;
  margin: 30px auto;
}
@media only screen and (max-width: 768px) {
  .p-index_single img {
    margin: 4.6875vw auto;
  }
}
.p-index_single figure {
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .p-index_single figure {
    flex-direction: column;
    align-items: center;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_single figure {
    padding-bottom: 4.6875vw;
  }
}
.p-index_single figure img {
  margin: 0;
  height: auto !important;
}
.p-index_single figure img:last-child {
  margin-right: 0;
}
@media only screen and (max-width: 1024px) {
  .p-index_single figure img {
    margin-right: 0;
    max-width: 100%;
    margin-bottom: 30px;
  }
  .p-index_single figure img:last-child {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 768px) {
  .p-index_single figure img {
    margin-bottom: 4.6875vw;
  }
}
.p-index_single figure.wp-block-image {
  width: 100%;
}
.p-index_single .bold {
  width: 100%;
  font-size: 18px;
  font-weight: 400;
}
.p-index_single .bold strong {
  font-size: 22px;
}
@media only screen and (max-width: 768px) {
  .p-index_single .bold {
    font-size: 3.75vw;
  }
  .p-index_single .bold strong {
    font-size: 4.0625vw;
  }
}
.p-index_single strong {
  font-weight: 500;
}
.p-index_single h2 {
  font-size: 20px;
  font-weight: 500;
}
@media only screen and (max-width: 768px) {
  .p-index_single h2 {
    font-size: 3.4375vw;
  }
}
.p-index_single footer {
  padding-top: 25px;
  border-top: 1px solid;
}
.p-index_single .border_table th, .p-index_single .border_table td {
  border: solid 1px #ddd;
  padding: 0.75em;
}
.p-index_single .taidan_table th, .p-index_single .taidan_table td {
  padding-bottom: 0.75em;
}
.p-index_single .taidan_table th {
  width: 5em;
  padding-right: 1em;
  font-weight: 400;
  text-align: left;
  white-space: nowrap;
}
.p-index_single ul li {
  padding-left: 1em;
  text-indent: -0.75em;
}
.p-index_single ol li {
  padding-left: 1em;
  text-indent: -0.75em;
}
.p-index_single .mb-10 {
  margin-bottom: 10px !important;
}
@media only screen and (max-width: 768px) {
  .p-index_single .mb-10 {
    margin-bottom: 1.5625vw !important;
  }
}
.p-index_single .mb-20 {
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 768px) {
  .p-index_single .mb-20 {
    margin-bottom: 3.125vw !important;
  }
}
.p-index_single .mb-30 {
  margin-bottom: 30px !important;
}
@media only screen and (max-width: 768px) {
  .p-index_single .mb-30 {
    margin-bottom: 4.6875vw !important;
  }
}
.p-index_single .mb-40 {
  margin-bottom: 40px !important;
}
@media only screen and (max-width: 768px) {
  .p-index_single .mb-40 {
    margin-bottom: 6.25vw !important;
  }
}
.p-index_single .mb-50 {
  margin-bottom: 50px !important;
}
@media only screen and (max-width: 768px) {
  .p-index_single .mb-50 {
    margin-bottom: 7.8125vw !important;
  }
}
.p-index_single .mb-60 {
  margin-bottom: 60px !important;
}
@media only screen and (max-width: 768px) {
  .p-index_single .mb-60 {
    margin-bottom: 9.375vw !important;
  }
}
.p-index_single .mb-70 {
  margin-bottom: 70px !important;
}
@media only screen and (max-width: 768px) {
  .p-index_single .mb-70 {
    margin-bottom: 10.9375vw !important;
  }
}
.p-index_single .mb-80 {
  margin-bottom: 80px !important;
}
@media only screen and (max-width: 768px) {
  .p-index_single .mb-80 {
    margin-bottom: 12.5vw !important;
  }
}
@media only screen and (min-width: 600px) {
  .p-index .has-3-columns .wp-block-column {
    flex-basis: calc(33.333% - 16px);
  }
}

.p-other {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-other .btn-submit,
.p-other .btn-black {
  padding: 35px 0;
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .p-other .btn-submit,
  .p-other .btn-black {
    font-size: 5vw;
  }
}
.p-other section h1 {
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .p-other section h1 {
    margin-bottom: 9.375vw;
  }
}
.p-other section h1 img {
  width: 100%;
}
.p-other section .inputs {
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .p-other section .inputs {
    margin-bottom: 9.375vw;
  }
}
.p-other section .inputs .row {
  margin-bottom: 15px;
}
.p-other section aside a {
  color: #0168b6;
  font-weight: 400;
  text-decoration: underline;
}
.p-other.v-center {
  height: 100vh;
  margin-bottom: 0;
}
@media only screen and (max-width: 768px) {
  .p-other.v-center {
    height: auto;
    padding-top: 15.625vw;
    align-items: start;
  }
}
.p-other.v-center section {
  width: 400px;
}
@media only screen and (max-width: 600px) {
  .p-other.v-center section {
    width: 70%;
  }
}
@media only screen and (max-width: 768px) {
  .p-other.v-center.index p {
    margin-bottom: 9.375vw;
  }
}
.p-other.login form .row span {
  display: inline-block;
  margin-bottom: 0.5em;
  font-weight: 400;
}
.p-other.login input.inputType-ll,
.p-other.login input.inputType-l,
.p-other.login input.inputType-m,
.p-other.login input.inputType-s,
.p-other.login input[type="password"],
.p-other.login input[type="text"] {
  width: 100%;
  padding: 0.5em 0.5em;
}

.p-forget-password section h1 {
  margin-bottom: 0;
}
.p-forget-password section h2 {
  border-bottom: solid 1px #000;
  margin-bottom: 56px;
  padding: 20px 0;
  font-size: 22px;
  text-align: center;
  line-height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-forget-password section h2 {
    margin-bottom: 8.75vw;
  }
}
.p-forget-password section h2 + p {
  margin-bottom: 30px;
  font-weight: 400;
}
@media only screen and (max-width: 768px) {
  .p-forget-password section h2 + p {
    margin-bottom: 6.25vw;
  }
}
.p-forget-password section form span {
  display: inline-block;
  margin-bottom: 0.5em;
  font-weight: 400;
}
.p-forget-password input.inputType-ll,
.p-forget-password input.inputType-l,
.p-forget-password input.inputType-m,
.p-forget-password input.inputType-s,
.p-forget-password input[type="password"],
.p-forget-password input[type="text"] {
  width: 100%;
  padding: 0.5em 0.5em;
}

.page-regist p {
  font-size: 14px;
  line-height: 175%;
}
@media only screen and (max-width: 768px) {
  .page-regist p {
    font-size: 3.75vw;
  }
}
.page-regist .btn-submit {
  padding: 30px 0;
  font-size: 24px;
  font-weight: bold;
}
@media only screen and (max-width: 768px) {
  .page-regist .btn-submit {
    font-size: 5vw;
  }
}

.p-register {
  height: auto;
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.p-register p, .p-register td {
  font-weight: 400;
}
.p-register section {
  width: 1020px;
  padding: 52px 0 60px;
}
@media only screen and (max-width: 1019px) {
  .p-register section {
    width: 960px;
  }
}
@media only screen and (max-width: 979px) {
  .p-register section {
    width: 90%;
  }
}
@media only screen and (max-width: 768px) {
  .p-register section {
    padding: 5.46875vw 0 9.375vw;
  }
}
.p-register section h1, .p-register section h2 {
  width: 430px;
  margin: 0 auto;
}
@media only screen and (max-width: 430px) {
  .p-register section h1, .p-register section h2 {
    width: 90%;
  }
}
.p-register section h1 {
  margin-bottom: 0;
}
.p-register section h2 {
  border-bottom: solid 1px #000;
  margin-bottom: 56px;
  padding: 20px 0;
  font-size: 22px;
  text-align: center;
  line-height: 100%;
}
@media only screen and (max-width: 768px) {
  .p-register section h2 {
    margin-bottom: 8.75vw;
  }
}
.p-register section h2 + p {
  margin-bottom: 56px;
}
@media only screen and (max-width: 768px) {
  .p-register section h2 + p {
    margin-bottom: 8.75vw;
  }
}
.p-register form table th, .p-register form table td {
  padding: 20px 0;
}
.p-register form table th {
  width: 20%;
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .p-register form table th {
    width: 100%;
    padding-bottom: 0;
  }
  .p-register form table td {
    padding-top: 10px;
  }
}
.p-register form aside {
  margin-bottom: 30px;
}
@media only screen and (max-width: 768px) {
  .p-register form aside {
    margin-bottom: 9.375vw;
  }
}
.p-register.v-center {
  width: 100%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .p-register.v-center {
    height: auto;
    padding-top: 15.625vw;
    align-items: start;
  }
}
.p-register.v-center section {
  width: 430px;
}
@media only screen and (max-width: 414px) {
  .p-register.v-center section {
    width: 80%;
  }
}
.p-register.password form table {
  margin-bottom: 16px;
}
@media only screen and (max-width: 768px) {
  .p-register.password form table {
    margin-bottom: 3.75vw;
  }
}
.p-register.complete aside {
  margin-top: 19px;
  color: #c7181f;
  font-weight: 400;
}
.p-register .att {
  display: block;
  margin-top: 0.5em;
  color: #999999;
  font-weight: 400;
}
.p-register input.inputType-ll,
.p-register input.inputType-l,
.p-register input.inputType-m,
.p-register input.inputType-s,
.p-register input[type="password"],
.p-register input[type="text"] {
  padding: 0.15em;
}
@media only screen and (max-width: 768px) {
  .p-register input.inputType-m {
    width: 85%;
  }
}
@media only screen and (max-width: 768px) {
  .p-register input[type=text] {
    transform-origin: top left;
    transform: scale(calc(14 / 16));
  }
}
.p-register .select-wrapper {
  width: 32.9411764706vw;
}
@media only screen and (max-width: 768px) {
  .p-register .select-wrapper {
    width: 80%;
  }
  .p-register .select-wrapper:after {
    right: 14.0625vw;
  }
}
.p-register select {
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .p-register select {
    font-size: 16px;
    transform-origin: top left;
    transform: scale(calc(14 / 16));
  }
}
.p-register td span.note {
  display: inline-block;
  margin-bottom: 0.75em;
}

.page-change {
  margin-bottom: 0;
}
.page-change .att {
  color: #999999;
}
.page-change .btn-black {
  background: #000;
}
.page-change .btn-back {
  background: #999;
}
.page-change .edit .c-btn_container {
  justify-content: center;
}

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