@charset "utf-8";
/*
Theme Name: Lightning Child
Template: lightning
Author:アートフレア株式会社
Version: 1.2
*/
/* 標準データ最終更新日：2025/04/14  */
/*
 * WEBフォントの読み込み（@import url('https://fonts～'); ）はHeader.phpで行う
*/
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  General　全体的な設定
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* :root設定、bodyへの上書き、カラー変数設定など */ :root {
  --vk-heading-has-background-padding: 0.4em 0.7em 0.5em;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Common 汎用パーツ系
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*PCでは非表示・スマホでは表示*/
.pc-hidden{
  display: none;
}
/* 繰り返しボタン・見出し、余白設計など 汎用パーツへの上書き */
h2 {
  font-size: 2rem;
}
/*見出し>逆順テキストの調整*/
.is-style-af-heading-reverse .vk_heading_subtext {
  line-height: 1.2em;
  margin-bottom: 0;
  font-weight: 600;
  text-transform: uppercase;
}
/*番号付き見出し*/
.heading-has-number mark {
  font-size: 3rem;
  background: none;
  color: var(--vk-color-primary);
  font-weight: 500;
  line-height: 1.2em;
  display: block;
}
/*見出し上下線あり プライマリーカラー*/
.heading-border-top {
  border-top: 2px solid var(--vk-color-primary);
  border-bottom: 1px solid #ddd;
  padding: .8em 0;
}
/*中央寄せ*/
.is-style-vkp-heading-diagonal-line {
  display: flex;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  border: 0;
}
/*短い左右線*/
.is-style-vkp-heading-diagonal-line::before, .is-style-vkp-heading-diagonal-line::after {
  content: '';
  width: 50px;
  height: 1px;
  background-color: currentColor !important;
  position: unset;
  border: unset;
  margin-left: unset;
  margin-right: unset;
  flex-grow: unset;
}
.is-style-vkp-heading-diagonal-line::before {
  margin-right: 10px;
  transform: rotate(70deg);
}
.is-style-vkp-heading-diagonal-line::after {
  margin-left: 10px;
  transform: rotate(-70deg);
}
/*背景色ありの見出し角丸を消す*/
.is-style-vk-heading-background_fill_lightgray, .editor-styles-wrapper .block-editor-block-list__layout .is-style-vk-heading-background_fill_lightgray {
  border-radius: 0 !important;
}
/*横幅テキストに合わせる*/
.width-fit {
  width: fit-content;
}
/*3カラムのリスト*/
ul.col3-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 !important;
  padding: 0 !important;
}
.col3-list li {
  width: 33.3333%;
  box-sizing: border-box;
  padding: 0 25px !important;
  margin: 0 0 10px 0 !important;
  position: relative !important;
}
.col3-list li::before {
  position: absolute;
  left: 0 !important;
  top: 0 !important;
}
/*ボタン*/
.vk_button .vk_button_link.btn, .editor-styles-wrapper .vk_button .vk_button_link.btn {
  padding: 1em 2em;
  border-radius: 50px;
}
/*ボタン >　ホバーの下線を消す*/
.vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_txt, .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_subCaption, .editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_txt, .editor-styles-wrapper .vk_button .has-text-color.vk_button_link-type-text:hover .vk_button_link_subCaption {
  text-decoration: none !important;
}
/*ボタン > フォント太さ*/
.vk_button .vk_button_link_caption, .editor-styles-wrapper .vk_button .vk_button_link_caption {
  word-break: initial;
  font-weight: 500;
}
/*ボタンホバー*/
.vk_button_link_caption, .vk_button_link_subCaption {
  z-index: 3 !important;
  position: relative;
}
.vk_button a {
  position: relative;
}
.vk_button a:hover {
  opacity: 1;
  box-shadow: none;
}
.vk_button a {
  border: medium none;
  overflow: hidden;
}
.vk_button a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  background: #fff;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
  opacity: 0;
}
.vk_button a:hover::before {
  opacity: 0.3;
}
.vk_button a:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.vk_button .vk_button_link-type-text::before {
  display: none;
}
/*ボタンホバーの影を消す*/
.vk_button-color-custom a:hover, .editor-styles-wrapper .vk_button-color-custom a:hover {
  box-shadow: none !important;
}
/*ボタンアイコン拡大*/
.vk_button .vk_button_link-type-text:hover i {
  transform: scale(1.2);
  transition: all 0.3s ease-in-out;
}
.vk_button .vk_button_link i {
  transition: all 0.3s ease-in-out;
}
.vk_button .btn:hover i {
  transform: scale(1.2);
}
/*ボタン下線あり*/
.btn-underline .vk_button_link {
  padding: 0 0 10px 0 !important;
  border-bottom: 2px solid
}
.btn-underline:hover .vk_button_link {
  padding: 0 0 10px 0 !important;
}
.btn-underline .vk_button_link::after {
  display: none;
}
.btn-underline .vk_button_link_txt, .btn-underline i {
  transition: .6s;
}
.btn-underline:hover .vk_button_link_txt {
  transform: translate(5px, 0);
}
/*画像ホバーズームイン*/
figure.hover-move, .hover-move figure, .wp-block-cover.hover-move {
  overflow: visible;
}
.hover-move:hover img {
  transform: scale(1.1);
  transition: .6s;
}
.hover-move img {
  transition: .6s;
}
/* リンクエリア拡大 */
.stretched-linkitem {
  position: relative !important;
}
.stretched-linkitem a::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  pointer-events: auto;
  content: "";
  background-color: rgba(0, 0, 0, 0);
}
.stretched-linkitem h2, h3, h4, h5, h6 {
  position: unset !important;
}
.stretched-linkitem a {
  text-decoration: none;
  color: #111;
}
.stretched-linkitem img {
  transition: .6s;
}
.stretched-linkitem:hover img {
  transform: scale(1.1);
  transition: .6s;
}
.stretched-linkitem a:hover {
  color: var(--vk-color-primary);
}
/*グリッドカラムカード hoverの透過を消す*/
.vk_gridcolcard_item a.vk_gridcolcard_item_container:hover {
  opacity: 1;
}
/*テーブルのフォントサイズリセット*/ :where(:not(.wp-block-table)) > table :is(th, td) {
  font-size: unset !important;
}
/*余白調整*/
.gap-none {
  gap: 0;
}
.gap-4em {
  gap: 4em;
}
.gap-3em {
  gap: 3em;
}
.gap-2em {
  gap: 2em;
}
.padding-none {
  padding: 0 !important;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Header ヘッダーまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
.site-header {
  box-shadow: none;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  background-color: rgba(255, 255, 255, 0.7);
}
.site-header .container {
  max-width: 100%;
  width: 100%;
  padding: 1em;
  position: relative;
}
/* ヘッダー固定 */
body {
  overflow-x: unset !important;
  display: flex;
  flex-direction: column;
}
.device-pc #site-header {
  position: sticky;
  top: 0;
}
.logged-in.device-pc #site-header {
  top: 32px;
}
/* HOMEだけFVに透過にする */
.home header#site-header {
  position: fixed;
  transition: .5s;
}
.home:not(.device-pc.scrolled) header#site-header {
  background-color: transparent;
  backdrop-filter: none;
  box-shadow: none;
}
/* グローバルナビ */
.global-nav{
	margin-right: 20px;
}
.global-nav-list > li .global-nav-name {
  font-size: 1rem!important;
}
.global-nav-list > li > a {
  transition: .3s;
  border-bottom: 3px solid transparent;
}
.global-nav-list > li > a:hover, .global-nav-list > li.current-menu-item > a {
  color: var(--vk-color-primary);
  border-bottom: 3px solid var(--vk-color-primary);
}
/*ヘッダーボタンのサイズ指定*/
.head-btn .btn {
  min-width: 150px;
  border-radius: 5px !important;
  padding: .7em !important;
}
/*リンク先のないリンクの誤操作防止*/
nav a[href="#"] {
    pointer-events: none;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Footer フッターまわり
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* フッターウィジェット、フッターロゴ、コピーライト */
.foot-sitemap {
  margin: 0;
  padding: 0;
}
.foot-sitemap p {
  font-size: .9rem;
  line-height: 1.4em;
  margin: 10px 0 0 0;
}
.foot-sitemap ul {
  margin: 0 !important;
  padding: 0 !important;
}
.foot-sitemap li {
  display: flex;
  align-items: center;
  list-style: none;
  font-size: .8rem;
  line-height: 1.4em;
  margin: 5px 0 !important;
  gap: 0.5em;
}
.foot-sitemap li::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 1px;
  background-color: #fff;
}
.foot-sitemap a{
  text-decoration: none;
}
.foot-sitemap a:hover{
	text-decoration:underline;
}
.site-footer-copyright p {
  text-align: right!important;
}
.link-btn a{
  text-decoration: none !important;
}
.link-btn a:hover{
  text-decoration: underline !important;
}
.link-btn a::after{
  content: "";
  display: inline-block;
  width: 20px;
  height: 10px;
  background-image: url("http://artflair8.xsrv.jp/yd08/eventlab/wp-content/uploads/icon_blank.png");
  background-repeat: no-repeat;
  background-position: left top;
  background-size: contain;
  margin-left: 10px;
}
.site-footer-copyright{
	display: none;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Toppage トップページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */
/*FVのボタン*/
.fv-btn .btn {
  box-shadow: 0 0 8px 0px #bbbbbb;
  border-radius: 5px !important;
}
/*斜めの背景*/
.bg-trapezoid::before, .bg-trapezoid::after {
  content: "";
  display: inline-block;
  position: absolute;
  width: 200%;
  height: 60%;
  z-index: 0;
}
.bg-trapezoid::before {
  top: -30%;
  left: -50%;
  transform: rotate(-10deg);
  background-color: #f1f7fa;
}
.bg-trapezoid::after {
  bottom: -30%;
  left: -50%;
  transform: rotate(10deg);
  background-color: #f8fbfc;
}
.bg-trapezoid > * {
  position: relative;
  z-index: 1; /* コンテンツは帯の上に表示される */
}
/* TOP サービスタブ */
@media (min-width: 992px) { /*992以下の場合*/
  .top-tabs {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 2em;
  }
  /* TOPタブ・ラベル */
  .top-tabs ul.vk_tab_labels {
    display: flex;
    flex-direction: column;
  }
  .top-tabs li.vk_tab_labels_label div {
    font-size: 1.1rem;
    font-weight: 600;
    line-height: 1;
    padding: 0;
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1em;
  }
  .top-tabs li.vk_tab_labels_label div img {
    width: 50px !important;
    margin: 0;
    transition: .6s;
  }
  .top-tabs li.vk_tab_labels_label {
    text-align: left;
    margin: 0;
    border-radius: 0;
    border-bottom: 1px solid #ddd;
  }
  .top-tabs li.vk_tab_labels_label:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    content: "\f105";
    display: inline-block;
    position: absolute;
    right: 20px;
    top: calc(50% - 12px);
  }
  .top-tabs .vk_tab_labels_label, .top-tabs #vk_tab_labels, .top-tabs .vk_tab_labels_label-state-inactive {
    background-color: var(--vk-color-custom-1) !important;
    opacity: 1 !important;
  }
  .top-tabs .hovered-temp-active:hover, .top-tabs .label-state-active, .top-tabs .vk_tab_labels_label:hover, .top-tabs .vk_tab_labels_label-state-active {
    background-color: var(--vk-color-custom-1) !important;
    color: #fff !important;
    opacity: 1 !important;
  }
  .top-tabs li.vk_tab_labels_label:hover div img, .top-tabs .vk_tab_labels_label-state-active img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
    transition: .6s;
  }
  :root {
    --vk-color-bg-inactive: rgba(255, 255, 255, 0) !important;
  }
  /* TOPタブ・コンテンツ */
  .top-tabs .vk_tab_bodys .vk_tab_bodys_body {
    border-top: none !important;
  }
}
/*はみ出すスライダー*/
.work-slider {
  width: calc((100% + (100vw - 100%) / 2) - 10px);
}
.vk_slider_item-paddingLR-use {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 0 !important;
}
.swiper-pagination-bullet {
  width: 10px !important;
  height: 10px !important;
  border-radius: 50px !important;
}
.vk_slider .swiper-button-next, .vk_slider .swiper-button-prev {
  background-color: #111 !important;
  border-radius: 50px !important;
}
.vk_slider .swiper-button-next {
  left: 63% !important;
}
.swiper-button-next::after, .swiper-button-prev::after {
  color: #fff !important;
  font-size: .8rem !important;
}
/*導入事例 > タグリスト*/
ul.tag-list {
  display: flex;
  margin: 0 0 10px 0 !important;
  padding: 0 !important;
  flex-wrap: wrap;
  gap: .2em;
}
ul.tag-list li {
  font-size: .7rem;
  background-color: #b4b4b4;
  color: #fff;
  list-style: none;
  padding: .5em;
  line-height: 1em;
  margin: 0;
}
/*よくあるご質問*/
.is-style-vk_faq-bgfill-circle .vk_faq_title::before, .is-style-vk_faq-bgfill-square .vk_faq_title::before, .is-style-vk_faq-bgfill-rounded .vk_faq_title::before {
  background-color: var(--vk-color-primary) !important;
}
.is-style-vk_faq-bgfill-circle .vk_faq_content::before, .is-style-vk_faq-bgfill-square .vk_faq_content::before, .is-style-vk_faq-bgfill-rounded .vk_faq_content::before {
  background-color: var(--vk-color-custom-2) !important;
}
.vk_faq .vk_faq_title p {
  font-weight: 500;
}
.vk_faq .vk_faq_content p {
  font-weight: 500;
}
/*ctaのボタン*/
.cta{
  width: 700px;
  margin: 0 auto;
}
.cta-btn .btn {
  box-shadow: 0 0 8px 0px #333;
  border-radius: 5px !important;
  padding: 1.5em !important;
  width: 300px;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Pageheader, Breadcrumb 下層ページヘッダー・パンくずリスト
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* 下層ページのページヘッダー、パンクズ設定 */
.page-header .page-header-inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
  letter-spacing: .08em;
}
.page-header-subtext{
  font-weight: 700;
  color: var(--vk-color-primary);
  margin: 0 0 5px 0;
  font-size: 1.1rem;
}
/*パンくず*/
.breadcrumb {
  font-size:12px;
  position: relative;
  z-index: 1;
  top: -30px;
  left: 0;
  background-color: var(--vk-color-primary);
  width: fit-content;
  color: var(--vk-color-custom-4) !important;
}
.breadcrumb .container{
  max-width: 100%;
}
.breadcrumb a{
  color: #fff;
  text-decoration: none !important;
}
.breadcrumb a:hover{
	 color: var(--vk-color-custom-4) !important;
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Page 下層ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* ページごと、パーツごとにコメントアウトで注釈を入れてください。 */
/*機能一覧*/
.function-list .vk_gridcolcard_item {
  box-shadow: 0px 0px 15px -5px #bbb;
  margin-bottom: 2em;
}
.function-list-title{
  gap: 1em;
  padding-bottom: .8em;
  margin-bottom: .8em;
  border-bottom: 1px solid #ddd;
}
.function-list-title .wp-block-heading{
  font-size: 1.1rem;
}
.function-list-title img{
  width: 60px !important;
  background-color: var(--vk-color-custom-4);
  padding: .5em;
  border-radius: 10px;
  margin: 0;
}
.function-list .vk_gridcolcard_item p{
  margin: 0;
}
/*アンカーリンク*/
.anchor-grid .vk_gridcolcard_item_container{
  transition: transform 0.6s ease;
}
.anchor-grid .vk_gridcolcard_item_container:hover{
  transform: translateY(10px);
  transition: transform 0.6s ease;
}
.anchor-grid .wp-block-image figure{
  margin-bottom: 0;
}
/*導入事例 >グリッドカラムのレイアウト*/
.grid-item .vk_gridcolcard_item {
  box-shadow: 0px 0px 15px -5px #bbb;
  margin-bottom: 2em;
}
/* スクロール固定Column */
.position-sticky-wrap {
  overflow: visible !important;
}
.device-pc .wp-block-column.position-sticky-column {
  position: sticky;
  top: 130px;
  align-self: flex-start;
}
/*活用シーン > サイドメニュー*/
.side-title{
  font-size: 1.2rem;
  border-bottom: 1px solid #ddd;
  padding: 0 0 15px 0;
}
ul.side-menu{
  margin: 0 0 30px 0;
  padding: 0;
}
ul.side-menu li{
  list-style: none;
  transition: transform 0.6s ease;
  position: relative;
  color: #333;
}
ul.side-menu li a{
  color: #333;
  text-decoration: none;
  padding:.5em 1em .5em 1em;
  display: block;
}
ul.side-menu li a:hover{
  background-color: var(--vk-color-custom-4);
  color: var(--vk-color-primary);
  transition: transform 0.6s ease;
}
ul.side-menu li.active{
  background-color: var(--vk-color-custom-4);
  padding:.5em 1em .5em 1em;
  color: var(--vk-color-primary);
}
/*活用シーン > 背面の数字*/
.hide-number {
  margin: 0;
  font-size: 12rem;
  position: absolute;
  right: 0;
  bottom: 0;
  line-height: 1em;
  opacity: .2;
  z-index: -1;
}
/*お問い合わせ*/
.scroll-box {
  padding: 0 2em;
  height: 300px;
  overflow: auto;
  text-align: left;
}
.smf-radio-buttons-control--horizontal .smf-radio-buttons-control__control,
.smf-checkboxes-control--horizontal .smf-checkboxes-control__control {
    gap: 0.5rem;
}
.smf-checkboxes-control__control .smf-label{
    flex: 1 1 calc(33.333% - 0.5em);
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Archive　ブログ一覧ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/*投稿リスト・テキストタイプ*/
.vk_posts-layout-postListText .vk_post{
    padding: 1rem .8em !important;
    border-bottom: 1px solid #ddd;
}
.vk_posts-layout-postListText .vk_post:hover{
    background-color: #f9f9f9 !important;
}
.vk_posts-layout-postListText .vk_post a{
    text-decoration: none;
}
.postListText_singleTermLabel_inner {
    border-radius: 0 !important;
}
/*投稿リスト > 枠あり*/
.card-body {
  padding: 1rem 0 0 0 !important;
}
.vk_post {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.vk_posts .vk_post-col-xl-4 {
    width: calc(33.3% - 20px);
  }
.vk_post.card {
  padding: 0;
  margin-bottom: 20px;
}
/*投稿サイドメニュー*/
.sub-section .sub-section-title, .site-body-bottom .sub-section-title {
  padding: .8em;
  background-color:#f5f5f5;
}
.veu_postList .postList_title {
  font-size: .9rem;
}
.veu_postList .postList a:hover {
  text-decoration: none;
}
.sub-section .widget_archive > ul li a, .sub-section .widget_nav_menu > ul li a {
  border: none;
  padding: 1em 0;
  color: unset;
}
.sub-section .widget_archive > ul li:not(:last-child), .sub-section .widget_nav_menu > ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}
.localNavi {
  border-bottom: 1px solid #eee;
}
.localNavi > li {
  position: relative;
  padding-left: 20px;
}
.localNavi li::before {
  position: absolute;
  content: '\f0da';
  font-family: 'Font Awesome 5 Free';
  font-weight: 600;
  padding-right: .2em;
  left: 0;
  top: 18px;
  font-size: .9rem;
  color: #999;
}
.localNavi li a:hover {
  text-decoration: none !important;
}
.sub-section .widget_archive > ul li a:hover, .sub-section .widget_nav_menu > ul li a:hover {
  text-decoration: underline;
  background: none;
}
.sub-section .widget_nav_menu ul.children {
  border-top: 1px solid #eee;
}
.sub-section .widget_nav_menu ul.children a {
  padding-left: 1em;
}
.sub-section ul li.current-cat a {
  background-color: transparent !important;
}
.entry-header .entry-title, .archive-header-title {
  margin-bottom: var(--vk-margin-meta);
  font-size: 2rem;
  position: relative;
  z-index: 0;
  padding: .8em 0;
}
.entry-header .entry-title::before, .archive-header-title::before {
  content: "";
  display: inline-block;
  width: 50px;
  height: 2px;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--vk-color-primary);
}
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  Single　ブログ詳細ページ
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */
/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝
 *  その他・追加機能
 * ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */
/* パーツごとにコメントアウトで注釈を入れてください。 */