@charset "utf-8";

/*
Theme Name: site
Version: 1
Template: wp-base
*/

/* ------------------------------ */
/* カスタムプロパティ */
/* ------------------------------ */

/* カラー */
:root {
   --color-main: #0553dd;
   --color-base: #111;
   --color-white: #fff;
   --color-darkgrey: #555;
   --color-grey: #999;
   --color-lightgrey: #dedede;
   --color-lightblue: #eff3f9;
   --color-red: #E73727;
   --color-green: #00a23f;
   --color-orange: #f9bd01;
   --color-yelow: #ffe600;
   --color-blue: #0553dd;
   --color-bg-white: #fff;
   --color-bg-lightgrey: #f9f9f9;
   --color-bg-lightsand: #edeae7;
   --color-bg-lightblue: #eff3f9;
   --color-bg-dark: #222;
}

/* コンテナ幅 */
:root {
   --width-content: 1264px;
   --width-content-narrow: 960px;
   --width-content-wide: 1600px;
}

/* ***************************************************************** 
*	基本設定
* ***************************************************************** */
*,
*:before,
*:after {
   box-sizing: inherit;
}

html {
   box-sizing: border-box;
   scroll-behavior: smooth;
}

body {
   font-family: Helvetica Neue, Arial, Hiragino Kaku Gothic ProN, Hiragino Sans, Meiryo, sans-serif;
   font-size: 16px;
   color: var(--color-base);
   line-height: 1.75;
   letter-spacing: 0.05em;
   word-break: break-all;
   overflow-wrap: break-word;
}

/* Remove default margin padding
---------------------------------------------------- */
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;
}


/* 見出し
---------------------------------------------------- */
h1 {
   font-size: 32px;
}

h2 {
   font-size: 26px;
}

h3 {
   font-size: 22px;
}

h4 {
   font-size: 20px;
}

h5 {
   font-size: 18px;
}

h6 {
   font-size: 16px;
}
@media ( max-width: 767px){
   h1 {
      font-size: 20px;
   }
   
   h2 {
      font-size: 20px;
   }
   
   h3 {
      font-size: 18px;
   }
   
   h4 {
      font-size: 16px;
   }
}
/* リンク
---------------------------------------------------- */

a {
   color: var(--color-base);
   text-decoration: none;
   transition: 0.3s;
}
a:hover {
   color: var(--color-base);
   opacity: 0.6;
   text-decoration: underline;
}

a:visited {
   color: inherit;
}

a:active,
a:focus {
   outline: 0;
}

a:not([class]) {
   color: var(--color-base);
   text-decoration: underline;
   transition: 0.3s;
}
a:not([class]):hover {
   color: var(--color-base);
   opacity: 0.6;
}

/* リスト
---------------------------------------------------- */
ul,
ol {
   list-style: none;
}

/* 画像
---------------------------------------------------- */
img {
   max-width: 100%;
   height: auto;
   vertical-align: top;
}

/* *****************************************************************
*	アンカーリンクのターゲット位置
* ***************************************************************** */
:root {
   --header: 80px;
   scroll-padding: var(--header);
   scroll-behavior: smooth;
}
/* ***************************************************************** 
*	ヘッダー
* ***************************************************************** */
.site-header {
   position: fixed;
   top: 0;
   left: 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding-left: 32px;
   padding-right: 32px;
   width: 100%;
   height: var(--header);
   background-color: #fff;
   box-shadow: 0 1px 3px rgba(0, 0, 0, .05);
   transition: .5s;
   z-index: 9999;
}
.site-branding {
   width: 300px;
}
.site-ttl{
   line-height: 1.3;
}
.site-text{
   font-size: 20px;
   letter-spacing: normal;
   font-weight: bold;
   color: var(--color-base);
}
.site-text a{
   text-decoration: none;
}
.site-logo {
   max-width: 100%;
   vertical-align:middle;
   transition: .5s;
}
.site-logo img{
   display: block;
   max-width: 100%;
   max-height: 60px;
}
.main-navigation {
   width: auto;
}
.main-navigation .menu {
   display: flex;
   align-items: center;
   justify-content: flex-end;
   gap: 1.6vw;
}
.sitenav{
   display: flex;
   align-items: center;
}
.main-navigation .menu-item a {
   color: var(--color-base);
   font-size: 15px;
   font-weight: 600;
   line-height: 1.4;
   letter-spacing: 0.02em;
   text-decoration: none;
}
.main-navigation .menu-item a:hover{
   text-decoration: none;
   opacity: 1;
}

.home .main-navigation .menu-item a {
   color: var(--color-base);
}

.main-navigation .menu-item a:hover{
   opacity: .6;
}
@media screen and (min-width: 980px) and (max-width: 1279px) {
   .site-branding {
      width: 280px;
   }
   .site-text{
      font-size: 16px;
   }
   .main-navigation .menu-item a {
      font-size: 1.2vw;
   }
}
@media screen and (max-width: 979px) {
   .site-header {
      padding-left: 32px;
   }
   .site-branding {
      width: 85%;
   }
   .site-text{
      font-size: 16px;
   }
   .site-logo {
      width: 200px;
   }
   .main-navigation {
      width: 100%;
   }
   /*SPメニュー*/
   #site-navigation {
      visibility: hidden;
      position: fixed;
      opacity: 0;
      top: 0;
      left: 0;
      max-width: 100%;
      height: 100vh;
      background: #fefefe;
      transition: all .5s;
   }

   /*アクティブクラスがついたら透過なしにして最前面へ*/
   #site-navigation.panelactive {
      visibility: inherit;
      opacity: 1;
      z-index: 999;
   }

   /*スクロールさせない*/
   .noscroll {
      overflow: hidden;
   }

   /*ナビゲーションの縦スクロール*/
   #site-navigation.panelactive #site-navigation-list {
      position: fixed;
      z-index: 999;
      width: 100%;
      height: 100vh;
      overflow: auto;
      -webkit-overflow-scrolling: touch;
   }
   .sitenav {
      display: none;
      position: absolute;
      max-width: 100%;
      z-index: 999;
      top: 42%;
      left: 50%;
      transform: translate(-50%, -50%);
   }
   #site-navigation.panelactive .sitenav {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
   }
   #site-navigation.panelactive .sitenav ul{
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
      gap: 0;
      max-width: 100%;
   }
   #site-navigation.panelactive .sitenav ul li a {
      display: block;
      width: 100%;
      font-size: 15px;
      margin: 12px 0;
      color: var(--color-base);
      text-transform: uppercase;
      letter-spacing: 0.1em;
      font-weight: 600;
   }

   /*リストのレイアウト設定*/
   #site-navigation ul li {
      text-align: center;
   }

   /*Toggle Button*/
   .navBtn {
      position: absolute;
      z-index: 9999;
      right: 10px;
      cursor: pointer;
      width: 60px;
      height: 50px;
   }

   .navBtn span {
      display: inline-block;
      transition: all .4s;
      position: absolute;
      left: 15px;
      height: 2px;
      border-radius: 2px;
      background-color: #111;
      width: 50%;
   }

   .navBtn span:nth-of-type(1) {
      top: 15px;
   }

   .navBtn span:nth-of-type(2) {
      top: 23px;
   }

   .navBtn span:nth-of-type(3) {
      top: 31px;
   }

   .navBtn.active span:nth-of-type(1) {
      top: 18px;
      left: 15px;
      transform: translateY(6px) rotate(-45deg);
      width: 50%;
   }

   .navBtn.active span:nth-of-type(2) {
      opacity: 0;
   }

   .navBtn.active span:nth-of-type(3) {
      top: 30px;
      left: 15px;
      transform: translateY(-6px) rotate(45deg);
      width: 50%;
   }
}

/*ヘッダーコンタクトボタン*/
.header-contact-btn {
   margin-left: 24px;
}
.header-contact-btn i{
   margin-right: 4px;
}
.header-contact-btn a {
   display: flex;
   justify-content: center;
   align-items: center;
   width: 150px;
   height: 40px;
   color: #fff;
   font-size: 15px;
   font-weight: 600;
   text-decoration: none;
   border-radius: 50vh;
   background-color: var(--color-main);
   transition: 0.2s ease-in-out;
}
.header-contact-btn a:hover {
   color: #fff;
}
@media screen and (min-width: 980px) and (max-width: 1279px) {
   .header-contact-btn a {
      font-size: 14px;
   }
}
@media screen and (max-width: 979px) {
   .header-contact-btn {
      margin-top: 16px;
      margin-left: 0;
   }
   .header-contact-btn a {
      font-size: 14px;
   }
}

/* *****************************************************************
*	 ファーストビュー(スライドなし)
* ***************************************************************** */
.home-fv-wrap {
   position: relative;
   margin: 0;
   height: calc(100vh - var(--header));
   /*ヘッダーの高さをマイナス。必要なければheight:100vhに。height: 100vh;*/
   background-repeat: no-repeat;
   background-size: cover;
   background-position: center center;
   /*background-image: url(./images/mv/mv_01.jpg);*/
   background-color: #fafafa;
   margin-top: var(--header);
}

.home-fv-inner {
   position: relative;
   display: flex;
   justify-content: center;
   width: 100%;
   height: 100%;
   margin: 0 auto;
}
/* *****************************************************************
*	ファーストビュー(swiper)
* ***************************************************************** */
.home-fv-slide {
   margin-top: var(--header);
   max-width: 100vw;
   height: calc(100vh - var(--header));
   position: relative;
   overflow: hidden;
}

@keyframes zoom-in {
   0% {
      transform: scale(1);
   }

   100% {
      transform: scale(1.1);
   }
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
   animation: zoom-in 10s linear 0s 1 normal both;
}

.slide-text {
   position: absolute;
   top: 50%;
   left: 50%;
   font-size: 3vw;
   font-family: serif;
   font-weight: bold;
   text-shadow: 2px 2px 8px #000;
   color: #fff;
   transform: translate(-50%, -50%);
}

.slide-img img {
   object-fit: cover;
   height: 100vh;
   width: 100vw;
}
.slide-text{
	position: absolute;
	top: 50%;
	left: 50%;
	width: 90%;
   padding-left: .5em;
	color: #fff;
	font-size: 42px;
	text-align: center;
	text-shadow: 0px 1px 3px #333;
	line-height: 1.8;
	transform: translate(-50%, -100%);
   z-index: 99;
}
.slide-text-lead {
   display: block;
}
a.slide-link:hover {
   opacity:unset;
   text-decoration: none;
}
@media only screen and (max-width: 767px) {
   .home-fv-slide {
      max-width: 100vw;
      height: calc(50vh - var(--header));
      position: relative;
      overflow: hidden;
   }
   .slide-img {
      height: 50vh;
   }
   .slide-img img {
      object-fit: cover;
      height: 50vh;
      width: 100vw;
   }
   .slide-text {
      font-size: 24px;
      transform: translate(-50%, -50%);
   }
}

/* *****************************************************************
*	layout
* ***************************************************************** */
#page {
   display: grid;
   grid-template-rows: auto 1fr auto;
   grid-template-columns: 100%;
   min-height: 100vh;
}

.wrapper {
   margin-top: var(--header);
}

.l-container {
   margin: 0 auto;
   padding: 80px 32px 80px;
   max-width: var(--width-content);
}
._narrow {
   max-width: var(--width-content-narrow);
}
.l-container .widget-area {
   margin-top: 80px;
}
.l-container-2col {
   display: flex;
   justify-content: space-between;
   margin: auto;
   padding: 80px 32px 80px;
   max-width: var(--width-content);
}

.l-container-2col .site-main {
   width: calc(100% - 364px);
}

.l-container-2col .widget-area {
   width: 300px;
}

@media screen and (max-width: 979px) {
   .l-container {
      padding: 40px 32px 56px;
   }
   .l-container .widget-area {
      margin-top: 40px;
   }
   .l-container-2col {
      display: block;
      width: 100%;
      padding: 40px 32px 48px;
   }

   .l-container-2col .site-main {
      width: 100%;
   }

   .l-container-2col .widget-area {
      margin-top: 40px;
      width: 100%;
   }
}

/* *****************************************************************
*	#primary
* ***************************************************************** */
#primary .wp-block-heading {
   margin: 24px 0;
}

/* *****************************************************************
*	#secondary
* ***************************************************************** */
#secondary .wp-block-heading {
   margin: 0 0 10px;
   padding: 0 0 10px;
   font-size: 16px;
   border-bottom: 1px solid var(--color-lightgrey);
}

#secondary .widget ul li, #secondary .widget ol li{
   padding: .8em 0;
   font-size: 14px;
   border-bottom: 1px dotted var(--color-lightgrey);
}

#secondary .widget ul li a, #secondary .widget ol li a{
   text-decoration: none;
}

/* *****************************************************************
*	.widget
* ***************************************************************** */
.widget {
   margin: 32px 0 0;
}

.widget:first-child {
   margin-top: 0;
}
.wp-block-latest-posts__post-date {
   color: var(--color-darkgrey);
}

/* *****************************************************************
*	#footer
* ***************************************************************** */
.site-footer {
   padding-top: 40px;
   padding-bottom: 32px;
   padding-left: 32px;
   padding-right: 32px;
   background-color: var(--color-main);
}

.site-footer-container {
   max-width: var(--width-content);
   margin: 0 auto;
}

.site-footer-column {
   display: block;
   text-align: center;
}

.site-info {
   color: var(--color-white);
}

.site-info a {
   color: var(--color-white);
}

.site-info .ttl {
   font-size: 24px;
   font-weight: 700;
}
.site-info .add {
   margin-top: 16px;
   font-size: 14px;
}
.site-info .tel {
   font-size: 14px;
}
.footer-navigation {
   margin-top: 24px;
}
.footer-navigation-sub {
   margin-top: 16px;
}
.footer-navigation-list {
   display: flex;
   flex-wrap: wrap;
   justify-content: center;
}
.footer-navigation-list li+li{
   position: relative;
}
.footer-navigation-list li+li::before{
   content: "";
   display: block;
   height: .5em;
   border-left: 1px solid #fff;
   position: absolute;
   top: 0;
   bottom: 0;
   margin: auto;
}
.footer-navigation-list a {
   padding: 0 12px;
   font-size: 13px;
   color: var(--color-white);
}

.copy {
   margin-top: 40px;
   color: var(--color-white);
   font-size: 11px;
   text-align: center;
   font-weight: 200;
}

@media screen and (max-width: 960px) {
   .site-footer-column {
      display: block;
      text-align: center;
   }
   .site-info {
      width: initial;
   }
   .site-info .footer-logo {
      margin-inline: auto;
      width: 160px;
   }
   .site-info .subttl {
      font-size: 12px;
   }
   .site-info .ttl {
      font-size: 18px;
   }
   .site-info .address {
      font-size: 13px;
   }
   .site-info .tel-col {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 0px;
   }
   .site-info .tel {
      margin-left: -.5em;
      font-size: 14px;
   }
   .site-info .fax {
      font-size: 14px;
   }
   #footer-menu {
      display: none;
   }
   .footer-navigation-list {
      display: block;
   }
   .footer-navigation-list a {
      display: block;
      padding: .4em 0;
      font-size: 12px;
   }
   .footer-navigation-list li+li::before{
      content: none;
   }
   .copy {
      text-align: center;
   }
}
/* *****************************************************************
*	.pagination
* ***************************************************************** */
.pagination-wrap {
   margin-top: 40px;
}
.nav-links ul {
   list-style: none;
   display: flex;
   justify-content: center;
   gap: 8px;
}

.nav-links li>* {
   display: flex;
   align-items: center;
   justify-content: center;
   font-size: 14px;
   height: 35px;
}

.nav-links li>*:not(.dots) {
   width: 35px;
   border-radius: 50%;
   color: var(--color-base);
   background: #efefef;
   transition: color 0.3s ease, background-color 0.3s ease;
}

.nav-links li>.current,
.nav-links li>a:hover {
   color:var(--color-white);
   background: var(--color-main);
   text-decoration: none;
}

/* *****************************************************************
*	button
* ***************************************************************** */
/*.button a {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin: 0 auto;
   padding: 1em 2em;
   width: 300px;
   color: #333;
   font-size: 18px;
   font-weight: 700;
   background-color: #cccccc;
   border-radius: 50vh;
}
.button a:after {
   content: '';
   width: 8px;
   height: 8px;
   border-top: 2px solid #333333;
   border-right: 2px solid #333333;
   transform: rotate(45deg);
}
.button a:hover {
   text-decoration: none;
   background-color: #bbbbbb;
}*/

.btn a {
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   margin: 0 auto;
   padding: .8em 1.5em;
   max-width: 300px;
   color: var(--color-white);
   font-size: 16px;
   font-weight: 600;
   background-color: var(--color-main);
   border: 2px solid var(--color-bg-main);
   border-radius: 50vh;
   transition: 0.3s ease-in-out;
}
.btn a:after {
   content: '';
   width: 8px;
   height: 8px;
   border-top: 2px solid var(--color-white);
   border-right: 2px solid var(--color-white);
   transform: rotate(45deg);
   position: absolute;
   top: 50%;
   right: 16px;
   transform: translateY(-50%) rotate(45deg);
}
.btn a:hover {
   color: var(--color-main);
   background-color: var(--color-white);
   border: 2px solid var(--color-bg-main);
   text-decoration: none;
   opacity: inherit;
}
.btn a:hover:after {
   border-top: 2px solid var(--color-main);
   border-right: 2px solid var(--color-main);
}
@media (max-width: 767px) {
   .btn a {
      padding: .8em 1.5em;
      font-size: 14px;
   }
}

/* *****************************************************************
*	table
* ***************************************************************** */
.base-table {
   width: 100%;
   border-collapse: collapse;
   table-layout: fixed;
}
.base-table th,
.base-table td {
   padding: 24px;
   border: 1px solid var(--color-grey);
}
@media only screen and (max-width: 767px) {
   .base-table table {
      border-bottom: 1px solid #DDD;
   }
   .base-table th,
   .base-table td {
      display: block;
      width: auto;
      text-align: left;
      border-bottom: none;
   }
}
/* *****************************************************************
*	カード型
* ***************************************************************** */
._card-wrap {
   padding-top: 48px;
   margin-inline: auto;
}
._card-list {
   display: flex;
   flex-wrap: wrap;
   gap: 68px 24px;
}
._card-item {
   width: calc(100% / 4 - 24px * 3 / 4);
   background-color: #fff;
   padding: 0;
}
._3col {
   width: calc(100% / 3 - 24px * 2 / 3);
}
@media (max-width: 960px) {
   ._card-item {
      width: calc(100% / 2 - 24px * 1 / 2);
   }
   ._3col {
      width: calc(100% / 2 - 24px * 1 / 2);
   }
}
@media (max-width: 767px) {
   ._card-item,._3col {
      width: 100%;
   }
}
._card-pic {
   position: relative;
   aspect-ratio: 3 / 2;
   overflow: hidden; 
}
._card-pic img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
._card-body {
   display: flex;
   flex-direction: column;
   padding: 16px 0 0;
}
._card-ttl {
   font-size: 16px;
   font-weight: 600;
   line-height: 1.6;
   flex-grow: 1;
}

/* *****************************************************************
*	archive
* ***************************************************************** */
/* テキストリスト表示 */
.list-wrap {
   display: block;
}
.list-item {
   border-bottom: 1px solid var(--color-lightgrey);
   padding: 24px 8px;
}
.list-item:first-of-type {
   border-top: 1px solid var(--color-lightgrey);
}
.list-body {
   display: flex;
   flex-wrap: nowrap;
   align-items: center;
}
.list-meta{
   display: flex;
   flex-wrap: nowrap;
   justify-content: center;
   align-items: center;
}
.list-body .date {
   min-width: 120px;
   margin: 0;
   font-size: 15px;
}

.list-body .cat {
   min-width: 120px;
   margin-right: 32px;
   color: #fff;
   background-color: #aaa;
   text-align: center;
   display: inline-block;
   padding: 0 2px;
   font-size: 12px;
   border-radius: 50vh;
}

.list-body .ttl {
   flex: 1;
   font-size: 16px;
   font-weight: 400;
}
.list-body .ttl a{
   text-decoration: none;
}
.list-body .ttl a:hover{
   text-decoration: underline;
}
@media (max-width: 767px) {
   .list-item {
      padding: 24px 8px;
   }
   .list-body {
      display: flex;
      flex-direction: column;
      align-items: start;
   }
   .list-body .date {
      min-width: 90px;
      margin: 0;
      font-size: 13px;
      color: var(--color-darkgrey);
   }

   .list-body .cat {
      min-width: 80px;
      padding: 0 6px;
      margin-right: 0;
      font-size: 11px;
   }
   .list-body .ttl {
      margin-top: 8px;
      font-weight: 400;
   }
}

/* カラム表示 */
.cardlist-wrap {
   display: flex;
   flex-wrap: wrap;
   gap: 68px 24px;
}
.card-item {
   width: calc(100% / 3 - 24px * 2 / 3);
}

.card-pic {
   position: relative;
   aspect-ratio: 3 / 2;
   overflow: hidden;
}
.card-pic img {
   position: absolute;
   top: 0%;
   left: 0%;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.card-body {
   display: flex;
   flex-direction: column;
   padding: 20px 8px 0;
}
.card-meta {
   display: flex;
   align-items: center;
   font-size: 13px;
}
.card-meta .date {
   display: flex;
   align-items: center;
   letter-spacing: .05em;
   color: var(--color-darkgrey);
}
.card-meta .date:after {
   margin: 0 10px;
   content: "";
   width: 1px;
   height: 10px;
   background-color: var(--color-lightgrey);
   display: block;
}
.card-meta .cat {
   color: var(--color-darkgrey);
   letter-spacing: .05em;
}

.card-ttl {
   margin-top: .5em;
   font-size: 16px;
   font-weight: 600;
   line-height: 1.6;
   
}
@media (max-width: 960px) {

   .card-item {
      width: calc(100% / 2 - 24px * 1 / 2);
   }
   .card-body {
      padding-top: 16px;
   }
   .card-meta {
      font-size: 12px;
   }
   .card-meta .date:after {
      margin: 0 6px;
   }
   .card-ttl {
      margin-top: .3em;
      font-size: 15px;
   }
}
@media (max-width: 600px) {
   .cardlist-wrap {
      display: flex;
      flex-direction: column;
      gap: 48px 24px;
   }
   .card-item {
      width: 100%;
   }
}

/* *****************************************************************
*	POST,PAGE
* ***************************************************************** */
.post,
.page {
   margin: 0;
}
.page-content, .entry-content, .entry-summary {
   margin: 40px 0 0;
}
.entry-content>:first-child, .entry-content div>:first-child{
   margin-top: 0 !important;
}
.page-content>:first-child, .page-content div>:first-child{
   margin-top: 0 !important;
}
.page-content > p + p{
   margin-top: 1em;
}
.page-header {
   text-align: center;
   margin-bottom: 80px;
}
.page-title {
   position: relative;
   font-size: 32px;
}
.page-title:before {
   position: absolute;
   bottom: -16px;
   left: calc(50% - 30px);
   width: 60px;
   height: 5px;
   content: '';
   border-radius: 3px;
   background: var(--color-main);
}
.entry-header {
   padding-bottom: 24px;
   border-bottom: 1px solid var(--color-lightgrey);
}
.entry-title {
   line-height: 1.4;
   font-size: 16px;
}

.single-post .entry-title {
   line-height: 1.4;
   font-size: 28px;
}

.entry-meta {
   display: flex;
   align-items: center;
   margin-top: 8px;
   font-size: 13px;
   color: var(--color-darkgrey);
   gap: 24px;
}
.entry-meta .post-Date {
   display: flex;
   align-items: center;
   letter-spacing: .05em;
}
.entry-meta .post-Category {
   display: flex;
   align-items: center;
   letter-spacing: .05em;
}
.entry-meta .post-Category a{
   text-decoration: none;
}
.entry-meta .post-Category img{
   width:16px;
   margin-right: .4em;
   vertical-align: top;
}
.post-thumbnail {
   margin: 40px 0 0;
}

.entry-footer {
   padding-top: 40px;
   padding-bottom: 40px;
}
.post-Tags ul{
   display: flex;
   align-items: center;
   gap: 8px;
   color: var(--color-darkgrey);
}

.post-Tags li a {
   padding: .5em;
   font-size: 13px;
   text-decoration: none;
   background-color: #eee;
}
.post-Tags li a::before {
   content: "#";
   color: #979797;
}

.single-post .nav-links {
   display: flex;
   justify-content: center;
   font-size: 13px;
   gap: 48px;
}
.single-post .nav-previous {
   text-align: right;
}
.single-post .nav-next {
   text-align: left;
}
@media screen and (max-width: 767px) {
   .entry-content,
   .entry-summary {
      margin: 40px 0 0;
   }
   .entry-meta {
      font-size: 12px;
   }
   .entry-meta .cat {
      font-size: 11px;
   }
   .single-post .entry-title {
      font-size: 20px;
   }
   .post-Tags li a {
      font-size: 12px;
   }
   .page-header {
      margin-bottom: 48px;
   }
   .page-title {
      font-size: 20px;
   }
}
/* *****************************************************************
*	BLOG
* ***************************************************************** */
.c-blog-pic {
   border-radius: 20px;
}
.c-blog-date {
   display: flex;
   align-items: center;
   letter-spacing: .05em;
   color: var(--color-darkgrey);
   font-size: 14px;
}
.c-blog-ttl {
   margin-top: .3em;
   font-size: 16px;
   font-weight: 400;
   line-height: 1.6;
   
}
.single-blog .entry-title {
   margin-top: 16px;
   line-height: 1.4;
   font-size: 28px;
}
@media (max-width: 767px) {
   .single-blog .entry-title {
      margin-top: 16px;
      font-size: 20px;
   }
   .c-blog-date {
      font-size: 12px;
   }
}
/* *****************************************************************
*	記事用（.single-post）
* ***************************************************************** */
.post-main .entry-content p{
   margin-top: 1em;
   margin-bottom: 1em;
}
.post-main .entry-content .wp-block-list {
   margin: 40px 0 40px 24px;
   list-style: disc;
}
.post-main .entry-content .wp-block-list .wp-block-list{
   margin: 0 0 0 24px;
}
.post-main .entry-content ol.wp-block-list {
   list-style: decimal;
}
.wp-block-image {
   margin-top: 24px;
   margin-bottom: 24px;
}

/* *****************************************************************
*	パンくず
* ***************************************************************** */
.page-head .breadcrumbs {
   margin: 96px 0 0;
   font-size: 12px;
   text-align: center;
}
.breadcrumbs {
   max-width: var(--width-content);
   width: 100%;
   margin-inline: auto;
   padding: 16px 32px 0;
   font-size: 12px;
   color: var(--color-darkgrey);
}
.breadcrumbs span{
   padding: 0 .2em;
}
.breadcrumbs span:first-of-type{
   padding-left: 0;
}
.breadcrumbs span[property="name"] {
   display: inline-block;
   padding: 0;
   margin-top: -3px;
   vertical-align: middle;
   max-width: 200px;
   white-space: nowrap;
   overflow: hidden;
   text-overflow: ellipsis;
}
.breadcrumbs a:hover{
   color: var(--color-main);
}
@media screen and (max-width: 767px) {
   .breadcrumbs {
      display: none;
   }
}

/* *****************************************************************
*	汎用
* ***************************************************************** */
.bg-white {
   background-color: var(--color-bg-white);
}
.bg-lightgrey {
   background-color: var(--color-bg-lightgrey);
}
.bg-lightsand {
   background-color: var(--color-bg-lightsand);
}
.bg-lightblue {
   background-color: var(--color-bg-lightblue);
}
.bg-dark {
   background-color: var(--color-bg-dark);
}
._shadow {
   box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.1);
   transition: .2s;
}
._ttl {
   font-size:26px;
}
._subttl {
   font-size:22px;
}
._text {
   margin-top: 24px;
}
._list {
   margin: 24px 0 40px 24px;
   list-style: disc;
}
ol._list {
   margin: 24px 0 40px 24px;
   list-style: decimal;
}
._center {
   margin-inline: auto;
   text-align: center;
}
._left {
   text-align: left;
}
._right {
   text-align: right;
}
._underline{
   padding-bottom: 12px;
   border-bottom: 1px solid var(--color-darkgrey);
}
._marker {
   background: linear-gradient(transparent 60%, #fff600 60%);
}
/* *****************************************************************
*	home
* ***************************************************************** */
.section {
   padding-top: 100px;
   padding-bottom: 100px;
}
.section:nth-child(odd) {
   background-color: var(--color-bg-lightgrey);
}

.section-inner {
   margin: 0 auto;
   max-width: var(--width-content);
   padding-left: 32px;
   padding-right: 32px;
}

.section-inner-full {
   margin: 0 auto;
   padding-left: 32px;
   padding-right: 32px;
}
.section-heading {
   margin-bottom: 80px;
   text-align: center;
}
.section-heading .ttl {
   position: relative;
   font-size: 32px;
}
.section-heading .ttl:before {
   position: absolute;
   bottom: -16px;
   left: calc(50% - 30px);
   width: 60px;
   height: 5px;
   content: '';
   border-radius: 3px;
   background: var(--color-main);
}
@media (max-width: 767px) {
   .section {
      padding-top: 48px;
      padding-bottom: 48px;
   }
   .section-heading {
      margin-bottom: 64px;
   }
   .section-heading .ttl {
      font-size: 24px;
   }
}

/* home-news */
.home-news-sec {
   background-color: var(--color-bg-lightgrey);
}
.home-news-wrap {
   display: flex;
   justify-content: space-between;
   gap: 4%;
   padding:40px 64px 32px;
   background-color: #fff;
   border-radius: 16px;
   box-shadow: 0 0px 10px 0 rgba(0,0,0,0.1);
}
.home-news-head .ttl {
   width: 160px;
   margin-top: 0;
   margin-bottom: 0;
   font-size: 32px;
   text-align: left;
   line-height: 1.4;
}
.home-news-head .subttl {
   margin-left: .2em;
   font-size: 20px;
   color: var(--color-main);
   letter-spacing: .05em;
}
.home-news-contents {
   flex: 1;
}
.home-news-list {
   display: flex;
   flex-direction: column;
}
.home-news-item {
   padding: 8px 0;
   border-bottom: 1px solid var(--color-lightgrey);
}
.home-news-item:first-child {
   border-top: 1px solid var(--color-lightgrey);
}
.home-news-body {
   display: flex;
   flex-wrap: nowrap;
   gap: 40px;
}
.home-news-meta {
   display: flex;
   margin: 0;
   font-size: 15px;
}
.home-news-ttl {
   flex: 1;
   font-size: 16px;
}
.home-news-ttl a{
   text-decoration: none;
}
.home-news-btn {
   margin-top: 24px;
   text-align: right;
}
.home-news-btn a{
   position: relative;
   padding-right: 34px;
   font-size: 14px;
   color: var(--color-base);
   text-decoration: none;
   letter-spacing: normal;
   transition: 0.3s ease-in-out;
} 
.home-news-btn a::before,
.home-news-btn a::after {
   position: absolute;
   content: '';
   top: 55%;
   right: 0;
   height: 1px;
   background: var(--color-base);
}
.home-news-btn a::before{
   width: 24px;
}
.home-news-btn a::after{
   width: 8px;
   transform-origin: right center;
   transform: translate(0, 0) rotate(35deg);
}

@media (max-width: 960px) {
   .home-news-wrap {
      display: flex;
      flex-direction: column;
      gap:unset;
      padding:24px 24px 8px;
   }
   .home-news-contents {
      width: 100%;
   }
   .home-news-head {
      width: 100%;
      margin-bottom: 24px;
   }
   .home-news-head .ttl {
      width: 100%;
      font-size: 24px;
      text-align: center;
   }
   .home-news-head .subttl {
      margin-left: 0;
      font-size: 14px;
      text-align: center;
   }
   .home-news-list {
      display: flex;
      flex-direction: column;
   }
   .home-news-body {
      display: flex;
      flex-direction: column;
      gap: 0;
   }
   .home-news-meta {
      width: 100%;
      font-size: 13px;
   }
   .home-news-ttl {
      font-size: 14px;
   }
   .home-news-btn {
      margin: 16px;
   }
}

/* home-sec-01 */
.home-sec-01 .grid {
   display: flex;
   justify-content: space-between;
   align-items: center;
   flex-direction: row-reverse;
   gap: 40px;
}
.home-sec-01 .grid .pic{
   width: 50%;
}
.home-sec-01 .grid .contents{
   width: 50%;
}
.home-sec-01 .grid .pic img{
   width: 100%;
   aspect-ratio: 3 / 2;
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 10px 20px 0 rgba(0,0,0,0.2);
}
@media screen and (max-width: 767px) {
   .home-sec-01 .grid {
      display: flex;
      flex-direction: column;
   }
   .home-sec-01 .grid .pic{
      width: 100%;
   }
   .home-sec-01 .grid .contents{
      width: 100%;
   }
}

/* home-sec-02 */
.home-sec-02 .grid {
   display: flex;
   justify-content: space-between;
   align-items: center;
   gap: 40px;
}
.home-sec-02 .grid + .grid{
   margin-top: 64px;
}
.home-sec-02 .grid .pic{
   width: 50%;
}
.home-sec-02 .grid .contents{
   width: 50%;
}
.home-sec-02 .grid .pic img{
   width: 100%;
   aspect-ratio: 3 / 2;
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 10px 20px 0 rgba(0,0,0,0.2);
}
.home-sec-02 .grid .contents .body{
   margin-top: 24px;
}
@media screen and (max-width: 767px) {
   .home-sec-02 .grid {
      display: flex;
      flex-direction: column;
   }
   .home-sec-02 .grid .pic{
      width: 100%;
   }
   .home-sec-02 .grid .contents{
      width: 100%;
   }
}

/* home-sec-03 home-free */
.home-free .contents{
   margin-inline: auto;
   max-width: var(--width-content-narrow);
}

.home-free .contents img{
   border-radius: 8px;
   box-shadow: 0 10px 20px 0 rgba(0,0,0,0.2);
}

/* home-sec-03 home-job */
.home-job .contents{
   margin-inline: auto;
   max-width: var(--width-content-narrow);
}
.home-job-table {
   margin-top: 40px;
   border-collapse: collapse;
   table-layout: fixed;
   width: 100%;
   border: none;
   border-top: 1px solid var(--color-lightgrey);
}
.home-job-table th,
.home-job-table td {
   display: table-cell;
   padding: 24px 8px;
   text-align: left;
   box-sizing: border-box;
   border-bottom: 1px solid var(--color-lightgrey);
}
.home-job-table th {
   width: 28%;
}

@media screen and (max-width: 767px) {
   .home-job-title .ttl{
      font-size: 22px;
   }
   .home-job-table th,
   .home-job-table td {
      padding: 16px 8px;
      font-size: 14px;
   }
}

/* home-sec-05 home-about*/
.home-about .grid {
   display: flex;
   justify-content: space-between;
   gap: 40px;
}
.home-about .grid .pic{
   width: 50%;
}
.home-about .grid .contents{
   width: 50%;
}
.home-about .grid .pic img{
   width: 100%;
   aspect-ratio: 3 / 2;
   object-fit: cover;
   border-radius: 8px;
   box-shadow: 0 10px 20px 0 rgba(0,0,0,0.2);
}
.home-about-table {
   border-collapse: collapse;
   table-layout: fixed;
   width: 100%;
   border: none;
}
.home-about-table th,
.home-about-table td {
   display: table-cell;
   padding: 16px 8px;
   text-align: left;
   box-sizing: border-box;
   border-bottom: 1px solid var(--color-lightgrey);
}
.home-about-table th {
   width: 25%;
}
.home-about .googlemap {
   margin-top: 80px;
   position: relative;
   width: 100%;
   height: 0;
   padding-top: 48%;
}
.googlemap iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   border-radius: 8px;
}
@media screen and (max-width: 767px) {
   .home-about .grid {
      display: flex;
      flex-direction: column;
   }
   .home-about .grid .pic{
      width: 100%;
   }
   .home-about .grid .contents{
      width: 100%;
   }
   .home-about-table th,
   .home-about-table td {
      padding: 16px 8px;
      font-size: 14px;
   }
   .home-about .googlemap {
      margin-top: 40px;
      padding-top: 75%;
   }
}

/* home-sec-sns */
.sns-list {
   margin-inline: auto;
   margin-top: -10px;
   display: flex;
   justify-content: center;
   align-items: center;
   gap: 40px;
}
.sns-list .item{
   width: 40px;
}
@media screen and (max-width: 767px) {
   .sns-list {
      gap: 24px;
   }
   .sns-list .item{
      width: 32px;
   }
}


/* home-sec-contact */
.contact-wrap {
   margin-inline: auto;
   max-width: var(--width-content-narrow);
}
.contact-wrap .text{
   text-align: center;
}

/* *****************************************************************
*	コンテンツ
* ***************************************************************** */
.page-content img {
   vertical-align: top;
}
.page-content a {
   text-decoration: underline;
}
.sec-block {
   margin-top: 0px;
}
.sec-block + .sec-block{
   margin-top: 120px;
}
.sec-block p {
   margin-top: 24px;
}
.c-lead {
   font-size: 20px;
   font-weight: normal;
}
.c-mv {
   margin: 80px auto 0;
}
.c-unit {
   display: flex;
   justify-content: space-between;
   gap: 6%;
}
.c-unit + .c-unit{
   margin-top: 120px;
}

.c-unit-item {
   flex: 1;
}
.c-content {
   margin-inline: auto;
}
.c-content + .c-content{
   margin-top: 96px;
}
.c-heading {
   margin-top: 0px;
   margin-bottom: 40px;
}
.c-ttl {
   margin-bottom: 40px;
   font-size: 32px;
}
.c-subttl {
   margin-top: 48px;
   font-size: 24px;
}
.c-link {
   margin-top:40px;
}
._reverse {
   flex-direction: row-reverse;
}
@media (max-width: 767px) {
   .sec-block + .sec-block{
      margin-top: 80px;
   }
   ._ttl {
      font-size:20px;
   }
   ._subttl {
      font-size:18px;
   }
   .c-lead {
      font-size: 16px;
   }
   .c-message {
      font-size: 18px;
   }
   .c-mv {
      margin: 40px auto 0;
   }
   .c-unit {
      display: flex;
      justify-content:center;
      flex-direction: column;
   }
   .c-unit + .c-unit{
      margin-top: 80px;
   }
   .c-unit-item {
      max-width: 100%;
      width: 100%;
   }
   .c-unit-item + .c-unit-item{
      margin-top: 24px;
   }
   .c-content + .c-content{
      margin-top: 64px;
   }
   .c-heading {
      margin-bottom: 24px;
   }
   .c-ttl {
      margin-bottom: 32px;
      font-size: 20px;
   }
   .c-subttl {
      font-size: 20px;
   }
}
/* *****************************************************************
*	search
* ***************************************************************** */
.search .page-content {
   margin-top: 40px;
}
.search-title a {
   font-weight: 400;
   text-decoration: none;
}
/* *****************************************************************
*	contact form
* ***************************************************************** */
.form-wrap {
   margin-inline: auto;
   max-width: 760px;
   margin-top: 40px;
   padding: 40px;
   background: #fff;
   border-radius: 16px;
   box-shadow: 0 0px 10px 0 rgba(0,0,0,0.1);
}
.form-wrap .text{
   text-align: center;
}
.form-kakunin p{
   font-size: 13px;
   margin-inline: auto;
   text-align: center;
}
.form-kakunin p + p{
   margin-top: 8px;
}
.cf7__list {
   margin-top: 32px;
   margin-bottom: 32px;
}

.cf7__list dt:nth-of-type(n + 2){
   margin-top: 30px;
}

.cf7__list dd {
   margin-top: 8px;
}

/* 必須・任意 */
.cf7__required,
.cf7__optional {
   margin-left: 8px;
   padding: 2px 6px;
   color: #fff;
   font-size: 10px;
   vertical-align: 1px;
   border-radius: 3px;
}

.cf7__required {
   background: var(--color-red);
}

.cf7__optional {
   background: #aaa;
}

/* input・textarea */
.cf7__list dd input[type="text"],
.cf7__list dd input[type="tel"],
.cf7__list dd input[type="email"],
.cf7__list dd textarea {
   width: 100%;
   padding: 15px 20px;
   background: #F4F4F4;
   border: none;
   outline:none;
   font-size: 16px;
}

/* ドロップダウンメニュー */
.cf7__select {
   position: relative;
}

.cf7__select:before {
   position: absolute;
   top: 50%;
   right: 20px;
   z-index: 10;
   transform: translateY(-50%);
   width: 0;
   height: 0;
   border-top: 8px solid #000;
   border-right: 6px solid transparent;
   border-left: 6px solid transparent;
   pointer-events: none;
   content: '';
}

.cf7__select select {
   width: 100%;
   padding: 19px 20px;
   background: #F4F4F4;
   color: #a5a5a5;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

/* チェックボックス・ラジオボタン */
.cf7__list dd .wpcf7-checkbox,
.cf7__list dd .wpcf7-radio {
   display: block;
   padding: 15px 0 10px 6px;
}

/* 縦並び（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item {
   display: block;
   margin: 0;
}

.cf7__list dd .wpcf7-list-item:nth-child(n + 2) {
   margin-top: 12px;
}

/* マウスカーソル（チェックボックス・ラジオボタン） */
.cf7__list dd .wpcf7-list-item label {
   cursor: pointer;
}

/* チェックボックス・ラジオボタン */
input[type="checkbox"],
input[type="radio"] {
   position: relative;
   width: 18px;
   height: 18px;
   margin-right: 8px;
   border: 1px solid #bcbcbc;
   vertical-align: -3px;
   cursor: pointer;
   -webkit-appearance: none;
   -moz-appearance: none;
   appearance: none;
}

/* チェックボックス */
input[type="checkbox"]:checked {
   border: 1px solid #000;
   background: #000;
}

input[type="checkbox"]:checked:before {
   position: absolute;
   top: 2px;
   left: 5px;
   transform: rotate(50deg);
   width: 6px;
   height: 10px;
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   content: '';
}

/* ラジオボタン */
input[type="radio"] {
   border-radius: 50%;
}

input[type="radio"]:checked:before {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   width: 9px;
   height: 9px;
   border-radius: 50%;
   background: #000;
   content: '';
}

/* プレースホルダー */
/* Google Chrome / Safari / Mozilla Firefox / Opera */
.cf7__list dd input[type="text"]::placeholder,
.cf7__list dd input[type="tel"]::placeholder,
.cf7__list dd input[type="email"]::placeholder,
.cf7__list dd textarea::placeholder {
   color: #a5a5a5;
}

/* Microsoft Edge */
.cf7__list dd input[type="text"]::-ms-input-placeholder,
.cf7__list dd input[type="tel"]::-ms-input-placeholder,
.cf7__list dd input[type="email"]::-ms-input-placeholder,
.cf7__list dd textarea::-ms-input-placeholder {
   color: #a5a5a5;
}

/* Internet Explorer */
.cf7__list dd input[type="text"]:-ms-input-placeholder,
.cf7__list dd input[type="tel"]:-ms-input-placeholder,
.cf7__list dd input[type="email"]:-ms-input-placeholder,
.cf7__list dd textarea:-ms-input-placeholder {
   color: #a5a5a5;
}

/* 送信ボタン */
.cf7__button {
   margin-top: 32px;
   padding-left: 72px;
   text-align: center;
}

input[type="submit"] {
   width: 260px;
   height: 60px;
   padding: 0;
   background: #333;
   color: var(--color-white);
   border-radius: 50vh;
   border: none;
   transition: opacity .6s;
}

input[type="submit"]:hover {
   opacity: .6;
}

/* ajax-loader */
.wpcf7-spinner {
   vertical-align: middle;
}

@media screen and (max-width: 767px) {
   .form-wrap {
      padding: 32px 16px 16px;
   }
   .form-wrap .text{
      font-size: 15px;
      text-align: left;
   }
   .cf7__list dt {
      font-size: 15px;
   }

   .cf7__list dd .wpcf7-checkbox,
   .cf7__list dd .wpcf7-radio {
      padding: 15px 0 0;
   }
   .cf7__button {
      padding: 0;
      text-align: center;
   }

   input[type="submit"] {
      margin: 0 auto;
      width: 180px;
      height: 56px;
   }
   .form-kakunin {
      text-align: left;
   }
   .cf7__button .wpcf7-spinner{
      display: block;
      margin-inline: auto;
   }
}

/* youtube */
.youtube {
	width: 100%;
	aspect-ratio: 16 / 9;
}
.youtube iframe {
	width: 100%;
	height: 100%;
}

/* googlemap */
.googlemap {
   position: relative;
   width: 100%;
   height: 0;
   padding-top: 33.3%;
}
.googlemap iframe {
   position: absolute;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
}
@media screen and (max-width: 767px) {
   .googlemap {
      padding-top: 100%;
   }
}

@media screen and (min-width: 768px) {
	.brsp{ display: none; }
}

a.wp-block-file__button, a:visited.wp-block-file__button {
	color: #fff;
}

/* etc
---------------------------------------------------- */
hr {
   margin: 48px 0;
   border: none;
   height: 1px;
   background-color: var(--color-grey);
}
.brsp {
   display: none;
}
@media ( max-width: 767px){
   .brsp {
      display: block;
   }
   .brpc {
      display: none;
   }
}

.mt-0 {
	margin-top: 0px !important;
}

.mt-8 {
	margin-top: 8px !important;
}

.mt-16 {
	margin-top: 16px !important;
}

.mt-24 {
	margin-top: 24px !important;
}

.mt-32 {
	margin-top: 32px !important;
}

.mt-40 {
	margin-top: 40px !important;
}

.mt-48 {
	margin-top: 48px !important;
}

.mt-56 {
	margin-top: 56px !important;
}

.mt-64 {
	margin-top: 64px !important;
}

.mt-72 {
	margin-top: 72px !important;
}

.mt-80 {
	margin-top: 80px !important;
}

.mt-96 {
	margin-top: 96px !important;
}

.mt-120 {
	margin-top: 120px !important;
}

.mt-160 {
	margin-top: 160px !important;
}

.mb-0 {
	margin-bottom: 0px !important;
}

.mb-8 {
	margin-bottom: 8px !important;
}

.mb-16 {
	margin-bottom: 16px !important;
}

.mb-24 {
	margin-bottom: 24px !important;
}

.mb-32 {
	margin-bottom: 32px !important;
}

.mb-40 {
	margin-bottom: 40px !important;
}

.mb-48 {
	margin-bottom: 48px !important;
}

.mb-56 {
	margin-bottom: 56px !important;
}

.mb-64 {
	margin-bottom: 64px !important;
}

.mb-72 {
	margin-bottom: 72px !important;
}

.mb-80 {
	margin-bottom: 80px !important;
}

.mb-96 {
	margin-bottom: 96px !important;
}

.mb-120 {
	margin-bottom: 120px !important;
}

.mb-160 {
	margin-bottom: 160px !important;
}
.pt-0 {
	padding-top: 0px !important;
}

.pt-8 {
	padding-top: 8px !important;
}

.pt-16 {
	padding-top: 16px !important;
}

.pt-24 {
	padding-top: 24px !important;
}

.pt-32 {
	padding-top: 32px !important;
}

.pt-40 {
	padding-top: 40px !important;
}

.pt-48 {
	padding-top: 48px !important;
}

.pt-56 {
	padding-top: 56px !important;
}

.pt-64 {
	padding-top: 64px !important;
}

.pt-72 {
	padding-top: 72px !important;
}

.pt-80 {
	padding-top: 80px !important;
}

.pt-96 {
	padding-top: 96px !important;
}

.pt-120 {
	padding-top: 120px !important;
}

.pt-160 {
	padding-top: 160px !important;
}

.pb-0 {
	padding-bottom: 0px !important;
}

.pb-8 {
	padding-bottom: 8px !important;
}

.pb-16 {
	padding-bottom: 16px !important;
}

.pb-24 {
	padding-bottom: 24px !important;
}

.pb-32 {
	padding-bottom: 32px !important;
}

.pb-40 {
	padding-bottom: 40px !important;
}

.pb-48 {
	padding-bottom: 48px !important;
}

.pb-56 {
	padding-bottom: 56px !important;
}

.pb-64 {
	padding-bottom: 64px !important;
}

.pb-72 {
	padding-bottom: 72px !important;
}

.pb-80 {
	padding-bottom: 80px !important;
}

.pb-96 {
	padding-bottom: 96px !important;
}

.pb-120 {
	padding-bottom: 120px !important;
}

.pb-160 {
	padding-bottom: 160px !important;
}
.text-italic { font-style: italic; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-center { text-align: center; }
.fs-small {font-size:.85em;}
.fs-10 {font-size:10px;}
.fs-12 {font-size:12px;}
.fs-14 {font-size:14px;}
.fs-16 {font-size:16px;}
.fs-18 {font-size:18px;}
.fs-20 {font-size:20px;}
.fs-22 {font-size:22px;}
.fs-24 {font-size:24px;}
.fs-26 {font-size:26px;}
.fs-28 {font-size:28px;}
.fs-30 {font-size:30px;}
.fs-32 {font-size:32px;}
.fs-34 {font-size:34px;}
.fs-36 {font-size:36px;}
.fs-38 {font-size:38px;}
.fs-40 {font-size:40px;}