@charset "utf-8";

/* common.css: 2023-06-01 */

/* reset */

*, *::before, *::after {box-sizing: border-box;}
* {margin: 0;padding: 0}
a {text-decoration: none}
a img {border-style: none}
ul {list-style: none}
img {vertical-align: middle}
p, h1, h2, h3, h4, h5, h6 {overflow-wrap: break-word;}

input, button, textarea, select {
    font: inherit;
}
iframe {
    margin: 0;
    padding: 0;
}
strong {
    margin: 0;
    padding: 0;
    font-weight: bold;
}
small {
    font-size: 77%;
}
img, picture, video, canvas, svg {
  display: inline-block;
  width: auto;
  max-width: 100%;
  height: auto;
  line-height: 1.0;
  vertical-align: bottom;
}

/* end of reset */

.sans {
    /*
    font-family: "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", arial, helvetica, sans-serif;
    */
    font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "メイリオ", Meiryo, sans-serif;
}
.serif {
    /*
    font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E", "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
    */
    font-family: "游明朝", YuMincho, "Hiragino Mincho ProN W3", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}
.marug {
    font-family: "ヒラギノ丸ゴ Pro W4", "ヒラギノ丸ゴ Pro", "Hiragino Maru Gothic Pro", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "HG丸ｺﾞｼｯｸM-PRO", "HGMaruGothicMPRO";
}

p {
    margin-bottom: 1em;
}
p:last-child {
    margin-bottom: 0;
}

img.full {
    width: 100%;
    height: auto;
}

a.images {
    transition: all 300ms ease;
}
a.images:hover {
    opacity: 0.6;
}

hr {
    margin: 1em 0;
    border: 0;
    border-top: 1px solid #cfcfcf;
}

.text-left {
    text-align: left;
}
.text-center {
    text-align: center;
}
.text-right {
    text-align: right;
}
.text-xl {
    font-size: 150%;
}
.text-lg {
    font-size: 120%;
}
.text-sm {
    font-size: 88%;
}
.text-xs {
    font-size: 78%;
}

.clearfix:after {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}
.aligncenter {
    display: block;
    margin: 0 auto;
}
.alignright {
    float: right;
}
.alignleft {
    float: left;
}

a img {
    margin: 0;
    padding: 0;
    border-style: none;
}

ul {
    list-style-type: none;
    margin-bottom: 1em;
}
ul.with-marker li {
    margin: 0;
    padding: 3px 0 3px 0;
}
ul.with-marker li:before {
    content: "";
    display: inline-block;
    width: 0;
    height: 0;
    border-left: 4px solid #222;
    border-bottom: 4px solid transparent;
    border-top: 4px solid transparent;
    margin: 0 6px 0 3px;
    position: relative;
    top: -1px;
}
ol {
    list-style-position: outside;
    margin: 0;
    margin-left: 25px;
    padding: 0;
}
ol li {
    margin: 0 0 1.5em 0;
    padding: 0 0 0 5px;
}

table {
    width: 100%;
    font-size: 100%;
    margin: 0 0 1em 0;
    padding: 0;
    border-collapse: collapse;
    border-top: solid 1px #008B8B;
}
table tr {
    margin: 0;
    padding: 0;
    border-bottom: solid 1px #008B8B;
}
table th,
table td {
    margin: 0;
    padding: 1em 0;
    font-size: 100%;
}
table th:last-child,
table td:last-child {
}
.ui-datepicker-calendar th {
    width: auto;
}
table th {
    font-weight: 600;
    vertical-align: top;

}
table thead th {
    text-align: center;
}
table.flat {
    border-style: none;
}
table.flat tr {
    border-style: none;
}
table.flat tr td {
    vertical-align: top;
}
.table-with-scroll {
    margin: 1em 0;
}
@media (max-width: 800px) {
    .table-with-scroll {
        overflow: auto;
        white-space: nowrap;
        width: 100%;
        margin-bottom: 1em;
    }
    .table-with-scroll table {
        table-layout: fixed;
        width: auto;
        border-collapse: collapse;
    }
    .table-with-scroll table tr td,
    .table-with-scroll table tr th {
        width: auto !important;
    }
}
@media screen and (max-width:479px) {
    table.table.table-responsive {
        border-style: none;
        border-bottom-style: none;
        border-top: solid 1px #008B8B;
    }
    table.table.table-responsive tr {
        display: block;
        border-bottom: solid 1px #008B8B;
        padding-bottom: 1em;
        margin-bottom: 1em;
    }
    table.table.table-responsive tr:first-child th,
    table.table.table-responsive tr:first-child td {
        border-style: none;
    }
    table.table-responsive th,
    table.table-responsive td {
        display: list-item;
        border-style: none;
        list-style: none;
        margin: 5px 0;
        padding: 0;
        width: 100% !important;
        text-align: left;
    }
}

/* PC only or Mobile only */

.mobile-only,
.mobile-only-inline-block,
.mobile-only-inline {
    display: none !important;
}
.pc-only,
.pc-only-inline-block,
.pc-only-inline {
    display: none !important;
}

@media screen and (max-width: 680px) {
    /* MOBILE ONLY */
    .mobile-only {
        display: block !important;
    }
    .mobile-only-inline-block {
        display: inline-block !important;
    }
    .mobile-only-inline {
        display: inline !important;
    }
}
@media screen and (min-width: 681px) {
    /* PC ONLY */
    .pc-only {
        display: block !important;
    }
    .pc-only-inline-block {
        display: inline-block !important;
    }
    .pc-only-inline {
        display: inline !important;
    }
}

/* POST */

h1 {
    font-size: 40px;
    font-weight: bold;
}
h2 {
    font-size: 32px;
    font-weight: bold;
}
h3 {
    font-size: 26px;
    font-weight: bold;
}
h4 {
    font-size: 22px;
    font-weight: bold;
}
h5 {
    font-size: 100%;
    font-weight: bold;
}

.link-category a,
.link-category a:visited,
.link-category a:hover {
    display: inline-block;
    padding: 2px 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background-color: #454545;
    text-align: center;
    margin-right: 15px;
}
.link-category a:hover {
    opacity: 0.7;
}
.entry-index .link-category a,
.entry-index .link-category a:visited,
.entry-index .link-category a:hover {
    margin-left: 0;
    margin-right: 5px;
}

/* IFRAME */

.iframe-wrapper {
    position: relative;
    margin-bottom: 10px;
    height: 0;
    overflow: hidden;
    max-width: 100%;
}
.iframe-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
}
@media (max-width: 639px) {
    .iframe-wrapper {
        padding-bottom: 120%;
    }
}
@media (min-width: 640px) {
    .iframe-wrapper {
        padding-bottom: 56.25%;
    }
    .iframe-sq {
        padding-bottom: 110%;
    }
}
.video-16-9 {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}
.video-16-9 iframe{
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

/* COLUMNS */

@media print, screen and (max-width : 639px) {
    .column {
        margin-bottom: 2em;
    }
}
@media print, screen and (min-width : 640px) {
    .columns {
        display: flex;
        flex-wrap: wrap;
        align-items: stretch;
    }
    .columns-reverse {
        flex-direction: row-reverse;
    }
    .columns-valign-center {
        align-items: center;
    }
    .column {
        padding-right: 1.5%;
        padding-left: 1.5%;
    }

    /* Column */

    .column-1-2 {
        width: 50%;
    }
    .column-1-2.first,
    .columns-reverse .column-1-2.last {
        padding-left: 0;
        padding-right: 3%;
    }
    .column-1-2.last,
    .columns-reverse .column-1-2.first {
        padding-left: 3%;
        padding-right: 0%;
    }

    .column-1-3 {
        width: 33.33%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column-1-3.first,
    .columns-reverse .column-1-3.last {
        padding-left: 0%;
        padding-right: 3%;
    }
    .column-1-3.last,
    .columns-reverse .column-1-3.first {
        padding-left: 3%;
        padding-right: 0%;
    }
    .column-2-3 {
        width: 66.66%;
    }
    .column-2-3.first,
    .columns-reverse .column-2-3.last {
        padding-left: 0%;
        padding-right: 0.75%;
    }
    .column-2-3.last,
    .columns-reverse .column-2-3.first {
        padding-left: 0.75%;
        padding-right: 0%;
    }
    .column-2-5 {
        width: 40%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column-2-5.first,
    .columns-reverse .column-2-5.last {
        padding-left: 0%;
        padding-right: 3%;
    }
    .column-2-5.last,
    .columns-reverse .column-2-5.first {
        padding-left: 3%;
        padding-right: 0%;
    }
    .column-3-5 {
        width: 60%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column-3-5.first,
    .columns-reverse .column-3-5.last {
        padding-left: 0;
        padding-right: 3%;
    }
    .column-3-5.last,
    .columns-reverse .column-3-5.first {
        padding-left: 3%;
        padding-right: 0;
    }

    .column-1-4 {
        width: 25%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column-1-4.first {
        padding-left: 0%;
        padding-right: 3%;
    }
    .column-1-4.last,
    .columns-reverse .column-1-4.first {
        padding-left: 3%;
        padding-right: 0%;
    }
    .column-3-4 {
        width: 75%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
    .column.column-3-4.last,
    .columns-reverse .column-3-4.first {
        padding-left: 0%;
        padding-right: 3%;
    }

    .column-1-5 {
        width: 20%;
        padding-left: 1.5%;
        padding-right: 1.5%;
    }
}

/* EFFECTS */

@media print {
    .fan {
        visibility: visible !important;
    }
}

.fx-fadein {
    animation-fill-mode: both;
    animation-duration: 1.0s;
    animation-name: fadeIn;
    animation-timing-function: ease-in;
    visibility: visible !important;
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fx-fadein-left {
    animation-fill-mode: both;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-name: fadeInLeft;
    visibility: visible !important;
}
@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fx-fadein-right {
    animation-fill-mode: both;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-name: fadeInRight;
    visibility: visible !important;
}
@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(150px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}
.fx-fadein-up {
    animation-fill-mode: both;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    animation-name: fadeInUp;
    visibility: visible !important;
}
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(80px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fx-slidein-left {
    animation-name: slideInLeft;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-fill-mode: forwards;
    animation-duration: 0.8s;
    visibility: visible !important;
    opacity: 0;
}
@keyframes slideInLeft {
    0% {
        opacity: 1.0;
        clip-path: inset(0 100% 0 0);
    }
    100% {
        opacity: 1.0;
        clip-path: inset(0);
    }
}
.fx-slidein-right {
    animation-name: slideInRight;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.8s;
    visibility: visible !important;
}
@keyframes slideInRight {
    0% {
        clip-path: inset(0 0 0 100%);
    }
    100% {
        clip-path: inset(0);
    }
}
.fx-slidein-up {
    animation-name: slideInUp;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.8s;
    visibility: visible !important;
}
@keyframes slideInUp {
    0% {
        clip-path: inset(100% 0 0 0);
    }
    100% {
        clip-path: inset(0);
    }
}
.fx-slidein-down {
    animation-name: slideInDown;
    animation-iteration-count: 1;
    animation-timing-function: ease-in;
    animation-duration: 0.8s;
    visibility: visible !important;
}
@keyframes slideInDown {
    0% {
        clip-path: inset(0 0 100% 0);
    }
    100% {
        clip-path: inset(0);
    }
}

.fx-scale-up {
    animation-name: scaleUp;
    animation-iteration-count: 1;
    animation-timing-function: ease-in-out;
    animation-duration: 1.5s;
    transform-origin: 50% 50%;
    visibility: visible !important;
}
@keyframes scaleUp {
    0% {
        opacity: 0;
        transform: scale(0, 0);
    }
    100% {
        opacity: 1.0;
        transform: scale(1.0, 1.0);
    }
}

.fx-len-100ms { animation-duration: 0.1s; }
.fx-len-200ms { animation-duration: 0.2s; }
.fx-len-300ms { animation-duration: 0.3s; }
.fx-len-400ms { animation-duration: 0.4s; }
.fx-len-500ms { animation-duration: 0.5s; }
.fx-len-600ms { animation-duration: 0.6s; }
.fx-len-700ms { animation-duration: 0.7s; }
.fx-len-800ms { animation-duration: 0.8s; }
.fx-len-900ms { animation-duration: 0.9s; }
.fx-len-1000ms { animation-duration: 1.0s; }
.fx-len-1500ms { animation-duration: 1.5s; }
.fx-len-2000ms { animation-duration: 2.0s; }
.fx-len-2500ms { animation-duration: 2.5s; }
.fx-len-3000ms { animation-duration: 3.0s; }
.fx-len-3500ms { animation-duration: 3.5s; }
.fx-len-4000ms { animation-duration: 4.0s; }
.fx-len-4500ms { animation-duration: 4.5s; }
.fx-len-5000ms { animation-duration: 5.0s; }

.fx-delay-100ms { animation-delay: 0.1s; transition-delay: 0.1s; }
.fx-delay-200ms { animation-delay: 0.2s; transition-delay: 0.2s; }
.fx-delay-300ms { animation-delay: 0.3s; transition-delay: 0.3s; }
.fx-delay-400ms { animation-delay: 0.4s; transition-delay: 0.4s; }
.fx-delay-500ms { animation-delay: 0.5s; transition-delay: 0.5s; }
.fx-delay-600ms { animation-delay: 0.6s; transition-delay: 0.6s; }
.fx-delay-700ms { animation-delay: 0.7s; transition-delay: 0.7s; }
.fx-delay-800ms { animation-delay: 0.8s; transition-delay: 0.8s; }
.fx-delay-900ms { animation-delay: 0.9s; transition-delay: 0.9s; }
.fx-delay-1000ms { animation-delay: 1.0s; transition-delay: 1.0s; }
.fx-delay-1500ms { animation-delay: 1.5s; transition-delay: 1.5s; }
.fx-delay-2000ms { animation-delay: 2.0s; transition-delay: 2.0s; }
.fx-delay-2500ms { animation-delay: 2.5s; transition-delay: 2.5s; }
.fx-delay-3000ms { animation-delay: 3.0s; transition-delay: 3.0s; }

/* Container */

.full-box {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin: 0;
    margin-left: -50vw;
    margin-right: -50vw;
    padding: 0;
    text-align: center;
}

/* WordPress: Error Page */

#error-container {
    margin: 30px auto;
    max-width: 600px;
    padding: 30px 0;
    text-align: center;
    color: #008080;
}
#error-container h2 {
    color: #008080;
    font-size: 30px;
    font-weight: normal;
    background: transparent;
    background-color: transparent;
    text-align: center;
}
#error-container .section {
    margin: 25px 0;
}
#error-container .section p {
    text-align: center;
}
#error-container .more-link,
#error-container .more-link:visited,
#error-container .more-link:hover {
    font-size: 14px;
    font-family: sans-serif;
    font-weight: bold;
    line-height: 1.0;
    padding: 10px 16px;
    margin: 1em auto 1em auto;
    color: #fff;
    background-color: #008080;
    border-radius: 30px;
    text-align: center;
    transition: all .3s;
}
#error-container .more-link:hover {
    opacity: 0.6;
}
/* WordPress: Widget */

#sidebar .widgettitle {
    text-align: left;
    font-weight: bold;
    margin: 1em 0 1em 0;
}
#sidebar .widget {
    margin-bottom: 60px;
}
.widget_calendar #wp-calendar {
    display: table;
}
.widget_calendar #wp-calendar tr {
    display: table-row;
}
.widget_calendar #wp-calendar th,
.widget_calendar #wp-calendar td {
    padding: 0;
    margin: 0;
    display: table-cell;
}
.widget_calendar #wp-calendar tr {
    border-style: none;
}
.widget_calendar #wp-calendar th,
.widget_calendar #wp-calendar thead td {
    background-color: #231815;
    color: white;
}
.widget_calendar #wp-calendar caption {
    color: #231815;
    padding: 8px;
}
.widget_calendar #wp-calendar thead th {
    width: 14.28%;
    text-align: center;
}
.widget_calendar #wp-calendar td {
    text-align: center;
    color: #acacac;
}
.widget_calendar #wp-calendar {
    width: 100%;
    table-layout: fixed;
}
.widget_calendar #wp-calendar a,
.widget_calendar #wp-calendar a:visited,
.widget_calendar #wp-calendar a:hover {
    color: #231815;
}
.widget_calendar #wp-calendar tfoot {
    background-color: #f3f3f3;
}
.search-form .search-field {
    float: left;
    width: 70%;
    height: 40px;
    border: solid 1px #dddddd;
}
.search-form button {
    float: left;
    width: 30%;
    height: 40px;
    background-color: #333;
    padding: 5px 10px;
    color: white;
    border-style: none;
    font-size: 120%;
}
.search-form button:hover {
    background-color: #FF9933;
}
.search-form:after {
    content: " ";
    display: block;
    height: 0;
    visibility: hidden;
    clear: both;
}

/* WordPress: Pagenation */

.pagination a,
.pagination a:visited,
.pagination a:hover {
    margin: 2px;
    padding: 10px 10px;
    display: inline-block;
    font-size: 14px;
    line-height: 1.0;
    text-decoration: none;
    color: #fff;
    background-color: #008080;
    border: solid 1px #008080;
    transition: all 300ms ease;
}
.pagination a:hover {
    color: #008080;
    background-color: #fff;
}
.pagination a.next,
.pagination a.next:visited,
.pagination a.next:hover,
.pagination a.prev,
.pagination a.prev:visited,
.pagination a.prev:hover {
    padding: 10px 10px;
/*    display: inline-block;*/
    display: none;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.0;
    text-decoration: none;
    color: #008080;
    border-style: none;
    transition: all 300ms ease;
}
.pagination a.next:hover,
.pagination a.prev:hover {
    color: #008080;
    border-style: none;
}
.pagination span {
    font-size: 14px;
    margin: 2px;
    padding: 5px;
    display: inline-block;
}
.pagination span.dots {
    border-style: none;
}
.pagination span.current {
    padding: 10px 10px;
    display: inline-block;
    font-size: 14px;
    line-height: 1.0;
    text-decoration: none;
    background-color: #acacac;
    border: solid 1px #acacac;
    color: white;
}
.pagination {
    overflow: hidden;
    margin-top: 40px;
    margin-bottom: 20px;
    text-align: center;
    clear: both;
    background-color: transparent;
}
.pagination .screen-reader-text {
    display: none;
}

