@charset "UTF-8";
/* stylelint-disable value-keyword-case */
/* ------------------------------
　　ベース
------------------------------ */
html {
  line-height: 1.5;
}

body {
  color: #000;
  font-family: "Zen Kaku Gothic New", sans-serif;
  background: #fff;
}
body {
  font-size: 14px;
}
@media print {
  body {
    font-size: 14px;
  }
}

/* リンクの設定 */
a {
  color: #333;
  text-decoration: none;
  border: none;
}

a:visited {
  color: #333;
  text-decoration: none;
}

a:active {
  color: #CB3DFE;
  text-decoration: none;
}

a:hover {
  color: #CB3DFE;
  text-decoration: none;
}

/* コンテナー */
.acms-container {
  max-width: 1140px;
  padding-right: 10px;
  padding-left: 10px;
  padding-right: calc(10px + constant(safe-area-inset-right));
  padding-left: calc(10px + constant(safe-area-inset-left));
}
.acms-container .acms-container {
  padding: 0;
}

.narrow-container {
  max-width: 960px;
  margin: 0 auto;
  padding-right: 10px;
  padding-left: 10px;
  padding-right: calc(10px + constant(safe-area-inset-right));
  padding-left: calc(10px + constant(safe-area-inset-left));
}

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

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before,
.slick-track:after {
  display: table;
  content: "";
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}

[dir=rtl] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* ------------------------------
　　アニメーション
------------------------------ */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  20% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeUp {
  0% {
    transform: translate(0, 20px);
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
.js .js-animation .section-heading,
.js .js-animation .container-group,
.js .js-animation .entry-heading-center {
  transform: translate(0, 20px);
  opacity: 0;
  transition: opacity 0.2s ease-out, transform 0.4s ease-out;
}
.js .js-animation .module-group-list,
.js .js-animation .entry-column,
.js .js-animation .module-section,
.js .js-animation .suggest-center-box,
.js .js-animation .suggest-center-item,
.js .js-animation .process-center-box,
.js .js-animation .product-center-box,
.js .js-animation .slider_logo {
  transform: translate(0, 20px);
  opacity: 0;
  transition: opacity 0.2s ease-out 0.4s, transform 0.4s ease-out 0.4s;
}
.js .js-animation .main-slider-text-wrap {
  transform: translate(0, 20px);
  opacity: 0;
  transition: opacity 0.2s ease-out 0.6s, transform 0.4s ease-out 0.6s;
}

.js-animation.is-show .section-heading,
.js-animation.is-show .container-group,
.js-animation.is-show .entry-heading-center {
  transform: translate(0);
  opacity: 1;
}
.js-animation.is-show .module-group-list,
.js-animation.is-show .entry-column,
.js-animation.is-show .module-section,
.js-animation.is-show .suggest-center-box,
.js-animation.is-show .suggest-center-item,
.js-animation.is-show .process-center-box,
.js-animation.is-show .product-center-box,
.js-animation.is-show .slider_logo {
  transform: translate(0);
  opacity: 1;
}
.js-animation.is-show .main-slider-text-wrap {
  transform: translate(0);
  opacity: 1;
}

@media print {
  .js .js-animation .section-heading,
  .js .js-animation .container-group,
  .js .js-animation .entry-heading-center {
    transform: translate(0);
    opacity: 1;
  }
  .js .js-animation .module-group-list,
  .js .js-animation .entry-column,
  .js .js-animation .module-section,
  .js .js-animation .suggest-center-box,
  .js .js-animation .suggest-center-item,
  .js .js-animation .process-center-box,
  .js .js-animation .product-center-box,
  .js .js-animation .slider_logo {
    transform: translate(0);
    opacity: 1;
  }
  .js .js-animation .main-slider-text-wrap {
    transform: translate(0);
    opacity: 1;
  }
}
/* ------------------------------
　　バナー
------------------------------ */
.banner {
  margin: 0 -10px 10px;
  padding: 0;
  list-style: none;
}
.banner a {
  display: block;
}
.banner a {
  transition: opacity 0.25s ease-out;
}
.banner a:hover {
  opacity: 0.75;
}

.banner-item {
  margin: 0 0 10px 0;
}

.banner-img-center {
  margin: 0 auto;
}

/* ------------------------------
　　ボタン
------------------------------ */
.btn {
  background: #666;
  border: 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 0;
}
.btn:hover, .btn:visited {
  color: #FFF;
  text-decoration: none;
}
.btn:focus, .btn:active {
  color: #FFF;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.btn:hover {
  color: #FFF;
  background-color: #444;
  background-image: linear-gradient(to bottom, #666, #444);
}
.btn:active, .btn:focus {
  background: #444;
}

/* ボタン　色付き */
.btn-attention {
  background: #CB3DFE;
  border: 0;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 0;
}
.btn-attention:hover, .btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-attention:focus, .btn-attention:active {
  color: #FFF;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.btn-attention:hover {
  color: #FFF;
  background-color: #c82fff;
  background-image: linear-gradient(to bottom, #da72ff, #c82fff);
}
.btn-attention:active, .btn-attention:focus {
  background: #c82fff;
}

/* ボタンサイズ大 */
.btn-large {
  box-sizing: border-box;
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
}
.btn-large:hover, .btn-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-large:focus, .btn-large:active {
  color: #FFF;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.btn-large {
  font-size: 20px;
}
@media print {
  .btn-large {
    font-size: 20px;
  }
}
.btn-large {
  transition: background-color 0.25s linear;
}
.btn-large:hover {
  background: #444;
}
.btn-large:active, .btn-large:focus {
  background: #444;
}

/* ボタンサイズ大 色付き */
.btn-attention-large {
  box-sizing: border-box;
  background: #CB3DFE;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
}
.btn-attention-large:hover, .btn-attention-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-attention-large:focus, .btn-attention-large:active {
  color: #FFF;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.btn-attention-large {
  font-size: 20px;
}
@media print {
  .btn-attention-large {
    font-size: 20px;
  }
}
.btn-attention-large {
  transition: background-color 0.25s linear;
}
.btn-attention-large:hover {
  background: #c82fff;
}
.btn-attention-large:active, .btn-attention-large:focus {
  background: #c82fff;
}

/* デスクトップ：最大360pxボタン */
.btn-block-large {
  box-sizing: border-box;
  width: 100%;
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
}
.btn-block-large:hover, .btn-block-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-block-large:focus, .btn-block-large:active {
  color: #FFF;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.btn-block-large {
  font-size: 20px;
}
@media print {
  .btn-block-large {
    font-size: 20px;
  }
}
.btn-block-large {
  transition: background-color 0.25s linear;
}
.btn-block-large:hover {
  background: #444;
}
.btn-block-large:active, .btn-block-large:focus {
  background: #444;
}

/* デスクトップ：最大360pxボタン 色付き */
.btn-attention-block-large {
  box-sizing: border-box;
  width: 100%;
  background: #CB3DFE;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 15px 20px;
  text-align: center;
  border-radius: 5px;
}
.btn-attention-block-large:hover, .btn-attention-block-large:visited {
  color: #FFF;
  text-decoration: none;
}
.btn-attention-block-large:focus, .btn-attention-block-large:active {
  color: #FFF;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.btn-attention-block-large {
  font-size: 20px;
}
@media print {
  .btn-attention-block-large {
    font-size: 20px;
  }
}
.btn-attention-block-large {
  transition: background-color 0.25s linear;
}
.btn-attention-block-large:hover {
  background: #c82fff;
}
.btn-attention-block-large:active, .btn-attention-block-large:focus {
  background: #c82fff;
}

@media (min-width: 768px) {
  .btn-block-large {
    max-width: 360px;
  }
  .btn-attention-block-large {
    max-width: 360px;
  }
}
.btn-search-block {
  width: 100%;
  max-width: 165px;
  margin: 0 auto;
}

@media (max-width: 767.98px) {
  .btn-search-block {
    display: block;
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
    padding: 10px 20px;
  }
  .btn-search-block {
    font-size: 20px;
  }
}
@media print and (max-width: 767.98px) {
  .btn-search-block {
    font-size: 20px;
  }
}
/* ボーダーボタン */
.home-btn {
  margin: 20px auto 10px;
}

.btn-border {
  display: inline-block;
  padding: 7px 10px;
  color: #333;
  border: 1px solid #CCC;
  border-radius: 4px;
}
.btn-border {
  font-size: 16px;
}
@media print {
  .btn-border {
    font-size: 16px;
  }
}
.btn-border [class*=acms-icon-] {
  color: #CCC;
}
.btn-border [class*=acms-icon-] {
  font-size: 14px;
}
@media print {
  .btn-border [class*=acms-icon-] {
    font-size: 14px;
  }
}
.btn-border:hover {
  text-decoration: none;
}

/* 影付きボタン */
.btn-shadow {
  box-shadow: 0 1rem 1rem -0.75rem rgba(0, 0, 0, 0.4);
}

/* ------------------------------
　　カード
------------------------------ */
.card {
  margin: 0 0 40px;
  padding: 0;
  list-style: none;
  border-left: 1px solid #E5E5E5;
}

.card-item {
  border-top: 1px solid #E5E5E5;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}

.card-link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  color: #333;
}
.card-link:hover {
  text-decoration: none;
  background: #EEE;
}
.card-link:hover {
  transition: background-color 0.25s linear;
}
.card-link:hover, .card-link:visited, .card-link:active, .card-link:focus {
  color: #333;
}

.card-img {
  margin: 0 0 10px;
}

.card-title {
  margin: 0;
  font-weight: bold;
}
.card-title {
  font-size: 16px;
}
@media print {
  .card-title {
    font-size: 16px;
  }
}

.card-detail {
  margin: 10px 0 0;
}
.card-detail {
  font-size: 13px;
}
@media print {
  .card-detail {
    font-size: 13px;
  }
}

/** Light color-scheme **/
:root {
  --cc-bg: #fff;
  --cc-text: #333;
  --cc-btn-primary-bg: #C41134;
  --cc-btn-primary-text: var(--cc-bg);
  --cc-btn-primary-hover-bg: #910021;
  --cc-btn-secondary-bg: #F1F1F1;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #EEE;
  --cc-toggle-bg-off: #999;
  --cc-toggle-bg-on: #666;
  --cc-toggle-bg-readonly: #E5E5E5;
  --cc-toggle-knob-bg: #fff;
  --cc-toggle-knob-icon-color: #faecec;
  --cc-block-text: var(--cc-text);
  --cc-cookie-category-block-bg: #F1F1F1;
  --cc-cookie-category-block-bg-hover: #EEE;
  --cc-section-border: #f5f1f1;
  --cc-cookie-table-border: #f2e9e9;
  --cc-overlay-bg: rgb(4 6 8 / 85%);
  --cc-webkit-scrollbar-bg: #dbcfcf;
  --cc-webkit-scrollbar-bg-hover: #a09191;
}

/** Dark color-scheme **/
.c_darkmode {
  --cc-bg: #181b1d;
  --cc-text: #d8e5ea;
  --cc-btn-primary-bg: #a6c4dd;
  --cc-btn-primary-text: #000;
  --cc-btn-primary-hover-bg: #c2dff7;
  --cc-btn-secondary-bg: #33383c;
  --cc-btn-secondary-text: var(--cc-text);
  --cc-btn-secondary-hover-bg: #3e454a;
  --cc-toggle-bg-off: #667481;
  --cc-toggle-bg-on: var(--cc-btn-primary-bg);
  --cc-toggle-bg-readonly: #454c54;
  --cc-toggle-knob-bg: var(--cc-cookie-category-block-bg);
  --cc-toggle-knob-icon-color: var(--cc-bg);
  --cc-block-text: #b3bfc5;
  --cc-cookie-category-block-bg: #23272a;
  --cc-cookie-category-block-bg-hover: #2b3035;
  --cc-section-border: #292d31;
  --cc-cookie-table-border: #2b3035;
  --cc-webkit-scrollbar-bg: #667481;
  --cc-webkit-scrollbar-bg-hover: #9199a0;
}

.cc_div *,
.cc_div ::before,
.cc_div ::after {
  float: none;
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  color: inherit;
  font-weight: inherit;
  font-size: 1em;
  font-family: inherit;
  font-style: inherit;
  font-variant: normal;
  line-height: 1.2;
  letter-spacing: unset;
  text-align: left;
  text-transform: none;
  text-decoration: none;
  background: none;
  border: none;
  box-shadow: none;
  visibility: unset;
  transition: none;
  animation: none;
}

.cc_div {
  color: #2d4156;
  color: var(--cc-text);
  font-weight: 400;
  font-size: 16px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizelegibility;
}

.cc_div .c-bn,
.cc_div .b-tl,
#s-ttl,
#c-ttl,
#s-bl td::before {
  font-weight: 600;
}

#cm,
#s-inr,
.cc_div .c-bl,
.cc_div .b-tl,
#s-bl .act .b-acc {
  border-radius: 0.35em;
}

.cc_div input,
.cc_div button,
.cc_div a {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.cc_div a {
  border-bottom: 1px solid;
}

.cc_div a:hover {
  text-decoration: none;
  border-color: transparent;
}

/* Make elements "animatable" */
.c--anim #cm,
.c--anim #s-cnt,
.c--anim #s-inr,
#cs-ov,
#cm-ov {
  transition: visibility 0.25s linear, opacity 0.25s ease, transform 0.25s ease !important;
}

.c--anim .c-bn {
  transition: background-color 0.25s ease !important;
}

/* start transitions */
.c--anim #cm.bar.slide,
.c--anim .bar.slide #s-inr {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

.c--anim #cm.bar.slide + #cm-ov,
.c--anim .bar.slide + #cs-ov {
  transition: visibility 0.4s ease, opacity 0.4s ease, transform 0.4s ease !important;
}

#cm.bar.slide,
.cc_div .bar.slide #s-inr {
  transform: translateX(100%);
  opacity: 1;
}

#cm.bar.top.slide,
.cc_div .bar.left.slide #s-inr {
  transform: translateX(-100%);
  opacity: 1;
}

#cm.slide,
.cc_div .slide #s-inr {
  transform: translateY(1.6em);
}

#cm.top.slide {
  transform: translateY(-1.6em);
}

#cm.bar.slide {
  transform: translateY(100%);
}

#cm.bar.top.slide {
  transform: translateY(-100%);
}

/* end transitions */
/* Show modals */
.show--consent .c--anim #cm,
.show--consent .c--anim #cm.bar,
.show--settings .c--anim #s-inr,
.show--settings .c--anim .bar.slide #s-inr {
  transform: scale(1);
  visibility: visible !important;
  opacity: 1;
}

.force--consent.show--consent .c--anim #cm.box.middle,
.force--consent.show--consent .c--anim #cm.cloud.middle {
  transform: scale(1) translateY(-50%);
}

.show--settings .c--anim #s-cnt {
  visibility: visible !important;
}

/* Show overlays */
.force--consent.show--consent .c--anim #cm-ov,
.show--settings .c--anim #cs-ov {
  visibility: visible !important;
  opacity: 1 !important;
}

#cm {
  position: fixed;
  right: 1.25em;
  bottom: 1.25em;
  z-index: 1;
  width: 100%;
  max-width: 24.2em;
  padding: 1.1em 1.8em 1.4em;
  font-family: inherit;
  line-height: initial;
  background: #fff;
  background: var(--cc-bg);
  box-shadow: 0 0.625em 1.875em #000;
  box-shadow: 0 0.625em 1.875em rgba(2, 2, 3, 0.28);
  transform: scale(0.95);
  visibility: hidden;
  opacity: 0;
}

/** fix https://github.com/orestbida/cookieconsent/issues/94 **/
#cc_div #cm {
  display: block !important;
}

#c-ttl {
  margin-bottom: 0.7em;
  font-size: 1.05em;
}

.cloud #c-ttl {
  margin-top: -0.15em;
}

#c-txt {
  margin-bottom: 1.4em;
  font-size: 0.9em;
  line-height: 1.5em;
}

.cc_div .c-bn {
  display: inline-block;
  padding: 1em 1.7em;
  color: #40505a;
  color: var(--cc-btn-secondary-text);
  font-size: 0.82em;
  text-align: center;
  background: #e5ebef;
  background: var(--cc-btn-secondary-bg);
  border-radius: 4px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

#cm .c-bn {
  width: 48.5%;
}

#c-bns button + button,
#s-cnt button + button,
#s-c-bn {
  float: right;
}

#s-cnt #s-rall-bn {
  float: none;
  margin-left: 1em;
}

#cm .c_link:hover,
#cm .c_link:active,
#s-cnt button + button:hover,
#s-cnt button + button:active,
#s-c-bn:active,
#s-c-bn:hover {
  background: #d8e0e6;
  background: var(--cc-btn-secondary-hover-bg);
}

/**
CookieConsent settings modal
**/
#s-cnt {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 101;
  display: table;
  width: 100%;
  height: 100%;
  visibility: hidden;
}

#s-bl {
  outline: none;
}

#s-bl .title {
  margin-top: 1.4em;
}

#s-bl .title:first-child {
  margin-top: 0;
}

#s-bl .b-bn {
  margin-top: 0;
}

#s-bl .b-acc .p {
  margin-top: 0;
  padding: 1em;
}

#s-cnt .b-bn .b-tl {
  position: relative;
  display: block;
  width: 100%;
  padding: 1.3em 6.4em 1.3em 2.7em;
  font-size: 0.95em;
  font-family: inherit;
  background: none;
  cursor: pointer;
  transition: background-color 0.25s ease;
}

#s-cnt .act .b-bn .b-tl {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

#s-cnt .b-bn .b-tl:active,
#s-cnt .b-bn .b-tl:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl .b-bn {
  position: relative;
}

#s-bl .c-bl {
  margin-bottom: 0.5em;
  padding: 1em;
  border: 1px solid #f1f3f5;
  border-color: var(--cc-section-border);
  transition: background-color 0.25s ease;
}

#s-bl .c-bl:hover {
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
}

#s-bl .c-bl:last-child {
  margin-bottom: 0.5em;
}

#s-bl .c-bl:first-child {
  margin-top: 0;
  margin-bottom: 2em;
  padding: 0;
  border: none;
  transition: none;
}

#s-bl .c-bl:not(.b-ex):first-child:hover {
  background: transparent;
  background: unset;
}

#s-bl .c-bl.b-ex {
  padding: 0;
  background: #f0f4f7;
  background: var(--cc-cookie-category-block-bg);
  border: none;
  transition: none;
}

#s-bl .c-bl.b-ex + .c-bl {
  margin-top: 2em;
}

#s-bl .c-bl.b-ex + .c-bl.b-ex {
  margin-top: 0;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 1em;
}

#s-bl .c-bl.b-ex:first-child {
  margin-bottom: 0.5em;
}

#s-bl .b-acc {
  display: none;
  max-height: 0;
  margin-bottom: 0;
  padding-top: 0;
  overflow: hidden;
}

#s-bl .act .b-acc {
  display: block;
  max-height: 100%;
  overflow: hidden;
}

#s-cnt .p {
  margin-top: 0.85em;
  color: #2d4156;
  color: var(--cc-block-text);
  font-size: 0.9em;
  line-height: 1.5em;
}

.cc_div .b-tg .c-tgl:disabled {
  cursor: not-allowed;
}

#c-vln {
  position: relative;
  display: table-cell;
  vertical-align: middle;
}

#cs {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0 1.7em;
}

#s-inr {
  position: relative;
  max-width: 45em;
  height: 100%;
  margin: 0 auto;
  padding-top: 4.75em;
  padding-bottom: 4.75em;
  overflow: hidden;
  box-shadow: rgba(3, 6, 9, 0.26) 0 13px 27px -5px;
  transform: scale(0.96);
  visibility: hidden;
  opacity: 0;
}

#s-inr,
#s-hdr,
#s-bns {
  background: #fff;
  background: var(--cc-bg);
}

#s-bl {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.3em 2.1em;
  overflow-x: hidden;
  overflow-y: auto;
  overflow-y: overlay;
}

#s-bns {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 4.75em;
  padding: 1em 2.1em;
  border-color: var(--cc-section-border);
  border-top: 1px solid #f1f3f5;
}

.cc_div .cc-link {
  display: inline;
  padding-bottom: 0;
  color: #253b48;
  color: var(--cc-btn-primary-bg);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentcolor;
  cursor: pointer;
}

.cc_div .cc-link:hover,
.cc_div .cc-link:active {
  border-color: transparent;
}

#c-bns button:first-child,
#s-bns button:first-child {
  color: #fff;
  color: var(--cc-btn-primary-text);
  background: #253b48;
  background: var(--cc-btn-primary-bg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg {
  background: #253b48;
  background: var(--cc-toggle-bg-on);
}

#c-bns button:first-child:active,
#c-bns button:first-child:hover,
#s-bns button:first-child:active,
#s-bns button:first-child:hover {
  background: #1d2e38;
  background: var(--cc-btn-primary-hover-bg);
}

#s-hdr {
  position: absolute;
  top: 0;
  z-index: 2;
  display: table;
  width: 100%;
  height: 4.75em;
  padding: 0 2.1em;
  vertical-align: middle;
  border-color: var(--cc-section-border);
  border-bottom: 1px solid #f1f3f5;
}

#s-ttl {
  display: table-cell;
  font-size: 1em;
  vertical-align: middle;
}

#s-c-bn {
  position: relative;
  width: 1.7em;
  height: 1.7em;
  margin: 0;
  padding: 0;
  font-weight: initial;
  font-size: 1.45em;
}

#s-c-bnc {
  display: table-cell;
  vertical-align: middle;
}

.cc_div span.t-lb {
  position: absolute;
  top: 0;
  z-index: -1;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

#c_policy__text {
  height: 31.25em;
  margin-top: 1.25em;
  overflow-y: auto;
}

#c-s-in {
  position: relative;
  top: 50%;
  height: 100%;
  height: calc(100% - 2.5em);
  max-height: 37.5em;
  transform: translateY(-50%);
}

@media screen and (width >= 688px) {
  /** works only on webkit-based browsers **/
  #s-bl::-webkit-scrollbar {
    width: 0.9em;
    height: 100%;
    background: transparent;
    border-radius: 0 0.25em 0.25em 0;
  }
  #s-bl::-webkit-scrollbar-thumb {
    background: #cfd5db;
    background: var(--cc-webkit-scrollbar-bg);
    border: 0.25em solid var(--cc-bg);
    border-radius: 100em;
  }
  #s-bl::-webkit-scrollbar-thumb:hover {
    background: #9199a0;
    background: var(--cc-webkit-scrollbar-bg-hover);
  }
  #s-bl::-webkit-scrollbar-button {
    width: 10px;
    height: 5px;
  }
}
/** custom checkbox **/
/* The container */
.cc_div .b-tg {
  position: absolute;
  top: 0;
  right: 0;
  right: 1.2em;
  bottom: 0;
  display: inline-block;
  margin: auto;
  vertical-align: middle;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

/* Hide the browser's default checkbox */
.cc_div .b-tg .c-tgl {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  margin: 0;
  border: 0;
  cursor: pointer;
}

/* Create a custom checkbox */
.cc_div .b-tg .c-tg {
  position: absolute;
  background: #919ea6;
  background: var(--cc-toggle-bg-off);
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
  pointer-events: none;
}

.cc_div span.t-lb,
.cc_div .b-tg,
.cc_div .b-tg .c-tg,
.cc_div .b-tg .c-tgl {
  width: 3.4em;
  height: 1.5em;
  border-radius: 4em;
}

.cc_div .b-tg .c-tg.c-ro {
  cursor: not-allowed;
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro {
  background: #d5dee2;
  background: var(--cc-toggle-bg-readonly);
}

.cc_div .b-tg .c-tgl ~ .c-tg.c-ro::after {
  box-shadow: none;
}

/* Style the checkmark/indicator */
.cc_div .b-tg .c-tg::after {
  position: relative;
  top: 0.125em;
  left: 0.125em;
  display: block;
  box-sizing: content-box;
  width: 1.25em;
  height: 1.25em;
  background: #fff;
  background: var(--cc-toggle-knob-bg);
  border: none;
  border-radius: 100%;
  box-shadow: 0 1px 2px rgba(24, 32, 35, 0.36);
  transition: transform 0.25s ease;
  content: "";
}

/* Show the checkmark when checked */
.cc_div .b-tg .c-tgl:checked ~ .c-tg::after {
  transform: translateX(1.9em);
}

#s-bl table,
#s-bl th,
#s-bl td {
  border: none;
}

#s-bl tbody tr {
  transition: background-color 0.25s ease;
}

#s-bl tbody tr:hover {
  background: #e9eff4;
  background: var(--cc-cookie-category-block-bg-hover);
}

#s-bl table {
  width: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
  text-align: left;
  border-collapse: collapse;
}

#s-bl td,
#s-bl th {
  padding: 0.8em 0.625em;
  padding-left: 1.2em;
  font-size: 0.8em;
  text-align: left;
  vertical-align: top;
}

#s-bl th {
  padding: 1.2em;
  font-family: inherit;
}

#s-bl thead tr:first-child {
  border-color: var(--cc-cookie-table-border);
  border-bottom: 1px solid #e9edf2;
}

.force--consent #s-cnt,
.force--consent #cs {
  width: 100vw;
}

#cm-ov,
#cs-ov {
  position: fixed;
  inset: 0;
  display: none;
  background: #070707;
  background: rgba(4, 6, 8, 0.85);
  background: var(--cc-overlay-bg);
  visibility: hidden;
  opacity: 0;
  transition: none;
}

.show--settings #cs-ov,
.c--anim #cs-ov,
.force--consent .c--anim #cm-ov,
.force--consent.show--consent #cm-ov {
  display: block;
}

#cs-ov {
  z-index: 2;
}

.force--consent .cc_div {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  width: 100vw;
  visibility: hidden;
  transition: visibility 0.25s linear;
}

.force--consent.show--consent .c--anim .cc_div,
.force--consent.show--settings .c--anim .cc_div {
  visibility: visible;
}

.force--consent #cm {
  position: absolute;
}

.force--consent #cm.bar {
  width: 100vw;
  max-width: 100vw;
}

html.force--consent.show--consent {
  overflow-y: hidden !important;
}

html.force--consent.show--consent,
html.force--consent.show--consent body {
  height: auto !important;
  overflow-x: hidden !important;
}

/** END BLOCK PAGE SCROLL */
/** BEGIN ICONS **/
.cc_div .b-bn .b-tl::before,
.cc_div .act .b-bn .b-tl::before {
  position: absolute;
  top: 50%;
  left: 1.2em;
  display: inline-block;
  margin-right: 15px;
  padding: 0.2em;
  border: solid #2d4156;
  border-color: var(--cc-btn-secondary-text);
  border-width: 0 2px 2px 0;
  transform: translateY(-50%) rotate(45deg);
  content: "";
}

.cc_div .act .b-bn .b-tl::before {
  transform: translateY(-20%) rotate(225deg);
}

.cc_div .on-i::before {
  position: absolute;
  top: 0.37em;
  left: 0.75em;
  display: inline-block;
  margin: 0 auto;
  padding: 0.1em;
  padding-bottom: 0.45em;
  border: solid #fff;
  border-color: var(--cc-toggle-knob-icon-color);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  content: "";
}

#s-c-bn::before,
#s-c-bn::after {
  position: absolute;
  top: 0.58em;
  left: 0.82em;
  width: 1.5px;
  height: 0.6em;
  margin: 0 auto;
  background: #444d53;
  background: var(--cc-btn-secondary-text);
  border-radius: 1em;
  transform: rotate(45deg);
  content: "";
}

#s-c-bn::after {
  transform: rotate(-45deg);
}

.cc_div .off-i,
.cc_div .on-i {
  position: absolute;
  right: 0;
  display: block;
  width: 50%;
  height: 100%;
  text-align: center;
  transition: opacity 0.15s ease;
}

.cc_div .on-i {
  left: 0;
  opacity: 0;
}

.cc_div .off-i::before,
.cc_div .off-i::after {
  position: absolute;
  top: 0.42em;
  right: 0.8em;
  display: block;
  width: 0.0938em;
  height: 0.7em;
  margin: 0 auto;
  background: #cdd6dc;
  background: var(--cc-toggle-knob-icon-color);
  transform-origin: center;
  content: " ";
}

.cc_div .off-i::before {
  transform: rotate(45deg);
}

.cc_div .off-i::after {
  transform: rotate(-45deg);
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .on-i {
  opacity: 1;
}

.cc_div .b-tg .c-tgl:checked ~ .c-tg .off-i {
  opacity: 0;
}

/** END ICONS **/
.force--consent #cm.box.middle,
.force--consent #cm.cloud.middle {
  top: 50%;
  bottom: auto;
  transform: translateY(-37%);
}

.force--consent #cm.box.middle.zoom,
.force--consent #cm.cloud.middle.zoom {
  transform: scale(0.95) translateY(-50%);
}

#cm.box.center {
  right: 1em;
  left: 1em;
  margin: 0 auto;
}

/* Start cloud layout */
#cm.cloud {
  right: 1em;
  left: 1em;
  width: unset;
  max-width: 50em;
  margin: 0 auto;
  padding: 1.3em 2em;
  overflow: hidden;
  text-align: center;
}

.cc_div .cloud #c-inr {
  display: table;
  width: 100%;
}

.cc_div .cloud #c-inr-i {
  display: table-cell;
  width: 70%;
  padding-right: 2.4em;
  vertical-align: top;
}

.cc_div .cloud #c-txt {
  margin-bottom: 0;
  font-size: 0.85em;
}

.cc_div .cloud #c-bns {
  display: table-cell;
  min-width: 170px;
  vertical-align: middle;
}

#cm.cloud .c-bn {
  width: 100%;
  margin: 0.625em 0 0;
}

#cm.cloud .c-bn:first-child {
  margin: 0;
}

#cm.cloud.left {
  margin-right: 1.25em;
}

#cm.cloud.right {
  margin-left: 1.25em;
}

/* End cloud layout */
/* Start bar layout */
#cm.bar {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  padding: 2em;
  border-radius: 0;
}

#cm.bar #c-inr {
  max-width: 32em;
  margin: 0 auto;
}

#cm.bar #c-bns {
  max-width: 33.75em;
}

#cm.bar #cs {
  padding: 0;
}

.cc_div .bar #c-s-in {
  top: 0;
  height: 100%;
  max-height: 100%;
  transform: none;
}

.cc_div .bar #s-hdr,
.cc_div .bar #s-bl,
.cc_div .bar #s-bns {
  padding-right: 1.6em;
  padding-left: 1.6em;
}

.cc_div .bar #cs {
  padding: 0;
}

/* align bar to right by default */
.cc_div .bar #s-inr {
  max-width: 32em;
  margin: 0;
  margin-right: 0;
  margin-left: auto;
  border-radius: 0;
}

.cc_div .bar.left #s-inr {
  margin-right: auto;
  margin-left: 0;
}

/* Force table to not be like tables anymore */
.cc_div .bar #s-bl table,
.cc_div .bar #s-bl thead,
.cc_div .bar #s-bl tbody,
.cc_div .bar #s-bl th,
.cc_div .bar #s-bl td,
.cc_div .bar #s-bl tr,
.cc_div .bar #s-cnt {
  display: block;
}

/* Hide table headers (but not display: none;, for accessibility) */
.cc_div .bar #s-bl thead tr {
  position: absolute;
  top: -9999px;
  left: -9999px;
}

.cc_div .bar #s-bl tr {
  border-color: var(--cc-cookie-table-border);
  border-top: 1px solid #e3e7ed;
}

.cc_div .bar #s-bl td {
  position: relative;
  padding-left: 35%;
  /* Behave  like a "row" */
  border: none;
}

.cc_div .bar #s-bl td::before {
  position: absolute;
  left: 1em;
  padding-right: 0.625em;
  overflow: hidden;
  color: #000;
  color: var(--cc-text);
  white-space: nowrap;
  text-overflow: ellipsis;
  content: attr(data-column);
}

/* End bar layout */
/* Positions */
#cm.top {
  top: 1.25em;
  bottom: auto;
}

#cm.left {
  right: auto;
  left: 1.25em;
}

#cm.right {
  right: 1.25em;
  left: auto;
}

#cm.bar.left,
#cm.bar.right {
  right: 0;
  left: 0;
}

#cm.bar.top {
  top: 0;
}

/* end positions */
@media screen and (width <= 688px) {
  #cm,
  #cm.cloud,
  #cm.left,
  #cm.right {
    right: 1em;
    bottom: 1em;
    left: 1em;
    display: block;
    width: auto;
    max-width: 100%;
    margin: 0;
    padding: 1.4em !important;
  }
  .force--consent #cm,
  .force--consent #cm.cloud {
    width: auto;
    max-width: 100vw;
  }
  #cm.top {
    top: 1em;
    bottom: auto;
  }
  #cm.bottom {
    top: auto;
    bottom: 1em;
  }
  #cm.bar.bottom {
    bottom: 0;
  }
  .cc_div .cloud #c-txt {
    font-size: 0.9em;
  }
  #cm.cloud .c-bn {
    font-size: 0.85em;
  }
  #s-bns,
  .cc_div .bar #s-bns {
    padding: 1em 1.3em;
  }
  .cc_div .bar #s-inr {
    width: 100%;
    max-width: 100%;
  }
  .cc_div .cloud #c-inr-i {
    padding-right: 0;
  }
  #cs {
    padding: 0;
    border-radius: 0;
  }
  #c-s-in {
    top: 0;
    height: 100%;
    max-height: 100%;
    transform: none;
  }
  .cc_div .b-tg {
    right: 1.1em;
    transform: scale(1.1);
  }
  #s-inr {
    margin: 0;
    padding-bottom: 7.9em;
    border-radius: 0;
  }
  #s-bns {
    height: 7.9em;
  }
  #s-bl,
  .cc_div .bar #s-bl {
    padding: 1.3em;
  }
  #s-hdr,
  .cc_div .bar #s-hdr {
    padding: 0 1.3em;
  }
  /** dynamic table layout **/
  #s-bl table {
    width: 100%;
  }
  #s-inr.bns-t {
    padding-bottom: 10.5em;
  }
  .bns-t #s-bns {
    height: 10.5em;
  }
  .cc_div .bns-t .c-bn {
    padding: 0.9em 1.6em;
    font-size: 0.83em;
  }
  #s-cnt .b-bn .b-tl {
    padding-top: 1.2em;
    padding-bottom: 1.2em;
  }
  /* Force table to not be like tables anymore */
  #s-bl table,
  #s-bl thead,
  #s-bl tbody,
  #s-bl th,
  #s-bl td,
  #s-bl tr,
  #s-cnt {
    display: block;
  }
  /* Hide table headers (but not display: none;, for accessibility) */
  #s-bl thead tr {
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
  #s-bl tr {
    border-color: var(--cc-cookie-table-border);
    border-top: 1px solid #e3e7ed;
  }
  #s-bl td {
    position: relative;
    padding-left: 35%;
    /* Behave  like a "row" */
    border: none;
  }
  #s-bl td::before {
    position: absolute;
    left: 1em;
    padding-right: 0.625em;
    overflow: hidden;
    color: #000;
    color: var(--cc-text);
    white-space: nowrap;
    text-overflow: ellipsis;
    content: attr(data-column);
  }
  #cm .c-bn,
  .cc_div .c-bn {
    width: 100%;
    margin-right: 0;
  }
  #s-cnt #s-rall-bn {
    margin-left: 0;
  }
  #c-bns button + button,
  #s-cnt button + button {
    float: unset;
    margin-top: 0.625em;
  }
  #cm.cloud,
  #cm.box {
    right: 1em;
    left: 1em;
    width: auto;
  }
  #cm.cloud.right,
  #cm.cloud.left {
    margin: 0;
  }
  .cc_div .cloud #c-bns,
  .cc_div .cloud #c-inr,
  .cc_div .cloud #c-inr-i {
    display: block;
    width: auto;
    min-width: unset;
  }
  .cc_div .cloud #c-txt {
    margin-bottom: 1.625em;
  }
}
/* Begin IE fixes */
.cc_div.ie #c-vln {
  height: 100%;
  padding-top: 5.62em;
}

.cc_div.ie .bar #c-vln {
  padding-top: 0;
}

.cc_div.ie #cs {
  position: relative;
  top: 0;
  max-height: 37.5em;
  margin-top: -5.625em;
}

.cc_div.ie .bar #cs {
  max-height: 100%;
  margin-top: 0;
}

.cc_div.ie #cm {
  border: 1px solid #dee6e9;
}

.cc_div.ie #c-s-in {
  top: 0;
}

.cc_div.ie .b-tg {
  margin-bottom: 0.7em;
  padding-left: 1em;
}

.cc_div.ie .b-tg .c-tgl:checked ~ .c-tg::after {
  left: 1.95em;
}

.cc_div.ie #s-bl table {
  overflow: auto;
}

.cc_div.ie .b-tg .c-tg {
  display: none;
}

.cc_div.ie .b-tg .c-tgl {
  position: relative;
  display: inline-block;
  height: auto;
  margin-bottom: 0.2em;
  vertical-align: middle;
}

.cc_div.ie #s-cnt .b-bn .b-tl {
  padding: 1.3em 6.4em 1.3em 1.4em;
}

.cc_div.ie .bar #s-bl td::before {
  display: none;
}

.cc_div.ie .bar #s-bl td {
  padding: 0.8em 0.625em 0.8em 1.2em;
}

.cc_div.ie .bar #s-bl thead tr {
  position: relative;
}

.cc_div.ie .b-tg .t-lb {
  filter: alpha(opacity=0);
}

.cc_div.ie #cm-ov,
.cc_div.ie #cs-ov {
  filter: alpha(opacity=80);
}

/** END IE FIXES **/
/* ------------------------------
　　ヘッドライン
------------------------------ */
.headline-item {
  line-height: 1.5;
}

.headline-link {
  color: #333;
}
.headline-link {
  transition: background-color 0.25s ease-out;
}
.headline-link:hover, .headline-link:visited, .headline-link:active, .headline-link:focus {
  color: #333;
}
.headline-link:hover {
  padding: 10px;
  background: #F1F1F1;
}

.headline-title {
  margin: 0 10px;
}

@media screen and (max-width: 479.98px) { /* 画面幅が小さいとき */
  /* ヘッドライン */
  .headline-item {
    padding: 10px 0;
  }
  .headline-title {
    display: block;
    margin: 0;
  }
}
/* 1カラムページ用のヘッドライン */
.headline-1col {
  font-size: 16px;
}
@media print {
  .headline-1col {
    font-size: 16px;
  }
}

/* ------------------------------
　　ページ上部のインフォーメーション
------------------------------ */
.info-bar {
  color: #FFF;
  background: #666;
}

.info-bar-contents {
  display: flex;
  align-items: center;
  width: 100%;
}

.info-bar-icon {
  display: flex;
}
.info-bar-icon {
  font-size: 24px;
}
@media print {
  .info-bar-icon {
    font-size: 24px;
  }
}

.info-bar-message {
  padding: 0 15px;
}

.info-bar-link-wrap {
  margin-left: auto;
}

.info-bar-link {
  padding: 5px 0;
  color: #FFF;
}
.info-bar-link:link, .info-bar-link:visited, .info-bar-link:hover, .info-bar-link:active, .info-bar-link:focus {
  color: #FFF;
}
.info-bar-link:hover {
  text-decoration: none;
  border-bottom: 1px solid currentcolor;
}

.info-bar-link-icon {
  margin: 0 10px 0 0;
}

/* ------------------------------
　　リスト
------------------------------ */
@media screen and (min-width: 768px) {
  /* リスト */
  a.list-link.acms-list-group-item {
    padding: 10px 20px 10px 10px;
  }
  a.list-link.acms-list-group-item {
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-item:hover {
    padding: 10px 10px 10px 20px;
  }
  a.list-link.acms-list-group-item:hover {
    transition: padding 0.25s ease-out;
  }
  /* ラベルがあったとき */
  a.list-link.acms-list-group-label-parent {
    padding: 10px 30px 10px 10px;
  }
  a.list-link.acms-list-group-label-parent {
    transition: padding 0.15s ease-out;
  }
  a.list-link.acms-list-group-label-parent:hover {
    padding: 10px 30px 10px 20px;
  }
}
/* 検索結果 */
.list-results-wrap {
  margin: 15px 0;
  padding: 10px;
  border: 1px solid #CCC;
}

.list-results-heading {
  margin: 0 0 10px;
  padding: 5px;
  background: #E5E5E5;
}

.list-results {
  position: relative;
  margin: 0;
}

.list-results-item {
  position: absolute;
  width: 100px;
}

.list-results-detail {
  margin: 0;
  padding: 0 0 0 100px;
  font-weight: bold;
}

/* ------------------------------
　　メインビジュアル
------------------------------ */
.main-visual-inner {
  position: relative;
}

.main-visual {
  position: absolute;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 350px;
  padding: 40px 5px;
  color: #FFF;
  text-align: center;
  background: #5dffd6 no-repeat center;
  background-size: cover;
}

.main-visual::after {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  inset: 0;
}

.main-visual-title {
  z-index: 100;
  margin: 0 0 20px;
  font-weight: bold;
}
.main-visual-title {
  font-size: 24px;
}
@media print {
  .main-visual-title {
    font-size: 24px;
  }
}

.main-visual-text {
  z-index: 1;
  margin: 0 0 20px;
  line-height: 1.7;
}
.main-visual-text {
  font-size: 14px;
}
@media print {
  .main-visual-text {
    font-size: 14px;
  }
}

.main-visual-center-btn {
  z-index: 1;
  margin: 0;
}

.main-visual-title,
.main-visual-text,
.main-visual-center-btn {
  opacity: 0;
  animation: fadeUp 0.35s 1 both ease-out;
  animation-direction: alternate;
  animation-fill-mode: forwards;
}

@media screen and (min-width: 768px) {
  .main-visual {
    width: 100%;
    height: 720px;
    padding: 50px 0;
  }
  .main-visual-title {
    margin: 0 0 30px;
  }
  .main-visual-title {
    font-size: 30px;
  }
  .main-visual-text {
    margin: 0 0 40px;
    line-height: 1.7;
  }
  .main-visual-text {
    font-size: 16px;
  }
}
@media screen and (max-width: 767.98px) {
  .main-visual-center-btn .btn-attention-block-large {
    padding: 15px;
  }
  .main-visual-center-btn .btn-attention-block-large {
    font-size: 16px;
  }
}
/* ------------------------------
　　各モジュール
------------------------------ */
.module-section {
  margin: 0 0 30px;
}

/* タイトル */
.module-header {
  position: relative;
  margin: 0;
  padding: 5px 0;
  color: #333;
  border-bottom: 2px solid #333;
}
.module-header + .thumbnail, .module-header + .summary-default, .module-header + .entry-column, .module-header + .card, .module-header + .search-form, .module-header + .banner {
  margin-top: 10px;
}

.module-heading {
  margin: 0;
}
.module-heading {
  font-size: 18px;
}
@media print {
  .module-heading {
    font-size: 18px;
  }
}
.module-heading [class*=acms-icon-] {
  margin: 0 10px 0 0;
  vertical-align: baseline;
}

a.module-index-link {
  position: absolute;
  right: 0;
  bottom: 5px;
  color: #333;
}
a.module-index-link {
  font-size: 16px;
}
@media print {
  a.module-index-link {
    font-size: 16px;
  }
}
a.module-index-link [class*=acms-icon-] {
  color: #CCC;
}
a.module-index-link [class*=acms-icon-] {
  font-size: 14px;
}
@media print {
  a.module-index-link [class*=acms-icon-] {
    font-size: 14px;
  }
}

/* カスタムフィールドグループ */
.module-group-list {
  margin: 0;
  padding: 0 10px;
  list-style: none;
}
.module-group-list::before, .module-group-list::after {
  display: table;
  content: " ";
}
.module-group-list::after {
  clear: both;
}

.module-group-heading {
  margin: 0 0 20px;
  line-height: 1.2;
}
.module-group-heading {
  font-size: 18px;
}
@media print {
  .module-group-heading {
    font-size: 18px;
  }
}

.module-group-detail {
  margin: 0 0 30px;
  line-height: 1.7;
}
.module-group-detail {
  font-size: 16px;
}
@media print {
  .module-group-detail {
    font-size: 16px;
  }
}

/* 行揃えの設定 */
/* 見出し */
.heading-align-left .module-group-heading {
  text-align: left;
}
.heading-align-center .module-group-heading {
  text-align: center;
}
.heading-align-right .module-group-heading {
  text-align: right;
}

/* 概要文 */
.detail-align-left .module-group-detail {
  text-align: left;
}
.detail-align-center .module-group-detail {
  text-align: center;
}
.detail-align-right .module-group-detail {
  text-align: right;
}

/* ボタン */
.btn-align-left .module-group-btn-wrap {
  text-align: left;
}
.btn-align-center .module-group-btn-wrap {
  text-align: center;
}
.btn-align-right .module-group-btn-wrap {
  text-align: right;
}

/* ------------------------------
　　ページタイトル
------------------------------ */
.page-title-wrapper {
  position: relative;
  display: table;
  width: 100%;
  height: 100px;
  color: #FFF;
  background: url(assets/bg_other.jpg) #333 no-repeat center;
  background-size: cover;
}

.page-title-filter {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 90%);
}

.page-title-inner {
  position: relative;
  display: table-cell;
  padding: 8px 0;
  vertical-align: middle;
}

.page-description {
  margin: 50px 0 0 10px;
  font-weight: bold;
  font-family: Antonio, sans-serif;
  line-height: 1.2;
}
.page-description {
  font-size: 30px;
}
@media print {
  .page-description {
    font-size: 30px;
  }
}
.page-description a {
  color: #FFF;
}

.page-title {
  margin: 0 10px;
  font-weight: bold;
  line-height: 1.5;
}
.page-title {
  font-size: 20px;
}
@media print {
  .page-title {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .page-title-wrapper {
    height: 270px;
  }
  .page-description {
    margin: 170px 0 0;
    font-size: 42pt;
  }
  .page-title {
    margin: 0;
  }
  .page-title {
    font-size: 32px;
  }
}
@media print and (min-width: 768px) {
  .page-title {
    font-size: 32px;
  }
}
@media (min-width: 768px) {
  .page-title-inner {
    height: 280px;
  }
  .page-title-inner .acms-container {
    max-width: 980px;
  }
}
/* ------------------------------
　　ページャー
------------------------------ */
.pager {
  margin: 0 -5px 50px;
  padding: 0;
  text-align: center;
  list-style: none;
}
.pager li {
  display: inline-block;
  margin: 0 5px;
}
.pager li.cur { /* 現在いる位置 */
  padding: 5px 20px;
  color: #FFF;
  background: #767676;
  border-radius: 3px;
}

.pager-link {
  display: block;
  padding: 5px 20px;
  color: #333;
  background: #E5E5E5;
  border-radius: 3px;
}
.pager-link:visited, .pager-link:focus, .pager-link:active {
  color: #333;
}
.pager-link:hover {
  color: #FFF;
  text-decoration: none;
  background: #333;
}

.pager-link-forward {
  float: right;
}

.pager-link-prev {
  float: left;
}

@media screen and (min-width: 768px) {
  .pager-link {
    padding: 5px 10px;
  }
  .pager li.cur { /* 現在いる位置 */
    padding: 5px 10px;
  }
}
/* 前後リンク */
.serial-nav {
  margin: -25px 0 60px 0;
  padding: 0;
  list-style: none;
}
.serial-nav .serial-nav-item {
  display: block;
  float: none;
}
.serial-nav .serial-nav-item-prev {
  text-align: left;
}
.serial-nav .serial-nav-item-next {
  text-align: right;
}
.serial-nav a {
  display: block;
  padding: 25px 0;
  color: #333;
  border-bottom: 1px solid #E5E5E5;
}
.serial-nav a:hover, .serial-nav a:visited, .serial-nav a:focus, .serial-nav a:active {
  color: inherit;
  text-decoration: none;
}
.serial-nav a:hover {
  background: #E5E5E5;
}

@media screen and (min-width: 768px) {
  .serial-nav {
    margin: 0 0 60px;
    border: 0;
  }
  .serial-nav .serial-nav-item-prev {
    float: left;
  }
  .serial-nav .serial-nav-item-next {
    float: right;
  }
  .serial-nav a {
    display: inline;
    border: 0;
  }
  .serial-nav a:hover {
    text-decoration: underline;
    background: 0;
  }
}
/* ------------------------------
　　検索フォーム
------------------------------ */
.search-form .btn-search {
  padding: 10px 20px;
  color: #FFF;
  background: #333;
  border: 1px solid #333;
  border-radius: 0 4px 4px 0;
  filter: none; /* IEでのグラデーションを上書き */
}
.search-form .btn-search {
  font-size: 16px;
}
@media print {
  .search-form .btn-search {
    font-size: 16px;
  }
}
.search-form .btn-search:hover, .search-form .btn-search:active, .search-form .btn-search:focus {
  background: #666;
}
.search-form input[type=search] {
  box-sizing: border-box;
  height: 40px;
  padding: 9px 10px;
}
.search-form input[type=search] {
  font-size: 16px;
}
@media print {
  .search-form input[type=search] {
    font-size: 16px;
  }
}

input[type=search].search-form-input {
  box-sizing: border-box;
  padding-top: 5px;
  padding-bottom: 4px;
}
input[type=search].search-form-input {
  font-size: 20px;
}
@media print {
  input[type=search].search-form-input {
    font-size: 20px;
  }
}

/* ------------------------------
　　セクション
------------------------------ */
/* 背景色 */
.section-bg {
  padding: 40px 0;
  background: rgba(200, 200, 200, 0.2);
}

.section-space {
  padding: 40px 0;
}

/* カラムの中央寄せ */
.section-center-col {
  float: none;
  margin: 0 auto;
}

/* 見出し */
.section-heading {
  margin: 20px;
}
.section-heading {
  font-size: 24px;
}
@media print {
  .section-heading {
    font-size: 24px;
  }
}
.section-heading a {
  color: #333;
}

@media (min-width: 768px) {
  /* 背景色 */
  .section-bg {
    padding: 80px 0;
  }
  .section-space {
    padding: 80px 30px;
  }
  /* 見出し */
  .section-heading {
    margin: 20px 0 40px;
  }
  .section-heading {
    font-size: 28px;
  }
}
@media print and (min-width: 768px) {
  .section-heading {
    font-size: 28px;
  }
}
/* ------------------------------
　　スライダー
------------------------------ */
.slick-slider {
  padding: 0 0 0%;
}
.slick-slider img {
  margin: 0;
}

.module-section .slick-slider {
  margin-bottom: 0;
}

.fix-height {
  height: 300px; /* はじめのちらつき防止 */
  overflow: hidden; /* はじめのちらつき防止 */
}

.slick-slide:hover {
  cursor: pointer;
}

.slick-list:focus:focus {
  position: relative;
}
.slick-list:focus:focus::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  border: 2px dotted #00c2ff;
  content: "";
}

.js-slider .slick-list:focus {
  position: relative;
}
.js-slider .slick-list:focus::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  border: 2px dotted #00c2ff;
  content: "";
}

.main-slider {
  position: relative;
}

.main-slider-image {
  height: 300px;
  background: no-repeat center #333;
  background-size: cover;
}
.main-slider-image a:hover {
  text-decoration: none;
}

.main-slider-image2 {
  margin-bottom: 20px;
}
.main-slider-image2 img {
  width: 100%;
  max-height: 320px;
  -o-object-fit: cover;
     object-fit: cover;
}
.main-slider-image2 a:hover {
  text-decoration: none;
}

.main-slider-image::after {
  position: absolute;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
  inset: 0;
}

.slider_logo {
  position: absolute;
  bottom: 0;
  left: 25%;
  z-index: 10;
  width: 50%;
}

.main-slider-text {
  position: absolute;
  bottom: 20px;
  left: 45%;
  z-index: 10;
  color: #FFF;
  font-size: 12px;
}

.main-slider-text-outer {
  height: 100%;
}

.main-slider-text-wrap {
  display: table;
  width: 100%;
  height: 100%;
}

.main-slider-text-inner {
  display: table-cell;
  padding: 0 20px;
  text-align: center;
  vertical-align: middle;
}

.main-slider-main-copy {
  margin: 0;
  color: #FFF;
  font-weight: bold;
}
.main-slider-main-copy {
  font-size: 24px;
}
@media print {
  .main-slider-main-copy {
    font-size: 24px;
  }
}

.main-slider-side-copy {
  margin: 0;
  color: #FFF;
}
.main-slider-side-copy {
  font-size: 16px;
}
@media print {
  .main-slider-side-copy {
    font-size: 16px;
  }
}

.js-slider-mini {
  width: 100%;
}

/* ちらつき防止 */
.slick-track,
.slick-list {
  transform: translateZ(0);
  perspective: 1000;
}

/* ドットのナビゲーション */
.js-slider-mini .slick-dots {
  position: relative;
  clear: both;
  margin: -20px 0 0;
  padding: 0 0 30px;
  text-align: center;
  list-style: none;
}

.slick-dots li button {
  position: relative;
  display: inline-block;
  width: 15px;
  height: 15px;
  font-size: 0;
  background: #FFF;
  border: 0;
  border-radius: 7px;
  content: "";
}

.slick-dots li button:focus {
  border: none;
  outline: 0;
}

.slick-dots li:hover button {
  cursor: pointer;
}

.js-slider-mini .slick-dots li button::before {
  color: #fff;
  font-size: 10px;
  opacity: 1;
}

.js-slider-mini .slick-dots li.slick-active button::before {
  color: #CB3DFF;
  opacity: 1;
}

.slick-dots button {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  color: #FFF;
  border: 0;
  clip: rect(0 0 0 0);
}

#autoplay-btn {
  position: absolute;
  right: 10px;
  bottom: 10px;
  z-index: 1;
  width: 50px;
  height: 50px;
  color: #FFF;
  background: rgba(255, 255, 255, 0.7);
  border: 0;
  border-radius: 50%;
  outline: 0;
  right: calc(10px + constant(safe-area-inset-right));
}
#autoplay-btn:hover {
  background: rgba(255, 255, 255, 0.9);
}
#autoplay-btn:active::before, #autoplay-btn:focus::before {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 1px dotted #FFF;
  content: "";
}
#autoplay-btn::after {
  position: absolute;
  top: 15px;
  left: 17px;
  display: block;
  box-sizing: border-box;
  width: 16px;
  height: 20px;
  margin-left: 0;
  border-top: none;
  border-right: 5px solid #FFF;
  border-bottom: none;
  border-left: 5px solid #FFF;
  content: "";
}
#autoplay-btn.active::after {
  left: 15px;
  width: 0;
  height: 0;
  margin-left: 5px;
  border-color: transparent transparent transparent #FFF;
  border-style: solid;
  border-width: 10px 0 10px 15px;
}

@media screen and (min-width: 768px) {
  .fix-height {
    height: 400px; /* はじめのちらつき防止 */
  }
  .main-slider-image {
    height: 720px;
  }
  .main-slider-image2 {
    width: 100%;
    min-width: 320px;
  }
  .js-slider-mini {
    width: 100%;
  }
  .slider_logo {
    bottom: 0;
    text-align: center;
  }
  .main-slider-text {
    bottom: 60px;
    left: 48%;
  }
  .main-slider-text {
    font-size: 16px;
  }
  .main-slider-main-copy {
    font-size: 40px;
  }
  .main-slider-side-copy {
    font-size: 24px;
  }
  .inner .slide {
    width: 100%;
  }
  .equipment-box .slide {
    height: 100%;
  }
  .slide2 img {
    width: 320px;
    height: 180px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .suggest-inner img {
    width: 100%;
    max-height: 240px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
/* ------------------------------
　　提案エリア
------------------------------ */
.suggest-main-bg {
  position: relative;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 20px 0 0;
  background: #EEE no-repeat center;
  background-size: cover;
}

.suggest-main-bg::after {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}

.suggest-footer-bg {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 40px 5px;
  background-image: url(assets/Frame113.jpg);
  background-size: cover;
}

.suggest-footer-bg::after {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.3);
  content: "";
}

.suggest-item-z {
  position: relative;
  top: -50px;
  z-index: 100;
}

.suggest-inner {
  z-index: 1;
}

/* お問い合わせ提案エリア */
.suggest-box {
  background: #DDD;
}

.suggest-inner {
  display: table;
  width: 100%;
  padding: 15px 0;
}

.suggest-item {
  width: 100%;
  margin: 0 auto;
  padding: 0;
}

.suggest-text {
  margin: 0 0 10px;
  line-height: 1.5;
}
.suggest-text {
  font-size: 14px;
}
@media print {
  .suggest-text {
    font-size: 14px;
  }
}

.suggest-tel {
  margin: -13px 0 0;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 48px;
  font-family: Antonio, sans-serif;
}
.suggest-tel a {
  color: #CB3DFF;
}

.suggest-btn {
  margin: 0;
}

.suggest-footer-item {
  z-index: 1;
  margin: 0 auto;
  text-align: center;
}
.suggest-footer-item .heading-h3 {
  margin: 0;
  padding: 0 20px;
  color: #fff;
  font-size: 17px;
}

@media screen and (min-width: 768px) {
  .suggest-main-bg {
    height: 790px;
    padding: 40px 0;
  }
  .suggest-inner {
    padding: 0;
  }
  .suggest-item {
    padding: 30px 10px;
  }
  .suggest-half {
    display: table-cell;
    width: 50%;
    vertical-align: middle;
  }
  .suggest-center-box {
    width: 408px;
  }
  .suggest-footer-item .heading-h3 {
    font-size: 32px;
  }
}
/* お問い合わせ提案エリア 中央寄せ */
.suggest-center-box {
  width: 320px;
  margin: auto;
  padding: 10px;
  background: #CB3DFF;
}
.suggest-center-box .heading-h5 {
  color: #000;
}

.suggest-center-item {
  margin: 20px 0 0;
}

.suggest-center-text {
  margin: 30px 0 10px;
}

.suggest-center-tel {
  margin: -13px 0 0;
  color: #fff;
  font-weight: bold;
  font-size: 48px;
  font-family: Antonio, sans-serif;
}
.suggest-center-tel a {
  color: #fff;
}

.suggest-item-z .heading-h2 {
  margin: 0 0 -5px;
  color: #000;
  font-weight: bold;
  font-size: 42px;
  font-family: Antonio, sans-serif;
}

.suggest-item-z .heading-h4 {
  margin: 0 0 6px;
  color: #fff;
  font-weight: bold;
  font-size: 18px;
}

.suggest-item-z .heading-h3 {
  margin: 0 0 20px;
  color: #000;
  font-weight: bold;
  font-size: 18px;
}

.suggest-main-text {
  margin: 0 0 30px;
  color: #fff;
  font-size: 16px;
}

@media (min-width: 768px) {
  .suggest-center-box {
    width: 388px;
    padding: 10px;
  }
  .suggest-item-z .heading-h4 {
    font-size: 20px;
  }
  .suggest-item-z {
    top: -100px;
  }
}
/* ------------------------------
　　サマリー
------------------------------ */
.summary-default {
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #E5E5E5;
  border-left: 1px solid #E5E5E5;
}
.summary-default::before, .summary-default::after {
  display: table;
  content: " ";
}
.summary-default::after {
  clear: both;
}
.summary-default.slick-initialized {
  margin-right: -10px;
  margin-left: -10px;
  overflow: hidden;
  border: 0;
}
.summary-default .slick-list {
  padding: 0 0 0 20px;
  overflow: inherit;
}
.summary-default .slick-dots {
  margin: 0;
}
.summary-default .slick-dots button {
  background: #E5E5E5;
}
.summary-default .slick-dots .slick-active button {
  background: #CB3DFE;
}

.summary-default-item {
  display: block;
  box-sizing: border-box;
  padding: 0 10px;
  color: #333;
  border-right: 1px solid #E5E5E5;
  border-bottom: 1px solid #E5E5E5;
}
.summary-default-item {
  transition: background-color 0.25s ease-out;
}
.acms-entry .summary-default-item {
  padding: 10px;
}
.slick-initialized .summary-default-item {
  width: 280px;
  margin: 2px 10px 2px 2px;
  border: 0;
  box-shadow: 1px 1px 1px 1px rgba(0, 0, 0, 0.08), -1px -1px 1px 1px rgba(0, 0, 0, 0.08);
}

.summary-default-link {
  display: block;
  margin: 0 -10px;
  padding: 10px;
  color: #333;
  transition: background 0.2s;
}
.summary-default-link:hover, .summary-default-link:visited, .summary-default-link:active, .summary-default-link:focus {
  color: #333;
}
.summary-default-link:hover {
  text-decoration: none;
  background: #F1F1F1;
}

.summary-title {
  margin: 0 0 10px;
  font-weight: bold;
}
.summary-title {
  font-size: 16px;
}
@media print {
  .summary-title {
    font-size: 16px;
  }
}

.summary-detail {
  margin: 0;
  line-height: 1.5;
}
.summary-detail {
  font-size: 13px;
}
@media print {
  .summary-detail {
    font-size: 13px;
  }
}

@media screen and (min-width: 480px) {
  .summary-default {
    margin: 0 0 20px;
  }
}
/* ------------------------------
　　サムネイル
------------------------------ */
.thumbnail {
  margin: 0;
  padding: 0;
  list-style: none;
}

.thumbnail-row {
  margin: 0 10px;
  padding: 0;
  list-style: none;
}

.thumbnail-item {
  margin: 0 0 20px;
}

@media screen and (max-width: 767.98px) {
  .thumbnail-row .thumbnail-item {
    padding-right: 5px;
    padding-left: 5px;
  }
}
.thumbnail-link {
  display: block;
  color: #333;
  transition: opacity 0.2s;
}
.thumbnail-link:hover {
  color: #333;
  text-decoration: none;
  opacity: 0.75;
}
.thumbnail-link:visited {
  color: #333;
}

.thumbnail-img {
  display: block;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.thumbnail-img {
  transition: opacity 0.25s ease-out;
}

.thumbnail-title {
  margin: 10px 0;
  font-weight: bold;
}
.thumbnail-title {
  font-size: 15px;
}
@media print {
  .thumbnail-title {
    font-size: 15px;
  }
}

.thumbnail-detail {
  margin: 0;
  line-height: 1.5;
}
.thumbnail-detail {
  font-size: 12px;
}
@media print {
  .thumbnail-detail {
    font-size: 12px;
  }
}

/* ------------------------------
　　トピックパス
------------------------------ */
.topicpath {
  padding: 10px 0;
  background: #fff;
}

.topicpath-list {
  margin: 0 auto;
  list-style: none;
}

.topicpath-item {
  float: left;
  padding: 0 10px 0 23px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAUAAAAICAQAAACb+P2wAAAANElEQVQIW2OYZj/99SQtBgiYGj394VQJKGda1bTz3dwwzpxpc+DM6VtRFcC1TXaY9gpiGAD2DRdFNgzHXgAAAABJRU5ErkJggg==) no-repeat left center;
}
.topicpath-item:first-child {
  padding: 0 10px 0 0;
  background: 0;
}

.topicpath-link {
  color: #666;
}
.topicpath-link {
  font-size: 14px;
}
@media print {
  .topicpath-link {
    font-size: 14px;
  }
}
.topicpath-link:visited, .topicpath-link:focus, .topicpath-link:active {
  color: #666;
}

.topicpath .acms-container {
  max-width: 980px;
}

/* ------------------------------
 ユニットグループ
------------------------------- */
/* ------------------------------
 フロート解除
------------------------------ */
.clearHidden {
  display: block;
  clear: both;
  height: 0;
  margin: 0;
  border: none;
  visibility: hidden;
}

/* ------------------------------
 エントリー内 主な要素
------------------------------ */
.entry-style [class*=acms-col-] {
  padding: 0;
}

/* ------------------------------
 テキストユニットの設定
------------------------------ */
.entry-style h2 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-style h3 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-style h4 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-style h5 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-style h6 {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-style dl {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-style p {
  margin-right: 10px;
  margin-left: 10px;
}
.entry-style blockquote {
  margin: 0 0 20px;
  padding: 10px 20px;
  border-left: solid 5px #ccc;
}

/* ------------------------------
各種ユニットの設定
------------------------------ */
.entry-style [class*=column-image] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-style [class*=column-file] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-style [class*=column-map] {
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  box-sizing: border-box;
}

.entry-style [class*=column-yolp] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-style [class*=column-street-view]:not(.column-street-view-inner) {
  padding-right: 10px;
  padding-left: 10px;
}

.entry-style [class*=column-youtube] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-style [class*=column-video] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-style [class*=column-eximage] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-style [class*=column-media] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

.entry-style [class*=column-quote] {
  margin-right: 10px;
  margin-left: 10px;
}

.entry-style [class*=column-module] {
  padding-left: 10px;
  padding-right: 10px;
  box-sizing: border-box;
}

[class*=column-image] {
  margin-bottom: 20px;
}

[class*=column-file] {
  margin-bottom: 20px;
}

[class*=column-map] {
  margin-bottom: 20px;
}

[class*=column-yolp] {
  margin-bottom: 20px;
}

[class*=column-street-view] {
  margin-bottom: 20px;
}

[class*=column-youtube] {
  margin-bottom: 20px;
}

[class*=column-video] {
  margin-bottom: 20px;
}

[class*=column-eximage] {
  margin-bottom: 20px;
}

[class*=column-media] {
  margin-bottom: 20px;
}

[class*=column-quote] {
  margin-bottom: 20px;
}

[class*=column-module] {
  margin-bottom: 20px;
}

/* 画像・メディア・画像URLの共通設定 */
[class*=column-image],
[class*=column-media],
[class*=column-eximage] {
  display: block;
}
[class*=column-image].caption,
[class*=column-media].caption,
[class*=column-eximage].caption {
  margin-bottom: 10px;
}
[class*=column-image] a,
[class*=column-media] a,
[class*=column-eximage] a {
  display: block;
}
[class*=column-image] img,
[class*=column-media] img,
[class*=column-eximage] img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
[class*=column-image] .caption,
[class*=column-media] .caption,
[class*=column-eximage] .caption {
  margin: 5px 0 0;
}

/* 画像ユニットの設定 */
[class*=column-image][style*=width] {
  max-width: 100%;
}

/* メディアの種類がファイルだった時の設定 */
[class*=column-media] a[href*=media-download] {
  display: inline-block;
  width: 100%;
}

/* 地図・Yahooo!地図の共通設定 */
[class*=column-map] > img,
[class*=column-yolp] > img {
  max-width: 100%;
}
[class*=column-map] img,
[class*=column-yolp] img {
  width: auto;
  height: auto;
}

[class*=column-map] > div {
  max-width: 100%;
}

[class*=column-yolp] {
  width: auto !important;
}

[class*=column-quote] {
  /* 引用ユニット画像 */
  /* 引用ユニットテキスト */
}
[class*=column-quote] blockquote {
  padding: 20px 10px 20px 20px;
}
[class*=column-quote] .quoteImageContainer {
  position: relative;
  float: left;
  max-width: 154px;
  margin-right: 25px;
}
[class*=column-quote] .quoteImage {
  display: block;
  max-width: 100%;
  height: auto;
}
[class*=column-quote] .quoteTitle {
  margin: 0 0 5px;
  padding: 0;
  line-height: 1.4;
}
[class*=column-quote] .quoteTitle {
  font-size: 18px;
}
@media print {
  [class*=column-quote] .quoteTitle {
    font-size: 18px;
  }
}
[class*=column-quote] .quoteTitleLink {
  color: #006dd9;
}
[class*=column-quote] .quoteSiteName {
  margin: 0 0 10px;
  padding: 0;
  color: #4b4b4b;
}
[class*=column-quote] .quoteSiteName {
  font-size: 11px;
}
@media print {
  [class*=column-quote] .quoteSiteName {
    font-size: 11px;
  }
}
[class*=column-quote] .quoteDescription {
  margin: 0;
  padding: 0;
  color: #333;
  line-height: 1.6;
}
[class*=column-quote] .quoteDescription {
  font-size: 12px;
}
@media print {
  [class*=column-quote] .quoteDescription {
    font-size: 12px;
  }
}

/* 配置のスタイル */
.column-image-left {
  float: left;
  text-align: left;
}

.column-image-right {
  float: right;
  text-align: right;
}

.column-image-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-image-auto {
  float: none;
}

/* 配置のスタイル */
.column-file-left {
  text-align: left;
}
.column-file-left + .caption {
  text-align: left;
}
.column-file-left {
  float: left;
  text-align: left;
}

.column-file-right {
  text-align: right;
}
.column-file-right + .caption {
  text-align: right;
}
.column-file-right {
  float: right;
  text-align: right;
}

.column-file-center {
  text-align: center;
}
.column-file-center + .caption {
  text-align: center;
}
.column-file-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-file-auto {
  text-align: auto;
}
.column-file-auto + .caption {
  text-align: auto;
}
.column-file-auto {
  float: none;
}

/* 配置のスタイル */
.column-map-left {
  float: left;
  text-align: left;
}

.column-map-right {
  float: right;
  text-align: right;
}

.column-map-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-map-auto {
  float: none;
}

/* 配置のスタイル */
.column-yolp-left {
  float: left;
  text-align: left;
}

.column-yolp-right {
  float: right;
  text-align: right;
}

.column-yolp-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-yolp-auto {
  float: none;
}

/* 配置のスタイル */
.column-street-view-left {
  float: left;
  text-align: left;
}

.column-street-view-right {
  float: right;
  text-align: right;
}

.column-street-view-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-street-view-auto {
  float: none;
}

/* 配置のスタイル */
.column-youtube-left {
  float: left;
  text-align: left;
}

.column-youtube-right {
  float: right;
  text-align: right;
}

.column-youtube-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-youtube-auto {
  float: none;
}

/* 配置のスタイル */
.column-video-left {
  float: left;
  text-align: left;
}

.column-video-right {
  float: right;
  text-align: right;
}

.column-video-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-video-auto {
  float: none;
}

/* 配置のスタイル */
.column-eximage-left {
  float: left;
  text-align: left;
}

.column-eximage-right {
  float: right;
  text-align: right;
}

.column-eximage-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-eximage-auto {
  float: none;
}

/* 配置のスタイル */
.column-media-left :not([href*=media-download], [href*=storage]) + .caption {
  /* 画像のキャプションを中央寄せにする記述(media-downloadは動的、storageは静的書き出しに対応しています) */
  text-align: center;
}
.column-media-left {
  float: left;
  text-align: left;
}

.column-media-right :not([href*=media-download], [href*=storage]) + .caption {
  /* 画像のキャプションを中央寄せにする記述(media-downloadは動的、storageは静的書き出しに対応しています) */
  text-align: center;
}
.column-media-right {
  float: right;
  text-align: right;
}

.column-media-center :not([href*=media-download], [href*=storage]) + .caption {
  /* 画像のキャプションを中央寄せにする記述(media-downloadは動的、storageは静的書き出しに対応しています) */
  text-align: center;
}
.column-media-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-media-auto :not([href*=media-download], [href*=storage]) + .caption {
  /* 画像のキャプションを中央寄せにする記述(media-downloadは動的、storageは静的書き出しに対応しています) */
  text-align: center;
}
.column-media-auto {
  float: none;
}

/* 配置のスタイル */
.column-quote-left {
  float: left;
  text-align: left;
}

.column-quote-right {
  float: right;
  text-align: right;
}

.column-quote-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-quote-auto {
  float: none;
}

/* 配置のスタイル */
.column-module-left {
  float: left;
  text-align: left;
}

.column-module-right {
  float: right;
  text-align: right;
}

.column-module-center {
  display: block;
  float: none;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.column-module-auto {
  float: none;
}

/* .acms-entry-unit-fullの設定 */
.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-image] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-file] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-map] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-yolp] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-street-view] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-youtube] {
  width: 100% !important;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-video] {
  width: 100% !important;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-eximage] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-media] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-quote] {
  width: auto !important;
  max-width: 100%;
}

.acms-entry-unit-full:not(.acms-unit-size-inherit) [class*=column-module] {
  width: auto !important;
  max-width: 100%;
}

@media (max-width: 480px) {
  [class*=acms-col-][class*=-right] {
    float: left;
  }
  [class*=acms-col-][class*=-right] + * {
    clear: both;
  }
}
/* ------------------------------
 共通の要素
------------------------------ */
.entry-container {
  margin-right: 10px;
  margin-left: 10px;
}

/* PDFプレビュー */
.column-pdf-image {
  width: 100%;
  border: solid 1px #aaa;
}

/* ストリートビュー */
.column-inner-street-view {
  width: 100%;
  padding-bottom: 100%;
}

/* YouTube動画をレスポンシブ対応させるための記述 */
.column-iframe {
  position: relative;
  width: 100%;
  height: 100%;
  padding-top: 30px;
  padding-bottom: 56.25%;
  overflow: hidden;
}
.column-iframe iframe,
.column-iframe object,
.column-iframe embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------------------------------
 検索
------------------------------ */
/* 検索結果のハイライト
------------------------------ */
.highlight1 {
  background-color: #ff6;
}

.highlight2 {
  background-color: #a0ffff;
}

.highlight3 {
  background-color: #9f9;
}

.highlight4 {
  background-color: #f99;
}

.highlight5 {
  background-color: #f6f;
}

.highlight6 {
  background-color: #800;
}

/* ------------------------------
　　エントリー
------------------------------ */
.entry {
  margin: 0 0 25px 0;
  border-bottom: none;
}

.entry-style-grid {
  max-width: 100%;
}

.entry-style {
  max-width: 100%;
}

.page-header {
  margin: 0 0 20px;
}

.entry-info {
  margin-top: 0;
}
.entry-info {
  font-size: 14px;
}
@media print {
  .entry-info {
    font-size: 14px;
  }
}

/* カテゴリーと新着ラベル */
.entry-category,
.entry-new {
  font-size: 14px;
}
@media print {
  .entry-category,
  .entry-new {
    font-size: 14px;
  }
}

/* タイトル */
.entry-title {
  margin: 10px 0;
}
.entry-title a {
  color: #333;
}
.acms-entry h2 .entry-title {
  padding: 0;
}

.entry-style-top {
  padding: 0 5px;
}

.entry-style-grid {
  margin: 0 -10px;
}

/* エントリーのスタイル */
.entry-style {
  color: #333;
  word-wrap: break-word;
}
.entry-style h2 {
  margin: 0 10px 25px 10px;
  padding: 5px 10px;
  color: #666;
  border-left: 4px solid #666;
}
.entry-style h2 {
  font-size: 20px;
}
@media print {
  .entry-style h2 {
    font-size: 20px;
  }
}
.entry-style h2.module-heading {
  margin: 0;
  padding: 0;
  border: 0;
}
.entry-style h2.entry-heading-center {
  position: relative;
  margin: 20px 0 25px;
  color: #333;
  text-align: center;
  border: 0;
}
.entry-style h2.entry-heading-center {
  font-size: 16px;
}
@media print {
  .entry-style h2.entry-heading-center {
    font-size: 16px;
  }
}
.entry-style h2.entry-heading-center::before {
  position: absolute;
  right: 0;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  margin: 0 auto;
  background: #999;
  content: "";
}
.entry-style h3 {
  margin: 0 10px 20px 10px;
  padding: 5px 10px;
  color: #333;
}
.entry-style h3 {
  font-size: 18px;
}
@media print {
  .entry-style h3 {
    font-size: 18px;
  }
}
.entry-style h4 {
  margin: 0 10px 20px 10px;
  color: #333;
}
.entry-style h4 {
  font-size: 18px;
}
@media print {
  .entry-style h4 {
    font-size: 18px;
  }
}
.entry-style a:link {
  text-decoration: none;
}
.entry-style a:hover, .entry-style a:focus, .entry-style a:active {
  text-decoration: underline;
}
.entry-style a:visited {
  color: #7f5ad7;
  text-decoration: none;
}

@media (min-width: 768px) {
  .entry-style h2.entry-heading-center {
    margin: 0 20px 35px 0;
  }
  .entry-style h2.entry-heading-center {
    font-size: 22px;
  }
}
@media print and (min-width: 768px) {
  .entry-style h2.entry-heading-center {
    font-size: 22px;
  }
}
@media (min-width: 768px) {
  .entry-style h2.entry-heading-center::before {
    bottom: -15px;
  }
}
/* 本文 */
.entry-style p {
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.7;
}
.entry-style p {
  font-size: 16px;
}
@media print {
  .entry-style p {
    font-size: 16px;
  }
}
.entry-style p.entry-danger-text {
  color: #c41134;
  font-weight: bold;
}
.entry-style p.summary-title {
  margin: 0 0 10px;
}
.entry-style p.summary-detail {
  margin: 0 0 10px;
}
.entry-style p.summary-detail {
  font-size: 14px;
}
@media print {
  .entry-style p.summary-detail {
    font-size: 14px;
  }
}
.entry-style p.entry-lead-text {
  margin-bottom: 25px;
  line-height: 1.5;
  text-align: center;
}
.entry-style p.entry-lead-text {
  font-size: 20px;
}
@media print {
  .entry-style p.entry-lead-text {
    font-size: 20px;
  }
}

@media (min-width: 768px) {
  .entry-style p.entry-lead-text {
    margin: 0 0 40px;
  }
  .entry-style p.entry-lead-text {
    font-size: 30px;
  }
}
@media print and (min-width: 768px) {
  .entry-style p.entry-lead-text {
    font-size: 30px;
  }
}
/* エントリー内コンテナー */
.entry-container {
  margin: 0 10px;
}

[class^=column-table] .entry-container {
  margin-bottom: 30px;
  overflow-x: auto;
}

[class^=column-table] table {
  margin-bottom: 0;
}

/* テーブル */
.entry-style table {
  width: 100%;
  border-collapse: collapse;
}
.entry-style th,
.entry-style td {
  padding: 5px 10px;
  color: #333;
  line-height: 1.5;
  text-align: left;
}
.entry-style th,
.entry-style td {
  font-size: 16px;
}
@media print {
  .entry-style th,
  .entry-style td {
    font-size: 16px;
  }
}
.entry-style .acms-table-responsive {
  border-top: 0;
  border-bottom: 0;
}
.entry-style .acms-table-responsive th,
.entry-style .acms-table-responsive td {
  display: table-cell;
  white-space: nowrap;
}
.entry-style .acms-table-responsive table {
  margin: 0;
}
.entry-style th {
  background: #fff;
}
.entry-style .entry-custom-table {
  margin-bottom: 25px;
}

@media (min-width: 768px) {
  .entry-style th,
  .entry-style td {
    display: table-cell;
    padding: 15px 20px;
    text-align: left;
  }
  .entry-style th,
  .entry-style td {
    font-size: 16px;
  }
}
@media print and (min-width: 768px) {
  .entry-style th,
  .entry-style td {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  .entry-style th {
    background: inherit;
  }
  .entry-style tr:nth-child(odd) {
    background: #fff;
  }
}
/* リスト */
.entry-style ul {
  margin: 0 10px 25px 10px;
  padding: 0 0 0 2em;
}
.entry-style ul li {
  margin: 0 0 5px;
  line-height: 1.5;
}
.entry-style ul li {
  font-size: 16px;
}
@media print {
  .entry-style ul li {
    font-size: 16px;
  }
}
.entry-style ul.summary-default {
  padding: 0;
}
.entry-style ul.summary-default li {
  margin: 0;
}

/* 番号付きリスト */
.entry-style ol {
  margin: 0 10px 25px 10px;
  padding: 0 0 0 2em;
}
.entry-style ol li {
  margin: 0 0 5px;
  line-height: 1.5;
}
.entry-style ol li {
  font-size: 16px;
}
@media print {
  .entry-style ol li {
    font-size: 16px;
  }
}

/* 定義リスト */
.entry-style dl {
  margin-top: 0;
  margin-bottom: 30px;
  line-height: 1.5;
}
.entry-style dl {
  font-size: 16px;
}
@media print {
  .entry-style dl {
    font-size: 16px;
  }
}
.entry-style dt {
  margin: 0 0 5px;
  font-weight: bold;
  line-height: 1.2;
}
.entry-style dt {
  font-size: 16px;
}
@media print {
  .entry-style dt {
    font-size: 16px;
  }
}
.entry-style dd {
  margin-bottom: 10px;
  margin-left: 0;
  line-height: 1.5;
}
.entry-style dd {
  font-size: 16px;
}
@media print {
  .entry-style dd {
    font-size: 16px;
  }
}

/* 引用 */
.entry-style blockquote {
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 10px 20px 20px;
  line-height: 1.8;
  background: #F5F5F5;
  border-left: 5px solid #DEDEDE;
}
.entry-style blockquote {
  font-size: 16px;
}
@media print {
  .entry-style blockquote {
    font-size: 16px;
  }
}
.entry-style .column-quote-auto blockquote {
  padding: 10px;
  border: 1px solid #D0D0D0;
}
.entry-style .column-quote-auto .quoteTitleLink {
  color: #333;
}

@media (min-width: 480px) {
  /* 引用 */
  .entry-style blockquote {
    padding: 20px 20px 20px 30px;
  }
  .entry-style .column-quote-auto blockquote {
    padding: 15px;
  }
}
/* ソースコード */
.entry-style pre {
  box-sizing: border-box;
  width: 100%;
  margin: 0 0 30px 0;
  font-family: "Menlo", "Monaco", "Courier New", monospace;
  white-space: pre-wrap;
}
.entry-style pre ol {
  margin: 0;
  padding: 0 0 0 2.5em;
}
.entry-style pre ol li {
  line-height: 1.5;
}

/* 区切り線 */
.entry-style hr {
  border: 0;
  border-bottom: 1px solid #E5E5E5;
}

/* ユニット */
.entry-style .caption {
  font-size: 13px;
}
@media print {
  .entry-style .caption {
    font-size: 13px;
  }
}

.column-file-auto + .caption {
  margin-left: 10px;
}

[class*=column-media-] a,
[class*=column-image-] a {
  transition: opacity 0.2s;
}
[class*=column-media-] a:hover,
[class*=column-image-] a:hover {
  opacity: 0.8;
}

/* ユニットグループ */
.ug-bg-color {
  margin: 0 10px 25px 10px;
  padding: 20px 10px;
  overflow: hidden;
  background: #F5F5F5;
}
.ug-bg-color *:last-child {
  margin-bottom: 0;
}
.ug-bg-color h2 {
  margin-bottom: 10px;
  padding-top: 0;
  padding-bottom: 0;
}
.ug-bg-color h3,
.ug-bg-color h4 {
  margin-bottom: 10px;
}

@media (min-width: 480px) {
  .ug-bg-color {
    padding: 25px 15px;
  }
}
/* スタッフ紹介 */
.entry-style .staff-list {
  display: flex;
  flex-flow: row wrap;
  margin: 0 10px 30px;
  padding: 0;
  list-style: none;
  border-top: 1px solid #EEE;
}
.entry-style .staff-item {
  width: 50%;
  margin: 0;
}
.entry-style .staff-inner {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 20px 10px;
  border-bottom: 1px solid #EEE;
}
.entry-style .staff-body {
  order: 2;
  margin: 0 0 20px;
}
.entry-style .staff-name {
  margin: 0 0 15px;
  padding: 0;
  line-height: 1.3;
  text-align: center;
  background: 0;
}
.entry-style .staff-name {
  font-size: 20px;
}
@media print {
  .entry-style .staff-name {
    font-size: 20px;
  }
}
.entry-style .staff-job {
  margin: 15px 0 5px;
  line-height: 1.3;
  text-align: center;
}
.entry-style .staff-job {
  font-size: 14px;
}
@media print {
  .entry-style .staff-job {
    font-size: 14px;
  }
}
.entry-style .staff-profile {
  margin: 0;
}
.entry-style .staff-profile {
  font-size: 14px;
}
@media print {
  .entry-style .staff-profile {
    font-size: 14px;
  }
}
.entry-style .staff-img-wrap {
  order: 1;
}
.entry-style .staff-img {
  display: block;
  margin: 0 auto;
  border-radius: 100%;
}

@media (min-width: 768px) {
  .entry-style .staff-item {
    width: 25%;
  }
  .entry-style .staff-body {
    margin: 0;
  }
}
/* 動的フォーム */
.entry-style ul.contact-form {
  margin: 0;
  padding: 0;
}
.entry-style ul.contact-form li {
  margin: 0;
}
.entry-style tr.contact-form-group:nth-child(odd) {
  background: inherit;
}
.entry-style .contact-form th,
.entry-style .contact-form td {
  background: inherit;
  border: 0;
}

/* エントリーフッター */
.entry-footer {
  display: flex;
  flex-direction: column;
  margin: 0 0 20px;
  padding: 10px;
  background: #f5f5f5;
}

/* タグ */
.entry-tag {
  margin: 0 0 5px;
}

.entry-tag-icon {
  float: left;
  color: #707070;
}

.entry-tag-item {
  float: left;
  margin: 0 0 0 10px;
}

.entry-footer-item + .entry-footer-item {
  margin: 10px 0 0;
}

@media (min-width: 768px) {
  .entry-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
  }
  .entry-footer-item + .entry-footer-item {
    margin: 0 0 0 auto;
  }
}
/* SNSシェア */
.share-wrapper {
  display: flex;
  align-items: center;
}

.share-text {
  display: inline;
  float: left;
  margin: 0;
}

@media (min-width: 768px) {
  .share-wrapper {
    float: right;
  }
}
/* SNSシェアボタン */
.share-list {
  display: inline-flex;
  float: right;
  margin: 0;
  padding: 0;
  list-style: none;
}

.share-item {
  display: inline-block;
  margin: 0 0 0 15px;
  vertical-align: top;
}
.share-item a {
  color: #999;
  text-decoration: none;
}
.share-item [class*=acms-icon] {
  vertical-align: middle;
}
.share-item [class*=acms-icon] {
  font-size: 22px;
}
@media print {
  .share-item [class*=acms-icon] {
    font-size: 22px;
  }
}
.share-item .share-item-facebook { /* Facebook */
  position: relative;
  color: #1877f2;
  line-height: 1.2;
}
.share-item .share-item-facebook::before {
  vertical-align: middle;
}
.share-item .share-item-facebook:focus::before {
  position: absolute;
  inset: -1px;
  border: 1px dotted #333;
  content: "";
}
.share-item .share-item-twitter { /* Twitter */
  position: relative;
  color: #000;
  line-height: 1.2;
}
.share-item .share-item-twitter::before {
  vertical-align: middle;
}
.share-item .share-item-twitter:focus::before {
  position: absolute;
  inset: -1px;
  border: 1px dotted #333;
  content: "";
}

/* 続きを読むボタン */
.continue-link {
  margin: 0;
}
.continue-link {
  font-size: 16px;
}
@media print {
  .continue-link {
    font-size: 16px;
  }
}

.continue-link a {
  display: inline-block;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  background: #767676;
  border-radius: 3px;
}
.continue-link a [class*=acms-icon] {
  margin: 0 10px 0 0;
}
.continue-link a:link, .continue-link a:visited {
  color: #fff;
}
.continue-link a:hover, .continue-link a:focus, .continue-link a:active {
  color: #fff;
  text-decoration: none;
  background: #aaa;
}

@media (min-width: 768px) {
  /* タグ */
  .entry-tag {
    margin: 0;
  }
  /* 続きを読むボタン */
  .continue-link a {
    padding: 5px 10px;
    font-weight: normal;
  }
}
/* テーブルデザイン */
.table_design1 table {
  width: 100%;
  border-collapse: collapse;
}

.table_design1 {
  position: relative;
  z-index: 2;
  width: 99%;
  margin: 0 1%;
  font-size: 16px;
}

.table_design1 th, .table_design1 td {
  padding: 1em;
  border-bottom: 1px solid #000;
}

.table_design1 th {
  position: relative;
  width: 35%;
  min-width: 4em;
  font-weight: bold;
  text-align: left;
}

.table_design1 th::after {
  position: absolute;
  top: 50%;
  left: 100%;
  width: 1px;
  height: 75%;
  background-color: #000;
  transform: translateY(-50%);
  content: "";
}

.table_design1 tr:last-child th,
.table_design1 tr:last-child td {
  border-top: none;
  border-bottom: none;
}

.table_design2 table {
  width: 100%;
  border-collapse: collapse;
}

.table_design2 {
  position: relative;
  z-index: 2;
  width: 100%;
  font-size: 16px;
}

.table_design2 th,
.table_design2 td {
  box-sizing: border-box;
}

.company-table {
  align-items: center;
  justify-content: center;
  height: 100%;
  margin-bottom: 10px;
}

.table_design4 {
  width: 90%;
  margin: 0 auto;
  padding: 5px 10px 20px;
  border-collapse: collapse;
}

.table_design4 th, .table_design4 td {
  padding: 10px;
  background-color: #fff;
  border: 1px solid #b4b4b4;
}

.table_design4 th {
  font-weight: bold;
  background-color: #dadada;
}

@media (min-width: 768px) {
  .table_design1 {
    width: 60%;
    margin: 0 auto;
  }
  .table_design1 th {
    width: 25%;
  }
  .table_design2 {
    width: 60%;
    margin: 0 auto;
  }
  .table_design2 th,
  .table_design2 td {
    box-sizing: border-box;
    padding: 10px;
  }
  .table_design2 th {
    position: relative;
    width: 30%;
  }
  .table_design4 {
    width: 470px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1023.98px) {
  .table_design2 {
    width: 100%;
  }
  .table_design2 th,
  .table_design2 td {
    display: block;
    width: 100%;
    text-align: left;
    border-bottom: none;
  }
  .table_design2 th {
    padding-top: 20px;
    padding-left: 10px;
    font-size: 20px;
  }
  .table_design2 td {
    padding: 0 10px 30px;
    border-bottom: 1px solid #b3b3b3;
  }
}
/* ------------------------------
　　テキストユニットのエディターの設定
------------------------------ */
/* エントリー内ボタン */
.entry-style,
.entryFormLiteEditor {
  /* 色付きボタン */
  /* ボタン内のアイコン */
}
.entry-style .entry-btn-default,
.entryFormLiteEditor .entry-btn-default {
  background: #666;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 0;
}
.entry-style .entry-btn-default:hover, .entry-style .entry-btn-default:visited,
.entryFormLiteEditor .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:visited {
  color: #FFF;
  text-decoration: none;
}
.entry-style .entry-btn-default:focus, .entry-style .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active {
  color: #FFF;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.entry-style .entry-btn-default:hover,
.entryFormLiteEditor .entry-btn-default:hover {
  color: #FFF;
  background-color: #444;
  background-image: linear-gradient(to bottom, #666, #444);
}
.entry-style .entry-btn-default:active, .entry-style .entry-btn-default:focus,
.entryFormLiteEditor .entry-btn-default:active,
.entryFormLiteEditor .entry-btn-default:focus {
  background: #444;
}
.entry-style .entry-btn-attention,
.entryFormLiteEditor .entry-btn-attention {
  background: #CB3DFE;
  color: #FFF;
  font-weight: bold;
  line-height: 1.3;
  border: 0;
  display: inline-block;
  padding: 6px 15px;
  border-radius: 0;
}
.entry-style .entry-btn-attention:hover, .entry-style .entry-btn-attention:visited,
.entryFormLiteEditor .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:visited {
  color: #FFF;
  text-decoration: none;
}
.entry-style .entry-btn-attention:focus, .entry-style .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active {
  color: #FFF;
  box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
}
.entry-style .entry-btn-attention:hover,
.entryFormLiteEditor .entry-btn-attention:hover {
  color: #FFF;
  background-color: #c82fff;
  background-image: linear-gradient(to bottom, #da72ff, #c82fff);
}
.entry-style .entry-btn-attention:active, .entry-style .entry-btn-attention:focus,
.entryFormLiteEditor .entry-btn-attention:active,
.entryFormLiteEditor .entry-btn-attention:focus {
  background: #c82fff;
}
.entry-style .entry-btn-icon-before,
.entryFormLiteEditor .entry-btn-icon-before {
  margin: 0 10px 0 0;
}
.entry-style .entry-btn-icon-after,
.entryFormLiteEditor .entry-btn-icon-after {
  margin: 0 0 0 10px;
}

/* ------------------------------
　　編集ページ
------------------------------ */
.field-title {
  padding: 0 10px;
}

.field-title:first-child {
  margin: 0 0 10px;
}

.field-table-inner {
  width: 100%;
}
.field-table-inner th,
.field-table-inner td {
  border: 0;
}

/* ------------------------------
　　メインカラム
------------------------------ */
.main::before, .main::after {
  display: table;
  content: " ";
}
.main::after {
  clear: both;
}

.main-inner {
  width: 100%;
  max-width: 820px;
}
.main-inner.is-space-left {
  float: right;
}
.main-inner.is-space-right {
  float: left;
}
.main-inner.is-space-center {
  margin: 0 auto;
}

/* ------------------------------
　　サイドカラム
------------------------------ */
.side-title {
  margin-top: 0;
}
.side-title {
  font-size: 18px;
}
@media print {
  .side-title {
    font-size: 18px;
  }
}

/* ------------------------------
　　お問い合わせ
------------------------------ */
.contact-box .message-group {
  margin: 0 0 35px;
}
.contact-box .message-text {
  color: #CB3DFE;
  font-weight: bold;
}
.contact-box .contact-no {
  margin: 0;
  color: #333;
  font-weight: bold;
}
.contact-box .contact-no {
  font-size: 30px;
}
@media print {
  .contact-box .contact-no {
    font-size: 30px;
  }
}
.contact-box .contact-no a {
  color: inherit;
}
.contact-box .error-text {
  /* エラー文 */
  margin: 5px 0 0;
  color: #CB3DFE;
}
.contact-box p {
  line-height: 1.6;
}

.contact-form {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 20px;
  padding: 0;
  list-style: none;
  background: #E5E5E5;
}

.contact-form-heading {
  margin: 40px 0 10px;
}

.contact-form-group {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding: 0;
  background: #E5E5E5;
  border-bottom: 1px solid #FFF;
}

.contact-form-group fieldset {
  /*! autoprefixer: ignore next */
  display: contents;
  border: 0;
}

.contact-form-label {
  display: block;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding: 10px 10px 0;
  font-weight: bold;
  text-align: left;
}

.contact-form-control {
  display: block;
  box-sizing: border-box;
  width: 100%;
  padding: 10px;
}

.contact-form-grid {
  margin: 0 -5px;
}

.contact-form-col,
.acms-entry .contact-form-col {
  margin: 0 0 10px;
  padding: 0 5px;
}
.contact-form-col:last-child,
.acms-entry .contact-form-col:last-child {
  margin: 0;
}

.contact-bg .entry-style-grid {
  width: 90%;
  margin: 0 auto;
  padding: 20px 10px 0;
  background: #fff;
  box-shadow: 1px 1px 4px gray;
}

.contact-top-bg {
  padding: 20px 10px 40px;
  color: #fff;
  text-align: center;
  background: #CB3DFF;
}
.contact-top-bg .heading-h3 {
  margin: 0;
  color: #fff;
  font-size: 25px;
}

.table_design3 th {
  font-weight: bold;
  text-align: left;
  background-color: #e4e4e4;
}

.table_design3 td {
  padding: 25px 20px;
}

.table_design3 .entry-container {
  margin-bottom: 15px;
}

.section-bg .entry-style h3 {
  margin: 0 10px 20px;
  padding: 5px 10px;
  color: #fff;
  font-size: 20px;
  background: #CB3DFF;
}

@media (min-width: 768px) {
  .contact-form {
    width: 100%;
  }
  .contact-form-label {
    padding: 15px 15px 5px;
    vertical-align: top;
  }
  .contact-form-control {
    padding: 5px 15px 15px;
  }
  .contact-form-col {
    margin: 0;
  }
  .contact-bg .entry-style-grid {
    padding: 20px 20px 0;
    background: #fff;
  }
  .table_design3 table {
    width: 100%;
    border-collapse: collapse;
  }
  .table_design3 {
    position: relative;
    z-index: 2;
    font-size: 16px;
  }
  .table_design3 th, .table_design3 td {
    padding: 20px 25px;
    background-color: #fff;
    border-bottom: 1px solid #000;
  }
  .table_design3 th {
    position: relative;
    width: 20%;
    min-width: 4em;
    font-weight: bold;
    text-align: left;
  }
  .table_design3 th::after {
    position: absolute;
    top: 50%;
    left: 100%;
    width: 1px;
    height: 70%;
    background-color: #000;
    transform: translateY(-50%);
    content: "";
  }
  .table_design3 tr:last-child th,
  .table_design3 tr:last-child td {
    border-top: none;
    border-bottom: none;
  }
  .section-bg .entry-style h3 {
    margin: 5px 10px 20px;
    padding: 10px;
    color: #fff;
    font-size: 20px;
    background: #CB3DFF;
  }
  .contact-top-bg {
    padding: 25px 0 50px;
  }
  .contact-top-bg .heading-h3 {
    font-size: 32px;
  }
}
@media screen and (width <= 640px) {
  .table_design3 th,
  .table_design3 td {
    display: block;
  }
}
/* ステップ
------------------------------ */
.contact-box .mail-step {
  margin: 0 0 25px;
  padding: 0 10px;
  background: #E5E5E5;
  /* カウンターの設定 */
  counter-reset: mailStep;
}
.contact-box .mail-step-item {
  float: left;
  margin: 0 5px;
  padding: 14px 0 10px;
  color: #999;
  font-weight: bold;
  list-style: none;
  border-bottom: 4px solid transparent;
}
.contact-box .mail-step-item {
  font-size: 14px;
}
@media print {
  .contact-box .mail-step-item {
    font-size: 14px;
  }
}
.contact-box .mail-step-item::before {
  content: counter(mailStep) ".";
  /* カウンターの設定 */
  counter-increment: mailStep;
}
.contact-box .mail-step-item-current {
  color: #333;
  border-bottom: 4px solid #333;
}
@media (min-width: 768px) {
  .contact-box .mail-step-item {
    margin: 0 10px;
    padding: 18px 0 14px;
  }
  .contact-box .mail-step-item {
    font-size: 16px;
  }
}
@media print and (min-width: 768px) {
  .contact-box .mail-step-item {
    font-size: 16px;
  }
}

/* 送信ボタン
------------------------------ */
.form-btn-box {
  margin: 0 10px 50px;
  text-align: center;
}

.form-btn {
  display: inline-block;
}

@media (min-width: 768px) {
  .form-btn-send {
    width: 100%;
    max-width: 360px;
  }
}
/* ラベル
------------------------------ */
.label-required {
  margin: 0 5px;
  padding: 2px 8px;
  color: #FFF;
  background: #CB3DFE;
  border-radius: 3px;
}
.label-required {
  font-size: 12px;
}
@media print {
  .label-required {
    font-size: 12px;
  }
}

@media (min-width: 768px) {
  .label-required {
    margin: 0 10px;
  }
}
/* フォーム要素
------------------------------ */
.contact-box select[required]:required {
  border: 1px solid #C49511;
}
.contact-box select.focused:invalid {
  border: 1px solid #c41134;
}
.contact-box select[required]:valid {
  border: 1px solid #A7A7AA;
}
.contact-box input[required]:required,
.contact-box textarea[required]:required {
  background: #FFFDEB;
}
.contact-box input.focused:invalid,
.contact-box textarea.focused:invalid {
  background: #FFEBEE;
}
.contact-box input[required]:valid,
.contact-box textarea[required]:valid {
  background: #FFF;
}
.contact-box input[type=text],
.contact-box input[type=password],
.contact-box input[type=datetime],
.contact-box input[type=datetime-local],
.contact-box input[type=date],
.contact-box input[type=month],
.contact-box input[type=time],
.contact-box input[type=week],
.contact-box input[type=number],
.contact-box input[type=email],
.contact-box input[type=url],
.contact-box input[type=search],
.contact-box input[type=tel] {
  box-sizing: border-box;
  min-height: 30px;
  padding: 0 5px;
}
.contact-box input[type=text],
.contact-box input[type=password],
.contact-box input[type=datetime],
.contact-box input[type=datetime-local],
.contact-box input[type=date],
.contact-box input[type=month],
.contact-box input[type=time],
.contact-box input[type=week],
.contact-box input[type=number],
.contact-box input[type=email],
.contact-box input[type=url],
.contact-box input[type=search],
.contact-box input[type=tel] {
  font-size: 16px;
}
@media print {
  .contact-box input[type=text],
  .contact-box input[type=password],
  .contact-box input[type=datetime],
  .contact-box input[type=datetime-local],
  .contact-box input[type=date],
  .contact-box input[type=month],
  .contact-box input[type=time],
  .contact-box input[type=week],
  .contact-box input[type=number],
  .contact-box input[type=email],
  .contact-box input[type=url],
  .contact-box input[type=search],
  .contact-box input[type=tel] {
    font-size: 16px;
  }
}
.contact-box textarea {
  padding: 5px 5px 4px;
}
.contact-box textarea {
  font-size: 16px;
}
@media print {
  .contact-box textarea {
    font-size: 16px;
  }
}
.contact-box select {
  min-height: 30px;
  padding-top: 4px;
  padding-bottom: 4px;
  vertical-align: top;
  background-color: #f7f7f7;
}
.contact-box select {
  font-size: 16px;
}
@media print {
  .contact-box select {
    font-size: 16px;
  }
}

@media (min-width: 768px) {
  .contact-box input[type=text],
  .contact-box input[type=password],
  .contact-box input[type=datetime],
  .contact-box input[type=datetime-local],
  .contact-box input[type=date],
  .contact-box input[type=month],
  .contact-box input[type=time],
  .contact-box input[type=week],
  .contact-box input[type=number],
  .contact-box input[type=email],
  .contact-box input[type=url],
  .contact-box input[type=search],
  .contact-box input[type=tel] {
    min-height: 40px;
    padding: 5px 8px;
  }
  .contact-box textarea {
    padding: 5px 8px;
  }
  .contact-box select {
    min-height: 40px;
    padding-left: 8px;
  }
}
/* バリデーター
------------------------------ */
.valid-mark {
  display: none;
}

.valid-mark.valid {
  display: inline;
  float: right;
  color: #5cb85c;
}

.invalid {
  background-color: #ffebee !important;
}

/* ------------------------------
　　フッター
------------------------------ */
/* フッター内会社情報 */
.foot-wrapper {
  padding: 30px 0;
  background: #000;
}

.company-about {
  margin: 0 0 10px 10px;
  color: #FFF;
  line-height: 1.5;
}

.company-name {
  margin: 0 0 5px;
  color: #FFF;
  font-weight: bold;
  font-style: normal;
}
.company-name {
  font-size: 24px;
}
@media print {
  .company-name {
    font-size: 24px;
  }
}

.site-logo-footer {
  display: inline-block;
  width: 27px;
  height: auto;
  margin: 0 5px 0 0;
  padding: 0 0 6px;
  vertical-align: middle;
}

.company-detail {
  margin: 0 0 2px;
  padding: 0;
  color: #FFF;
  font-style: normal;
}
.company-detail {
  font-size: 14px;
}
@media print {
  .company-detail {
    font-size: 14px;
  }
}
.company-detail a {
  color: #FFF;
}
.company-detail a:hover {
  text-decoration: underline;
}

.company-tel {
  margin: 0 0 2px;
  padding: 0;
  color: #FFF;
  font-weight: bold;
  font-family: Antonio, sans-serif;
  font-style: normal;
}
.company-tel {
  font-size: 24px;
}
@media print {
  .company-tel {
    font-size: 24px;
  }
}
.company-tel a {
  color: #FFF;
}
.company-tel a:hover {
  text-decoration: underline;
}

/* フッターナビゲーション */
.footer-nav {
  float: right;
  width: 700px;
  margin: 20px -10px 0;
}

.footer-nav-item {
  display: block;
  float: left;
  box-sizing: border-box;
  width: 25%;
  margin: 0 0 10px;
  padding: 0 10px;
}

.footer-nav-title {
  margin: 0 0 15px;
  color: #FFF;
}
.footer-nav-title {
  font-size: 16px;
}
@media print {
  .footer-nav-title {
    font-size: 16px;
  }
}

.footer-nav-list {
  padding: 0;
  color: #999;
  list-style: none;
}
.footer-nav-list li {
  line-height: 1.7;
}
.footer-nav-list a {
  display: inline-block;
  margin: 0 0 3px;
  padding: 2px 0;
  color: #AAA;
}

.site-name-footer {
  display: inline;
  padding-left: 4px;
  color: #FFF;
  font-size: 18px;
  vertical-align: 4px;
}

@media screen and (min-width: 768px) {
  .foot-wrapper {
    padding: 30px 0;
  }
  .foot-wrapper .acms-container {
    max-width: 920px;
  }
}
@media screen and (max-width: 767.98px) {
  .footer-nav {
    display: none;
  }
}
/* ページの上に戻るボタン */
.page-top a:focus {
  display: block;
  border: 1px dotted #FFF;
}

.page-top-btn {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 1000;
  display: block;
  width: 44px;
  height: 44px;
  overflow: hidden;
  white-space: nowrap;
  text-indent: 100%;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACwAAAAsCAMAAAApWqozAAAAllBMVEUAAADx8fH09PQAAAD09PT09PTw8PDz8/P09PT09PT19fXz8/P19fX09PT19fX19fX09PT09PT19fXz8/P09PT19fX19ekzMzPp9fUzM21aMzNDdanC5fW02e1PMzMzM0/15cepdUPx2bRtMzORdU/t3cwzQ5jt2bSYTzPM2e3C5fFPdZEzdakzM2T17e3x9fX19fHt7fUOmBhvAAAAFXRSTlMAOEQBv+4ig+fZrW38pfOZwpDDmvIULFodAAABJElEQVR4XpXV15KDMAwFUJluQgug1O29l///uS2a3YngEuz7fIaRbCPRIKFJy8hWvY3K1IR0LEGd8UGyOpikpuFRGgNpkjNMnoAKYp5IPKplUfBkioW2Sz6apfouz+Tg20Exh4v/upOYZxMnJMnZIblYw06R22ndcPvbHTsmIKLOFddEYQbA7SPAWQjbu9qdn8IWU2DP1mukUyqhhbqkCFmsI7LIYm2pQhbrinpkse51Gfc7Uc83SFvV4OpBzH6zuhR9t1ENqqO7uBbLLHr7pI8uZa3Fit6eDC7F8EC/fFvRr9qyGT2kt/c/8PE5ekhUs2Nq38dPjZttvH5Yn1HgNWR8xpfPYPQZuZ7D3H9N+C8giQEjsjU0laDTS7MLNMDruILr+Avko32SUqNo0QAAAABJRU5ErkJggg==) no-repeat center;
  transform: translateZ(0);
  right: calc(20px + constant(safe-area-inset-right));
  opacity: 0;
}
.page-top-btn {
  transition: opacity 0.2s ease-out;
}
.no-js .page-top-btn {
  /* jsが無効の環境のとき */
  opacity: 0.6;
}

.page-top-btn-appear {
  opacity: 1;
}

@media screen and (max-width: 767.98px) {
  .page-top-btn {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .page-top-btn:hover {
    opacity: 0.8;
  }
  .page-top-btn:hover {
    transition: opacity 0.25s linear;
  }
}
/* フッター内各SNSアカウントのリンク集 */
.sns-list {
  margin: 0 -5px 30px 15px;
  padding: 0;
  list-style: none;
}

.sns-list-item {
  float: left;
  margin: 0 5px;
}
.sns-list-item a:hover, .sns-list-item a:visited, .sns-list-item a:active, .sns-list-item a:focus {
  text-decoration: none;
}

/* 各種SNSボタン */
.sns-list-item .sns-list-facebook {
  /* Facebook */
  display: block;
  width: 30px;
  height: 30px;
  color: #FFF;
  line-height: 1.4;
  text-align: center;
  background: #1877f2;
  border-radius: 4px;
}
.sns-list-item .sns-list-facebook {
  font-size: 19px;
}
@media print {
  .sns-list-item .sns-list-facebook {
    font-size: 19px;
  }
}
.sns-list-item .sns-list-facebook::before {
  vertical-align: middle;
}
.sns-list-item .sns-list-twitter {
  /* Twitter */
  display: block;
  width: 30px;
  height: 30px;
  color: #FFF;
  line-height: 1.4;
  text-align: center;
  background: #000;
  border-radius: 4px;
}
.sns-list-item .sns-list-twitter {
  font-size: 19px;
}
@media print {
  .sns-list-item .sns-list-twitter {
    font-size: 19px;
  }
}
.sns-list-item .sns-list-twitter::before {
  vertical-align: middle;
}
.sns-list-item .sns-list-youtube {
  /* YouTube */
  display: block;
  width: 30px;
  height: 30px;
  color: #FFF;
  line-height: 1.4;
  text-align: center;
  background: #CD201F;
  border-radius: 4px;
}
.sns-list-item .sns-list-youtube {
  font-size: 19px;
}
@media print {
  .sns-list-item .sns-list-youtube {
    font-size: 19px;
  }
}
.sns-list-item .sns-list-youtube::before {
  vertical-align: middle;
}

@media screen and (min-width: 768px) {
  .sns-list {
    float: right;
    margin: 0 -10px;
  }
  .sns-list-item {
    margin: 10px;
  }
  .sns-list-item a:hover {
    opacity: 0.8;
  }
  .sns-list-item a:hover {
    transition: opacity 0.25s linear;
  }
}
/* 著作権表示 */
.copyright {
  margin: 0;
  color: #FFF;
}

.copyright-text {
  margin: 0 auto;
  padding: 10px 0 0;
  font-size: 10px;
}

.copryright-logo {
  vertical-align: middle;
}

.policy {
  margin: 0;
  color: #FFF;
}

.policy:link {
  color: #fff;
}

.policy:visited {
  color: #fff;
}

.policy:hover {
  color: #CB3DFE;
}

/* ------------------------------
　　ヘッダー
------------------------------ */
.head-wrapper {
  background: #000;
}

header {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 9999;
}

/* サイト名 */
.site-name {
  display: flex;
  width: 100%;
  height: 100%;
  margin: 0;
  color: #FFF;
  font-weight: bold;
}
.site-name {
  font-size: 24px;
}
@media print {
  .site-name {
    font-size: 24px;
  }
}
.header-stack .site-name {
  margin: 30px 0 20px;
}
.site-name a {
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  color: #CB3DFE;
}
.site-name a:hover, .site-name a:focus, .site-name a:active, .site-name a:visited {
  color: #CB3DFE;
}

.site-logo {
  display: inline-block;
  width: 26px;
  height: auto;
  margin: 0 5px 0 0;
  padding: 4px 0 0;
  vertical-align: middle;
}

.site-name-text {
  display: inline;
  color: #FFF;
  vertical-align: middle;
}

.site-name-text2 {
  display: inline;
  padding-left: 4px;
  color: #FFF;
  font-size: 18px;
  vertical-align: middle;
}

.edit-link {
  display: inline-block;
  vertical-align: middle;
}
.edit-link {
  font-size: 14px;
}
@media print {
  .edit-link {
    font-size: 14px;
  }
}

.header-nav {
  position: relative;
  display: none;
}

@media (min-width: 768px) {
  .site-name {
    font-size: 24px;
  }
}
@media print and (min-width: 768px) {
  .site-name {
    font-size: 24px;
  }
}
@media (min-width: 768px) {
  .header-stack .site-name {
    text-align: center;
  }
  .site-logo {
    width: 30px;
    padding: 4px 0 0;
  }
  .header {
    display: flex;
    width: 100%;
  }
  .header-stack .header {
    display: block;
  }
  .header-logo {
    width: 100%;
    vertical-align: middle;
  }
  .header-stack .header-logo {
    display: block;
  }
  .header-nav {
    display: none;
    vertical-align: middle;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px;
  }
}
@media (min-width: 1024px) {
  .header-logo {
    display: flex;
    width: 40%;
    height: 100%;
  }
  .header-stack .header-logo {
    display: block;
    width: 100%;
  }
  .header-logo-inner {
    display: flex;
    width: 100%;
    height: 100%;
  }
  .header-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 80%;
    height: 100%;
  }
  .header-stack .header-nav {
    display: block;
    width: 100%;
    margin: 0 0 15px;
  }
  header {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    z-index: 9999;
  }
}
/* ------------------------------
　　ナビゲーション
------------------------------ */
.header-logo {
  display: flex;
  justify-content: space-between;
}

.site-header {
  z-index: 9999;
  display: flex;
  box-sizing: border-box;
  width: 100%;
  padding: 5px 5px 0;
  border-top: none #333;
  padding: 0 calc(5px + constant(safe-area-inset-right)) 0 calc(5px + constant(safe-area-inset-left));
}

/* モバイル時ナビゲーションボタン */
.nav-menu-btn {
  display: inline-block;
  box-sizing: border-box;
  height: 44px;
  padding: 7px 5px;
  color: #000;
}
.nav-menu-btn {
  font-size: 20px;
}
@media print {
  .nav-menu-btn {
    font-size: 20px;
  }
}
a .nav-menu-btn {
  color: #000;
}
.nav-menu-btn:hover {
  color: #000;
  text-decoration: none;
}
.nav-menu-btn .acms-icon-sort {
  display: inline-block;
}

.nav-menu-btn-text {
  display: inline-block;
  margin: 0 0 0 5px;
  color: #fff;
  font-weight: bold;
  vertical-align: middle;
}
.nav-menu-btn-text {
  font-size: 11px;
}
@media print {
  .nav-menu-btn-text {
    font-size: 11px;
  }
}

.global-nav-mobile-menu-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  padding-top: 5px;
  text-decoration: none;
  background: var(--color-primary);
}

/* モバイル時ヘッダー アイコン */
.nav-menu-action {
  display: table;
  float: right;
  margin: 0;
  padding: 0;
}

.nav-menu-action-item {
  display: table-cell;
  width: 44px;
  height: 44px;
  color: #333;
  text-align: center;
  vertical-align: middle;
}
.nav-menu-action-item {
  font-size: 20px;
}
@media print {
  .nav-menu-action-item {
    font-size: 20px;
  }
}

.nav-menu-action-link {
  color: #333;
}
.nav-menu-action-link:hover, .nav-menu-action-link:active, .nav-menu-action-link:visited, .nav-menu-action-link:focus {
  color: #333;
  text-decoration: none;
}

.navbar {
  display: none;
  width: 100%;
}
.navbar.acms-admin-module-edit-wrapper {
  z-index: 1;
}
.navbar ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.navbar li a {
  display: block;
  padding: 10px;
  color: #FFF;
  font-weight: bold;
}
.navbar li a {
  font-size: 16px;
}
@media print {
  .navbar li a {
    font-size: 16px;
  }
}
.navbar li a:hover, .navbar li a:focus, .navbar li a:active {
  color: #FFF;
  text-decoration: none;
  background: #CB3DFE;
}

@media (min-width: 1024px) {
  .header {
    height: 76px;
  }
  .header .btn-attention {
    height: 64px;
    line-height: 1.4;
  }
  .navbar {
    display: inline-block;
    vertical-align: middle;
  }
  .navbar > ul {
    display: flex;
    place-content: center flex-end;
    flex-wrap: wrap;
    float: right;
    padding: 0;
    list-style: none;
  }
  .header-stack .navbar > ul {
    display: table;
    float: none;
    width: 100%;
    table-layout: fixed;
    border-right: 1px solid #EEE;
  }
  .navbar li {
    position: relative;
    display: flex;
    float: left;
    margin: 0 10px;
    text-align: center;
    vertical-align: middle;
    place-items: center;
  }
  .header-stack .navbar li.navbar-btn {
    padding: 0 10px;
  }
  .header-stack .navbar li {
    display: table-cell;
    float: none;
    border-left: 1px solid #EEE;
  }
  .navbar li ul { /* 二階層目 */
    position: absolute;
    top: 100%;
    left: 0;
    display: none;
    min-width: 200px;
  }
  .navbar li li {
    margin: 0;
  }
  .header-stack .navbar li li {
    display: block;
    border: 0;
  }
  .navbar li a { /* 一階層目のリンクのみ */
    padding: 0;
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
  }
  .navbar li a {
    transition: border 0.25s ease-out;
  }
  .navbar li a:hover, .navbar li a:focus, .navbar li a:active {
    color: #FFF;
    background: transparent;
  }
  .header-stack .navbar li a {
    display: block;
    padding: 10px;
  }
  .header-stack .navbar li a {
    font-size: 16px;
  }
}
@media print and (min-width: 1024px) {
  .header-stack .navbar li a {
    font-size: 16px;
  }
}
@media (min-width: 1024px) {
  .navbar li.stay a { /* 一階層目のリンクのみ */
    border-bottom: 4px solid #CB3DFE;
  }
  .navbar li.stay a.btn-attention {
    border: 0;
  }
  .navbar li:hover ul { /* 二階層目 */
    z-index: 10000;
    display: block;
  }
  .navbar li:hover ul {
    animation: 0.8s fade-in;
  }
  .navbar li:hover a { /* 一階層目のリンクのみ */
    border-bottom: 4px solid #CB3DFE;
  }
  .navbar li:hover a.btn-attention {
    border: 0;
  }
  .navbar li:hover li a {
    border: 0;
  }
  .navbar li li { /* 二階層目以降 */
    display: block;
    float: none;
    text-align: left;
    background: #CB3DFE;
    border: 0;
    border-top: 1px solid #da72ff;
  }
  .navbar li li:first-child {
    border: 0;
  }
  .navbar li li a {
    margin: 0;
    padding: 10px 15px;
    color: #FFF;
    border: 0;
  }
  .navbar li li a:hover {
    color: #FFF;
    background: #da72ff;
    border: 0;
  }
  .navbar a.btn-attention { /* ボタン（色付き） */
    background: #CB3DFE;
    color: #FFF;
    font-weight: bold;
    line-height: 1.3;
    border: 0;
    display: inline-block;
    padding: 6px 15px;
    border-radius: 0;
    border: 0;
  }
  .navbar a.btn-attention:hover, .navbar a.btn-attention:visited {
    color: #FFF;
    text-decoration: none;
  }
  .navbar a.btn-attention:focus, .navbar a.btn-attention:active {
    color: #FFF;
    box-shadow: inset 0 1px 3px 0 rgba(0, 0, 0, 0.5);
  }
  .navbar a.btn-attention:hover {
    color: #FFF;
    background-color: #c82fff;
    background-image: linear-gradient(to bottom, #da72ff, #c82fff);
    border: 0;
  }
  .navbar a.btn-attention:active, .navbar a.btn-attention:focus {
    background: #c82fff;
  }
}
@media (min-width: 1024px) {
  .header-logo {
    padding: 0;
  }
  .navbar ul li a {
    font-size: 14px;
  }
}
@media print and (min-width: 1024px) {
  .navbar ul li a {
    font-size: 14px;
  }
}
@media (min-width: 1440px) {
  .navbar ul li a {
    font-size: 16px;
  }
}
@media print and (min-width: 1440px) {
  .navbar ul li a {
    font-size: 16px;
  }
}
/* ------------------------------
　　サイドメニュー
------------------------------ */
.navbar-side {
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
}
.navbar-side {
  font-size: 11px;
}
@media print {
  .navbar-side {
    font-size: 11px;
  }
}

.navbar-side-list {
  display: inline-block;
  margin: 0;
  padding: 0;
  overflow: hidden;
  list-style: none;
  background: #333;
  border-radius: 0 0 4px 4px;
}

.navbar-side-item {
  position: relative;
  display: inline-block;
  color: #FFF;
}
.navbar-side-item::before {
  position: absolute;
  top: 5px;
  bottom: 0;
  left: 0;
  display: block;
  height: 1em;
  border-left: 1px dotted #FFF;
  content: "";
}
.navbar-side-item:first-child::before {
  content: none;
}

.navbar-side-link {
  display: inline-block;
  padding: 4px 14px 4px 10px;
  color: #FFF;
}
.navbar-side-link [class*=acms-icon] {
  margin: -2px 5px 0 0;
}
.navbar-side-link:hover, .navbar-side-link:visited, .navbar-side-link:active, .navbar-side-link:focus {
  color: #FFF;
}
.navbar-side-link:hover [class*=acms-icon] {
  text-decoration: none;
}

/* ------------------------------
　　モバイルメニュー
------------------------------ */
/* トグルメニューアイコン */
.icon-toggle-menu {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 2px;
  margin: 6px 0;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 1px;
  transition: 0.1s all;
}
.icon-toggle-menu::before, .icon-toggle-menu::after {
  position: absolute;
  display: block;
  width: 18px;
  height: 2px;
  background-color: #fff;
  border-radius: 1px;
  transition: 0.3s all;
  content: "";
}
.icon-toggle-menu::before {
  top: -6px;
}
.icon-toggle-menu::after {
  bottom: -6px;
}
[aria-expanded=true] .icon-toggle-menu {
  background: transparent;
}
[aria-expanded=true] .icon-toggle-menu::before {
  width: 22px;
  transform: translate(-2px, 6px) rotate(45deg);
}
[aria-expanded=true] .icon-toggle-menu::after {
  width: 22px;
  transform: translate(-2px, -6px) rotate(-45deg);
}

/* ナビゲーションバー */
@media (max-width: 1023.98px) {
  .is-locked {
    overflow: hidden;
  }
  .mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    display: none;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 48px;
    background-color: #fff;
    opacity: 0;
    transition-timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-duration: 0.3s;
    transition-property: all;
  }
  .mobile-nav.is-active {
    display: block;
  }
  .mobile-nav.is-opened {
    opacity: 1;
  }
  .mobile-nav-wrap {
    display: flex;
    align-items: flex-start;
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding-top: 20px;
    overflow-y: scroll;
    background-color: #000;
    -webkit-overflow-scrolling: touch;
  }
  .mobile-nav-inner {
    padding: 0;
  }
  .mobile-nav-inner + .mobile-nav-inner {
    border-top: 1px solid #CCC;
  }
  .mobile-nav-inner .btn-attention {
    padding: 0;
  }
  .mobile-navbar {
    width: 100%;
  }
  .mobile-navbar-list {
    display: block;
    margin: 20px 0;
    padding: 0;
    font-weight: bold;
    line-height: 2.4;
    list-style: none;
  }
  .mobile-navbar-list {
    font-size: 18px;
  }
}
@media print and (max-width: 1023.98px) {
  .mobile-navbar-list {
    font-size: 18px;
  }
}
@media (max-width: 1023.98px) {
  .mobile-navbar-list li {
    display: block;
  }
  .mobile-navbar-list .navbar-btn {
    margin-top: 10px;
  }
  .mobile-navbar-list a {
    display: block;
  }
  .mobile-navbar-list a:not(.btn-attention),
  .mobile-navbar-list a:not(.btn-attention):hover,
  .mobile-navbar-list a:not(.btn-attention):visited,
  .mobile-navbar-list a:not(.btn-attention):active,
  .mobile-navbar-list a:not(.btn-attention):focus {
    color: #fff;
  }
  .mobile-navbar-list a.btn-attention {
    color: #CB3DFE;
    font-weight: normal;
    text-align: center;
    background: transparent;
    border: 1px solid #CB3DFE;
  }
  .mobile-navbar-list a.btn-attention {
    font-size: 16px;
  }
}
@media print and (max-width: 1023.98px) {
  .mobile-navbar-list a.btn-attention {
    font-size: 16px;
  }
}
@media (max-width: 1023.98px) {
  .mobile-navbar-list .mobile-navbar-list {
    margin: -5px 0 10px 10px;
    line-height: 2;
  }
  .mobile-navbar-list .mobile-navbar-list {
    font-size: 14px;
  }
}
@media print and (max-width: 1023.98px) {
  .mobile-navbar-list .mobile-navbar-list {
    font-size: 14px;
  }
}
@media (max-width: 1023.98px) {
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention),
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):hover,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):visited,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):active,
  .mobile-navbar-list .mobile-navbar-list a:not(.btn-attention):focus {
    color: #666;
  }
  .mobile-nav-side {
    margin: 20px 0;
  }
  .mobile-nav-side-list {
    margin: 0;
    padding: 0;
    list-style: none;
  }
  .mobile-nav-side-item {
    display: block;
    margin: 0 0 10px;
  }
  .mobile-nav-side-link {
    display: block;
    color: #333;
  }
  .mobile-nav-side-link:hover, .mobile-nav-side-link:visited, .mobile-nav-side-link:active, .mobile-nav-side-link:focus {
    color: #333;
  }
  .mobile-navbar-footer {
    margin: 15px 0 0;
  }
  .mobile-navbar-footer .sns-list {
    margin: 0 0 30px;
  }
}
.menu__box {
  display: flex;
  flex-direction: column;
  padding: 0;
  text-align: center;
  list-style-type: none;
}
.menu__box a {
  transition: color 0.3s;
}
.menu__box a:link {
  color: #fff;
}
.menu__box a:visited {
  color: #fff;
}
.menu__box a:hover {
  color: #CB3DFE;
}
.menu__box a:active {
  color: #fff;
}
@media screen and (max-width: 1023.98px) {
  .menu__box {
    position: fixed;
    width: 100%;
  }
}

.menu__item {
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  padding: 20px 0;
  font-weight: 400;
  font-weight: bold;
  font-family: sans-serif;
  text-transform: uppercase;
  text-decoration: none;
}
@media screen and (max-width: 1023.98px) {
  .menu__item {
    display: block;
    font-size: 18px;
    transition-duration: 0.5s;
  }
  .menu__item:hover, .menu__item :active {
    color: #CB3DFE;
    background: #333;
  }
}

.menu__btn {
  position: relative;
  bottom: 2px;
  z-index: 2;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  width: 26px;
  height: 26px;
  cursor: pointer;
  transition-duration: 0.25s;
}
.menu__btn span {
  position: absolute;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #fff;
}
.menu__btn span::before {
  position: absolute;
  top: -8px;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition-duration: 0.25s;
  content: "";
}
.menu__btn span::after {
  position: absolute;
  top: 8px;
  display: inline-block;
  width: 100%;
  height: 3px;
  background-color: #fff;
  transition-duration: 0.25s;
  content: "";
}
@media screen and (max-width: 1023.98px) {
  .menu__btn {
    display: none;
  }
}

/* 全体 */
body {
  font-size: 16px;
}

a {
  transition: color 0.2s;
}

.narrow-container {
  position: relative;
  z-index: 100;
}

.acms-box-medium th {
  font-size: 12px;
  white-space: nowrap;
}

/* ナビゲーション */
.nav-label-en {
  color: #CB3DFE;
  font-size: 15px;
  font-family: Antonio, sans-serif;
}

.btn-attention .nav-label-en {
  color: #FFF;
  font-size: 15px;
  font-family: Antonio, sans-serif;
}

.nav-label-jp {
  font-size: 18px;
}

/* 見出し */
.heading-h2 {
  margin: 0 0 -5px;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 42px;
  font-family: Antonio, sans-serif;
}

.heading-h3 {
  color: #CB3DFF;
  font-weight: bold;
  font-size: 32px;
}

.heading-h4 {
  margin: 0 0 6px;
  font-weight: bold;
  font-size: 20px;
}

.heading-h5 {
  margin: 0 0 20px;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 18px;
}

.cookie-box h4 {
  margin-bottom: 0;
  font-size: 20px;
}

.module-group-item .heading-h3 {
  margin: 0 0 10px 20px;
}

/* お知らせ */
.news-container {
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: flex-start;
  width: 90%;
  margin: 0 auto;
}

.news-box {
  display: flex;
  flex-direction: column-reverse;
}

.news-date1 {
  display: inline-block;
  width: 80px;
}

.news-item {
  display: flex;
  flex-direction: row;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #000;
}

.news-container .heading-h5 {
  margin-bottom: 0;
}

@media screen and (min-width: 768px) {
  .cookie-box .main-inner {
    width: 100%;
    max-width: 960px;
  }
  .module-group-item .heading-h3 {
    margin: 0 0 10px;
  }
  .news-container {
    display: flex;
    flex-direction: row;
    gap: 30px;
    width: 960px;
    margin: 0 auto;
  }
  .news-item {
    width: 850px;
  }
}
.more-arrow1 {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 40px;
  font-weight: bold;
  font-size: 15px;
}

.more-arrow1::before,
.more-arrow1::after {
  position: absolute;
  background-color: #333;
  content: "";
}

.more-arrow1::before {
  top: 100%;
  left: 0;
  width: 120px;
  height: 1px;
}

.more-arrow1::after {
  top: 100%;
  right: 0;
  width: 14px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: right center;
}

.more-arrow1:link {
  color: #000;
}

.more-arrow1:visited {
  color: #000;
}

.more-arrow1:hover {
  color: #CB3DFE;
}

.more-arrow1:hover::before,
.more-arrow1:hover::after {
  background-color: #CB3DFE;
}

.more-arrow2 {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 40px;
  font-weight: bold;
  font-size: 15px;
}

.more-arrow2::before,
.more-arrow2::after {
  position: absolute;
  background-color: #fff;
  content: "";
}

.more-arrow2::before {
  top: 100%;
  left: 0;
  width: 120px;
  height: 1px;
}

.more-arrow2::after {
  top: 100%;
  right: 0;
  width: 14px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: right center;
}

.more-arrow2:link {
  color: #fff;
}

.more-arrow2:visited {
  color: #fff;
}

.more-arrow2:hover {
  color: #CB3DFE;
}

.more-arrow2:hover::before,
.more-arrow2:hover::after {
  background-color: #CB3DFE;
}

.more-arrow3 {
  position: relative;
  display: inline-block;
  margin: 0 0 10px;
  padding: 5px 40px;
  font-weight: bold;
  font-size: 15px;
}

.more-arrow3::before,
.more-arrow3::after {
  position: absolute;
  background-color: #fff;
  content: "";
}

.more-arrow3::before {
  top: 100%;
  left: 0;
  width: 120px;
  height: 1px;
}

.more-arrow3::after {
  top: 100%;
  right: 0;
  width: 14px;
  height: 1px;
  transform: rotate(45deg);
  transform-origin: right center;
}

.more-arrow3:link {
  color: #fff;
}

.more-arrow3:visited {
  color: #fff;
}

.more-arrow3:hover {
  color: #000;
}

.more-arrow3:hover::before,
.more-arrow3:hover::after {
  background-color: #000;
}

.process .entry {
  margin: 0;
}

.acms-grid {
  position: relative;
  z-index: 1;
}

/* 背景 */
.process-main-bg {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 20px 5px;
  background: #EEE no-repeat center;
  background-size: cover;
}

.process-main-bg::after {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 0, 234, 0.4);
  content: "";
}

.needs-bg {
  position: relative;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 40px 0;
  background-image: url(assets/Frame_102.jpg);
  background-position: center;
  background-size: cover;
}

.needs-bg::after {
  position: absolute;
  inset: 0;
  background-color: rgba(255, 0, 234, 0.4);
  content: "";
}

.department-sub-bg {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  margin-right: -10px;
  padding: 40px 0;
  background: #EEE no-repeat center;
  background-size: cover;
}

.department-sub-bg::after {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  content: "";
}

.flow-item-bg {
  position: relative;
  height: auto;
  margin: 0 auto;
  padding: 0 15px 10px 20px;
  background: #fff;
}

.flow-item-pink {
  position: relative;
  width: 100%;
  height: auto;
  padding-top: 10px;
  background: #CB3DFF;
}
.flow-item-pink .flow-heading {
  color: #fff;
  text-align: center;
}
.flow-item-pink .triangle {
  border-top: 15px solid #fff;
}

.flow-item-s {
  margin: 0 10px 10px;
  padding: 0 10px 10px;
  background: #fff;
}
.flow-item-s .flow-heading {
  color: #CB3DFF;
  text-align: left;
}

.flow-section-bg {
  position: relative;
  z-index: -100;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  margin-right: -10px;
  padding: 40px 0;
  background-position: center;
  background-size: cover;
}

.flow-section-bg::after {
  position: absolute;
  z-index: -1;
  background-color: rgb(0, 0, 0);
  opacity: 0.6;
  content: "";
  inset: 0;
}

/* トップページ用 */
.process-center-box {
  width: 320px;
  padding: 10px;
  background: #000;
}

.process-item-z {
  z-index: 1;
  margin: 0 auto;
}

.process-item-z .heading-h4 {
  margin: 0 0 6px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
}

.process-main-text {
  margin: 0 0 30px;
  color: #fff;
  font-size: 16px;
}

/* 生産工程ページ用 */
.process-text {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

.narrow-container .process-h3 {
  margin: 0 0 10px 10px;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 32px;
  border-left: 0;
}

/* 部門見出し */
.department_en {
  padding-top: 5px;
  font-weight: bold;
  font-size: 42px;
  font-family: Antonio, sans-serif;
  line-height: 1;
  opacity: 0.5;
}

.department_jp {
  font-weight: bold;
  font-size: 32px;
}

.department_heading {
  font-weight: bold;
  font-size: 20px;
}

.department_step {
  z-index: 100;
  display: flex;
  flex-wrap: wrap;
  align-self: center;
  width: 75%;
  color: #fff;
}
.department_step .step {
  margin: 5px 40px 0;
  font-weight: bold;
  font-size: 120px;
  font-family: Antonio, sans-serif;
}

.step_box {
  margin-bottom: 50px;
}

.step_box dl {
  margin: 0 auto;
}

.department_caption {
  width: 310px;
  line-height: 1.5;
}

/* 制作フロー */
.flow-container {
  margin: 20px auto 60px;
  text-align: center;
}

.flow-section-bg .narrow-container {
  padding: 0 0 0 10px;
}

.flow-box {
  z-index: 2;
  width: 90%;
  margin: 0 auto 60px;
}

.flow-text {
  z-index: 5;
  width: 85%;
  margin: 0 auto;
  padding: 30px 0;
  color: #fff;
  text-align: left;
}

.flow-heading {
  z-index: 3;
  padding: 8px 0 5px;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 20px;
}

.flow-item {
  z-index: 2;
  padding-bottom: 20px;
}

.flow-caption {
  padding-top: 5px;
  color: #EEE;
  font-weight: bold;
  text-align: center;
}

.flow-twocol {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.triangle {
  width: 0;
  height: 0;
  margin: 10px;
  border-style: solid;
  border-top: 15px solid #cb3dff;
  border-right: 15px solid transparent;
  border-bottom: 0;
  border-left: 15px solid transparent;
}

.triangle-white {
  width: 0;
  height: 0;
  margin: 10px;
  border-style: solid;
  border-top: 15px solid #fff;
  border-right: 15px solid transparent;
  border-bottom: 0;
  border-left: 15px solid transparent;
}

/* ニーズ */
.needs-container {
  position: relative;
  z-index: 7;
  width: 320px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
}

.needs-h3 {
  position: relative;
  z-index: 6;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
  text-align: center;
}

.needs-box .heading-h3 {
  margin: 20px 0 10px;
  color: #000;
  font-weight: bold;
  font-size: 20px;
}

.needs-box img {
  width: 100%;
  height: 190px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (min-width: 768px) {
  .process-main-bg {
    height: 463px;
    padding: 50px 0;
  }
  .process-text {
    width: 960px;
    margin: 0 auto;
    padding: 0;
  }
  .narrow-container .process-h3 {
    margin: 0 0 10px;
  }
  .department_caption {
    width: 870px;
    line-height: 1.5;
  }
  .flow-section-bg {
    padding: 70px 5px;
  }
  .flow-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 900px;
  }
  .flow-box {
    width: 630px;
  }
  .flow-item-bg {
    width: 460px;
  }
  .flow-twocol {
    display: flex;
    flex-direction: row;
    gap: 25px;
    width: 492px;
    margin: 0 auto;
  }
  .flow-text {
    width: 960px;
    padding: 10px 0 40px;
  }
  .flow-caption {
    text-align: left;
  }
  .needs-container {
    width: 960px;
    padding: 30px;
  }
  .needs-box {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
  }
  .needs-text {
    width: 380px;
  }
  .needs-box .heading-h3 {
    width: 380px;
    margin: 0 0 10px;
  }
  .needs-box img {
    width: 795px;
    height: 278px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  .step_box dl {
    margin: 0 auto;
  }
  .process_step {
    width: 960px;
  }
  .process-item-z {
    margin: 0;
    padding: 0 0 0 15%;
  }
  .process-center-box {
    width: 388px;
  }
}
/* 背景 */
.company-main-bg {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 40px 0;
  background: #EEE no-repeat center;
  background-size: cover;
}

.company-main-bg::after {
  position: absolute;
  background-color: white;
  opacity: 0.8;
  content: "";
  inset: 0;
}

.company-bg {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 40px 0;
  background-image: url(assets/Frame107.jpg);
  background-position: center;
  background-size: cover;
}

.company-bg::after {
  position: absolute;
  background: linear-gradient(to top, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
  content: "";
  inset: 0;
}

.company-bg2 {
  position: relative;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 40px 0;
  background-image: url(assets/Frame106.jpg);
  background-size: cover;
}

.company-bg2::after {
  position: absolute;
  background-color: white;
  opacity: 0.85;
  content: "";
  inset: 0;
}

.company-bg3 {
  position: relative;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 40px 0;
  background-image: url(assets/Frame-91.jpg);
  background-position: center;
  background-size: cover;
}

.company-bg3::after {
  position: absolute;
  background-color: white;
  opacity: 0.8;
  content: "";
  inset: 0;
}

/* トップページ用 */
.company-center-box {
  width: 320px;
  margin: 0 0 20px;
  padding: 10px;
  text-align: center;
}

.company-item-z {
  z-index: 1;
  text-align: center;
}

.company-main-text {
  margin: 0 0 20px;
}

/* 見出し */
.company-item-z .heading-h3 {
  margin: 0 0 30px;
}

.h3-b {
  margin: 0;
  font-size: 20px;
}

.company-contents .heading-h4 {
  text-align: center;
}

/* 会社情報ページ用 */
.company-box {
  width: 90%;
  margin: 0 auto 30px;
}

.company-textbox {
  width: 100%;
  text-align: left;
}

.company-bg-text {
  position: absolute;
  bottom: -10.5px;
  z-index: 0;
  width: 100%;
  color: #FFF;
  font-weight: bold;
  font-size: 40px;
  font-family: Antonio, sans-serif;
  text-align: center;
  opacity: 0.5;
}

.company-bg .company-bg-text {
  opacity: 1;
}

.company-section {
  margin: 40px 0;
}

.company-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 60px;
}

.circle-box {
  position: relative;
  margin-left: -60px;
}
.circle-box img {
  opacity: 0.2;
}
.circle-box .circle-item {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 230px;
  transform: translate(-50%, -50%);
}

.circle-heading {
  margin-bottom: 5px;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}

.circle-text {
  text-align: left;
}

.access-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  margin: 0 20px 40px;
}

.company_map .main-inner {
  width: 90%;
}

.company-img {
  padding: 10px 0;
}

@media screen and (min-width: 768px) {
  .company-main-bg {
    height: 463px;
    padding: 50px 0;
  }
  .company-bg {
    height: 880px;
    padding: 50px 0;
  }
  .company-bg2 {
    padding: 70px 5px;
  }
  .company-bg3 {
    padding: 70px 5px;
  }
  .company-bg-text {
    bottom: -25px;
    font-size: 100px;
  }
  .company-bg .company-bg-text {
    bottom: -37px;
    font-size: 150px;
  }
  .company-box {
    margin: 0 auto;
  }
  .company-textbox {
    width: 960px;
    margin-top: 20px;
    text-align: left;
  }
  .right {
    padding-right: 15px;
  }
  .company-contents .acms-col-md-4 {
    padding: 10px -10px;
  }
  .company_map .main-inner {
    width: 100%;
    max-width: 650px;
  }
  .company-contents .heading-h4 {
    text-align: left;
  }
  .company-item-z {
    text-align: center;
  }
  .company-center-box {
    width: 100%;
    text-align: center;
  }
  .company-contents {
    width: 100%;
    margin: 0 auto;
  }
  .access-box {
    flex-direction: row;
    align-items: flex-end;
    width: 600px;
    margin: 0 auto 40px;
  }
  .company-section {
    margin: 80px 0;
  }
  .company-container {
    flex-direction: row;
  }
}
/* 背景 */
.product-main-bg {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 40px 5px;
  background: #EEE no-repeat center;
  background-size: cover;
}

.product-sub-bg {
  position: relative;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 20px 0;
  background: #EEE no-repeat center;
  background-size: cover;
}

.product-sub-bg::after {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
}

/* トップページ用 */
.product-center-box {
  width: 320px;
  padding: 10px;
  background: #fff;
}

.product-item-z {
  z-index: 1;
  margin: 0 auto;
}

.product-item-z .heading-h4 {
  margin: 0 0 6px;
  color: #000;
  font-weight: bold;
  font-size: 20px;
}

.product-main-text {
  margin: 0 0 30px;
  color: #000;
  font-size: 16px;
}

.product-text {
  width: 90%;
  margin: 0 auto;
  text-align: left;
}

/* 各部門リンク */
.product-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: space-around;
}

.product-box {
  position: relative;
  margin: 30px auto 10px;
}
.product-box .product-link {
  position: absolute;
  top: 6%;
  z-index: 100;
  width: 240px;
  color: #fff;
  line-height: 1.1;
  text-align: center;
}
.product-box .product-link .step {
  font-size: 64px;
}
.product-box .product-link .department_en {
  font-size: 24px;
}
.product-box .product-link .department_jp {
  margin: 10pt 0;
}

.product-link-img {
  position: relative;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
.product-link-img img {
  width: 240px;
  height: 240px;
  -o-object-fit: cover;
     object-fit: cover;
}

.product-link-img::after {
  position: absolute;
  width: 240px;
  width: 0 auto;
  background-color: rgba(0, 0, 0, 0.6);
  content: "";
  inset: 0;
}

/* 制作実績用 */
.product .entry-style-grid {
  margin-left: 0;
}

.result-container {
  width: 85%;
  margin: 20px auto;
  text-align: center;
}

.result-title {
  font-weight: bold;
  font-size: 20px;
}

.narrow-container .product-h3 {
  margin: 0 0 10px 10px;
  padding-left: 20px;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 32px;
  border-left: 0;
}

.product_step {
  z-index: 1;
  display: flex;
  align-items: center;
  width: 75%;
  margin: 0 0 0 5px;
  color: #fff;
}

.result-item {
  padding-bottom: 20px;
}

.step_box .department_sub_bg {
  margin-right: 0;
}

.step {
  margin: 0 30px;
  font-weight: bold;
  font-size: 120px;
  font-family: Antonio, sans-serif;
}

@media screen and (min-width: 768px) {
  .product-main-bg {
    height: 513px;
    padding: 50px 0;
  }
  .product-text {
    width: 960px;
    margin: 0 auto;
    padding: 0;
  }
  .result-container {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    width: 900px;
  }
  .result-title {
    text-align: left;
  }
  .result-detail {
    text-align: left;
  }
  .product-space {
    padding: 80px 30px 0;
  }
  .narrow-container .product-h3 {
    margin: 0 0 10px;
  }
  .product_step {
    width: 960px;
    margin: 0 auto;
  }
  .product_step .department_en, .product_step .department_jp {
    padding-left: 10px;
  }
  .product-container {
    flex-direction: row;
  }
}
@media (min-width: 768px) {
  .product-item-z {
    margin: 0;
    padding: 0 0 0 60%;
  }
  .product-center-box {
    width: 388px;
  }
}
/* 背景 */
.equipment-bg {
  position: relative;
  padding: 40px 0;
  background-image: url(assets/equipmentbg.jpg);
  background-size: cover;
}

.equipment-bg::after {
  position: absolute;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.7);
  content: "";
  inset: 0;
}

.equipment-bg2 {
  position: relative;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  margin-right: -10px;
  padding: 70px 15px 70px 25px;
  background-size: cover;
}

.equipment-bg2::after {
  position: absolute;
  background-color: rgb(203, 61, 255);
  opacity: 0.1;
  content: "";
  inset: 0;
}

.equipment-box {
  position: relative;
  z-index: 10;
}

.equipment-textbox {
  padding: 10px 5% 0;
}

.equipment-text {
  margin: 0 0 30px;
}

.equipment-link {
  width: 100%;
  margin: 70px 0 0;
}

.equipment-h4 {
  width: 90%;
  margin: 0 auto;
  padding-top: 20px;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 20px;
}

.equipment-item {
  padding-bottom: 20px;
}

.equipment-space {
  margin-left: 20px;
  padding: 70px 5px;
}

.equipment-title {
  padding-top: 5px;
}

/* 設備台数 */
.tab-reader {
  width: 90%;
  margin: 30px auto;
}

.machine-item {
  display: flex;
  display: flexbox;
  flex-flow: row wrap;
  width: 100%;
  padding: 10px 0;
}

hr.tab-r-line {
  position: relative;
  top: calc(50% - 1px);
  margin: 0 10px;
  border: none;
  border-top: dotted 2px #333;
}

.tab-reader-box2 {
  flex: auto;
}

.tab-reader-box1 {
  color: #CB3DFF;
  font-weight: bold;
}

.machine-box {
  width: 90%;
  margin: 0 auto;
}

.equipment-h3 {
  padding-bottom: 10px;
  color: #CB3DFF;
  font-weight: bold;
  font-size: 32px;
}

.machine-text {
  margin: 0 auto 10px;
}

@media screen and (min-width: 768px) {
  .equipment-bg {
    width: 100%;
    height: 700px;
    padding: 50px 0;
  }
  .equipment-textbox {
    width: 960px;
    margin: 20px auto;
  }
  .equipment-entry-box {
    width: 520px;
    margin: 0 auto;
  }
  .equipment-h4 {
    width: 470px;
    margin: 0 auto;
  }
  .equipment-title {
    padding-top: 5px;
    text-align: left;
  }
  .tab-reader {
    width: 500px;
  }
  .machine-text {
    width: 100%;
  }
}
/* 違い */
.method-main-bg {
  position: relative;
  z-index: -2;
  align-items: center;
  box-sizing: border-box;
  height: auto;
  padding: 40px 0;
  background: linear-gradient(rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.7)), url(assets/Frame_102.jpg);
  background-position: center;
  background-size: cover;
}

.method-main-bg::after {
  position: absolute;
  z-index: -1;
  inset: 0;
  background-color: rgba(255, 0, 234, 0.3);
  content: "";
}

.method-container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  justify-content: center;
  padding: 50px 20px;
}

.method-h3 {
  position: relative;
  z-index: 6;
  width: 90%;
  margin: 0 auto;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
}

.method-text {
  position: relative;
  z-index: 6;
  width: 90%;
  margin: 10px auto 0;
  color: #fff;
}

.method-title {
  margin-bottom: 20px;
  padding: 10px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  background-color: #CB3DFF;
}

.method-bg {
  padding: 20px 20px 1px;
  background-color: #CB3DFF;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.method-textbox {
  margin-bottom: 20px;
  padding: 12px;
  background-color: #fff;
}

.method-textbox-img {
  margin-bottom: 20px;
  padding: 12px;
  background-color: #fff;
}

.merit-title {
  margin-bottom: 10px;
  padding: 5px 10px;
  color: #fff;
  font-weight: bold;
  font-size: 20px;
  background-color: rgba(203, 61, 255, 0.6);
}

.merit-h4 {
  color: #CB3DFF;
  font-weight: bold;
  font-size: 20px;
}

.merit-text {
  padding-bottom: 20px;
}

@media screen and (min-width: 768px) {
  .method-container {
    flex-direction: row;
    gap: 20px;
    padding: 100px 0;
  }
  .method-box {
    width: 414px;
    padding: 10px;
  }
  .method-textbox {
    height: 360px;
  }
  .method-h3 {
    width: 930px;
    margin: 0 auto;
  }
  .method-title {
    margin-top: 20px;
  }
  .method-text {
    width: 930px;
    margin: 0 auto 40px;
  }
}
