@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Lato:wght@400;700&family=Noto+Sans+JP:wght@400;500;600;700&family=Zen+Old+Mincho:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho:wght@400;500;600;700;900&display=swap");
/*--------------------------------
 *  カスタムプロパティ
--------------------------------*/
:root {
  --swl-pad_container: 20px!important;
  --container_size: 1000px!important;
  --article_size: 900px!important;
}
/*
Template: swell
Theme Name: FUJISAN J
Theme URI: https://swell-theme.com/
Description: SWELLの子テーマ
Version: 1.0.0
Author: LOOS WEB STUDIO
Author URI: https://loos-web-studio.com/

License: GNU General Public License
License URI: http://www.gnu.org/licenses/gpl.html
*/
/* Foundation
 * 変数、関数、mixinを定義
 * サイト全体のデフォルトスタイルを管理
======================================*/
/****** 変数定義 ******/
/****** mixin定義 ******/
/****** 関数定義 ******/
/****** ベースとなるスタイル ******/
a {
  color: unset;
}
@media screen and (min-width: 600px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
address {
  font-style: unset;
}
figure {
  line-height: 1;
}
/* Layout
 * 接頭辞：l-
 * 各ページを構成する大枠のエリアに対するレイアウトを定義
======================================*/
/****** ヘッダー ******/
#fix_header.l-fixHeader {
  height: var(--swl-headerH, 0px) !important;
  z-index: -100 !important;
  visibility: hidden !important;
  pointer-events: none !important;
}
/*--------------------------------
 *  ベース
--------------------------------*/
.l-header {
  padding-top: 20px;
  padding-bottom: 20px;
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  background-color: var(--color_bg);
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  .l-header {
    padding-top: 15px;
    padding-bottom: 15px;
  }
}
.l-header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 40px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--swl-pad_container, 20px) !important;
  padding-right: var(--swl-pad_container, 20px) !important;
  width: 100%;
  max-width: calc(1240px + calc(var(--swl-pad_container,20px) * 2));
  color: #333;
}
.l-header__col.--left {
  flex-basis: fit-content;
  flex-shrink: 0;
  flex-grow: 0;
}
.l-header__col.--center {
  flex-shrink: 1;
  flex-grow: 0;
}
.l-header__col.--right {
  flex-basis: fit-content;
  flex-shrink: 0;
  flex-grow: 0;
}
[data-scrolled="true"] .l-header {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}
/****** フッター ******/
.l-footer {
  position: relative;
  z-index: 1;
  background-color: #fff;
}
.l-footer__body {
  padding-top: 60px;
  padding-bottom: 60px;
  display: flex;
  column-gap: 60px;
}
@media screen and (max-width: 960px) {
  .l-footer__body {
    padding-top: 40px;
    padding-bottom: 80px;
    display: block;
  }
}
.l-footer__body__col {
  min-width: 1px;
}
.l-footer__body__col.--left {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}
@media screen and (max-width: 960px) {
  .l-footer__body__col.--left {
    padding-bottom: 60px;
  }
}
.l-footer__body__col.--center {
  flex-basis: fit-content;
  flex-shrink: 0;
  flex-grow: 0;
  display: grid;
  grid-template-columns: repeat(3, auto);
  column-gap: 60px;
  row-gap: 30px;
}
@media screen and (max-width: 960px) {
  .l-footer__body__col.--center {
    grid-template-columns: repeat(2, 1fr);
    padding-bottom: 40px;
  }
}
.l-footer__body__col.--right {
  flex-basis: 100px;
  flex-shrink: 0;
  flex-grow: 0;
}
.l-footer__body__col.--center, .l-footer__body__col.--right {
  position: relative;
  padding-top: 42px;
}
.l-footer__body__col.--center::before, .l-footer__body__col.--right::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding-bottom: 10px;
  width: 100%;
  font-size: 12px;
  line-height: 1;
  border-bottom: 1px solid currentColor;
}
.l-footer__body__col.--center::before {
  content: "MENU";
}
.l-footer__body__col.--right::before {
  content: "SNS";
}
@media screen and (max-width: 960px) {
  .l-footer__logo.c-siteLogo {
    margin-left: auto;
    margin-right: auto;
  }
}
.l-footer__logo.c-siteLogo img {
  height: 60px !important;
}
.l-footer__profile {
  display: block;
  margin-top: 30px;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .l-footer__profile {
    text-align: center;
  }
}
.l-footer__copyright {
  display: block;
  margin-top: 30px;
  font-size: 12px;
  line-height: 1;
  color: inherit;
  color: currentColor;
  font-weight: 400;
}
@media screen and (max-width: 960px) {
  .l-footer__copyright {
    margin-top: 20px;
    font-size: 10px;
    text-align: center;
  }
}
/****** コンテンツエリア ******/
#body_wrap {
  padding-top: var(--swl-headerH);
}
#content.l-content {
  margin-bottom: 100px;
}
@media screen and (max-width: 599px) {
  #content.l-content {
    margin-bottom: 80px;
  }
}
.l-content.--home {
  margin-bottom: 0 !important;
}
/****** セクション ******/
/*--------------------------------
 *  ホーム
--------------------------------*/
/*------ キービジュアル -------*/
.l-sect-home-kv {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  position: relative;
  padding-bottom: 80px;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .l-sect-home-kv {
    padding-bottom: 70px;
  }
}
.l-sect-home-kv__inner {
  position: relative;
  z-index: 1;
  padding-top: 30px;
  min-height: 640px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-kv__inner {
    padding-top: 10px;
  }
}
@media screen and (max-width: 599px) {
  .l-sect-home-kv__inner {
    min-height: 430px;
  }
}
.l-sect-home-kv__hero {
  display: block;
  width: fit-content;
  font-size: 26px;
  line-height: 2;
  font-weight: 600;
  letter-spacing: 0.1em;
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (min-width: 961px) {
  .l-sect-home-kv__hero {
    margin-left: -50px;
  }
}
@media screen and (max-width: 599px) {
  .l-sect-home-kv__hero {
    font-size: 20px;
  }
}
.l-sect-home-kv__bg {
  display: block;
  position: absolute;
  z-index: -2;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background-color: #EBE1D4;
  filter: blur(75px);
}
@media screen and (max-width: 599px) {
  .l-sect-home-kv__bg {
    width: 250px;
    height: 250px;
    filter: blur(50px);
  }
}
.l-sect-home-kv__bg.--1 {
  top: 240px;
  right: 50%;
}
@media screen and (max-width: 599px) {
  .l-sect-home-kv__bg.--1 {
    top: 180px;
    right: unset;
    left: 0;
  }
}
.l-sect-home-kv__bg.--2 {
  top: 100px;
  left: 50%;
}
@media screen and (max-width: 599px) {
  .l-sect-home-kv__bg.--2 {
    top: 120px;
    left: unset;
    right: 0;
  }
}
/*------ プランから選ぶ -------*/
.l-sect-home-plan {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.l-sect-home-plan__inner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 12%;
  background-image: linear-gradient(#E4DFDA, #E4DFDA);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 1px 100%;
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .l-sect-home-plan__inner {
    column-gap: 40px;
  }
}
@media screen and (max-width: 599px) {
  .l-sect-home-plan__inner {
    background-image: unset;
    display: block;
  }
}
.l-sect-home-plan__col {
  position: relative;
  z-index: 1;
  padding-top: 40px;
  padding-bottom: 80px;
  padding-left: 100px;
  padding-right: 20px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-plan__col {
    padding-right: 0;
    padding-left: 65px;
    padding-bottom: 40px;
  }
}
@media screen and (max-width: 599px) {
  .l-sect-home-plan__col:not(:last-of-type) {
    border-bottom: 1px solid #E4DFDA;
  }
}
.l-sect-home-plan__bg {
  display: block;
  position: absolute;
  z-index: -1;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: #EBE1D4;
  filter: blur(25px);
  top: 200px;
  right: 0;
}
.l-sect-home-plan__title {
  position: absolute;
  top: 40px;
  left: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  writing-mode: vertical-rl;
  font-size: 26px;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .l-sect-home-plan__title {
    font-size: 22px;
  }
}
.l-sect-home-plan__title::after {
  content: attr(data-label);
  font-size: 14px;
  line-height: 1;
  color: var(--color_main);
}
.l-sect-home-plan__img {
  display: block;
  width: 100%;
  height: 460px;
  overflow: hidden;
  border-top-left-radius: 9999px;
  border-top-right-radius: 9999px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-plan__img {
    height: 387px;
  }
}
.l-sect-home-plan__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-sect-home-plan__desc {
  margin-top: 20px;
  font-size: 16px;
  line-height: 1.8;
}
.l-sect-home-plan__desc > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
}
.l-sect-home-plan__desc > *:not(:last-child) {
  margin-bottom: 1em;
}
@media screen and (max-width: 960px) {
  .l-sect-home-plan__desc {
    font-size: 14px;
  }
}
.l-sect-home-plan__col .c-label-more {
  margin-top: 30px;
}
@media screen and (max-width: 960px) {
  .l-sect-home-plan__col .c-label-more {
    margin-top: 20px;
  }
}
/*------ 施工事例 -------*/
.l-sect-home-works {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  overflow: hidden;
}
.l-sect-home-works__inner {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .l-sect-home-works__inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.l-sect-home-works__inner .c-btn {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
/*------ 施工の流れ -------*/
.l-sect-home-flow {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 53px;
  padding-bottom: 80px;
  border-top: 1px solid #E4DFDA;
}
@media screen and (max-width: 599px) {
  .l-sect-home-flow {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.l-sect-home-flow__head {
  display: flex;
  column-gap: 5%;
}
@media screen and (max-width: 599px) {
  .l-sect-home-flow__head {
    display: block;
  }
}
.l-sect-home-flow__head .l-sect-home-flow__title {
  flex-basis: 20%;
  flex-shrink: 0;
  flex-grow: 0;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (max-width: 960px) {
  .l-sect-home-flow__head .l-sect-home-flow__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .l-sect-home-flow__head .l-sect-home-flow__title {
    margin-bottom: 30px;
  }
}
.l-sect-home-flow__head .l-sect-home-flow__desc {
  flex-basis: 0;
  flex-shrink: 1;
  flex-grow: 1;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .l-sect-home-flow__head .l-sect-home-flow__desc {
    font-size: 14px;
  }
}
.l-sect-home-flow__img, .l-sect-home-flow__img img {
  display: block;
  width: auto;
  height: auto;
}
.l-sect-home-flow__img {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  max-width: 100%;
}
@media screen and (max-width: 599px) {
  .l-sect-home-flow__img {
    margin-top: 40px;
  }
}
.l-sect-home-flow .c-btn {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
/*------ スタッフ -------*/
.l-sect-home-staff {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
.l-sect-home-staff__inner {
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .l-sect-home-staff__inner {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.l-sect-home-staff__inner .c-btn {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
/*------ 会社概要 -------*/
.l-sect-home-about {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  position: relative;
}
.l-sect-home-about__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.l-sect-home-about__bg::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background-color: rgba(67, 59, 59, 0.6);
  width: 100%;
  height: 100%;
}
.l-sect-home-about__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.l-sect-home-about__article {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 54%;
  min-height: 520px;
  color: #fff;
}
@media screen and (max-width: 599px) {
  .l-sect-home-about__article {
    padding-top: 40px;
    padding-bottom: 60px;
    padding-left: 0;
  }
}
.l-sect-home-about__title {
  margin-bottom: 30px;
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 26px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .l-sect-home-about__title {
    font-size: 20px;
  }
}
.l-sect-home-about__img {
  display: block;
  position: relative;
  overflow: hidden;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0 100%, 0 40%);
}
.l-sect-home-about__img::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 100%;
}
.l-sect-home-about__img > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-sect-home-about__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  .l-sect-home-about__img {
    position: static;
    margin-bottom: 20px;
    margin-left: auto;
    margin-right: auto;
    width: 280px;
    max-width: 100%;
    transform: unset;
  }
}
.l-sect-home-about__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
.l-sect-home-about__desc > * {
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;
  font-family: inherit;
  color: inherit;
}
.l-sect-home-about__desc > *:not(:last-child) {
  margin-bottom: 1.25em;
}
@media screen and (max-width: 960px) {
  .l-sect-home-about__desc {
    font-size: 14px;
  }
}
.l-sect-home-about__article .c-label-more {
  margin-top: 30px;
}
/*------ お知らせ -------*/
.l-sect-home-news {
  display: grid;
  grid-template-columns: 20% 1fr;
  column-gap: 5%;
  grid-template-areas: "ttl list" "btn list";
  padding-top: 60px;
  padding-bottom: 80px;
}
@media screen and (max-width: 599px) {
  .l-sect-home-news {
    display: block;
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.l-sect-home-news__title {
  margin-bottom: 40px;
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  grid-area: ttl;
  align-self: flex-start;
}
@media screen and (max-width: 960px) {
  .l-sect-home-news__title {
    font-size: 20px;
  }
}
@media screen and (max-width: 599px) {
  .l-sect-home-news__title {
    margin-bottom: 30px;
  }
}
.l-sect-home-news .c-btn {
  grid-area: btn;
  align-self: flex-start;
}
@media screen and (max-width: 599px) {
  .l-sect-home-news .c-btn {
    margin-top: 30px;
  }
}
.l-sect-home-news .p-card__unit {
  grid-area: list;
}
/*------ SNS -------*/
.l-sect-home-sns {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 60px;
  padding-bottom: 80px;
  border-top: 1px solid #E4DFDA;
}
@media screen and (max-width: 599px) {
  .l-sect-home-sns {
    padding-top: 40px;
    padding-bottom: 60px;
  }
}
.l-sect-home-sns__title {
  display: flex;
  align-items: center;
  column-gap: 10px;
  margin-top: 40px;
  margin-bottom: 20px;
  font-size: 20px;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .l-sect-home-sns__title {
    margin-top: 20px;
    margin-bottom: 10px;
    font-size: 16px;
  }
}
.l-sect-home-sns__title > i {
  font-size: 32px;
}
@media screen and (max-width: 599px) {
  .l-sect-home-sns__title > i {
    font-size: 24px;
  }
}
/*--------------------------------
 *  施工事例：詳細
--------------------------------*/
.l-sect-works-head {
  padding-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .l-sect-works-head {
    padding-bottom: 40px;
  }
}
.l-sect-works-body {
  padding-bottom: 100px;
}
@media screen and (max-width: 599px) {
  .l-sect-works-body {
    padding-bottom: 60px;
  }
}
.l-sect-works-body__desc {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .l-sect-works-body__desc {
    font-size: 14px;
  }
}
.l-sect-works-foot {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding-left: calc(50vw - 50%);
  padding-right: calc(50vw - 50%);
  padding-top: 60px;
  border-top: 1px solid #E4DFDA;
}
@media screen and (max-width: 599px) {
  .l-sect-works-foot {
    padding-top: 40px;
  }
}
.l-sect-works-foot .c-btn {
  margin-top: 60px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 599px) {
  .l-sect-works-foot .c-btn {
    margin-top: 40px;
  }
}
.l-sect-works-foot__title {
  margin-bottom: 40px;
  text-align: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .l-sect-works-foot__title {
    font-size: 18px;
  }
}
/****** CTA ******/
.l-cta {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #EBE1D4;
  background-image: url("./img/texture/tx_01.png");
  background-repeat: no-repeat;
  background-size: auto;
  background-position: calc(50% - 480px) top;
}
@media screen and (max-width: 960px) {
  .l-cta {
    padding-top: 40px;
    padding-bottom: 40px;
    background-position: calc(50% - 80px) 137px;
  }
}
.l-cta__inner {
  display: flex;
  column-gap: 8%;
  position: relative;
}
@media screen and (max-width: 960px) {
  .l-cta__inner {
    display: block;
  }
}
.l-cta__inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #FAF8F6;
  transform: translateX(-50%);
}
@media screen and (max-width: 960px) {
  .l-cta__inner::after {
    content: none;
  }
}
.l-cta__col {
  min-width: 1px;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding-top: 10px;
  padding-bottom: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 960px) {
  .l-cta__col.--line {
    padding-top: 0;
    padding-bottom: 20px;
    border-bottom: 1px solid #FAF8F6;
  }
}
@media screen and (max-width: 960px) {
  .l-cta__col.--contact {
    padding-top: 20px;
    padding-bottom: 0;
  }
}
.l-cta__phone {
  display: flex;
  align-items: center;
  column-gap: 30px;
  margin-top: 20px;
}
@media screen and (max-width: 599px) {
  .l-cta__phone {
    display: block;
  }
}
.l-cta__phone > * {
  min-width: 1px;
}
.l-cta__phone > p {
  font-size: 14px;
  line-height: 1;
  font-weight: 700;
  white-space: nowrap;
  flex-basis: fit-content;
  flex-grow: 0;
  flex-shrink: 0;
}
.l-cta__phone > div {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}
@media screen and (max-width: 599px) {
  .l-cta__phone > div {
    margin-top: 15px;
    text-align: center;
  }
}
.l-cta__phone > div > a {
  display: block;
  font-size: 26px;
  font-weight: 700;
  line-height: 1;
}
.l-cta__phone > div > span {
  display: block;
  margin-top: 5px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1;
}
/****** ページタイトル ******/
#top_title_area.l-topTitleArea {
  display: flex;
  align-items: center;
  overflow: hidden;
  position: relative;
  width: 100%;
  padding: 1em 0;
  min-height: 112px;
  background-color: transparent;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (max-width: 599px) {
  #top_title_area.l-topTitleArea {
    min-height: 64px;
  }
}
.l-topTitleArea__body {
  position: relative;
  text-shadow: unset;
  width: 100%;
  z-index: 3;
  color: var(--color_text);
}
.l-topTitleArea .c-pageTitle {
  font-size: 32px;
  font-weight: 600;
  line-height: normal;
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
@media screen and (max-width: 599px) {
  .l-topTitleArea .c-pageTitle {
    font-size: 24px;
  }
}
/* Object > Component
 * 接頭辞：c-
 * 再利用できるパターンとして最小単位のモジュールを定義
======================================*/
/****** 見出し/タイトル ******/
/*--------------------------------
 *  ホーム > セクション
--------------------------------*/
.c-heading-sect {
  font-size: 26px;
  line-height: 1;
  font-weight: bold;
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  text-align: center;
  padding-top: 29px;
  padding-bottom: 29px;
  border-top: 1px solid #E4DFDA;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (max-width: 599px) {
  .c-heading-sect {
    padding-top: 19px;
    padding-bottom: 19px;
    font-size: 20px;
  }
}
/*--------------------------------
 *  施工事例：詳細 > タイトル
--------------------------------*/
.c-title-works {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 30px;
}
@media screen and (max-width: 599px) {
  .c-title-works {
    margin-bottom: 20px;
  }
}
/*--------------------------------
 *  施工事例：詳細 > セクション
--------------------------------*/
.c-heading-works {
  margin-top: 60px;
  margin-bottom: 40px;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
  border-top: 1px solid currentColor;
}
@media screen and (max-width: 599px) {
  .c-heading-works {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
/*--------------------------------
 *  投稿コンテンツ > セクション
--------------------------------*/
.is-style-section_ttl {
  font-family: "Zen Old Mincho", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}
/****** ラベル ******/
/*--------------------------------
 *  詳しく見る
--------------------------------*/
.c-label-more {
  font-size: 14px;
  font-weight: 700;
  display: flex;
  column-gap: 5px;
  align-items: center;
  transition: 0.3s;
}
.c-label-more:hover {
  opacity: 0.6;
}
.c-label-more:hover .c-btn__icon {
  transform: translateX(4px);
}
/*--------------------------------
 *  タームバッジ
--------------------------------*/
.c-label-term {
  display: block;
  padding: 5px 10px 5px;
  width: 120px;
  font-size: 12px;
  line-height: 1;
  text-align: center;
  background-color: var(--color_main);
  border-radius: 3px;
  color: #fff;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
}
/*--------------------------------
 *  タームバッジ（施工事例）
--------------------------------*/
.c-label-works__unit {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.c-label-works {
  display: block;
  width: fit-content;
  max-width: 100%;
  padding: 5px 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: var(--color_main);
  font-size: 12px;
  line-height: 1;
  border-radius: 3px;
  outline: 1px solid currentColor;
  outline-offset: -1px;
}
@media screen and (max-width: 599px) {
  .c-label-works {
    font-size: 10px;
  }
}
a.c-label-works {
  text-decoration: none;
}
/****** ボタン ******/
/*--------------------------------
 *  基本
--------------------------------*/
.c-btn {
  display: flex;
  align-items: center;
  padding: 19px;
  width: 500px;
  max-width: 100%;
  color: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid currentColor;
  background-color: transparent;
  transition: 0.3s;
  border-radius: 5px;
}
.c-btn .label {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
  min-width: 1px;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}
.c-btn__icon {
  flex-basis: 16px;
  flex-grow: 0;
  flex-shrink: 0;
  font-style: normal;
  min-width: 1px;
  height: 11px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  transition: 0.3s;
}
.c-btn__icon.--right {
  background-image: url("./img/icon/ic_03.svg");
}
.c-btn__icon.--right-w {
  background-image: url("./img/icon/ic_05.svg");
}
.c-btn__icon.--left {
  background-image: url("./img/icon/ic_04.svg");
}
/*------ ホバーアクション -------*/
.c-btn:hover {
  background-color: #fff;
}
.c-btn:hover .c-btn__icon.--right {
  transform: translateX(4px);
}
/*--------------------------------
 *  CTA > お問合せ
--------------------------------*/
.c-btn-cta {
  display: flex;
  align-items: center;
  padding: 19px;
  width: 500px;
  max-width: 100%;
  color: inherit;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  border: 1px solid currentColor;
  background-color: #fff;
  transition: 0.3s;
  border-radius: 5px;
}
.c-btn-cta .label {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
  min-width: 1px;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
}
/*------ ホバーアクション -------*/
.c-btn-cta:hover {
  opacity: 0.6;
}
.c-btn-cta:hover .c-btn__icon.--right {
  transform: translateX(4px);
}
/*--------------------------------
 *  CTA > LINE
--------------------------------*/
.c-btn-line {
  display: flex;
  align-items: center;
  padding: 20px;
  width: 500px;
  height: 100%;
  max-width: 100%;
  color: #fff;
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  background-image: linear-gradient(180deg, #7ACE87 0%, #4DB15D 100%);
  transition: 0.3s;
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .c-btn-line {
    font-size: 20px;
  }
}
.c-btn-line .label {
  color: inherit;
  font-size: inherit;
  font-weight: inherit;
  text-align: center;
  min-width: 1px;
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
}
.c-btn-line .label::before {
  content: "";
  width: 35px;
  height: 35px;
  background-image: url("./img/icon/ic_06.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.c-btn-line .c-btn__icon.--right {
  background-image: url("./img/icon/ic_05.svg");
}
/*------ ホバーアクション -------*/
.c-btn-line:hover {
  opacity: 0.8;
}
.c-btn-line:hover .c-btn__icon.--right {
  transform: translateX(4px);
}
/*--------------------------------
 *  ハンバーガー
--------------------------------*/
.c-btn-menu {
  position: fixed;
  top: calc(var(--wp-admin--admin-bar--height, 0px) + 15px);
  right: var(--swl-pad_container, 20px);
  z-index: 102;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  transition: 0.3;
  background-color: var(--color_bg);
  box-shadow: 3px 3px 6px #EBE1D4, -3px -3px 6px #FFF;
}
.c-btn-menu__inner {
  width: 20px;
  height: 13px;
  position: relative;
}
.c-btn-menu__inner > span {
  width: 100%;
  height: 1px;
  display: block;
  position: absolute;
  left: 0;
  border-radius: 9999px;
  background-color: var(--color_text);
  transition: 0.3s;
}
.c-btn-menu__inner > span:nth-of-type(1) {
  top: 0;
}
.c-btn-menu__inner > span:nth-of-type(2) {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.c-btn-menu__inner > span:nth-of-type(3) {
  bottom: 0;
}
/*------ 展開時 -------*/
.c-btn-menu.is-active .c-btn-menu__inner > span:nth-of-type(1) {
  top: 50%;
  transform: translateY(-50%) rotate(-315deg);
}
.c-btn-menu.is-active .c-btn-menu__inner > span:nth-of-type(2) {
  width: 0;
}
.c-btn-menu.is-active .c-btn-menu__inner > span:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%) rotate(315deg);
}
/*--------------------------------
 *  フローティング
--------------------------------*/
.c-btn-float__wrapper {
  position: fixed;
  z-index: 102;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 599px) {
  .c-btn-float__wrapper {
    top: calc(var(--wp-admin--admin-bar--height, 0px) + 15px);
    right: 75px;
    transform: unset;
    width: fit-content;
  }
}
.c-btn-float {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-direction: column;
  padding: 30px 15px;
  border-radius: 10px 0px 0px 10px;
  background: linear-gradient(180deg, #7ACE87 0%, #4DB15D 100%);
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .c-btn-float {
    flex-direction: row;
    padding: 10px;
    border-radius: 5px;
    border-bottom-width: 0;
  }
}
@media screen and (min-width: 600px) {
  .c-btn-float:hover {
    padding-right: 22px;
  }
}
.c-btn-float::before {
  content: "";
  background-image: url("./img/icon/ic_06.svg");
  width: 28px;
  height: 32px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
@media screen and (max-width: 599px) {
  .c-btn-float::before {
    width: 20px;
    height: 20px;
  }
}
.c-btn-float span {
  text-align: center;
  writing-mode: vertical-rl;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 599px) {
  .c-btn-float span {
    writing-mode: horizontal-tb;
    font-size: 14px;
    letter-spacing: 0em;
    font-weight: 400;
  }
}
/****** サイトロゴ ******/
/*--------------------------------
 *  サイトロゴ
--------------------------------*/
.c-siteLogo {
  margin: 0;
  display: block;
  width: fit-content;
  position: relative;
  transition: 0.3s;
}
.c-siteLogo:hover {
  opacity: 0.6;
}
.c-siteLogo img {
  height: 60px;
  display: block;
}
@media screen and (max-width: 599px) {
  .c-siteLogo img {
    height: 40px;
  }
}
/****** ティッカー ******/
.c-ticker {
  position: absolute;
  bottom: 280px;
  left: 0;
  z-index: 2;
  display: flex;
  width: 100%;
  height: auto;
  overflow: hidden;
}
@media screen and (max-width: 599px) {
  .c-ticker {
    bottom: 310px;
  }
}
.c-ticker__item {
  display: block;
  width: fit-content;
  font-size: 120px;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.05em;
  color: #fff;
  white-space: nowrap;
}
.c-ticker__item.--01 {
  animation: loop 80s -40s linear infinite;
}
.c-ticker__item.--02 {
  animation: loop2 80s linear infinite;
}
@media screen and (max-width: 599px) {
  .c-ticker__item {
    font-size: 60px;
  }
}
.c-ticker__item .outline {
  color: transparent;
  -webkit-text-stroke: 1px #fff;
  text-stroke: 1px #fff;
}
@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/* Object > Project
 * 接頭辞：p-
 * 再利用できるパターンとしてComponentの集合体を定義
 * もしくはComponentとするには大きすぎるObject（4階層構造以上を目安）を定義
======================================*/
/****** ブログカード ******/
/*--------------------------------
 *  デフォルト
--------------------------------*/
.p-card__unit {
  min-width: 1px;
}
.p-card {
  width: 100%;
  display: flex;
  column-gap: 15px;
  align-items: center;
  padding: 20px;
  border-top: 1px solid #E4DFDA;
}
@media screen and (max-width: 599px) {
  .p-card {
    display: block;
  }
}
.p-card__col {
  min-width: 1px;
}
.p-card__col.--meta {
  flex-basis: fit-content;
  flex-shrink: 0;
  flex-grow: 0;
  display: flex;
  column-gap: 15px;
  align-items: center;
}
.p-card__col.--article {
  flex-basis: 0;
  flex-shrink: 1;
  flex-grow: 1;
}
@media screen and (max-width: 599px) {
  .p-card__col.--article {
    margin-top: 15px;
  }
}
.p-card__date {
  display: block;
  min-width: 1px;
  flex-basis: fit-content;
  flex-shrink: 0;
  flex-grow: 0;
  line-height: 1;
  color: var(--color_main);
  font-family: "Lato", sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.p-card__ttl {
  display: block;
  width: 100%;
  position: relative;
  font-size: 16px;
  line-height: 1;
  font-weight: 400;
  white-space: nowrap;
  text-decoration: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .p-card__ttl {
    font-size: 14px;
  }
}
.p-card__ttl:focus, .p-card__ttl:hover {
  color: var(--color_main);
}
/*--------------------------------
 *  検索結果
--------------------------------*/
.p-card-search__unit {
  border-top: 1px solid #ddd;
}
.p-card-search {
  padding: 1em 0.25em;
  font-size: 1rem;
  position: relative;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 599px) {
  .p-card-search {
    font-size: 0.875rem;
  }
}
.p-card-search__layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-card-search__layer:focus ~ .p-card-search__inner .p-card-search__ttl, .p-card-search__layer:hover ~ .p-card-search__inner .p-card-search__ttl {
  color: var(--color_main);
}
.p-card-search__inner.--head {
  margin-bottom: 1em;
}
.p-card-search__ttl {
  line-height: 1.5;
  font-weight: bold;
  transition: 0.25s;
}
/*--------------------------------
 *  記事が存在しない場合
--------------------------------*/
.p-card-not {
  padding: 2em 1em;
  background-color: #efefef;
  border: 1px solid #ddd;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-card-not__txt {
  font-size: 1rem;
  font-weight: bold;
  color: #BBB;
}
/*--------------------------------
 *  施工事例
--------------------------------*/
.p-card-works__unit {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6%;
  row-gap: 60px;
}
@media screen and (max-width: 960px) {
  .p-card-works__unit {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 15px;
    row-gap: 30px;
  }
}
.p-card-works {
  position: relative;
  display: block;
  border-radius: 5px;
  box-shadow: 5px 5px 15px 0px #EBE1D4, -5px -5px 15px 0px #FFF;
  overflow: hidden;
  background-color: #FAF8F6;
  transition: transform 0.8s cubic-bezier(0.2, 1, 0.2, 1), opacity 1s;
}
.p-card-works__layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-card-works__inner {
  display: flex;
  flex-direction: column;
}
.p-card-works__img {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-card-works__img::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 61.7747440273%;
}
.p-card-works__img > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-card-works__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-card-works__img img {
  height: calc(100% + 16px);
  transform: translateY(-16px);
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
}
.p-card-works__body {
  flex-basis: 0;
  flex-grow: 1;
  flex-shrink: 1;
  padding: 20px 30px;
  min-width: 1px;
}
@media screen and (max-width: 599px) {
  .p-card-works__body {
    padding: 10px;
  }
}
.p-card-works__foot {
  padding: 20px 30px;
  min-width: 1px;
  border-top: 1px solid #EBEBEB;
}
@media screen and (max-width: 599px) {
  .p-card-works__foot {
    padding: 10px;
  }
}
.p-card-works__title {
  display: -webkit-box;
  margin-bottom: 10px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  color: #433B3B;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (max-width: 599px) {
  .p-card-works__title {
    font-size: 14px;
  }
}
.p-card-works__data {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.15;
}
@media screen and (max-width: 599px) {
  .p-card-works__data {
    font-size: 12px;
  }
}
.p-card-works__data > *:not(:first-child)::before {
  content: "｜";
}
/*------ ホバーアクション -------*/
.p-card-works:hover {
  transform: translateY(-16px);
}
.p-card-works:hover .p-card-works__img img {
  transform: translateY(0);
}
/*------ アーカイブ絞り込み検索用 -------*/
.p-card-works__unit.js-search-unit .js-search-card {
  display: none;
}
.p-card-works__unit.js-search-unit .js-search-card.is-show {
  display: block;
}
.p-card-works__unit.js-search-unit .js-search-card.is-hide {
  display: none !important;
}
/*--------------------------------
 *  スタッフ
--------------------------------*/
.p-card-staff__unit {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 4%;
  row-gap: 30px;
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .p-card-staff__unit {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media screen and (max-width: 599px) {
  .p-card-staff__unit {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
  }
}
.p-card-staff {
  position: relative;
  display: block;
  overflow: hidden;
}
.p-card-staff__img {
  display: block;
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}
.p-card-staff__img::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 100%;
}
.p-card-staff__img > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-card-staff__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 599px) {
  .p-card-staff__img {
    margin-bottom: 10px;
  }
}
.p-card-staff__job {
  display: block;
  margin-bottom: 10px;
  color: var(--color_main);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .p-card-staff__job {
    font-size: 10px;
  }
}
.p-card-staff__title {
  display: block;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 599px) {
  .p-card-staff__title {
    font-size: 14px;
  }
}
/*--------------------------------
 *  KV
--------------------------------*/
.p-card-kv__unit {
  position: absolute;
  bottom: 20px;
  left: calc(50% + 100px);
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(3, 120px);
  gap: 10px;
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .p-card-kv__unit {
    left: auto;
    right: 20px;
  }
}
@media screen and (max-width: 599px) {
  .p-card-kv__unit {
    grid-template-columns: repeat(3, 100px);
    position: static;
    margin-top: 70px;
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
  }
}
.p-card-kv {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 10px;
  justify-content: center;
  align-items: center;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.9);
  color: inherit;
  font-weight: 700;
  font-family: "Zen Old Mincho", serif;
  border-radius: 5px;
  line-height: 1.3;
  text-align: center;
  text-decoration: none;
  box-shadow: 5px 5px 15px 0px #EBE1D4;
  transition: 0.3s;
}
@media screen and (max-width: 599px) {
  .p-card-kv {
    height: 100px;
    font-size: 14px;
  }
}
.p-card-kv::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 40px;
  height: 2px;
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
  background-color: var(--color_main);
  transform: translateX(-50%);
}
.p-card-kv small {
  font-size: 12px;
}
@media screen and (max-width: 599px) {
  .p-card-kv small {
    font-size: 10px;
  }
}
/*------ ホバーアクション -------*/
@media screen and (min-width: 961px) {
  .p-card-kv:hover {
    transform: translateY(-4px);
  }
}
/****** ナビゲーション ******/
/*--------------------------------
 *  ヘッダー
--------------------------------*/
.p-nav-header {
  display: flex;
  column-gap: 40px;
  row-gap: 10px;
  flex-wrap: wrap;
  font-size: 14px;
  font-weight: 700;
  line-height: 20px;
  color: inherit;
}
.p-nav-header .menu-item a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  position: relative;
  display: block;
  color: inherit;
}
.p-nav-header .menu-item a:hover {
  opacity: 0.6;
}
.p-nav-header .current-menu-item > a {
  pointer-events: none;
  color: var(--color_main);
}
/*--------------------------------
	フッター
--------------------------------*/
.p-nav-footer {
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
  color: inherit;
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .p-nav-footer {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    column-gap: 40px;
    row-gap: 20px;
  }
}
.p-nav-footer a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  color: inherit;
  transition: 0.3s;
}
.p-nav-footer a:hover {
  opacity: 0.6;
}
.p-nav-footer > .menu-item {
  font-size: inherit;
}
.p-nav-footer > .menu-item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .p-nav-footer > .menu-item {
    margin-bottom: 0 !important;
  }
}
.p-nav-footer .current-menu-item > a {
  pointer-events: none;
  color: var(--color_main);
  font-weight: 700;
}
.p-nav-footer .sub-menu {
  margin-top: 20px;
}
.p-nav-footer .sub-menu .menu-item {
  font-size: 14px;
  font-weight: 400;
}
.p-nav-footer .sub-menu .menu-item:not(:last-child) {
  margin-bottom: 15px;
}
.p-nav-footer .sub-menu .menu-item > a {
  position: relative;
  padding-left: 18px;
}
.p-nav-footer .sub-menu .menu-item > a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 8px;
  height: 2px;
  background-color: currentColor;
}
.p-nav-footer .menu-item-has-children > a[href="#"] {
  pointer-events: none;
}
/*--------------------------------
 *  ドロワー
--------------------------------*/
.p-nav-drawer {
  margin-top: 45px;
  padding-left: 40px;
  padding-bottom: 40px;
  color: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}
.p-nav-drawer a {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  color: inherit;
}
.p-nav-drawer a:hover {
  opacity: 0.6;
}
.p-nav-drawer .menu-item {
  font-size: inherit;
}
.p-nav-drawer .menu-item:not(:last-child) {
  margin-bottom: 20px;
}
.p-nav-drawer .current-menu-item > a {
  pointer-events: none;
  color: var(--color_main);
}
/****** フォーム ******/
/*--------------------------------
	コンタクトフォーム
--------------------------------*/
form.wpcf7-form {
  margin: 0 auto;
  width: 100%;
  max-width: 650px;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
}
table.p-form-contact {
  width: 100%;
  line-height: 1.5;
  border-bottom: 1px solid #dcdcdc;
}
table.p-form-contact .p-form-contact__th {
  padding-top: 1em;
  padding-right: 2em;
  white-space: nowrap;
  text-align: left;
  vertical-align: baseline;
  width: 1%;
}
table.p-form-contact .p-form-contact__th sup {
  color: #dc3232;
}
@media screen and (max-width: 599px) {
  table.p-form-contact .p-form-contact__th {
    padding-top: 0.5em;
  }
}
table.p-form-contact .p-form-contact__td input[type="text"], table.p-form-contact .p-form-contact__td input[type="tel"], table.p-form-contact .p-form-contact__td input[type="url"], table.p-form-contact .p-form-contact__td input[type="date"], table.p-form-contact .p-form-contact__td input[type="email"], table.p-form-contact .p-form-contact__td select, table.p-form-contact .p-form-contact__td textarea {
  padding: 0.5em;
  width: 100%;
  display: block;
}
@media screen and (max-width: 599px) {
  table.p-form-contact .p-form-contact__th {
    padding-right: 0;
    display: block;
    width: 100%;
    border-bottom: none;
  }
  table.p-form-contact .p-form-contact__td {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
table.p-form-contact .wpcf7-form-control-wrap {
  display: block;
}
table.p-form-contact .wpcf7-checkbox, table.p-form-contact .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  gap: 1em;
  font-size: 14px;
}
@media screen and (max-width: 599px) {
  table.p-form-contact .wpcf7-checkbox, table.p-form-contact .wpcf7-radio {
    flex-direction: column;
  }
}
table.p-form-contact .wpcf7-list-item {
  margin: 0;
  display: block;
  line-height: 1;
}
table.p-form-contact .wpcf7-list-item > label {
  display: inline-flex;
  align-items: center;
  column-gap: 0.5em;
}
.formError, .formError * {
  box-sizing: content-box;
}
select.drop {
  background-image: url("../img/icon/drop.svg");
  background-position: right 0.5em center;
  background-repeat: no-repeat;
  background-size: auto 1em;
}
.p-form-contact__postalcode {
  margin-bottom: 1em;
  display: flex;
  column-gap: 0.5em;
  align-items: center;
}
.p-form-contact__postalcode span[data-name="your-postalcode"] {
  flex-basis: 7em;
  flex-shrink: 0;
  flex-grow: 0;
  max-width: 100%;
}
table.p-form-contact .wpcf7-not-valid-tip {
  margin-top: 0.5em;
  font-size: 12px;
}
.p-form-sup {
  margin-bottom: 0.5em;
  font-size: 14px;
  color: #777;
  line-height: 1;
}
.p-form-sup > span {
  color: #dc3232;
  font-weight: bold;
}
/*--------------------------------
    ボックス
--------------------------------*/
.p-form-box {
  margin-top: 60px;
}
@media screen and (max-width: 599px) {
  .p-form-box {
    margin-top: 30px;
  }
}
.p-form-box__title {
  margin-bottom: 1em;
  font-size: 1.25rem;
  text-align: center;
  font-weight: bold;
}
.p-form-box__note {
  margin: 0 auto;
  padding: 1em;
  max-width: 100%;
  height: 200px;
  background: #eee;
  font-family: "Courier 10 Pitch", courier, monospace;
  line-height: 1.5;
  overflow-y: auto;
  border: 1px solid #ccc;
}
#p-form-box .p-form-box__note * {
  font-size: 0.75rem;
}
#p-form-box .p-form-box__note h2 {
  font-size: 0.875rem;
}
.p-form-box__agree {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5em;
  line-height: 1;
}
.p-form-box__agree .wpcf7-list-item {
  margin: 0;
  display: block;
  line-height: 10px;
}
@media screen and (max-width: 599px) {
  .p-form-box__agree {
    font-size: 0.875rem;
  }
}
/*--------------------------------
    送信ボタン
--------------------------------*/
#submit.c-btn-submit {
  margin: 0 auto;
  margin-top: 40px;
  padding: 0.5em 1em;
  color: #FFF;
  line-height: 1.15;
  display: block;
  width: 200px;
  text-align: center;
  background-color: var(--color_htag);
  border: none;
  transition: 0.25s;
}
#submit.c-btn-submit:focus, #submit.c-btn-submit:hover {
  opacity: 0.8;
}
#submit.c-btn-submit:disabled {
  background-color: #b5b5b5 !important;
  opacity: 1;
}
/****** スマホ開閉メニュー ******/
.p-spMenu__inner {
  padding-top: 0;
  margin-top: var(--wp-admin--admin-bar--height, 0px);
  width: 100vw;
  font-size: 16px;
  background-color: transparent !important;
  color: var(--color_text);
}
.p-spMenu__inner::before {
  background-color: var(--color_bg);
}
.-right .p-spMenu__inner {
  transform: translateX(100vw);
}
[data-spmenu=opened] .p-spMenu__inner {
  -webkit-transform: translateX(0) !important;
  transform: translateX(0) !important;
}
.p-spMenu__body {
  padding-top: var(--swl-headerH, 0px);
  padding-left: var(--swl-pad_container, 0px);
  padding-right: var(--swl-pad_container, 0px);
  padding-bottom: 52px;
}
.p-spMenu__nav {
  margin: 0;
}
.p-spMenu .l-header {
  width: 100%;
  position: absolute;
  top: 0;
  border: unset;
  box-shadow: unset;
  background-color: transparent;
}
/****** スライダー ******/
.swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}
/*--------------------------------
 *  ホーム > キービジュアル
--------------------------------*/
.p-slider-kv {
  position: absolute;
  bottom: 0;
  left: 50%;
  z-index: -1;
  width: calc(100% - calc(var(--swl-pad_container,20px) * 2));
  max-width: 700px;
  height: 100%;
  transform: translateX(-50%);
}
@media screen and (max-width: 599px) {
  .p-slider-kv {
    top: unset;
    bottom: 0;
    height: 307px;
  }
}
.p-slider-kv__img, .p-slider-kv__img img {
  display: block;
  width: 100%;
  height: 100%;
}
.p-slider-kv__img {
  clip-path: polygon(50% 0%, 100% 40%, 100% 100%, 0 100%, 0 40%);
}
.p-slider-kv__img img {
  object-fit: cover;
}
/*--------------------------------
 *  ホーム > 施工事例
--------------------------------*/
.p-slider-works.swiper {
  overflow: visible;
}
@media screen and (max-width: 960px) {
  .p-slider-works.swiper {
    padding-left: 35px;
    padding-right: 35px;
  }
}
.p-slider-works .swiper-slide {
  height: auto;
}
.p-slider-works.swiper-initialized .swiper-slide:not(.swiper-slide-visible) {
  pointer-events: none;
  opacity: 0.3;
}
.p-slider-works .swiper-button-prev, .p-slider-works .swiper-button-next {
  display: grid;
  place-content: center;
  padding: 0;
  width: 48px;
  height: 48px;
  background-color: transparent;
}
@media screen and (max-width: 960px) {
  .p-slider-works .swiper-button-prev, .p-slider-works .swiper-button-next {
    width: 40px;
    height: 40px;
  }
}
.p-slider-works .swiper-button-prev::before, .p-slider-works .swiper-button-next::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--color_main);
  opacity: 0.6;
  border-radius: 50%;
  transition: 0.3s;
}
.p-slider-works .swiper-button-prev::after, .p-slider-works .swiper-button-next::after {
  position: static;
  border: solid #fff;
  border-width: 2px 2px 0 0;
  width: 10px;
  height: 10px;
}
.p-slider-works .swiper-button-prev:hover:before, .p-slider-works .swiper-button-next:hover:before {
  transform: scale(1.2);
}
.p-slider-works .swiper-button-prev {
  left: unset;
  right: calc(100% - 28px);
}
@media screen and (max-width: 960px) {
  .p-slider-works .swiper-button-prev {
    right: calc(100% - 40px);
  }
}
.p-slider-works .swiper-button-prev::after {
  margin-left: 4px;
  -webkit-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.p-slider-works .swiper-button-next {
  left: calc(100% - 28px);
  right: unset;
}
@media screen and (max-width: 960px) {
  .p-slider-works .swiper-button-next {
    left: calc(100% - 40px);
  }
}
.p-slider-works .swiper-button-next::after {
  margin-right: 4px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}
/*------ スライダー非活性時 -------*/
.p-slider-works.swiper:not(.swiper-initialized) {
  padding: 0;
}
.p-slider-works.swiper:not(.swiper-initialized) .swiper-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 6%;
  row-gap: 60px;
}
@media screen and (max-width: 960px) {
  .p-slider-works.swiper:not(.swiper-initialized) .swiper-wrapper {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 20px;
    row-gap: 40px;
  }
}
.p-slider-works.swiper:not(.swiper-initialized) .swiper-button-prev, .p-slider-works.swiper:not(.swiper-initialized) .swiper-button-next {
  display: none;
}
/*------ モバイル時カードスタイル -------*/
@media screen and (max-width: 599px) {
  .p-slider-works .p-card-works__body {
    padding: 20px 30px;
  }
  .p-slider-works .p-card-works__foot {
    padding: 20px 30px;
  }
  .p-slider-works .p-card-works__title {
    font-size: 16px;
  }
  .p-slider-works .p-card-works__data {
    font-size: 14px;
  }
  .p-slider-works .c-label-works {
    font-size: 12px;
  }
}
/*--------------------------------
 *  施工事例：詳細 > スイッチギャラリー
--------------------------------*/
.p-slider-gallery__wrapper {
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 60px;
}
@media screen and (max-width: 599px) {
  .p-slider-gallery__wrapper {
    margin-bottom: 40px;
  }
}
.p-slider-gallery {
  overflow: visible;
}
.p-slider-gallery__img {
  display: block;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.p-slider-gallery__img::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 61.804697157%;
}
.p-slider-gallery__img > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-slider-gallery__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-slider-gallery__caption {
  font-size: 16px;
  padding-top: 20px;
  font-weight: 700;
}
@media screen and (max-width: 599px) {
  .p-slider-gallery__caption {
    font-size: 12px;
    padding-top: 15px;
  }
}
.p-slider-gallery__unit {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 8px;
  padding-top: 20px;
}
@media screen and (max-width: 599px) {
  .p-slider-gallery__unit {
    grid-template-columns: repeat(5, 1fr);
    padding-top: 15px;
  }
}
.p-slider-gallery__thumb {
  display: block;
  position: relative;
  overflow: hidden;
  overflow: hidden;
  cursor: pointer;
  transition: 0.8s cubic-bezier(0.2, 1, 0.2, 1);
  border-radius: 4px;
}
.p-slider-gallery__thumb::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 100%;
}
.p-slider-gallery__thumb > * {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-slider-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.p-slider-gallery__thumb:hover {
  transform: scale(0.9);
}
.p-slider-gallery__thumb.is-active {
  transform: scale(0.9);
  opacity: 0.3;
}
.swiper-controller {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding-top: 61.803%;
}
@media screen and (min-width: 961px) {
  .p-slider-gallery .swiper-button-prev, .p-slider-gallery .swiper-button-next {
    display: grid;
    place-content: center;
    padding: 0;
    width: 60px;
    height: 60px;
    background-color: transparent;
  }
  .p-slider-gallery .swiper-button-prev::before, .p-slider-gallery .swiper-button-next::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    opacity: 0.6;
    border-radius: 50%;
    transition: 0.3s;
    box-shadow: 8px 8px 12px rgba(0, 0, 0, 0.1), -8px -8px 12px #fff;
  }
  .p-slider-gallery .swiper-button-prev::after, .p-slider-gallery .swiper-button-next::after {
    position: static;
    border: solid var(--color_text);
    border-width: 2px 2px 0 0;
    width: 10px;
    height: 10px;
  }
  .p-slider-gallery .swiper-button-prev:hover:before, .p-slider-gallery .swiper-button-next:hover:before {
    transform: scale(1.2);
  }
  .p-slider-gallery .swiper-button-prev {
    left: unset;
    right: calc(100% + 30px);
  }
  .p-slider-gallery .swiper-button-prev::after {
    margin-left: 4px;
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  .p-slider-gallery .swiper-button-next {
    left: calc(100% + 30px);
    right: unset;
  }
  .p-slider-gallery .swiper-button-next::after {
    margin-right: 4px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
}
/****** バナー ******/
/*--------------------------------
 *  バナー
--------------------------------*/
.p-banner__unit {
  display: grid;
  grid-template-columns: 100%;
  row-gap: 20px;
}
.p-banner {
  position: relative;
  box-shadow: 5px 5px 15px 0px #EBE1D4;
}
.p-banner__layer {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 2;
}
.p-banner__img, .p-banner__img img {
  display: block;
  width: 100%;
  height: auto;
}
.p-banner__img img {
  transition: 0.3s;
}
/*------ ホバーアクション -------*/
.p-banner__layer:hover ~ .p-banner__img img {
  opacity: 0.6;
}
/****** パンくずリスト ******/
.p-breadcrumb {
  padding-top: 10px !important;
}
.p-breadcrumb__item {
  font-size: 12px;
  font-weight: 400;
  color: currentColor;
}
.p-breadcrumb__item:after {
  width: 12px;
  height: 12px;
}
#breadcrumb .p-breadcrumb__item:after {
  clip-path: polygon(60% 0, 70% 0, 40% 100%, 30% 100%);
  opacity: 0.6;
}
.p-breadcrumb__item .icon-home::before {
  content: none;
}
span.p-breadcrumb__text {
  opacity: 0.6;
}
/****** 絞り込み検索コントローラー ******/
/*--------------------------------
 *  施工事例
--------------------------------*/
.p-ctrl {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 60px;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  .p-ctrl {
    gap: 10px;
    margin-bottom: 40px;
  }
}
.p-ctrl__btn {
  padding: 17px 40px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  border-radius: 3px;
  cursor: pointer;
  transition: 0.3s;
  box-shadow: 2px 2px 4px 0px #FFF, 2px 2px 4px 0px #EBE1D4 inset;
  background-color: transparent;
}
@media screen and (max-width: 960px) {
  .p-ctrl__btn {
    padding: 12px 20px;
    font-size: 12px;
  }
}
.p-ctrl__btn:hover {
  background: #F1EEEA;
}
.p-ctrl__btn.is-active {
  box-shadow: 2px 2px 4px 0px #EBE1D4;
  background-color: #fff !important;
}
/****** 表組 ******/
/*--------------------------------
 *  施工事例：詳細 > 詳細情報
--------------------------------*/
.p-table-works {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  max-width: 720px;
  text-align: left;
  border-top: 1px solid #E4DFDA;
}
.p-table-works__th, .p-table-works__td {
  padding-top: 1em;
  padding-bottom: 1em;
  font-size: 16px;
  line-height: 1.5;
  border-bottom: 1px solid #E4DFDA;
}
@media screen and (max-width: 599px) {
  .p-table-works__th, .p-table-works__td {
    font-size: 14px;
  }
}
.p-table-works__th {
  width: 200px;
  margin-right: 5px;
}
@media screen and (max-width: 599px) {
  .p-table-works__th {
    width: 120px;
  }
}
/* Utility
 * 接頭辞：u-
 * スポットで状態変化させたいmarginなどの補助クラスを定義
======================================*/
/****** マージン ******/
.u-mt0 {
  margin-top: 0px !important;
}
.u-mb0 {
  margin-bottom: 0px !important;
}
.u-mt5 {
  margin-top: 5px !important;
}
.u-mb5 {
  margin-bottom: 5px !important;
}
.u-mt10 {
  margin-top: 10px !important;
}
.u-mb10 {
  margin-bottom: 10px !important;
}
.u-mt15 {
  margin-top: 15px !important;
}
.u-mb15 {
  margin-bottom: 15px !important;
}
.u-mt20 {
  margin-top: 20px !important;
}
.u-mb20 {
  margin-bottom: 20px !important;
}
.u-mt25 {
  margin-top: 25px !important;
}
.u-mb25 {
  margin-bottom: 25px !important;
}
.u-mt30 {
  margin-top: 30px !important;
}
.u-mb30 {
  margin-bottom: 30px !important;
}
.u-mt35 {
  margin-top: 35px !important;
}
.u-mb35 {
  margin-bottom: 35px !important;
}
.u-mt40 {
  margin-top: 40px !important;
}
.u-mb40 {
  margin-bottom: 40px !important;
}
.u-mt45 {
  margin-top: 45px !important;
}
.u-mb45 {
  margin-bottom: 45px !important;
}
.u-mt50 {
  margin-top: 50px !important;
}
.u-mb50 {
  margin-bottom: 50px !important;
}
.u-mt0e {
  margin-top: 0em !important;
}
.u-mb0e {
  margin-bottom: 0em !important;
}
.u-mt0_25e {
  margin-top: 0.25em !important;
}
.u-mb0_25e {
  margin-bottom: 0.25em !important;
}
.u-mt0_5e {
  margin-top: 0.5em !important;
}
.u-mb0_5e {
  margin-bottom: 0.5em !important;
}
.u-mt0_75e {
  margin-top: 0.75em !important;
}
.u-mb0_75e {
  margin-bottom: 0.75em !important;
}
.u-mt1e {
  margin-top: 1em !important;
}
.u-mb1e {
  margin-bottom: 1em !important;
}
.u-mt1_25e {
  margin-top: 1.25em !important;
}
.u-mb1_25e {
  margin-bottom: 1.25em !important;
}
.u-mt1_5e {
  margin-top: 1.5em !important;
}
.u-mb1_5e {
  margin-bottom: 1.5em !important;
}
.u-mt1_75e {
  margin-top: 1.75em !important;
}
.u-mb1_75e {
  margin-bottom: 1.75em !important;
}
.u-mt2e {
  margin-top: 2em !important;
}
.u-mb2e {
  margin-bottom: 2em !important;
}
.u-mt2_25e {
  margin-top: 2.25em !important;
}
.u-mb2_25e {
  margin-bottom: 2.25em !important;
}
.u-mt2_5e {
  margin-top: 2.5em !important;
}
.u-mb2_5e {
  margin-bottom: 2.5em !important;
}
@media screen and (min-width: 961px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .l-mt0e {
    margin-top: 0em !important;
  }
  .l-mb0e {
    margin-bottom: 0em !important;
  }
  .l-mt0_25e {
    margin-top: 0.25em !important;
  }
  .l-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-mt0_5e {
    margin-top: 0.5em !important;
  }
  .l-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-mt0_75e {
    margin-top: 0.75em !important;
  }
  .l-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-mt1e {
    margin-top: 1em !important;
  }
  .l-mb1e {
    margin-bottom: 1em !important;
  }
  .l-mt1_25e {
    margin-top: 1.25em !important;
  }
  .l-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-mt1_5e {
    margin-top: 1.5em !important;
  }
  .l-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-mt1_75e {
    margin-top: 1.75em !important;
  }
  .l-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-mt2e {
    margin-top: 2em !important;
  }
  .l-mb2e {
    margin-bottom: 2em !important;
  }
  .l-mt2_25e {
    margin-top: 2.25em !important;
  }
  .l-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-mt2_5e {
    margin-top: 2.5em !important;
  }
  .l-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .l-mt0 {
    margin-top: 0px !important;
  }
  .l-mb0 {
    margin-bottom: 0px !important;
  }
  .l-mt5 {
    margin-top: 5px !important;
  }
  .l-mb5 {
    margin-bottom: 5px !important;
  }
  .l-mt10 {
    margin-top: 10px !important;
  }
  .l-mb10 {
    margin-bottom: 10px !important;
  }
  .l-mt15 {
    margin-top: 15px !important;
  }
  .l-mb15 {
    margin-bottom: 15px !important;
  }
  .l-mt20 {
    margin-top: 20px !important;
  }
  .l-mb20 {
    margin-bottom: 20px !important;
  }
  .l-mt25 {
    margin-top: 25px !important;
  }
  .l-mb25 {
    margin-bottom: 25px !important;
  }
  .l-mt30 {
    margin-top: 30px !important;
  }
  .l-mb30 {
    margin-bottom: 30px !important;
  }
  .l-mt35 {
    margin-top: 35px !important;
  }
  .l-mb35 {
    margin-bottom: 35px !important;
  }
  .l-mt40 {
    margin-top: 40px !important;
  }
  .l-mb40 {
    margin-bottom: 40px !important;
  }
  .l-mt45 {
    margin-top: 45px !important;
  }
  .l-mb45 {
    margin-bottom: 45px !important;
  }
  .l-mt50 {
    margin-top: 50px !important;
  }
  .l-mb50 {
    margin-bottom: 50px !important;
  }
  .m-mt0e {
    margin-top: 0em !important;
  }
  .m-mb0e {
    margin-bottom: 0em !important;
  }
  .m-mt0_25e {
    margin-top: 0.25em !important;
  }
  .m-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-mt0_5e {
    margin-top: 0.5em !important;
  }
  .m-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-mt0_75e {
    margin-top: 0.75em !important;
  }
  .m-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-mt1e {
    margin-top: 1em !important;
  }
  .m-mb1e {
    margin-bottom: 1em !important;
  }
  .m-mt1_25e {
    margin-top: 1.25em !important;
  }
  .m-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-mt1_5e {
    margin-top: 1.5em !important;
  }
  .m-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-mt1_75e {
    margin-top: 1.75em !important;
  }
  .m-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-mt2e {
    margin-top: 2em !important;
  }
  .m-mb2e {
    margin-bottom: 2em !important;
  }
  .m-mt2_25e {
    margin-top: 2.25em !important;
  }
  .m-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-mt2_5e {
    margin-top: 2.5em !important;
  }
  .m-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 599px) {
  .s-mt0 {
    margin-top: 0px !important;
  }
  .s-mb0 {
    margin-bottom: 0px !important;
  }
  .s-mt5 {
    margin-top: 5px !important;
  }
  .s-mb5 {
    margin-bottom: 5px !important;
  }
  .s-mt10 {
    margin-top: 10px !important;
  }
  .s-mb10 {
    margin-bottom: 10px !important;
  }
  .s-mt15 {
    margin-top: 15px !important;
  }
  .s-mb15 {
    margin-bottom: 15px !important;
  }
  .s-mt20 {
    margin-top: 20px !important;
  }
  .s-mb20 {
    margin-bottom: 20px !important;
  }
  .s-mt25 {
    margin-top: 25px !important;
  }
  .s-mb25 {
    margin-bottom: 25px !important;
  }
  .s-mt30 {
    margin-top: 30px !important;
  }
  .s-mb30 {
    margin-bottom: 30px !important;
  }
  .s-mt35 {
    margin-top: 35px !important;
  }
  .s-mb35 {
    margin-bottom: 35px !important;
  }
  .s-mt40 {
    margin-top: 40px !important;
  }
  .s-mb40 {
    margin-bottom: 40px !important;
  }
  .s-mt45 {
    margin-top: 45px !important;
  }
  .s-mb45 {
    margin-bottom: 45px !important;
  }
  .s-mt50 {
    margin-top: 50px !important;
  }
  .s-mb50 {
    margin-bottom: 50px !important;
  }
  .s-mt0e {
    margin-top: 0em !important;
  }
  .s-mb0e {
    margin-bottom: 0em !important;
  }
  .s-mt0_25e {
    margin-top: 0.25em !important;
  }
  .s-mb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-mt0_5e {
    margin-top: 0.5em !important;
  }
  .s-mb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-mt0_75e {
    margin-top: 0.75em !important;
  }
  .s-mb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-mt1e {
    margin-top: 1em !important;
  }
  .s-mb1e {
    margin-bottom: 1em !important;
  }
  .s-mt1_25e {
    margin-top: 1.25em !important;
  }
  .s-mb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-mt1_5e {
    margin-top: 1.5em !important;
  }
  .s-mb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-mt1_75e {
    margin-top: 1.75em !important;
  }
  .s-mb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-mt2e {
    margin-top: 2em !important;
  }
  .s-mb2e {
    margin-bottom: 2em !important;
  }
  .s-mt2_25e {
    margin-top: 2.25em !important;
  }
  .s-mb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-mt2_5e {
    margin-top: 2.5em !important;
  }
  .s-mb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** パディング ******/
.u-pt0 {
  padding-top: 0px !important;
}
.u-pb0 {
  padding-bottom: 0px !important;
}
.u-pt5 {
  padding-top: 5px !important;
}
.u-pb5 {
  padding-bottom: 5px !important;
}
.u-pt10 {
  padding-top: 10px !important;
}
.u-pb10 {
  padding-bottom: 10px !important;
}
.u-pt15 {
  padding-top: 15px !important;
}
.u-pb15 {
  padding-bottom: 15px !important;
}
.u-pt20 {
  padding-top: 20px !important;
}
.u-pb20 {
  padding-bottom: 20px !important;
}
.u-pt25 {
  padding-top: 25px !important;
}
.u-pb25 {
  padding-bottom: 25px !important;
}
.u-pt30 {
  padding-top: 30px !important;
}
.u-pb30 {
  padding-bottom: 30px !important;
}
.u-pt35 {
  padding-top: 35px !important;
}
.u-pb35 {
  padding-bottom: 35px !important;
}
.u-pt40 {
  padding-top: 40px !important;
}
.u-pb40 {
  padding-bottom: 40px !important;
}
.u-pt45 {
  padding-top: 45px !important;
}
.u-pb45 {
  padding-bottom: 45px !important;
}
.u-pt50 {
  padding-top: 50px !important;
}
.u-pb50 {
  padding-bottom: 50px !important;
}
.u-pt0e {
  margin-top: 0em !important;
}
.u-pb0e {
  margin-bottom: 0em !important;
}
.u-pt0_25e {
  margin-top: 0.25em !important;
}
.u-pb0_25e {
  margin-bottom: 0.25em !important;
}
.u-pt0_5e {
  margin-top: 0.5em !important;
}
.u-pb0_5e {
  margin-bottom: 0.5em !important;
}
.u-pt0_75e {
  margin-top: 0.75em !important;
}
.u-pb0_75e {
  margin-bottom: 0.75em !important;
}
.u-pt1e {
  margin-top: 1em !important;
}
.u-pb1e {
  margin-bottom: 1em !important;
}
.u-pt1_25e {
  margin-top: 1.25em !important;
}
.u-pb1_25e {
  margin-bottom: 1.25em !important;
}
.u-pt1_5e {
  margin-top: 1.5em !important;
}
.u-pb1_5e {
  margin-bottom: 1.5em !important;
}
.u-pt1_75e {
  margin-top: 1.75em !important;
}
.u-pb1_75e {
  margin-bottom: 1.75em !important;
}
.u-pt2e {
  margin-top: 2em !important;
}
.u-pb2e {
  margin-bottom: 2em !important;
}
.u-pt2_25e {
  margin-top: 2.25em !important;
}
.u-pb2_25e {
  margin-bottom: 2.25em !important;
}
.u-pt2_5e {
  margin-top: 2.5em !important;
}
.u-pb2_5e {
  margin-bottom: 2.5em !important;
}
@media screen and (min-width: 961px) {
  .l-pt0 {
    padding-top: 0px !important;
  }
  .l-pb0 {
    padding-bottom: 0px !important;
  }
  .l-pt5 {
    padding-top: 5px !important;
  }
  .l-pb5 {
    padding-bottom: 5px !important;
  }
  .l-pt10 {
    padding-top: 10px !important;
  }
  .l-pb10 {
    padding-bottom: 10px !important;
  }
  .l-pt15 {
    padding-top: 15px !important;
  }
  .l-pb15 {
    padding-bottom: 15px !important;
  }
  .l-pt20 {
    padding-top: 20px !important;
  }
  .l-pb20 {
    padding-bottom: 20px !important;
  }
  .l-pt25 {
    padding-top: 25px !important;
  }
  .l-pb25 {
    padding-bottom: 25px !important;
  }
  .l-pt30 {
    padding-top: 30px !important;
  }
  .l-pb30 {
    padding-bottom: 30px !important;
  }
  .l-pt35 {
    padding-top: 35px !important;
  }
  .l-pb35 {
    padding-bottom: 35px !important;
  }
  .l-pt40 {
    padding-top: 40px !important;
  }
  .l-pb40 {
    padding-bottom: 40px !important;
  }
  .l-pt45 {
    padding-top: 45px !important;
  }
  .l-pb45 {
    padding-bottom: 45px !important;
  }
  .l-pt50 {
    padding-top: 50px !important;
  }
  .l-pb50 {
    padding-bottom: 50px !important;
  }
  .l-pt0e {
    margin-top: 0em !important;
  }
  .l-pb0e {
    margin-bottom: 0em !important;
  }
  .l-pt0_25e {
    margin-top: 0.25em !important;
  }
  .l-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .l-pt0_5e {
    margin-top: 0.5em !important;
  }
  .l-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .l-pt0_75e {
    margin-top: 0.75em !important;
  }
  .l-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .l-pt1e {
    margin-top: 1em !important;
  }
  .l-pb1e {
    margin-bottom: 1em !important;
  }
  .l-pt1_25e {
    margin-top: 1.25em !important;
  }
  .l-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .l-pt1_5e {
    margin-top: 1.5em !important;
  }
  .l-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .l-pt1_75e {
    margin-top: 1.75em !important;
  }
  .l-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .l-pt2e {
    margin-top: 2em !important;
  }
  .l-pb2e {
    margin-bottom: 2em !important;
  }
  .l-pt2_25e {
    margin-top: 2.25em !important;
  }
  .l-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .l-pt2_5e {
    margin-top: 2.5em !important;
  }
  .l-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .m-pt0 {
    padding-top: 0px !important;
  }
  .m-pb0 {
    padding-bottom: 0px !important;
  }
  .m-pt5 {
    padding-top: 5px !important;
  }
  .m-pb5 {
    padding-bottom: 5px !important;
  }
  .m-pt10 {
    padding-top: 10px !important;
  }
  .m-pb10 {
    padding-bottom: 10px !important;
  }
  .m-pt15 {
    padding-top: 15px !important;
  }
  .m-pb15 {
    padding-bottom: 15px !important;
  }
  .m-pt20 {
    padding-top: 20px !important;
  }
  .m-pb20 {
    padding-bottom: 20px !important;
  }
  .m-pt25 {
    padding-top: 25px !important;
  }
  .m-pb25 {
    padding-bottom: 25px !important;
  }
  .m-pt30 {
    padding-top: 30px !important;
  }
  .m-pb30 {
    padding-bottom: 30px !important;
  }
  .m-pt35 {
    padding-top: 35px !important;
  }
  .m-pb35 {
    padding-bottom: 35px !important;
  }
  .m-pt40 {
    padding-top: 40px !important;
  }
  .m-pb40 {
    padding-bottom: 40px !important;
  }
  .m-pt45 {
    padding-top: 45px !important;
  }
  .m-pb45 {
    padding-bottom: 45px !important;
  }
  .m-pt50 {
    padding-top: 50px !important;
  }
  .m-pb50 {
    padding-bottom: 50px !important;
  }
  .m-pt0e {
    margin-top: 0em !important;
  }
  .m-pb0e {
    margin-bottom: 0em !important;
  }
  .m-pt0_25e {
    margin-top: 0.25em !important;
  }
  .m-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .m-pt0_5e {
    margin-top: 0.5em !important;
  }
  .m-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .m-pt0_75e {
    margin-top: 0.75em !important;
  }
  .m-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .m-pt1e {
    margin-top: 1em !important;
  }
  .m-pb1e {
    margin-bottom: 1em !important;
  }
  .m-pt1_25e {
    margin-top: 1.25em !important;
  }
  .m-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .m-pt1_5e {
    margin-top: 1.5em !important;
  }
  .m-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .m-pt1_75e {
    margin-top: 1.75em !important;
  }
  .m-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .m-pt2e {
    margin-top: 2em !important;
  }
  .m-pb2e {
    margin-bottom: 2em !important;
  }
  .m-pt2_25e {
    margin-top: 2.25em !important;
  }
  .m-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .m-pt2_5e {
    margin-top: 2.5em !important;
  }
  .m-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
@media screen and (max-width: 599px) {
  .s-pt0 {
    padding-top: 0px !important;
  }
  .s-pb0 {
    padding-bottom: 0px !important;
  }
  .s-pt5 {
    padding-top: 5px !important;
  }
  .s-pb5 {
    padding-bottom: 5px !important;
  }
  .s-pt10 {
    padding-top: 10px !important;
  }
  .s-pb10 {
    padding-bottom: 10px !important;
  }
  .s-pt15 {
    padding-top: 15px !important;
  }
  .s-pb15 {
    padding-bottom: 15px !important;
  }
  .s-pt20 {
    padding-top: 20px !important;
  }
  .s-pb20 {
    padding-bottom: 20px !important;
  }
  .s-pt25 {
    padding-top: 25px !important;
  }
  .s-pb25 {
    padding-bottom: 25px !important;
  }
  .s-pt30 {
    padding-top: 30px !important;
  }
  .s-pb30 {
    padding-bottom: 30px !important;
  }
  .s-pt35 {
    padding-top: 35px !important;
  }
  .s-pb35 {
    padding-bottom: 35px !important;
  }
  .s-pt40 {
    padding-top: 40px !important;
  }
  .s-pb40 {
    padding-bottom: 40px !important;
  }
  .s-pt45 {
    padding-top: 45px !important;
  }
  .s-pb45 {
    padding-bottom: 45px !important;
  }
  .s-pt50 {
    padding-top: 50px !important;
  }
  .s-pb50 {
    padding-bottom: 50px !important;
  }
  .s-pt0e {
    margin-top: 0em !important;
  }
  .s-pb0e {
    margin-bottom: 0em !important;
  }
  .s-pt0_25e {
    margin-top: 0.25em !important;
  }
  .s-pb0_25e {
    margin-bottom: 0.25em !important;
  }
  .s-pt0_5e {
    margin-top: 0.5em !important;
  }
  .s-pb0_5e {
    margin-bottom: 0.5em !important;
  }
  .s-pt0_75e {
    margin-top: 0.75em !important;
  }
  .s-pb0_75e {
    margin-bottom: 0.75em !important;
  }
  .s-pt1e {
    margin-top: 1em !important;
  }
  .s-pb1e {
    margin-bottom: 1em !important;
  }
  .s-pt1_25e {
    margin-top: 1.25em !important;
  }
  .s-pb1_25e {
    margin-bottom: 1.25em !important;
  }
  .s-pt1_5e {
    margin-top: 1.5em !important;
  }
  .s-pb1_5e {
    margin-bottom: 1.5em !important;
  }
  .s-pt1_75e {
    margin-top: 1.75em !important;
  }
  .s-pb1_75e {
    margin-bottom: 1.75em !important;
  }
  .s-pt2e {
    margin-top: 2em !important;
  }
  .s-pb2e {
    margin-bottom: 2em !important;
  }
  .s-pt2_25e {
    margin-top: 2.25em !important;
  }
  .s-pb2_25e {
    margin-bottom: 2.25em !important;
  }
  .s-pt2_5e {
    margin-top: 2.5em !important;
  }
  .s-pb2_5e {
    margin-bottom: 2.5em !important;
  }
}
/****** その他 ******/
/*--------------------------------
 *  デバイス別 表示/非表示
 *  sm　：スマートフォン幅、モバイル幅のみ表示
 *  md　：タブレット幅のみ表示
 *  lg　：PC幅のみ表示
 *  mdlg：デスクトップ幅のみ表示
--------------------------------*/
@media screen and (min-width: 961px) {
  .md {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
  .smmd {
    display: none !important;
  }
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .lg {
    display: none !important;
  }
  .sm {
    display: none !important;
  }
}
@media screen and (max-width: 599px) {
  .lg {
    display: none !important;
  }
  .md {
    display: none !important;
  }
  .mdlg {
    display: none !important;
  }
}
/*--------------------------------
 *  フロート・クリアフィックス
--------------------------------*/
.clearfix::after {
  display: block;
  content: "";
  clear: both;
}
/*--------------------------------
 *  WPブロックエディター
--------------------------------*/
h3.wp-block-heading:not(.is-style-section_ttl) {
  font-family: inherit;
  color: var(--color_main);
}
h4.wp-block-heading:not(.is-style-section_ttl) {
  font-family: inherit;
  color: #777;
}
.wp-block-media-text.is-style-default .wp-block-media-text__media img {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
}
.embed-google-map {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1), 0 4px 8px -4px rgba(0, 0, 0, 0.2);
}
/*--------------------------------
 *  その他
--------------------------------*/
@media screen and (max-width: 599px) {
  .sm-ta-l {
    text-align: left !important;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22http%3A%2F%2Ffujisanj.local%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Ffoundation%2F_var.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fstyle.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Ffoundation%2F_base.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Ffoundation%2F_mixin.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Flayout%2F_header.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Flayout%2F_footer.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Flayout%2F_content.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Flayout%2F_sect.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Flayout%2F_cta.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Flayout%2F_topTitleArea.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fcomponent%2F_heading.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fcomponent%2F_label.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fcomponent%2F_btn.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fcomponent%2F_siteLogo.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fcomponent%2F_ticker.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_card.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_nav.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_form.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_spMenu.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_slider.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_banner.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_breadcrumb.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_ctrl.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Fobject%2Fproject%2F_table.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Futility%2F_margin.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Futility%2F_padding.scss%22%2C%22wp-content%2Fthemes%2Ffujisan-j%2Fscss%2Futility%2F_other.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAqCA%3BAACA%3BACtCA%3BAAAA%3BAAAA%3BADkDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAClDA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3B%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACAA%3BAAAA%3BAAAA%3BACgEQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADtDR%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BADdA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAGCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAHDA%3BAAAA%3BAAAA%3BAGWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADiCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BACpBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAHvDA%3BAIAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFqDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAExCR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFsCI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAE9BJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF8BI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEjBJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAFXQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEoBJ%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFzBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEoCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFpCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF3DR%3BAKCA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAHuCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAG%2FBR%3BAAAA%3BAAAA%3BALbA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAMIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJwCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI9BR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ6CQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAfA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIjBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ2BQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAVA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIaJ%3BAAAA%3BAAAA%3BAAAA%3BAJbI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIsBJ%3BAAAA%3BAAAA%3BAAAA%3BAJtBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAM8EA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJjCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAALA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIwDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJzCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAfA%3BAIqEA%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJzEQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIwFR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ%2FFQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI2GR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMO%3BAAAA%3BAAAA%3BAA3HA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI4HR%3BAAAA%3BAAAA%3BAJ5HQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF3DR%3BAM%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAJxJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIiKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAN7MA%3BAMoNA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJxKQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAImLR%3BAAAA%3BAAAA%3BAAAA%3BAJnLQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI2LR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ5KQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAfA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI2MR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ5LQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIwMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ9NQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIyOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANrRA%3BAM4RA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAJpPQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI6PR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANzSA%3BAMgTA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJpSQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAImTR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJpSQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI%2BSR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJzQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAApEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIiVR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ7MC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMO%3BAAAA%3BAAAA%3BAA3HA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI4UR%3BAAAA%3BAAAA%3BANvYA%3BAM4YA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJhWQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIgXR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJjWQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAfA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIgYR%3BAAAA%3BAAAA%3BAAAA%3BAJhYQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIwYR%3BAAAA%3BAAAA%3BANpbA%3BAMybA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ7YQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIwZR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJxZQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIwaR%3BAAAA%3BAAAA%3BAJxaQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BAM8dA%3BAAAA%3BAAAA%3BAJlbQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIybR%3BAAAA%3BAAAA%3BAJzbQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIgcR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJhcQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIycR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJzcQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAIkdR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJldQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAI2dR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAJ3dQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAOAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL2DQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK5CR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL4CQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKnCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALmCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKpBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALoBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BALtBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAK8BJ%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAL7CQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAKuDR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAP1GA%3BAQAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAN4CQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAM7BR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BANqBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPyCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BASuBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPqBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BASoCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAPQQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BASsDA%3BAAAA%3BAAAA%3BATtDA%3BAAAA%3BAAAA%3BAAAA%3BAUGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAVdJ%3BAAAA%3BAAAA%3BAUsBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAVtBA%3BAAAA%3BAAAA%3BAU0CA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BARJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAQuBR%3BAAAA%3BAAAA%3BAVnEA%3BAAAA%3BAAAA%3BAAAA%3BAWGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAXtDA%3BAW2DA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAX7DJ%3BAAAA%3BAAAA%3BAWqEA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAXvFA%3BAWmGA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAXrGJ%3BAAAA%3BAAAA%3BAW6GA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATlDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASuER%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAX3JA%3BAWgKA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAXlKJ%3BAAAA%3BAAAA%3BAW0KA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAXhNR%3BAWwNI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAX%2FNJ%3BAAAA%3BAAAA%3BAWwOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAT5LQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAS0MR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAT1MQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAoBA%3BASyMA%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATnOQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BASkPR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BATlPQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BAAAA%3BAYGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAV8BQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAaAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAX4CQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAW9BR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAXkBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAWVR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAACI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAACI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAbrDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZqCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYzBR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZeI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYLR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZMQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYSJ%3BAAAA%3BAAAA%3BAdpEJ%3BAAAA%3BAAAA%3BAc6EA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZrCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAY%2BCR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIE%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAd3GA%3BAAAA%3BAAAA%3BAcoHA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAd7HA%3BAAAA%3BAAAA%3BAcsIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZ3EQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYuFR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZpEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYyDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZnIQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAY8IR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZ9IQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYuJR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZvJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYsKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZtKQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAY6KP%3BAAAA%3BAAAA%3BAdzND%3BAc%2BNA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAdjOJ%3BAcwOC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAdhPD%3BAAAA%3BAAAA%3BAcwPA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZvMQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAALA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAY0NR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZ3KI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAApEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYwOR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZxOQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYoPR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZpPQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BAc6SA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZ5PQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAALA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAYuRR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAZvRQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAY%2BSR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAZ7TQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAEsDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAFtDR%3BAAAA%3BAAAA%3BAAAA%3BAeGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAf%2FBA%3BAAAA%3BAAAA%3BAeuCA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAbUQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAaIR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAbpBO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAa4BR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAfhHA%3BAAAA%3BAAAA%3BAeuHA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAftJA%3BAAAA%3BAAAA%3BAAAA%3BAgBGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAdoBM%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcXN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdWM%3BAcKN%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAd1BO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcoCP%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAhB%2FHD%3BAAAA%3BAAAA%3BAgBwIA%3BAAAA%3BAAAA%3BAd5FQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAcmGR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAdtIO%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BAgB%2BLA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAhB%2FMJ%3BAiBAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAjBhCA%3BAkBAA%3BAAAA%3BAAAA%3BAAAA%3BAlBAA%3BAAAA%3BAAAA%3BAkBQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhBoCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBpBR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAlBnCA%3BAAAA%3BAAAA%3BAkB0CA%3BAAAA%3BAAAA%3BAhBiBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBTR%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhBAQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBYJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAhBrCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgB2CJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAhBlDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBwDJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBnHJ%3BAkB2HA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhBlEI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgB6EJ%3BAAAA%3BAAAA%3BAlBxIJ%3BAE4CQ%3BAgBqGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAlB7JR%3BAAAA%3BAAAA%3BAkBsKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhB1HQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBoIR%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhBnFI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgByEJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhB7IQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBuJR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhBvJQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBkKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhB7GI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQG%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAgBsGJ%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAhBzKQ%3BAgBkLJ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAlBvRR%3BAAAA%3BAAAA%3BAAAA%3BAmBGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAnBzBA%3BAmB%2BBI%3BAAAA%3BAAAA%3BAnB%2FBJ%3BAoBAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BApBxBA%3BAAAA%3BAAAA%3BAAAA%3BAqBGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnBwDQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmB1CR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAnB0CQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAmB1BR%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BArBrCA%3BAAAA%3BAAAA%3BAAAA%3BAsBGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BApBgCQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAoBpBR%3BAAAA%3BAAAA%3BAAAA%3BApBoBQ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAF5CR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAuBSQ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BArBgCA%3BAqBpBI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BArBIJ%3BAqBSI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BArBzBJ%3BAqBsCI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAvB7FZ%3BAwBSQ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAtBgCA%3BAsBlBI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAtBAJ%3BAsBcI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAtB%2FBJ%3BAsB8CI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAADA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAxBtGZ%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAEsDQ%3BAuB9CJ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAvBuCI%3BAuBnCJ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAvB6BI%3BAuBzBJ%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAzBrBJ%3BAAAA%3BAAAA%3BAyB2BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAzB3BA%3BAAAA%3BAAAA%3BAyBwCA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAKJ%3BAAAA%3BAAAA%3BAzBtDA%3BAAAA%3BAAAA%3BAE4CQ%3BAuBkBP%3BAAAA%3BAAAA%3BAAAA%22%7D */