@charset "UTF-8";
/*****************************************
* 基本ファイル
*****************************************/
/*! sanitize.css v4.0.0 | CC0 License | github.com/10up/sanitize.css */
article, aside, details, figcaption, figure, footer, header, main, menu, nav, section, summary {
  display: block;
}

audio, canvas, progress, video {
  display: inline-block;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

template, [hidden] {
  display: none;
}

*, ::before, ::after {
  background-repeat: no-repeat;
  -webkit-box-sizing: inherit;
          box-sizing: inherit;
}

::before, ::after {
  text-decoration: inherit;
  vertical-align: inherit;
}

html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  cursor: default;
  font-family: sans-serif;
  line-height: 1.5;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

hr {
  height: 0;
  overflow: visible;
}

nav ol, nav ul {
  list-style: none;
}

abbr[title] {
  border-bottom: 1px dotted;
  text-decoration: none;
}

b, strong {
  font-weight: inherit;
}

b, strong {
  font-weight: inherit;
}

dfn {
  font-style: italic;
}

mark {
  background-color: #ff0;
  color: #000;
}

progress {
  vertical-align: baseline;
}

small {
  font-size: 83.3333%;
}

sub, sup {
  font-size: 83.3333%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

::-moz-selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

::selection {
  background-color: #b3d4fc;
  color: #000;
  text-shadow: none;
}

audio, canvas, iframe, img, svg, video {
  vertical-align: middle;
}

img {
  border-style: none;
}

svg {
  fill: currentColor;
}

svg:not(:root) {
  overflow: hidden;
}

a {
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
}

:hover {
  outline-width: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input, select, textarea {
  background-color: transparent;
  border-style: none;
  color: inherit;
  font-size: 1em;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox], [type=radio] {
  padding: 0;
}

::-webkit-inner-spin-button, ::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

::-webkit-search-cancel-button, ::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled] {
  cursor: default;
}

a, area, button, input, label, select, textarea, [tabindex] {
  -ms-touch-action: manipulation;
  touch-action: manipulation;
}

[hidden][aria-hidden=false] {
  clip: rect(0, 0, 0, 0);
  display: inherit;
  position: absolute;
}

[hidden][aria-hidden=false]:focus {
  clip: auto;
}

* {
  padding: 0;
  margin: 0;
}

ul li, ol li {
  list-style: none;
}

address {
  font-style: normal;
}

button {
  cursor: pointer;
}

h1, h2, h3, h4, h5, h6, button, input, label, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
}

/*================================
  SCSS Information
----------------------------------
  File name: _functions.scss
  Summary:   自作関数定義用ファイル
  Author:    neruco
================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _variables.scss
  Summary:   変数定義用ファイル
  Author:    neruco
================================*/
/*====================================
フォント設定
====================================*/
/*====================================
余白の設定
====================================*/
/*====================================
幅や高さの設定
====================================*/
/*====================================
共通箇所などの設定
====================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _mixin.scss
  Summary:   汎用定義ファイル
  Author:    neruco
================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _animations.scss
  Summary:   アニメーション用ファイル
  Author:    neruco
================================*/
@-webkit-keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeInAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.js-scrollAnime-fadeIn {
  opacity: 0;
}
.js-scrollAnime-fadeIn.is-animated {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes fadeInUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUpAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.js-scrollAnime-fadeInUp {
  opacity: 0;
}
.js-scrollAnime-fadeInUp.is-animated {
  -webkit-animation-name: fadeInUpAnime;
          animation-name: fadeInUpAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes fadeInLeftRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInLeftRightAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(-100px);
            transform: translateX(-100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-scrollAnime-fadeInLeftRight {
  opacity: 0;
}
.js-scrollAnime-fadeInLeftRight.is-animated {
  -webkit-animation-name: fadeInLeftRightAnime;
          animation-name: fadeInLeftRightAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes fadeInRightLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

@keyframes fadeInRightLeftAnime {
  0% {
    opacity: 0;
    -webkit-transform: translateX(100px);
            transform: translateX(100px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}
.js-scrollAnime-fadeInRightLeft {
  opacity: 0;
}
.js-scrollAnime-fadeInRightLeft.is-animated {
  -webkit-animation-name: fadeInRightLeftAnime;
          animation-name: fadeInRightLeftAnime;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-animation-duration: 600ms;
          animation-duration: 600ms;
  -webkit-animation-iteration-count: 1;
          animation-iteration-count: 1;
  -webkit-animation-timing-function: ease-out;
          animation-timing-function: ease-out;
  -webkit-animation-delay: 0;
          animation-delay: 0;
  -webkit-animation-direction: normal;
          animation-direction: normal;
}

@-webkit-keyframes headingBand {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  30% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  70% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  100% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
}

@keyframes headingBand {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  30% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center left;
            transform-origin: center left;
  }
  70% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
  100% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: center right;
            transform-origin: center right;
  }
}
@-webkit-keyframes scrollDown {
  0% {
    top: 0;
    opacity: 1;
  }
  80% {
    top: 80%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@keyframes scrollDown {
  0% {
    top: 0;
    opacity: 1;
  }
  80% {
    top: 80%;
    opacity: 1;
  }
  100% {
    top: 100%;
    opacity: 0;
  }
}
@-webkit-keyframes procedureLine {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
@keyframes procedureLine {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
    -webkit-transform-origin: left center;
            transform-origin: left center;
  }
}
@-webkit-keyframes arrowGrow01 {
  0% {
    width: 100%;
  }
  20% {
    width: 100%;
  }
  80% {
    width: 120%;
  }
  100% {
    width: 120%;
  }
}
@keyframes arrowGrow01 {
  0% {
    width: 100%;
  }
  20% {
    width: 100%;
  }
  80% {
    width: 120%;
  }
  100% {
    width: 120%;
  }
}
@-webkit-keyframes txtLeftRightWrap {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes txtLeftRightWrap {
  0% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes txtLeftRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
@keyframes txtLeftRight {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/*================================
  SCSS Information
----------------------------------
  File name: _common.scss
  Summary:   全ページ共通定義用ファイル
  Author:    neruco
================================*/
:root {
  --leading-trim: calc((1em - 1lh) / 2);
}

* {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

body {
  min-width: 375px;
  background: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.25vw, 16px);
  font-weight: 400;
  line-height: calc(29 / 16);
  letter-spacing: calc(0 * 0.001em);
  color: #222;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  z-index: 1;
}

input,
textarea {
  font-family: inherit;
}

body figure {
  margin: 0;
}

img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  image-rendering: crisp-edges;
}

a {
  cursor: pointer;
  text-decoration: none;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
  opacity: opacity, color;
}
a:not([class]) {
  text-decoration: none;
}
a:not([class]):hover {
  text-decoration: underline;
}
a:has(.u-linkHover) {
  text-decoration: none;
}
a:has(.u-linkHover):hover {
  text-decoration: none;
}

img,
a,
button,
select {
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: all;
  transition-property: all;
}

fieldset {
  padding: 0;
  margin: 0;
  border: none;
}

input[type=text],
input[type=tel],
input[type=email],
textarea,
select {
  width: 100%;
  height: 52px;
  padding: 16px 16px 12px;
  border: none;
  border-radius: 5px;
  background: #fff;
  font-family: inherit;
  line-height: 1.5;
}
input[type=text]::-webkit-input-placeholder, input[type=tel]::-webkit-input-placeholder, input[type=email]::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
  color: #CCC;
  opacity: 1;
}
input[type=text]::-moz-placeholder, input[type=tel]::-moz-placeholder, input[type=email]::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
  color: #CCC;
  opacity: 1;
}
input[type=text]:-ms-input-placeholder, input[type=tel]:-ms-input-placeholder, input[type=email]:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
  color: #CCC;
  opacity: 1;
}
input[type=text]::-ms-input-placeholder, input[type=tel]::-ms-input-placeholder, input[type=email]::-ms-input-placeholder, textarea::-ms-input-placeholder, select::-ms-input-placeholder {
  color: #CCC;
  opacity: 1;
}
input[type=text]::placeholder,
input[type=tel]::placeholder,
input[type=email]::placeholder,
textarea::placeholder,
select::placeholder {
  color: #CCC;
  opacity: 1;
}

input[type=search]::-webkit-input-placeholder {
  color: #CCC;
  opacity: 1;
}

input[type=search]::-moz-placeholder {
  color: #CCC;
  opacity: 1;
}

input[type=search]:-ms-input-placeholder {
  color: #CCC;
  opacity: 1;
}

input[type=search]::-ms-input-placeholder {
  color: #CCC;
  opacity: 1;
}

input[type=search]::placeholder {
  color: #CCC;
  opacity: 1;
}

select {
  cursor: pointer;
}
select:focus {
  color: inherit;
}

textarea {
  width: 100%;
  height: 181px;
  padding: 16px 16px 12px;
  resize: vertical;
}

mark {
  display: inline;
  background: #faee00;
  color: #222;
}

strong {
  font-weight: 600;
}

ul {
  list-style-type: none;
}

sub, sup {
  font-size: 10px;
}

pre {
  white-space: pre-wrap;
  font-family: "Consolas", "ＭＳ ゴシック", "Osaka", sans-serif;
  font-weight: 400;
}
pre code {
  font-family: inherit;
  font-weight: inherit;
}

::-moz-selection {
  background: #0E358F;
  color: #fff;
}

::selection {
  background: #0E358F;
  color: #fff;
}

/*================================
  SCSS Information
----------------------------------
  File name: _header.scss
  Summary:   ヘッダー用ファイル
  Author:    neruco
================================*/
/*-------------------
	header
-------------------*/
.l-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 99px;
  padding: 16px min(3.203125vw, 41px) 0 min(3.59375vw, 46px);
  background: #fff;
  font-size: min(1.09375vw, 14px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2.0714285714;
  position: sticky;
  top: 0;
  z-index: 10000;
}
.l-header__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2em;
  font-size: 0.8571428571em;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 2.3333333333;
}
.l-header__left .c-logo {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: clamp(100px, 14.0625vw, 180px);
}
.l-header__title dt {
  font-size: 1.1428571429em;
  font-weight: 700;
  line-height: 1.75;
  color: #0E358F;
}
.l-header__title dd {
  margin-top: 4px;
}
.l-header__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  gap: 1em;
}
.l-header__info .c-searchBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(100%, 223px);
}
.l-header__info .c-searchBox__input {
  width: 100%;
  height: 34px;
  border-width: 1px;
  font-size: 1em;
  font-weight: 400;
}
.l-header__info .c-searchBox__input > input {
  padding: 0 30px 0 13px;
}
.l-header__info .c-searchBox__input > button[type=submit] {
  width: 22px;
  right: 8px;
}
.l-header__info .c-searchBox__input > button[type=submit] > img {
  width: 10px;
}
.l-header__infoBtns {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.l-header__infoBtns > * {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: 10.8571428571em;
}
.l-header__infoBtns .c-linkBtn {
  padding: 1px 1.3571428571em;
  font-size: 1em;
  white-space: nowrap;
}
.l-header__infoBtns .c-accordion.--hover .c-accordion__trigger {
  height: 100%;
  padding-right: calc(1.3571428571em + 10px);
}
.l-header__infoBtns .c-accordion.--hover .c-accordion__target {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0;
  left: auto;
  right: 0;
}
.l-header__infoBtns .c-accordion.--hover .c-accordion__target.is-open {
  padding: 8px 0 0;
}
.l-header__infoBtns .c-accordion.--hover .c-accordion__target .c-btn.--more:not(.c-accordionNavContact__link) {
  padding: 13px 46px 13px 20px;
  font-size: 1em;
  line-height: 1.8285714286;
  color: #fff;
}
.l-header__infoBtns .c-accordion.--hover .c-accordion__target .c-btn.--more:not(.c-accordionNavContact__link) [data-icon]::before {
  width: 20px;
}
.l-header__nav {
  height: 36px;
  margin-top: 12px;
}

/*================================
  SCSS Information
----------------------------------
  File name: _drawer.scss
  Summary:   ドロワーナビ用ファイル
  Author:    neruco
================================*/
/*-------------------
	drawer
-------------------*/
.c-drawerBtn {
  display: none;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 60px;
  height: 60px;
  border: none;
  border-radius: 0;
  background: none;
  font-size: 1rem;
  color: #000;
  text-align: center;
  position: fixed;
  top: 0;
  right: 12px;
  z-index: 10005;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-drawerBtn__border {
  width: 25px;
  height: 2px;
  background: #000;
  position: relative;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-drawerBtn__border::before, .c-drawerBtn__border::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  -webkit-transform-origin: 50% 50%;
          transform-origin: 50% 50%;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: margin, -webkit-transform;
  transition-property: margin, -webkit-transform;
  transition-property: margin, transform;
  transition-property: margin, transform, -webkit-transform;
}
.c-drawerBtn__border::before {
  -webkit-transform: translateY(calc(-50% - 8px));
          transform: translateY(calc(-50% - 8px));
}
.c-drawerBtn__border::after {
  -webkit-transform: translateY(calc(-50% + 8px));
          transform: translateY(calc(-50% + 8px));
}
.c-drawerBtn.is-open .c-drawerBtn__border {
  background: transparent;
}
.c-drawerBtn.is-open .c-drawerBtn__border::before {
  -webkit-transform: translateY(calc(-50% + 1px)) rotate(45deg);
          transform: translateY(calc(-50% + 1px)) rotate(45deg);
}
.c-drawerBtn.is-open .c-drawerBtn__border::after {
  -webkit-transform: translateY(calc(-50% - 1px)) rotate(-45deg);
          transform: translateY(calc(-50% - 1px)) rotate(-45deg);
}
body.is-loaded .c-drawerBtn {
  position: fixed;
}

.l-drawer {
  display: none;
  width: max(100%, 100vw);
  height: min(var(--js-viewHeight), 100vh);
  height: max(100%, 100dvh);
  background: #fff;
  font-size: inherit;
  color: #222;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 10001;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.l-drawer.is-closed {
  opacity: 0;
  pointer-events: none;
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.l-drawer.is-open {
  opacity: 1;
  pointer-events: inherit;
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
  -webkit-transform-origin: top center;
          transform-origin: top center;
}
.l-drawer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
  padding: 80px 12px 50px;
  opacity: 0;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
  -webkit-transition-delay: 0.2s;
          transition-delay: 0.2s;
}
.l-drawer.is-open .l-drawer__inner {
  overflow-y: scroll;
  opacity: 1;
}
.l-drawer__inner > *:not(:last-child) {
  margin-bottom: 32px;
}
.l-drawer__search {
  width: min(100%, 321px);
}
.l-drawer__search .c-searchBox__input > button[type=submit] {
  right: 8px;
}
.l-drawer__nav {
  width: min(100%, 321px);
  margin: 0 auto;
}
.l-drawer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 321px);
  gap: 1em;
}
.l-drawer__info:not(:last-child) {
  margin-bottom: 22px;
}
.l-drawer__info > * {
  width: 100%;
}
.l-drawer__info .c-linkBtn {
  padding: 1em 1em;
}

/*================================
  SCSS Information
----------------------------------
  File name: _nav.scss
  Summary:   グローバルナビ用ファイル
  Author:    neruco
================================*/
.l-nav {
  height: 100%;
}
.l-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0 2.2857142857em;
  height: 100%;
}
.l-nav__listItem {
  height: 100%;
}
.l-nav__listItem.c-accordion.--hover {
  position: initial;
}
.l-nav__listItem.c-accordion.--hover .c-accordion__target {
  width: 100%;
  padding: 0;
}
.l-nav__listItem.c-accordion.--hover .c-accordion__target.is-open {
  padding: 8px 0 0;
}
.l-nav__listItem.c-accordion.--hover .c-accordion__inner {
  width: min(100%, 1098px);
  padding: 26px 24px;
  margin: 0 auto;
  border-radius: 10px;
  background: #F8F8F8;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
}
.l-nav__listItem > .c-accordion__trigger {
  border: none;
  background: transparent;
}
.l-nav__listItem > .c-accordion__trigger a::after {
  position: relative;
  top: 6px;
}
.l-nav__listItem > a, .l-nav__listItem > .c-accordion__trigger a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: 100%;
  padding: 0 0 6px;
  border: none;
  background: transparent;
  color: inherit;
  position: relative;
}
.l-nav__listItem > a::after, .l-nav__listItem > .c-accordion__trigger a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: currentColor;
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-transform-origin: right bottom;
          transform-origin: right bottom;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.l-nav__listItem > a > span, .l-nav__listItem > .c-accordion__trigger a > span {
  height: 100%;
}
.l-nav__listItem > a, .l-nav__listItem > .c-accordion__trigger a {
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.l-nav__listItem > a:hover, .l-nav__listItem > a.is-current, .l-nav__listItem > a.is-open, .l-nav__listItem > .c-accordion__trigger a:hover, .l-nav__listItem > .c-accordion__trigger a.is-current, .l-nav__listItem > .c-accordion__trigger a.is-open {
  text-decoration: none;
}
.l-nav__listItem > a:hover::after, .l-nav__listItem > a.is-current::after, .l-nav__listItem > a.is-open::after, .l-nav__listItem > .c-accordion__trigger a:hover::after, .l-nav__listItem > .c-accordion__trigger a.is-current::after, .l-nav__listItem > .c-accordion__trigger a.is-open::after {
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
  -webkit-transform-origin: left bottom;
          transform-origin: left bottom;
}

.c-accordionNav__link {
  display: block;
  padding: 6px 0 6px 18px;
  border-radius: 4px;
  background: transparent;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.4666666667;
  position: relative;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}
.c-accordionNav__link.--parent {
  font-size: 16px;
  line-height: 1.375;
}
.c-accordionNav__link::before {
  content: "";
  width: 18px;
  height: calc(1lh + 12px);
  -webkit-mask: url(../img/common/arrow_more2.svg) center no-repeat;
          mask: url(../img/common/arrow_more2.svg) center no-repeat;
  -webkit-mask-size: 6px 10px;
          mask-size: 6px 10px;
  background: #0E358F;
  position: absolute;
  top: 0;
  left: 0;
}
.c-accordionNav__link:hover {
  background: rgba(34, 34, 34, 0.7);
  color: #fff;
}
.c-accordionNav__link:hover::before {
  background: currentColor;
}
.c-accordionNav__children {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px 8px;
  padding-left: 1em;
  margin-top: 8px;
}

.c-accordionNavContact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 16px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
          box-shadow: 0 0 10px rgba(0, 0, 0, 0.16);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.8285714286;
}
.c-accordionNavContact__item {
  color: #fff;
}
.c-accordionNavContact__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 8px;
  color: #fff;
  position: relative;
}
.c-accordionNavContact__link:hover, .c-accordionNavContact__link.is-current {
  color: #0E358F;
}

/*================================
  SCSS Information
----------------------------------
  File name: _main.scss
  Summary:   メイン用ファイル
  Author:    neruco
================================*/
/*-------------------
	main
-------------------*/
.l-main {
  max-width: 100%;
  min-height: var(--js-viewHeight);
  position: relative;
  z-index: 1;
}
.l-main__section {
  scroll-margin-top: calc(var(--js-headerHeight) + 0em);
}
.l-main__section:not(:last-child) {
  margin-bottom: 60px;
}
.l-main__section.--lightgray, .l-main__section.--accent {
  padding: 60px 0;
  background: #F8F8F8;
}
.l-main__section.--accent {
  background: #DFEBF2;
}
.l-main__section.--accent.--search {
  padding: 30px 0;
}
.l-main__section.--accent:has(.p-search), .l-main__section.--accent:has(.p-cta) {
  width: calc(100% - min(40 / 1280 * 100vw, 40px) * 2);
  margin: 0 auto;
  border-radius: 10px;
}
.l-main__section.--accent:has(.p-search):not(:last-child), .l-main__section.--accent:has(.p-cta):not(:last-child) {
  margin-top: 60px;
  margin-bottom: 60px;
}

.l-inner {
  width: min(100% - 24px, 1080px);
  margin: 0 auto;
}

/*================================
  SCSS Information
----------------------------------
  File name: _footer.scss
  Summary:   フッター用ファイル
  Author:    neruco
================================*/
/*-------------------
	footer
-------------------*/
.l-footer {
  margin-top: 60px;
  background: #F8F8F8;
}
.l-footer__inner {
  padding: 82px 0 84px;
}
.l-footer__inner .c-logo {
  width: min(100%, 208px);
  margin-bottom: 56px;
}
.l-footer--form {
  margin-top: 60px;
  background: #F8F8F8;
}
.l-footer--form .c-copyright {
  border: none;
}

.p-footerNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 41px;
}
.p-footerNav__cell {
  min-width: 290px;
}
.p-footerNav__cell .c-linkBtn {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 19px;
  margin-top: 44px;
}
.p-footerNav__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
  margin-bottom: 21px;
  font-size: 20px;
  font-weight: 500;
}
.p-footerNav__label::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 16/14;
}
.p-footerNav__label:has([data-icon=industry])::before {
  background: #0160E6;
}
.p-footerNav__label:has([data-icon=architecture])::before {
  background: #19C173;
}
.p-footerNav__label [data-icon] {
  gap: 13px;
}
.p-footerNav__label [data-icon]::before {
  width: 23px;
}

.c-subNav {
  font-weight: 500;
}
.c-subNav__item:not(:last-child) {
  margin-bottom: 5px;
}
.c-subNav__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-subNav__link:hover {
  text-decoration: underline;
}
.c-subNav__link::before {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 20px;
  aspect-ratio: 1/1;
  margin-top: 4px;
  -webkit-mask: url(../img/common/arrow_more2.svg) center no-repeat;
          mask: url(../img/common/arrow_more2.svg) center no-repeat;
  -webkit-mask-size: 6px auto;
          mask-size: 6px auto;
  background: #0E358F;
}

.c-copyright {
  padding: 11px 12px 10px;
  border-top: 1px solid rgba(34, 34, 34, 0.15);
  font-size: 12px;
  text-align: center;
}

/*================================
  SCSS Information
----------------------------------
  File name: _versatility.scss
  Summary:   汎用ファイル
  Author:    neruco
================================*/
[data-icon] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
[data-icon]::before {
  content: "";
  display: block;
  width: 26px;
  aspect-ratio: 1/1;
  -webkit-mask: center no-repeat;
          mask: center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
}

[data-icon=industry]::before {
  -webkit-mask-image: url("../img/common/icon_industry.svg");
          mask-image: url("../img/common/icon_industry.svg");
}

[data-icon=architecture]::before {
  -webkit-mask-image: url("../img/common/icon_architecture.svg");
          mask-image: url("../img/common/icon_architecture.svg");
}

[data-icon=product]::before {
  -webkit-mask-image: url("../img/common/icon_product.svg");
          mask-image: url("../img/common/icon_product.svg");
}

[data-icon=download]::before {
  -webkit-mask-image: url("../img/common/icon_download.svg");
          mask-image: url("../img/common/icon_download.svg");
}

[data-icon=mail]::before {
  -webkit-mask-image: url("../img/common/icon_mail.svg");
          mask-image: url("../img/common/icon_mail.svg");
}

[data-icon=seminar]::before {
  -webkit-mask-image: url("../img/common/icon_seminar.svg");
          mask-image: url("../img/common/icon_seminar.svg");
}

[data-icon=document]::before {
  -webkit-mask-image: url("../img/common/icon_document.svg");
          mask-image: url("../img/common/icon_document.svg");
}

[data-icon=cart]::before {
  -webkit-mask-image: url("../img/common/icon_cart.svg");
          mask-image: url("../img/common/icon_cart.svg");
}

[data-icon=movie]::before {
  -webkit-mask-image: url("../img/common/icon_movie.svg");
          mask-image: url("../img/common/icon_movie.svg");
}

[data-icon=blank]::before {
  -webkit-mask-image: url("../img/common/icon_blank.svg");
          mask-image: url("../img/common/icon_blank.svg");
}

.c-summary {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
}
.c-summary:not(:last-child) {
  margin-bottom: 40px;
}

.c-signature {
  text-align: right;
}
.c-signature:not(:first-child) {
  margin-top: 2em;
}

.c-imgTxt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 40px 12px;
}
.c-imgTxt.--reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.c-imgTxt.--column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-imgTxt:not(:first-child) {
  margin-top: 40px;
}
.c-imgTxt:not(:last-child) {
  margin-bottom: 40px;
}
.c-imgTxt__txt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(100%, var(--w));
}
.c-imgTxt__img {
  display: block;
  width: min(100%, var(--w));
}
.c-imgTxt__img > img {
  width: 100%;
}
.c-imgTxt__img.--full {
  width: 100%;
}

.c-imgTitleTxt__img {
  display: block;
}
.c-imgTitleTxt__img:not(:last-child) {
  margin-bottom: 21px;
}
.c-imgTitleTxt__title:not(:last-child) {
  margin-bottom: 7px;
}
.c-imgTitleTxt__txt a:not([class]) {
  text-decoration: underline;
}
.c-imgTitleTxt__txt a:not([class]):hover {
  text-decoration: none;
}
.c-imgTitleTxt__txt:not(:last-child) {
  margin-bottom: 20px;
}

.c-img {
  display: block;
  padding: 48px;
  margin: 0 auto;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
  -webkit-box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.16);
          box-shadow: 5px 5px 15px rgba(0, 0, 0, 0.16);
}

.c-figure {
  display: block;
  padding: 32px;
  border-radius: 10px;
  background: #F8F8F8;
  text-align: center;
}
.c-figure > img {
  width: min(100%, 310px);
  margin: 0 auto;
}

.c-note {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  letter-spacing: 0;
}
.c-note::before {
  content: "※";
  display: block;
}

dl:not([class]):not(:first-child) {
  margin-top: 1lh;
}
dl:not([class]):not(:last-child) {
  margin-bottom: 1lh;
}

.c-headingEnJa {
  font-size: 2.125em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.7647058824;
}
.c-headingEnJa::before {
  content: attr(data-en);
  display: block;
  font-size: 0.4705882353em;
  color: #0E358F;
}
.c-headingEnJa:not(:last-child) {
  margin-bottom: 40px;
}
.c-headingEnJa:has(+ .c-summary) {
  margin-bottom: 20px;
}
.c-headingEnJa small {
  font-size: 0.7058823529em;
}

.c-btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px;
}
.c-btnWrap:not(:first-child) {
  margin-top: 40px;
}

.c-btn {
  --bg: #4A4C55;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: var(--w, -webkit-fit-content);
  width: var(--w, -moz-fit-content);
  width: var(--w, fit-content);
  min-width: 321px;
  padding: min(1.75em, 28px) min(1em, 16px);
  border-radius: 10px;
  outline: 1px solid var(--bg);
  outline-offset: -1px;
  background: var(--bg);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-btn:hover {
  background: #fff;
  color: var(--bg);
}
.c-btn.--industry {
  --bg: #0160E6;
  outline-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#00A3EB), to(#0059B3));
  background: linear-gradient(to right, #00A3EB, #0059B3);
}
.c-btn.--industry:hover {
  outline-color: var(--bg);
  background: #fff;
  color: #0160E6;
}
.c-btn.--architecture {
  --bg: #19C173;
  outline-color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#5BCEA6), to(#0D8B5B));
  background: linear-gradient(to right, #5BCEA6, #0D8B5B);
}
.c-btn.--architecture:hover {
  outline-color: var(--bg);
  background: #fff;
  color: #19C173;
}
.c-btn.--product {
  --bg: #304F98;
}
.c-btn.--more {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: min(1.625em, 26px);
  padding-right: calc(22px + min(1em, 16px));
  position: relative;
}
.c-btn.--more::before, .c-btn.--more::after {
  content: "";
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 22px;
  aspect-ratio: 1/1;
  border-radius: 4px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: min(1.625em, 26px);
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
  z-index: 1;
}
.c-btn.--more::before {
  -webkit-mask: url(../img/common/arrow_more.svg) center no-repeat;
          mask: url(../img/common/arrow_more.svg) center no-repeat;
  -webkit-mask-size: 14px 14px;
          mask-size: 14px 14px;
  background-color: var(--bg);
  z-index: 2;
}
.c-btn.--more:hover::before {
  background: #fff;
}
.c-btn.--more:hover::after {
  background: currentColor;
}
.c-btn[data-width="400"] {
  width: 400px;
}

.c-linkBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1px 19px;
  border: 1px solid #4A4C55;
  border-radius: 5px;
  background: #4A4C55;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2.0714285714;
  color: #fff;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}
.c-linkBtn[class*=trigger] {
  width: 100%;
  position: relative;
}
.c-linkBtn[class*=trigger]::after {
  content: "";
  width: 10px;
  aspect-ratio: 10/6;
  -webkit-mask: url(../img/common/arrow_down.svg) center no-repeat;
          mask: url(../img/common/arrow_down.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 8px;
  -webkit-transform: translateY(-50%) rotate(0);
          transform: translateY(-50%) rotate(0);
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-linkBtn[target=_blank] {
  padding-right: 45px;
  border-color: #707070;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
  color: #222;
  position: relative;
}
.c-linkBtn[target=_blank]::after {
  content: "";
  width: 6px;
  aspect-ratio: 6/10;
  -webkit-mask: url(../img/common/arrow_more2.svg) center no-repeat;
          mask: url(../img/common/arrow_more2.svg) center no-repeat;
  -webkit-mask-size: contain;
          mask-size: contain;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-linkBtn:hover, .c-linkBtn.is-open {
  background: #fff;
  color: #4A4C55;
}
.c-linkBtn:hover[class*=trigger]::after, .c-linkBtn.is-open[class*=trigger]::after {
  -webkit-transform: translateY(-50%) rotate(180deg);
          transform: translateY(-50%) rotate(180deg);
}
.c-linkBtn:hover[target=_blank], .c-linkBtn.is-open[target=_blank] {
  background: #707070;
  color: #fff;
}

.c-btnMore {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-btnMore::before {
  content: "";
  display: block;
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_more-black.svg) center no-repeat;
  background-size: contain;
}
.c-btnMore.--white::before {
  background-image: url(../img/common/arrow_more-white.svg);
}

.c-logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  width: 180px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
}
.c-logo img {
  aspect-ratio: 180/45;
}

.c-catTag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 12px 0 26px;
  border: 1px solid #CCC;
  border-radius: 4px;
  background: #fff;
  font-size: 0.875em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.9285714286;
  color: #222;
  position: relative;
}
.c-catTag::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #CCC;
  position: absolute;
  top: 0.6428571429em;
  left: 12px;
}
.c-catTag.--industry::before {
  background: #0160E6;
}
.c-catTag.--architecture::before {
  background: #19C173;
}

.c-cardList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em;
}
.c-cardList__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  text-decoration: none;
}
.c-cardList__link:hover {
  text-decoration: none;
  opacity: 0.7;
}
.c-cardList__link .c-catTag {
  margin-bottom: 16px;
}
.c-cardList__link .c-btnMore {
  font-size: 0.875em;
}
.c-cardList__link .c-btnMore:not(:first-child) {
  margin-top: auto;
}
.c-cardList__img {
  display: block;
  width: 100%;
  aspect-ratio: 328/185;
  margin: 0 auto 30px;
  border-radius: 12px;
  -webkit-box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
          box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.c-cardList__img > img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-cardList__title {
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.6;
}
.c-cardList__title:not(:last-child) {
  margin-bottom: 20px;
}
.c-cardList__title:has(+ time):not(:last-child) {
  margin-bottom: 14px;
}
.c-cardList__date {
  color: rgba(34, 34, 34, 0.7);
}

.p-pickup {
  padding: 0 0 80px;
  position: relative;
  z-index: 1;
}
.p-pickup::after {
  content: "";
  width: calc(100vw - clamp(12px, 40 / 1280 * 100vw, 40px) * 2);
  height: 469px;
  border-radius: 10px;
  background: #304F98;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: -1;
}

.c-pickupList {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3.2857142857em;
  font-size: 0.875em;
  line-height: 1.6;
  color: #fff;
}
.c-pickupList__link {
  display: block;
  text-decoration: none;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
}
.c-pickupList__link:hover {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}
.c-pickupList__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(100%, 236px);
  aspect-ratio: 1/1;
  margin: 0 auto 40px;
  border-radius: 10px;
  background: #fff;
  -webkit-box-shadow: 5px 5px 14px rgba(0, 0, 0, 0.08);
          box-shadow: 5px 5px 14px rgba(0, 0, 0, 0.08);
}
.c-pickupList__title {
  margin-top: 15px;
  font-size: 1.2857142857em;
  font-weight: 500;
}
.c-pickupList__summary {
  margin-top: 10px;
}

.c-tableScroll {
  width: 100%;
  overflow: hidden;
}
.c-tableScroll:not(:last-child) {
  margin-bottom: 60px;
}
.c-tableScroll > table {
  width: 880px;
  margin: 0 auto;
}
.c-tableScroll--notScroll:not(:last-child) {
  margin-bottom: 60px;
}
.c-tableScroll--notScroll > table {
  width: min(100%, 880px);
  margin: 0 auto;
}

.wp-block-table table,
table {
  border-collapse: collapse;
  border-spacing: 1px;
  border-color: rgba(34, 34, 34, 0.1);
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.8125;
  text-align: left;
  width: 100%;
}
.wp-block-table table.--left,
table.--left {
  text-align: left;
}
.wp-block-table table a:not([class]),
table a:not([class]) {
  text-decoration: underline;
}
.wp-block-table table a:not([class]):hover,
table a:not([class]):hover {
  text-decoration: none;
}
.wp-block-table table thead,
table thead {
  border: none;
}
.wp-block-table table thead th,
table thead th {
  background: #F0F3F9;
  text-align: center;
}
.wp-block-table table tbody th,
table tbody th {
  background: #F8F8F8;
  color: #273846;
  font-size: 16px;
}
.wp-block-table table tbody td,
table tbody td {
  color: #273846;
}
.wp-block-table table th,
table th {
  padding: 11px 16px 6px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  font-weight: 400;
  line-height: 1.5;
  color: #222;
}
.wp-block-table table td,
table td {
  padding: 15px 16px 11px;
  border: 1px solid rgba(34, 34, 34, 0.1);
  background: #fff;
}
.wp-block-table table tr.--bg td,
table tr.--bg td {
  background: rgba(248, 248, 248, 0.5);
}

.p-search {
  text-align: center;
}

.c-searchSet {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
.c-searchSet .c-searchBox {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: min(100%, 481px);
}

.c-searchBox__input {
  width: min(100%, 481px);
  height: 78px;
  border: 2px solid #E0E0E0;
  border-radius: 3em;
  background: #fff;
  overflow: hidden;
  position: relative;
}
.c-searchBox__input:focus-within {
  border-color: currentColor;
}
.c-searchBox__input > input {
  width: 100%;
  height: 100%;
  padding: 0 62px 0 33px;
  background: transparent;
}
.c-searchBox__input > input:focus {
  outline: none;
}
.c-searchBox__input > button[type=submit] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 44px;
  aspect-ratio: 1/1;
  border: none;
  border-radius: 50%;
  background: #E0E0E0;
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-searchBox__input > button[type=submit] > img {
  width: 15px;
  aspect-ratio: 1/1;
}

.p-cta {
  text-align: center;
}
.p-cta__contents {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.p-cta__contents:not(:last-child) {
  padding-bottom: 30px;
  margin-bottom: 30px;
  position: relative;
}
.p-cta__contents:not(:last-child)::after {
  content: "";
  width: 100%;
  height: 1px;
  background: url(../img/common/border_dashed.svg) center no-repeat;
  background-size: cover;
  position: absolute;
  bottom: 0;
  left: 0;
}

.pageCode-industry .p-cta__contents:not(.eclink):not(.downloadcta).--architecture {
  display: none;
}
.pageCode-industry .p-cta__contents.--industry {
  padding-bottom: 0;
  margin-bottom: 0;
}
.pageCode-industry .p-cta__contents.--industry::after {
  display: none;
}

.pageCode-architecture .p-cta__contents.--industry {
  display: none;
}

.c-cta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 1.4615384615em 12px;
  border-radius: 10px;
  outline: 2px solid transparent;
  outline-offset: -1px;
  background: -webkit-gradient(linear, left top, right top, from(#5A5959), to(#222));
  background: linear-gradient(to right, #5A5959, #222);
  font-size: 1.625em;
  color: #fff;
}
.c-cta.--industry {
  background: -webkit-gradient(linear, left top, right top, from(#00A3EB), to(#0059B3));
  background: linear-gradient(to right, #00A3EB, #0059B3);
}
.c-cta.--architecture {
  background: -webkit-gradient(linear, left top, right top, from(#5BCEA6), to(#0D8B5B));
  background: linear-gradient(to right, #5BCEA6, #0D8B5B);
}
.c-cta small {
  font-size: 0.9230769231em;
  font-weight: 500;
}
.c-cta strong {
  font-size: 1.0769230769em;
  font-weight: 600;
}
.c-cta:hover {
  outline-color: #222;
  background: #fff;
  color: #222;
}
.c-cta:hover.--industry {
  outline-color: #0160E6;
  color: #0160E6;
}
.c-cta:hover.--architecture {
  outline-color: #19C173;
  color: #19C173;
}

.c-breadcrumbs {
  padding: 5px 0;
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0;
  color: #000;
}
.c-breadcrumbs:not(:last-child) {
  margin-bottom: 0px;
}
.c-breadcrumbs__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 0 16px;
}
.c-breadcrumbs__list li:not(:last-child) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-breadcrumbs__list li:not(:last-child)::after {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  background: url(../img/common/arrow_breadcrumbs.svg) center no-repeat;
  background-size: auto 100%;
}
.c-breadcrumbs__list a {
  color: rgba(34, 34, 34, 0.55);
}

.c-pager .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
}
.c-pager .nav-links .page-numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 40px;
  height: 40px;
  border: 1px solid #000;
  border-radius: 5px;
  background: #fff;
  font-size: inherit;
  color: #000;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background, color;
  transition-property: background, color;
}
.c-pager .nav-links .page-numbers:hover, .c-pager .nav-links .page-numbers.current {
  border-color: #0E358F;
  background: #0E358F;
  color: #fff;
}
.c-pager .nav-links .page-numbers.next,
.c-pager .nav-links .page-numbers.prev {
  margin: 0 0 0 15px;
  background: #fff;
  font-size: 0;
  color: transparent;
}
.c-pager .nav-links .page-numbers.next::after,
.c-pager .nav-links .page-numbers.prev::after {
  display: none;
}
.c-pager .nav-links .page-numbers.next::before,
.c-pager .nav-links .page-numbers.prev::before {
  content: "";
  display: block;
  width: 13px;
  height: 12px;
  -webkit-mask: url(../img/common/pager_next.svg) center no-repeat;
          mask: url(../img/common/pager_next.svg) center no-repeat;
  -webkit-mask-size: auto 100%;
          mask-size: auto 100%;
  background: #000;
  position: relative;
  top: auto;
  left: auto;
  -webkit-transform: none;
          transform: none;
  color: inherit;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: background;
  transition-property: background;
}
.c-pager .nav-links .page-numbers.next:hover,
.c-pager .nav-links .page-numbers.prev:hover {
  border-color: #0E358F;
  background: #0E358F !important;
}
.c-pager .nav-links .page-numbers.next:hover::before,
.c-pager .nav-links .page-numbers.prev:hover::before {
  background: #fff;
}
.c-pager .nav-links .page-numbers.prev {
  margin: 0 15px 0 0;
}
.c-pager .nav-links .page-numbers.prev::before {
  -webkit-mask-image: url(../img/common/pager_prev.svg);
          mask-image: url(../img/common/pager_prev.svg);
}

.p-fixedBanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 8px;
  width: 52px;
  position: fixed;
  bottom: 80px;
  right: 0;
  opacity: 0;
  z-index: 10000;
  pointer-events: none;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity;
  transition-property: opacity;
}
.p-fixedBanner__close {
  position: relative;
  display: block;
  width: 20px;
  background: rgba(74, 76, 85, 0.4);
  border-radius: 50%;
  height: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-fixedBanner__close::before {
  content: "×";
  color: #222;
  font-size: 12px;
}
.p-fixedBanner.is-fixed {
  opacity: 1;
  pointer-events: initial;
}

.p-fixedBanner.is-hidden {
  opacity: 0;
  pointer-events: none;
  -webkit-transition: opacity 0.2s;
  transition: opacity 0.2s;
}

.p-fixedBanner.is-closed {
  display: none;
}

.c-fixedBanner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 16px;
  border: 1px solid transparent;
  border-radius: 10px 0 0 10px;
  background: -webkit-gradient(linear, left top, left bottom, from(#5A5959), to(#222));
  background: linear-gradient(to bottom, #5A5959, #222);
  font-size: 14px;
  font-weight: 500;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  color: #fff;
}
.c-fixedBanner [data-icon] {
  gap: 6px;
}
.c-fixedBanner [data-icon]::before {
  width: 20px;
}
.c-fixedBanner:hover {
  border-color: #222;
  background: #fff;
  color: #222;
}

.pageCode-industry .c-fixedBanner.--general, .pageCode-industry .c-fixedBanner.--architecture {
  display: none;
}
.pageCode-industry .c-fixedBanner.--industry {
  background: -webkit-gradient(linear, left top, right top, from(#00A3EB), to(#0059B3));
  background: linear-gradient(to right, #00A3EB, #0059B3);
}
.pageCode-industry .c-fixedBanner.--industry:hover {
  border-color: #0160E6;
  background: #fff;
  color: #0160E6;
}

.pageCode-architecture .c-fixedBanner.--general, .pageCode-architecture .c-fixedBanner.--industry {
  display: none;
}
.pageCode-architecture .c-fixedBanner.--architecture {
  background: -webkit-gradient(linear, left top, right top, from(#5BCEA6), to(#0D8B5B));
  background: linear-gradient(to right, #5BCEA6, #0D8B5B);
}
.pageCode-architecture .c-fixedBanner.--architecture:hover {
  border-color: #19C173;
  background: #fff;
  color: #19C173;
}

.pageCode-product .c-fixedBanner.--architecture, .pageCode-product .c-fixedBanner.--industry,
.pageCode-download .c-fixedBanner.--architecture,
.pageCode-download .c-fixedBanner.--industry,
.pageCode-top .c-fixedBanner.--architecture,
.pageCode-top .c-fixedBanner.--industry {
  display: none;
}

.p-topics > *:not(:last-child) {
  margin-bottom: 40px;
}

.c-notices {
  display: grid;
  grid-template-columns: 12.5em 1fr;
  gap: min(4.609375vw, 59px);
  padding: 32px 37px;
  border: 2px solid #C40000;
  border-radius: 10px;
}
.c-notices__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.625em;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 2.3076923077;
  color: #C40000;
  text-align: center;
}
.c-notices__contents {
  font-size: 1.125em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.6;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.c-notices__contents ul li {
  padding-left: 21px;
  position: relative;
}
.c-notices__contents ul li::before {
  content: "";
  width: 8px;
  aspect-ratio: 1/1;
  background: #C40000;
  position: absolute;
  top: 11px;
  left: 0;
}
.c-notices__contents ul li:not(:last-child) {
  margin-bottom: 14px;
}
.c-notices__contents ul li a {
  text-decoration: none;
}

.c-news {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 3em;
}
.c-news__left {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-news__heading {
  margin-bottom: 3px;
  font-size: 1.75em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2.1428571429;
}
.c-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  padding: 13px 1em 0;
}
.c-news__date {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  margin-right: 1.5em;
}
.c-news__title {
  margin-left: 1em;
}

.c-catTagNews {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 3em;
  width: 120px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 2;
  color: #fff;
}
.c-catTagNews.--update {
  background-color: #BF5184;
}
.c-catTagNews.--notice {
  background-color: #6872B7;
}
.c-catTagNews.--event {
  background-color: #ABB768;
}
.c-catTagNews.--product {
  background-color: #6BB3A5;
}

.p-themes {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 15px;
}
.p-themes__cell {
  padding: 60px 40px;
  border-radius: 10px;
  background: #fff;
}
.p-themes__cell .c-btn.--more {
  min-width: 220px;
  padding: 13px 25px;
  margin: 0 auto;
}
.p-themes__cell .c-btn.--more:not(:first-child) {
  margin-top: 40px;
}
.p-themes__label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.7826086957em;
  font-size: 1.4375em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.252173913;
}
.p-themes__label::before {
  content: "";
  display: block;
  width: 16px;
  aspect-ratio: 1/1;
}
.p-themes__label:not(:last-child) {
  margin-bottom: 40px;
}
.p-themes__label.--industry::before {
  background-color: #0160E6;
}
.p-themes__label.--architecture::before {
  background-color: #19C173;
}
.p-themes__label [data-icon] {
  gap: 14px;
}
.p-themes__label [data-icon]::before {
  width: 33px;
}

.c-themesList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 8px 10px;
}
.c-themesList__item {
  width: min(100%, 220px);
}
.c-themesList__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  aspect-ratio: 220/126;
  padding: 11px 16px;
  border-radius: 10px;
  font-weight: 700;
  line-height: 1.5;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
  text-decoration: none;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: -webkit-filter;
  transition-property: -webkit-filter;
  transition-property: filter;
  transition-property: filter, -webkit-filter;
}
.c-themesList__link:hover {
  -webkit-filter: brightness(0.7);
          filter: brightness(0.7);
}
.c-themesList__link .c-btnMore {
  margin-top: auto;
  font-size: 14px;
  font-weight: 600;
}
.c-themesList__bg {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.c-themesList__bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-download__ranking {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.c-ranking {
  padding: 40px 2.5em 24px;
  border: 2px solid;
  border-radius: 10px;
}
.c-ranking.--industry {
  border-color: #0160E6;
}
.c-ranking.--architecture {
  border-color: #19C173;
}
.c-ranking__title {
  padding: 0 17px;
  font-size: 1.625em;
  font-weight: 500;
}
.c-ranking__title:not(:last-child) {
  margin-bottom: calc(1.6923076923em - 16px);
}
.c-ranking__title [data-icon] {
  gap: 16px;
}
.c-ranking__title [data-icon]::before {
  width: 33px;
}
.c-ranking__list {
  counter-reset: number;
}
.c-ranking__listItem {
  counter-increment: number;
}
.c-ranking__listItem:not(:last-child) {
  border-bottom: 1px solid rgba(34, 34, 34, 0.15);
}
.c-ranking__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 13px;
  padding: 16px 38px 16px 17px;
  line-height: 1.6;
  position: relative;
}
.c-ranking__link::before {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  content: counter(number);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 24px;
  aspect-ratio: 24/30;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%);
  padding: 0 0 2px;
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
}
.c-ranking.--industry .c-ranking__link::before {
  background: #0160E6;
}
.c-ranking.--architecture .c-ranking__link::before {
  background: #19C173;
}
.c-ranking__link::after {
  content: "";
  width: 20px;
  aspect-ratio: 1/1;
  background: url(../img/common/arrow_more-black.svg) center no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-headingH2 {
  font-size: 34px;
  font-weight: bold;
}
.c-headingH2 + .c-summary {
  margin-top: 30px;
  font-size: 16px;
  font-weight: 400;
}

.p-themeTitle {
  margin-bottom: 30px;
}

.c-headingH3 {
  font-size: 26px;
  font-weight: 500;
  padding-bottom: 16px;
  border-bottom: 2px solid rgba(34, 34, 34, 0.15);
  position: relative;
  margin-bottom: 32px;
}
.c-headingH3::after {
  content: "";
  width: 48px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
}
.c-headingH3.--industry::after {
  background: #0160E6;
}
.c-headingH3.--architecture::after {
  background: #19C173;
}
.c-headingH3 + .c-summary {
  font-size: 20px;
  font-weight: 500;
  color: #0E358F;
  margin-bottom: 15px;
}

.c-tags ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.c-tags ul li {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px 12px 6px;
  background: rgba(34, 34, 34, 0.1);
  border-radius: 4px;
  font-size: 14px;
  font-weight: normal;
}

.p-themes.--industryTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0;
}
.p-themes.--industryTop .p-themes__cell {
  padding: 0;
  width: 100%;
}
.p-themes.--industryTop .c-themesList {
  gap: 15px;
}
.p-themes.--industryTop .c-themesList__item {
  width: min(50% - 7px, 350px);
}

#totop {
  width: 50px;
  height: 50px;
  position: fixed;
  right: 10px;
  bottom: 10px;
  background: #ddd;
  opacity: 0.6;
  border-radius: 50%;
  z-index: 9999;
}

#totop a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}

#totop a::before {
  content: "";
  display: block;
  width: 15px;
  height: 42px;
  background: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCA0NDggNTEyIj48cGF0aCBkPSJNMjQwLjk3MSAxMzAuNTI0bDE5NC4zNDMgMTk0LjM0M2M5LjM3MyA5LjM3MyA5LjM3MyAyNC41NjkgMCAzMy45NDFsLTIyLjY2NyAyMi42NjdjLTkuMzU3IDkuMzU3LTI0LjUyMiA5LjM3NS0zMy45MDEuMDRMMjI0IDIyNy40OTUgNjkuMjU1IDM4MS41MTZjLTkuMzc5IDkuMzM1LTI0LjU0NCA5LjMxNy0zMy45MDEtLjA0bC0yMi42NjctMjIuNjY3Yy05LjM3My05LjM3My05LjM3My0yNC41NjkgMC0zMy45NDFMMjA3LjAzIDEzMC41MjVjOS4zNzItOS4zNzMgMjQuNTY4LTkuMzczIDMzLjk0MS0uMDAxeiIvPjwvc3ZnPg==") no-repeat center/cover;
  background-size: 15px 42px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
}

#totop:hover {
  background: #999;
}

#totop:hover a::before {
  color: #ddd;
}

.mf-search-box .mf-search-bar .mf-search-bar_button .mf-search-bar_button_icon {
  margin-right: 0 !important;
}

/*================================
  SCSS Information
----------------------------------
  File name: _list.scss
  Summary:   リスト用ファイル
  Author:    neruco
================================*/
/* リスト */
.c-list.--sup {
  counter-reset: number;
  font-size: 0.83em;
}
.c-list > li {
  padding-left: 1em;
  position: relative;
}
.c-list > li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
.c-list > li a:not([class]) {
  text-decoration: underline;
}
.c-list > li a:not([class]):hover {
  text-decoration: none;
}
.c-list.--sup > li {
  counter-increment: number;
  padding-left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 4px;
}
.c-list.--sup > li::before {
  content: "※" counter(number);
  font-size: 10px;
  position: relative;
  top: 0.2em;
}

/*================================
  SCSS Information
----------------------------------
  File name: _accordion.scss
  Summary:   アコーディオン用ファイル
  Author:    neruco
================================*/
.c-accordion {
  position: relative;
}
.c-accordion__trigger {
  cursor: pointer;
}
.c-accordion__trigger > span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-accordion__target {
  width: 0;
  height: 0;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity, height, padding;
  transition-property: opacity, height, padding;
}
.c-accordion__target.is-open {
  width: auto;
  height: auto;
  opacity: 1;
  pointer-events: inherit;
  z-index: 99;
  -webkit-transition: ease-out 0.3s;
  transition: ease-out 0.3s;
  -webkit-transition-property: opacity, height, padding;
  transition-property: opacity, height, padding;
}
.c-accordion.--hover .c-accordion__target {
  overflow: visible;
  position: absolute;
  top: calc(100% - 10px);
  left: 0;
}

/*================================
  SCSS Information
----------------------------------
  File name: _kv.scss
  Summary:   KV用ファイル
  Author:    neruco
================================*/
.p-kv {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  height: min(25.5em, 408px);
  padding: 0 12px 12px;
}
.p-kv.--lower-depth-01 {
  grid-template-columns: repeat(1, 1fr);
  height: min(21.3125em, 341px);
}
.p-kv.--lower-depth-01 .c-kvCat.--exhibitionTop .c-kvCat__label {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 48px;
}
.p-kv.--lower-depth-01 .c-kvCat.--exhibitionTop .c-kvCat__label-en {
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  display: block;
  margin: auto;
}
.p-kv.--lower-depth-01 .c-kvCat.--exhibitionTop .c-searchSet {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.p-kv.--lower-depth-01 .c-kvCat.--exhibitionTop .c-searchSet .c-btn.--more {
  height: 78px;
  margin-top: 0;
  min-width: 320px;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding-left: 25px;
}
.p-kv.--lower-depth-01 .c-kvCat.--exhibitionTop .c-searchSet .c-btn.--more [data-icon] {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.p-kv.--lower-depth-02 {
  grid-template-columns: repeat(1, 1fr);
  height: min(21.3125em, 341px);
}
.p-kv.--lower-depth-03 {
  grid-template-columns: repeat(1, 1fr);
  height: min(23.75em, 380px);
}
.p-kv.--lower-depth-03 .mvtext01 {
  font-size: 18px;
  font-weight: normal;
  display: block;
  text-align: center;
  color: rgba(34, 34, 34, 0.7);
}
.p-kv.--lower-depth-03 .mvtext01 {
  text-align: center;
}
.p-kv.--other {
  grid-template-columns: repeat(1, 1fr);
  height: min(13.25em, 212px);
}
.p-kv.--form {
  grid-template-columns: repeat(1, 1fr);
  height: min(13.25em, 212px);
}
.p-kv.--other .c-kvCat__label {
  font-size: 40px;
  font-weight: bold;
}
.p-kv.--other .c-kvCat__label-en {
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  display: block;
  margin: auto;
}
.p-kv.--form .c-kvCat {
  background: transparent;
  color: #222;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  text-align: left;
  width: min(100% - 24px, 1080px);
  margin: auto;
  overflow: visible;
}
.p-kv.--form .c-kvCat__label {
  font-size: 40px;
  font-weight: bold;
  margin-bottom: 16px;
}
.p-kv.--form .c-kvCat__label-en {
  font-family: "Instrument Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  text-align: left;
  display: block;
  margin: auto;
}

.c-kvCat {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: center no-repeat;
  background-size: cover;
  font-size: clamp(12px, 1.25vw, 16px);
  letter-spacing: 0.03em;
  color: #fff;
  overflow: hidden;
}
.c-kvCat.--industry {
  background-image: url(../img/top/mv_bg-industry.png);
}
.c-kvCat.--architecture {
  background-image: url(../img/top/mv_bg-architecture.png);
}
.c-kvCat.--exhibitionTop .c-searchSet .c-searchBox__input {
  color: #222;
}
.c-kvCat.--exhibitionTop.--industry {
  background-image: url(../img/industry/mv-bg.png);
}
.c-kvCat.--exhibitionTop.--architecture {
  background-image: url(../img/architecture/mv-bg.png);
}
.c-kvCat.--product {
  background-image: url(../img/product/mv-bg.png);
}
.c-kvCat.--news {
  background-image: url(../img/news/mv-bg.png);
}
.c-kvCat.--seminar {
  background-image: url(../img/seminar/mv-bg.png);
}
.c-kvCat.--download {
  background-image: url(../img/download/mv-bg.png);
}
.c-kvCat.--themeTop {
  color: #222;
  background-image: none !important;
  background-color: rgba(1, 96, 230, 0.06);
}
.c-kvCat.--themeTop .c-kvCat__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 2.5em;
}
.c-kvCat.--themeTop .c-kvCat__tags span {
  font-size: 14px;
  background-color: rgba(34, 34, 34, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}
.c-kvCat.--themeTop.--industry h1 {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
.c-kvCat.--themeTop.--industry .c-kvCat__label-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
  gap: 12px;
  margin-bottom: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-kvCat.--themeTop.--industry .c-kvCat__label-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/industry/theme/lower-kv-icon-industry.svg");
  background-size: contain;
  background-position: center;
}
.c-kvCat.--themeTop.--architecture {
  background-color: rgba(25, 193, 115, 0.06);
}
.c-kvCat.--themeTop.--architecture h1 {
  display: block;
  margin-bottom: 20px;
  text-align: center;
}
.c-kvCat.--themeTop.--architecture .c-kvCat__label-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 18px;
  font-weight: 500;
  gap: 12px;
  margin-bottom: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.c-kvCat.--themeTop.--architecture .c-kvCat__label-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/architecture/theme/lower-kv-icon-architecture.svg");
  background-size: contain;
  background-position: center;
}
.c-kvCat.--themeDetail {
  color: #222;
  background-image: none !important;
  background-color: rgba(1, 96, 230, 0.06);
}
.c-kvCat.--themeDetail.--industry h1 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
}
.c-kvCat.--themeDetail.--industry .c-kvCat__label-icon {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 18px;
  font-weight: 500;
  gap: 12px;
  margin-bottom: 12px;
}
.c-kvCat.--themeDetail.--industry .c-kvCat__label-icon::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background-image: url("../img/industry/theme/lower-kv-icon-industry.svg");
  background-size: contain;
  background-position: center;
}
.c-kvCat.--themeDetail.--industry .c-kvCat__btnWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5em;
}
.c-kvCat.--themeDetail.--industry .c-kvCat__btnWrap .c-btn.--more {
  min-width: 320px;
  padding: 1.625em 0 1.625em 1.625em;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin-top: 0;
}
.c-kvCat.--themeDetail.--industry .c-kvCat__btnWrap .c-btn.--more span {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.c-kvCat.--themeDetail .c-kvCat__tags {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-bottom: 2.5em;
}
.c-kvCat.--themeDetail .c-kvCat__tags span {
  font-size: 14px;
  background-color: rgba(34, 34, 34, 0.1);
  padding: 4px 12px;
  border-radius: 4px;
}
.c-kvCat .c-btn.--more {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 306px;
  padding: 1.375em 0 1.125em;
  margin-top: 1.875em;
  font-size: 1em;
}
.c-kvCat .c-btn.--more::before, .c-kvCat .c-btn.--more::after {
  right: min(0.875em, 14px);
}
.c-kvCat .c-btn.--more [data-icon] {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 13px;
}
.c-kvCat__label {
  margin-bottom: 4px;
  font-size: 2.375em;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1.5789473684;
}

/*================================
  SCSS Information
----------------------------------
  File name: _form.scss
  Summary:   フォーム用ファイル
  Author:    neruco
================================*/
.c-form__summary strong {
  display: block;
}
.c-form__summary small {
  display: block;
  margin-top: 19px;
  font-size: 14px;
}
.c-form__contents {
  margin-top: 21px;
}
.c-form__item {
  display: grid;
  grid-template-columns: 8em 1fr;
  gap: 0.5em 32px;
}
.c-form__item:not(:last-child) {
  margin-bottom: 1em;
}
.c-form__label {
  padding-top: 0.8em;
  font-weight: 600;
}
.c-form__privacy {
  margin-top: 36px;
  line-height: 1.828125;
}
.c-form__privacy a:not([class]) {
  text-decoration: underline;
}
.c-form__privacy a:not([class]):hover {
  text-decoration: none;
}
.c-form__check {
  margin-top: 34px;
  text-align: center;
}
.c-form__btn {
  margin-top: 38px;
}

.c-checkbox {
  display: none;
}
.c-checkbox__label {
  padding-left: 26px;
  cursor: pointer;
  position: relative;
}
.c-checkbox__label::before, .c-checkbox__label::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  border: 1px solid #4A4C55;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.c-checkbox__label::before {
  content: "✓";
  border: none;
  background: none;
  line-height: 1;
  color: #C40000;
  opacity: 0;
  z-index: 2;
}
.c-checkbox:checked ~ .c-checkbox__label::before {
  opacity: 1;
}

.c-form__check .wpcf7-list-item input {
  display: none;
}
.c-form__check .wpcf7-list-item .wpcf7-list-item-label {
  padding-left: 26px;
  cursor: pointer;
  position: relative;
}
.c-form__check .wpcf7-list-item .wpcf7-list-item-label::before, .c-form__check .wpcf7-list-item .wpcf7-list-item-label::after {
  content: "";
  width: 16px;
  aspect-ratio: 1/1;
  border: 1px solid #4A4C55;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: 1;
}
.c-form__check .wpcf7-list-item .wpcf7-list-item-label::before {
  content: "✓";
  border: none;
  background: none;
  line-height: 1;
  color: #C40000;
  opacity: 0;
  z-index: 2;
}
.c-form__check .wpcf7-list-item input:checked ~ .wpcf7-list-item-label::before {
  opacity: 1;
}

.c-thanks {
  padding: 64px 0 80px;
}
.c-thanks .c-text {
  color: #444444;
}
.c-thanks__title {
  margin-bottom: 30px;
  font-size: 28px;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.5357142857;
  text-align: center;
}
.c-thanks__btn {
  margin-top: 77px;
}
.c-thanks__btn .c-btn {
  width: min(100%, 285px);
}

.c-formWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  margin-top: 40px;
}
.c-formWrap__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-formWrap__img {
  margin-bottom: 32px;
}
.c-formWrap__img figure.play {
  position: relative;
}
.c-formWrap__img figure.play::after {
  content: "";
  display: block;
  width: 76px;
  height: 76px;
  background: url("/_assets/img/seminar/icon_play.svg") no-repeat center;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}
.c-formWrap__img figure.play img {
  position: relative;
  z-index: 0;
}
.c-formWrap__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background-color: #F8F8F8;
  padding: 32px;
  border-radius: 16px;
  min-width: 50%;
}
.c-formWrap__right.nobg {
  background-color: transparent;
  padding: 0;
}
.c-formWrap sup {
  color: #C40000;
  font-size: 18px;
  top: 0;
}
.c-formWrap .notice {
  margin: 16px 0 40px;
}
.c-formWrap .notice a {
  color: #0E358F;
}
.c-formWrap .notice li {
  padding-left: 1em;
  position: relative;
  font-size: 13px;
  line-height: 1.76;
}
.c-formWrap .notice li::before {
  content: "※";
  position: absolute;
  left: 0;
}
.c-formWrap form label {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.c-formWrap form label p {
  min-width: 120px;
  font-weight: 500;
}
.c-formWrap form label + label {
  margin-top: 24px;
}
.c-formWrap form label[for=agreement] {
  margin-top: 40px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 40px;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}
.c-formWrap form .c-btnWrap {
  margin-top: 40px;
}

.playlist {
  background-color: #F8F8F8;
  padding: 40px;
  border-radius: 10px;
}
.playlist h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 24px;
}
.playlist h3 svg {
  font-size: 0;
}
.playlist .playlist__list .playlist__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  line-height: 2;
}
.playlist .playlist__list .playlist__item .playlist__num {
  font-size: 18px;
  font-weight: 500;
}
.playlist .playlist__list .playlist__item .playlist__title a {
  color: #0E358F;
}

#postalCode,
#prefecture,
#address1 {
  max-width: 267px;
}

#userName1,
#userName2,
#kana1,
#kana2 {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}

div.wrapper {
  width: 100% !important;
}

p.required_msg:after {
  content: "";
  display: none;
}

.c-formWrap.--download table {
  display: block;
  background: transparent;
  border: none;
}
.c-formWrap.--download table tbody {
  display: block;
}
.c-formWrap.--download table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-formWrap.--download table tr + tr {
  margin-top: 24px;
}
.c-formWrap.--download table tr td {
  background: transparent;
  border: none;
}
.c-formWrap.--download table tr td.comment {
  width: 100%;
  padding-left: 250px;
}
.c-formWrap.--download table tr td.value {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 250px);
  margin-left: auto;
}
.c-formWrap.--download table tr td span.required {
  float: none;
}
.c-formWrap.--download table tr td span.required::after {
  content: "※";
  color: #C40000;
  font-size: 13px;
}
.c-formWrap.--download div.button_area {
  width: 100% !important;
}
.c-formWrap.--download input[type=button] {
  --bg: #0160E6;
  width: 420px;
  height: 78px;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#00A3EB), to(#0059B3));
  background: linear-gradient(to right, #00A3EB, #0059B3);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-formWrap.--download input[type=button]:hover {
  border: 1px solid var(--bg);
  background: #fff;
  color: #0160E6;
}
.c-formWrap.--download input[type=text],
.c-formWrap.--download input[type=email] {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-formWrap.--download label p {
  width: 296px;
}
.c-formWrap.--download .c-formWrap__agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.c-formWrap.--download .c-formWrap__agreement span {
  white-space: nowrap;
}
.c-formWrap.--download.complete input[type=button],
.c-formWrap.--download #button_confirm_back {
  background: -webkit-gradient(linear, left top, right top, from(#5A5959), to(#222));
  background: linear-gradient(to right, #5A5959, #222);
  color: #fff;
  --bg: #333;
}
.c-formWrap.--download.complete input[type=button]:hover,
.c-formWrap.--download #button_confirm_back:hover {
  background: #fff;
  color: var(--bg);
  border: 1px solid var(--bg);
}

.c-formWrap__right table {
  display: block;
  background: transparent;
  border: none;
}
.c-formWrap__right table tbody {
  display: block;
}
.c-formWrap__right table tr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-formWrap__right table tr + tr {
  margin-top: 24px;
}
.c-formWrap__right table tr td {
  background: transparent;
  border: none;
}
.c-formWrap__right table tr td.value {
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: calc(100% - 120px);
  margin-left: auto;
}
.c-formWrap__right table tr td.comment {
  width: 100%;
  padding-left: 120px;
}
.c-formWrap__right table tr td span.required {
  float: none;
}
.c-formWrap__right table tr td span.required::after {
  content: "※";
  color: #C40000;
  font-size: 13px;
}
.c-formWrap__right div.button_area {
  width: 100% !important;
}
.c-formWrap__right input[type=button] {
  --bg: #0160E6;
  width: 420px;
  height: 78px;
  border: 1px solid transparent;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 10px;
  background: -webkit-gradient(linear, left top, right top, from(#00A3EB), to(#0059B3));
  background: linear-gradient(to right, #00A3EB, #0059B3);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1em;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.6;
  color: #fff;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-formWrap__right input[type=button]:hover {
  border: 1px solid var(--bg);
  background: #fff;
  color: #0160E6;
}
.c-formWrap__right #frm_formconfirm input[type=button] {
  width: 15vw;
}
.c-formWrap__right input[type=text],
.c-formWrap__right input[type=email] {
  width: auto;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 100%;
}
.c-formWrap__right label p {
  width: 120px;
}
.c-formWrap__right .c-formWrap__agreement {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
}
.c-formWrap__right .c-formWrap__agreement span {
  white-space: nowrap;
}
.c-formWrap__right #frm_formthanks input[type=button],
.c-formWrap__right #button_confirm_back {
  background: -webkit-gradient(linear, left top, right top, from(#5A5959), to(#222));
  background: linear-gradient(to right, #5A5959, #222);
  color: #fff;
  --bg: #333;
}
.c-formWrap__right #frm_formthanks input[type=button]:hover,
.c-formWrap__right #button_confirm_back:hover {
  background: #fff;
  color: var(--bg);
  border: 1px solid var(--bg);
}

#policy_url {
  color: #0E358F;
}

input[type=checkbox] {
  width: 40px !important;
}

.mf-custom-select-wrapper .mf-custom-select-wrapper_custom-select {
  height: 60px;
  border-right: 1px solid #E0E0E0;
}

.mf-search-box .mf-search-bar .mf-search-bar_input {
  height: 58px !important;
  border: none !important;
  padding: 0 0 0 20px !important;
}

.mf-search-box .mf-search-bar .mf-search-bar_button {
  background: transparent;
  height: 60px;
  padding: 0;
  width: 60px;
}

.mf-search-box .mf-search-bar .mf-search-bar_button span {
  display: none;
}

.mf-search-box .mf-search-bar .mf-search-bar_button .mf-search-bar_button_icon {
  color: #E0E0E0;
}
.mf-search-box .mf-search-bar {
  padding-right: 20px !important;
}

.mf-search-box .mf-search-bar .mf-search-bar_button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 44px !important;
  background-color: #E0E0E0 !important;
  border-radius: 100vh !important;
  width: 44px !important;
  cursor: pointer;
  font-size: 0px;
  padding: 0 !important;
}

.mf-search-box .mf-search-bar .mf-search-bar_button .mf-search-bar_button_icon {
  font-size: 0px !important;
  color: #000 !important;
}

.c-searchSet .mf-search-box .mf-search-bar .mf-search-bar_input {
  height: 78px !important;
  padding: 10px 20px !important;
  border: 0 !important;
  cursor: default;
  color: #222 !important;
  outline: none !important;
}

.l-header__info .mf-search-box .mf-search-bar .mf-search-bar_input {
  height: 34px !important;
  padding: 0px 10px !important;
  border: 0 !important;
  background-color: #fff !important;
  outline: none !important;
}
.l-header__info .mf-search-box .mf-search-bar .mf-search-bar_button .mf-search-bar_button_icon {
  margin-right: 0px !important;
  width: 10px !important;
  height: 10px !important;
}
.l-header__info .mf-search-box .mf-search-bar {
  padding-right: 8px !important;
}
.l-header__info .mf-search-box .mf-search-bar .mf-search-bar_button {
  width: 22px !important;
  height: 22px !important;
}

.mf-search-box .mf-search-bar .mf-search-bar_input:focus {
  border: none;
}

.mf-search-box .mf-search-bar .mf-search-bar_input:focus-visible {
  outline: none;
}

/*================================
  SCSS Information
----------------------------------
  File name: _pageanchor.scss
  Summary:   ページ内リンク用ファイル
  Author:    neruco
================================*/
.c-pageAnchor {
  margin: 0 12px 12px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.c-pageAnchor__inner {
  width: min(100% - 24px, 1080px);
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 60px;
}
.c-pageAnchor__inner .c-pageAnchor__item {
  width: auto;
}
.c-pageAnchor__inner .p-footerNav__label {
  margin-bottom: 0;
  font-size: 24px;
}
.c-pageAnchor__inner .p-footerNav__label [data-icon]::before {
  width: 34px;
}
.c-pageAnchor.--hasBg {
  background-color: #F8F8F8;
  border-radius: 10px;
  padding: 28px 0;
}
.c-pageAnchor__item {
  width: min(100% - 24px, 1080px);
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
}
.c-pageAnchor__item li {
  position: relative;
}
.c-pageAnchor__item li::before {
  content: "";
  display: block;
  width: calc(100% + 22px);
  height: calc(100% + 12px);
  position: absolute;
  left: -8px;
  top: -6px;
  background-color: transparent;
  border-radius: 4px;
}
.c-pageAnchor__item li a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-pageAnchor__item li a::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%3Cg%20id%3D%22arrow%22%20transform%3D%22translate(20)%20rotate(90)%22%3E%0A%20%20%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_653%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20653%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20fill%3D%22%23222%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51351%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051351%22%20transform%3D%22translate(9.167%206.667)%22%3E%0A%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3268%22%20data-name%3D%22%E7%B7%9A%203268%22%20x2%3D%223.333%22%20y2%3D%223.333%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3269%22%20data-name%3D%22%E7%B7%9A%203269%22%20y1%3D%223.333%22%20x2%3D%223.333%22%20transform%3D%22translate(0%203.333)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  font-size: 0px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-pageAnchor__item li a.inactive {
  opacity: 0.5;
  pointer-events: none;
}
.c-pageAnchor__item li:not(:has(a.inactive)):hover::before {
  content: "";
  display: block;
  width: calc(100% + 22px);
  height: calc(100% + 12px);
  position: absolute;
  left: -8px;
  top: -6px;
  background-color: rgba(34, 34, 34, 0.7);
  border-radius: 4px;
}
.c-pageAnchor__item li:not(:has(a.inactive)):hover a {
  color: #fff;
  text-decoration: none;
}
.c-pageAnchor__item li:not(:has(a.inactive)):hover a::before {
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%3Cg%20id%3D%22arrow%22%20transform%3D%22translate(20)%20rotate(90)%22%3E%0A%20%20%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_653%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20653%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51351%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051351%22%20transform%3D%22translate(9.167%206.667)%22%3E%0A%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3268%22%20data-name%3D%22%E7%B7%9A%203268%22%20x2%3D%223.333%22%20y2%3D%223.333%22%20fill%3D%22none%22%20stroke%3D%22%23222%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3269%22%20data-name%3D%22%E7%B7%9A%203269%22%20y1%3D%223.333%22%20x2%3D%223.333%22%20transform%3D%22translate(0%203.333)%22%20fill%3D%22none%22%20stroke%3D%22%23222%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}

/*================================
  SCSS Information
----------------------------------
  File name: _textlink.scss
  Summary:   テキストリンク用ファイル
  Author:    neruco
================================*/
.c-textlink.--more-arrow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  margin-right: auto;
}
.c-textlink.--more-arrow::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22textlink-icon-arrow%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%3Cg%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_653%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20653%22%20fill%3D%22%23222%22%20stroke%3D%22%23222%22%20stroke-width%3D%221%22%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20stroke%3D%22none%22%2F%3E%0A%20%20%20%20%3Ccircle%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%229.5%22%20fill%3D%22none%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51351%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051351%22%20transform%3D%22translate(9.167%206.884)%22%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3268%22%20data-name%3D%22%E7%B7%9A%203268%22%20x2%3D%223.333%22%20y2%3D%223.442%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3269%22%20data-name%3D%22%E7%B7%9A%203269%22%20y1%3D%223.442%22%20x2%3D%223.333%22%20transform%3D%22translate(0%203.442)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
.c-textlink.--more-arrow span {
  font-size: min(1.09375vw, 14px);
}

/*================================
  SCSS Information
----------------------------------
  File name: _themeproductlist.scss
  Summary:   テーマトップ製品リスト用ファイル
  Author:    neruco
================================*/
.c-themeProductList {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 16px;
}
.c-themeProductList__item {
  width: min(50% - 8px, 532px);
}
.c-themeProductList.--industry {
  --border-color: #0160E6;
}
.c-themeProductList.--architecture {
  --border-color: #19C173;
}
.c-themeProductList__link {
  background: #fff;
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 8px;
  padding: 24px 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
  position: relative;
  overflow: hidden;
}
.c-themeProductList__link::before, .c-themeProductList__link::after {
  content: "";
  position: absolute;
  pointer-events: none;
  border-radius: inherit;
}
.c-themeProductList__link::before {
  inset: 0;
  border-top: 2px solid var(--border-color);
  border-bottom: 2px solid var(--border-color);
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-themeProductList__link::after {
  inset: 0;
  border-left: 2px solid var(--border-color);
  border-right: 2px solid var(--border-color);
  -webkit-transform: scaleY(0);
          transform: scaleY(0);
  -webkit-transform-origin: top;
          transform-origin: top;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
}
.c-themeProductList__link:hover::before {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-themeProductList__link:hover::after {
  -webkit-transform: scaleY(1);
          transform: scaleY(1);
}
.c-themeProductList .c-productName {
  margin-bottom: 28px;
}
.c-themeProductList .c-productName__label {
  color: #0E358F;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
}
.c-themeProductList .c-productName__title {
  font-size: 24px;
  font-weight: 500;
}
.c-themeProductList .c-productDetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 28px;
}
.c-themeProductList .c-productDetail__img {
  width: 128px;
}
.c-themeProductList .c-productDetail__text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.c-themeProductList .c-productDetail__text .c-textlink {
  margin-top: auto;
}

/*================================
  SCSS Information
----------------------------------
  File name: _themeTopFeatures.scss
  Summary:   テーマTOP特長リスト用ファイル
  Author:    neruco
================================*/
.c-themeTopFeatures {
  margin-bottom: 100px;
  overflow-x: hidden;
}
.c-themeTopFeatures .l-inner {
  position: relative;
  padding-bottom: 40px;
}
.c-themeTopFeatures .l-inner::before {
  content: "";
  display: block;
  width: calc(100% + 120px);
  height: calc(100% - 60px);
  background: -webkit-gradient(linear, left top, right top, from(#00A3EB), to(#0059B3));
  background: linear-gradient(to right, #00A3EB, #0059B3);
  border-radius: 10px;
  position: absolute;
  top: 60px;
  left: -60px;
  z-index: -1;
}
.c-themeTopFeatures__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 49px;
}
.c-themeTopFeatures__item {
  background-color: #fff;
  padding: 17px 32px 32px;
  text-align: center;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border-radius: 12px;
  border: 1px solid #E0E0E0;
}
.c-themeTopFeatures__num {
  font-family: "Instrument Sans", sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #0E358F;
  margin-bottom: 16px;
}
.c-themeTopFeatures__num span {
  font-size: 20px;
  padding-left: 6px;
}
.c-themeTopFeatures__text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77;
}
.c-themeTopFeatures.--architecture .l-inner::before {
  background: -webkit-gradient(linear, left top, right top, from(#5BCEA6), to(#0D8B5B));
  background: linear-gradient(to right, #5BCEA6, #0D8B5B);
}

/*================================
  SCSS Information
----------------------------------
  File name: _themedetail.scss
  Summary:   製品詳細用ファイル
  Author:    neruco
================================*/
.--themeDetail .p-cta__contents {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.c-themeDetail__text a {
  color: #0E358F;
}
.c-themeDetail__text ul li {
  list-style: disc inside none;
  padding-left: 1em;
  text-indent: -1em;
}
.c-themeDetail__headingH3 {
  font-size: 26px;
  font-weight: 500;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(34, 34, 34, 0.15);
  position: relative;
  margin-bottom: 32px;
}
.c-themeDetail__headingH3::before {
  content: "";
  display: block;
  width: 48px;
  height: 2px;
  position: absolute;
  bottom: -2px;
  left: 0;
  background-color: #0160E6;
}
.c-themeDetail__headingH4 {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 22px;
  padding-left: 12px;
  position: relative;
}
.c-themeDetail__headingH4::before {
  content: "";
  display: block;
  width: 4px;
  height: 22px;
  background-color: #0160E6;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-themeDetail__imgWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
}
.c-themeDetail__imgWrap .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  max-width: 776px;
  margin: auto;
}
.c-themeDetail__imgWrap .img figure figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}
.c-themeDetail__imgTextWrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 48px;
}
.c-themeDetail__imgTextWrap .img {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-themeDetail__imgTextWrap .img figure img {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-themeDetail__imgTextWrap .img figure figcaption {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
}
.c-themeDetail__imgTextWrap .text {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-themeDetail__imgTextWrap .text ul,
.c-themeDetail__imgTextWrap .text li {
  list-style: disc inside none;
}
.c-themeDetail__imgTextWrap .text ul {
  margin-left: 1em;
}
.c-themeDetail__imgTextWrap .text li {
  padding-left: 1em;
  text-indent: -1.4em;
}
.c-themeDetail__textBgWrap {
  background-color: #F8F8F8;
  padding: 40px;
  border-radius: 16px;
}
.c-themeDetail__flex3col {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.c-themeDetail__flex3col .flex-item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-themeDetail__flex3col .flex-item figure {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100%;
}
.c-themeDetail__flex3col .flex-item figure figcaption {
  text-align: center;
  padding-top: 10px;
  margin-top: auto;
  font-size: 14px;
}
.c-themeDetail__tableWrap table {
  border-collapse: collapse;
  width: max(100%, 800px);
}

[class^=c-themeDetail__] + [class^=c-themeDetail__] {
  margin-top: 40px;
}

.l-main__section.--themeDetail + .l-main__section.--themeDetail:not(.noborder) .l-inner {
  margin-top: 60px;
  padding-top: 60px;
  border-top: 1px solid rgba(34, 34, 34, 0.1);
}

b {
  font-weight: bold;
}

/*================================
  SCSS Information
----------------------------------
  File name: _c-productlist.scss
  Summary:   製品一覧コンポーネント用ファイル
  Author:    neruco
================================*/
.c-productList + .p-themeTitle {
  margin-top: 60px;
}
.c-productList__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 30px 48px;
}
.c-productList__link {
  width: calc((100% - 48px) / 2);
  padding-left: 8px;
}
.c-productList .link-detail {
  font-size: 16px;
  font-weight: 500;
  position: relative;
  padding-left: 26px;
  display: inline-block;
}
.c-productList .link-detail::before {
  content: "";
  display: block;
  position: absolute;
  top: -6px;
  left: -8px;
  width: calc(100% + 16px);
  height: calc(100% + 12px);
  background-color: transparent;
  border-radius: 4px;
  z-index: -1;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.c-productList .link-detail::after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22arrow%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_653%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20653%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20fill%3D%22%23222%22%2F%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51351%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051351%22%20transform%3D%22translate(9.167%206.667)%22%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3268%22%20data-name%3D%22%E7%B7%9A%203268%22%20x2%3D%223.333%22%20y2%3D%223.333%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3269%22%20data-name%3D%22%E7%B7%9A%203269%22%20y1%3D%223.333%22%20x2%3D%223.333%22%20transform%3D%22translate(0%203.333)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-repeat: no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
  position: absolute;
  top: 4px;
  left: 0;
}
.c-productList .link-detail:hover {
  color: #fff;
}
.c-productList .link-detail:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22arrow%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_653%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20653%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20fill%3D%22%23fff%22%2F%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51351%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051351%22%20transform%3D%22translate(9.167%206.667)%22%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3268%22%20data-name%3D%22%E7%B7%9A%203268%22%20x2%3D%223.333%22%20y2%3D%223.333%22%20fill%3D%22none%22%20stroke%3D%22%23222%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3269%22%20data-name%3D%22%E7%B7%9A%203269%22%20y1%3D%223.333%22%20x2%3D%223.333%22%20transform%3D%22translate(0%203.333)%22%20fill%3D%22none%22%20stroke%3D%22%23222%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
}
.c-productList .link-detail:hover::before {
  background-color: rgba(34, 34, 34, 0.7);
}
.c-productList__child {
  margin-top: 10px;
  padding-left: 17px;
}
.c-productList__childLink a {
  color: #0E358F;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  padding-left: 33px;
}
.c-productList__childLink a::before {
  content: "";
  display: block;
  width: 4px;
  height: 8px;
  background-image: url("data:image/svg+xml,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%226.121%22%20height%3D%2210.121%22%20viewBox%3D%220%200%206.121%2010.121%22%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_52384%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2052384%22%20transform%3D%22translate(-14.939%20-3.939)%22%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_52382%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2052382%22%20transform%3D%22translate(16%205)%22%3E%0A%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3268%22%20data-name%3D%22%E7%B7%9A%203268%22%20x2%3D%224%22%20y2%3D%224%22%20fill%3D%22none%22%20stroke%3D%22%230e358f%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3269%22%20data-name%3D%22%E7%B7%9A%203269%22%20y1%3D%224%22%20x2%3D%224%22%20transform%3D%22translate(0%204)%22%20fill%3D%22none%22%20stroke%3D%22%230e358f%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  top: 6px;
  left: 18px;
}
.c-productList__childLink a:hover span {
  color: rgba(34, 34, 34, 0.7);
}

/*================================
  SCSS Information
----------------------------------
  File name: _seminar.scss
  Summary:   セミナー用ファイル
  Author:    neruco
================================*/
.c-seminarDetail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
}
.c-seminarDetail + .p-themeTitle {
  margin-top: 60px;
}
.c-seminarDetail__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.c-seminarDetail__left .c-btnWrap a {
  margin-right: auto;
}
.c-seminarDetail__right {
  max-width: 328px;
}
.c-seminarDetail__meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}
.c-seminarDetail__cat {
  border-radius: 4px;
  border: 1px solid #CCCCCC;
}
.c-seminarDetail__catLabel {
  padding: 4px 12px;
  font-size: 14px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 6px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-seminarDetail__catLabel::before {
  content: "";
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 100vh;
}
.c-seminarDetail__catLabel.--industry::before {
  background-color: #0160E6;
}
.c-seminarDetail__catLabel.--architecture::before {
  background-color: #19C173;
}

/*================================
  SCSS Information
----------------------------------
  File name: _c-download.scss
  Summary:   ダウンロードページ用ファイル
  Author:    neruco
================================*/
.c-download__list {
  border-top: 1px solid rgba(34, 34, 34, 0.1);
  border-bottom: 1px solid rgba(34, 34, 34, 0.1);
}
.c-download__list li:nth-child(odd) {
  background: #F8F8F8;
}
.c-download__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 24px;
}
.c-download__list li a:hover {
  color: #4A4C55;
}
.c-download__title {
  position: relative;
}
.c-download__title::before {
  content: "";
  display: block;
  background: url("/_assets/img/download/icon_pdf.svg") no-repeat center center;
  width: 16px;
  height: 20px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-download__title p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  padding-left: 32px;
  font-size: 18px;
  font-weight: 500;
}
.c-download__btn {
  position: relative;
}
.c-download__btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22arrow%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_653%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20653%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20fill%3D%22%23222%22%2F%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51351%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051351%22%20transform%3D%22translate(9.167%206.667)%22%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3268%22%20data-name%3D%22%E7%B7%9A%203268%22%20x2%3D%223.333%22%20y2%3D%223.333%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3269%22%20data-name%3D%22%E7%B7%9A%203269%22%20y1%3D%223.333%22%20x2%3D%223.333%22%20transform%3D%22translate(0%203.333)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  left: -32px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.c-download.--downloadList .c-download__list li {
  background: transparent;
  padding: 0;
}
.c-download.--downloadList .c-download__title {
  background: #F8F8F8;
  padding: 25px;
}
.c-download.--downloadList .c-download__title::before {
  left: 25px;
}
.c-download.--downloadList .c-download__item--subList {
  list-style-type: disc;
  padding-left: 64px;
}
.c-download.--downloadList .c-download__item--subList .c-download__item--sub {
  list-style-type: disc;
}
.c-download.--downloadList .c-download__item--subList .c-download__item--sub a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 25px 0;
  width: 100%;
  position: relative;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.c-download.--downloadList .c-download__item--subList .c-download__item--sub a:hover {
  color: #0E358F;
}
.c-download.--downloadList .c-download__item--subList .c-download__item--sub a .c-download__btn {
  margin-left: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 25px;
}
.c-download.--downloadList .c-download__item--subList .c-download__item--sub a .c-download__btn::before {
  content: "";
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg%20id%3D%22arrow%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2220%22%20height%3D%2220%22%20viewBox%3D%220%200%2020%2020%22%3E%0A%20%20%3Ccircle%20id%3D%22%E6%A5%95%E5%86%86%E5%BD%A2_653%22%20data-name%3D%22%E6%A5%95%E5%86%86%E5%BD%A2%20653%22%20cx%3D%2210%22%20cy%3D%2210%22%20r%3D%2210%22%20fill%3D%22%23222%22%2F%3E%0A%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51792%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051792%22%20transform%3D%22translate(0%20-3.364)%22%3E%0A%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3335%22%20data-name%3D%22%E7%B7%9A%203335%22%20x2%3D%226%22%20transform%3D%22translate(7%2018.364)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221%22%2F%3E%0A%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51794%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051794%22%3E%0A%20%20%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51351%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051351%22%20transform%3D%22translate(13%2012.333)%20rotate(90)%22%3E%0A%20%20%20%20%20%20%20%20%3Cg%20id%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97_51791%22%20data-name%3D%22%E3%82%B0%E3%83%AB%E3%83%BC%E3%83%97%2051791%22%20transform%3D%22translate(0.031%200)%22%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3268%22%20data-name%3D%22%E7%B7%9A%203268%22%20x2%3D%223%22%20y2%3D%223%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3269%22%20data-name%3D%22%E7%B7%9A%203269%22%20y1%3D%223%22%20x2%3D%223%22%20transform%3D%22translate(0%203)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%3C%2Fg%3E%0A%20%20%20%20%20%20%3Cline%20id%3D%22%E7%B7%9A_3336%22%20data-name%3D%22%E7%B7%9A%203336%22%20x2%3D%226%22%20transform%3D%22translate(10%208.364)%20rotate(90)%22%20fill%3D%22none%22%20stroke%3D%22%23fff%22%20stroke-linecap%3D%22round%22%20stroke-width%3D%221.5%22%2F%3E%0A%20%20%20%20%3C%2Fg%3E%0A%20%20%3C%2Fg%3E%0A%3C%2Fsvg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/*================================
  SCSS Information
----------------------------------
  File name: _utility.scss
  Summary:   補助用ファイル
  Author:    neruco
================================*/
.u-text > p:not(:last-child) {
  margin-bottom: 1.8em;
}
.u-text.--center {
  text-align: center;
}

.u-dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.u-dl > dt {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.u-dl.--strong {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4444444444;
}

.u-sp {
  display: none;
}

.u-dib {
  display: inline-block;
}
.u-notContent {
  color: #304F98;
}

.u-anchorLink {
  scroll-margin-top: calc(var(--js-headerHeight) + 0em);
}

.u-linkHover {
  display: inline;
  padding-bottom: 2px;
  background-image: -webkit-gradient(linear, left top, left bottom, from(currentColor), to(currentColor));
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 0% 1px;
  -webkit-transition: background-size 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), color 0.3s;
  transition: background-size 0.3s cubic-bezier(0.215, 0.61, 0.355, 1), color 0.3s;
}
a:hover .u-linkHover {
  text-decoration: none;
  background-position: 0 100%;
  background-size: 100% 1px;
  color: #0E358F;
}

.u-mb0 {
  margin-bottom: 0;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-map {
  aspect-ratio: 496/250;
}
.u-map > iframe {
  width: 100%;
  height: 100%;
}

.u-red {
  font-weight: 500;
  color: #C40000;
}

.u-tag {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 8px;
  border: 1px solid #000;
  border-radius: 4px;
  background: #fff;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.5;
  color: #000;
}
.u-tag.--red {
  border-color: #0E358F;
  background: #0E358F;
  color: #fff;
}

.u-none {
  opacity: 0.15;
}

.u-required {
  font-weight: 600;
  color: #C40000;
}

/*****************************************
* ページごと
*****************************************/
/*================================
  SCSS Information
----------------------------------
  File name: _top.scss
  Summary:   TOPページ用ファイル
  Author:    neruco
================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _WP.scss
  Summary:   WP用ファイル
  Author:    neruco
================================*/
/*================================
  SCSS Information
----------------------------------
  File name: _exhibitiontop.scss
  Summary:   展示会TOP用ファイル
  Author:    neruco
================================*/
.l-main__section[id^=theme]:has(+ section[id^=theme]) {
  margin-bottom: 0;
  padding-bottom: 0;
}

.p-themeProduct + .p-themeProduct {
  margin-top: 80px;
}

/*================================
  SCSS Information
----------------------------------
  File name: _themetop.scss
  Summary:   テーマTOP用ファイル
  Author:    neruco
================================*/

.p-themeTopRead__img {
  margin-bottom: 24px;
}
.p-themeTopRead__body p {
  font-size: 16px;
}
.p-themeTopRead__body ul,
.p-themeTopRead__body li {
  list-style: disc;
  list-style-position: inside;
}

/*================================
  SCSS Information
----------------------------------
  File name: _productlist.scss
  Summary:   製品一覧ページ用ファイル
  Author:    neruco
================================*/
.p-productList {
  margin-top: 60px;
}
.p-productList .p-footerNav__label {
  font-size: 34px;
  font-weight: bold;
}
.p-productList .p-footerNav__label [data-icon]::before {
  width: 35px;
}
.p-productList .c-pageAnchor {
  margin-bottom: 40px;
}
.p-productList .c-pageAnchor .c-pageAnchor__item {
  display: block;
}
/*================================
  SCSS Information
----------------------------------
  File name: _news.scss
  Summary:   新着情報用ファイル
  Author:    neruco
================================*/
.c-news-page {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
}
.c-news-page .c-news__heading {
  font-size: 34px;
}
.c-news-page .c-news__link {
  padding: 16px;
}
.c-news-page .c-news__list {
  margin-bottom: 40px;
}
.c-news-page .c-news__year {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  padding: 24px;
  border-radius: 16px;
  width: 100%;
  background: #F8F8F8;
}
.c-news-page .c-news__year .c-news__yearLink {
  font-size: 13px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 120px;
  height: 26px;
  text-align: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: #fff;
  border: 1px solid #4A4C55;
  color: #4A4C55;
  border-radius: 100vh;
}
.c-news-page .c-news__year .c-news__yearLink:hover, .c-news-page .c-news__year .c-news__yearLink.current {
  background-color: #4A4C55;
  color: #fff;
}

.c-news__detail .c-news__detailInner {
  margin-top: 60px;
}
.c-news__detail .c-news__detailInner .post-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  margin-top: 34px;
}
.c-news__detail .c-news__detailInner .post-body {
  margin-top: 40px;
  line-height: 1.8;
}
.c-news__detail .c-news__detailInner .post-body h2 {
  margin-top: 60px;
  margin-bottom: 40px;
}
.c-news__detail .c-news__detailInner .post-body .c-themeDetail__imgTextWrap .img {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
}
.c-news__detail .c-news__detailInner .post-body .c-themeDetail__imgTextWrap .img img {
  width: var(--w);
}
.c-news__detail .c-news__detailInner .post-body [class^=c-themeDetail__] + .c-headingH3 {
  margin-top: 40px;
}
.c-news__detail .c-news__detailInner .post-body table tr th,
.c-news__detail .c-news__detailInner .post-body table tr td {
  padding: 15px;
  font-size: 16px;
}
.c-news__detail .c-news__detailInner .post-body table tr th {
  background: #F8F8F8;
  vertical-align: middle;
}
.c-news__detail .c-news__detailInner .post-body table tr td {
  background: #fff;
}
@media screen and (max-width:1280px){
  .l-nav__listItem > a, .l-nav__listItem > .c-accordion__trigger a {
    height: auto;
    padding: 0 min(1.7171717172vw, 17px);
    margin: 0 auto;
  }
  .l-main__section.--accent:has(.p-search), .l-main__section.--accent:has(.p-cta) {
    width: 100%;
  }
  .p-pickup::after {
    width: max(101vw, 376px);
  }
  .c-tableScroll {
    overflow-x: scroll;
  }
  .c-tableScroll:not(:last-child) {
    margin-bottom: 40px;
  }
  .c-tableScroll--notScroll:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width:990px){
  .c-imgTxt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-imgTxt.--reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-imgTxt__txt {
    width: 100%;
  }
  .c-figure {
    padding: 32px 12px;
  }
  .c-ranking {
    padding: 40px 12px 24px;
  }
}
@media screen and (max-width: 820px){
  .c-themeDetail__tableWrap:has(table) {
    overflow-x: scroll;
  }
}
@media screen and (max-width:768px){
  html {
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
  }
  html::-webkit-scrollbar {
    display: none;
  }
  input[type=text],
  input[type=tel],
  input[type=email],
  textarea,
  select {
    font-size: inherit;
  }
  .l-header {
    height: 60px;
    padding: 8px 12px;
  }
  .l-header__left {
    gap: 1.5em;
    font-size: 10px;
  }
  .l-header__right {
    display: none;
  }
  .c-drawerBtn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .l-drawer {
    display: block;
  }
  .l-header .l-nav {
    display: none;
  }
  .l-nav__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    font-size: inherit;
    font-weight: inherit;
  }
  .l-nav__listItem {
    width: 100%;
    border-bottom: 1px solid rgba(34, 34, 34, 0.1);
  }
  .l-nav__listItem.c-accordion .c-accordion__target {
    padding: 0;
  }
  .l-nav__listItem.c-accordion .c-accordion__target.is-open {
    padding-bottom: 24px;
  }
  .l-nav__listItem.c-accordion .c-accordion__inner {
    padding: 15px 14px;
    border-radius: 10px;
    background: #F8F8F8;
  }
  .l-nav__listItem > a, .l-nav__listItem > .c-accordion__trigger {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    width: 100%;
    padding: 21px 0;
  }
  .l-nav__listItem > a::after, .l-nav__listItem > .c-accordion__trigger::after {
    display: none;
  }
  .l-nav__listItem > .c-accordion__trigger {
    padding-right: 22px;
    position: relative;
  }
  .l-nav__listItem > .c-accordion__trigger::after {
    content: "";
    display: block;
    width: 22px;
    height: 22px;
    background: url(../img/common/icon_close.svg) center no-repeat;
    background-size: contain;
    -webkit-transform: none;
            transform: none;
    position: absolute;
    top: 21px;
    right: 0;
  }
  .l-nav__listItem > .c-accordion__trigger.is-open::after {
    background-image: url(../img/common/icon_open.svg);
  }
  .c-accordionNav__link {
    padding: 0 0 0 16px;
    font-size: 14px;
    line-height: 1.4285714286;
  }
  .c-accordionNav__link.--parent {
    font-size: 15px;
    line-height: 1.3333333333;
  }
  .c-accordionNav__link::before {
    width: 16px;
    height: 1lh;
  }
  .c-accordionNav__children {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-accordionNavContact {
    padding: 16px 0 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: none;
  }
  .l-main__section:not(:last-child) {
    margin-bottom: 40px;
  }
  .l-main__section.--lightgray, .l-main__section.--accent {
    padding: 40px 0;
  }
  .l-footer {
    margin-top: 40px;
  }
  .l-footer__inner .c-logo small {
    display: none;
  }
  .l-footer__inner {
    padding: 40px 0;
  }
  .p-footerNav__cell:nth-child(1) {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  .c-img {
    padding: 12px;
  }
  .c-headingEnJa {
    font-size: 24px;
  }
  .c-headingEnJa:not(:last-child) {
    margin-bottom: 20px;
  }
  .c-headingEnJa:has(+ .c-summary) {
    margin-bottom: 10px;
  }
  .c-btnWrap:not(:first-child) {
    margin-top: 20px;
  }
  .c-cardList {
    grid-template-columns: repeat(1, 1fr);
    width: min(100%, 500px);
    margin: 0 auto;
  }
  .p-pickup {
    padding: 20px 0;
  }
  .p-pickup::after {
    height: 100%;
  }
  .p-pickup .c-headingEnJa {
    color: #fff;
  }
  .p-pickup .c-headingEnJa::before {
    mix-blend-mode: plus-lighter;
  }
  .c-pickupList {
    grid-template-columns: repeat(2, 1fr);
  }
  .c-searchBox__input {
    width: 100%;
    height: 60px;
  }
  .p-cta__contents {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-fixedBanner__close {
    display: none;
  }
  .p-fixedBanner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1px;
    width: 100%;
    height: 60px;
    background: #fff;
    bottom: 0;
  }
  .c-fixedBanner {
    width: 50%;
    padding: 16px 10px;
    border-radius: 0;
    -webkit-writing-mode: initial;
        -ms-writing-mode: initial;
            writing-mode: initial;
  }
  .c-notices {
    grid-template-columns: repeat(1, 1fr);
    gap: 12px;
    padding: 12px 12px 24px;
  }
  .c-news {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
  .c-news__left {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 12px;
  }
  .c-news__heading {
    margin-bottom: 0;
  }
  .c-news__link {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 13px 0 0;
  }
  .c-news__title {
    width: 100%;
    margin-left: 0;
  }
  .p-themes {
    grid-template-columns: repeat(2, 1fr);
  }
  .p-themes__cell {
    padding: 40px 12px;
  }
  .c-themesList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-download__ranking {
    grid-template-columns: repeat(1, 1fr);
  }
  .p-themes.--industryTop .c-themesList {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-themes.--industryTop .c-themesList__item {
    width: 100%;
  }
  .p-kv {
    grid-template-columns: repeat(1, 1fr);
    height: auto;
  }
  .p-kv.--lower-depth-01 {
    height: auto;
  }
  .p-kv.--form .c-kvCat__label {
    font-size: 32px;
  }
  .c-kvCat.--exhibitionTop .c-searchSet {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-kvCat.--themeDetail.--industry .c-kvCat__btnWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
  .c-kvCat.--themeDetail.--industry .c-kvCat__btnWrap .c-btn.--more {
    width: min(100%, 320px);
    min-width: 280px;
  }
  .c-kvCat {
    padding: 12px;
  }
  .c-form__item {
    grid-template-columns: repeat(1, 1fr);
  }
  .c-thanks__title {
    font-size: 20px;
  }
  .c-formWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 24px;
  }
  .c-formWrap__right {
    min-width: 100%;
  }
  #postalCode,
  #prefecture,
  #address1 {
    width: 100%;
  }
  #userName1,
  #userName2,
  #kana1,
  #kana2 {
    width: 100%;
  }
  .c-formWrap.--download table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-formWrap.--download table tr td.comment {
    padding: 0;
  }
  .c-formWrap.--download table tr td.value {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .c-formWrap.--download table tr td.value + .comment {
    padding-top: 10px;
  }
  .c-formWrap.--download input[type=button] {
    width: 100%;
  }
  .c-formWrap.--download input[type=text],
  .c-formWrap.--download input[type=email] {
    width: 100%;
  }
  .c-formWrap.--download label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .c-formWrap.--download label p {
    width: 100%;
  }
  .c-formWrap__right table tr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-formWrap__right table tr td.value {
    display: block;
    width: 100%;
    margin-left: 0;
  }
  .c-formWrap__right table tr td.comment {
    padding-left: 0;
  }
  .c-formWrap__right input[type=button] {
    width: 100%;
  }
  .c-formWrap__right input[type=text],
  .c-formWrap__right input[type=email] {
    width: 100%;
  }
  .c-formWrap__right label {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .c-formWrap__right label p {
    width: 100%;
  }
  .c-searchSet .mf-search-box .mf-search-bar .mf-search-bar_input {
    height: 58px !important;
  }
  .c-pageAnchor__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 30px;
  }
  .c-pageAnchor__inner .c-pageAnchor__item {
    width: 100%;
  }
  .c-pageAnchor__inner + .c-pageAnchor__inner {
    margin-top: 40px;
  }
  .c-pageAnchor__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .c-themeProductList {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-themeProductList__item {
    width: 100%;
  }
  .c-themeTopFeatures {
    margin-bottom: 60px;
  }
  .c-themeTopFeatures__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .--themeDetail .p-cta__contents {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .c-themeDetail__imgWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-themeDetail__imgTextWrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-themeDetail__flex3col {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-productList__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .c-productList__link {
    width: 100%;
  }
  .c-download__list li a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .c-download__btn {
    margin-left: auto;
  }
  .c-download.--downloadList .c-download__item--subList .c-download__item--sub a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .u-pc {
    display: none;
  }
  .u-sp {
    display: inline-block;
  }
  .u-map {
    aspect-ratio: 303/152;
  }
  .l_main__section.--themeTopRead {
    margin-top: 1rem;
  }
  .pageCode-product .c-pageAnchor {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
  .pageCode-product .c-pageAnchor .c-pageAnchor__inner .p-footerNav__label {
    font-size: clamp(1rem, 0.8182rem + 0.9091vw, 1.5rem);
  }
  .pageCode-product .c-pageAnchor .c-pageAnchor__inner + .c-pageAnchor__inner {
    margin-top: 0;
  }
  .pageCode-product .c-pageAnchor .c-pageAnchor__inner .c-pageAnchor__item {
    display: none;
  }
  .c-news__detail .c-news__detailInner .post-body .c-themeDetail__imgTextWrap .img img {
    width: 100%;
  }
  .c-news__detail .c-news__detailInner .post-body table,
  .c-news__detail .c-news__detailInner .post-body table tr,
  .c-news__detail .c-news__detailInner .post-body table th,
  .c-news__detail .c-news__detailInner .post-body table td {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width:576px){
  .p-themes {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 479px){
  table.items {
    width: 100%;
    background: transparent !important;
    border-left: 0 !important;
    border-bottom: 0 !important;
  }
}
@media screen and (max-width:390px){
  .c-pickupList {
    grid-template-columns: repeat(1, 1fr);
  }
}
/*# sourceMappingURL=map/style.css.map */
