@charset "UTF-8";

/* フォントのインポート */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');
/*
Theme Name: lm-child
Version: 0.1.0
Template: lm
*/
/* 
PC
@media print, screen and (min-width: 1024px) {
}
タブレット
@media print, screen and (max-width: 1023px) {
}
SP
@media print, screen and (max-width: 768px) {
} 
*/
:root {
    /*------▼基本設定▼------*/
    --color-background: #1D3167;
    --color-font: #FFF;
    --color-primary: #13134A;
    --color-primary-shade: #0C2058;
    --color-primary-tint: #6475A3;
    --color-secondary: #F73737;
    --color-secondary-tint: #F86464;
    --color-table-border: #DCDDDD;
    --body-font-size: clamp(14px, .84vw, 16px);
    --body-line-height: 2;
    --body-letter-spacing: .03em;
    --body-font-family: "Noto Sans JP", sans-serif;
    --content-max-width: 1280px;
    /* --inner-width: 94%; */
    /*------▼フォント設定▼------*/
    --font-family01: "Noto Sans JP", sans-serif;
    --font-family02: "Roboto", sans-serif;
    /*------▼フォントサイズ設定▼------*/
    --font-size10: clamp(8px, .63vw, 10px);
    --font-size12: clamp(10px, .63vw, 12px);
    --font-size14: clamp(12px, .73vw, 14px);
    --font-size16: clamp(14px, .84vw, 16px);
    --font-size18: clamp(16px, .94vw, 18px);
    --font-size20: clamp(15px, 1.1vw, 20px);
    --font-size22: clamp(18px, 1.15vw, 22px);
    --font-size24: clamp(18px, 1.25vw, 24px);
    --font-size26: clamp(20px, 1.36vw, 26px);
    --font-size28: clamp(20px, 1.6vw, 28px);
    --font-size30: clamp(22px, 1.7vw, 30px);
    --font-size32: clamp(22px, 1.85vw, 32px);
    --font-size34: clamp(22px, 1.85vw, 34px);
    --font-size36: clamp(24px, 2vw, 36px);
    --font-size38: clamp(24px, 2.1vw, 38px);
    --font-size40: clamp(24px, 2.1vw, 40px);
    --font-size42: clamp(26px, 2.3vw, 42px);
    --font-size44: clamp(26px, 2.4vw, 44px);
    --font-size46: clamp(28px, 2.61vw, 46px);
    --font-size48: clamp(28px, 2.61vw, 48px);
    --font-size50: clamp(28px, 2.61vw, 50px);
    --font-size60: clamp(30px, 3.2vw, 60px);
    /*------▼clampバリエーション設定▼------*/
    --clamp-10: clamp(5px, 0.52vw, 10px);
    --clamp-14: clamp(7px, 0.73vw, 14px);
    --clamp-20: clamp(10px, 1.04vw, 20px);
    --clamp-25: clamp(15px, 1.36vw, 25px);
    --clamp-30: clamp(15px, 1.56vw, 30px);
    --clamp-40: clamp(20px, 2.08vw, 40px);
    --clamp-44: clamp(20px, 2.61vw, 44px);
    --clamp-50: clamp(25px, 2.61vw, 50px);
    --clamp-60: clamp(30px, 3.13vw, 60px);
    --clamp-70: clamp(35px, 3.65vw, 70px);
    --clamp-80: clamp(40px, 4.17vw, 80px);
    --clamp-90: clamp(45px, 4.69vw, 90px); 
    --clamp-100: clamp(50px, 5.42vw, 100px);
    --clamp-110: clamp(55px, 5.73vw, 110px);
    --clamp-120: clamp(60px, 6.25vw, 120px);
    --clamp-130: clamp(65px, 6.78vw, 130px);
    --clamp-140: clamp(70px, 7.3vw, 140px);
    --clamp-150: clamp(76px, 7.92vw, 150px);
	--clamp-160: clamp(80px, 8.4vw, 160px);
    --clamp-190: clamp(100px, 10.42vw, 190px);
    --clamp-200: clamp(100px, 10.42vw, 200px);
}
/* ================================
   foundation
================================ */

/* === Reset & Base === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    letter-spacing: .06em;
}
html {
    -webkit-text-size-adjust: 100%;
    scroll-behavior: smooth;
    margin-top: 0!important;
}
body {
    position: relative;
    font-family: var(--body-font-family);
    font-size: var(--body-font-size);
    line-height: 1.85;/* 1.8 - 1.85*/
    color: var(--color-font);
    background-color: var(--color-background);
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
a {
    color: inherit;
    text-decoration: none;
}
a:hover, a:active {
    color: inherit;
    /* opacity: .6; */
}
ul, ol {
    list-style: none;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  /* table-layout: fixed; */
}
th, td {
  padding: 0.75em;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--color-table-border);
}
th {
  font-weight: bold;
}
button {
    background: none;
    border: none;
    cursor: pointer;
    font: inherit;
}
h1, h2, h3, h4, h5, h6 {
    letter-spacing: .06em;/*.06*/
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: .5em;
}
p {
    font-size: var(--body-font-size);
    margin-bottom: 1.5em;
    font-weight: 500;
    letter-spacing: var(--body-letter-spacing);
}
/* === h1~h6 === */ 
h1 {font-size: var(--font-size48);}
h2 {font-size: var(--font-size36);}
h3 {font-size: var(--font-size26);}
h4 {font-size: var(--font-size22);}
h5 {font-size: var(--font-size20);}
h6 {font-size: var(--font-size18);}

/* ================================
   layout
================================ */
.entry-content {
    overflow: hidden;
}
/* === wrapper & inner === */   
.Inner {
	width: var(--inner-width);
    max-width: var(--inner-max-width-px);
}
.wrapper_content {
	position: relative;
	width: var(--inner-width);
    max-width: var(--inner-max-width-px);
	margin: 0 auto;
    z-index: 1;
}
.content_inner {
    position: relative;
    z-index: 0; 
    width: var(--inner-width);
}
.max_wFull {
    position: relative;
    width:100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.max_wFull::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}
.max_w1600 {
    max-width: 1600px;
}
.max_w830 {
    max-width: 830px;
}
.max_w400 {
    max-width: 400px;
}
@media print, screen and (max-width: 768px) {
    .content_inner--full {
        width: 100%;
    }
}
/* === その他 === */
.anchor_link {
    position: relative;
    z-index: -1;
}
.anchor_link::before {
	content: '';
	display: block;
    padding-top: var(--clamp-150);
    margin-top: calc(var(--clamp-150) * -1);
}
.anchor-txt {
    color: var(--color-primary-tint);
    text-decoration: underline;
}
.anchor-txt:hover {
    color: var(--color-primary-tint);
    text-decoration: unset;
}
.copyright {
    background: var(--color-primary);
    color: #FFF;
    font-size: var(--font-size16);
    font-weight: 600;
    font-family: var(--font-family02);
    text-align: center;
    padding: 1em;
    margin-bottom: 30px
}
.googlemap {
	position: relative;
	padding-bottom: clamp(250px, 26vw, 500px);
	padding-top: 0;
	height: 0;
	overflow: hidden;
}
.googlemap iframe,
.googlemap object,
.googlemap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
body::before {
    content: '';
    position: fixed;
    width: 100vw;
    height: 100vh;
    background: url(/wp-content/uploads/page_bg.png) center / cover no-repeat;
    z-index: -1;
    opacity: 1;
    right: 0;
    top: 0;
}
/* === l-section === */
.l-section {
    position: relative;
    width: 100vw;
    margin-left: calc(((100vw - 100%) / 2) * -1);
    margin-right: calc(((100vw - 100%) / 2) * -1);
}
.l-section::before {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    z-index: -1;
}
/* === lInner === */
.lInner {
    margin-bottom: 7rem;
}
@media print, screen and (max-width: 768px) {
    .lInner {
        margin-bottom: 3.5rem;
    }
}
/* === lHeaderthumbnail === */
.lHeaderthumbnail__title {
    width: max-content;
    font-size: var(--font-size36);
    font-family: var(--font-family01);
    font-weight: bold;
    display: inline-block;
    padding: 0 2em;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.lHeaderthumbnail {
    position: relative;
}
.lHeaderthumbnail__background {
    opacity: .56;
}
.lHeaderthumbnail__title::before, .lHeaderthumbnail__title::after {
    content: '';
    position: absolute;
    width: 1.58em;
    height: 1.58em;
    background: url(/wp-content/uploads/deco_star02.png) center / contain no-repeat;
    top: 50%;
    transform: translateY(-50%);
}
.lHeaderthumbnail__title::before {
    left: 0; 
}
.lHeaderthumbnail__title::after {
    right: 0;
}
body.home .lHeaderthumbnail__title {
    display: none;
}
@media print, screen and (max-width: 768px) {
}
/* === lHeader === */
.lHeader001 ul.sub-menu {
    width: max-content;
    min-width: 180px;
}
.lHeader001 li:has(ul.sub-menu):hover ul.sub-menu {
    background: var(--color-background);
}
.lHeader001 ul.sub-menu li a {
    color: #FFF !important;
    font-size: var(--font-size16);
    padding: 3px 1em;
    transition: .3s ease;
}
.lHeader001 ul.sub-menu .sub-menu {
    left: 100%;
    top: 0;
    visibility: hidden;
    transition: .3s ease;
}

.lHeader001 ul.sub-menu:hover .sub-menu {
    visibility: visible;
    transition: .3s ease;
}
.lHeader001 ul.sub-menu li {
    border: 1px solid #C9C9C9;
    border-top: 0px;
    padding: 0 0;
}
.lHeader001 ul.sub-menu li:first-child {
    border-top: 1px solid #C9C9C9;
}
.lHeader001 ul.sub-menu li a:hover::after {
    transform: scaleX(0);
}
.lHeader001 ul.sub-menu li a:hover {
    background: #6475A3;
}

body.home .lHeader001 {
    position: absolute;
    top: 0;
    left: 0;
    background: transparent;
}
body.sticky-header #header {
    top: 0;
}
body.home.sticky-header #header {
    background: var(--color-background);
}
@media print, screen and (min-width: 1024px) {

}
@media print, screen and (max-width: 1023px) {
    .lHeader001 {
        height: 60px;
    }
    .lHeader001__logo {
        width: 40%;
    }
    .lHeader001 .menu-item a {
        font-size: var(--font-size18);
        /* align-items: center; */
        padding: .5em;
    }
    .lHeader001 ul.sub-menu {
        display: block;
        width: 100%;
        background: #0c2058;
        border-radius: 8px;
        padding: 1rem;
        margin-top: 8px;
    }
    .lHeader001 ul.sub-menu li {
        border: 0!important;
        margin-bottom: 10px;
    }
    
    .lHeader001 ul.sub-menu li a {
        padding: 0;
        padding-left: 1em;
        position: relative;
    }
    .lHeader001 ul.sub-menu .sub-menu {
        visibility: visible;
        padding: 0;
        padding-left: 1rem;
        margin-top: 10px;
    }
    .lHeader001 ul.sub-menu li a::before {
        content: '-';
        position: absolute;
        left: 0;
        top: 0;
    }
    .lHeader001 .menu-item img {
        width: var(--clamp-80);
    }
    .lHeader001__tabletNavigationMenu {
        display: flex;
        flex-wrap: wrap;
        align-items: flex-start;
    }
    .lHeader001 .menu-item {
        width: 100%;
    }
    .lHeader001 .menu-item.sns {
        width: max-content;
    }
    body.sticky-header #header {
        top: 0;
    }
    body.headerNavIsOpen .lHeader001__inner {
        top: 0;
        background-color: var(--color-background);
    }
    body.headerNavIsOpen .lHeader001__header {
        height: 60px;
    }
    body.headerNavIsOpen .lHeader001__tabletNavContainer {
        background: #1d3167EB;
        height: calc(100vh - 60px);
    }
    .lHeader001 li.menu-item-has-children a {
        pointer-events: auto;
    }
	nav.lHeader001__tabletNavigation {
		padding-bottom: 100px;
	}
}
/* ==== tabletHamburger ==== */

/* === lFooter001 === */
/* == footer ==================== */
.footer_content {
  background: var(--color-primary);
  padding-top: var(--clamp-70);
  position: relative;
  z-index: 0;
}
.footer_menu {
  gap: 3%;
}
.footer_menu li a:hover {
  text-decoration: underline;
}
.col-4 {
  width: calc(100% / 4);
}
.ft-menu li, .ft-menu a {
  color: #FFF;
  font-size: var(--font-size20);
  font-weight: 500;
  line-height: 1.5;
}
.ft-menu li {
  margin-bottom: 1.25rem;
}
.ft-menu .sub-menu {
  margin-top: .5em;
}
.ft-menu .sub-menu li {
  margin-bottom: .5em;
  position: relative;
  padding-left: 1em;
}
/* .ft-menu .sub-menu li::before {
  content: '-';
} */
.footer_logo img {
  margin: 0 auto 20px;
  width: 70%;
}
.footer_logo .ft-menu__btnTxt {
    width: 100%;
    background: #FFF;
    font-size: var(--font-size20);
    color: var(--color-primary);
    text-align: center;
    padding: .4em .8em;
    transition: .3s ease;
}
.footer_logo a:hover .ft-menu__btnTxt {
    opacity: .6;
}
.footerNav_content {
  width: 90%;
  margin: var(--clamp-70) auto 0;
}

ul.footer_nav {
  display: flex;
  justify-content: center;
  gap: var(--clamp-30);
}
ul.footer_nav a {
  color: #FFF;
  font-size: var(--font-size16);
  font-weight: 500;
  line-height: 1.5;
}
ul.footer_nav a:hover {
  text-decoration: underline;
}

.copyright {
  width: 90%;
  margin: 0 auto;
  text-align: center;
  color: #FFF;
  font-size: var(--font-size16);
  font-weight: 500;
  line-height: 2;
  padding: 0 0 10px;
}
.footer_content {
  padding-bottom: 100px;
}
@media print, screen and (max-width: 768px) {
  .col-4 {
    width: 100%;
  }
  .footer_content {
    padding-bottom: 100px;
  }
  .footer_logo img {
    margin: 0 auto 20px;
    width: 70%;
  }
  ul.ft-menu {
      padding-left: 1em;
  }
  ul.footer_nav {
      align-content: center;
      align-items: center;
      flex-wrap: wrap;
      gap: 0 20px;
      margin-bottom: 20px;
  }
  .footer_logo {
    max-width: 300px;
    width: 70%;
    margin: 0 auto;
  }
}

/* ================================
   component / c-
================================ */
/* === c-flex === */
.c-flex {
    display: flex;
    flex-wrap: nowrap;
}
.c-flex__inner {
    padding: 0 min(10%, 70px);
    width: 100%;
    max-width: 630px;
}
@media print, screen and (max-width: 768px) {
    .c-flex {
        flex-direction: column;
        gap: var(--clamp-40);
    }
    .c-flex__inner {
        max-width: 100%;
        padding: 0 8%;
    }
}
.wrap {
    flex-wrap: wrap;
}
.nowrap {
    flex-wrap: nowrap;
}
.ai_start {
    align-items: start;
}
/* === item / area === */
.txt-area, .img-area {
    position: relative;
}
.img-area img {
    width: 100%;
    height: auto;
    position: relative;
}
@media print, screen and (max-width: 769px) {
}
/* === column === */
.col-1{ width: 100%;}
.col-2{width: calc((100% - (var(--clamp-44) * 1)) / 2);}
.col-3{width: calc(100% / 3);}
.col-4{width: calc(100% / 4);}
.col-5{width: calc(100% / 5);}
@media print, screen and (max-width: 768px) {
    .col-1, .col-2, .col-3, .col-4, .col-5 {
        width: 100%;
        margin-bottom: 20px;
    } 
}
/* === width === */
.w15 {width: 15%;}
.w25 {width: 25%;}
.w35 {width: 35%;}
.w45 {width: 45%;}
.w55 {width: 55%;}
.w65 {width: 65%;}
.w75 {width: 75%;}
.w85 {width: 85%;}
.w95 {width: 95%;}
@media print, screen and (max-width: 768px) {
    .w15, .w25, .w35, .w45, .w55, .w65, .w75, .w85, .w95 {
        width: 100%;
        margin-bottom: 20px;
    }
}
/* === c-card === */
.c-card {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}
.c-card--col-2 {gap: 30px var(--clamp-40);}
.c-card--col-3 {gap: 20px var(--clamp-40)}
.c-card--col-4 {gap: 20px;}
.c-card--col-5 {gap: 20px;}
.c-card--col-6 {gap: 8px;}
.c-card__item--col-1 {width: calc((100% - (20px * 0)) / 1);}
.c-card__item--col-2 {width: calc((100% - (var(--clamp-40) * 1)) / 2);}
.c-card__item--col-3 {width: calc((100% - (var(--clamp-40) * 2)) / 3);}
.c-card__item--col-4 {width: calc((100% - (20px * 3)) / 4);}
.c-card__item--col-5 {width: calc((100% - (20px * 4)) / 5);}
.c-card__item--col-6 {width: calc((100% - (8px * 5)) / 6);}
/* .c-card p { font-weight: 400;} */
.c-card p:last-child {margin: 0;}
@media print, screen and (max-width: 1023px) {
    .c-card__item--col-5 {width: calc((100% - (20px * 3)) / 4);}
    .c-card__item--col-6 {width: calc((100% - (8px * 3)) / 4);}
}
@media print, screen and (min-width: 769px) {
    .c-card .txt-area {
        padding: 0 .7rem;
    }    
}
@media print, screen and (max-width: 768px) {
	.c-card {
		width: 100%;
		margin: 0 auto;
	}
    .c-card {flex-direction: row;}
    .c-card--col-2, .c-card--col-3 {
        gap: 15px;
    }
    .c-card__item--col-2, .c-card__item--col-3 {
        width: 100%;
        margin-bottom: 0;
    }
    .c-card__item--col-4, .c-card__item--col-5 {
        width: calc((100% - (20px * 1)) / 2);
        margin-bottom: 0;
    }
    .c-card__item--col-6 {width: calc((100% - (8px * 1)) / 2);}    
}
@media print, screen and (max-width: 500px) {
    .c-card__item--col-4, .c-card__item--col-5 {
        width: 100%;
		margin: 0 auto;
    }
}
@media print, screen and (max-width: 349px) {
    .c-card__item--col-6 {width: 100%;}    
}
/* === c-ttl === */
.c-ttl {
    position: relative;
    padding-bottom: .3em;
    margin-inline: auto;
    max-width: 510px;
    border-bottom: 1px solid;
    text-align: center;
}
.c-ttl::before, .c-ttl::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: #FFF;
    border-radius: 50vw;
    bottom: -.13em;
}
.c-ttl::before {
    left: 0;
}
.c-ttl::after {
    right: 0;
}
.c-ttl.u-color-primary::before, .c-ttl.u-color-primary::after {
    background: var(--color-primary);
}
.c-ttl.u-color-body::before, .c-ttl.u-color-body::after {
    background: var(--color-background);
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
}
/* === c-subTtl === */
.c-subTtl {
    font-size: var(--font-size22);
    padding-left: .8em;
    position: relative;
}
.c-subTtl::before {
    content: '-';
    position: absolute;
    left: 0;
    top: 0;
}
/* ==== c-bubble ==== */
.c-bubble, .post .c-bubble {
    position: relative;
    padding: 0 .8em;
	display: inline-block;
}
.c-bubble::before, .post .c-bubble::before,
.c-bubble::after, .post .c-bubble::after {
    content: '';
    position: absolute;
    width: 1px;
    height: 1em;
    bottom: .3em;
    border-left: 2px solid;
}
.c-bubble::before, .post .c-bubble::before {
    left: 0;
    transform: rotate(-27deg);
}
.c-bubble::after, .post .c-bubble::after {
    right: 0;
    transform: rotate(27deg);
}
/* === c-tagTxt === */
.c-tagTxt {
    outline: 1px solid;
    color: #FFF;
    display: inline-block;
    font-size: var(--font-size18);
    border-radius: 50vw;
    padding: .3em 1em .1em;
    font-weight: bold!important;
    border-radius: 5px;
}
/* === c-btn === */
.c-btnContent {
    display: flex;
    justify-content: center;
    gap: var(--clamp-20);
}
.c-btnContent.--right {
    justify-content: end;
}
.c-btn, a.c-btn {
    display: inline-block;
    position: relative;
    width: 90%;
    max-width: 400px;
    font-size: var(--font-siz18);
    font-family: var(--font-family01);
    font-weight: 500;
    line-height: 2;
    color: var(--color-font);
    background: var(--color-primary);
    padding: 1.2em 3em;
    text-align: center;
    border-radius: 0;
    transition: .3s ease;
    outline: .3px solid rgba(255, 255, 255, 0.3);
}
.c-btn:hover, a.c-btn:hover {
    /* opacity: .8; */
    background: var(--color-primary-tint);
}
.c-btn::after, a.c-btn::after {
    content: "";
    width: 1em;
    height: 1em;
    background-image: url(/wp-content/uploads/icon_btn.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;   
    transition: .5s ease;
    position: absolute;
    right: 1em;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.c-btn:hover::after, a.c-btn:hover::after {
    right: .7em;
}
.c-btn-deco {
    position: absolute;
    width: .72em;
    height: .72em;
    background: url(/wp-content/uploads/deco_star01.png) no-repeat;
    background-size: contain;
    background-position: center;
    z-index: 1;
}
.c-btn-deco--01 {
    left: calc((.72em / 2) * -1);
    top: calc((.72em / 2) * -1);
}
.c-btn-deco--02 {
    right: calc((.72em / 2) * -1);
    top: calc((.72em / 2) * -1);
}
.c-btn-deco--03 {
    left: calc((.72em / 2) * -1);
    bottom: calc((.72em / 2) * -1);
}
.c-btn-deco--04 {
    right: calc((.72em / 2) * -1);
    bottom: calc((.72em / 2) * -1);
}
.c-btn--youtube {
    width: 90%;
    max-width: 540px;
    border-radius: 10px;
    overflow: hidden;
}
.c-btn--page, a.c-btn--page {
    background: var(--color-primary-shade);
    width: calc((100% - (var(--clamp-20) * 2)) / 3);
    max-width: 350px;
    min-width: 200px;
    outline: 0;
    padding: 1.2em;
}
.c-btn--page::after, a.c-btn--page::after {
    display: none;
}
@media print, screen and (max-width: 768px) {
    .c-btnContent{
        flex-wrap: wrap;
    }
    .c-btn--page, a.c-btn--page {
        padding: .6em;
    }
}
/* ==== c-table ======== */
.c-table, .c-table th, .c-table td {
    border-width: 0;
}
.c-table {
    word-wrap: break-word;
    white-space: normal;
    /* word-break: break-word; */
    table-layout: fixed;
}
.c-table th, .c-table td {
    font-size: var(--body-font-size);
    background: #FFF;
    padding: 1.2em 1em 1.2em 0;
    vertical-align: top;
    border-bottom: 1px solid var(--color-table-border);
}
.c-table tr:first-child th, .c-table tr:first-child td {
    border-top: 1px solid var(--color-table-border);
}
.c-table th {
    font-weight: bold;
    width: 35%;
} 
.c-table td {
    font-weight: 500;
    width: 65%;
}
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) {
    .c-table th {
        width: 30%;
    }
    .c-table td {
        width: 70%;
        padding-right: 0;
    }
}

/* ==== c-tabs ==== */
.c-tabs {
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--clamp-40) 20px;
}
.c-tab_item {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--color-primary);
    color: #FFF;
    font-family: var(--font-family01);
    font-weight: 500;
    font-size: var(--font-size18);
    line-height: 1.5;
    /*     letter-spacing: var(--body-letter-spacing); */
    text-align: center;
    padding: 1em;
    /* transition: all 0.2s ease; */
    cursor: pointer;
    width: calc((100% - (20px * 1)) /2);
    max-width: 250px;
}
.c-tab_item:hover {
    color: #FFF;
    background-color: var(--color-primary-tint);
}
input[name="c-tab_item"] {
    display: none;
}
.c-tab_content {
    display: none;
    clear: both;
    overflow: hidden;
    width: 100%;
    border-top: 0;
}
#a:checked ~ #a_content,
#b:checked ~ #b_content,
#c:checked ~ #c_content {
    display: block;
}
.c-tabs input:checked + .c-tab_item {
    background-color: var(--color-primary-tint);
    color: #fff;
}

@media print, screen and (max-width: 768px) {

}
/* ==== c-menu ==== */
.c-menu {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: start;
    gap: var(--clamp-50) var(--clamp-40);
}
.c-menu__list--col-3 {
    width: calc((100% - (var(--clamp-40) * 2)) / 3);
}
.c-menu__list--col-2 {
    width: calc((100% - (var(--clamp-40) * 1)) / 2);
}
.c-menu__thumb {
    position: relative;
    outline: 1px solid #FFF;
    overflow: hidden;
}
.c-menu__thumb::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--color-background);
    opacity: .73;
    transition: .3s ease;
    z-index: 1;
}
.c-menu__thumbImg {
    width: 100%;
    height: auto;
}
.c-menu__thumbImg img {
    width: 100%;
    height: auto;
    transition: .5s ease;
    aspect-ratio: 10/5.5;
    object-fit: cover;
}
.c-menu__thumbTtl {
    margin: 0;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.c-menu__btn {
    display: flex;
    text-align: right;
    justify-content: flex-end;
    font-family: var(--font-family02);
    font-weight: 500;
    font-size: var(--font-size14);
    padding-right: 1.3em;
    position: relative;
    transition: .3s ease;
}
.c-menu__btn::after {
    content: "";
    width: .63em;
    height: .63em;
    background-image: url(/wp-content/uploads/icon_btn.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .5s ease;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
a.c-menu__list:hover {
    opacity: 1;
}
a.c-menu__list:hover .c-menu__thumb::before {
    opacity: .3;
}
a.c-menu__list:hover .c-menu__thumbImg img {
    opacity: 1;
    transform: scale(1.05);
}
a.c-menu__list:hover .c-menu__btn {
    opacity: .6;
}
/* a.c-menu__list:hover .c-menu__btn::after {
    right: -.2em;
} */

@media print, screen and (max-width: 768px) {
    .c-menu__list--col-2, .c-menu__list--col-3 {
        width: 100%;
    }
    .c-menu__desc {
        margin-bottom: .5em;
    }
    .c-menu__thumbImg img {
        aspect-ratio: 2/1;
        object-fit: cover;
}
}
/* ==== c-events ==== */
.c-events__item {
  display: flex;
  border: 1px solid #FFF;
  margin-bottom: 30px;
  background: transparent;
}
.c-events__item:last-child {
  margin-bottom: 0;
}
.c-events__img {
  width: 30%;
  border-radius: 0;
  overflow: hidden;
}
.c-events__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .7s ease;
}
.c-events__txt {
  width: 70%;
  text-align: left;
  padding: min(3%, 30px);
}
.c-events__ttl  {
  font-size: var(--font-size22);
  margin-bottom: .75em;
}
.c-events__meta, .c-events__desc {
  font-size: var(--font-size16);
  font-weight: 500;
  line-height: 1.6875;
}
.c-events__btn {
    display: inline-flex;
    text-align: right;
    justify-content: start;
    font-family: var(--font-family02);
    font-weight: 500;
    font-size: var(--font-size14);
    padding-right: 1.3em;
    position: relative;
    transition: .3s ease;
}
.c-events__btn::after {
    content: "";
    width: .63em;
    height: .63em;
    background-image: url(/wp-content/uploads/icon_btn.png);
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
    transition: .5s ease;
    position: absolute;
    right: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.c-events__item:hover img {
  transform: scale(1.1);
  opacity: 1;
}
.c-events__item:hover .c-events__btn {
    opacity: .6;
}
@media print, screen and (max-width: 768px) {
  .c-events__item {
    flex-direction: column;
  }
  .c-events__txt {
    padding: 20px min(3%, 30px);
  }
  .c-events__img, .c-events__txt {
      width: 100%;
  }
  .c-events__btn {
    margin-left: auto;
    display: block;
  }
}

/* ==== c-search ==== */
.c-search {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px 25px;
}

.c-search__btn, a.c-search__btn {
    outline: 1px solid;
    border-radius: 10px;
    font-size: var(--font-size22);
    font-weight: bold;
    padding: 1em;
    transition: .5s ease;
}

.c-search__btn--col-2 {
    width: calc((100% - (25px * 1)) / 2);
}

.c-search__btn--col-3 {
    width: calc((100% - (25px * 2)) / 3);
}

.c-search__btn:hover, a.c-search__btn:hover {
    color: var(--color-primary);
    background: #FFF;
    opacity: 1;
}

.c-search__ttl {
    padding-left: 1.5em;
    font-size: var(--font-size22);
    position: relative;
}
.c-search__ttl::before {
    position: absolute;
    content: '';
    width: 1.1em;
    height: 1.1em;
    background: url(/wp-content/uploads/icon_tag.png) center / contain no-repeat;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}
.free-word .c-search__ttl::before {
    background-image: url(/wp-content/uploads/icon_search.png);
}
/* キーワード検索 */
button.search-submit {
  width: var(--clamp-80);
  background: #2F2DB4;
  border: 0;
  color: #FFF;
}
.search-form {
  display: flex;
}
.search-form label {
  width: calc(100% - var(--clamp-80));
}
.search-form input.search-field {
  width: 100%;
  padding: .8em;
  font-size: var(--font-size20);
  font-weight: bold;
}
.search-field::placeholder {
  opacity: .6;
}
.material-symbols-outlined {
    font-size: var(--font-size32);
    display: flex;
    justify-content: center;
    align-items: center;
}
@media print, screen and (max-width: 768px) {
  .search__content .col-2, .search__content .col-3 {
    width: 100%;
    margin-bottom: 1em;
    display: block;
  }
  .c-search__btn, a.c-search__btn {
    width: 100%;
    display: block;
    padding: .5em;
  }
}
/* ==== c-partition ==== */
.c-partition {
    border-top: 1px solid;
    position: relative;
}

.c-partition::before, .c-partition::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFF;
    border-radius: 50vw;
    top: -5px;
}
.c-partition::before {
    left: 0;
}
.c-partition::after {
    right: 0;
}
/* ==== qa-group / acccordion ==== */
.qa-group {
  display: flex;
  flex-direction: column;
  gap: var(--clamp-20);
  margin: 0 auto;
}
.qa {
  position: relative;
  cursor: pointer;
}
.qa__header, .qa__content {
  background-color: #0C2158;
    padding: min(3%, 20px) min(5%, 25px);
}
.qa__header {
  position: relative;
  border: 1px solid #FFFFFF;
}
.qa__content {
  position: relative;
  border: 1px solid #FFFFFF;    
  border-top: 0;
  background: #FFFFFF1A;
}
/* .open .qa__header {
} */
.qa__label, .qa__desc {
  font-weight: 500;
  font-size: var(--font-size18);
  position: relative;
  padding: 0 1.6em 0 2.3em;
  margin-bottom: 0;
}
.qa__label::before, .qa__desc::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  font-weight: bold;
  color: #FFF;
  font-family: var(--font-family02);
  font-size: var(--font-size24);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.qa__label::before {
  content: "Q";
}
.qa__desc::before {
  content: "A";
}
.qa__icon {
    position: absolute;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: transform 0.3s;
    right: 0;
    top: 50%;
}
.qa__icon::before {
    content: '＋';
}
.qa.open .qa__icon::before {
    content: '－';
}

@media print, screen and (max-width: 768px) { 

    .qa__label::before {
        font-size: 1.25em;
    }
}
/* ================================
   project / p-
================================ */
/* ==== pBreadcrumb ==== */ 
.lBreadcrumbContainer {
    margin-bottom: var(--clamp-50);
}
.pBreadcrumb li:first-child::before {
  font-family: "Material Symbols Outlined";
  content: "\e88a";
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  padding-bottom: 5px;
  font-weight: 200;
}
/* ==== page-numbers ==== */
ul.page-numbers li a {
  font-weight: 900;
  color: #FFF;
  border: revert-layer;
}
ul.page-numbers li a:hover, ul.page-numbers li span.current {
  background: var(--color-primary);
}

/* == pCustomizedPosts / related-posts__list ================ */
.pCustomizedPosts, .related-posts__list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--clamp-40);
  margin-top: var(--clamp-30);
}
.pCustomizedPosts__post, .related-posts__item {
  width: calc((100% - (var(--clamp-40) * 2)) / 3);
  margin-bottom: 25px;
  /* transition: 5s ease; */
  overflow: hidden;
  display: block;
  text-align: left;
}
.pCustomizedPosts__post:hover {
    opacity: 1;
}
.pCustomizedPosts__post__thumnail, .related-posts__thumbnail {
  overflow: hidden;
}
.pCustomizedPosts__post__thumnail img, .related-posts__thumbnail img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;/* 8/5*/
  object-fit: cover;
  transition: .5s ease;
}
.pCustomizedPosts__post:hover img, .related-posts__item:hover img {
  opacity: 1;
  transform: scale(1.05);
}
.pCustomizedPosts__post__title, .related-posts__title {
  font-size: var(--font-size22);
  font-weight: bold;
  line-height: 1.5;
  margin-top: .5em;
  margin-bottom: .5em;
}
span.related-posts__date {
  font-size: var(--font-size14);
  font-weight: 500;
}
span.related-posts__date::before {
  font-family: "Material Symbols Outlined";
  content: "\e8b5";
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  padding-bottom: 5px;
}
.pCustomizedPosts__post__name p, 
.pCustomizedPosts__post__tags p, 
.pCustomizedPosts__post__toDetailLink p {
  line-height: 1;
}
.pCustomizedPosts__post__category a {
  display: none;
}
.pCustomizedPosts__post__category ul li a {
  display: contents;
}
.pCustomizedPosts__post__category ul {
  display: flex;
  position: relative;
  font-size: var(--font-size12);
  padding-left: 1.2em;
  flex-wrap: wrap;
}
.pCustomizedPosts__post__category ul::before {
  content: '';
  position: absolute;
  width: 1em;
  height: 1em;
  background-image: url(/wp-content/uploads/icon_folder.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: .5em;
}
.pCustomizedPosts__post__category ul a {
  font-size: var(--font-size12);
}
.pCustomizedPosts__post__category ul li::after {
  content: ",";
}
.pCustomizedPosts__post__category ul li:last-child::after {
  display: none;
}
/* .no-scroll {
    overflow: hidden;
} */
@media print, screen and (max-width: 768px) {
  .pCustomizedPosts__post, .related-posts__item {
    width: 100%;
  }
}
/* ==== banner ==== */
/* == banner ==================== */
.banner {
  position: fixed;
  right: 0;
  bottom: 0%;
  width: max(22vw, 250px);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.banner__item--brochure {
    margin-top: -10%;
}
.banner__item--sns {
    background: linear-gradient(135deg, #0A0A26, #3432C9);
    border-radius: 50vw;
    width: 95px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 10px;
    z-index: 1;
}
.banner__item--sns img {
    width: 35%;
    height: auto;
    margin: 0 auto;
}

/* ==== pPost ==== */
.pPostListPageContent__title {
    font-size: var(--font-size36);
    font-weight: bold;
}
.pPost__title {
    font-size: var(--font-size36);
    font-weight: bold;
}
.pPost__times {
  font-size: var(--font-size14);
  font-weight: bold;
}
.pPost__times::before {
  font-family: "Material Symbols Outlined";
  content: "\e8b5";
  font-weight: bold;
  display: inline-block;
  vertical-align: middle;
  line-height: 1;
  padding-bottom: 5px;
}
.pPost__metas, .pPost__terms {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: .8em;
}
.pPost__terms__item {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 0;
}
.pPost__terms__item a {
  font-size: var(--font-size14);
  font-weight: bold;
  line-height: 1.5;
  position: relative;
}
.pPost__terms__item a:first-child {
  margin-left: 1.2em;
}
.pPost__terms__item a:first-child::before {
  font-family: "Material Symbols Outlined";
  content: "\e2c7";
  position: absolute;
  color: #FFF;
  font-weight: bold;
  left: -1.2em;
  top: 50%;
  transform: translateY(-50%);
}
.pPost__terms__item.tag a:first-child::before {
  content: '\f05b';
}
.pPost__terms__item a:hover {
  text-decoration: underline;
}
.pPost__terms__item.tag a:not(:last-child)::after {
  content: ',';
  margin: 0 .2em;
}
.pPost__custom-field.img {
    width: 100%;
    margin-top: var(--clamp-40);
    margin-bottom: var(--clamp-30);
}
.pPost__custom-field.img img {
    width: 100%;
    height: auto;
}
.pPost__custom-field.name p::before {
  content: 'ー';
  font-weight: 900;
  color: #FFF;
  margin-right: .2em;
}
.pPost__custom-field.genre {
  margin-bottom: 1em;
}
.pPost__custom-field.genre, .pPost__custom-field.custom-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .3em;
  font-size: var(--font-size14);
}
body.single .pPost__custom-field.area, .tags__item {
  background: var(--color-primary);
  color: #FFF;
  font-weight: 500;
  padding: .8em;
}
.pPost__custom-field.one-word p {
  font-size: var(--font-size26);
  margin-bottom: 1em;
}
.pnNav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--clamp-30) 0;
}
.pnNav__item, .pnNav__item a {
  font-size: var(--font-size14);
  transition: 0s;
}
.pnNav__item.-prev::before {
  content: '<';
}
.pnNav__item.-next::after {
  content: '>';
}
.pnNav__item a:hover {opacity: .6;}
.related-posts {
    margin-top: var(--clamp-80);
}
@media print, screen and (max-width: 768px) {
}
/* ==== p-fv ==== */
.fv-content {
    width: 100%;
    height: min(53vw, 1000px);
    background: url(/wp-content/uploads/fv_bg01.png) center / cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
}
.fv-content__wrapper {
    width: 100%;
}
/* title */
.fv-content__item-title {
    width: 51%;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    position: relative;
    left: 7%;
    margin-top: 3%;
}
.fv-content__item-title h1, .fv-content__item-title p {
    display: flex;
    flex-direction: column;
    align-items: center;
}
.fv-content__title, .fv-content__subTitle {
    text-align: center;
}
.fv-content__title img {
    width: 100%;
    height: auto;
}
.fv-content__title .ttl-num {
    display: block;
    width: 24%;
}
.fv-content__title .ttl-main {
    display: block;
    width: 60%;
}
.fv-content__title .ttl-sub {
    display: block;
    width: 48%;
}
.fv-content__subTitle .ttl-date {
   display: block;
   width: 72%;
}
/* slideShow */
.fv-content__item-slideShow {
    position: absolute;
    width: 55%;
    right: -5%;
    bottom: 5%;
}
.fv-content__item-slideShow::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/wp-content/uploads/fv_slide_outline.png) center / contain no-repeat;
    z-index: 1;
    top: 0;
    left: 0;
}
.fv-content__item-slideShow::after {
    content: '';
    position: absolute;
    width: 105%;
    height: 105%;
    background: url(/wp-content/uploads/fv_slide_frame.png) center / contain no-repeat;
    z-index: 1;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
/* masked-image */
/* .masked-image {
    overflow: hidden;
} */
.masked-image-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mask-image: url('/wp-content/uploads/fv_mask.png');
    mask-size: cover;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-image: url('/wp-content/uploads/fv_mask.png'); /* For Safari */
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
}
/* animation */
/* 初期状態 */
.slide-item img {
  width:100%;
  height:auto;
  transform: scale(1);             /* ← 拡大なし */
  transition: transform 6s linear; /* ← ゆっくりズームさせたい場合の時間 */
}

/* スライドが active になった時に拡大させる */
.slick-active img {
  transform: scale(1.1) !important;
}

@media print, screen and (max-width: 768px) { 
    .fv-content {
        background-image: url(/wp-content/uploads/fv_bg-sp01.png);
    }
    .fv-content__item-slideShow {
        position: relative;
        right: unset;
        bottom: unset;
        width: 100%;
    }
    .fv-content {
        height: auto;
        padding-bottom: 20vw;
        padding-top: 20vw;
    }
    .fv-content__wrapper {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .fv-content__item-title {
        left: unset;
        width: 100%;
    }
}

/* ==== p-tAbout ==== */
.p-tAbout {
    padding-top: var(--clamp-80);
}
.p-tAbout p {
    font-size: var(--font-size18);
}
.p-tAbout__leadText img {
    margin-inline: auto;
    width: 100%;
    height: auto;
}
.p-tAbout__leadText .en {
    display: block;
    width: 80%;
    max-width: 370px;
    margin: 0 auto;
}
.p-tAbout__leadText .jp {
    display: block;
    width: 80%;
    max-width: 350px;
    margin: 0 auto;
}
@media print, screen and (max-width: 768px) {  
}
/* ==== p-tSchedule ==== */
.p-tSchedule {
    padding-top: var(--clamp-120);
}
a.link_map {
  padding-left: 1em;
  position: relative;
  transition: .1s;
  font-weight: 500;
}
a.link_map::before {
  content: '';
  position: absolute;
  width: 1em;
  height: 1em;
  background-image: url(/wp-content/uploads/icon_pin.png);
  background-size: contain;
  background-repeat: no-repeat;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
a.link_map:hover {
    opacity: .6;
}
@media print, screen and (max-width: 768px) {  
}
/* ==== p-tEvents ==== */
.p-tEvents {
    padding-top: var(--clamp-120);
    position: relative;
    padding-bottom: 12%;
}
.page-content.p-tEvents::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 50%;
    background: url(/wp-content/uploads/top-events_bg.png) bottom / contain no-repeat;
    bottom: 0;
    z-index: 0;
}

@media print, screen and (max-width: 768px) {  
}
/* ==== p-tSns ==== */
.p-tSns {
    padding-top: var(--clamp-80);
    padding-bottom: var(--clamp-80);
    background: #FFF;
}
.p-tSns__item {
    max-width: 170px;
}
.p-tSns__item--insta .p-tSns__img {
    padding: 19%;
}
.p-tSns__img {
    background: var(--color-background);
    border-radius: 50vw;
    padding: 22%;
    max-width: 130px;
    margin-inline: auto;
}   
.p-tSns__txt {
    font-size: var(--font-size16);
    display: inline-block;
    padding-right: 1.5em;
    position: relative;
    transition: .3s ease;
    margin-top: .75em;
}
.p-tSns__txt::after {
    position: absolute;
    content: '';
    width: .75em;
    height: .75em;
    background: url(/wp-content/uploads/icon_tab.png) center / contain no-repeat;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}
a:hover .p-tSns__txt {
    opacity: .6;
}
@media print, screen and (max-width: 768px) {  
}
/* ==== p-tFaq ==== */
.p-tFaq {
    padding-top: var(--clamp-80);
}
.p-tFaq .qa-group {
    gap: 10px;
}
.p-tFaq .qa {
    /* background: var(--color-primary); */
    border-radius: 10px;
}
.p-tFaq .qa__header {
    background: var(--color-primary);
    border: 0;
    border-radius: 10px;
}
.p-tFaq .qa.open .qa__header {
    border-radius: 10px 10px 0 0;
}
.p-tFaq .qa__content {
    border: 0;
    border-radius: 0 0 10px 10px;
    background: #344677;
    background: #FFFFFF1A;
}
.p-tFaq .qa__label::before, .p-tFaq .qa__desc::before {
    font-style: italic;
}
.p-tFaq .qa__icon {
    width: 2.4em;
    height: 2.4em;
    right: -.5em;
}
.p-tFaq .qa__icon::before, .p-tFaq .qa.open .qa__icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: url(/wp-content/uploads/deco_star02.png) center / contain no-repeat;
}
.p-tFaq .qa__label {
    font-size: var(--font-size22);
    padding-left: calc(var(--font-size18) * 1.8);
}
@media print, screen and (max-width: 768px) {  
}
/* ==== p-tSponsor ==== */
.p-tSponsor {
    padding-top: var(--clamp-100);
    padding-bottom: var(--clamp-80);
}
.p-tSponsor__list {
    display: flex;
    gap: var(--clamp-30) var(--clamp-60);
    flex-direction: row;
    flex-wrap: wrap;
}
.p-tSponsor__list li {
    width: calc((100% - (var(--clamp-60) * 2)) / 3);
}
@media print, screen and (max-width: 768px) {  
    .p-tSponsor__list {
        gap: var(--clamp-40);
    }
    .p-tSponsor__list li {
        width: calc((100% - (var(--clamp-40) * 1)) / 2);
    }
}
/* ==== p-about ==== */
.p-about__image {
    width: 80%;
    margin-inline: auto;
    max-width: 430px;
}
.p-about__object {
    max-width: 1170px;
    width: 100%;
    opacity: .05;
    margin-inline: auto;
    margin-top: -5%;
    margin-bottom: -3%;
}
.p-about__obj {
    position: absolute;
}
.p-about__obj--01 {
    width: 26%;
    right: 0;
    top: 7%;
}
.p-about__obj--02 {
    width: 14%;
    top: 43%;
}
@media print, screen and (max-width: 768px) {  
}
/* ==== p-past-events ==== */
.p-past-events__item {
    max-width: 380px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border: 1px solid #FFF;
    border-radius: 10px;
    padding: min(3%, 20px);
    transition: .3s ease !important;
}
.p-past-events__item:hover {
    background: var(--color-primary-tint);
}
.p-past-events__ttl {
    font-size: var(--font-size20);
    padding-left: 2em;
    position: relative;
}
.p-past-events__ttl::before {
    content: '';
    position: absolute;
    width: 1.75em;
    height: 1.75em;
    background: url(/wp-content/uploads/deco_star02.png) center / contain no-repeat;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}
/* ==== p-time-table ==== */
.p-time-table .qa-group {
    gap: 0;
}
.p-time-table .qa__label, .p-time-table .qa__desc {
    padding-left: 0;
}
.p-time-table .qa__label::before, .p-time-table .qa__desc::before {
    display: none; 
}
.p-time-table .qa__label {
    display: flex;
    gap: 1.2em;
    flex-direction: row;
    align-items: center;
}
.p-time-table .qa__date {
    font-family: var(--font-family02);
    font-size: var(--font-size24);
    font-weight: bold;
}
@media print, screen and (max-width: 768px) {  
}
/* ==== p-aobuta-collab ==== */
@media print, screen and (min-width: 768px) {  
    .p-aobuta-collab .pCustomizedPosts__post {
        width: calc((100% - (var(--clamp-40) * 1)) / 2);
    }
}
@media print, screen and (max-width: 768px) {  
}
/* ==== p-sponsor ==== */
.p-sponsor__item {
    border-bottom: 1px solid #FFF;
    padding: min(3%, 20px);
    padding-top: 0;
}
@media print, screen and (max-width: 768px) {  
}
/* == == == == == == == == == == == == == == == == == == 
* utility / u-○○
* == == == == == == == == == == == == == == == == == == */
/* ====  font-family / u-ff-○○ ===== */
.u-ff-01, .post .u-ff-01 {font-family: var(--font-family01);}
.u-ff-02, .post .u-ff-02 {font-family: var(--font-family02);}
.u-ff-03, .post .u-ff-03 {font-family: var(--font-family03);}
.u-ff-04, .post .u-ff-04 {font-family: var(--font-family04);}
.u-ff-05, .post .u-ff-05 {font-family: var(--font-family05);}
/* ====  font-style / u-fst-○○ ===== */
.u-fst-normal, .post .u-fst-normal {font-style: normal;}
.u-fst-italic, .post .u-fst-italic {font-style: italic;}
/* ====  font-weight / u-fw-○○ ===== */
.u-fw-100, .post .u-fw-100 {font-weight: 100}
.u-fw-200, .post .u-fw-200 {font-weight: 200}
.u-fw-300, .post .u-fw-300 {font-weight: 300}
.u-fw-400, .post .u-fw-400 {font-weight: 400}
.u-fw-500, .post .u-fw-500 {font-weight: 500}
.u-fw-600, .post .u-fw-600 {font-weight: 600}
.u-fw-700, .post .u-fw-700 {font-weight: 700}
.u-fw-800, .post .u-fw-800 {font-weight: 800}
.u-fw-900, .post .u-fw-900 {font-weight: 900}
.u-fw-regular, .post .u-fw-regular {font-weight: normal}
.u-fw-mid, .post .u-fw-mid {font-weight: 500}
.u-fw-bold, .post .u-fw-bold {font-weight: bold}
.u-fw-black, .post .u-fw-black {font-weight: 900}
/* ====  font-size / u-fs-○○ ===== */
.u-fs-12, .post .u-fs-12 {font-size: var(--font-size12)!important;}
.u-fs-14, .post .u-fs-14 {font-size: var(--font-size14)!important;}
.u-fs-16, .post .u-fs-16 {font-size: var(--font-size16)!important;}
.u-fs-18, .post .u-fs-18 {font-size: var(--font-size18)!important;}
.u-fs-20, .post .u-fs-20 {font-size: var(--font-size20)!important;}
.u-fs-22, .post .u-fs-22 {font-size: var(--font-size22)!important;}
.u-fs-24, .post .u-fs-24 {font-size: var(--font-size24)!important;}
.u-fs-26, .post .u-fs-26 {font-size: var(--font-size26)!important;}
.u-fs-28, .post .u-fs-28 {font-size: var(--font-size28)!important;}
.u-fs-30, .post .u-fs-30 {font-size: var(--font-size30)!important;}
.u-fs-32, .post .u-fs-32 {font-size: var(--font-size32)!important;}
.u-fs-34, .post .u-fs-34 {font-size: var(--font-size34)!important;}
.u-fs-36, .post .u-fs-36 {font-size: var(--font-size36)!important;}
.u-fs-38, .post .u-fs-38 {font-size: var(--font-size38)!important;}
.u-fs-40, .post .u-fs-40 {font-size: var(--font-size40)!important;}
.u-fs-42, .post .u-fs-42 {font-size: var(--font-size42)!important;}
.u-fs-44, .post .u-fs-44 {font-size: var(--font-size44)!important;}
.u-fs-46, .post .u-fs-46 {font-size: var(--font-size46)!important;}
.u-fs-48, .post .u-fs-48 {font-size: var(--font-size48)!important;}
.u-fs-50, .post .u-fs-50 {font-size: var(--font-size50)!important;}
.u-fs-60, .post .u-fs-60 {font-size: var(--font-size60)!important;}
@media print, screen and (max-width: 768px) {
    .u-fs-16-sp, .post .u-fs-16-sp {font-size: var(--font-size16)!important;}
} 
/* ====  line-height / u-lh-○○ ===== */
.u-lh-10, .post .u-lh-10 {line-height: 1;}
.u-lh-11, .post .u-lh-11 {line-height: 1.1;}
.u-lh-12, .post .u-lh-12 {line-height: 1.2;}
.u-lh-13, .post .u-lh-13 {line-height: 1.3;}
.u-lh-14, .post .u-lh-14 {line-height: 1.4;}
.u-lh-15, .post .u-lh-15 {line-height: 1.5;}
.u-lh-16, .post .u-lh-16 {line-height: 1.6;}
.u-lh-17, .post .u-lh-17 {line-height: 1.7;}
.u-lh-18, .post .u-lh-18 {line-height: 1.8;}
.u-lh-19, .post .u-lh-19 {line-height: 1.9;}
.u-lh-20, .post .u-lh-20 {line-height: 2;}
.u-lh-25, .post .u-lh-25 {line-height: 2.5;}
/* ===== letter-spacing / u-ls-○○ ===== */
.u-ls-0, .post .u-ls-0 {letter-spacing: 0;}
.u-ls-05, .post .u-ls-05 {letter-spacing: 0.05em;}
.u-ls-1, .post .u-ls-1 {letter-spacing: 0.1em;}
.u-ls-2, .post .u-ls-2 {letter-spacing: 0.2em;}
/* ===== text-decoration / u-td-○○ ===== */
.u-td-underline, .post .u-td-underline {text-decoration: underline;}
.u-td-none, .post .u-td-none {text-decoration: none;}
.u-td-line-through, .post .u-td-line-through {text-decoration: line-through;}
.u-td-overline, .post .u-td-overline {text-decoration: overline;}
/* :hover */
a:hover .u-td-underline, .post a:hover .u-td-underline, a.u-td-underline:hover, .post a.u-td-underline:hover {text-decoration: none;}
/* ===== text-indent / u-ti-○○ ===== */
.u-ti-1, .post .u-ti-1 {text-indent: 1em;}
/* ====  color / u-color-○○ ===== */
.u-color-body, .post .u-color-body {color: var(--color-background);}
.u-color-font, .post .u-color-font {color: var(--color-font);}
.u-color-primary, .post .u-color-primary {color: var(--color-primary);}
.u-color-tint, .post .u-color-tint {color: var(--color-primary-tint);}
.u-color-shade, .post .u-color-shade {color: var(--color-primary-shade);}
.u-color-secondary, .post .u-color-secondary {color: var(--color-secondary);}
.u-color-white, .post .u-color-white {color: #FFF;}
.u-color-black, .post .u-color-black {color: #000;}
.u-color-scond, .post .u-color-scond {color: #231815;}
/* ===== background / u-bg-○○ ===== */
.u-bg-white, .post .u-bg-white {background-color: #fff;}
.u-bg-gray, .post .u-bg-gray {background-color: #F4F4F4;}
.u-bg-pink, .post .u-bg-pink {background-color: #FEF4F4;}
.u-bg-body, .post .u-bg-body {background: var(--color-background);}
.u-bg-primary, .post .u-bg-primary {background-color: var(--color-primary);}
.u-bg-tint, .post .u-bg-tint {background: var(--color-primary-tint);}
.u-bg-shade, .post .u-bg-shade {background: var(--color-primary-shade);}
.u-bg-transparent, .post .u-bg-transparent {background: transparent;}
/* ===== display / u-d-○○ ===== */
.u-d-block, .post .u-d-block {display: block;}
.u-d-inline, .post .u-d-inline {display: inline;}
.u-d-inline-block, .post .u-d-inline-block {display: inline-block;}
.u-d-flex, .post .u-d-flex {display: flex;}
.u-d-none, .post .u-d-none {display: none;}
/* ===== flexbox / u-jc-○○ / u-ai-○○ ===== */
.u-jc-start, .post .u-jc-start {justify-content: flex-start;}
.u-jc-center, .post .u-jc-center {justify-content: center;}
.u-jc-end, .post .u-jc-end {justify-content: flex-end;}
.u-jc-between, .post .u-jc-between {justify-content: space-between;}
.u-jc-around, .post .u-jc-around {justify-content: space-around;}
.u-jc-evenly, .post .u-jc-evenly {justify-content: space-evenly;}
.u-ai-start, .post .u-ai-start {align-items: flex-start;}
.u-ai-center, .post .u-ai-center {align-items: center;}
.u-ai-end, .post .u-ai-end {align-items: flex-end;}
.u-flex-1, .post .u-flex-1 {flex: 1;}
.u-fd-column, .post .u-fd-column {flex-direction: column;}
.u-nowrap, .post .u-nowrap {
    flex-wrap: nowrap;
    flex-direction: row;
}
.gap2 {gap: 2%;}
@media screen and (max-width: 768px) {
    .u-ai-center-sp, .post .u-ai-center-sp {
        align-items: center;
    }   
}

/* ===== border / u-bd-○○ ===== */
.u-bd, .post .u-bd {border: 1px solid #FFF;}
.u-bd-none, .post .u-bd-none {border: none;}
.u-bd-top, .post .u-bd-top {border-top: 1px solid;}
.u-bd-bottom, .post .u-bd-bottom {border-bottom: 1px solid;}
.u-outline, .post .u-outline {outline: 1px solid #EDE4E4;}
/* ===== radius / u-radius-○○ ===== */
.u-radius, .post .u-radius {border-radius: 10px;}
.u-radius-sm, .post .u-radius-sm {border-radius: 5px;}
.u-radius-lg, .post .u-radius-lg {border-radius: 20px;}
.u-radius-topHalf, .post .u-radius-topHalf {border-radius: 10px 10px 0 0;}
/* ===== overflow / u-of-○○ ===== */
.u-of-visible, .post .u-of-visible {overflow: visible;}
.u-of-hidden, .post .u-of-hidden {overflow: hidden;}
.u-of-scroll, .post .u-of-scroll {overflow: scroll;}
.u-of-auto, .post .u-of-auto {overflow: auto;}
.u-ofx-scroll, .post .u-ofx-scroll {overflow-x: scroll;}
/* ===== box-shadow / u-shadow-○○ ===== */
.u-shadow, .post .u-shadow {box-shadow: 0 3px 20px #0000000D;}
.u-shadow-sm, .post .u-shadow-sm {box-shadow: 0 3px 20px #5353530D;}
/* ===== position / u-pos-○○ ===== */
.u-pos-static, .post .u-pos-static {position: static;}
.u-pos-relative, .post .u-pos-relative {position: relative;}
.u-pos-absolute, .post .u-pos-absolute {position: absolute;}
.u-pos-fixed, .post .u-pos-fixed {position: fixed;}
.u-pos-sticky, .post .u-pos-sticky {position: sticky;}
/* ===== background-image pattern / u-bg-cover / u-bg-contain ===== */
.u-bg-cover, .post .u-bg-cover {
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
.u-bg-contain, .post .u-bg-contain {
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}
/* ===== center position / u-center-xy ===== */
.u-center-xy, .post .u-center-xy {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
/* ===== center position-x / u-center-x ===== */
.u-center-x, .post .u-center-x {
    left: 50%;
    transform: translateX(-50%);
}
/* ===== center position-y / u-center-y ===== */
.u-center-y, .post .u-center-y {
    top: 50%;
    transform: translateY(-50%);
}
/* ===== image / u-img-fluid ===== */
.u-img-fluid img, .post .u-img-fluid img {
  width: 100%;
  height: auto;
  display: block;
}
.u-img-stretch img, .post .u-img-stretch img {
	height: 100%;
    object-fit: cover;
	object-position: center;
}
.u-img-fit_2-1 img, .post .u-img-fit_2-1 img {
    aspect-ratio: 2/1;
    object-fit: cover;
}
.u-img-fit_3-2 img, .post .u-img-fit_3-2 img {
    aspect-ratio: 3/2;
    object-fit: cover;
}
.u-img-fit_pos-top img, .post .u-img-fit_pos-top img {
	object-position: top;
}
@media screen and (max-width: 768px) {
    .u-img-fit_2-1-sp img, .post .u-img-fit_2-1-sp img {
        aspect-ratio: 2/1;
        object-fit: cover;
    }   
}
/* ===== margin / u-mt-○○ / u-mx-○○ ===== */
.u-mt {margin-top: 0 !important;}
.u-mt1 {margin-top: 1rem !important;}
.u-mt2 {margin-top: 2rem !important;}
.u-mt3 {margin-top: 3rem !important;}
.u-mt4 {margin-top: 4rem !important;}
.u-mt5 {margin-top: 5rem !important;}
.u-mt6 {margin-top: 6rem !important;}
.u-mt7 {margin-top: 7rem !important;}
.u-mt8 {margin-top: 8rem !important;}
.u-mt9 {margin-top: 9rem !important;}
.u-mt10 {margin-top: 10rem !important;}
.u-mt15 {margin-top: 15rem !important;}
.u-mt16 {margin-top: 16rem !important;}
.u-mb0 {margin-bottom: 0 !important;}
.u-mb1 {margin-bottom: 1rem !important;}
.u-mb2 {margin-bottom: 2rem !important;}
.u-mb3 {margin-bottom: 3rem !important;}
.u-mb4 {margin-bottom: 4rem !important;}
.u-mb5 {margin-bottom: 5rem !important;}
.u-mb6 {margin-bottom: 6rem !important;}
.u-mb7 {margin-bottom: 7rem !important;}
.u-mb8 {margin-bottom: 8rem !important;}
.u-mb9 {margin-bottom: 9rem !important;}
.u-mb10 {margin-bottom: 10rem !important;}
.u-mb15 {margin-bottom: 15rem !important;}
.u-mb16 {margin-bottom: 16rem !important;}
.u-mx-auto {
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (min-width: 769px) {
    .u-mt1-pc {margin-top: 1rem !important;}
    .u-mt2-pc {margin-top: 2rem !important;}
    .u-mt3-pc {margin-top: 3rem !important;}
    .u-mt4-pc {margin-top: 4rem !important;}
    .u-mt5-pc {margin-top: 5rem !important;}
    .u-mt6-pc {margin-top: 6rem !important;}
    .u-mt7-pc {margin-top: 7rem !important;}
    .u-mt8-pc {margin-top: 8rem !important;}
    .u-mt9-pc {margin-top: 9rem !important;}
    .u-mt10-pc {margin-top: 10rem !important;}
    .u-mt15-pc {margin-top: 15rem !important;}
    .u-mt16-pc {margin-top: 16rem !important;}
    .u-mb1-pc {margin-bottom: 1rem !important;}
    .u-mb2-pc {margin-bottom: 2rem !important;}
    .u-mb3-pc {margin-bottom: 3rem !important;}
    .u-mb4-pc {margin-bottom: 4rem !important;}
    .u-mb5-pc {margin-bottom: 5rem !important;}
    .u-mb6-pc {margin-bottom: 6rem !important;}
    .u-mb7-pc {margin-bottom: 7rem !important;}
    .u-mb8-pc {margin-bottom: 8rem !important;}
    .u-mb9-pc {margin-bottom: 9rem !important;}
    .u-mb10-pc {margin-bottom: 10rem !important;}
    .u-mb15-pc {margin-bottom: 15rem !important;}
    .u-mb16-pc {margin-bottom: 16rem !important;}
    .u-ml-auto-pc {
        margin-left: auto !important;
        margin-right: 0 !important;
    }   
    .u-mr-auto-pc {
        margin-right: auto !important;
        margin-left: 0 !important;
    }   
}
@media screen and (max-width: 768px) {
    .u-mt1 {margin-top:calc(1rem / 2) !important;}
    .u-mt2 {margin-top:calc(2rem / 2) !important;}
    .u-mt3 {margin-top:calc(3rem / 2) !important;}
    .u-mt4 {margin-top:calc(4rem / 2) !important;}
    .u-mt5 {margin-top:calc(5rem / 2) !important;}
    .u-mt6 {margin-top:calc(6rem / 2) !important;}
    .u-mt7 {margin-top:calc(7rem / 2) !important;}
    .u-mt8 {margin-top:calc(8rem / 2) !important;}
    .u-mt9 {margin-top:calc(9rem / 2) !important;}
    .u-mt10 {margin-top:calc(10rem / 2) !important;}
    .u-mt15 {margin-top:calc(15rem / 2) !important;}
    .u-mt16 {margin-top:calc(16rem / 2) !important;}
    .u-mb1 {margin-bottom:calc(1rem / 2) !important;}
    .u-mb2 {margin-bottom:calc(2rem / 2) !important;}
    .u-mb3 {margin-bottom:calc(3rem / 2) !important;}
    .u-mb4 {margin-bottom:calc(4rem / 2) !important;}
    .u-mb5 {margin-bottom:calc(5rem / 2) !important;}
    .u-mb6 {margin-bottom:calc(6rem / 2) !important;}
    .u-mb7 {margin-bottom:calc(7rem / 2) !important;}
    .u-mb8 {margin-bottom:calc(8rem / 2) !important;}
    .u-mb9 {margin-bottom:calc(9rem / 2) !important;}
    .u-mb10 {margin-bottom:calc(10rem / 2) !important;}
    .u-mb15 {margin-bottom:calc(15rem / 2) !important;}
    .u-mb16 {margin-bottom:calc(16rem / 2) !important;}  
    .u-mt1-sp {margin-top:calc(1rem / 2) !important;}
    .u-mt2-sp {margin-top:calc(2rem / 2) !important;}
    .u-mt3-sp {margin-top:calc(3rem / 2) !important;}
    .u-mt4-sp {margin-top:calc(4rem / 2) !important;}
    .u-mt5-sp {margin-top:calc(5rem / 2) !important;}
    .u-mt6-sp {margin-top:calc(6rem / 2) !important;}
    .u-mt7-sp {margin-top:calc(7rem / 2) !important;}
    .u-mt8-sp {margin-top:calc(8rem / 2) !important;}
    .u-mt9-sp {margin-top:calc(9rem / 2) !important;}
    .u-mt10-sp {margin-top:calc(10rem / 2) !important;}
    .u-mt15-sp {margin-top:calc(15rem / 2) !important;}
    .u-mt16-sp {margin-top:calc(16rem / 2) !important;}
    .u-mb1-sp {margin-bottom:calc(1rem / 2) !important;}
    .u-mb2-sp {margin-bottom:calc(2rem / 2) !important;}
    .u-mb3-sp {margin-bottom:calc(3rem / 2) !important;}
    .u-mb4-sp {margin-bottom:calc(4rem / 2) !important;}
    .u-mb5-sp {margin-bottom:calc(5rem / 2) !important;}
    .u-mb6-sp {margin-bottom:calc(6rem / 2) !important;}
    .u-mb7-sp {margin-bottom:calc(7rem / 2) !important;}
    .u-mb8-sp {margin-bottom:calc(8rem / 2) !important;}
    .u-mb9-sp {margin-bottom:calc(9rem / 2) !important;}
    .u-mb10-sp {margin-bottom:calc(10rem / 2) !important;}
    .u-mb15-sp {margin-bottom:calc(15rem / 2) !important;}
    .u-mb16-sp {margin-bottom:calc(16rem / 2) !important;}  
    .u-ml-auto-sp {
        margin-left: auto !important;
        margin-right: 0 !important;
    }   
    .u-mr-auto-sp {
        margin-right: auto !important;
        margin-left: 0 !important;
    }     
}
/* ===== padding / u-pt-○○ / u-px-○○ ===== */
.u-pt1 {padding-top: 1rem !important;}
.u-pt2 {padding-top: 2rem !important;}
.u-pt3 {padding-top: 3rem !important;}
.u-pt4 {padding-top: 4rem !important;}
.u-pt5 {padding-top: 5rem !important;}
.u-pt6 {padding-top: 6rem !important;}
.u-pt7 {padding-top: 7rem !important;}
.u-pt8 {padding-top: 8rem !important;}
.u-pt9 {padding-top: 9rem !important;}
.u-pt10 {padding-top: 10rem !important;}
.u-pt15 {padding-top: 15rem !important;}
.u-pt16 {padding-top: 16rem !important;}
.u-pb1 {padding-bottom: 1rem !important;}
.u-pb2 {padding-bottom: 2rem !important;}
.u-pb3 {padding-bottom: 3rem !important;}
.u-pb4 {padding-bottom: 4rem !important;}
.u-pb5 {padding-bottom: 5rem !important;}
.u-pb6 {padding-bottom: 6rem !important;}
.u-pb7 {padding-bottom: 7rem !important;}
.u-pb8 {padding-bottom: 8rem !important;}
.u-pb9 {padding-bottom: 9rem !important;}
.u-pb10 {padding-bottom: 10rem !important;}
.u-pb15 {padding-bottom: 15rem !important;}
.u-pb16 {padding-bottom: 16rem !important;}
@media screen and (min-width: 769px) {
    .u-pt1-pc {padding-top: 1rem !important;}
    .u-pt2-pc {padding-top: 2rem !important;}
    .u-pt3-pc {padding-top: 3rem !important;}
    .u-pt4-pc {padding-top: 4rem !important;}
    .u-pt5-pc {padding-top: 5rem !important;}
    .u-pt6-pc {padding-top: 6rem !important;}
    .u-pt7-pc {padding-top: 7rem !important;}
    .u-pt8-pc {padding-top: 8rem !important;}
    .u-pt9-pc {padding-top: 9rem !important;}
    .u-pt10-pc {padding-top: 10rem !important;}
    .u-pt15-pc {padding-top: 15rem !important;}
    .u-pt16-pc {padding-top: 16rem !important;}
    .u-pb1-pc {padding-bottom: 1rem !important;}
    .u-pb2-pc {padding-bottom: 2rem !important;}
    .u-pb3-pc {padding-bottom: 3rem !important;}
    .u-pb4-pc {padding-bottom: 4rem !important;}
    .u-pb5-pc {padding-bottom: 5rem !important;}
    .u-pb6-pc {padding-bottom: 6rem !important;}
    .u-pb7-pc {padding-bottom: 7rem !important;}
    .u-pb8-pc {padding-bottom: 8rem !important;}
    .u-pb9-pc {padding-bottom: 9rem !important;}
    .u-pb10-pc {padding-bottom: 10rem !important;}
    .u-pb15-pc {padding-bottom: 15rem !important;}
    .u-pb16-pc {padding-bottom: 16rem !important;}
}
@media screen and (max-width: 768px) {
    .u-pt1 {padding-top:calc(1rem / 2) !important;}
    .u-pt2 {padding-top:calc(2rem / 2) !important;}
    .u-pt3 {padding-top:calc(3rem / 2) !important;}
    .u-pt4 {padding-top:calc(4rem / 2) !important;}
    .u-pt5 {padding-top:calc(5rem / 2) !important;}
    .u-pt6 {padding-top:calc(6rem / 2) !important;}
    .u-pt7 {padding-top:calc(7rem / 2) !important;}
    .u-pt8 {padding-top:calc(8rem / 2) !important;}
    .u-pt9 {padding-top:calc(9rem / 2) !important;}
    .u-pt10 {padding-top:calc(10rem / 2) !important;}
    .u-pt15 {padding-top:calc(15rem / 2) !important;}
    .u-pt16 {padding-top:calc(16rem / 2) !important;}
    .u-pb1 {padding-bottom:calc(1rem / 2) !important;}
    .u-pb2 {padding-bottom:calc(2rem / 2) !important;}
    .u-pb3 {padding-bottom:calc(3rem / 2) !important;}
    .u-pb4 {padding-bottom:calc(4rem / 2) !important;}
    .u-pb5 {padding-bottom:calc(5rem / 2) !important;}
    .u-pb6 {padding-bottom:calc(6rem / 2) !important;}
    .u-pb7 {padding-bottom:calc(7rem / 2) !important;}
    .u-pb8 {padding-bottom:calc(8rem / 2) !important;}
    .u-pb9 {padding-bottom:calc(9rem / 2) !important;}
    .u-pb10 {padding-bottom:calc(10rem / 2) !important;}
    .u-pb15 {padding-bottom:calc(15rem / 2) !important;}
    .u-pb16 {padding-bottom:calc(16rem / 2) !important;}  
    .u-pt1-sp {padding-top:calc(1rem / 2) !important;}
    .u-pt2-sp {padding-top:calc(2rem / 2) !important;}
    .u-pt3-sp {padding-top:calc(3rem / 2) !important;}
    .u-pt4-sp {padding-top:calc(4rem / 2) !important;}
    .u-pt5-sp {padding-top:calc(5rem / 2) !important;}
    .u-pt6-sp {padding-top:calc(6rem / 2) !important;}
    .u-pt7-sp {padding-top:calc(7rem / 2) !important;}
    .u-pt8-sp {padding-top:calc(8rem / 2) !important;}
    .u-pt9-sp {padding-top:calc(9rem / 2) !important;}
    .u-pt10-sp {padding-top:calc(10rem / 2) !important;}
    .u-pt15-sp {padding-top:calc(15rem / 2) !important;}
    .u-pt16-sp {padding-top:calc(16rem / 2) !important;}
    .u-pb1-sp {padding-bottom:calc(1rem / 2) !important;}
    .u-pb2-sp {padding-bottom:calc(2rem / 2) !important;}
    .u-pb3-sp {padding-bottom:calc(3rem / 2) !important;}
    .u-pb4-sp {padding-bottom:calc(4rem / 2) !important;}
    .u-pb5-sp {padding-bottom:calc(5rem / 2) !important;}
    .u-pb6-sp {padding-bottom:calc(6rem / 2) !important;}
    .u-pb7-sp {padding-bottom:calc(7rem / 2) !important;}
    .u-pb8-sp {padding-bottom:calc(8rem / 2) !important;}
    .u-pb9-sp {padding-bottom:calc(9rem / 2) !important;}
    .u-pb10-sp {padding-bottom:calc(10rem / 2) !important;}
    .u-pb15-sp {padding-bottom:calc(15rem / 2) !important;}
    .u-pb16-sp {padding-bottom:calc(16rem / 2) !important;}  
}
/* === その他 === */
@media print, screen and (min-width: 769px) {
}
@media print, screen and (max-width: 768px) { 
}


/* 
div#wpadminbar {
    display: none;
} */