@charset "utf-8";
/*!
Theme Name: seibuiruma-rec
Author: arrows inc.
Author URI: https://arrows-web.net/
Description: This is an original theme using splus05 created by Arrows Co., Ltd.
Version: 2.0.0
*/
/*=================================================================================================
  CSS reset
=================================================================================================*/
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,abbr,address,cite,code,del,dfn,em,img,ins,kbd,q,samp,small,strong,sub,sup,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,figcaption,figure,footer,header,hgroup,menu,nav,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent;box-sizing: border-box;}
body{line-height:1;-webkit-text-size-adjust:100%;}
article,aside,details,figcaption,figure,footer,header,hgroup,menu,nav,section{display:block;}
blockquote,q{quotes:none;}
blockquote:before, blockquote:after,q:before,q:after{content:'';content:none;}
a{margin:0;padding:0;font-size:100%;vertical-align:baseline;background:transparent;}
/********** 任意色変更 **********/
ins{background-color:#ff9;color:#000;text-decoration:none;}
mark{background-color:#ff9;color:#000;font-style:italic;font-weight:bold;}
del{text-decoration:line-through;}
abbr[title],dfn[title]{border-bottom:1px dotted;cursor:help;}
table{border-collapse:collapse;border-spacing:0;}
hr{display:block;height:1px;border:0;border-top:1px solid #cccccc;margin:1em 0;padding:0;}
/********** 任意配置変更 **********/
input,select{vertical-align:middle;}
ul,ol {padding-left: 1.5rem;}
nav ul {list-style: none;padding-left: 0;}
p {margin-bottom: 1.5rem;}
/********** img **********/
img{display: block;}
/*=================================================================================================
  Write standard CSS for the entire site
=================================================================================================*/
:root {
--both-ends: 13rem;
--both-ends-sp: 5%;
--font-size: 18;
--font-size-sp: 16;
--font-bld: 600;
--font-nml: 500;
--color-def: #222;
--color-theme: #DE3F1B;
--color-theme-hover: #EA6548;
--color-theme-gld: #B49646;
--color-theme-gry: #666;
--color-bg-gry: #f7f7f7;
--color-bg-bei: #FCFCF7;
--color-bg-theme: #FDEDEA;
--sec-mt: 7rem;
--sec-mt-sp: 4rem;
--border-color: #ddd;
}
html {font-size: calc( var(--font-size) / 16 * 1rem );}
body {font-family: "Zen Kaku Gothic New","Noto Sans JP","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP","Yu Gothic",Meiryo,sans-serif;font-feature-settings: "palt";font-weight: var(--font-nml);line-height: 1.79;letter-spacing: 0.1rem;margin: 0;padding: 0;color: var(--color-def);display: flex;flex-direction: column;min-height: 100vh;}
@media (max-width: 1180px) {
	html {font-size: calc( var(--font-size-sp) / 16 * 1rem );}
}
/*=================================================================================================
  Layout
=================================================================================================*/
header {color: #fff;}
nav ul {list-style-type: none;padding: 0;}
nav ul li {display: inline;margin-right: 10px;}
main {flex: 1;width: 100%;}
.content-area {width: 100%;}
.sub-content-wrap {display: flex;flex-wrap: wrap;justify-content: space-between;align-items: stretch;box-sizing:border-box;padding:0 5%;}
.sub-content-area {width: calc(95% - 300px);order: 2;}
#secondary {width: 300px;order: 1;}
footer {color: var(--color-def);margin-top: 5rem;padding: 3rem 0 1rem;border-top: 1px solid var(--border-color);width: 100%;}
.sticky-wrap {position: sticky;top: 170px;}
@media (max-width: 1180px) {
	.sub-content-area {width: calc(95% - 250px);}
	#secondary {width: 250px;}
}
@media (max-width: 834px) {
	.sub-content-area {width: 100%;margin-bottom: 3rem;order: 1;}
	#secondary {width: 100%;order: 2;}
}
@media (max-width: 500px) {
	footer {padding: 2rem 0 4rem;}
}
/*
Loading
-------------------------------------------------------------------------------------------------*/
/********** #loader SlideOut **********/
#loader1,#loader2,#loader3 {display: block;position: fixed;top: 0;left: 0;width: 100%;height: 100vh;z-index: 101;background-color: #fff;}
#loader1 .loading-logo,#loader2 .loading-logo {position: absolute;top: 0;left: 0;right: 0;bottom: 0;margin: auto;width: 160px;height: 50px;text-align: center;color: #fff;font-size: 30px;}
#loader1 .loading-logo img,#loader2 .loading-logo img {width: 100%;height: auto;}
#loader1 .loading-logo::before {content: "";display: block;width: 100%;height: 110%;background-color: red;position: absolute;top: 0;left: 100%;animation: loadLogo 1.5s;}
@keyframes loadLogo {
	0% {left: 0;}50% {left: 0;}100% {left: 100%;}
}
#loader1.open {animation: slideOut forwards 2s 2s;}
@keyframes slideOut {
	0% {transform: translateX(0%);}50% {transform: translateX(0%);}100% {transform: translateX(100%);}
}
/* #loader2 FadeInOut */
#loader2 .loading-logo {animation: loadLogo2 1s;}
@keyframes loadLogo2 {
	0% {transform: scale(0);}70% {transform: scale(0);}100% {transform: scale(1);}
}
#loader2.open {animation-name: fadeOut;animation-fill-mode: forwards;animation-duration: 2s;animation-delay: 2s;}
@keyframes fadeOut {
	0% {transform: scale(1);}80% {transform: scale(1);}100% {transform: scale(0);}
}
/* #loader3 LOGO UnderFadeIn */
#loader3 {display: flex;align-items: center;justify-content: center;animation: underFadeIn 1.5s 2.5s forwards;}
@keyframes underFadeIn {
	0% {opacity: 1;}100% {opacity: 0;visibility: hidden;}
}
#loader3 .loading-logo {opacity: 0;animation: logo-fadeIn 2s 0.5s forwards;width: 160px;}
@keyframes logo-fadeIn {
	0% {opacity: 0;transform: translateY(20px);}60% {opacity: 1;transform: translateY(0);}100% {opacity: 0;}
}
/********** #loader4 ShutterOpen **********/
#loader4 {position: fixed;top: 0;left: 0;right: 0;bottom: 0;background-color: #1e1e1e;z-index: 9999;animation: byeShutter 2.6s forwards;}
#loader4::before {content: '';position: absolute;top: 0;left: 0;bottom: 0;margin: auto;background-color: #f3f3f3;width: 0;height: 1px;animation: shutterOpen 2.6s forwards;}
@keyframes byeShutter {
	70% {opacity: 1;}100% {opacity: 0;display: none;z-index: -1;}
}
@keyframes shutterOpen {
	0% {width: 0;height: 1px;}50% {width: 100%;height: 1px;}90% {width: 100%;height: 100%;}100% {width: 100%;height: 100%;}
}
/*
Inner
-------------------------------------------------------------------------------------------------*/
.wide-inner {box-sizing:border-box;padding:0 var(--both-ends);width:100%;}
.inner {margin:0 auto;width:1280px;}
@media (max-width: 1920px) {
	.wide-inner {padding:0 5%;}
}
@media (max-width: 1366px) {
	.inner {width:89.84375%;}
}
@media (max-width: 960px) {
	.inner {box-sizing:border-box;padding:0 5%;width:100%;}
}
/*
Heading @320px to @1200px
-------------------------------------------------------------------------------------------------*/
h1, h2, h3, h4, h5, h6 {font-weight: var(--font-bld);color: var(--colo-def);margin: 7rem 0 .5rem;}
h1 {font-size: clamp(2.375rem, 2.148rem + 1.14vw, 3rem);}/* @38px to @48px */
h2 {font-size: clamp(1.875rem, 1.648rem + 1.14vw, 2.5rem);}/* @30px to @40px */
h3 {font-size: clamp(1.438rem, 1.21rem + 1.14vw, 2.063rem);}/* @23px to @33px */
h4 {font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);}/* @20px to @28px */
h5 {font-size: clamp(1.125rem, 1.011rem + 0.57vw, 1.438rem);}/* @18px to @23px */

/*
Image Icon
-------------------------------------------------------------------------------------------------*/
img {max-width: 100%;height: auto;}
/*
Link
-------------------------------------------------------------------------------------------------*/
.link-area {position: relative;transition: 0.3s;}
.link-area .link {position: absolute;display: block;top: 0;left: 0;width: 100%;height: 100%;}
.link-area:hover {opacity: 0.7;}
/* anchor */
a.anchor {display: block;}
/********** 外部リンクボタン **********/
a.obl-btn {display:inline-block;border: 1px solid #000;margin: .5rem 0;padding: .6rem 1.5rem;color: var(--color-def);text-decoration: none;transition: .3s;}
a.obl-btn[href^="http"]:after,
a.obl-btn[href^="//"]:after {margin: 0 0 0 5px;position: relative;top: 2px;font-family: "Material Icons";content: '\e89e';}
a.obl-btn[href^="http://arrowscms14.xsrv.jp/test"]:after {margin: inherit;font-family: inherit;content: '';font-weight: inherit;}
a:hover.obl-btn {opacity: .6;}
@media (max-width: 500px) {
	a.obl-btn {display:block;text-align: center;}
}
/* 
PDF
-------------------------------------------------------------------------------------------------*/
/********** PDFリンクボタン **********/
a.pdf-btn {display: block;width:300px;color: var(--color-def);border: 1px solid var(--color-theme);box-sizing: border-box;padding: .6rem 1.5rem .6rem 3.8rem;text-align: left;text-decoration: none;position: relative;transition-duration: 0.3s;}
a.pdf-btn:hover {  opacity: .7;}
a.pdf-btn:before {display: inline-block;position: absolute;top: 50%;transform: translateY(-50%);left: .7rem;font-family: "Material Icons";content: '\e415';font-size: calc(22 / 16 * 1rem);}
a.pdf-btn:after {content: "";display: inline-block;width: 1px;height: 100%;background-color: var(--color-theme);box-shadow: 0px 0px 2px 0px rgb(255, 255, 255);position: absolute;top: 0;left: 2.8rem;}
@media (max-width: 1180px) {
	a.pdf-btn:before {margin-top: .1rem;}
}
@media (max-width: 500px) {
	a.pdf-btn {width:100%;}
}
/********** PDF制御 **********/
@media (max-width: 1180px){
	.wp-block-file:before {content: "※下記のPDFは1枚目のみの表示となっております。全てを閲覧する場合は、下記の「～を閲覧する」をタップしてご覧ください。ダウンロードの場合は、ダウンロードボタンをタップしてください。";color: red;}
	.wp-block-file a {font-size: 1.6rem;}
	.wp-block-file a:after {content: "の全てを閲覧する";}
	a.wp-block-file__button:after {content: ""!important;}
	a.wp-element-button:after {content: ""!important;}
	.wp-block-file .wp-block-file__embed {display: block!important;}
}
/* 
Tel-to-link
-------------------------------------------------------------------------------------------------*/
a.tel {color: var(--color-def);text-decoration: none;font-size: 120%;font-weight: var(--font-bld);}
a.tel::before {font-family: "Material Icons";content: "\e0b0";font-size: 85%;margin-right: .3rem;position: relative;top: .1rem;}
/********** 電話番号リンクをスマホのみ有効 **********/
a[href*="tel:"] {color: inherit;text-decoration: none;}
a:hover[href*="tel:"] {opacity: 1;}
@media (min-width: 501px) {
	a[href*="tel:"] {pointer-events: none;}
}
/*
Ul Ol Design
-------------------------------------------------------------------------------------------------*/
/********** maru-lst **********/
ul.maru-lst {list-style: none;margin: 0;padding: 0;}
ul.maru-lst li {position: relative;padding-left: 24px;}
ul.maru-lst li::before {content: '';display: inline-block;position: absolute;top: 10px;left: 0;width: 10px;height: 10px;background-color: var(--color-theme);border-radius: 5px;}
/********** num-lst **********/
ol.num-lst li::marker {font-weight: var(--font-bld);color: var(--color-theme);}
/*
Table
-------------------------------------------------------------------------------------------------*/
table {border-collapse: collapse;border-spacing: 0;width: 100%;margin: 1rem 0;}
table th,table td {border: 1px solid #ddd;padding: 10px;}
table th {background: var(--color-bg-gry);text-align: left;}
/********** Rps-table **********/
@media (max-width: 640px) {
	.rps-table {border: 1px solid #ccc;}
	.rps-table tr {border-bottom: 1px solid #ddd;}
	.rps-table tr:last-child {border-bottom: none;}
	.rps-table th, .rps-table td {display: list-item;list-style-type: none;border: none;}
	.rps-table th {width: 100%;}
}
/********** Cp-table **********/
.cp-table td p {margin-bottom: 0;}
@media (max-width: 640px) {
	.cp-table {border: 1px solid #ccc;}
	.cp-table thead {display:none;}
	.cp-table tbody tr {border-bottom: 1px solid #ddd;}
	.cp-table tbody th {display:block;width: 100%;border: none;}
	.cp-table tbody td {display:block;border: none;border-bottom:1px dotted #ddd;}
	.cp-table tbody td::before {content: attr(label);float: left;clear:both;font-weight:bold;}
	.cp-table tbody td:last-child {border-bottom: none;}
	.cp-table tbody td p,.cp-table tbody td ul {margin: 0;padding:0 0 0 10em;}
}
/********** scroll **********/
.scroll {overflow: auto;}
.scroll table {table-layout: fixed;margin: 1.5rem 0;}
@media (max-width: 834px){
	.scroll table {width: 1080px;}
}
/*
Box
-------------------------------------------------------------------------------------------------*/
/********** box01 角丸グレー背景 **********/
.box01 {margin: .5rem 0;padding: 1rem;background-color: var(--color-bg-gry);border: 1px solid var(--border-color);border-radius: 8px;}
/********** box02 シャドー付き白背景 **********/
.box02 {margin: .5rem 0;padding: 1rem;background-color: #fff;border: 1px solid var(--border-color);box-shadow: 0 1px 3px 0 rgba(195, 195, 195, 0.3);}
/********** box03 点線枠白背景 **********/
.box03 {margin: .5rem 0;padding: 1rem;border: 1px dashed #cdcdcd;background: #fcfcfc;box-shadow: 0 1px 3px 0 rgba(195, 195, 195, 0.3);}
/********** box04 色背景 **********/
.box04 {margin: .5rem 0;padding: 1rem;background: #FFF2CC;box-shadow: 0 1px 3px 0 rgba(195, 195, 195, 0.3);}
/*
Font
-------------------------------------------------------------------------------------------------*/
.content-area p,.sub-content-area p {margin-bottom: 1.5rem;}
/********** font-family **********/
.ffG {font-family: "Zen Kaku Gothic New","Noto Sans JP","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans","Noto Sans JP","Yu Gothic",Meiryo,sans-serif;}
.ffM {font-family: "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;}
.fwB {font-weight: var(--font-bld);}
.fwN {font-weight: var(--font-nml);}
/********** font-size **********/
.text50 {font-size: 50%!important;}.text60 {font-size: 60%!important;}.text70 {font-size: 70%!important;}.text80 {font-size: 80%!important;}.text90 {font-size: 90%!important;}.text100 {font-size: 100%!important;}.text110 {font-size: 110%!important;}.text120 {font-size: 120%!important;}.text130 {font-size: 130%!important;}.text140 {font-size: 140%!important;}.text150 {font-size: 150%!important;}.text160 {font-size: 160%!important;}.text170 {font-size: 170%!important;}.text180 {font-size: 180%!important;}.text190 {font-size: 190%!important;}.text200 {font-size: 200%!important;}
/********** font-color **********/
.red {color: red!important;}.white {color: white!important;}
/********** text-align **********/
.taL {text-align: left!important;}.taC {text-align: center!important;}.taR {text-align: right!important;}
.right {margin: 0 0 0 auto!important;}
/* 
Widget_categories
-------------------------------------------------------------------------------------------------*/
.widget_categories {margin-top: 2rem;border-top: 1px solid var(--border-color);}
.widget_categories h2.widgettitle {display: none;}
.widget_categories ul {list-style-type: none;margin: 0;padding: 0;border-bottom: none;}
.widget_categories ul li {border-bottom: 1px solid var(--border-color);position: relative;}
.widget_categories ul li::after {position: absolute;top: 1.5rem;right: 10px;content: '';width: 7px;height: 7px;border-top: 2px solid var(--color-theme);border-right: 2px solid var(--color-theme);transform: rotate(45deg); transition: all .3s;}
.widget_categories ul li a {display: block;padding: .7rem;color: var(--color-def);text-decoration: none;transition: .3s;}
.widget_categories ul li a:hover {color: var(--color-theme);background: var(--color-bg-gry);}
.widget_categories ul li ul.children li {margin-left: 1rem;}
.widget_categories ul li ul.children li:first-child {border-top: 1px solid var(--border-color);}
.widget_categories ul li ul.children li:last-child {border-bottom: none;}
/* 
Css-scroll-animetion
-------------------------------------------------------------------------------------------------*/
/********** scroll-in ｜ 出現 **********/
.scroll-in {transition: 0.8s ease-in-out;opacity: 0.1;}
.scroll-in.on {opacity: 1.0;}
/********** scroll-up ｜ 下から上へ出現 **********/
.scroll-up {transition: 0.8s ease-in-out;transform: translateY(30px);opacity: 0;}
.scroll-up.on {transform: translateY(0);opacity: 1.0;}
/********** scroll-left ｜ 左から出現 **********/
.scroll-left {transition: 0.8s ease-in-out;transform: translateX(-30px);opacity: 0;filter: alpha(opacity=0);-moz-opacity: 0;}
.scroll-left.on {opacity: 1.0;filter: alpha(opacity=100);-moz-opacity: 1.0;transform: translateX(0);}
/********** scroll-right ｜ 右から出現 **********/
.scroll-right {transition: 0.8s ease-in-out;transform: translateX(30px);opacity: 0;filter: alpha(opacity=0);-moz-opacity: 0;}
.scroll-right.on {opacity: 1.0;filter: alpha(opacity=100);-moz-opacity: 1.0;transform: translateX(0);}
/********** timing ｜ 時差 **********/
.timing02 {transition-delay: .2s;}
.timing03 {transition-delay: .4s;}
.timing04 {transition-delay: .6s;}
.timing05 {transition-delay: .8s;}
/********** text-anime ｜ 1文字ずつ出現 **********/
.txt-anime span {opacity: 0;}
.txt-anime.appeartext span { animation:text_anime_on 1s ease-out forwards; }
@keyframes text_anime_on {0% {opacity:0;}100% {opacity:1;}}
/*
Page-top
-------------------------------------------------------------------------------------------------*/
/********** pagetop1 四角 **********/
.pagetop1 {width: 40px;height: 40px;position: fixed;right: 0;bottom: 0;background: var(--color-theme);transition: .3s;}
.pagetop1 a {width: 40px;height: 40px;position: relative;display: block;text-decoration: none;transition: .3s;}
.pagetop1 a::before {content: "";display: block;width: 10px;height: 10px;border-top: 1px solid #fff;border-right: 1px solid #fff;transform: rotate(-45deg);position: absolute;top: 5px;bottom: 0;right: 0;left: 0;margin: auto;text-align: center;}
.pagetop1:hover {opacity: 0.7;}
/********** pagetop1 四角 **********/
.pagetop2 {width: 40px;height: 40px;position: fixed;right: 0;bottom: 0;border: 1px solid var(--color-theme);background: rgba(255,255,255,.7);}
.pagetop2 a {width: 40px;height: 40px;position: relative;display: block;text-decoration: none;transition: .3s;}
.pagetop2 a::before {content: "";display: block;width: 10px;height: 10px;border-top: 1px solid var(--color-theme);border-right: 1px solid var(--color-theme);transform: rotate(-45deg);position: absolute;top: 10px;bottom: 0;right: 0;left: 0;margin: 0 auto;text-align: center;}
.pagetop2 a::after {content: "上部へ";position: absolute;bottom: 3px;right: 0;left: 0;margin: auto;text-align: center;font-size: 10px;letter-spacing: 0.01rem;font-weight: var(--font-bld);color: var(--color-theme);}
.pagetop2 a:hover {opacity: 0.7;}
/********** pagetop3 上片方矢印PAGETOP **********/
.pagetop3 {position: fixed;right: 1rem;bottom: 0;display: inline-block;width: 2px;height: 44px;margin-right: 10.6px;border-radius: 9999px;background-color: var(--color-theme);cursor: pointer;}
.pagetop3::before {content: "";position: absolute;top: 0;left: calc(50% - 1px);width: 2px;height: 17px;border-radius: 9999px;background-color: var(--color-theme);transform: rotate(-45deg);transform-origin: 50% 1px;}
.pagetop3::after {content: "PAGETOP";writing-mode: vertical-rl;position: absolute;bottom: 0;right: 3px;font-size: calc(8 / 16 * 1rem);letter-spacing: 0.01rem;font-weight: var(--font-bld);}
.pagetop3 a {display: block;width: 100%;height: 100%;transition: .3s;}
.pagetop3:hover {opacity: 0.7;}
/********** pagetop4 上矢印 **********/
.pagetop4 {width: 40px;position: fixed;right: 0;bottom: 0;border-top: 3px solid var(--color-theme);text-align: center;cursor: pointer;transition: .3s;}
.pagetop4::before {display:none;}
.pagetop4::after {content:"";display:inline-block;width: 32.5px;height: 27px;background: var(--color-theme);clip-path: polygon(0 60.2%, 50% 0, 100% 60.2%, 73.1% 60.2%, 73.1% 100%, 26.9% 100%, 26.9% 60.2%);position: relative;top: 5px;}
.pagetop4:hover {opacity: 0.7;}
/*=================================================================================================
# Margin-Padding
=================================================================================================*/
.main-mt {margin-top: var(--sec-mt);}
.no-obi-mt {margin-top: 7rem;}
/* 
Margin
-------------------------------------------------------------------------------------------------*/
.m0 {margin: 0!important;}.mt0 {margin-top: 0!important;}.mr0 {margin-right: 0!important;}.mb0 {margin-bottom: 0!important;}.ml0 {margin-left: 0!important;}
.m05rem {margin: 0.5rem!important;}.mt05rem {margin-top: 0.5rem!important;}.mr05rem {margin-right: 0.5rem!important;}.mb05rem {margin-bottom: 0.5rem!important;}.ml05rem {margin-left: 0.5rem!important;}
.m1rem {margin: 1rem!important;}.mt1rem {margin-top: 1rem!important;}.mr1rem {margin-right: 1rem!important;}.mb1rem {margin-bottom: 1rem!important;}.ml1rem {margin-left: 1rem!important;}
.m2rem {margin: 2rem!important;}.mt2rem {margin-top: 2rem!important;}.mr2rem {margin-right: 2rem!important;}.mb2rem {margin-bottom: 2rem!important;}.ml2rem {margin-left: 2rem!important;}
.m3rem {margin: 3rem!important;}.mt3rem {margin-top: 3rem!important;}.mr3rem {margin-right: 3rem!important;}.mb3rem {margin-bottom: 3rem!important;}.ml3rem {margin-left: 3rem!important;}
.m4rem {margin: 4rem!important;}.mt4rem {margin-top: 4rem!important;}.mr4rem {margin-right: 4rem!important;}.mb4rem {margin-bottom: 4rem!important;}.ml4rem {margin-left: 4rem!important;}
.m5rem {margin: 5rem!important;}.mt5rem {margin-top: 5rem!important;}.mr5rem {margin-right: 5rem!important;}.mb5rem {margin-bottom: 5rem!important;}.ml5rem {margin-left: 5rem!important;}
.m6rem {margin: 6rem!important;}.mt6rem {margin-top: 6rem!important;}.mr6rem {margin-right: 6rem!important;}.mb6rem {margin-bottom: 6rem!important;}.ml6rem {margin-left: 6rem!important;}
.m7rem {margin: 7rem!important;}.mt7rem {margin-top: 7rem!important;}.mr7rem {margin-right: 7rem!important;}.mb7rem {margin-bottom: 7rem!important;}.ml7rem {margin-left: 7rem!important;}
.m8rem {margin: 8rem!important;}.mt8rem {margin-top: 8rem!important;}.mr8rem {margin-right: 8rem!important;}.mb8rem {margin-bottom: 8rem!important;}.ml8rem {margin-left: 8rem!important;}
.m9rem {margin: 9rem!important;}.mt9rem {margin-top: 9rem!important;}.mr9rem {margin-right: 9rem!important;}.mb9rem {margin-bottom: 9rem!important;}.ml9rem {margin-left: 9rem!important;}
.m10rem {margin: 10rem!important;}.mt10rem {margin-top: 10rem!important;}.mr10rem {margin-right: 10rem!important;}.mb10rem {margin-bottom: 10rem!important;}.ml10rem {margin-left: 10rem!important;}
/* 
Padding
-------------------------------------------------------------------------------------------------*/
.p0 {padding: 0!important;}.pt0 {padding-top: 0!important;}.pr0 {padding-right: 0!important;}.pb0 {padding-bottom: 0!important;}.pl0 {padding-left: 0!important;}
.p05rem {padding: 0.5rem!important;}.pt05rem {padding-top: 0.5rem!important;}.pr05rem {padding-right: 0.5rem!important;}.pb05rem {padding-bottom: 0.5rem!important;}.pl05rem {padding-left: 0.5rem!important;}
.p1rem {padding: 1rem!important;}.pt1rem {padding-top: 1rem!important;}.pr1rem {padding-right: 1rem!important;}.pb1rem {padding-bottom: 1rem!important;}.pl1rem {padding-left: 1rem!important;}
.p2rem {padding: 2rem!important;}.pt2rem {padding-top: 2rem!important;}.pr2rem {padding-right: 2rem!important;}.pb2rem {padding-bottom: 2rem!important;}.pl2rem {padding-left: 2rem!important;}
.p3rem {padding: 3rem!important;}.pt3rem {padding-top: 3rem!important;}.pr3rem {padding-right: 3rem!important;}.pb3rem {padding-bottom: 3rem!important;}.pl3rem {padding-left: 3rem!important;}
.p4rem {padding: 4rem!important;}.pt4rem {padding-top: 4rem!important;}.pr4rem {padding-right: 4rem!important;}.pb4rem {padding-bottom: 4rem!important;}.pl4rem {padding-left: 4rem!important;}
.p5rem {padding: 5rem!important;}.pt5rem {padding-top: 5rem!important;}.pr5rem {padding-right: 5rem!important;}.pb5rem {padding-bottom: 5rem!important;}.pl5rem {padding-left: 5rem!important;}
.p6rem {padding: 6rem!important;}.pt6rem {padding-top: 6rem!important;}.pr6rem {padding-right: 6rem!important;}.pb6rem {padding-bottom: 6rem!important;}.pl6rem {padding-left: 6rem!important;}
.p7rem {padding: 7rem!important;}.pt7rem {padding-top: 7rem!important;}.pr7rem {padding-right: 7rem!important;}.pb7rem {padding-bottom: 7rem!important;}.pl7rem {padding-left: 7rem!important;}
.p8rem {padding: 8rem!important;}.pt8rem {padding-top: 8rem!important;}.pr8rem {padding-right: 8rem!important;}.pb8rem {padding-bottom: 8rem!important;}.pl8rem {padding-left: 8rem!important;}
.p9rem {padding: 9rem!important;}.pt9rem {padding-top: 9rem!important;}.pr9rem {padding-right: 9rem!important;}.pb9rem {padding-bottom: 9rem!important;}.pl9rem {padding-left: 9rem!important;}
.p10rem {padding: 10rem!important;}.pt10rem {padding-top: 10rem!important;}.pr10rem {padding-right: 10rem!important;}.pb10rem {padding-bottom: 10rem!important;}.pl10rem {padding-left: 10rem!important;}
/*=================================================================================================
  Page - Single Common
=================================================================================================*/
/*
Signage
-------------------------------------------------------------------------------------------------*/
.signage {background: #eaeaea;background-repeat: no-repeat;background-position: center center;background-size: cover;display: table;height: 50vh;position: relative;width: 100%;}
.not-signage {background: #eaeaea;background-repeat: no-repeat;background-position: center center;background-size: cover;display: table;height: 10vh;position: relative;width: 100%;}
.signage-content {display: table-cell;color: var(--color-def);text-align: center;vertical-align: middle;}
.signage-title {font-size: clamp(1.438rem, 1.21rem + 1.14vw, 2.063rem);}
@media (max-width: 480px) {
	.signage {height:30vh;}
}
/*
Breadcrumb
-------------------------------------------------------------------------------------------------*/
.breadcrumb-content {padding: .2rem var(--both-ends);font-size: 80%;}
.breadcrumb-content ul {list-style: none;padding: 0;}
.breadcrumb-content ul li {display: inline;}
.breadcrumb-content ul li a {color: inherit;text-decoration: none;}
.breadcrumb-content ul li + li::before {content: ">";margin:.5em;}
@media (max-width: 1920px) {
	.breadcrumb-content {padding: .2rem var(--both-ends-sp);}
}
/*
Prev-next navi
-------------------------------------------------------------------------------------------------*/
#prev-next {display: flex;justify-content: space-between;border-top: 1px solid var(--border-color);border-bottom: 1px solid var(--border-color);padding: 1rem 0;}
#prev-next a {color: var(--color-def);text-decoration: none;}
#prev-next p {font-size: 90%;margin-bottom: 0;}
#prev-next #prev {margin-right: .8rem;}
#prev-next #prev-title::before,#prev-next #next-title::after {font-family: "Material Icons";content: "\e5c4";margin-right: .5rem;position: relative;top: .1rem;color: var(--color-theme);}
#prev-next #next-title::after {content: "\e5c8";margin-right: 0;margin-left: .5rem;}
/*
Toback-wrap
-------------------------------------------------------------------------------------------------*/
.toback-wrap {text-align: center;margin-top: 2rem;}
.toback {position: relative;display: inline-block;padding: .9em 4em;background-color: var(--color-theme);color: #fff;text-align: center;text-decoration: none;}
.toback::after {position: absolute;top: 50%;right: .8em;content: '';margin-top: -5px;border: 7px solid transparent;border-top-width: 5px;border-bottom-width: 5px;border-left-color: #fff;opacity: 0;}
.toback:hover::after {animation: arrow 1.2s infinite;}
@keyframes arrow {50% {right: .2em;opacity: 1;}100% {right: -.4em;opacity: 0;}}
/*
Pagination
-------------------------------------------------------------------------------------------------*/
.pagination {margin: 4rem 0;text-align: center;}
.pagination ul {font-size: 0;list-style: none;padding: 0;}
.pagination ul li {font-size: 1rem;display: inline-block;margin-right: .75rem;}
.pagination ul li:last-child {margin-right: 0;border: 0;}
.pagination ul li a,.pagination ul li .current {font-weight: 600;line-height: 1;display: block;padding: .75rem .875rem;border: 1px solid #ddd;}
.pagination ul li a {text-decoration: none;color: var(--color-def);}
.pagination ul li .current {color: #fff;background-color: var(--color-theme);}
.pagination ul li .prev,.pagination ul li .next {padding: .75rem .5rem;border: 0;}
.pagination ul li i {font-size: 1rem;color: #1d2d43;}
@media (max-width: 580px) {
	.pagination {margin: 3rem 0;}
	.pagination ul li a {padding: .5rem .675rem;}
}
/*
Side-menu
-------------------------------------------------------------------------------------------------*/
#secondary li::marker {content:'';}
#secondary li{list-style-type: none;}
.side-menu {margin:3em 0;}
.side-menu ul {list-style-type: none;margin: 0;padding: 0;}
.side-menu ul.s-navi {border-bottom: none;}
.side-menu ul.s-navi li {border-bottom: 1px solid var(--border-color);position: relative;}
.side-menu ul.s-navi li::after {position: absolute;top: 45%;right: 10px;content: '';width: 7px;height: 7px;border-top: 2px solid var(--border-color);border-right: 2px solid var(--border-color);transform: rotate(45deg); transition: all .3s;}
.side-menu ul.s-navi li:hover::after {right: 5px;border-top: 2px solid var(--color-theme);border-right: 2px solid var(--color-theme);}
.side-menu ul.s-navi li a {display: block;padding: .7rem;color: var(--color-def);text-decoration: none;transition: .3s;}
.side-menu ul.s-navi li a:hover {color: var(--color-theme);}
/* 現在値 */
.side-menu ul.s-navi li.current_page_item::after {border-top: 2px solid var(--color-theme);border-right: 2px solid var(--color-theme);}
.side-menu ul.s-navi li.current_page_item a {color: var(--color-theme);}
/* 先頭 */
.side-menu ul.s-navi li:first-child::before {position: absolute;content: "\e5df";font-family: "Material Icons";padding: .25rem;color: var(--color-theme);font-size: 140%;}
.side-menu ul.s-navi li:first-child::after {border-top: none;border-right: none;}
.side-menu ul.s-navi li:first-child a {padding: .5rem .7rem .7rem 1.7rem;font-weight: var(--font-bld);}
.side-menu ul.s-navi li:first-child a:hover {padding: .5rem .7rem .7rem 2rem;}
/*=================================================================================================
  Single
=================================================================================================*/
/* 
Cat-ymd-wrap
-------------------------------------------------------------------------------------------------*/
.cat-ymd-wrap {display: flex;justify-content: space-between;font-size: 80%;margin-top: .5rem;}
.cat-ymd-wrap .ymd {display: inline-block;background: var(--color-theme);color: #fff;padding: 0 .5rem .1rem;}
.cat-ymd-wrap .cat a {border: 1px solid var(--border-color);color: var(--color-def);text-decoration: none;padding: .1rem .5rem .2rem;}
.single-signage-title {margin: 1rem 0 3rem;font-size: clamp(1.25rem, 1.068rem + 0.91vw, 1.75rem);}
@media (max-width: 768px) {
	.cat-ymd-wrap {flex-direction: column;}
	.cat-ymd-wrap .ymd {display: block;margin-bottom: 1rem;}
}
/*=================================================================================================
  Archive
=================================================================================================*/
/* 
Archive-cnt-wrap
-------------------------------------------------------------------------------------------------*/
ul.archive-cnt-wrap {position: relative;display: flex;flex-flow: row wrap;border-bottom: 1px solid var(--border-color);padding: 2rem 0;transition: .3s;}
ul.archive-cnt-wrap:first-of-type {border-top: 1px solid var(--border-color);}
ul.archive-cnt-wrap li {display: block;margin: 0 .5rem;}
ul.archive-cnt-wrap li:first-child {flex-basis: 150px;}
ul.archive-cnt-wrap li:nth-child(2) {background: var(--color-theme);color: #fff;font-size: 70%;padding: .2rem .5rem 0;text-align: center;}
ul.archive-cnt-wrap li:nth-child(3) {flex-basis: auto;}
ul.archive-cnt-wrap::after {position: absolute;top: 50%;transform: translateY(-50%);right: 0;font-family: "Material Icons";content: "\e089";font-size: 120%;}
ul.archive-cnt-wrap .link {display: block;position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
ul.archive-cnt-wrap:hover {background: var(--color-bg-gry);}
@media (max-width: 1180px) {
	ul.archive-cnt-wrap li:first-child {flex-basis: 120px;}
}
@media (max-width: 950px) {
	ul.archive-cnt-wrap li:nth-child(3) {flex-basis: 100%;margin-top: .5rem;}
}
/*
Archive-eyecatch
-------------------------------------------------------------------------------------------------*/
/********** archive-nav-menu **********/
.archive-nav-menu {width: 100%;margin-bottom: 2rem;position:relative;z-index: 1;}
ul.archive-nav {display: table;list-style: none;padding: 0;}
ul.archive-nav li {display: table-cell;margin-right: 2rem;border: 1px solid var(--border-color);}
ul.archive-nav li a {display: block;color: var(--color-def);text-decoration: none;padding: 1em;transition: all .2s ease-in;}
ul.archive-nav li a:hover {opacity: 0.7;}
ul.archive-nav li:not(:first-child) {border-left: none;}
ul.archive-nav li:hover {color: var(--color-def);background: var(--color-bg-gry);}
ul.archive-nav li:hover ul {max-height: 9999px;opacity: 1;}
ul.archive-nav li ul {transition:all .2s ease-in;max-height: 0;opacity: 0;overflow: hidden;width: 100%;left: 0;position: absolute;background: var(--color-bg-gry);}
ul.archive-nav li ul.children {padding: .3rem var(--both-ends) .1rem;}
ul.archive-nav li ul.children li {display: inline-block;margin: 0 .5rem;border: none;}
ul.archive-nav li ul.children li+ li {border-left: 1px solid var(--border-color);}
@media (max-width: 1920px) {
	ul.archive-nav li ul.children {padding: .3rem var(--both-ends-sp) .1rem;}
}
@media (max-width: 500px) {
	ul.archive-nav li ul.children li {display: block;}
	ul.archive-nav li ul.children li+ li {border-left: none;border-top: 1px solid var(--border-color);}
}
/********** archive-eye-wrap **********/
.archive-eye-wrap {display: flex;flex-wrap: wrap;justify-content: space-between;align-items: stretch;}
.archive-eye-wrap::before {content: "";display: block;height: 0;order: 1;}
.archive-eye-wrap::after {content: "";display: block;height: 0;}
.archive-eye-wrap::before,.archive-eye-wrap::after,.archive-eye-col {width: 24%;margin-bottom: 2rem;}
.archive-eye-col {background: var(--color-bg-gry);cursor: pointer;}
.archive-eye-col a {color: var(--color-def);text-decoration: none;}
.archive-eye-col img {display: block;width: 100%;height: 400px;object-fit: cover;font-family: 'object-fit: cover;';}
.archive-eye-col-txtarea {padding: 1.5rem;}
.archive-eye-col-txtarea .ymd {font-size: 90%;}
.archive-eye-col-txtarea .ttl {font-weight: var(--font-bld);margin-bottom: .5rem;}
.archive-eye-col-txtarea ul.post-categories {list-style: none;padding-left: 0;font-size: 90%;}
.archive-eye-col-txtarea ul.post-categories li {display: inline-block;border: 1px solid var(--border-color);margin-bottom: .3rem;padding: .1rem .5rem;}
.archive-eye-col-txtarea ul.post-categories li a {display: block;width: 100%;height: 100%;text-decoration: none;color: var(--color-def);}
@media (max-width: 1780px) {
	.archive-eye-col img {height: 300px;}
}
@media (max-width: 1300px) {
	.archive-eye-col img {height: 250px;}
}
@media (max-width: 1024px) {
	.archive-eye-wrap::before,.archive-eye-wrap::after,.archive-eye-col {width: 48%;}
}
@media (max-width: 500px) {
	.archive-eye-wrap {flex-direction: column;}
	.archive-eye-wrap::before,.archive-eye-wrap::after,.archive-eye-col {width: 100%;}
}
/*=================================================================================================
  Search
=================================================================================================*/
/*
Search-form
-------------------------------------------------------------------------------------------------*/
.widget_search label {display: none;}
input.wp-block-search__input,.wp-block-search__button {height: 40px;}
.wp-block-search__button {background: var(--color-theme);padding: 0 .5rem;transition: .3s;}
.wp-block-search__button i {vertical-align: middle;color: #fff;}
.wp-block-search__button:hover {opacity: 0.7;}
/*
Search-cnt-wrap
-------------------------------------------------------------------------------------------------*/
ul.search-cnt-wrap {position: relative;display: flex;flex-flow: row wrap;border-bottom: 1px solid var(--border-color);padding: 2rem 0;transition: .3s;}
ul.search-cnt-wrap:first-of-type {border-top: 1px solid var(--border-color);}
ul.search-cnt-wrap::after {position: absolute;top: 50%;transform: translateY(-50%);right: 0;font-family: "Material Icons";content: "\e089";font-size: 120%;}
ul.search-cnt-wrap li {display: block;margin: 0 .5rem;padding-right: 1.5rem;}
ul.search-cnt-wrap li:first-child {font-size: 110%;font-weight: var(--font-bld);}
ul.search-cnt-wrap .link {display: block;position: absolute;top: 0;left: 0;width: 100%;height: 100%;}
ul.search-cnt-wrap:hover {background: var(--color-bg-gry);}
/*=================================================================================================
  404
=================================================================================================*/
/*
404-ttl-area
-------------------------------------------------------------------------------------------------*/
.notfound-ttl-area {background: #e0e0e0;padding: 2rem;margin-bottom: 5rem;}
.notfound-area {margin-top: 2rem;padding-top: 2rem;border-top: 1px solid #ccc;}
a.notfound-btn {display: block;box-sizing: border-box;text-decoration: none;text-align: center;color: var(--color-def);border: 1px solid #666;max-width: 250px;margin: 2rem auto 0;padding: 1rem;transition: .3s;}
a.notfound-btn:hover {background: #fff;}
/*=================================================================================================
  Footer
=================================================================================================*/
/* 
Footer-adds-area
-------------------------------------------------------------------------------------------------*/
.footer-adds-area {margin-bottom: 1rem;}
.footer-adds-area p {font-size: calc(14 / 16 * 1rem);}
/* 
Footer-nav-area-wrap
-------------------------------------------------------------------------------------------------*/
.footer-nav-area {margin-bottom: 3rem;font-size: calc(14 / 16 * 1rem);}
.footer-nav-area .footer_menu a {color: var(--color-def);text-decoration: none;}
.footer-nav-area .footer_menu a:hover {opacity: .8;}
.footer-nav-area .footer_menu ul {margin: 0;padding: 0;list-style:none;}
.footer-nav-area .footer_menu ul li {display: inline-block;margin: 0;margin-bottom: 1rem;padding: 0 .7rem 0 .4rem;border-right: 1px solid #ccc;}
.footer-nav-area .footer_menu ul li:first-child {padding: 0 .7rem 0 0;}
.footer-nav-area .footer_menu ul li:last-child {border-right: none;}
@media (max-width: 500px) {
	.footer-nav-area .footer_menu ul {column-count: 2;}
	.footer-nav-area .footer_menu ul li {display: block;margin-bottom: .5rem;padding: 0;border-right: none;}
	.footer-nav-area .footer_menu ul li:first-child {padding: 0;}
}
@media (max-width: 430px) {
	.footer-nav-area .footer_menu ul {column-count: 1;}
}
/* 
Footer-social-area
-------------------------------------------------------------------------------------------------*/
.footer-social-area {text-align: right;}
.footer-social-area ul.social {padding: 0;}
.footer-social-area ul.social li {display:inline-block;margin-right:.5rem;}
.footer-social-area ul.social li:last-child {margin-right:0;}
.footer-social-area ul.social li span {display:none;}
.footer-social-area ul.social li a {color: var(--color-def);text-decoration: none;}
.footer-social-area ul.social li a[href*="/feed/"]:before {font-family: "Font Awesome 5 Free";font-weight: 900;content: "\f09e";}
.footer-social-area ul.social li a[href*="x.com"]:before {font-family: "Font Awesome 5 Brands";font-weight: 900;content: "\e61b";} 
.footer-social-area ul.social li a[href*="facebook.com"]:before {font-family: "Font Awesome 5 Brands";font-weight: 900;content: "\f082";}
.footer-social-area ul.social li a[href*="instagram.com"]:before {font-family: "Font Awesome 5 Brands";font-weight: 900;content: "\f16d";}
@media (max-width: 960px) {
	.footer-social-area ul.social {margin: 0;padding: 0;position: static;bottom: 0;}
}
/* 
Fix-under-menu
-------------------------------------------------------------------------------------------------*/
ul.fix-under-menu {display:none;list-style:none;}
@media (max-width: 500px) {
	ul.fix-under-menu {margin:0 auto;padding: 0;line-height: 50px;width:100%;overflow:hidden;display:table;table-layout:fixed;text-align:center;font-size: calc(12 / 16 * 1rem);position:fixed;bottom:0;left:0;background:var(--color-theme);z-index:80;}
	ul.fix-under-menu li {margin:0;padding:0;display:table-cell;vertical-align:middle;list-style-type:none;border-right:1px solid rgba(255,255,255,.2);line-height: 1.6;}
	ul.fix-under-menu li:first-child {background: var(--color-theme-gld);}
	ul.fix-under-menu li:last-child {border-right:none;background: #444;}
	ul.fix-under-menu li a {border:none;display:block;color:#fff;text-decoration:none;margin: 0.2rem 0;}
	ul.fix-under-menu li a::before {display:block;font-family: "Material Icons";content: "\e0b0";margin-right: .2rem;position: relative;top: 2px;font-size: 140%;}
	ul.fix-under-menu li:nth-child(2) a::before {content: "\e158";}
}
/* 
Copyright
-------------------------------------------------------------------------------------------------*/
.copyright {font-size: calc(12 / 16 * 1rem);text-align: right;}
/*=================================================================================================
  Top-content
=================================================================================================*/
/* 
Header
-------------------------------------------------------------------------------------------------*/
:root {
--header-height: 70px;
--li-width: calc(100% / 4);
--li-height: 50px;
--mega-w: 620px;
}
/********** header **********/
.header {position: fixed;transition: color 0.4s ease-out;width: 100%;z-index: 90;}
.header a {color: var(--color-def);text-decoration: none;transition: .3s;}
.header ul li {margin: 0;}
/********** header-inner **********/
.header-inner {position: relative;display: flex;justify-content: space-between;align-items: center;width: 100%;height: var(--header-height);background: rgba(255,255,255,1);box-shadow: 0 32px 30px -30px rgba(0, 0, 0, 0.3);}
.header-item:first-child {margin-left: 1rem;margin-right: auto}
.header-item:nth-child(3) {background: var(--color-theme-gld);}
.header-item:nth-child(3)::before {font-family: "Material Icons";content: "\ea9b";display: block;font-size: 180%;padding-top: 10px;}
.header-item:nth-child(4) {margin-right: var(--header-height);background: var(--color-theme);}
.header-item:nth-child(4)::before {font-family: "Material Icons";content: "\e158";display: block;font-size: 180%;padding-top: 10px;}
.header-item:nth-child(3) ,.header-item:nth-child(4) {position: relative;height: var(--header-height);line-height: 1.4;font-size: 75%;padding: 0 0.5rem;text-align: center;width: 80px;transition: 0.3s;}
.header-item:nth-child(3):hover ,.header-item:nth-child(4):hover {opacity: 0.7;}
.header-item:nth-child(3) a ,.header-item:nth-child(4) a {color: #fff;position: absolute;top: 0;left: 0;height:100%;width: 100%;}
.header-item:nth-child(3) p ,.header-item:nth-child(4) p {padding-top: 40px;}
/* header-logo */
.header-logo {font-size: calc(16 /16 * 1rem);width: 375px;height: auto;margin: 0;}
@media screen and (max-width: 1270px) {
  :root {
  --header-height: 60px;
  }
  .header-inner {flex-wrap: wrap;height:var(--header-height);}
  .header-item:nth-child(4) {margin-right: var(--header-height);}
  .header-item:nth-child(3) ,.header-item:nth-child(4) {height: var(--header-height);line-height: 0.8;}
  .header-item:nth-child(3)::before ,.header-item:nth-child(4)::before {padding-top: 10px;}
  .header-logo {width: 280px;}
}
@media screen and (max-width: 600px) {
  :root {
  --header-height: 50px;
  }
  .header-item:nth-child(3) ,.header-item:nth-child(4) {line-height: 0;}
  .header-item:nth-child(3)::before ,.header-item:nth-child(4)::before {padding-top: 18px;}
  .header-item:nth-child(4) {margin-right: calc(var(--header-height) + 10px);}
  .header-logo {width: 280px;}
}
@media screen and (max-width: 560px) {
  .header-item:nth-child(3) ,.header-item:nth-child(4) {display: none;}
}
@media screen and (max-width: 380px) {
  .header-logo {width: 230px;}
}
/********** global-nav **********/
.menu-container {font-weight: var(--font-bld);z-index: 88;}
.global-nav ul {position: relative;display: flex;justify-content: center;align-items: center;list-style: none;margin: 0;padding: 0;width: var(--mega-w);}
/** 2階層目 **/
.global-nav ul li {width: var(--li-width);margin: 0;}
.global-nav ul li a {display: block;text-align: center;position: relative;cursor: pointer;transition: all .3s;padding: 0.9rem 0;border-bottom: 3px #fff solid;}
.global-nav ul li a:hover {color: var(--color-theme);border-bottom: 3px var(--color-theme) solid;}
/** 3階層目 **/
.global-nav ul ul.sub-menu {display: flex;flex-wrap: wrap;justify-content: flex-start;margin: 0;padding: 0;}
.global-nav ul li ul li {width: calc(100% / 3);}
.global-nav ul li ul li a {padding: 0.5rem 0;border-bottom: none;}
.global-nav ul li ul li a:hover {color: #fff;background: var(--color-theme);border-bottom: none;}
.global-nav ul li ul li a:hover::after{opacity: 0;}
.global-nav ul li ul li:first-child a:hover {border-radius: 8px 8px 0 0;}
.global-nav ul li ul li:last-child a:hover {border-radius: 0 0 8px 8px;}
/* normal-menu 親にクラスをふる */
.global-nav ul li.normal-menu ul.sub-menu {left: auto;width: var(--li-width);}
.global-nav ul li.normal-menu ul li {width: 100%;font-size: 90%;}
/* mega-menu 親にクラスをふる　子要素をタイトルとして表示　孫要素*/
.global-nav ul li.mega-menu > ul.sub-menu {position: absolute;left: 50%;transform: translateX(-50%);flex-wrap: wrap;justify-content: space-between;align-items: stretch;width: 100vw;margin-left: calc(-50vw + (var(--mega-w) / 2) + var(--both-ends));padding: 2rem;}
.global-nav ul li.mega-menu ul li.menu-item-has-children {width: 48%;}
.global-nav ul li.mega-menu ul li.menu-item-has-children a {border-bottom: 1px solid red;}
.global-nav ul li.mega-menu ul li.menu-item-has-children ul {width: 100%;}
.global-nav ul li.mega-menu ul li.menu-item-has-children ul li {width: 100%;padding: 0;}
.global-nav ul li.mega-menu ul li.menu-item-has-children ul li a {border-bottom: 1px solid #999;}
/* mega-menu　最初の子要素が左側にタイトルとして表示　残りを2カラムで表示する
.global-nav ul li.mega-menu > ul.sub-menu {position: absolute;left: 50%;transform: translateX(-50%);display: flex;flex-wrap: wrap;justify-content: space-between;align-items: stretch;width: 100vw;margin-left: calc(-50vw + (var(--mega-w) / 2) + var(--both-ends));padding: 2rem;}
.global-nav ul li.mega-menu ul.sub-menu li {width: 32%;}
.global-nav ul li.mega-menu ul.sub-menu li:first-child {font-size: 120%;}
.global-nav ul li.mega-menu ul.sub-menu li:first-child ~ li {border-bottom: 1px solid #999;}
.global-nav ul li.mega-menu ul.sub-menu li:nth-child(2n) {margin-left: 34%;}
.global-nav ul li.mega-menu ul.sub-menu li:nth-child(2) {margin-left: 0;}
.global-nav ul li.mega-menu ul.sub-menu li a {text-align: left;}
 */
/* 下の階層を持っているulの指定 */
.global-nav > ul > li > ul {position: absolute;visibility: hidden;width: 100%;background: #fff;opacity: 0;top: 80px;left: 0;transition: all .3s;z-index: 89;border-radius: 8px;box-shadow: 0 32px 30px -30px rgba(0, 0, 0, 0.3);}
.global-nav > ul > li > ul > li a {color: var(--color-def);}
/* hoverしたら表示 */
.global-nav li.menu-item-has-children:hover > ul,
.global-nav li.menu-item-has-children ul li:hover > ul,
.global-nav li.menu-item-has-children:active > ul,
.global-nav li.menu-item-has-children ul li:active > ul{visibility: visible;opacity: 1;}
@media (max-width: 1920px) {
  .global-nav > ul > li.mega-menu > ul.sub-menu {margin-left: calc(-50vw + 450px + var(--both-ends-sp));}
}
/********** menu-icon toggle **********/
#menu-icon {position: fixed;z-index: 100;top: 0;right:0;cursor: pointer;width: var(--header-height);height: calc(var(--header-height) + 10px);background: var(--color-theme-gry);}
#menu-icon span {border:1px solid #fff;width:30px;margin: 0 0 5px 20px;display:block;-webkit-transition:all .5s;transition:all .5s;}
#menu-icon span.first {margin-top: 20px;}
#menu-icon span.second {top: 15px;}
#menu-icon span.third  {top: 23px;}
#menu-icon:after {content: "MENU";display: block;line-height: 1.0;color: #fff;font-size: calc(9 /16 * 1rem);text-align: center;}
/* active */
#menu-icon.active span.first {transform: rotate(45deg);-webkit-transform: rotate(45deg);margin-top: 30px;}
#menu-icon.active span.second {transform: rotate(135deg);-webkit-transform: rotate(135deg);width:30px;position: relative;top: -7px;}
#menu-icon.active span.third {display: none;}
#menu-icon.active:after {content: "CLOSE";display: block;line-height: 1.0;color: #fff;font-size: calc(9 /16 * 1rem);margin-left: -.1rem;}
@media screen and (max-width: 1270px) {
  .global-nav {display: none;}
  #menu-icon span {margin: 0 0 5px 14px;}
  #menu-icon span.first {margin-top: 18px;}
}
@media screen and (max-width: 600px) {
  #menu-icon {width: calc(var(--header-height) + 10px);}
}
/********** toggle-menu-container **********/
.toggle-menu-container {position: fixed;margin-top: 0;top:0;right: -120%;width:100%;height: 100vh;transition: all 0.9s;z-index: 90;}
.toggle-menu-container.panelactive {position:fixed;z-index: 88;top: 0;right: 0;width:100%;height: 100vh;}
.toggle-menu-container.panelactive .toggle-global-nav {opacity:1;}
.toggle-menu-container.panelactive .toggle-global-nav {animation-name: gnaviAnime;animation-duration: 1s;animation-delay: .5s;animation-fill-mode: forwards;opacity: 0;}
@keyframes gnaviAnime{0% {opacity: 0;}100% {opacity: 1;}}
/*丸背景*/
.circle-bg {position: fixed;z-index:3;width: 100px;height: 100px;border-radius: 50%; background: #f7f7f7;transform: scale(0);right: -50px;top: -50px;transition: all 1.2s;}
.circle-bg.circleactive{transform: scale(50);}
/*ここからtoggle-global-nav内のデザインCSS*/
.toggle-global-nav {display: flex;justify-content: center;align-items: center;flex-direction: column;width: 100%;height: 100vh;overflow: auto;-webkit-overflow-scrolling: touch;}
.toggle-global-nav {background: url(img/common/toggle-bg.png) no-repeat bottom right;background-size :20%;}
.toggle-global-nav-logo {margin-bottom: 2rem;}
.toggle-global-nav-wrap {width: 90%;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: stretch;}
.toggle-global-nav-col {width: 32%;}
.toggle-global-nav-col ul {list-style: none;background: rgba(247, 247, 247,0.5);padding: 0;}
.toggle-global-nav-col ul li {position: relative;font-size: calc(18 / 16 * 1rem);border-bottom: 1px #666 solid;line-height: 3.0rem;}
.toggle-global-nav-col ul li::after {content: "";position: absolute;top: 50%;bottom: 0;right: 0.5rem;font-size: 90%;display: flex;justify-content: center;align-items: center;transition: right 0.3s;width: 6px;height: 6px;border-top: solid 2px var(--color-def);border-right: solid 2px var(--color-def);transform: translateY(-50%) rotate(45deg);}
.toggle-global-nav-col ul li:hover::after {border-top: solid 2px var(--color-theme);border-right: solid 2px var(--color-theme);}
.toggle-global-nav-col ul li a {display: block;width: 100%;height: 100%;}
.toggle-global-nav-col ul li a:hover {color: var(--color-theme);} 
.toggle-global-nav-col ul li:hover::after {right: 0.3rem;}
.toggle-global-nav-col ul li.parent::after {top: 1.5rem;;bottom: auto;right: 0.5rem;}
.toggle-global-nav-col ul li.parent:hover::after {right: 0.3rem;}
.toggle-global-nav-col ul li ul li {position: relative;border-bottom: none;line-height: 2.0rem;font-size: 85%;padding-left: 1rem;}
.toggle-global-nav-col ul li ul li:last-child {margin-bottom: 0.5rem;}

.toggle-global-nav-btnwrap {width: 70%;display: flex;flex-wrap: wrap;justify-content: space-between;align-items: stretch;margin-top: 3rem;}
.toggle-global-nav-btn {position: relative;width: 32%;height: 100px;border: 1px #333 solid;text-align: center;background: rgba(247, 247, 247,0.5);transition: 0.3s;}
.toggle-global-nav-btn:hover {border: 1px var(--color-theme) solid;}
.toggle-global-nav-btn a {position: absolute;top: 0;left: 0;height:100%;width: 100%;}
.toggle-global-nav-btn::before {content: "";display: block;width: 50px;height: 50px;background-image: url('img/common/toggle-btn01.png');background-size: contain;margin: 0.5rem auto 0;}
.toggle-global-nav-btn:nth-child(2)::before {background-image: url('img/common/toggle-btn02.png');}
.toggle-global-nav-btn:nth-child(3)::before {background-image: url('img/common/toggle-btn03.png');}
.toggle-global-nav-btn p {position: absolute;top: 65%;left:50%;transform: translateX(-50%);width: 100%;}
.toggle-global-nav-btn:hover p {color: var(--color-theme);}
@media (max-width: 920px) {
	.toggle-global-nav {background-size :35%;}
	.toggle-global-nav-col {width: 46%;}
	.toggle-global-nav-col:last-child {order: 2;}
	.toggle-global-nav-col:nth-child(2) {order: 3;}
}
@media (max-width: 560px) {
	.toggle-global-nav-logo img {width: 80%;margin: 0 auto;margin-bottom: 1.5rem;}
	.toggle-global-nav {padding: 2rem 0 10rem;justify-content: space-between;}
	.toggle-global-nav-col {width: 100%;}
	.toggle-global-nav-col:nth-child(2) {order: 2;}
	.toggle-global-nav-col:last-child {order: 3;margin-bottom: 5rem;}
}
/* 
Main-slider
-------------------------------------------------------------------------------------------------*/
.main-img {position: relative;top: var(--header-height);max-width: 100%;height: calc(100vh - var(--header-height));
background:var(--color-theme);margin-bottom: var(--header-height);}
/* 横並びコンテナ（すき間なし） */
.photo-strip {display: flex;overflow: hidden;}
/* figure のデフォルト余白をゼロに */
.photo-item {margin: 0;flex: 1 1 0;position: relative;overflow: hidden;clip-path: polygon(6% 0, 100% 0, 94% 100%, 0 100%);}
.photo-img {position:absolute;top:0;left:0;width:110%;height:100%;object-fit:cover;display:block;transition:opacity 0.7s ease;}
.photo-img-current {opacity:1;z-index:1;}
.photo-img-next {opacity:0;z-index:2;}
/* 高さの目安（必要に応じて調整） */
.photo-item {height:calc(100vh - var(--header-height));}
.main-slide-ttl {position: absolute;color: #fff;line-height: 1.5;font-weight: bold;text-shadow: 3px 3px 3px #444;bottom: 13%;left: 2rem;font-size: clamp(1.875rem, 0.739rem + 5.68vw, 5rem);}
@media (min-width: 1440px) {
.main-slide-ttl br {display:none;}
}
/* スマホでは中央2枚だけ表示 */
@media (max-width: 768px) {
.photo-item:nth-child(1),
.photo-item:nth-child(4) {display:none;}
.photo-item {height:calc(100vh - var(--header-height));}
}
/* 
Top-eye-news-wrap
-------------------------------------------------------------------------------------------------*/
/********* eye-news-wrap *********/
.eye-news-wrap {display: flex;flex-wrap: wrap;justify-content: space-between;align-items: stretch;}
.eye-news-wrap::before {content: "";display: block;height: 0;order: 1;}
.eye-news-wrap::after {content: "";display: block;height: 0;}
.eye-news-wrap::before,.eye-news-wrap::after,.eye-news-col {width: 23%;}
.eye-news-col a {color: var(--color-def);text-decoration: none;}
.eye-news-col img {display: block;width: 100%;height: 400px;object-fit: cover;font-family: 'object-fit: cover;';}
.eye-news-col .ymd {font-size: 90%;}
.eye-news-col .ttl {font-weight: var(--font-bld);margin-bottom: .5rem;}
.eye-news-col .cat a {display: inline-block;font-size: 80%;margin-bottom: .5rem;padding: .1rem .5rem;border: 1px solid var(--border-color);}
.eye-news-col .cat a:first-child {display: none;}
@media (max-width: 1780px) {
	.eye-news-col img {height: 300px;}
}
@media (max-width: 1300px) {
	.eye-news-col img {height: 250px;}
}
/* 
Top-area03-slide-content
-------------------------------------------------------------------------------------------------*/
.top-area03-slide-content img {display: block;width: 100%;height: 350px;object-fit: cover;font-family:'object-fit:cover;';}
.top-area03-slide-txt {width: 100%;height: 150px;position: relative;background:var(--color-bg-bei);font-size: 90%;;margin-bottom: 1rem;padding: 1rem 1rem;display: inline-block;}
.top-area03-slide-txt .day {display: inline-block;padding: 0 rem .1rem;font-size:90%;margin-bottom:0.5rem;}
.top-area03-slide-txt .title {line-height: 1.6;}
.content-hover {transition: all 0.2s;margin-right: 20px;}
.content-hover:hover {/*transform: translateY(-20px);border-radius: 0 10%;*/box-shadow: 0 22px 20px -20px rgba(0, 0, 0, 0.3);opacity: 0.8;cursor: pointer;}
/********** slider arrows and paused　**********/
.slide-paused:hover .slideshow {-webkit-animation-play-state: paused;animation-play-state: paused;}
.lSAction > a {background-image: url(img/common/controls.png);z-index: 80;}
.lSSlideOuter .lSPager.lSpg {position: relative;z-index: 80;}
@media (max-width: 500px) {
	.top-area03-slide-content img {height: 250px;}
}

/* 
Contact form
-------------------------------------------------------------------------------------------------*/
.mw-table input,.mw-table textarea {font-size: calc(14 / 16 *1rem);}
.mwb button, input[type="button"], .mwb input[type="reset"], .mwb input[type="submit"] {background-color:#003d96!important;}
.mwb button:hover, input[type="button"]:hover, .mwb input[type="reset"]:hover, .mwb input[type="submit"]:hover {opacity:0.6!important;}
table.mw-table tr:nth-child(9) input[type=text] ,table.mw-table tr:nth-child(10) input[type=text] {width:100%;}
.mwform-radio-field-text {font-size: calc(16 / 16 *1rem);font-weight: var(--font-bld);}
.mw-table th {vertical-align: top;width: 270px;}
.mw-table input {padding: 0.5rem;}
@media (max-width: 1180px) {
	.mw-table th {width: 250px;}
}
@media (max-width: 640px) {
	.mw-table input,.mw-table textarea {font-size: 14px;}
	.mw-table input.mwtel {width: 70px;}/* html設定時に電話番号のところに任意でクラスを下記のように追加『class="mwtel"』 */
	.mw-table input[type="text"],
	.mw-table input[type="email"],
	.mw-table input[type="tel"],
	.mw-table textarea {padding: 0.5rem;border: 1px solid #ccc!important;}
	.mw-table {border: 1px solid #ccc;width: 100%;max-width: 100%;}
	.mw-table tr {display: block;margin-bottom: 0;}
	.mw-table tr {border-bottom:1px solid #ccc;}
	.mw-table tr:last-child {border: none;}
	.mw-table th, .mw-table td {display: list-item;list-style-type: none;border: none;}
	.mw-table th {width: 100%;vertical-align: middle!important;}
	.mw-table td {border:none!important;}
}
.mwb button,input[type="button"],.mwb input[type="reset"],.mwb input[type="submit"] {position: relative;display: block;width: 225px;height: 48px;margin: 30px auto 0;background-color: #333333;cursor: pointer;border: none !important;color: #fff;text-align: center;text-decoration: none;font-size: calc(16 / 16 *1rem);line-height: 1.5;outline: none;-webkit-transition: all .3s;transition: all .3s;letter-spacing:0.1rem;}
.mwb button:hover,.mwb input[type="button"]:hover,.mwb input[type="reset"]:hover,.mwb input[type="submit"]:hover {background-color: #666;}
.mwb button:active, .mwb button:focus,.mwb input[type="button"]:active,.mwb input[type="button"]:focus,.mwb input[type="reset"]:active,.mwb input[type="reset"]:focus,.mwb input[type="submit"]:active,.mwb input[type="submit"]:focus {border-color: #aaa #bbb #bbb;}
/* 必須テキスト */
.required-srt {margin-left: .5rem;padding: 2px 6px 2px 5px;background: #CC0000;font-size: calc(12 / 16 *1rem);color: #fff;border-radius: 3px;-webkit-border-radius: 3px;-moz-border-radius: 3px;}
/* mw-inq-box */
.mw-inq-box {padding: 0.5em 1em;margin: 2em 0;border: solid 2px #ddd;}
.mw-inq-box p {margin: 0;padding: 2rem;}
.mw-inq-box .consent{font-weight:900!important;color:#CC0000;}
@media (max-width: 690px) {
	.mw-inq-box {height: 100px;overflow-y: scroll;}
	.mw-inq-box p {margin: 0;padding: 1rem;}
	.mwform-radio-field-text {font-size: calc(15 / 16 *1rem);font-weight: var(--font-bld);}
}
/*=================================================================================================
  wp-block-gallery
=================================================================================================*/
.wp-block-gallery {display: flex;}
figure.wp-block-gallery.has-nested-images figure.wp-block-image {flex-grow: 0!important;}
/********* front-page　サンプル用消すこと！ *********/
.wrap {display: flex;flex-wrap: wrap;justify-content: space-between;align-items: stretch;}
.wrap::before {content: "";display: block;height: 0;order: 1;}
.wrap::after {content: "";display: block;height: 0;}
.wrap::before,.wrap::after,.col {width: 23%;margin-bottom: 3rem;}