@charset "utf-8";

/* Document
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box;
}
/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit; /* 1 */
  vertical-align: inherit; /* 2 */
}
/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  -moz-tab-size: 4; /* 3 */
  tab-size: 4; /* 3 */
  -webkit-tap-highlight-color: transparent /* 4 */;
  -ms-text-size-adjust: 100%; /* 5 */
  -webkit-text-size-adjust: 100%; /* 5 */
  word-break: break-word; /* 6 */
}
/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}
/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}
/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}
/**
 * Add the correct display in IE.
 */
main {
  display: block;
}
/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}
/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}
/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}
/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}
/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}
/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible; /* 1 */
  text-transform: none; /* 2 */
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
}
/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0; /* 1 */
  padding: 0.35em 0.75em 0.625em; /* 2 */
}
/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}
/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  white-space: normal; /* 1 */
}
/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block; /* 1 */
  vertical-align: baseline; /* 2 */
}
/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}
/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0; /* 1 */
  overflow: auto; /* 2 */
  resize: vertical; /* 3 */
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}
/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}
/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}
/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}
/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}
/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}
/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}
/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}
dialog:not([open]) {
  display: none;
}
/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}
/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE.
 */
template {
  display: none;
}
/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
      in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation; /* 1 */
  touch-action: manipulation; /* 2 */
}
/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy="true"] {
  cursor: progress;
}
/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}
/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled="true"],
[disabled] {
  cursor: not-allowed;
}
/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden="false"][hidden] {
  display: initial;
}
[aria-hidden="false"][hidden]:not(:focus) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}

@font-face {
  font-family: "MyHiragino";
  src: local("HiraginoSans-W3"), local("ヒラギノ角ゴ ProN W3"), local("Hiragino Kaku Gothic ProN");
}
@font-face {
  font-family: "MyHiragino";
  font-weight: bold;
  src: local("HiraginoSans-W6"), local("ヒラギノ角ゴ ProN W6"), local("Hiragino Kaku Gothic ProN W6");
}
@font-face {
  font-family: "MyHiragino";
  font-weight: 800;
  src: local("HiraginoSans-W8"), local("ヒラギノ角ゴ StdN"), local("Hiragino Kaku Gothic StdN");
}
@font-face {
  font-display: optional;
  font-family: "NotoSansJP";
  font-style: normal;
  font-weight: normal;
  src: url("/cms/wp-content/themes/fujitecom/assets/fonts/NotoSansJP-Regular_subset.woff") format("woff");
}
@font-face {
  font-display: optional;
  font-family: "NotoSansJP";
  font-style: 500;
  font-weight: 500;
  src: url("/cms/wp-content/themes/fujitecom/assets/fonts/NotoSansJP-Medium_subset.woff") format("woff");
}
@font-face {
  font-display: optional;
  font-family: "NotoSansJP";
  font-style: bold;
  font-weight: bold;
  src: url("/cms/wp-content/themes/fujitecom/assets/fonts/NotoSansJP-Bold_subset.woff") format("woff");
}
@font-face {
  font-display: optional;
  font-family: "NotoSerifJP";
  font-style: normal;
  font-weight: normal;
  src: url("/cms/wp-content/themes/fujitecom/assets/fonts/NotoSerifJP-Regular_subset.woff") format("woff");
}
@font-face {
  font-display: optional;
  font-family: "NotoSerifJP";
  font-style: 500;
  font-weight: 500;
  src: url("/cms/wp-content/themes/fujitecom/assets/fonts/NotoSerifJP-Medium_subset.woff") format("woff");
}
@font-face {
  font-display: optional;
  font-family: "NotoSerifJP";
  font-weight: bold;
  font-style: bold;
  src: url("/cms/wp-content/themes/fujitecom/assets/fonts/NotoSerifJP-Bold_subset.woff") format("woff");
}
* {
  box-sizing: border-box;
}

html {
  font-size: 10px;
}
@media screen and (max-width: 1099px) {
  html.is-gnav-opened {
    height: 100%;
    overflow: hidden;
  }
}

body {
  position: relative;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  font-family: "NotoSansJP", "MyHiragino", "メイリオ", Meiryo, sans-serif;
  font-size: 1.6rem;
  -webkit-font-variant-ligatures: none;
          font-variant-ligatures: none;
  color: #333;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.5rem;
  }
}

a {
  color: #333;
  text-decoration: none;
}
a:hover {
  opacity: 0.6;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: top;
}

button {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #333;
}

/* vue.js マウント前非表示
-----------------------------------------------*/
[v-cloak] {
  visibility: hidden;
  opacity: 0;
}

:root {
  --header-H: 141px;
  --header-X: 0;
  --vh: 1vh;
  --find-navi-area-H: 107px;
  --find-navi-buttons-H: 112px;
}
@media screen and (max-width: 767px) {
  :root {
    --header-H: 50px;
  }
}

/* [layout] サイトレイアウト
-----------------------------------------------*/
.l-content-wrap {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding-top: var(--header-H);
  min-height: 100vh;
}

.l-page-header {
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 160px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-page-header {
    padding: 40px 0;
    min-height: 115px;
  }
}
.l-page-header__text {
  position: relative;
  display: inline-flex;
  align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .l-page-header__text {
    padding-left: 40px;
  }
}
.l-page-header__text:before {
  content: "";
  position: absolute;
  background-color: #fff;
  height: 2px;
  width: 26px;
  top: 27px;
  left: 0;
}
@media screen and (max-width: 767px) {
  .l-page-header__text:before {
    top: 20px;
  }
}
.l-page-header--large {
  align-items: stretch;
  padding: 80px 0 0;
  position: relative;
  background: none;
}
@media screen and (max-width: 767px) {
  .l-page-header--large {
    padding: 40px 0 0;
    min-height: 254px;
  }
}
.l-page-header--large::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 392px;
  top: 0;
  left: 0;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}
@media screen and (max-width: 767px) {
  .l-page-header--large::before {
    height: 254px;
  }
}
.l-page-header--img-products {
  background-image: url(../img/products/bg_title@2x.jpg);
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-products {
    background-image: url(../img/products/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-info {
  background-image: url(../img/info/bg_title@2x.jpg);
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-info {
    background-image: url(../img/info/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-privacy-policy::before {
  background-image: url(../img/privacy-policy/bg_title@2x.jpg);
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-privacy-policy::before {
    background-image: url(../img/privacy-policy/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-training::before {
  background-image: url(../img/training/bg_title@2x.jpg);
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-training::before {
    background-image: url(../img/training/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-research::before {
  background-image: url(../img/research/bg_title@2x.jpg);
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-research::before {
    background-image: url(../img/research/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-strengths::before {
  background-image: url(../img/strengths/bg_title@2x.jpg);
  background-position: center top;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-strengths::before {
    background-image: url(../img/strengths/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-company::before {
  background-image: url(../img/company/bg_title@2x.jpg);
  background-position: top;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-company::before {
    background-image: url(../img/company/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-philosophy::before {
  background-image: url(../img/company/philosophy/bg_title@2x.jpg);
}
@media screen and (max-width: 767px) {
  .l-page-header--img-philosophy::before {
    background-image: url(../img/company/philosophy/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-information::before {
  background-image: url(../img/company/information/bg_title@2x.jpg);
  background-position: center;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-information::before {
    background-image: url(../img/company/information/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-access::before {
  background-image: url(../img/access/bg_title@2x.jpg);
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-access::before {
    background-image: url(../img/access/bg_title_sp@2x.jpg);
  }
}
.l-page-header--img-contact::before {
  background-image: url(../img/contact/bg_title@2x.jpg);
  background-position: center bottom;
}
@media screen and (max-width: 767px) {
  .l-page-header--img-contact::before {
    background-image: url(../img/contact/bg_title_sp@2x.jpg);
  }
}

/* [layout] 汎用コンテナ
-----------------------------------------------*/
.l-container {
  margin-right: auto;
  margin-left: auto;
  max-width: 1064px;
  width: 100%;
  padding-right: 32px;
  padding-left: 32px;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-right: 18px;
    padding-left: 18px;
  }
}
@media screen and (max-width: 767px) {
  .l-container--inner-box {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.l-container-sm {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .l-container-sm {
    padding-right: 16px;
    padding-left: 16px;
  }
}

.l-container-xs {
  padding-right: 10px;
  padding-left: 10px;
}
@media screen and (max-width: 767px) {
  .l-container-xs {
    padding-right: 8px;
    padding-left: 8px;
  }
}

/* [layout] 上下アキsection,カラー背景,boxレイアウト
-----------------------------------------------*/
.l-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}
.l-section--key-color {
  background-color: #005BAC;
}
.l-section:last-of-type {
  padding-bottom: 120px;
}
@media screen and (max-width: 767px) {
  .l-section:last-of-type {
    padding-bottom: 80px;
  }
}
.l-section--white {
  background-color: #fff;
}
.l-section--gray {
  background-color: #F2F3F4;
}
.l-section--dot {
  background-image: url(../img/shared/dot.png);
  background-color: #F2F3F4;
}
.l-section--overflow-hidden {
  overflow: hidden;
}
.l-section-sm {
  padding-top: 60px;
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .l-section-sm {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}

.l-box {
  background: #fff;
  padding: 60px;
}
@media screen and (max-width: 767px) {
  .l-box {
    padding: 40px;
  }
}
.l-box--gradient-blue {
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  color: #fff;
  box-shadow: 16px 16px 28px rgba(0, 0, 0, 0.16);
}
.l-box--gradient-blue__link {
  position: relative;
  display: block;
  cursor: pointer;
}
.l-box--gradient-blue__link .c-icon {
  transition: all 0.4s;
}
.l-box--gradient-blue__link:hover {
  opacity: 1;
}
.l-box--gradient-blue__link:hover:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 36, 77, 0.25);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.l-box--gradient-blue__link:hover .c-icon {
  margin-right: -20px;
}
.l-box--gray {
  background: #F2F3F4;
}
.l-box--border {
  border: 1px solid #D1D4DB;
}

.l-box-md {
  padding: 30px;
}
.l-box-md--white {
  background: #fff;
}

.l-box-sm {
  background: #fff;
  padding: 20px;
}
@media screen and (max-width: 767px) {
  .l-box-sm {
    padding: 16px;
  }
}

.l-box-xs {
  background: #fff;
  padding: 10px;
}
@media screen and (max-width: 767px) {
  .l-box-xs {
    padding: 8px;
  }
}

@media screen and (max-width: 767px) {
  .l-box-sp {
    padding-left: 20px;
    padding-right: 20px;
  }
}

/* [layout] ボタン用コンテナ
-----------------------------------------------*/
.l-button-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .l-button-container {
    gap: 16px;
  }
}

/* [layout] gapルール用クラス
-----------------------------------------------*/
.l-gap--xll {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-gap--xll {
    margin-top: 80px;
  }
}

.l-gap--xl {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .l-gap--xl {
    margin-top: 60px;
  }
}

.l-gap--lg {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .l-gap--lg {
    margin-top: 40px;
  }
}

.l-gap--md {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-gap--md {
    margin-top: 30px;
  }
}

.l-gap--md-2 {
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .l-gap--md-2 {
    margin-top: 30px;
  }
}

.l-gap--sm {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .l-gap--sm {
    margin-top: 16px;
  }
}

.l-gap--xs {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .l-gap--xs {
    margin-top: 8px;
  }
}

.l-gap--xss {
  margin-top: 8px;
}

.l-gap--overlap {
  margin-top: 90px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .l-gap--overlap {
    margin-top: 40px;
  }
}

/* [header]
-----------------------------------------------*/
#header-navigation {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background-color: #fff;
  border-bottom: 1px solid #D9D9D9;
}

.l-header {
  position: relative;
  margin: 0 auto;
  width: 100%;
  line-height: 1;
}
.l-header__line {
  border-bottom: 1px solid #D9D9D9;
}
.l-header__inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition: transform 0.3s ease, -webkit-transform 0.3s ease;
  height: 50px;
}
@media screen and (min-width: 768px) {
  .l-header__inner {
    max-width: 1064px;
    padding: 0 32px;
    height: 78px;
  }
}
@media screen and (max-width: 767px) {
  .l-header__inner {
    padding: 0 18px;
  }
}
.no-animation .l-header__inner {
  -webkit-transform: translateX(0px);
          transform: translateX(0px);
  transition: 0s;
}
.l-header__logo {
  display: block;
  transition: opacity 0.2s;
  text-align: center;
  line-height: 1;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .l-header__logo {
    margin: 0;
    width: 140px;
  }
}
@media (hover: hover) and (pointer: fine) {
  .l-header__logo:hover {
    opacity: 0.7;
  }
}
.l-header .c-button {
  box-shadow: none;
}

/* [header] スマホ時のボタン郡
-----------------------------------------------*/
.l-header__nav-sp {
  display: flex;
}
.l-header__nav-sp__buttons {
  flex: 1;
  display: flex;
  justify-content: flex-end;
  margin: 0;
  padding: 0 16px 0 0;
  list-style: none;
}
.l-header__nav-sp__buttons a {
  display: block;
  padding: 8px 16px;
  font-size: 1rem;
  text-align: center;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 320px) {
  .l-header__nav-sp__buttons a {
    padding: 8px 8px;
  }
}
.l-header__nav-sp__buttons a:visited {
  color: #005BAC;
}
.l-header__nav-sp__buttons a > .c-icon {
  margin-bottom: 4px;
}
.l-header__nav-sp__buttons a > .c-icon svg {
  width: 16px;
  height: 16px;
}
.l-header__nav-sp-contact {
  position: fixed !important;
  top: 0;
  right: 50px;
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  width: 29.3333333333vw !important;
  max-width: 110px !important;
  min-height: 50px !important;
  padding: 0 !important;
}
@media screen and (max-width: 767px) {
  .l-header__nav-sp-contact {
    font-size: 1.2rem !important;
  }
}

/* [header] 上部のナビ
-----------------------------------------------*/
.l-header__utility {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}
@media screen and (max-width: 767px) {
  .l-header__utility {
    flex: unset;
    display: block;
    border-bottom: 1px solid #F2F3F4;
    padding: 20px 0;
    order: 2;
    width: 100%;
  }
}
.l-header__utility a {
  font-size: 1.2rem;
  vertical-align: 2px;
}
.l-header__utility-lang {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  list-style: none;
  font-size: 1.2rem;
  padding: 0;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .l-header__utility-lang {
    -webkit-column-gap: 40px;
       -moz-column-gap: 40px;
            column-gap: 40px;
  }
}
.l-header__utility-lang li {
  position: relative;
}
.l-header__utility-lang li:not(:last-of-type)::before {
  content: "";
  background: #D9D9D9;
  width: 1px;
  height: 13px;
  position: absolute;
  top: 0;
  right: -10px;
}
@media screen and (max-width: 767px) {
  .l-header__utility-lang li:not(:last-of-type)::before {
    right: -20px;
  }
}
.l-header__utility-lang li.current {
  pointer-events: none;
  color: #8E9494;
}

/**
 * Footer Style
 */
/* [footer] layout
-----------------------------------------------*/
.l-footer {
  position: relative;
  background-color: #E9ECEF;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 0;
  }
}
.l-footer .c-button {
  box-shadow: none;
}

/* [footer] link
-----------------------------------------------*/
.l-footer__link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.l-footer__link-list > li {
  padding: 0;
}

.l-footer-gap--md {
  margin-top: 22px;
}
.l-footer-gap--sm {
  margin-top: 10.5px;
}
@media screen and (max-width: 767px) {
  .l-footer-gap--sm {
    margin-top: 6.5px;
  }
}
.l-footer-gap--xs {
  margin-top: 6.5px;
}
@media screen and (max-width: 767px) {
  .l-footer-gap--xs {
    margin-top: 4.5px;
  }
}

.l-footer__link--child {
  color: #656565;
}
.l-footer__link--child:visited {
  color: #656565;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__link--child:hover {
    opacity: 1;
    color: #333;
  }
}

.l-footer__link-groups {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .l-footer__link-groups {
    flex-wrap: wrap;
  }
}

.l-footer__link-group {
  display: flex;
  align-items: center;
  margin: 40px 0 0;
  padding-top: 40px;
  padding-bottom: 40px;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .l-footer__link-group {
    flex-wrap: wrap;
    text-align: center;
    width: 100%;
    padding-top: 0;
    padding-bottom: 0;
    margin: 30px 0;
    row-gap: 4.5px;
    -webkit-column-gap: 36px;
       -moz-column-gap: 36px;
            column-gap: 36px;
  }
}
.l-footer__link-group > li {
  padding: 0 20px;
}
.l-footer__link-group > li:first-of-type {
  padding-left: 0;
}
.l-footer__link-group > li:last-of-type {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .l-footer__link-group > li {
    padding: 0;
  }
}
.l-footer__link-group > li .l-footer__link-group-txt {
  font-size: 1.2rem;
  line-height: 1.5;
  margin: 0;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 767px) {
  .l-footer__link-group > li .l-footer__link-group-txt {
    display: inline-flex;
    align-items: center;
  }
}
.l-footer__link-group > li .l-footer__link-group-txt:visited {
  color: #333;
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__link-group > li .l-footer__link-group-txt:hover {
    opacity: 0.7;
  }
}

/* [footer] copyright
-----------------------------------------------*/
.l-footer-copyright {
  display: block;
  padding: 12px 0;
  font-size: 1.2rem;
  line-height: 1;
  border-top: 1px solid #D9D9D9;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .l-footer-copyright {
    padding: 12px 0;
    font-size: 1rem;
  }
}
.l-footer-copyright > small {
  font-size: 1.2rem;
}

.l-footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-footer-top-border {
  border-bottom: 1px solid #D9D9D9;
}
.l-footer-top-right {
  display: flex;
  align-items: center;
  flex: 1;
  justify-content: flex-end;
}
.l-footer-top-right a {
  width: 100%;
  max-width: 146px;
  min-height: 81px;
  text-align: center;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .l-footer-top-right a {
    min-height: 50px;
    max-width: 125px;
    margin-right: -18px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-top__button {
    width: 155px;
  }
}
@media screen and (max-width: 767px) {
  .l-footer-top__button-contact {
    font-size: 1.2rem !important;
  }
}

.l-footer__utility-lang {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  list-style: none;
  font-size: 1.2rem;
  padding: 0;
  margin: 40px 0 0;
  align-items: center;
}
.l-footer__utility-lang li {
  position: relative;
}
.l-footer__utility-lang li:not(:last-of-type)::before {
  content: "";
  background: #D9D9D9;
  width: 1px;
  height: 13px;
  position: absolute;
  top: 50%;
  right: -10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer__utility-lang li.current {
  pointer-events: none;
  color: #8E9494;
}

@-ms-viewport {
  width: device-width;
}
.container-fluid {
  width: 100%;
  padding-right: 12px;
  padding-left: 12px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .container-fluid {
    padding-right: 8px;
    padding-left: 8px;
  }
}

.l-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: calc(12px * -2);
  margin-right: calc(-1 * 12px);
  margin-left: calc(-1 * 12px);
}
@media screen and (max-width: 767px) {
  .l-row {
    margin-bottom: calc(8px * -2);
    margin-right: calc(-1 * 8px);
    margin-left: calc(-1 * 8px);
  }
}

.no-gutters {
  margin-right: 0;
  margin-left: 0;
}

.no-gutters > .l-col,
.no-gutters > [class*=l-col-] {
  padding-right: 0;
  padding-left: 0;
}

.l-col-1, .l-col-2, .l-col-3, .l-col-4, .l-col-5, .l-col-6, .l-col-7, .l-col-8, .l-col-9, .l-col-10, .l-col-11, .l-col-12, .l-col,
.l-col-auto, .l-col-sm-1, .l-col-sm-2, .l-col-sm-3, .l-col-sm-4, .l-col-sm-5, .l-col-sm-6, .l-col-sm-7, .l-col-sm-8, .l-col-sm-9, .l-col-sm-10, .l-col-sm-11, .l-col-sm-12, .l-col-sm,
.l-col-sm-auto, .l-col-md-1, .l-col-md-2, .l-col-md-3, .l-col-md-4, .l-col-md-5, .l-col-md-6, .l-col-md-7, .l-col-md-8, .l-col-md-9, .l-col-md-10, .l-col-md-11, .l-col-md-12, .l-col-md,
.l-col-md-auto, .l-col-lg-1, .l-col-lg-2, .l-col-lg-3, .l-col-lg-4, .l-col-lg-5, .l-col-lg-6, .l-col-lg-7, .l-col-lg-8, .l-col-lg-9, .l-col-lg-10, .l-col-lg-11, .l-col-lg-12, .l-col-lg,
.l-col-lg-auto, .l-col-xl-1, .l-col-xl-2, .l-col-xl-3, .l-col-xl-4, .l-col-xl-5, .l-col-xl-6, .l-col-xl-7, .l-col-xl-8, .l-col-xl-9, .l-col-xl-10, .l-col-xl-11, .l-col-xl-12, .l-col-xl,
.l-col-xl-auto {
  position: relative;
  margin-bottom: calc(12px * 2);
  padding-right: 12px;
  padding-left: 12px;
  width: 100%;
  min-height: 1px;
}
@media screen and (max-width: 767px) {
  .l-col-1, .l-col-2, .l-col-3, .l-col-4, .l-col-5, .l-col-6, .l-col-7, .l-col-8, .l-col-9, .l-col-10, .l-col-11, .l-col-12, .l-col,
.l-col-auto, .l-col-sm-1, .l-col-sm-2, .l-col-sm-3, .l-col-sm-4, .l-col-sm-5, .l-col-sm-6, .l-col-sm-7, .l-col-sm-8, .l-col-sm-9, .l-col-sm-10, .l-col-sm-11, .l-col-sm-12, .l-col-sm,
.l-col-sm-auto, .l-col-md-1, .l-col-md-2, .l-col-md-3, .l-col-md-4, .l-col-md-5, .l-col-md-6, .l-col-md-7, .l-col-md-8, .l-col-md-9, .l-col-md-10, .l-col-md-11, .l-col-md-12, .l-col-md,
.l-col-md-auto, .l-col-lg-1, .l-col-lg-2, .l-col-lg-3, .l-col-lg-4, .l-col-lg-5, .l-col-lg-6, .l-col-lg-7, .l-col-lg-8, .l-col-lg-9, .l-col-lg-10, .l-col-lg-11, .l-col-lg-12, .l-col-lg,
.l-col-lg-auto, .l-col-xl-1, .l-col-xl-2, .l-col-xl-3, .l-col-xl-4, .l-col-xl-5, .l-col-xl-6, .l-col-xl-7, .l-col-xl-8, .l-col-xl-9, .l-col-xl-10, .l-col-xl-11, .l-col-xl-12, .l-col-xl,
.l-col-xl-auto {
    margin-bottom: calc(8px * 2);
    padding-right: 8px;
    padding-left: 8px;
  }
}

.l-col {
  flex-basis: 0;
  flex-grow: 1;
  width: 100%;
}

.l-col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none;
}

.l-col-1 {
  width: 8.333333%;
}

.l-col-2 {
  width: 16.666667%;
}

.l-col-3 {
  width: 25%;
}

.l-col-4 {
  width: 33.333333%;
}

.l-col-5 {
  width: 41.666667%;
}

.l-col-6 {
  width: 50%;
}

.l-col-7 {
  width: 58.333333%;
}

.l-col-8 {
  width: 66.666667%;
}

.l-col-9 {
  width: 75%;
}

.l-col-10 {
  width: 83.333333%;
}

.l-col-11 {
  width: 91.666667%;
}

.l-col-12 {
  width: 100%;
}

.order-first {
  order: -1;
}

.order-last {
  order: 13;
}

.order-0 {
  order: 0;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.order-4 {
  order: 4;
}

.order-5 {
  order: 5;
}

.order-6 {
  order: 6;
}

.order-7 {
  order: 7;
}

.order-8 {
  order: 8;
}

.order-9 {
  order: 9;
}

.order-10 {
  order: 10;
}

.order-11 {
  order: 11;
}

.order-12 {
  order: 12;
}

.offset-1 {
  margin-left: 8.333333%;
}

.offset-2 {
  margin-left: 16.666667%;
}

.offset-3 {
  margin-left: 25%;
}

.offset-4 {
  margin-left: 33.333333%;
}

.offset-5 {
  margin-left: 41.666667%;
}

.offset-6 {
  margin-left: 50%;
}

.offset-7 {
  margin-left: 58.333333%;
}

.offset-8 {
  margin-left: 66.666667%;
}

.offset-9 {
  margin-left: 75%;
}

.offset-10 {
  margin-left: 83.333333%;
}

.offset-11 {
  margin-left: 91.666667%;
}

@media screen and (min-width: 768px) {
  .l-col-sm {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
  }
  .l-col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .l-col-sm-1 {
    width: 8.333333%;
  }
  .l-col-sm-2 {
    width: 16.666667%;
  }
  .l-col-sm-3 {
    width: 25%;
  }
  .l-col-sm-4 {
    width: 33.333333%;
  }
  .l-col-sm-5 {
    width: 41.666667%;
  }
  .l-col-sm-6 {
    width: 50%;
  }
  .l-col-sm-7 {
    width: 58.333333%;
  }
  .l-col-sm-8 {
    width: 66.666667%;
  }
  .l-col-sm-9 {
    width: 75%;
  }
  .l-col-sm-10 {
    width: 83.333333%;
  }
  .l-col-sm-11 {
    width: 91.666667%;
  }
  .l-col-sm-12 {
    width: 100%;
  }
  .order-sm-first {
    order: -1;
  }
  .order-sm-last {
    order: 13;
  }
  .order-sm-0 {
    order: 0;
  }
  .order-sm-1 {
    order: 1;
  }
  .order-sm-2 {
    order: 2;
  }
  .order-sm-3 {
    order: 3;
  }
  .order-sm-4 {
    order: 4;
  }
  .order-sm-5 {
    order: 5;
  }
  .order-sm-6 {
    order: 6;
  }
  .order-sm-7 {
    order: 7;
  }
  .order-sm-8 {
    order: 8;
  }
  .order-sm-9 {
    order: 9;
  }
  .order-sm-10 {
    order: 10;
  }
  .order-sm-11 {
    order: 11;
  }
  .order-sm-12 {
    order: 12;
  }
  .offset-sm-0 {
    margin-left: 0;
  }
  .offset-sm-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-11 {
    margin-left: 91.666667%;
  }
}
@media screen and (max-width: 767px) {
  .l-col-sm-down {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
  }
  .l-col-sm-down-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .l-col-sm-down-1 {
    width: 8.333333%;
  }
  .l-col-sm-down-2 {
    width: 16.666667%;
  }
  .l-col-sm-down-3 {
    width: 25%;
  }
  .l-col-sm-down-4 {
    width: 33.333333%;
  }
  .l-col-sm-down-5 {
    width: 41.666667%;
  }
  .l-col-sm-down-6 {
    width: 50%;
  }
  .l-col-sm-down-7 {
    width: 58.333333%;
  }
  .l-col-sm-down-8 {
    width: 66.666667%;
  }
  .l-col-sm-down-9 {
    width: 75%;
  }
  .l-col-sm-down-10 {
    width: 83.333333%;
  }
  .l-col-sm-down-11 {
    width: 91.666667%;
  }
  .l-col-sm-down-12 {
    width: 100%;
  }
  .order-sm-down-first {
    order: -1;
  }
  .order-sm-down-last {
    order: 13;
  }
  .order-sm-down-0 {
    order: 0;
  }
  .order-sm-down-1 {
    order: 1;
  }
  .order-sm-down-2 {
    order: 2;
  }
  .order-sm-down-3 {
    order: 3;
  }
  .order-sm-down-4 {
    order: 4;
  }
  .order-sm-down-5 {
    order: 5;
  }
  .order-sm-down-6 {
    order: 6;
  }
  .order-sm-down-7 {
    order: 7;
  }
  .order-sm-down-8 {
    order: 8;
  }
  .order-sm-down-9 {
    order: 9;
  }
  .order-sm-down-10 {
    order: 10;
  }
  .order-sm-down-11 {
    order: 11;
  }
  .order-sm-down-12 {
    order: 12;
  }
  .offset-sm-down-0 {
    margin-left: 0;
  }
  .offset-sm-down-1 {
    margin-left: 8.333333%;
  }
  .offset-sm-down-2 {
    margin-left: 16.666667%;
  }
  .offset-sm-down-3 {
    margin-left: 25%;
  }
  .offset-sm-down-4 {
    margin-left: 33.333333%;
  }
  .offset-sm-down-5 {
    margin-left: 41.666667%;
  }
  .offset-sm-down-6 {
    margin-left: 50%;
  }
  .offset-sm-down-7 {
    margin-left: 58.333333%;
  }
  .offset-sm-down-8 {
    margin-left: 66.666667%;
  }
  .offset-sm-down-9 {
    margin-left: 75%;
  }
  .offset-sm-down-10 {
    margin-left: 83.333333%;
  }
  .offset-sm-down-11 {
    margin-left: 91.666667%;
  }
}
@media screen and (max-width: 1023px) {
  .l-col-md {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
  }
  .l-col-md-down-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .l-col-md-down-1 {
    width: 8.333333%;
  }
  .l-col-md-down-2 {
    width: 16.666667%;
  }
  .l-col-md-down-3 {
    width: 25%;
  }
  .l-col-md-down-4 {
    width: 33.333333%;
  }
  .l-col-md-down-5 {
    width: 41.666667%;
  }
  .l-col-md-down-6 {
    width: 50%;
  }
  .l-col-md-down-7 {
    width: 58.333333%;
  }
  .l-col-md-down-8 {
    width: 66.666667%;
  }
  .l-col-md-down-9 {
    width: 75%;
  }
  .l-col-md-down-10 {
    width: 83.333333%;
  }
  .l-col-md-down-11 {
    width: 91.666667%;
  }
  .l-col-md-down-12 {
    width: 100%;
  }
  .order-md-down-first {
    order: -1;
  }
  .order-md-down-last {
    order: 13;
  }
  .order-md-down-0 {
    order: 0;
  }
  .order-md-down-1 {
    order: 1;
  }
  .order-md-down-2 {
    order: 2;
  }
  .order-md-down-3 {
    order: 3;
  }
  .order-md-down-4 {
    order: 4;
  }
  .order-md-down-5 {
    order: 5;
  }
  .order-md-down-6 {
    order: 6;
  }
  .order-md-down-7 {
    order: 7;
  }
  .order-md-down-8 {
    order: 8;
  }
  .order-md-down-9 {
    order: 9;
  }
  .order-md-down-10 {
    order: 10;
  }
  .order-md-down-11 {
    order: 11;
  }
  .order-md-down-12 {
    order: 12;
  }
  .offset-md-down-0 {
    margin-left: 0;
  }
  .offset-md-down-1 {
    margin-left: 8.333333%;
  }
  .offset-md-down-2 {
    margin-left: 16.666667%;
  }
  .offset-md-down-3 {
    margin-left: 25%;
  }
  .offset-md-down-4 {
    margin-left: 33.333333%;
  }
  .offset-md-down-5 {
    margin-left: 41.666667%;
  }
  .offset-md-down-6 {
    margin-left: 50%;
  }
  .offset-md-down-7 {
    margin-left: 58.333333%;
  }
  .offset-md-down-8 {
    margin-left: 66.666667%;
  }
  .offset-md-down-9 {
    margin-left: 75%;
  }
  .offset-md-down-10 {
    margin-left: 83.333333%;
  }
  .offset-md-down-11 {
    margin-left: 91.666667%;
  }
}
@media screen and (min-width: 1024px) {
  .l-col-md {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
  }
  .l-col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .l-col-md-1 {
    width: 8.333333%;
  }
  .l-col-md-2 {
    width: 16.666667%;
  }
  .l-col-md-3 {
    width: 25%;
  }
  .l-col-md-4 {
    width: 33.333333%;
  }
  .l-col-md-5 {
    width: 41.666667%;
  }
  .l-col-md-6 {
    width: 50%;
  }
  .l-col-md-7 {
    width: 58.333333%;
  }
  .l-col-md-8 {
    width: 66.666667%;
  }
  .l-col-md-9 {
    width: 75%;
  }
  .l-col-md-10 {
    width: 83.333333%;
  }
  .l-col-md-11 {
    width: 91.666667%;
  }
  .l-col-md-12 {
    width: 100%;
  }
  .order-md-first {
    order: -1;
  }
  .order-md-last {
    order: 13;
  }
  .order-md-0 {
    order: 0;
  }
  .order-md-1 {
    order: 1;
  }
  .order-md-2 {
    order: 2;
  }
  .order-md-3 {
    order: 3;
  }
  .order-md-4 {
    order: 4;
  }
  .order-md-5 {
    order: 5;
  }
  .order-md-6 {
    order: 6;
  }
  .order-md-7 {
    order: 7;
  }
  .order-md-8 {
    order: 8;
  }
  .order-md-9 {
    order: 9;
  }
  .order-md-10 {
    order: 10;
  }
  .order-md-11 {
    order: 11;
  }
  .order-md-12 {
    order: 12;
  }
  .offset-md-0 {
    margin-left: 0;
  }
  .offset-md-1 {
    margin-left: 8.333333%;
  }
  .offset-md-2 {
    margin-left: 16.666667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.333333%;
  }
  .offset-md-5 {
    margin-left: 41.666667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.333333%;
  }
  .offset-md-8 {
    margin-left: 66.666667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.333333%;
  }
  .offset-md-11 {
    margin-left: 91.666667%;
  }
}
@media screen and (min-width: 1100px) {
  .l-col-lg {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
  }
  .l-col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .l-col-lg-1 {
    width: 8.333333%;
  }
  .l-col-lg-2 {
    width: 16.666667%;
  }
  .l-col-lg-3 {
    width: 25%;
  }
  .l-col-lg-4 {
    width: 33.333333%;
  }
  .l-col-lg-5 {
    width: 41.666667%;
  }
  .l-col-lg-6 {
    width: 50%;
  }
  .l-col-lg-7 {
    width: 58.333333%;
  }
  .l-col-lg-8 {
    width: 66.666667%;
  }
  .l-col-lg-9 {
    width: 75%;
  }
  .l-col-lg-10 {
    width: 83.333333%;
  }
  .l-col-lg-11 {
    width: 91.666667%;
  }
  .l-col-lg-12 {
    width: 100%;
  }
  .order-lg-first {
    order: -1;
  }
  .order-lg-last {
    order: 13;
  }
  .order-lg-0 {
    order: 0;
  }
  .order-lg-1 {
    order: 1;
  }
  .order-lg-2 {
    order: 2;
  }
  .order-lg-3 {
    order: 3;
  }
  .order-lg-4 {
    order: 4;
  }
  .order-lg-5 {
    order: 5;
  }
  .order-lg-6 {
    order: 6;
  }
  .order-lg-7 {
    order: 7;
  }
  .order-lg-8 {
    order: 8;
  }
  .order-lg-9 {
    order: 9;
  }
  .order-lg-10 {
    order: 10;
  }
  .order-lg-11 {
    order: 11;
  }
  .order-lg-12 {
    order: 12;
  }
  .offset-lg-0 {
    margin-left: 0;
  }
  .offset-lg-1 {
    margin-left: 8.333333%;
  }
  .offset-lg-2 {
    margin-left: 16.666667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.333333%;
  }
  .offset-lg-5 {
    margin-left: 41.666667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.333333%;
  }
  .offset-lg-8 {
    margin-left: 66.666667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.333333%;
  }
  .offset-lg-11 {
    margin-left: 91.666667%;
  }
}
@media screen and (min-width: 1100px) {
  .l-col-xl {
    flex-basis: 0;
    flex-grow: 1;
    width: 100%;
  }
  .l-col-xl-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none;
  }
  .l-col-xl-1 {
    width: 8.333333%;
  }
  .l-col-xl-2 {
    width: 16.666667%;
  }
  .l-col-xl-3 {
    width: 25%;
  }
  .l-col-xl-4 {
    width: 33.333333%;
  }
  .l-col-xl-5 {
    width: 41.666667%;
  }
  .l-col-xl-6 {
    width: 50%;
  }
  .l-col-xl-7 {
    width: 58.333333%;
  }
  .l-col-xl-8 {
    width: 66.666667%;
  }
  .l-col-xl-9 {
    width: 75%;
  }
  .l-col-xl-10 {
    width: 83.333333%;
  }
  .l-col-xl-11 {
    width: 91.666667%;
  }
  .l-col-xl-12 {
    width: 100%;
  }
  .order-xl-first {
    order: -1;
  }
  .order-xl-last {
    order: 13;
  }
  .order-xl-0 {
    order: 0;
  }
  .order-xl-1 {
    order: 1;
  }
  .order-xl-2 {
    order: 2;
  }
  .order-xl-3 {
    order: 3;
  }
  .order-xl-4 {
    order: 4;
  }
  .order-xl-5 {
    order: 5;
  }
  .order-xl-6 {
    order: 6;
  }
  .order-xl-7 {
    order: 7;
  }
  .order-xl-8 {
    order: 8;
  }
  .order-xl-9 {
    order: 9;
  }
  .order-xl-10 {
    order: 10;
  }
  .order-xl-11 {
    order: 11;
  }
  .order-xl-12 {
    order: 12;
  }
  .offset-xl-0 {
    margin-left: 0;
  }
  .offset-xl-1 {
    margin-left: 8.333333%;
  }
  .offset-xl-2 {
    margin-left: 16.666667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.333333%;
  }
  .offset-xl-5 {
    margin-left: 41.666667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.333333%;
  }
  .offset-xl-8 {
    margin-left: 66.666667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.333333%;
  }
  .offset-xl-11 {
    margin-left: 91.666667%;
  }
}
.d-none {
  display: none !important;
}

.d-inline {
  display: inline !important;
}

.d-inline-block {
  display: inline-block !important;
}

.d-block {
  display: block !important;
}

.d-table {
  display: table !important;
}

.d-table-row {
  display: table-row !important;
}

.d-table-cell {
  display: table-cell !important;
}

.d-flex {
  display: flex !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

@media screen and (min-width: 768px) {
  .d-none--sm {
    display: none !important;
  }
  .d-inline--sm {
    display: inline !important;
  }
  .d-inline-block--sm {
    display: inline-block !important;
  }
  .d-block--sm {
    display: block !important;
  }
  .d-table--sm {
    display: table !important;
  }
  .d-table-row--sm {
    display: table-row !important;
  }
  .d-table-cell--sm {
    display: table-cell !important;
  }
  .d-flex--sm {
    display: flex !important;
  }
  .d-inline-flex--sm {
    display: inline-flex !important;
  }
}
@media screen and (max-width: 767px) {
  .d-none--sm-down {
    display: none !important;
  }
  .d-inline--sm-down {
    display: inline !important;
  }
  .d-inline-block--sm-down {
    display: inline-block !important;
  }
  .d-block--sm-down {
    display: block !important;
  }
  .d-table--sm-down {
    display: table !important;
  }
  .d-table-row--sm-down {
    display: table-row !important;
  }
  .d-table-cell--sm-down {
    display: table-cell !important;
  }
  .d-flex--sm-down {
    display: flex !important;
  }
  .d-inline-flex--sm-down {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1024px) {
  .d-md-none {
    display: none !important;
  }
  .d-md-inline {
    display: inline !important;
  }
  .d-md-inline-block {
    display: inline-block !important;
  }
  .d-md-block {
    display: block !important;
  }
  .d-md-table {
    display: table !important;
  }
  .d-md-table-row {
    display: table-row !important;
  }
  .d-md-table-cell {
    display: table-cell !important;
  }
  .d-md-flex {
    display: flex !important;
  }
  .d-md-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1100px) {
  .d-lg-none {
    display: none !important;
  }
  .d-lg-inline {
    display: inline !important;
  }
  .d-lg-inline-block {
    display: inline-block !important;
  }
  .d-lg-block {
    display: block !important;
  }
  .d-lg-table {
    display: table !important;
  }
  .d-lg-table-row {
    display: table-row !important;
  }
  .d-lg-table-cell {
    display: table-cell !important;
  }
  .d-lg-flex {
    display: flex !important;
  }
  .d-lg-inline-flex {
    display: inline-flex !important;
  }
}
@media screen and (min-width: 1100px) {
  .d-xl-none {
    display: none !important;
  }
  .d-xl-inline {
    display: inline !important;
  }
  .d-xl-inline-block {
    display: inline-block !important;
  }
  .d-xl-block {
    display: block !important;
  }
  .d-xl-table {
    display: table !important;
  }
  .d-xl-table-row {
    display: table-row !important;
  }
  .d-xl-table-cell {
    display: table-cell !important;
  }
  .d-xl-flex {
    display: flex !important;
  }
  .d-xl-inline-flex {
    display: inline-flex !important;
  }
}
@media print {
  .d-print-none {
    display: none !important;
  }
  .d-print-inline {
    display: inline !important;
  }
  .d-print-inline-block {
    display: inline-block !important;
  }
  .d-print-block {
    display: block !important;
  }
  .d-print-table {
    display: table !important;
  }
  .d-print-table-row {
    display: table-row !important;
  }
  .d-print-table-cell {
    display: table-cell !important;
  }
  .d-print-flex {
    display: flex !important;
  }
  .d-print-inline-flex {
    display: inline-flex !important;
  }
}
.flex-row {
  flex-direction: row !important;
}

.flex-column {
  flex-direction: column !important;
}

.flex-row-reverse {
  flex-direction: row-reverse !important;
}

.flex-column-reverse {
  flex-direction: column-reverse !important;
}

.flex-wrap {
  flex-wrap: wrap !important;
}

.flex-nowrap {
  flex-wrap: nowrap !important;
}

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important;
}

.flex-fill {
  flex: 1 1 auto !important;
}

.flex-1 {
  flex: 1 !important;
}

.flex-grow-0 {
  flex-grow: 0 !important;
}

.flex-grow-1 {
  flex-grow: 1 !important;
}

.flex-shrink-0 {
  flex-shrink: 0 !important;
}

.flex-shrink-1 {
  flex-shrink: 1 !important;
}

.justify-content-start {
  justify-content: flex-start !important;
}

.justify-content-end {
  justify-content: flex-end !important;
}

.justify-content-center {
  justify-content: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-around {
  justify-content: space-around !important;
}

.align-items-start {
  align-items: flex-start !important;
}

.align-items-end {
  align-items: flex-end !important;
}

.align-items-center {
  align-items: center !important;
}

.align-items-baseline {
  align-items: baseline !important;
}

.align-items-stretch {
  align-items: stretch !important;
}

.align-content-start {
  align-content: flex-start !important;
}

.align-content-end {
  align-content: flex-end !important;
}

.align-content-center {
  align-content: center !important;
}

.align-content-between {
  align-content: space-between !important;
}

.align-content-around {
  align-content: space-around !important;
}

.align-content-stretch {
  align-content: stretch !important;
}

.align-self-auto {
  -ms-grid-row-align: auto !important;
      align-self: auto !important;
}

.align-self-start {
  align-self: flex-start !important;
}

.align-self-end {
  align-self: flex-end !important;
}

.align-self-center {
  -ms-grid-row-align: center !important;
      align-self: center !important;
}

.align-self-baseline {
  align-self: baseline !important;
}

.align-self-stretch {
  -ms-grid-row-align: stretch !important;
      align-self: stretch !important;
}

@media screen and (max-width: 767px) {
  .flex-sm-down-row {
    flex-direction: row !important;
  }
  .flex-sm-down-column {
    flex-direction: column !important;
  }
  .flex-sm-down-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-sm-down-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-sm-down-wrap {
    flex-wrap: wrap !important;
  }
  .flex-sm-down-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-sm-down-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-sm-down-fill {
    flex: 1 1 auto !important;
  }
  .flex-sm-down-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-sm-down-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-sm-down-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-sm-down-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-sm-down-start {
    justify-content: flex-start !important;
  }
  .justify-content-sm-down-end {
    justify-content: flex-end !important;
  }
  .justify-content-sm-down-center {
    justify-content: center !important;
  }
  .justify-content-sm-down-between {
    justify-content: space-between !important;
  }
  .justify-content-sm-down-around {
    justify-content: space-around !important;
  }
  .align-items-sm-down-start {
    align-items: flex-start !important;
  }
  .align-items-sm-down-end {
    align-items: flex-end !important;
  }
  .align-items-sm-down-center {
    align-items: center !important;
  }
  .align-items-sm-down-baseline {
    align-items: baseline !important;
  }
  .align-items-sm-down-stretch {
    align-items: stretch !important;
  }
  .align-content-sm-down-start {
    align-content: flex-start !important;
  }
  .align-content-sm-down-end {
    align-content: flex-end !important;
  }
  .align-content-sm-down-center {
    align-content: center !important;
  }
  .align-content-sm-down-between {
    align-content: space-between !important;
  }
  .align-content-sm-down-around {
    align-content: space-around !important;
  }
  .align-content-sm-down-stretch {
    align-content: stretch !important;
  }
  .align-self-sm-down-auto {
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-sm-down-start {
    align-self: flex-start !important;
  }
  .align-self-sm-down-end {
    align-self: flex-end !important;
  }
  .align-self-sm-down-center {
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-sm-down-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-down-stretch {
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media screen and (min-width: 768px) {
  .flex-md-row {
    flex-direction: row !important;
  }
  .flex-md-column {
    flex-direction: column !important;
  }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-center {
    justify-content: center !important;
  }
  .justify-content-md-between {
    justify-content: space-between !important;
  }
  .justify-content-md-around {
    justify-content: space-around !important;
  }
  .align-items-md-start {
    align-items: flex-start !important;
  }
  .align-items-md-end {
    align-items: flex-end !important;
  }
  .align-items-md-center {
    align-items: center !important;
  }
  .align-items-md-baseline {
    align-items: baseline !important;
  }
  .align-items-md-stretch {
    align-items: stretch !important;
  }
  .align-content-md-start {
    align-content: flex-start !important;
  }
  .align-content-md-end {
    align-content: flex-end !important;
  }
  .align-content-md-center {
    align-content: center !important;
  }
  .align-content-md-between {
    align-content: space-between !important;
  }
  .align-content-md-around {
    align-content: space-around !important;
  }
  .align-content-md-stretch {
    align-content: stretch !important;
  }
  .align-self-md-auto {
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-md-start {
    align-self: flex-start !important;
  }
  .align-self-md-end {
    align-self: flex-end !important;
  }
  .align-self-md-center {
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media screen and (min-width: 992px) {
  .flex-lg-row {
    flex-direction: row !important;
  }
  .flex-lg-column {
    flex-direction: column !important;
  }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-lg-wrap {
    flex-wrap: wrap !important;
  }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-lg-fill {
    flex: 1 1 auto !important;
  }
  .flex-lg-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-lg-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-lg-start {
    justify-content: flex-start !important;
  }
  .justify-content-lg-end {
    justify-content: flex-end !important;
  }
  .justify-content-lg-center {
    justify-content: center !important;
  }
  .justify-content-lg-between {
    justify-content: space-between !important;
  }
  .justify-content-lg-around {
    justify-content: space-around !important;
  }
  .align-items-lg-start {
    align-items: flex-start !important;
  }
  .align-items-lg-end {
    align-items: flex-end !important;
  }
  .align-items-lg-center {
    align-items: center !important;
  }
  .align-items-lg-baseline {
    align-items: baseline !important;
  }
  .align-items-lg-stretch {
    align-items: stretch !important;
  }
  .align-content-lg-start {
    align-content: flex-start !important;
  }
  .align-content-lg-end {
    align-content: flex-end !important;
  }
  .align-content-lg-center {
    align-content: center !important;
  }
  .align-content-lg-between {
    align-content: space-between !important;
  }
  .align-content-lg-around {
    align-content: space-around !important;
  }
  .align-content-lg-stretch {
    align-content: stretch !important;
  }
  .align-self-lg-auto {
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-lg-start {
    align-self: flex-start !important;
  }
  .align-self-lg-end {
    align-self: flex-end !important;
  }
  .align-self-lg-center {
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
@media screen and (min-width: 1100px) {
  .flex-xl-row {
    flex-direction: row !important;
  }
  .flex-xl-column {
    flex-direction: column !important;
  }
  .flex-xl-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-xl-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-xl-wrap {
    flex-wrap: wrap !important;
  }
  .flex-xl-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-xl-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-xl-fill {
    flex: 1 1 auto !important;
  }
  .flex-xl-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-xl-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-xl-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-xl-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-xl-start {
    justify-content: flex-start !important;
  }
  .justify-content-xl-end {
    justify-content: flex-end !important;
  }
  .justify-content-xl-center {
    justify-content: center !important;
  }
  .justify-content-xl-between {
    justify-content: space-between !important;
  }
  .justify-content-xl-around {
    justify-content: space-around !important;
  }
  .align-items-xl-start {
    align-items: flex-start !important;
  }
  .align-items-xl-end {
    align-items: flex-end !important;
  }
  .align-items-xl-center {
    align-items: center !important;
  }
  .align-items-xl-baseline {
    align-items: baseline !important;
  }
  .align-items-xl-stretch {
    align-items: stretch !important;
  }
  .align-content-xl-start {
    align-content: flex-start !important;
  }
  .align-content-xl-end {
    align-content: flex-end !important;
  }
  .align-content-xl-center {
    align-content: center !important;
  }
  .align-content-xl-between {
    align-content: space-between !important;
  }
  .align-content-xl-around {
    align-content: space-around !important;
  }
  .align-content-xl-stretch {
    align-content: stretch !important;
  }
  .align-self-xl-auto {
    -ms-grid-row-align: auto !important;
        align-self: auto !important;
  }
  .align-self-xl-start {
    align-self: flex-start !important;
  }
  .align-self-xl-end {
    align-self: flex-end !important;
  }
  .align-self-xl-center {
    -ms-grid-row-align: center !important;
        align-self: center !important;
  }
  .align-self-xl-baseline {
    align-self: baseline !important;
  }
  .align-self-xl-stretch {
    -ms-grid-row-align: stretch !important;
        align-self: stretch !important;
  }
}
/**
 * gnav
**/
.vue-gnav-enter-from,
.vue-gnav-leave-to {
  opacity: 0;
}

.vue-gnav-enter-to,
.vue-gnav-leave-from {
  opacity: 1;
}

.vue-gnav-enter-active,
.vue-gnav-leave-active {
  transition: 0.2s;
}

.no-animation {
  visibility: hidden !important;
  transition: visibility 0s, -webkit-transform 0s !important;
  transition: transform 0s, visibility 0s !important;
  transition: transform 0s, visibility 0s, -webkit-transform 0s !important;
}
.no-animation .vue-gnav-enter-active,
.no-animation .vue-gnav-leave-active {
  transition: 0s;
}

/* [gnav] グロナビ レイアウト
-----------------------------------------------*/
@media screen and (max-width: 767px) {
  .l-gnav__container {
    position: fixed;
    top: 0;
    display: flex;
    z-index: 130;
    align-items: center;
    padding: 0 0 0 20px;
    width: 100%;
    transition: background-color 0.2s;
    padding: 0;
  }
}

@media screen and (max-width: 767px) {
  .is-gnav-opened > .l-gnav__container::before {
    content: "";
    position: absolute;
    background: rgba(0, 34, 64, 0.7);
    width: 100%;
    height: 100vh;
    top: 52px;
  }
}

@media screen and (max-width: 767px) {
  .l-gnav {
    overflow: hidden;
    visibility: hidden;
    display: block;
    position: fixed;
    top: 52px;
    right: 0;
    z-index: -1;
    background: #fff;
    margin: 0;
    padding-top: 0;
    min-width: inherit;
    max-width: 320px;
    width: 100%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    transition: visibility 0.5s, -webkit-transform 0.5s;
    transition: transform 0.5s, visibility 0.5s;
    transition: transform 0.5s, visibility 0.5s, -webkit-transform 0.5s;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__scroller {
    height: calc(100vh - var(--header-H));
    will-change: visibility, transform;
  }
  .is-gnav-opened .l-gnav__scroller {
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
}
@media screen and (min-width: 768px) {
  .l-gnav__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1064px;
    padding: 0 32px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__inner {
    display: block;
    position: relative;
    z-index: 1;
    margin-top: 0;
    padding: 20px;
    overscroll-behavior-y: contain;
  }
}
.l-gnav.is-stop-animation {
  transition: visibility 0s, -webkit-transform 0s;
  transition: transform 0s, visibility 0s;
  transition: transform 0s, visibility 0s, -webkit-transform 0s;
}
@media screen and (max-width: 767px) {
  .l-gnav.is-gnav-opened {
    z-index: 120;
    -webkit-transform: translateX(0%);
            transform: translateX(0%);
    transition: 0.3s;
    visibility: visible;
  }
}

/* [gnav] [SP]ハンバーガーボタン
-----------------------------------------------*/
.l-gnav__button {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  padding: 12px 12px;
  width: 50px;
  height: 50px;
  line-height: 1;
}
.l-gnav__button__icon {
  width: 26px;
  height: 21px;
}
.l-gnav__button__icon > span, .l-gnav__button__icon:before, .l-gnav__button__icon:after {
  position: relative;
  display: block;
  background-color: #005BAC;
  height: 1px;
  width: 100%;
  transition: 0.1s;
  -webkit-transform-origin: center;
          transform-origin: center;
}
.l-gnav__button__icon:before, .l-gnav__button__icon:after {
  content: "";
}
.l-gnav__button__icon:before {
  top: 0px;
}
.l-gnav__button__icon:after {
  top: 20px;
}
.l-gnav__button__icon > span {
  top: 10px;
}
.l-gnav__button.is-stop-animation > span {
  transition: 0s;
}
.l-gnav__button.is-stop-animation > span:before, .l-gnav__button.is-stop-animation > span:after {
  transition: 0s;
}
.l-gnav__button.is-gnav-opened {
  background-color: #fff;
}
.l-gnav__button.is-gnav-opened .l-gnav__button__icon:before {
  top: 13px;
  background-color: #005BAC;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.l-gnav__button.is-gnav-opened .l-gnav__button__icon:after {
  top: 12px;
  background-color: #005BAC;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.l-gnav__button.is-gnav-opened .l-gnav__button__icon > span {
  display: none;
  background-color: #005BAC;
}
.l-gnav__button.is-gnav-opened .l-gnav__button__text:before {
  content: "閉じる";
  color: #fff;
}

/* [gnav] グロナビリスト
-----------------------------------------------*/
.l-gnav__list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .l-gnav__list {
    display: block;
    margin-bottom: 16px;
    font-weight: bold;
  }
}
.l-gnav__list__item {
  margin: 0;
  line-height: 1;
  position: relative;
  font-size: 1.6rem;
}
.l-gnav__list__item:first-of-type > .c-button {
  padding-left: 0;
}
@media screen and (max-width: 767px) {
  .l-gnav__list__item {
    border-bottom: 1px solid #D9D9D9;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__list__item a {
    padding: 20px 0;
    display: block;
    width: 100%;
  }
}
.l-gnav__list__item.active {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .l-gnav__list__item-inner {
    display: none;
    background: #F2F3F4;
  }
  .l-gnav__list__item-inner.active {
    display: block;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__list__item-inner-item {
    border-bottom: 1px solid #fff;
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__list__item-inner-item a {
    padding-left: 16px;
    padding-right: 16px;
  }
}
.l-gnav__list__item-inner-btn {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 10px;
  height: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  transition: -webkit-transform 0.2s;
  transition: transform 0.2s;
  transition: transform 0.2s, -webkit-transform 0.2s;
}
@media screen and (max-width: 767px) {
  .l-gnav__list__item-inner-btn {
    top: 5px;
    right: 0;
    left: auto;
    bottom: auto;
    width: 50px;
    height: 50px;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
  }
  .l-gnav__list__item-inner-btn .svg-icon_toggle-dims {
    vertical-align: 6px;
  }
  .l-gnav__list__item-inner-btn.active svg {
    -webkit-transform: rotate(-180deg);
            transform: rotate(-180deg);
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__list__item-inner-btn::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    background: #D9D9D9;
    width: 1px;
    height: 23px;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
  }
}
.l-gnav__list__item > ul > li {
  margin: 0;
  font-size: 1.4rem;
  min-height: 50px;
}
.l-gnav__list__item-border {
  content: "";
  background: #D9D9D9;
  height: 38px;
  width: 1px;
}
.l-gnav__list__item__category.c-button {
  padding-top: 20px;
  padding-bottom: 20px;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .l-gnav__list__item__category.c-button {
    padding-right: 16px;
    padding-left: 16px;
  }
}
.l-gnav__list__item__category.c-button.l-gnav__list__item__category--toggle-button {
  flex-wrap: wrap;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}
.l-gnav__list__item__category.c-button.l-gnav__list__item__category--toggle-button .c-icon {
  position: absolute;
  top: inherit;
  bottom: 5px;
  margin-top: -6px;
  width: 100%;
}
.l-gnav__list__item__category.c-button.l-gnav__list__item__category--toggle-button .c-icon > svg {
  width: 12px;
  height: 12px;
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
}
@media (hover: hover) and (pointer: fine) {
  .l-gnav__list__item__category.c-button.l-gnav__list__item__category--toggle-button:hover {
    opacity: 0.7;
  }
  .l-gnav__list__item__category.c-button.l-gnav__list__item__category--toggle-button:hover .c-icon > svg {
    fill: #fff;
  }
}
.l-gnav__list__item__category.c-button.is-category-opened {
  opacity: 0.7;
}
.l-gnav__list__item__category-link {
  font-size: 2.4rem;
  line-height: 1.5;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .l-gnav__list__item__category-link {
    font-size: 1.4rem;
  }
}
.l-gnav__list__item__category-link .c-icon > svg {
  width: 12px;
  height: 12px;
}

.l-gnav__list__child {
  text-align: left;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .l-gnav__list__child {
    position: fixed;
    left: 0;
    width: 100%;
    background: #F2F3F4;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__list__child {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__list__child__inner {
    padding-right: 0;
    padding-left: 0;
    max-width: unset;
  }
}
.l-gnav__list__child__buttons {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 0;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .l-gnav__list__child__buttons {
    margin-top: 0;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 767px) {
  .l-gnav__list__child__buttons__col {
    margin-top: 1px;
    margin-bottom: 0;
  }
}
.l-gnav__list__child__buttons__col:last-of-type .c-button {
  border-right: 1px solid #000;
}
.l-gnav__list__child__buttons .c-button {
  padding: 0 40px;
  border-left: 1px solid #000;
  min-height: initial;
}
@media screen and (max-width: 767px) {
  .l-gnav__list__child__buttons .c-button {
    margin-top: 0;
    max-width: unset;
    width: 100%;
  }
  .l-gnav__list__child__buttons .c-button:visited {
    color: #fff;
  }
}

.is-category-opened .l-gnav__list__item-inner-btn {
  -webkit-transform: translate(-50%, -50%) rotate(-180deg);
          transform: translate(-50%, -50%) rotate(-180deg);
}

@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}
.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none; /* For Firefox */
  -ms-overflow-style: none; /* For Internet Explorer and Edge */
}
.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}
.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

/**
 * Swiper 6.8.4
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2021 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: August 23, 2021
 */
@font-face {
  font-family: "swiper-icons";
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color: #007aff;
}

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}

.swiper-container-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
          transform: translate3d(0px, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-container-multirow-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-container-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-container-pointer-events {
  touch-action: pan-y;
}

.swiper-container-pointer-events.swiper-container-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: height, -webkit-transform;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
          transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */
}

.swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory;
}

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory;
}

:root {
  --swiper-navigation-size: 44px;
  /*
  --swiper-navigation-color: var(--swiper-theme-color);
  */
}

.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  text-transform: none;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after,
.swiper-container-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after,
.swiper-container-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-prev.swiper-button-white,
.swiper-button-next.swiper-button-white {
  --swiper-navigation-color: #ffffff;
}

.swiper-button-prev.swiper-button-black,
.swiper-button-next.swiper-button-black {
  --swiper-navigation-color: #000000;
}

.swiper-button-lock {
  display: none;
}

:root {
  /*
  --swiper-pagination-color: var(--swiper-theme-color);
  */
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}

/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
          transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
          transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
          transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
          transform: translate3d(0px, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}

/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
          transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white {
  --swiper-pagination-color: #ffffff;
}

.swiper-pagination-black {
  --swiper-pagination-color: #000000;
}

.swiper-pagination-lock {
  display: none;
}

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

/* Preloader */
:root {
  /*
  --swiper-preloader-color: var(--swiper-theme-color);
  */
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
          transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color: #fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color: #000;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
          transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
          transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-container-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  -webkit-filter: blur(50px);
          filter: blur(50px);
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/**
 * Icon
**/
.c-icon {
  display: inline-block;
  font-style: inherit;
  line-height: 1;
  vertical-align: top;
}
.c-icon svg {
  fill: currentColor;
}
.c-icon.left {
  margin-right: 8px;
}
@media screen and (max-width: 767px) {
  .c-icon.left {
    margin-right: 4px;
  }
}
.c-icon.right {
  margin-left: 8px;
}
@media screen and (max-width: 767px) {
  .c-icon.right {
    margin-left: 4px;
  }
}
.c-icon--sm svg {
  width: 17px;
  height: 17px;
}

/* [icon] svgスプライト設定
-----------------------------------------------*/
.svg-icon_arrow-dims {
  width: 35px;
  height: 9px;
}

.svg-icon_arrow-blue-dims {
  width: 27px;
  height: 10px;
}

.svg-icon_tel-dims {
  width: 23px;
  height: 23px;
}

.svg-icon_fax-dims {
  width: 23px;
  height: 23px;
}

.svg-icon_btn_arrow-dims {
  width: 32px;
  height: 12px;
}

.svg-icon_btn_arrow-blue-dims {
  width: 12px;
  height: 12px;
}

.svg-icon_news_arrow-left-dims {
  width: 32px;
  height: 13px;
}

.svg-icon_news_arrow-right-dims {
  width: 32px;
  height: 13px;
}

.svg-icon_toggle-dims {
  width: 9px;
  height: 5px;
}

.svg-icon_arrow-down-dims {
  width: 13px;
  height: 6px;
}

.svg-icon_arrow-solution-dims {
  width: 33px;
  height: 48px;
}

.svg-icon_pdf-dims {
  width: 29px;
  height: 29px;
}

.svg-icon_download-dims {
  width: 20px;
  height: 17px;
}

.c-svg-icon {
  display: flex;
}
.c-svg-icon--right {
  justify-content: flex-end;
}

/* [icon] 必須アイコン
-----------------------------------------------*/
.c-icon-required {
  display: inline-flex;
  align-items: center;
  padding: 4px 6px;
  vertical-align: inherit;
  font-size: 1.2rem;
  line-height: 1;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #fff;
}

/**
 * Button
 */
/* [button] デフォルト
-----------------------------------------------*/
.c-button {
  position: relative;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 20px;
  min-height: 44px;
  max-width: 220px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  background: none;
  border: none;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.c-button:hover {
  opacity: 0.6;
}
@media screen and (max-width: 767px) {
  .c-button {
    padding: 12px 16px;
    max-width: 300px;
  }
}
.c-button--gradient-blue {
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  color: #fff;
  position: relative;
}
.c-button--gradient-blue:after {
  content: "";
  transition: all 0.2s ease-in-out;
}
.c-button--gradient-blue:hover {
  opacity: 1;
}
.c-button--gradient-blue:hover:after {
  content: "";
  position: absolute;
  background-color: rgba(0, 36, 77, 0.25);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.c-button:disabled, .c-button.disabled {
  pointer-events: none;
  background: #D1D4DB;
  color: #fff;
}
.c-button-sm {
  min-height: 35px;
  padding: 8px 30px 8px 20px;
  font-weight: 400;
}
@media screen and (max-width: 767px) {
  .c-button-sm {
    padding: 4px 30px 4px 20px;
  }
}
.c-button--left {
  justify-content: flex-start;
}
.c-button--gray {
  background: #F2F3F4;
  box-shadow: none;
}
.c-button--gray:hover {
  opacity: 1;
}
.c-button .c-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.c-button-circle {
  display: inline-flex;
  align-items: center;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
.c-button-circle:hover {
  opacity: 1;
}
.c-button-circle:hover svg {
  -webkit-animation: buttonCircle 0.7s ease forwards;
          animation: buttonCircle 0.7s ease forwards;
}
.c-button-circle > span {
  flex: 1;
}
.c-button-circle .c-icon {
  background-color: #4E4E4E;
  width: 44px;
  height: 44px;
  display: flex;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.c-button-circle--white .c-icon {
  background-color: #fff;
}
.c-button-circle--white svg {
  color: #333;
}

@-webkit-keyframes buttonCircle {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}

@keyframes buttonCircle {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  25% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    opacity: 0;
  }
  50% {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  65% {
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
    opacity: 1;
  }
}
/**
 * Title
**/
.c-title-xll {
  margin: -0px 0;
  font-size: 4rem;
  line-height: 1.5;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-xll {
    margin: -0px 0;
    font-size: 2.4rem;
  }
}

.c-title-xl {
  margin: -8.5px 0;
  font-size: 3.4rem;
  line-height: 1.5;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-xl {
    margin: -6px 0;
    font-size: 2.4rem;
  }
}

.c-title-lg {
  margin: -9px 0;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-lg {
    margin: -7.5px 0;
    font-size: 3rem;
  }
}

.c-title-md, .p-info-content__inner h3, .p-products-detail-feature h3 {
  margin: -6.5px 0;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-md, .p-info-content__inner h3, .p-products-detail-feature h3 {
    margin: -5px 0;
    font-size: 2rem;
  }
}

.c-title-sm, .p-info-content__inner > h5, .p-products-detail-feature > h5, .p-info-content__inner > h4, .p-products-detail-feature > h4 {
  margin: -5px 0;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-sm, .p-info-content__inner > h5, .p-products-detail-feature > h5, .p-info-content__inner > h4, .p-products-detail-feature > h4 {
    margin: -4.5px 0;
    font-size: 1.8rem;
  }
}

.c-title-xs {
  margin: -4.5px 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-title-xss {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-xss {
    margin: -3.5px 0;
    font-size: 1.4rem;
  }
}

/* [Text] テキスト横に線
-----------------------------------------------*/
.c-title-left-line {
  display: inline-flex;
  color: #fff;
  position: relative;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-left: 50px;
}
@media screen and (max-width: 767px) {
  .c-title-left-line {
    padding-left: 40px;
  }
}
.c-title-left-line::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  top: 27px;
  left: 0;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .c-title-left-line::before {
    top: 20px;
  }
}

/* [title] 下線 + グラデーション
-----------------------------------------------*/
.c-title-underline {
  position: relative;
  margin: 0;
  padding-bottom: 11px;
  border-bottom: 2px solid #D5DEE6;
}
@media screen and (max-width: 767px) {
  .c-title-underline {
    padding-bottom: 8.5px;
  }
}
.c-title-underline::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  bottom: -2px;
  left: 0;
  width: 241px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .c-title-underline::before {
    width: 120px;
  }
}

/* [title] 下線 + 短い
-----------------------------------------------*/
.c-title-underline-short, .p-info-content__inner > h4, .p-products-detail-feature > h4 {
  position: relative;
  margin: -4.5px 0 0;
  padding-bottom: 5.5px;
}
.c-title-underline-short::before, .p-info-content__inner > h4::before, .p-products-detail-feature > h4::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: -2px;
  left: 0;
  width: 31px;
  height: 2px;
}
.c-title-underline-short--tight {
  position: relative;
  margin: 0;
  padding-bottom: 5.5px;
}
.c-title-underline-short--tight::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: -1px;
  left: 0;
  width: 35px;
  height: 1px;
}

/* [title] テキスト横に縦線
-----------------------------------------------*/
.c-title-left-vertical-line, .p-info-content__inner h3, .p-products-detail-feature h3 {
  position: relative;
  margin: 0;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-title-left-vertical-line, .p-info-content__inner h3, .p-products-detail-feature h3 {
    padding-left: 16px;
  }
}
.c-title-left-vertical-line::before, .p-info-content__inner h3::before, .p-products-detail-feature h3::before {
  content: "";
  position: absolute;
  background: #005BAC;
  top: 51%;
  left: 0;
  width: 2px;
  height: 95%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* [title] テキスト横に縦線 + gray
-----------------------------------------------*/
.c-title-left-vertical-line__gray, .p-info-content__inner > h5, .p-products-detail-feature > h5 {
  position: relative;
  margin: 0;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-title-left-vertical-line__gray, .p-info-content__inner > h5, .p-products-detail-feature > h5 {
    padding-left: 16px;
  }
}
.c-title-left-vertical-line__gray::before, .p-info-content__inner > h5::before, .p-products-detail-feature > h5::before {
  content: "";
  position: absolute;
  background: #D1D4DB;
  top: 51%;
  left: 0;
  width: 3px;
  height: 95%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* [title] テキスト上部に縦線
-----------------------------------------------*/
.c-title-vertical-line {
  position: relative;
  margin-top: 38px;
}
.c-title-vertical-line::before {
  content: "";
  position: absolute;
  background: #000;
  top: -15px;
  left: 50%;
  width: 1px;
  height: 26px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* [title] テキスト下部に線（中央揃え）
-----------------------------------------------*/
.c-title-underline-center {
  position: relative;
  margin: 0;
  text-align: center;
  padding-bottom: 12px;
}
.c-title-underline-center::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: 2px;
  left: 50%;
  width: 64px;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/**
 * Text
**/
/* [Text] レギュレーション フォントサイズ
-----------------------------------------------*/
.c-text-lg {
  margin: -4.5px 0;
  font-size: 1.8rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-md, .p-info-content__inner p, .p-products-detail-feature p, .p-info-overview p {
  margin: -4px 0;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-sm {
  margin: -3.5px 0;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-xs {
  margin: -3px 0;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* [Text] エラー文言
-----------------------------------------------*/
.c-text-error {
  margin: -3px 0;
  font-size: 1.2rem;
  display: block;
  line-height: 1.5;
  color: #DE3535;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* [Text] label
-----------------------------------------------*/
.c-text-label {
  margin: 0;
  display: inline-flex;
  background: #005BAC;
  color: #fff;
  padding: 1px 6px 2px;
  align-items: center;
}
.c-text-label--radius {
  border-radius: 3px;
}
.c-text-label--blue-light {
  background-color: #22ABDD;
}
.c-text-label--circle {
  margin: 0;
  width: 154px;
  height: 154px;
  display: flex;
  background: linear-gradient(60deg, #4CBEE8, #1E429A);
  border-radius: 50%;
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  color: #005BAC;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .c-text-label--circle {
    width: 139px;
    height: 139px;
  }
}
.c-text-label--circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 50%;
  padding: 1px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
}
.c-text-label--required {
  background-color: #DE3535;
  padding: 0px 4px 1px;
  vertical-align: 1px;
  margin-left: 8px;
}

/* [Text] label-container
-----------------------------------------------*/
.c-text-label-container {
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}
.c-text-label-container--sm {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
  margin: 0;
  padding: 0;
}

/* [Text] 横線
-----------------------------------------------*/
.c-text-left-line {
  display: inline-flex;
  color: #005BAC;
  position: relative;
  align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.c-text-left-line::before {
  content: "";
  width: 15px;
  height: 2px;
  background: #005BAC;
}

/* [Text] 行数制限
-----------------------------------------------*/
.c-text-trim-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-text-trim-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-text-trim-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .c-text-trim-4 {
    -webkit-line-clamp: 7;
  }
}

/**
 * Link
**/
/* [Link] テキストリンク
-----------------------------------------------*/
.c-link-text {
  cursor: pointer;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}
.c-link-text > i {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-left: 3px;
  height: 1.5em;
}
.c-link-text > i svg {
  width: 1em;
  height: 1em;
}
.c-link-text:visited {
  color: #333;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-text:hover {
    opacity: 0.6;
    color: #333;
  }
}

.c-link-tel {
  color: #333;
}
.c-link-tel:visited {
  color: #005BAC;
}
@media (hover: hover) and (pointer: fine) {
  .c-link-tel:hover {
    color: #333;
  }
}

.c-link-text-underline, .p-info-content__inner a, .p-products-detail-feature a {
  text-decoration: underline;
  color: #005BAC;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}
.c-link-text-underline:visited, .p-info-content__inner a:visited, .p-products-detail-feature a:visited {
  color: #005BAC;
}
.c-link-text-underline[target=_blank], .p-info-content__inner a[target=_blank], .p-products-detail-feature a[target=_blank] {
  position: relative;
}
.c-link-text-underline[target=_blank]::after, .p-info-content__inner a[target=_blank]::after, .p-products-detail-feature a[target=_blank]::after {
  content: url(../img/shared/icon_blank.svg);
  position: relative;
  top: inherit;
  right: inherit;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.c-link-tel {
  font-size: 2.3rem;
  font-weight: bold;
}

/**
 * List
**/
/* [list] テキストリスト
-----------------------------------------------*/
.c-list {
  margin: 0;
  padding: 0 0 0 1.3em;
}
.c-list > li {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-list > li:first-of-type {
  padding-top: 0;
}
.c-list > li:last-of-type {
  padding-bottom: 0;
}

/* [list] インライン形式
-----------------------------------------------*/
.c-list-inline {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -8px;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .c-list-inline {
    margin-bottom: -4px;
  }
}
.c-list-inline > li {
  display: block;
  border-right: 1px solid #D9D9D9;
  margin-right: 8px;
  margin-bottom: 8px;
  padding-right: 8px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #005BAC;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-list-inline > li {
    margin-bottom: 4px;
  }
}
.c-list-inline--base-color > li {
  color: #333;
}

/**
 * Table
**/
/* [table] デフォルトのtable（背景色付き）
-----------------------------------------------*/
.c-table, .p-products-detail-table table {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-table, .p-products-detail-table table {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table thead, .p-products-detail-table table thead,
.c-table tbody,
.p-products-detail-table table tbody,
.c-table tr,
.p-products-detail-table table tr {
    display: block;
    width: 100%;
  }
}
.c-table th, .p-products-detail-table table th,
.c-table td,
.p-products-detail-table table td {
  padding: 16px 30px 16px 0;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-table th, .p-products-detail-table table th,
.c-table td,
.p-products-detail-table table td {
    display: block;
    width: 100%;
    padding-right: 0;
  }
}
.c-table tbody th, .p-products-detail-table table tbody th {
  width: 165px;
}
@media screen and (max-width: 767px) {
  .c-table tbody th, .p-products-detail-table table tbody th {
    width: 100%;
  }
}
.c-table th, .p-products-detail-table table th {
  border-top: 1px solid #D1D4DB;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .c-table th, .p-products-detail-table table th {
    padding-bottom: 8px;
  }
}
.c-table td, .p-products-detail-table table td {
  border-top: 1px solid #D1D4DB;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-table td, .p-products-detail-table table td {
    border-top: none;
    padding-top: 0;
  }
}
.c-table thead:first-child tr:first-child th, .p-products-detail-table table thead:first-child tr:first-child th,
.c-table thead:first-child tr:first-child td,
.p-products-detail-table table thead:first-child tr:first-child td,
.c-table tbody:first-child tr:first-child th,
.p-products-detail-table table tbody:first-child tr:first-child th,
.c-table tbody:first-child tr:first-child td,
.p-products-detail-table table tbody:first-child tr:first-child td {
  padding-top: 0;
  border-top: none;
}
.c-table thead:last-child tr:last-child th, .p-products-detail-table table thead:last-child tr:last-child th,
.c-table thead:last-child tr:last-child td,
.p-products-detail-table table thead:last-child tr:last-child td,
.c-table tbody:last-child tr:last-child th,
.p-products-detail-table table tbody:last-child tr:last-child th,
.c-table tbody:last-child tr:last-child td,
.p-products-detail-table table tbody:last-child tr:last-child td {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-table thead:last-child tr:last-child td, .p-products-detail-table table thead:last-child tr:last-child td,
.c-table tbody:last-child tr:last-child td,
.p-products-detail-table table tbody:last-child tr:last-child td {
    padding-top: 8px;
  }
}
.c-table-sm {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-table-sm {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table-sm thead,
.c-table-sm tbody,
.c-table-sm tr {
    display: block;
    width: 100%;
  }
}
.c-table-sm th,
.c-table-sm td {
  padding: 5px 20px 5px 0;
  vertical-align: top;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .c-table-sm th,
.c-table-sm td {
    display: block;
    width: 100%;
    padding-right: 0;
  }
}
.c-table-sm tbody th {
  width: 160px;
}
@media screen and (max-width: 767px) {
  .c-table-sm tbody th {
    width: 100%;
  }
}
.c-table-sm th {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-table-sm th {
    padding-top: 0;
    padding-bottom: 6px;
  }
}
.c-table-sm td {
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-table-sm td {
    border-top: none;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.c-table-sm thead:first-child tr:first-child th,
.c-table-sm thead:first-child tr:first-child td,
.c-table-sm tbody:first-child tr:first-child th,
.c-table-sm tbody:first-child tr:first-child td {
  padding-top: 0;
}
.c-table-sm thead:last-child tr:last-child td,
.c-table-sm tbody:last-child tr:last-child td {
  padding-bottom: 0;
}
.c-table-form {
  width: 100%;
}
@media screen and (max-width: 767px) {
  .c-table-form {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table-form thead,
.c-table-form tbody,
.c-table-form tr {
    display: block;
    width: 100%;
  }
}
.c-table-form th,
.c-table-form td {
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: baseline;
  font-weight: normal;
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .c-table-form th,
.c-table-form td {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.c-table-form tbody th {
  width: 195px;
}
@media screen and (max-width: 767px) {
  .c-table-form tbody th {
    width: 100%;
  }
}
.c-table-form th {
  border-top: 1px solid #D1D4DB;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-table-form th {
    padding-bottom: 8px;
  }
}
.c-table-form td {
  border-top: 1px solid #D1D4DB;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .c-table-form td {
    border-top: none;
    padding-top: 0;
  }
}
.c-table-form thead:first-child tr:first-child th,
.c-table-form thead:first-child tr:first-child td,
.c-table-form tbody:first-child tr:first-child th,
.c-table-form tbody:first-child tr:first-child td {
  padding-top: 0;
  border-top: none;
}
.c-table-form thead:last-child tr:last-child th,
.c-table-form thead:last-child tr:last-child td,
.c-table-form tbody:last-child tr:last-child th,
.c-table-form tbody:last-child tr:last-child td {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .c-table-form thead:last-child tr:last-child td,
.c-table-form tbody:last-child tr:last-child td {
    padding-top: 8px;
  }
}
.c-table-form__merge-cell-top th,
.c-table-form__merge-cell-top td {
  border-top: none;
  padding-top: 0;
}

/**
 * Form
**/
/* [Form] デフォルト設定
-----------------------------------------------*/
label {
  cursor: pointer;
  font-size: 1.4rem;
  line-height: 1.5;
}

button {
  border: none;
  background: transparent;
  font-size: unset;
}

input {
  border: none;
  color: #333;
  -webkit-text-fill-color: #333;
  opacity: 1;
}
input:disabled {
  background-color: #F2F3F4;
}
input:focus {
  outline: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

input[type=submit] {
  cursor: pointer;
}

button[type=submit]:disabled {
  cursor: not-allowed;
}
button[type=submit]:disabled:hover::after {
  content: none;
}

input[type=text],
input[type=search],
input[type=number],
input[type=url],
input[type=email],
input[type=tel],
input[type=password],
textarea {
  display: inline-flex;
  align-items: center;
  font-family: "NotoSansJP", "MyHiragino", "メイリオ", Meiryo, sans-serif;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  padding: 5px 8px;
  min-height: 44px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: normal;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: #F2F3F4;
}
@media screen and (max-width: 767px) {
  input[type=text],
input[type=search],
input[type=number],
input[type=url],
input[type=email],
input[type=tel],
input[type=password],
textarea {
    min-height: 44px;
  }
}
input[type=text]:-moz-read-only, input[type=search]:-moz-read-only, input[type=number]:-moz-read-only, input[type=url]:-moz-read-only, input[type=email]:-moz-read-only, input[type=tel]:-moz-read-only, input[type=password]:-moz-read-only, textarea:-moz-read-only {
  background-color: #F2F3F4;
}
input[type=text]:read-only,
input[type=search]:read-only,
input[type=number]:read-only,
input[type=url]:read-only,
input[type=email]:read-only,
input[type=tel]:read-only,
input[type=password]:read-only,
textarea:read-only {
  background-color: #F2F3F4;
}
input[type=text]:placeholder,
input[type=search]:placeholder,
input[type=number]:placeholder,
input[type=url]:placeholder,
input[type=email]:placeholder,
input[type=tel]:placeholder,
input[type=password]:placeholder,
textarea:placeholder {
  color: #8E8E8E;
  font-weight: normal;
  opacity: 1;
}
input[type=text]:focus,
input[type=search]:focus,
input[type=number]:focus,
input[type=url]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus {
  outline-color: #005BAC;
}
input[type=text].error, .error input[type=text],
input[type=search].error,
.error input[type=search],
input[type=number].error,
.error input[type=number],
input[type=url].error,
.error input[type=url],
input[type=email].error,
.error input[type=email],
input[type=tel].error,
.error input[type=tel],
input[type=password].error,
.error input[type=password],
textarea.error,
.error textarea {
  border: 1px solid #DE3535;
}

textarea {
  min-height: 250px;
  resize: vertical;
  width: 100%;
  color: #333;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  textarea {
    min-height: 164px;
  }
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=reset] {
  background: none;
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  border: none;
  color: #333;
}

.c-form-width--md {
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .c-form-width--md {
    max-width: 100%;
  }
}
.c-form-width--sm {
  max-width: 220px;
}
@media screen and (max-width: 767px) {
  .c-form-width--sm {
    max-width: 100%;
  }
}

.c-form-text--placeholder {
  color: #8E8E8E;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .c-form-text--placeholder {
    margin-left: 0;
    display: inline-block;
    margin-top: 16px;
  }
}

/* [Form] ラジオボタン
-----------------------------------------------*/
.c-form-radio {
  position: relative;
  vertical-align: -webkit-baseline-middle;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .c-form-radio {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-form-radio:not(:first-child) {
    margin-top: 16px;
  }
}
.c-form-radio > label {
  cursor: pointer;
  display: inline-block;
  padding-right: 2em;
  padding-left: 26px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-form-radio > label {
    display: block;
    padding: 4px 0 3px 38px;
    font-size: 1.3rem;
  }
}
.c-form-radio__icon {
  cursor: pointer;
  display: inline-block;
}
.c-form-radio__icon:before, .c-form-radio__icon:after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  display: inline-block;
  top: 0px;
  bottom: 0px;
  border-radius: 100%;
  margin-top: auto;
  margin-bottom: auto;
}
.c-form-radio__icon:before {
  z-index: 1;
  left: 0px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #D9D9D9;
}
@media screen and (max-width: 767px) {
  .c-form-radio__icon:before {
    width: 30px;
    height: 30px;
  }
}
.error .c-form-radio__icon:before {
  border: 1px solid #DE3535;
}
.c-form-radio__icon:after {
  z-index: 2;
  left: 4px;
  width: 12px;
  height: 12px;
  background-color: #005BAC;
  opacity: 0;
  transition: 0.2s;
  -webkit-transform: scale3d(0, 0, 0);
          transform: scale3d(0, 0, 0);
}
@media screen and (max-width: 767px) {
  .c-form-radio__icon:after {
    left: 6px;
    width: 18px;
    height: 18px;
  }
}

.c-form-radio input[type=radio] {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0px;
  bottom: 0px;
  left: 0;
  z-index: 2;
  margin: auto 0px;
  outline: none;
  border-radius: 100%;
  width: 20px;
  height: 20px;
}
.c-form-radio input[type=radio]:checked, .c-form-radio input[type=radio]:focus {
  box-shadow: none;
}
.c-form-radio input[type=radio]:checked ~ .c-form-radio__icon:after, .c-form-radio input[type=radio]:focus ~ .c-form-radio__icon:after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
          transform: scale3d(1, 1, 1);
}

/* [Form] チェックボックス
-----------------------------------------------*/
.c-form-checkbox {
  display: inline-flex;
  align-items: flex-start;
  position: relative;
  vertical-align: -webkit-baseline-middle;
  padding-left: 34px;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-form-checkbox {
    display: block;
    padding-left: 28px;
  }
}
@media screen and (max-width: 767px) {
  .c-form-checkbox:not(:first-child) {
    margin-top: 16px;
  }
}
.c-form-checkbox > label {
  cursor: pointer;
  display: inline-block;
  padding-right: 1em;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .c-form-checkbox > label {
    display: block;
    padding: 4px 0 3px;
    font-size: 1.3rem;
  }
}
.c-form-checkbox:last-child > label {
  padding-right: 0;
}
.c-form-checkbox__icon {
  cursor: pointer;
  display: block;
  position: absolute;
  top: 0.125em;
  left: 0;
  z-index: 2;
  background-color: #fff;
  border-radius: 3px;
  margin: auto 0px;
  outline: none;
  width: 20px;
  height: 20px;
  transition: 0.2s;
}
.c-form-checkbox__icon:before, .c-form-checkbox__icon:after {
  content: "";
  position: absolute;
}
.c-form-checkbox__icon:before {
  background: #fff;
  border: 1px solid #D9D9D9;
  border-radius: 3px;
  display: block;
  box-sizing: border-box;
  top: 0px;
  left: 0px;
  width: 20px;
  height: 20px;
}
.error .c-form-checkbox__icon:before {
  border: 1px solid #DE3535;
}
.c-form-checkbox__icon:after {
  border-right: 3px solid #fff;
  border-bottom: 3px solid #fff;
  display: block;
  top: 10%;
  left: 30%;
  width: 8px;
  height: 12px;
  -webkit-transform: scale3d(0, 0, 0) rotate(20deg);
          transform: scale3d(0, 0, 0) rotate(20deg);
  opacity: 0;
  transition: 0.2s;
}

.c-form-checkbox input[type=checkbox] {
  cursor: pointer;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  top: 0px;
  left: 0;
  width: 20px;
  height: 20px;
  z-index: 5;
  opacity: 0;
}
.c-form-checkbox input[type=checkbox]:checked + .c-form-checkbox__icon {
  box-shadow: none;
  border-color: #005BAC;
  background-color: #005BAC;
}
.c-form-checkbox input[type=checkbox]:checked ~ .c-form-checkbox__icon::before {
  opacity: 0;
}
.c-form-checkbox input[type=checkbox]:checked ~ .c-form-checkbox__icon:after {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1) rotate(45deg);
          transform: scale3d(1, 1, 1) rotate(45deg);
}
.c-form-checkbox input[type=checkbox]:focus ~ .c-form-checkbox__icon:before {
  border: 2px solid #005BAC;
}

/* [Form] プルダウン
-----------------------------------------------*/
.c-form-select {
  position: relative;
  background: #F2F3F4;
  text-indent: 0px;
}
.c-form-select::before {
  content: "▲";
  display: block;
  font-size: 1rem;
  color: #8E8E8E;
  position: absolute;
  top: 40%;
  right: 8px;
  z-index: 1;
  border-color: transparent #333 #333 transparent;
  -webkit-transform: translateY(-50%) scale(0.7);
          transform: translateY(-50%) scale(0.7);
}
.c-form-select::after {
  content: "▼";
  display: block;
  font-size: 1rem;
  color: #8E8E8E;
  position: absolute;
  top: 60%;
  right: 8px;
  z-index: 1;
  border-color: transparent #333 #333 transparent;
  -webkit-transform: translateY(-50%) scale(0.7);
          transform: translateY(-50%) scale(0.7);
}
.c-form-select select {
  position: relative;
  z-index: 2;
  font-family: "NotoSansJP", "MyHiragino", "メイリオ", Meiryo, sans-serif;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  border-radius: 3px;
  border: 1px solid #D9D9D9;
  padding: 8px 30px 8px 8px;
  min-height: 44px;
  width: 100%;
  line-height: 1;
  color: #333;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .c-form-select select {
    min-height: 44px;
  }
}
.c-form-select select option {
  color: #333;
}
.c-form-select select:focus {
  outline-color: #005BAC;
}
.c-form-select select::-ms-expand {
  display: none;
}
.c-form-select select:disabled {
  color: #F2F3F4;
}
.c-form-select.error select, .error .c-form-select select {
  border: 1px solid #DE3535;
}

/**
 * Media
 */
/* [Media] 幅100%画像
-----------------------------------------------*/
figure {
  margin: 0 auto;
  text-align: center;
}
figure img {
  width: 100%;
  height: auto;
}
figure > figcaption {
  padding: calc(10px - 5px) 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: left;
}
@media screen and (max-width: 767px) {
  figure > figcaption {
    padding: calc(8px - 4.5px) 0 0;
  }
}

.c-figure {
  background-color: #fff;
}
.c-figure__col6-object-fit {
  height: 289px;
}
.c-figure__col6-object-fit img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .c-figure__col6-object-fit {
    height: 53.8666666667vw;
    max-height: 289px;
  }
}

/* [Media] 動画
-----------------------------------------------*/
.c-media-iframe-wide {
  width: 100%;
}
.c-media-iframe-wide iframe {
  aspect-ratio: 16/9;
  width: 100%;
  height: 100%;
}

/**
 * p-top
 */
/* [p-top]
-----------------------------------------------*/
@media screen and (min-width: 768px) {
  .p-top-info-section {
    padding-top: 140px;
  }
}
.p-top-header {
  position: relative;
}
.p-top-header-title {
  position: absolute;
  top: 48%;
  left: 50%;
  z-index: 1;
  width: 100%;
  max-width: 1064px;
  padding-right: 32px;
  padding-left: 32px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .p-top-header-title {
    padding-left: 18px;
    padding-right: 18px;
    top: 42%;
  }
}
.p-top-header-title__txt {
  color: #fff;
  font-size: 4rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-top-header-title__txt {
    font-size: 2.4rem;
    letter-spacing: 0;
  }
}
.p-top-header-swiper {
  text-align: right;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top-header-swiper {
    margin-left: 38px;
  }
}
.p-top-header-swiper-pagination {
  position: absolute;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 0.1em;
  height: 60px;
  width: 89%;
  left: 0;
  bottom: -58px;
  padding-right: 30px;
}
@media screen and (max-width: 767px) {
  .p-top-header-swiper-pagination {
    height: 52px;
    padding-right: 0;
    position: relative;
    bottom: 0;
    min-width: 100%;
    width: 100%;
  }
}
.p-top-header-bg {
  position: relative;
}
.p-top-header-bg::before {
  content: "";
  width: 89%;
  height: 100%;
  max-height: 570px;
  position: absolute;
  top: 68px;
  left: 0;
  background-image: url(../img/top/main_bk@2x.jpg);
  z-index: 0;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top-header-bg::before {
    top: 25px;
    height: calc(100% - 25px);
    min-width: 100%;
    background-position: center;
  }
}
.p-top-product {
  position: relative;
  padding-top: 113px;
}
@media screen and (max-width: 767px) {
  .p-top-product {
    padding-top: 150px;
  }
}
.p-top-product::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 44%;
  height: 350px;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-top-product::before {
    width: 80%;
    height: 190px;
  }
}
.p-top-product__1::before {
  background-image: url(../img/top/product_01@2x.jpg);
}
.p-top-product__2::before {
  left: initial;
  right: 0;
  background-image: url(../img/top/product_02@2x.jpg);
}
.p-top-product__3::before {
  background-image: url(../img/top/product_03@2x.jpg);
}
.p-top-product-bg {
  position: relative;
}
.p-top-product-bg::before {
  content: "";
  position: absolute;
  top: 190px;
  left: 50%;
  width: 100%;
  height: 100%;
  max-width: 1064px;
  margin: 0 32px;
  background: #F2F3F4;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-top-product-bg::before {
    top: 150px;
    left: 38px;
    -webkit-transform: none;
            transform: none;
  }
}
.p-top-product-bg::after {
  content: "";
  position: absolute;
  top: 190px;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: -1;
  background: #F2F3F4;
}
@media screen and (max-width: 767px) {
  .p-top-product-bg::after {
    top: 150px;
    left: 38px;
    content: none;
  }
}
.p-top-technology__bg {
  position: relative;
}
.p-top-technology__bg::before {
  content: "";
  width: 50%;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background-image: url(../img/top/technology_bg@2x.png);
  background-size: cover;
  background-position: bottom left;
}
@media screen and (max-width: 767px) {
  .p-top-technology__bg::before {
    width: 80%;
  }
}
@media screen and (max-width: 767px) {
  .p-top-technology__img-01 {
    width: 60%;
  }
}
.p-top-technology__img-02 {
  margin-top: -180px;
  text-align: right;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-top-technology__img-02 {
    width: 55%;
    margin-left: auto;
    margin-top: -109px;
  }
}
.p-top-technology__img-03 {
  margin-top: -90px;
  margin-left: 38px;
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .p-top-technology__img-03 {
    width: 50%;
    margin-top: -54px;
    margin-left: 20px;
  }
}
.p-top-recruit {
  display: flex;
  align-items: flex-end;
  -webkit-column-gap: 38px;
     -moz-column-gap: 38px;
          column-gap: 38px;
  position: relative;
  margin-bottom: 78px;
  flex-wrap: wrap;
  row-gap: 30px;
  justify-content: flex-end;
}
@media screen and (max-width: 767px) {
  .p-top-recruit {
    margin-bottom: 50px;
  }
}
.p-top-recruit::before {
  content: "";
  position: absolute;
  width: 120%;
  height: 100%;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  top: 78px;
  left: 170px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-top-recruit::before {
    left: 20px;
    height: calc(100% - 38px);
  }
}
.p-top-recruit__links {
  display: flex;
  flex-wrap: wrap;
  row-gap: 20px;
  flex: 1;
  justify-content: flex-end;
  max-width: 250px;
}
.p-top-recruit__links .c-button-circle {
  width: 100%;
  max-width: 350px;
}
.p-top-swiper-news-nav {
  position: relative;
  display: flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
}
.p-top-swiper-news-nav .swiper-button-next,
.p-top-swiper-news-nav .swiper-button-prev {
  position: relative;
}
.p-top-swiper-news-nav .swiper-button-next:hover path,
.p-top-swiper-news-nav .swiper-button-prev:hover path {
  stroke: #005BAC;
}
.p-top-button-group {
  display: flex;
}
.p-top-button-group > .c-button-circle {
  margin-left: auto;
}
.p-top-card-info__container {
  padding-bottom: 40px;
}
.p-top-card-info__container time {
  padding-top: 2px !important;
}
@media screen and (max-width: 767px) {
  .p-top-card-info__container time {
    padding-top: 1px !important;
  }
}

.swiper-news .swiper-wrapper {
  flex-wrap: nowrap;
}
@media screen and (min-width: 768px) {
  .swiper-news .swiper-wrapper {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .swiper-news .swiper-wrapper {
    overflow-x: scroll;
    justify-content: flex-start;
  }
}
.swiper-news .swiper-slide {
  width: 284px;
  max-width: 284px;
  min-width: 284px;
}

.swiper-button-prev:after, .swiper-container-rtl .swiper-button-next:after,
.swiper-button-next:after, .swiper-container-rtl .swiper-button-prev:after {
  display: none;
}

.p-animation-observer.p-top-animation-observer {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/**
 * p-article
 */
/* [p-article]
-----------------------------------------------*/
.p-card-info {
  width: calc((100% - 40px) / 2);
  border-radius: 5px;
  overflow: hidden;
  box-shadow: 11px 13px 16px rgba(0, 0, 0, 0.16);
  height: initial;
  background-color: #fff;
  display: flex;
}
@media screen and (min-width: 1024px) {
  .p-card-info {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width: 767px) {
  .p-card-info {
    max-width: 300px;
    width: 100%;
  }
}
.p-card-info__container {
  display: flex;
  align-items: stretch;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 16px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-card-info__container {
    justify-content: center;
  }
}
.p-card-info__link {
  display: flex;
  flex-direction: column;
}
.p-card-info__box {
  padding: 20px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.p-card-info__label {
  position: absolute;
  top: 0;
  left: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-card-info__img img {
  width: 100%;
  height: 116px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 767px) {
  .p-card-info__img img {
    height: 169px;
  }
}
.p-top-info-section .p-card-info__img img {
  height: 160px;
}
.p-card-info .c-button {
  max-width: 100%;
}
.p-card-info time {
  padding-top: 12px;
}
@media screen and (max-width: 767px) {
  .p-card-info time {
    padding-top: 11px;
  }
}
.p-card-category {
  width: calc((100% - 20px) / 2);
  overflow: hidden;
  height: initial;
  background-color: #fff;
  display: flex;
  border: 1px solid #ccc;
  border-top: 1px solid #005BAC;
}
@media screen and (max-width: 767px) {
  .p-card-category {
    max-width: 400px;
    width: 100%;
  }
}
.p-card-category__container {
  display: flex;
  align-items: stretch;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-card-category__container {
    justify-content: center;
    row-gap: 15px;
  }
}
.p-card-category__link {
  display: flex;
  flex-direction: column;
}
.p-card-category__box {
  padding: 30px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-card-category__box {
    padding: 20px;
  }
}
.p-card-category__img {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 300px;
  padding: 10px 10px 0;
}
.p-card-category__img img {
  width: 100%;
  max-height: 290px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-card-category .c-button {
  max-width: 100%;
}
.p-card-product {
  width: calc((100% - 9px) / 3);
  overflow: hidden;
  height: initial;
  background-color: #fff;
  box-shadow: 11px 13px 16px rgba(0, 0, 0, 0.16);
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-card-product {
    max-width: 400px;
    width: 100%;
  }
}
.p-card-product__container {
  display: flex;
  align-items: stretch;
  -webkit-column-gap: 3px;
     -moz-column-gap: 3px;
          column-gap: 3px;
  row-gap: 3px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-card-product__container {
    justify-content: center;
  }
}
.p-card-product__link {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.p-card-product__box {
  padding: 20px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-card-product__box {
    padding: 20px;
  }
}
.p-card-product__img {
  height: 280px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 1px solid #D1D4DB;
}
.p-card-product__img img {
  max-height: 280px;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-card-product .c-button {
  max-width: 100%;
}
.p-card-results {
  width: calc((100% - 40px) / 3);
  overflow: hidden;
  height: initial;
  background-color: #fff;
  display: flex;
  background-color: #F2F3F4;
}
@media screen and (max-width: 767px) {
  .p-card-results {
    max-width: 400px;
    width: 100%;
  }
}
.p-card-results__container {
  display: flex;
  align-items: stretch;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-card-results__container {
    justify-content: center;
    row-gap: 15px;
  }
}
.p-card-results__link {
  display: flex;
  flex-direction: column;
}
.p-card-results__box {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-card-results__box {
    padding: 20px;
  }
}
.p-card-results__img {
  padding: 10px 10px 0;
}
.p-card-results__img img {
  width: 100%;
}
.p-card-results .c-button {
  max-width: 100%;
}
.p-card-training {
  width: calc((100% - 35px) / 2);
  overflow: hidden;
  height: initial;
  background-color: #fff;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-card-training {
    max-width: 400px;
    width: 100%;
  }
}
.p-card-training--gray {
  background-color: #F2F3F4;
}
.p-card-training__container {
  display: flex;
  justify-content: space-around;
  -webkit-column-gap: 35px;
     -moz-column-gap: 35px;
          column-gap: 35px;
  row-gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-card-training__container {
    justify-content: center;
  }
}
.p-card-training__container::after {
  content: "";
  width: 48%;
}
.p-card-training__link {
  display: flex;
  flex-direction: column;
}
.p-card-training__box {
  padding: 20px;
  position: relative;
  display: flex;
  flex-direction: column;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-card-training__box {
    padding: 20px;
  }
}
.p-card-training__img {
  padding: 10px 10px 0px;
}
.p-card-training__detail {
  margin: 0;
}
.p-card-training__detail > dd {
  margin-left: 0;
}
.p-card-training .c-button {
  max-width: 100%;
}

/**
 * p-case
 */
/* [p-case]
-----------------------------------------------*/
.p-case {
  display: flex;
  row-gap: 10px;
  flex-wrap: wrap;
}
.p-case-section:not(:last-of-type) {
  padding-bottom: 0;
}
.p-case-card {
  width: 100%;
  display: flex;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-case-card {
    flex-wrap: wrap;
  }
}
.p-case-card .c-icon {
  transition: all 0.4s ease-in-out;
}
.p-case-card:hover {
  opacity: 1;
}
.p-case-card:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 0;
}
.p-case-card:hover .c-icon {
  margin-right: -10px;
}
.p-case-box {
  padding: 30px 40px 30px 30px;
  background: #fff;
  position: relative;
  flex: 1;
  min-width: 315px;
}
@media screen and (max-width: 767px) {
  .p-case-box {
    padding: 20px;
  }
}
.p-case-img {
  max-width: 444px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-case-img {
    max-width: 100%;
    min-height: 240px;
  }
}
.p-case-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top right, transparent 50%, #fff 50%) no-repeat bottom right/12% 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-case-img::before {
    top: 1px;
    right: 0;
    background: linear-gradient(to bottom right, transparent 50%, #fff 50.5%) no-repeat bottom right/100% 12%;
  }
}
.p-case-img__even::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, transparent 50%, #fff 50%) no-repeat bottom right/12% 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-case-img__even::before {
    top: 1px;
    right: 0;
    background: linear-gradient(to bottom left, transparent 50%, #fff 50.5%) no-repeat bottom right/100% 12%;
  }
}
.p-case-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.p-case-button {
  width: calc((100% - 20px) / 2);
  display: flex;
  background: #F2F3F4;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  .p-case-button {
    width: 100%;
  }
}
.p-case-button .c-icon {
  transition: all 0.4s ease-in-out;
}
.p-case-button:hover {
  opacity: 1;
}
.p-case-button:hover img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  z-index: 0;
}
.p-case-button:hover .c-icon {
  margin-right: -10px;
}
.p-case-button-container {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-case-button-container {
    row-gap: 16px;
  }
}
.p-case-button-box {
  padding: 0 40px 0 20px;
  background: #F2F3F4;
  position: relative;
  display: flex;
  align-items: center;
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-case-button-box {
    padding: 0 40px 0 16px;
  }
}
.p-case-button-img {
  max-width: 162px;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-case-button-img {
    max-width: 130px;
    overflow: hidden;
  }
}
.p-case-button-img::before {
  content: "";
  position: absolute;
  top: 0;
  right: -1px;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom right, transparent 50%, #F2F3F4 50%) no-repeat bottom right/12% 100%;
  z-index: 1;
}
.p-case-button-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: -webkit-transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out;
  transition: transform 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
}
.p-case-button-icon {
  position: absolute;
  top: 50%;
  right: 20px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-case-button-icon {
    right: 16px;
  }
}
.p-case-solution-container {
  display: flex;
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  row-gap: 20px;
  flex-wrap: wrap;
  position: relative;
}
.p-case-solution-box {
  width: calc((100% - 52px - 33px) / 2);
  background: #fff;
  padding: 23px 30px 27px;
}
@media screen and (max-width: 767px) {
  .p-case-solution-box {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-case-solution-box .c-title-sm, .p-case-solution-box .p-info-content__inner > h5, .p-case-solution-box .p-products-detail-feature > h5, .p-case-solution-box .p-info-content__inner > h4, .p-case-solution-box .p-products-detail-feature > h4 {
    font-size: 2rem;
  }
}
.p-case-solution-icon {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .p-case-solution-icon {
    justify-content: center;
    text-align: center;
    width: 100%;
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
  }
}
.p-case-feature-gap {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .p-case-feature-gap {
    margin-top: 44px;
  }
}
.p-case-feature-container {
  display: flex;
  flex-wrap: wrap;
  row-gap: 40px;
}
@media screen and (max-width: 767px) {
  .p-case-feature-container {
    row-gap: 30px;
  }
}
.p-case-feature-article {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  align-items: center;
  z-index: 1;
  position: relative;
  width: 100%;
}
.p-case-feature-article::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  width: 1280px;
  height: calc(100% + 80px);
  z-index: 0;
  left: 25%;
}
@media screen and (max-width: 767px) {
  .p-case-feature-article::before {
    width: 120%;
    left: -10%;
    top: -14px;
    height: calc(100% + 14px + 30px);
  }
}
.p-case-feature-article::after {
  content: "";
  position: absolute;
  width: 1280px;
  height: calc(100% + 80px);
  z-index: 0;
  left: 25%;
  background: url(../img/products/dot_blue.png);
  opacity: 0.29;
}
@media screen and (max-width: 767px) {
  .p-case-feature-article::after {
    width: 120%;
    left: -10%;
    top: -14px;
    height: calc(100% + 14px + 30px);
  }
}
.p-case-feature-article:nth-of-type(even)::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  width: 1280px;
  height: calc(100% + 80px);
  z-index: 0;
  left: initial;
  right: 25%;
}
@media screen and (max-width: 767px) {
  .p-case-feature-article:nth-of-type(even)::before {
    width: 120%;
    left: -10%;
    top: -14px;
    height: calc(100% + 14px + 30px);
  }
}
.p-case-feature-article:nth-of-type(even)::after {
  content: "";
  position: absolute;
  width: 1280px;
  height: calc(100% + 80px);
  z-index: 0;
  left: initial;
  right: 25%;
  background: url(../img/products/dot_blue.png);
  opacity: 0.29;
}
@media screen and (max-width: 767px) {
  .p-case-feature-article:nth-of-type(even)::after {
    width: 120%;
    left: -10%;
    top: -14px;
    height: calc(100% + 14px + 30px);
  }
}
.p-case-feature-article:nth-of-type(even) .p-case-feature__img {
  order: 2;
}
@media screen and (max-width: 767px) {
  .p-case-feature-article:nth-of-type(even) .p-case-feature__img {
    order: 0;
  }
}
.p-case-feature__img {
  width: 50%;
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 35%;
}
@media screen and (max-width: 767px) {
  .p-case-feature__img {
    width: 100%;
    text-align: center;
    padding-top: 70%;
  }
}
.p-case-feature__img img {
  position: absolute;
  box-shadow: 11px 11px 18px rgba(0, 0, 0, 0.16);
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  -o-object-fit: contain;
     object-fit: contain;
}
.p-case-feature__box {
  width: calc(50% - 40px);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  .p-case-feature__box {
    width: 100%;
    padding: 0 20px;
    margin-top: 30px;
  }
}
.p-case-feature__box .c-button {
  max-width: 100%;
}
.p-case-feature__box .c-button:hover {
  opacity: 0.7;
}
.p-case-product-gap {
  margin-top: 100px;
}

/**
 * p-contact
 */
/* [p-contact]
-----------------------------------------------*/
.p-contact__bg {
  background-image: url(../img/shared/contact_bg@2x.jpg);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .p-contact__bg {
    background-image: url(../img/shared/contact_bg_sp@2x.jpg);
    background-position: top;
  }
}
.p-contact-links {
  display: flex;
  justify-content: center;
  align-items: center;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  border-top: 1px solid #D9D9D9;
  margin-top: 16px;
  padding-top: 16px;
  flex-wrap: wrap;
  row-gap: 16px;
}
.p-contact-link-tel {
  display: flex;
  align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-contact-title {
    font-size: 2.5rem;
  }
}

/* [p-contact] for contactForm7
-----------------------------------------------*/
.p-form-policy label {
  cursor: pointer;
  display: inline-block;
  padding-right: 1em;
  vertical-align: top;
}
@media screen and (max-width: 767px) {
  .p-form-policy label {
    display: block;
    padding: 4px 0 3px;
    font-size: 1.3rem;
  }
}
.p-form-policy input[type=checkbox] {
  position: relative;
  top: 0.2em;
  border-right: 1px solid #000;
  margin-right: 8px;
  block-size: 20px;
  inline-size: 20px;
  accent-color: #005BAC;
}
.p-form-policy .wpcf7-list-item-label {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-form-policy .wpcf7-list-item-label {
    font-size: 1.4rem;
  }
}

/**
 * p-form
 */
.p-form-container {
  display: flex !important;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-form-container {
    row-gap: 16px;
    flex-wrap: wrap;
  }
}

/* [p-form] プライバシーポリシー
-----------------------------------------------*/
@media screen and (max-width: 767px) {
  .p-form-policy {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-form-policy__check-text.c-text-md, .p-info-content__inner p.p-form-policy__check-text, .p-products-detail-feature p.p-form-policy__check-text, .p-info-overview p.p-form-policy__check-text {
    font-size: 1.4rem;
  }
}
.p-form-policy .c-form-checkbox {
  display: inline-flex;
}
.p-form-policy .c-form-checkbox__icon,
.p-form-policy input[type=checkbox] {
  top: 0.4em;
}

/* [p-form] エラーボックス
-----------------------------------------------*/
.p-form-error--gap {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .p-form-error--gap {
    margin-top: 16px;
  }
}

/**
 * Text
**/
/* [Text] レギュレーション フォントサイズ
-----------------------------------------------*/
.c-text-lg {
  margin: -4.5px 0;
  font-size: 1.8rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-md, .p-info-overview p, .p-info-content__inner p, .p-products-detail-feature p {
  margin: -4px 0;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-sm {
  margin: -3.5px 0;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-xs {
  margin: -3px 0;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* [Text] エラー文言
-----------------------------------------------*/
.c-text-error {
  margin: -3px 0;
  font-size: 1.2rem;
  display: block;
  line-height: 1.5;
  color: #DE3535;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* [Text] label
-----------------------------------------------*/
.c-text-label {
  margin: 0;
  display: inline-flex;
  background: #005BAC;
  color: #fff;
  padding: 1px 6px 2px;
  align-items: center;
}

.c-text-label--radius {
  border-radius: 3px;
}

.c-text-label--blue-light {
  background-color: #22ABDD;
}

.c-text-label--circle {
  margin: 0;
  width: 154px;
  height: 154px;
  display: flex;
  background: linear-gradient(60deg, #4CBEE8, #1E429A);
  border-radius: 50%;
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  color: #005BAC;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .c-text-label--circle {
    width: 139px;
    height: 139px;
  }
}
.c-text-label--circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 50%;
  padding: 1px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
}

.c-text-label--required {
  background-color: #DE3535;
  padding: 0px 4px 1px;
  vertical-align: 1px;
  margin-left: 8px;
}

/* [Text] label-container
-----------------------------------------------*/
.c-text-label-container {
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.c-text-label-container--sm {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
  margin: 0;
  padding: 0;
}

/* [Text] 横線
-----------------------------------------------*/
.c-text-left-line {
  display: inline-flex;
  color: #005BAC;
  position: relative;
  align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.c-text-left-line::before {
  content: "";
  width: 15px;
  height: 2px;
  background: #005BAC;
}

/* [Text] 行数制限
-----------------------------------------------*/
.c-text-trim-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-text-trim-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-text-trim-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .c-text-trim-4 {
    -webkit-line-clamp: 7;
  }
}
/**
 * Title
**/
.c-title-xll {
  margin: -0px 0;
  font-size: 4rem;
  line-height: 1.5;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-xll {
    margin: -0px 0;
    font-size: 2.4rem;
  }
}
.c-title-xl {
  margin: -8.5px 0;
  font-size: 3.4rem;
  line-height: 1.5;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-xl {
    margin: -6px 0;
    font-size: 2.4rem;
  }
}
.c-title-lg {
  margin: -9px 0;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-lg {
    margin: -7.5px 0;
    font-size: 3rem;
  }
}
.c-title-md, .p-info-content__inner h3, .p-products-detail-feature h3 {
  margin: -6.5px 0;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-md, .p-info-content__inner h3, .p-products-detail-feature h3 {
    margin: -5px 0;
    font-size: 2rem;
  }
}
.c-title-sm, .p-info-content__inner > h4, .p-products-detail-feature > h4, .p-info-content__inner > h5, .p-products-detail-feature > h5 {
  margin: -5px 0;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-sm, .p-info-content__inner > h4, .p-products-detail-feature > h4, .p-info-content__inner > h5, .p-products-detail-feature > h5 {
    margin: -4.5px 0;
    font-size: 1.8rem;
  }
}
.c-title-xs {
  margin: -4.5px 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-title-xss {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-xss {
    margin: -3.5px 0;
    font-size: 1.4rem;
  }
}
/* [Text] テキスト横に線
-----------------------------------------------*/
.c-title-left-line {
  display: inline-flex;
  color: #fff;
  position: relative;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-left: 50px;
}

@media screen and (max-width: 767px) {
  .c-title-left-line {
    padding-left: 40px;
  }
}
.c-title-left-line::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  top: 27px;
  left: 0;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .c-title-left-line::before {
    top: 20px;
  }
}
/* [title] 下線 + グラデーション
-----------------------------------------------*/
.c-title-underline {
  position: relative;
  margin: 0;
  padding-bottom: 11px;
  border-bottom: 2px solid #D5DEE6;
}

@media screen and (max-width: 767px) {
  .c-title-underline {
    padding-bottom: 8.5px;
  }
}
.c-title-underline::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  bottom: -2px;
  left: 0;
  width: 241px;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .c-title-underline::before {
    width: 120px;
  }
}
/* [title] 下線 + 短い
-----------------------------------------------*/
.c-title-underline-short, .p-info-content__inner > h4, .p-products-detail-feature > h4 {
  position: relative;
  margin: -4.5px 0 0;
  padding-bottom: 5.5px;
}

.c-title-underline-short::before, .p-info-content__inner > h4::before, .p-products-detail-feature > h4::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: -2px;
  left: 0;
  width: 31px;
  height: 2px;
}

.c-title-underline-short--tight {
  position: relative;
  margin: 0;
  padding-bottom: 5.5px;
}

.c-title-underline-short--tight::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: -1px;
  left: 0;
  width: 35px;
  height: 1px;
}

/* [title] テキスト横に縦線
-----------------------------------------------*/
.c-title-left-vertical-line, .p-info-content__inner h3, .p-products-detail-feature h3 {
  position: relative;
  margin: 0;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .c-title-left-vertical-line, .p-info-content__inner h3, .p-products-detail-feature h3 {
    padding-left: 16px;
  }
}
.c-title-left-vertical-line::before, .p-info-content__inner h3::before, .p-products-detail-feature h3::before {
  content: "";
  position: absolute;
  background: #005BAC;
  top: 51%;
  left: 0;
  width: 2px;
  height: 95%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* [title] テキスト横に縦線 + gray
-----------------------------------------------*/
.c-title-left-vertical-line__gray, .p-info-content__inner > h5, .p-products-detail-feature > h5 {
  position: relative;
  margin: 0;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .c-title-left-vertical-line__gray, .p-info-content__inner > h5, .p-products-detail-feature > h5 {
    padding-left: 16px;
  }
}
.c-title-left-vertical-line__gray::before, .p-info-content__inner > h5::before, .p-products-detail-feature > h5::before {
  content: "";
  position: absolute;
  background: #D1D4DB;
  top: 51%;
  left: 0;
  width: 3px;
  height: 95%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* [title] テキスト上部に縦線
-----------------------------------------------*/
.c-title-vertical-line {
  position: relative;
  margin-top: 38px;
}

.c-title-vertical-line::before {
  content: "";
  position: absolute;
  background: #000;
  top: -15px;
  left: 50%;
  width: 1px;
  height: 26px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* [title] テキスト下部に線（中央揃え）
-----------------------------------------------*/
.c-title-underline-center {
  position: relative;
  margin: 0;
  text-align: center;
  padding-bottom: 12px;
}

.c-title-underline-center::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: 2px;
  left: 50%;
  width: 64px;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/**
 * Link
**/
/* [Link] テキストリンク
-----------------------------------------------*/
.c-link-text {
  cursor: pointer;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}

.c-link-text > i {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-left: 3px;
  height: 1.5em;
}

.c-link-text > i svg {
  width: 1em;
  height: 1em;
}

.c-link-text:visited {
  color: #333;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-text:hover {
    opacity: 0.6;
    color: #333;
  }
}
.c-link-tel {
  color: #333;
}

.c-link-tel:visited {
  color: #005BAC;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-tel:hover {
    color: #333;
  }
}
.c-link-text-underline, .p-info-content__inner a, .p-products-detail-feature a {
  text-decoration: underline;
  color: #005BAC;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}

.c-link-text-underline:visited, .p-info-content__inner a:visited, .p-products-detail-feature a:visited {
  color: #005BAC;
}

.c-link-text-underline[target=_blank], .p-info-content__inner a[target=_blank], .p-products-detail-feature a[target=_blank] {
  position: relative;
}

.c-link-text-underline[target=_blank]::after, .p-info-content__inner a[target=_blank]::after, .p-products-detail-feature a[target=_blank]::after {
  content: url(../img/shared/icon_blank.svg);
  position: relative;
  top: inherit;
  right: inherit;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.c-link-tel {
  font-size: 2.3rem;
  font-weight: bold;
}

/**
 * p-info
 */
/* [p-info]
-----------------------------------------------*/
.p-info-title {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  margin: 0;
  padding-bottom: 11px;
  border-bottom: 2px solid #D5DEE6;
}
@media screen and (max-width: 767px) {
  .p-info-title {
    padding-bottom: 8.5px;
  }
}
.p-info-title::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  bottom: -2px;
  left: 0;
  width: 180px;
  height: 2px;
}
@media screen and (max-width: 767px) {
  .p-info-title::before {
    width: 120px;
  }
}
.p-info-tag {
  display: flex;
  justify-content: space-between;
}
.p-info-overview p {
  margin-top: calc(30px - 5px);
}
@media screen and (max-width: 767px) {
  .p-info-overview p {
    margin-top: calc(30px - 4.5px);
  }
}
.p-info-content__inner span, .p-products-detail-feature span, .p-info-content__inner ul, .p-products-detail-feature ul, .p-info-content__inner ol, .p-products-detail-feature ol, .p-info-content__inner dl, .p-products-detail-feature dl, .p-info-content__inner figure, .p-products-detail-feature figure, .p-info-content__inner div, .p-products-detail-feature div, .p-info-content__inner iframe, .p-products-detail-feature iframe {
  margin: 30px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner span, .p-products-detail-feature span, .p-info-content__inner ul, .p-products-detail-feature ul, .p-info-content__inner ol, .p-products-detail-feature ol, .p-info-content__inner dl, .p-products-detail-feature dl, .p-info-content__inner figure, .p-products-detail-feature figure, .p-info-content__inner div, .p-products-detail-feature div, .p-info-content__inner iframe, .p-products-detail-feature iframe {
    margin-top: 30px;
  }
}
.p-info-content__inner h3, .p-products-detail-feature h3 {
  margin-top: 30px;
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner h3, .p-products-detail-feature h3 {
    margin-top: 30px;
  }
}
.p-info-content__inner > h4, .p-products-detail-feature > h4 {
  margin-top: calc(30px - 5px);
  margin-bottom: 0;
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner > h4, .p-products-detail-feature > h4 {
    margin-top: calc(30px - 4.5px);
  }
}
.p-info-content__inner > h5, .p-products-detail-feature > h5 {
  margin-top: calc(30px - 4.5px);
}
@media screen and (max-width: 767px) {
  .p-info-content__inner > h5, .p-products-detail-feature > h5 {
    margin-top: calc(30px - 0px);
  }
}
.p-info-content__inner p, .p-products-detail-feature p {
  margin-top: calc(30px - 5px);
}
@media screen and (max-width: 767px) {
  .p-info-content__inner p, .p-products-detail-feature p {
    margin-top: calc(30px - 4.5px);
  }
}
.p-info-content__inner ul, .p-products-detail-feature ul, .p-info-content__inner ol, .p-products-detail-feature ol {
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
  padding: 20px 0 20px 1.5em;
}
.p-info-content__inner ul > li, .p-products-detail-feature ul > li, .p-info-content__inner ol > li, .p-products-detail-feature ol > li {
  line-height: 1.5;
  padding: 5px 0;
}
.p-info-content__inner ul > li::marker, .p-products-detail-feature ul > li::marker, .p-info-content__inner ol > li::marker, .p-products-detail-feature ol > li::marker {
  font-weight: bold;
}
.p-info-content__inner ul > li:first-of-type, .p-products-detail-feature ul > li:first-of-type, .p-info-content__inner ol > li:first-of-type, .p-products-detail-feature ol > li:first-of-type {
  padding-top: 0;
}
.p-info-content__inner ul > li:last-of-type, .p-products-detail-feature ul > li:last-of-type, .p-info-content__inner ol > li:last-of-type, .p-products-detail-feature ol > li:last-of-type {
  padding-bottom: 0;
}
.p-info-content__inner ul > li::marker, .p-products-detail-feature ul > li::marker {
  font-size: 1rem;
}
.p-info-content__inner dl, .p-products-detail-feature dl {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 8px;
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
  padding: 20px 0;
}
.p-info-content__inner dl dt, .p-products-detail-feature dl dt {
  font-weight: bold;
  font-size: 1.6rem;
  width: 20%;
  display: inline;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner dl dt, .p-products-detail-feature dl dt {
    width: 38%;
  }
}
.p-info-content__inner dl dd, .p-products-detail-feature dl dd {
  width: calc(80% - 10px);
  margin-left: 0;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner dl dd, .p-products-detail-feature dl dd {
    width: calc(62% - 10px);
  }
}
.p-info-content__inner .wp-block-group, .p-products-detail-feature .wp-block-group {
  padding: 20px;
  background-color: #fff;
  height: 100%;
}
.p-info-content__inner .wp-block-group > h2:first-of-type, .p-products-detail-feature .wp-block-group > h2:first-of-type, .p-info-content__inner .wp-block-group h3:first-of-type, .p-products-detail-feature .wp-block-group h3:first-of-type, .p-info-content__inner .wp-block-group h4:first-of-type, .p-products-detail-feature .wp-block-group h4:first-of-type, .p-info-content__inner .wp-block-group h5:first-of-type, .p-products-detail-feature .wp-block-group h5:first-of-type, .p-info-content__inner .wp-block-group p:first-of-type, .p-products-detail-feature .wp-block-group p:first-of-type, .p-info-content__inner .wp-block-group span:first-of-type, .p-products-detail-feature .wp-block-group span:first-of-type, .p-info-content__inner .wp-block-group ul:first-of-type, .p-products-detail-feature .wp-block-group ul:first-of-type, .p-info-content__inner .wp-block-group ol:first-of-type, .p-products-detail-feature .wp-block-group ol:first-of-type, .p-info-content__inner .wp-block-group dl:first-of-type, .p-products-detail-feature .wp-block-group dl:first-of-type, .p-info-content__inner .wp-block-group div:first-of-type, .p-products-detail-feature .wp-block-group div:first-of-type {
  margin-top: 0;
}
.p-info-content__inner .wp-block-group > h2:last-of-type, .p-products-detail-feature .wp-block-group > h2:last-of-type, .p-info-content__inner .wp-block-group h3:last-of-type, .p-products-detail-feature .wp-block-group h3:last-of-type, .p-info-content__inner .wp-block-group h4:last-of-type, .p-products-detail-feature .wp-block-group h4:last-of-type, .p-info-content__inner .wp-block-group h5:last-of-type, .p-products-detail-feature .wp-block-group h5:last-of-type, .p-info-content__inner .wp-block-group p:last-of-type, .p-products-detail-feature .wp-block-group p:last-of-type, .p-info-content__inner .wp-block-group span:last-of-type, .p-products-detail-feature .wp-block-group span:last-of-type, .p-info-content__inner .wp-block-group ul:last-of-type, .p-products-detail-feature .wp-block-group ul:last-of-type, .p-info-content__inner .wp-block-group ol:last-of-type, .p-products-detail-feature .wp-block-group ol:last-of-type, .p-info-content__inner .wp-block-group dl:last-of-type, .p-products-detail-feature .wp-block-group dl:last-of-type, .p-info-content__inner .wp-block-group div:last-of-type, .p-products-detail-feature .wp-block-group div:last-of-type {
  margin-bottom: 0;
}
.p-info-content__inner .wp-block-group h4, .p-products-detail-feature .wp-block-group h4 {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #005BAC;
  position: relative;
  padding-left: 12px;
  margin-bottom: 20px !important;
}
.p-info-content__inner .wp-block-group h4::before, .p-products-detail-feature .wp-block-group h4::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  top: -20px;
  left: 0;
  width: 2px;
  height: calc(100% + 20px);
}
.p-info-content__inner .wp-block-group h5, .p-products-detail-feature .wp-block-group h5 {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  margin: 0;
  margin-bottom: 20px !important;
  padding-bottom: 5.5px;
}
.p-info-content__inner .wp-block-group h5::before, .p-products-detail-feature .wp-block-group h5::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: -1px;
  left: 0;
  width: 66px;
  height: 1px;
}
.p-info-content__inner .module__box, .p-products-detail-feature .module__box {
  padding: 20px;
}
.p-info-content__inner .module__box--gray, .p-products-detail-feature .module__box--gray {
  background: #E5E5E5;
}
.p-info-content__inner .module__box--yellow, .p-products-detail-feature .module__box--yellow {
  background: #F0F0CA;
}
.p-info-content__inner .module__box > h2:first-of-type, .p-products-detail-feature .module__box > h2:first-of-type, .p-info-content__inner .module__box h3:first-of-type, .p-products-detail-feature .module__box h3:first-of-type, .p-info-content__inner .module__box h4:first-of-type, .p-products-detail-feature .module__box h4:first-of-type, .p-info-content__inner .module__box h5:first-of-type, .p-products-detail-feature .module__box h5:first-of-type, .p-info-content__inner .module__box p:first-of-type, .p-products-detail-feature .module__box p:first-of-type, .p-info-content__inner .module__box span:first-of-type, .p-products-detail-feature .module__box span:first-of-type, .p-info-content__inner .module__box ul:first-of-type, .p-products-detail-feature .module__box ul:first-of-type, .p-info-content__inner .module__box ol:first-of-type, .p-products-detail-feature .module__box ol:first-of-type, .p-info-content__inner .module__box dl:first-of-type, .p-products-detail-feature .module__box dl:first-of-type, .p-info-content__inner .module__box div:first-of-type, .p-products-detail-feature .module__box div:first-of-type {
  margin-top: 0;
}
.p-info-content__inner .module__box > h2:last-of-type, .p-products-detail-feature .module__box > h2:last-of-type, .p-info-content__inner .module__box h3:last-of-type, .p-products-detail-feature .module__box h3:last-of-type, .p-info-content__inner .module__box h4:last-of-type, .p-products-detail-feature .module__box h4:last-of-type, .p-info-content__inner .module__box h5:last-of-type, .p-products-detail-feature .module__box h5:last-of-type, .p-info-content__inner .module__box p:last-of-type, .p-products-detail-feature .module__box p:last-of-type, .p-info-content__inner .module__box span:last-of-type, .p-products-detail-feature .module__box span:last-of-type, .p-info-content__inner .module__box ul:last-of-type, .p-products-detail-feature .module__box ul:last-of-type, .p-info-content__inner .module__box ol:last-of-type, .p-products-detail-feature .module__box ol:last-of-type, .p-info-content__inner .module__box dl:last-of-type, .p-products-detail-feature .module__box dl:last-of-type, .p-info-content__inner .module__box div:last-of-type, .p-products-detail-feature .module__box div:last-of-type {
  margin-bottom: 0;
}
.p-info-content__inner .module__box > h2 + *, .p-products-detail-feature .module__box > h2 + *, .p-info-content__inner .module__box h3 + *, .p-products-detail-feature .module__box h3 + *, .p-info-content__inner .module__box h4 + *, .p-products-detail-feature .module__box h4 + *, .p-info-content__inner .module__box h5 + *, .p-products-detail-feature .module__box h5 + *, .p-info-content__inner .module__box p + *, .p-products-detail-feature .module__box p + *, .p-info-content__inner .module__box span + *, .p-products-detail-feature .module__box span + *, .p-info-content__inner .module__box ul + *, .p-products-detail-feature .module__box ul + *, .p-info-content__inner .module__box ol + *, .p-products-detail-feature .module__box ol + *, .p-info-content__inner .module__box dl + *, .p-products-detail-feature .module__box dl + *, .p-info-content__inner .module__box div + *, .p-products-detail-feature .module__box div + * {
  margin-top: 12px !important;
}
.p-info-content__inner .module__box ul, .p-products-detail-feature .module__box ul, .p-info-content__inner .module__box ol, .p-products-detail-feature .module__box ol {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}
.p-info-content__inner .module__box p, .p-products-detail-feature .module__box p, .p-info-content__inner .module__box ul, .p-products-detail-feature .module__box ul, .p-info-content__inner .module__box ol, .p-products-detail-feature .module__box ol {
  font-size: 1.4rem;
}
.p-info-content__inner .wp-block-columns, .p-products-detail-feature .wp-block-columns {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner .wp-block-columns, .p-products-detail-feature .wp-block-columns {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 30px;
    flex-wrap: wrap;
  }
}
.p-info-content__inner .wp-block-columns--row-3 .wp-block-column, .p-products-detail-feature .wp-block-columns--row-3 .wp-block-column {
  flex: unset;
  flex-basis: inherit !important;
  width: 33.333%;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner .wp-block-columns--row-3 .wp-block-column, .p-products-detail-feature .wp-block-columns--row-3 .wp-block-column {
    width: calc(50% - 10px);
  }
}
.p-info-content__inner .wp-block-column, .p-products-detail-feature .wp-block-column {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner .wp-block-column, .p-products-detail-feature .wp-block-column {
    flex: auto;
  }
}
.p-info-content__inner .wp-block-column > *, .p-products-detail-feature .wp-block-column > * {
  margin: 0;
}
.p-info-content__inner .wp-block-column > p a, .p-products-detail-feature .wp-block-column > p a {
  position: relative;
  margin-top: 20px;
  background: #F2F3F4;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-height: 35px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  border: none;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
  color: #333;
}
.p-info-content__inner .wp-block-column > p a:after, .p-products-detail-feature .wp-block-column > p a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "＞";
  font-size: 1.2rem;
  color: #005BAC;
  font-weight: bold;
  -webkit-transform: translateY(-50%) scaleX(0.9);
          transform: translateY(-50%) scaleX(0.9);
}
.p-info-content__inner .wp-block-file a::before, .p-products-detail-feature .wp-block-file a::before {
  content: "▶ ";
}
.p-info-content__inner table, .p-products-detail-feature table {
  width: 100%;
}
.p-info-content__inner table th, .p-products-detail-feature table th, .p-info-content__inner table td, .p-products-detail-feature table td {
  padding: calc(20px - 3.5px) 16px;
  text-align: left;
  border: 3px solid #F2F3F4;
  background: #fff;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-info-content__inner table th, .p-products-detail-feature table th, .p-info-content__inner table td, .p-products-detail-feature table td {
    padding: calc(16px - 3.5px) 16px;
  }
}
.p-info-content__inner table th, .p-products-detail-feature table th,
.p-info-content__inner table td:first-of-type,
.p-products-detail-feature table td:first-of-type {
  background: #E4EAF0;
  font-weight: bold;
}
.p-info-content__inner table th:first-of-type, .p-products-detail-feature table th:first-of-type,
.p-info-content__inner table td:first-of-type,
.p-products-detail-feature table td:first-of-type {
  width: 28%;
}
.p-info-content__inner table th:nth-of-type(2), .p-products-detail-feature table th:nth-of-type(2),
.p-info-content__inner table td:nth-of-type(2),
.p-products-detail-feature table td:nth-of-type(2),
.p-info-content__inner table th:nth-of-type(3),
.p-products-detail-feature table th:nth-of-type(3),
.p-info-content__inner table td:nth-of-type(3),
.p-products-detail-feature table td:nth-of-type(3) {
  width: 36%;
}

/**
 * p-nav
 */
/* [p-nav] パンくず
-----------------------------------------------*/
@media screen and (max-width: 767px) {
  .p-nav-topic-path {
    background: #F2F3F4;
    border-top: 1px solid #D1D4DB;
  }
}
.p-nav-topic-path__row {
  display: flex;
}
.p-nav-topic-path ol {
  flex: 1;
  position: relative;
  display: flex;
  margin: 0;
  padding: 8px 0 8px;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-nav-topic-path ol {
    display: block;
    padding: 4px 0 4px;
  }
}
.p-nav-topic-path li {
  display: inline;
}
.p-nav-topic-path li:not(:first-child):before {
  float: none;
  display: inline-block;
  content: "＞";
  margin: 0 8px;
  color: #005BAC;
  font-size: 1.2rem;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  .p-nav-topic-path li:not(:first-child):before {
    margin: 0 4px;
  }
}
.p-nav-topic-path li:last-child {
  font-weight: bold;
}
.p-nav-topic-path li a,
.p-nav-topic-path li span {
  display: inline;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #333;
}
.p-nav-topic-path li a:visited {
  color: #333;
}
@media (hover: hover) and (pointer: fine) {
  .p-nav-topic-path li a:hover {
    color: #333;
  }
}

/* [p-nav] サイドナビ
-----------------------------------------------*/
.p-nav-side {
  background-color: #fff;
  padding: 20px 10px 8px;
}
@media screen and (min-width: 768px) {
  .p-nav-side {
    margin-right: 31px;
  }
}
.p-nav-side__title {
  margin: 0;
  text-align: center;
  font-size: 1.7rem;
}

.p-nav-side__category-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-nav-side__category-links > li:not(:first-child) {
  border-top: 1px solid #C4C4C4;
}
.p-nav-side__category-links > li > a {
  position: relative;
  display: block;
  padding: 16px 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.p-nav-side__category-links > li .c-icon {
  position: absolute;
  top: 50%;
  right: 0;
  -webkit-transform: translateY(-50%) scale(80%);
          transform: translateY(-50%) scale(80%);
  color: #005BAC;
}
.p-nav-side__category-links > li.current a {
  pointer-events: none;
  color: #8E9494;
}

.p-nav-side__article-links {
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-nav-side__article-links > li:not(:first-child) {
  border-top: 1px solid #C4C4C4;
}
.p-nav-side__article-links > li > a {
  display: block;
  padding: 10px 0;
  font-size: 1.4rem;
  line-height: 1.5;
}
.p-nav-side__article-links > li > a > time {
  display: block;
  margin-right: 8px;
}
.p-nav-side__article-links > li > a > span {
  display: block;
}
.p-nav-side__article-links > li.current a {
  pointer-events: none;
  color: #8E9494;
}

/* [p-nav] ページャー
-----------------------------------------------*/
.p-nav-pager {
  display: flex;
  justify-content: space-between;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-nav-pager {
    flex-wrap: wrap;
  }
}
.p-nav-pager > ul {
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .p-nav-pager > ul {
    order: 1;
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .p-nav-pager li,
.p-nav-pager .p-nav-pager__prev-first,
.p-nav-pager .p-nav-pager__next-last {
    padding: 0;
  }
}
.p-nav-pager li.disabled,
.p-nav-pager .p-nav-pager__prev-first.disabled,
.p-nav-pager .p-nav-pager__next-last.disabled {
  visibility: hidden;
}
.p-nav-pager li > a,
.p-nav-pager li > button,
.p-nav-pager li > span,
.p-nav-pager .p-nav-pager__prev-first > a,
.p-nav-pager .p-nav-pager__prev-first > button,
.p-nav-pager .p-nav-pager__prev-first > span,
.p-nav-pager .p-nav-pager__next-last > a,
.p-nav-pager .p-nav-pager__next-last > button,
.p-nav-pager .p-nav-pager__next-last > span {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #333;
}
@media screen and (max-width: 767px) {
  .p-nav-pager li > a,
.p-nav-pager li > button,
.p-nav-pager li > span,
.p-nav-pager .p-nav-pager__prev-first > a,
.p-nav-pager .p-nav-pager__prev-first > button,
.p-nav-pager .p-nav-pager__prev-first > span,
.p-nav-pager .p-nav-pager__next-last > a,
.p-nav-pager .p-nav-pager__next-last > button,
.p-nav-pager .p-nav-pager__next-last > span {
    min-height: 46px;
  }
}
.p-nav-pager li > a,
.p-nav-pager li button,
.p-nav-pager .p-nav-pager__prev-first > a,
.p-nav-pager .p-nav-pager__prev-first button,
.p-nav-pager .p-nav-pager__next-last > a,
.p-nav-pager .p-nav-pager__next-last button {
  color: #333;
}
.p-nav-pager li > a:visited,
.p-nav-pager li button:visited,
.p-nav-pager .p-nav-pager__prev-first > a:visited,
.p-nav-pager .p-nav-pager__prev-first button:visited,
.p-nav-pager .p-nav-pager__next-last > a:visited,
.p-nav-pager .p-nav-pager__next-last button:visited {
  color: #333;
}
@media (hover: hover) and (pointer: fine) {
  .p-nav-pager li > a:hover,
.p-nav-pager li button:hover,
.p-nav-pager .p-nav-pager__prev-first > a:hover,
.p-nav-pager .p-nav-pager__prev-first button:hover,
.p-nav-pager .p-nav-pager__next-last > a:hover,
.p-nav-pager .p-nav-pager__next-last button:hover {
    color: #333;
  }
}
.p-nav-pager li i,
.p-nav-pager .p-nav-pager__prev-first i,
.p-nav-pager .p-nav-pager__next-last i {
  display: flex;
  align-items: center;
  margin: 3px 7px 0;
  font-size: 0;
  height: 1em;
}
.p-nav-pager li i svg,
.p-nav-pager .p-nav-pager__prev-first i svg,
.p-nav-pager .p-nav-pager__next-last i svg {
  width: 12px;
  height: 12px;
}
.p-nav-pager li.current span,
.p-nav-pager .p-nav-pager__prev-first.current span,
.p-nav-pager .p-nav-pager__next-last.current span {
  pointer-events: none;
  color: #8E9494;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-nav-pager li.dots span,
.p-nav-pager .p-nav-pager__prev-first.dots span,
.p-nav-pager .p-nav-pager__next-last.dots span {
  padding-left: 0;
}
.p-nav-pager .p-nav-pager__prev {
  padding-right: 20px;
}
.p-nav-pager .p-nav-pager__next {
  padding-left: 20px;
}
.p-nav-pager .p-nav-pager__prev-first > a,
.p-nav-pager .p-nav-pager__prev-first > button,
.p-nav-pager .p-nav-pager__prev-first > span,
.p-nav-pager .p-nav-pager__next-last > a,
.p-nav-pager .p-nav-pager__next-last > button,
.p-nav-pager .p-nav-pager__next-last > span {
  padding: 0;
}
@media screen and (max-width: 767px) {
  .p-nav-pager .p-nav-pager__prev-first {
    order: 2;
    margin-right: auto;
    margin-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav-pager .p-nav-pager__prev-first > a,
.p-nav-pager .p-nav-pager__prev-first > button,
.p-nav-pager .p-nav-pager__prev-first > span {
    justify-content: flex-start;
  }
}
.p-nav-pager .p-nav-pager__prev-first .c-icon {
  display: flex;
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-nav-pager .p-nav-pager__prev i,
.p-nav-pager .p-nav-pager__prev-first i {
  margin-left: 0;
}
.p-nav-pager .p-nav-pager__next i,
.p-nav-pager .p-nav-pager__next-last i {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-nav-pager .p-nav-pager__prev {
    margin-right: auto;
    margin-left: 0;
    padding-right: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav-pager .p-nav-pager__prev > a,
.p-nav-pager .p-nav-pager__prev > button,
.p-nav-pager .p-nav-pager__prev > span {
    padding-right: 0;
    padding-left: 0;
  }
}
.p-nav-pager .p-nav-pager__prev .c-icon {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (max-width: 767px) {
  .p-nav-pager .p-nav-pager__next {
    margin-left: auto;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav-pager .p-nav-pager__next > a,
.p-nav-pager .p-nav-pager__next > button,
.p-nav-pager .p-nav-pager__next > span {
    padding-right: 0;
    padding-left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-nav-pager .p-nav-pager__next-last {
    order: 3;
    margin-left: auto;
  }
}
@media screen and (max-width: 767px) {
  .p-nav-pager .p-nav-pager__next-last > a,
.p-nav-pager .p-nav-pager__next-last > button,
.p-nav-pager .p-nav-pager__next-last > span {
    justify-content: flex-end;
  }
}
.p-nav-pager .p-nav-pager__next-last .c-icon {
  display: flex;
}

/**
 * p-products
 */
/* [p-pproductscts]
-----------------------------------------------*/
.p-products-button-container {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (max-width: 767px) {
  .p-products-button-container {
    row-gap: 8px;
    justify-content: center;
  }
}
.p-products-button-container li {
  width: calc((100% - 60px) / 4);
}
@media screen and (max-width: 767px) {
  .p-products-button-container li {
    width: 100%;
    max-width: 400px;
  }
}
.p-products-button-container .c-button {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .p-products-button-container .c-button {
    min-height: 44px;
  }
}
.p-products-button-container .c-button:hover {
  opacity: 0.7;
}
.p-products-nav__button {
  width: calc(50% - 10px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-products-nav__button {
    width: 100%;
  }
}
.p-products-nav__link {
  display: inline-flex;
  padding: 0 10px 20px;
  align-items: center;
  width: 100%;
  text-decoration: none;
  text-align: center;
  justify-content: center;
  vertical-align: middle;
  overflow: hidden;
}
.p-products-nav__link span {
  padding-right: 40px;
  position: relative;
}
.p-products-nav__link:hover {
  transition: all 0.5s ease-out;
}
.p-products-nav__link-icon {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  right: 0;
  top: 51%;
  width: 20px;
  height: 20px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.p-products-nav-inner {
  margin: 0;
  padding: 0;
  background: #fff;
}
.p-products-nav-inner__button {
  list-style: none;
}
.p-products-nav-inner__button:last-of-type a::after {
  content: none;
}
.p-products-nav-inner__button:hover {
  opacity: 0.6;
}
.p-products-nav-inner__link {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  text-align: left;
  position: relative;
  padding: 16px 14px;
  height: 0;
  background: #fff;
  transition: all 0.5s ease-out;
  position: relative;
  font-weight: normal;
  justify-content: flex-start;
}
.p-products-nav-inner__link::after {
  content: "";
  position: absolute;
  width: calc(100% - 28px);
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #C4C4C4;
}
.p-products-nav-inner__link:first-of-type {
  padding-top: 20px;
}
.p-products-nav-inner__link:last-of-type {
  padding-bottom: 20px;
}
.p-products-nav-inner .c-button {
  box-shadow: none;
  opacity: 1;
}
.p-products-nav-contents {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 30px;
}
.p-products-nav-inner {
  transition: 0.2s;
  background-color: #fff;
  height: 0;
  overflow: hidden;
  box-sizing: border-box;
}
.p-products-nav-input {
  display: none;
}
.p-products-nav-input:checked ~ .p-products-nav-inner {
  height: auto;
  padding-top: 4px;
  padding-bottom: 4px;
}
.p-products-nav-cat__input:checked + .p-products-nav-label {
  opacity: 0.6;
}
.p-products-nav-cat__input:checked + .p-products-nav-label .p-products-nav__link-icon-cat {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-products-nav-case__input:checked + .p-products-nav-label {
  opacity: 0.6;
}
.p-products-nav-case__input:checked + .p-products-nav-label .p-products-nav__link-icon-case {
  -webkit-transform: translate(-50%, -50%) rotate(180deg);
          transform: translate(-50%, -50%) rotate(180deg);
  -webkit-transform-origin: center;
          transform-origin: center;
}
.p-products-nav-label {
  display: block;
  cursor: pointer;
  text-align: center;
  border-bottom: 1px solid #005BAC;
}
@media screen and (min-width: 768px) {
  .p-products-nav-label:hover {
    opacity: 0.6;
  }
}
.p-products-nav-ul {
  margin: 0;
  padding: 0;
}

/**
 * Table
**/
/* [table] デフォルトのtable（背景色付き）
-----------------------------------------------*/
.c-table, .p-products-detail-table table {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-table, .p-products-detail-table table {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table thead, .p-products-detail-table table thead,
.c-table tbody,
.p-products-detail-table table tbody,
.c-table tr,
.p-products-detail-table table tr {
    display: block;
    width: 100%;
  }
}
.c-table th, .p-products-detail-table table th,
.c-table td,
.p-products-detail-table table td {
  padding: 16px 30px 16px 0;
  vertical-align: top;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-table th, .p-products-detail-table table th,
.c-table td,
.p-products-detail-table table td {
    display: block;
    width: 100%;
    padding-right: 0;
  }
}
.c-table tbody th, .p-products-detail-table table tbody th {
  width: 165px;
}

@media screen and (max-width: 767px) {
  .c-table tbody th, .p-products-detail-table table tbody th {
    width: 100%;
  }
}
.c-table th, .p-products-detail-table table th {
  border-top: 1px solid #D1D4DB;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .c-table th, .p-products-detail-table table th {
    padding-bottom: 8px;
  }
}
.c-table td, .p-products-detail-table table td {
  border-top: 1px solid #D1D4DB;
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-table td, .p-products-detail-table table td {
    border-top: none;
    padding-top: 0;
  }
}
.c-table thead:first-child tr:first-child th, .p-products-detail-table table thead:first-child tr:first-child th,
.c-table thead:first-child tr:first-child td,
.p-products-detail-table table thead:first-child tr:first-child td,
.c-table tbody:first-child tr:first-child th,
.p-products-detail-table table tbody:first-child tr:first-child th,
.c-table tbody:first-child tr:first-child td,
.p-products-detail-table table tbody:first-child tr:first-child td {
  padding-top: 0;
  border-top: none;
}

.c-table thead:last-child tr:last-child th, .p-products-detail-table table thead:last-child tr:last-child th,
.c-table thead:last-child tr:last-child td,
.p-products-detail-table table thead:last-child tr:last-child td,
.c-table tbody:last-child tr:last-child th,
.p-products-detail-table table tbody:last-child tr:last-child th,
.c-table tbody:last-child tr:last-child td,
.p-products-detail-table table tbody:last-child tr:last-child td {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .c-table thead:last-child tr:last-child td, .p-products-detail-table table thead:last-child tr:last-child td,
.c-table tbody:last-child tr:last-child td,
.p-products-detail-table table tbody:last-child tr:last-child td {
    padding-top: 8px;
  }
}
.c-table-sm {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-table-sm {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table-sm thead,
.c-table-sm tbody,
.c-table-sm tr {
    display: block;
    width: 100%;
  }
}
.c-table-sm th,
.c-table-sm td {
  padding: 5px 20px 5px 0;
  vertical-align: top;
  text-align: left;
}

@media screen and (max-width: 767px) {
  .c-table-sm th,
.c-table-sm td {
    display: block;
    width: 100%;
    padding-right: 0;
  }
}
.c-table-sm tbody th {
  width: 160px;
}

@media screen and (max-width: 767px) {
  .c-table-sm tbody th {
    width: 100%;
  }
}
.c-table-sm th {
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-table-sm th {
    padding-top: 0;
    padding-bottom: 6px;
  }
}
.c-table-sm td {
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-table-sm td {
    border-top: none;
    padding-top: 0;
    padding-bottom: 20px;
  }
}
.c-table-sm thead:first-child tr:first-child th,
.c-table-sm thead:first-child tr:first-child td,
.c-table-sm tbody:first-child tr:first-child th,
.c-table-sm tbody:first-child tr:first-child td {
  padding-top: 0;
}

.c-table-sm thead:last-child tr:last-child td,
.c-table-sm tbody:last-child tr:last-child td {
  padding-bottom: 0;
}

.c-table-form {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-table-form {
    display: block;
  }
}
@media screen and (max-width: 767px) {
  .c-table-form thead,
.c-table-form tbody,
.c-table-form tr {
    display: block;
    width: 100%;
  }
}
.c-table-form th,
.c-table-form td {
  padding-top: 20px;
  padding-bottom: 20px;
  vertical-align: baseline;
  font-weight: normal;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .c-table-form th,
.c-table-form td {
    padding-top: 16px;
    padding-bottom: 16px;
  }
}
.c-table-form tbody th {
  width: 195px;
}

@media screen and (max-width: 767px) {
  .c-table-form tbody th {
    width: 100%;
  }
}
.c-table-form th {
  border-top: 1px solid #D1D4DB;
  font-size: 1.6rem;
  line-height: 1.5;
}

@media screen and (max-width: 767px) {
  .c-table-form th {
    padding-bottom: 8px;
  }
}
.c-table-form td {
  border-top: 1px solid #D1D4DB;
  font-size: 1.6rem;
  line-height: 1.5;
  padding-right: 0;
}

@media screen and (max-width: 767px) {
  .c-table-form td {
    border-top: none;
    padding-top: 0;
  }
}
.c-table-form thead:first-child tr:first-child th,
.c-table-form thead:first-child tr:first-child td,
.c-table-form tbody:first-child tr:first-child th,
.c-table-form tbody:first-child tr:first-child td {
  padding-top: 0;
  border-top: none;
}

.c-table-form thead:last-child tr:last-child th,
.c-table-form thead:last-child tr:last-child td,
.c-table-form tbody:last-child tr:last-child th,
.c-table-form tbody:last-child tr:last-child td {
  padding-bottom: 0;
}

@media screen and (max-width: 767px) {
  .c-table-form thead:last-child tr:last-child td,
.c-table-form tbody:last-child tr:last-child td {
    padding-top: 8px;
  }
}
.c-table-form__merge-cell-top th,
.c-table-form__merge-cell-top td {
  border-top: none;
  padding-top: 0;
}

/**
 * List
**/
/* [list] テキストリスト
-----------------------------------------------*/
.c-list {
  margin: 0;
  padding: 0 0 0 1.3em;
}

.c-list > li {
  font-size: 1.6rem;
  line-height: 1.5;
  padding: 5px 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-list > li:first-of-type {
  padding-top: 0;
}

.c-list > li:last-of-type {
  padding-bottom: 0;
}

/* [list] インライン形式
-----------------------------------------------*/
.c-list-inline {
  display: flex;
  flex-wrap: wrap;
  margin: 0 0 -8px;
  padding: 0;
  list-style: none;
}

@media screen and (max-width: 767px) {
  .c-list-inline {
    margin-bottom: -4px;
  }
}
.c-list-inline > li {
  display: block;
  border-right: 1px solid #D9D9D9;
  margin-right: 8px;
  margin-bottom: 8px;
  padding-right: 8px;
  font-size: 1.2rem;
  line-height: 1.5;
  color: #005BAC;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-list-inline > li {
    margin-bottom: 4px;
  }
}
.c-list-inline--base-color > li {
  color: #333;
}

/**
 * Text
**/
/* [Text] レギュレーション フォントサイズ
-----------------------------------------------*/
.c-text-lg {
  margin: -4.5px 0;
  font-size: 1.8rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-md, .p-products-detail-feature p, .p-info-overview p, .p-info-content__inner p {
  margin: -4px 0;
  font-size: 1.6rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-sm {
  margin: -3.5px 0;
  font-size: 1.4rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-text-xs {
  margin: -3px 0;
  font-size: 1.2rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* [Text] エラー文言
-----------------------------------------------*/
.c-text-error {
  margin: -3px 0;
  font-size: 1.2rem;
  display: block;
  line-height: 1.5;
  color: #DE3535;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* [Text] label
-----------------------------------------------*/
.c-text-label {
  margin: 0;
  display: inline-flex;
  background: #005BAC;
  color: #fff;
  padding: 1px 6px 2px;
  align-items: center;
}

.c-text-label--radius {
  border-radius: 3px;
}

.c-text-label--blue-light {
  background-color: #22ABDD;
}

.c-text-label--circle {
  margin: 0;
  width: 154px;
  height: 154px;
  display: flex;
  background: linear-gradient(60deg, #4CBEE8, #1E429A);
  border-radius: 50%;
  position: relative;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 1;
  color: #005BAC;
  font-weight: 500;
}

@media screen and (max-width: 767px) {
  .c-text-label--circle {
    width: 139px;
    height: 139px;
  }
}
.c-text-label--circle::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  box-sizing: border-box;
  border-radius: 50%;
  padding: 1px;
  width: 100%;
  height: 100%;
  background: #fff;
  background-clip: content-box;
}

.c-text-label--required {
  background-color: #DE3535;
  padding: 0px 4px 1px;
  vertical-align: 1px;
  margin-left: 8px;
}

/* [Text] label-container
-----------------------------------------------*/
.c-text-label-container {
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
}

.c-text-label-container--sm {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
  margin: 0;
  padding: 0;
}

/* [Text] 横線
-----------------------------------------------*/
.c-text-left-line {
  display: inline-flex;
  color: #005BAC;
  position: relative;
  align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}

.c-text-left-line::before {
  content: "";
  width: 15px;
  height: 2px;
  background: #005BAC;
}

/* [Text] 行数制限
-----------------------------------------------*/
.c-text-trim-2 {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-text-trim-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.c-text-trim-4 {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .c-text-trim-4 {
    -webkit-line-clamp: 7;
  }
}
/**
 * Title
**/
.c-title-xll {
  margin: -0px 0;
  font-size: 4rem;
  line-height: 1.5;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-xll {
    margin: -0px 0;
    font-size: 2.4rem;
  }
}
.c-title-xl {
  margin: -8.5px 0;
  font-size: 3.4rem;
  line-height: 1.5;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-xl {
    margin: -6px 0;
    font-size: 2.4rem;
  }
}
.c-title-lg {
  margin: -9px 0;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-lg {
    margin: -7.5px 0;
    font-size: 3rem;
  }
}
.c-title-md, .p-products-detail-feature h3, .p-info-content__inner h3 {
  margin: -6.5px 0;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-md, .p-products-detail-feature h3, .p-info-content__inner h3 {
    margin: -5px 0;
    font-size: 2rem;
  }
}
.c-title-sm, .p-products-detail-feature > h4, .p-products-detail-feature > h5, .p-info-content__inner > h4, .p-info-content__inner > h5 {
  margin: -5px 0;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-sm, .p-products-detail-feature > h4, .p-products-detail-feature > h5, .p-info-content__inner > h4, .p-info-content__inner > h5 {
    margin: -4.5px 0;
    font-size: 1.8rem;
  }
}
.c-title-xs {
  margin: -4.5px 0;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-title-xss {
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .c-title-xss {
    margin: -3.5px 0;
    font-size: 1.4rem;
  }
}
/* [Text] テキスト横に線
-----------------------------------------------*/
.c-title-left-line {
  display: inline-flex;
  color: #fff;
  position: relative;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  padding-left: 50px;
}

@media screen and (max-width: 767px) {
  .c-title-left-line {
    padding-left: 40px;
  }
}
.c-title-left-line::before {
  content: "";
  position: absolute;
  width: 26px;
  height: 2px;
  top: 27px;
  left: 0;
  background: #fff;
}

@media screen and (max-width: 767px) {
  .c-title-left-line::before {
    top: 20px;
  }
}
/* [title] 下線 + グラデーション
-----------------------------------------------*/
.c-title-underline {
  position: relative;
  margin: 0;
  padding-bottom: 11px;
  border-bottom: 2px solid #D5DEE6;
}

@media screen and (max-width: 767px) {
  .c-title-underline {
    padding-bottom: 8.5px;
  }
}
.c-title-underline::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  bottom: -2px;
  left: 0;
  width: 241px;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .c-title-underline::before {
    width: 120px;
  }
}
/* [title] 下線 + 短い
-----------------------------------------------*/
.c-title-underline-short, .p-products-detail-feature > h4, .p-info-content__inner > h4 {
  position: relative;
  margin: -4.5px 0 0;
  padding-bottom: 5.5px;
}

.c-title-underline-short::before, .p-products-detail-feature > h4::before, .p-info-content__inner > h4::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: -2px;
  left: 0;
  width: 31px;
  height: 2px;
}

.c-title-underline-short--tight {
  position: relative;
  margin: 0;
  padding-bottom: 5.5px;
}

.c-title-underline-short--tight::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: -1px;
  left: 0;
  width: 35px;
  height: 1px;
}

/* [title] テキスト横に縦線
-----------------------------------------------*/
.c-title-left-vertical-line, .p-products-detail-feature h3, .p-info-content__inner h3 {
  position: relative;
  margin: 0;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .c-title-left-vertical-line, .p-products-detail-feature h3, .p-info-content__inner h3 {
    padding-left: 16px;
  }
}
.c-title-left-vertical-line::before, .p-products-detail-feature h3::before, .p-info-content__inner h3::before {
  content: "";
  position: absolute;
  background: #005BAC;
  top: 51%;
  left: 0;
  width: 2px;
  height: 95%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* [title] テキスト横に縦線 + gray
-----------------------------------------------*/
.c-title-left-vertical-line__gray, .p-products-detail-feature > h5, .p-info-content__inner > h5 {
  position: relative;
  margin: 0;
  padding-left: 20px;
}

@media screen and (max-width: 767px) {
  .c-title-left-vertical-line__gray, .p-products-detail-feature > h5, .p-info-content__inner > h5 {
    padding-left: 16px;
  }
}
.c-title-left-vertical-line__gray::before, .p-products-detail-feature > h5::before, .p-info-content__inner > h5::before {
  content: "";
  position: absolute;
  background: #D1D4DB;
  top: 51%;
  left: 0;
  width: 3px;
  height: 95%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* [title] テキスト上部に縦線
-----------------------------------------------*/
.c-title-vertical-line {
  position: relative;
  margin-top: 38px;
}

.c-title-vertical-line::before {
  content: "";
  position: absolute;
  background: #000;
  top: -15px;
  left: 50%;
  width: 1px;
  height: 26px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}

/* [title] テキスト下部に線（中央揃え）
-----------------------------------------------*/
.c-title-underline-center {
  position: relative;
  margin: 0;
  text-align: center;
  padding-bottom: 12px;
}

.c-title-underline-center::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: 2px;
  left: 50%;
  width: 64px;
  height: 1px;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

/**
 * Link
**/
/* [Link] テキストリンク
-----------------------------------------------*/
.c-link-text {
  cursor: pointer;
  color: #333;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}

.c-link-text > i {
  display: inline-flex;
  align-items: center;
  position: relative;
  margin-left: 3px;
  height: 1.5em;
}

.c-link-text > i svg {
  width: 1em;
  height: 1em;
}

.c-link-text:visited {
  color: #333;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-text:hover {
    opacity: 0.6;
    color: #333;
  }
}
.c-link-tel {
  color: #333;
}

.c-link-tel:visited {
  color: #005BAC;
}

@media (hover: hover) and (pointer: fine) {
  .c-link-tel:hover {
    color: #333;
  }
}
.c-link-text-underline, .p-products-detail-feature a, .p-info-content__inner a {
  text-decoration: underline;
  color: #005BAC;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}

.c-link-text-underline:visited, .p-products-detail-feature a:visited, .p-info-content__inner a:visited {
  color: #005BAC;
}

.c-link-text-underline[target=_blank], .p-info-content__inner a[target=_blank], .p-products-detail-feature a[target=_blank] {
  position: relative;
}

.c-link-text-underline[target=_blank]::after, .p-info-content__inner a[target=_blank]::after, .p-products-detail-feature a[target=_blank]::after {
  content: url(../img/shared/icon_blank.svg);
  position: relative;
  top: inherit;
  right: inherit;
  width: 24px;
  height: 24px;
  vertical-align: middle;
}

.c-link-tel {
  font-size: 2.3rem;
  font-weight: bold;
}

/**
 * p-info
 */
/* [p-info]
-----------------------------------------------*/
.p-info-title {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  position: relative;
  margin: 0;
  padding-bottom: 11px;
  border-bottom: 2px solid #D5DEE6;
}

@media screen and (max-width: 767px) {
  .p-info-title {
    padding-bottom: 8.5px;
  }
}
.p-info-title::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  bottom: -2px;
  left: 0;
  width: 180px;
  height: 2px;
}

@media screen and (max-width: 767px) {
  .p-info-title::before {
    width: 120px;
  }
}
.p-info-tag {
  display: flex;
  justify-content: space-between;
}

.p-info-overview p {
  margin-top: calc(30px - 5px);
}

@media screen and (max-width: 767px) {
  .p-info-overview p {
    margin-top: calc(30px - 4.5px);
  }
}
.p-info-content__inner span, .p-products-detail-feature span, .p-info-content__inner ul, .p-products-detail-feature ul, .p-info-content__inner ol, .p-products-detail-feature ol, .p-info-content__inner dl, .p-products-detail-feature dl, .p-info-content__inner figure, .p-products-detail-feature figure, .p-info-content__inner div, .p-products-detail-feature div, .p-info-content__inner iframe, .p-products-detail-feature iframe {
  margin: 30px 0 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner span, .p-products-detail-feature span, .p-info-content__inner ul, .p-products-detail-feature ul, .p-info-content__inner ol, .p-products-detail-feature ol, .p-info-content__inner dl, .p-products-detail-feature dl, .p-info-content__inner figure, .p-products-detail-feature figure, .p-info-content__inner div, .p-products-detail-feature div, .p-info-content__inner iframe, .p-products-detail-feature iframe {
    margin-top: 30px;
  }
}
.p-info-content__inner h3, .p-products-detail-feature h3 {
  margin-top: 30px;
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner h3, .p-products-detail-feature h3 {
    margin-top: 30px;
  }
}
.p-info-content__inner > h4, .p-products-detail-feature > h4 {
  margin-top: calc(30px - 5px);
  margin-bottom: 0;
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner > h4, .p-products-detail-feature > h4 {
    margin-top: calc(30px - 4.5px);
  }
}
.p-info-content__inner > h5, .p-products-detail-feature > h5 {
  margin-top: calc(30px - 4.5px);
}

@media screen and (max-width: 767px) {
  .p-info-content__inner > h5, .p-products-detail-feature > h5 {
    margin-top: calc(30px - 0px);
  }
}
.p-info-content__inner p, .p-products-detail-feature p {
  margin-top: calc(30px - 5px);
}

@media screen and (max-width: 767px) {
  .p-info-content__inner p, .p-products-detail-feature p {
    margin-top: calc(30px - 4.5px);
  }
}
.p-info-content__inner ul, .p-products-detail-feature ul, .p-info-content__inner ol, .p-products-detail-feature ol {
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
  padding: 20px 0 20px 1.5em;
}

.p-info-content__inner ul > li, .p-products-detail-feature ul > li, .p-info-content__inner ol > li, .p-products-detail-feature ol > li {
  line-height: 1.5;
  padding: 5px 0;
}

.p-info-content__inner ul > li::marker, .p-products-detail-feature ul > li::marker, .p-info-content__inner ol > li::marker, .p-products-detail-feature ol > li::marker {
  font-weight: bold;
}

.p-info-content__inner ul > li:first-of-type, .p-products-detail-feature ul > li:first-of-type, .p-info-content__inner ol > li:first-of-type, .p-products-detail-feature ol > li:first-of-type {
  padding-top: 0;
}

.p-info-content__inner ul > li:last-of-type, .p-products-detail-feature ul > li:last-of-type, .p-info-content__inner ol > li:last-of-type, .p-products-detail-feature ol > li:last-of-type {
  padding-bottom: 0;
}

.p-info-content__inner ul > li::marker, .p-products-detail-feature ul > li::marker {
  font-size: 1rem;
}

.p-info-content__inner dl, .p-products-detail-feature dl {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 8px;
  border-top: 1px solid #C4C4C4;
  border-bottom: 1px solid #C4C4C4;
  padding: 20px 0;
}

.p-info-content__inner dl dt, .p-products-detail-feature dl dt {
  font-weight: bold;
  font-size: 1.6rem;
  width: 20%;
  display: inline;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner dl dt, .p-products-detail-feature dl dt {
    width: 38%;
  }
}
.p-info-content__inner dl dd, .p-products-detail-feature dl dd {
  width: calc(80% - 10px);
  margin-left: 0;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner dl dd, .p-products-detail-feature dl dd {
    width: calc(62% - 10px);
  }
}
.p-info-content__inner .wp-block-group, .p-products-detail-feature .wp-block-group {
  padding: 20px;
  background-color: #fff;
  height: 100%;
}

.p-info-content__inner .wp-block-group > h2:first-of-type, .p-products-detail-feature .wp-block-group > h2:first-of-type, .p-info-content__inner .wp-block-group h3:first-of-type, .p-products-detail-feature .wp-block-group h3:first-of-type, .p-info-content__inner .wp-block-group h4:first-of-type, .p-products-detail-feature .wp-block-group h4:first-of-type, .p-info-content__inner .wp-block-group h5:first-of-type, .p-products-detail-feature .wp-block-group h5:first-of-type, .p-info-content__inner .wp-block-group p:first-of-type, .p-products-detail-feature .wp-block-group p:first-of-type, .p-info-content__inner .wp-block-group span:first-of-type, .p-products-detail-feature .wp-block-group span:first-of-type, .p-info-content__inner .wp-block-group ul:first-of-type, .p-products-detail-feature .wp-block-group ul:first-of-type, .p-info-content__inner .wp-block-group ol:first-of-type, .p-products-detail-feature .wp-block-group ol:first-of-type, .p-info-content__inner .wp-block-group dl:first-of-type, .p-products-detail-feature .wp-block-group dl:first-of-type, .p-info-content__inner .wp-block-group div:first-of-type, .p-products-detail-feature .wp-block-group div:first-of-type {
  margin-top: 0;
}

.p-info-content__inner .wp-block-group > h2:last-of-type, .p-products-detail-feature .wp-block-group > h2:last-of-type, .p-info-content__inner .wp-block-group h3:last-of-type, .p-products-detail-feature .wp-block-group h3:last-of-type, .p-info-content__inner .wp-block-group h4:last-of-type, .p-products-detail-feature .wp-block-group h4:last-of-type, .p-info-content__inner .wp-block-group h5:last-of-type, .p-products-detail-feature .wp-block-group h5:last-of-type, .p-info-content__inner .wp-block-group p:last-of-type, .p-products-detail-feature .wp-block-group p:last-of-type, .p-info-content__inner .wp-block-group span:last-of-type, .p-products-detail-feature .wp-block-group span:last-of-type, .p-info-content__inner .wp-block-group ul:last-of-type, .p-products-detail-feature .wp-block-group ul:last-of-type, .p-info-content__inner .wp-block-group ol:last-of-type, .p-products-detail-feature .wp-block-group ol:last-of-type, .p-info-content__inner .wp-block-group dl:last-of-type, .p-products-detail-feature .wp-block-group dl:last-of-type, .p-info-content__inner .wp-block-group div:last-of-type, .p-products-detail-feature .wp-block-group div:last-of-type {
  margin-bottom: 0;
}

.p-info-content__inner .wp-block-group h4, .p-products-detail-feature .wp-block-group h4 {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #005BAC;
  position: relative;
  padding-left: 12px;
  margin-bottom: 20px !important;
}

.p-info-content__inner .wp-block-group h4::before, .p-products-detail-feature .wp-block-group h4::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  top: -20px;
  left: 0;
  width: 2px;
  height: calc(100% + 20px);
}

.p-info-content__inner .wp-block-group h5, .p-products-detail-feature .wp-block-group h5 {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  position: relative;
  margin: 0;
  margin-bottom: 20px !important;
  padding-bottom: 5.5px;
}

.p-info-content__inner .wp-block-group h5::before, .p-products-detail-feature .wp-block-group h5::before {
  content: "";
  position: absolute;
  background: #005BAC;
  bottom: -1px;
  left: 0;
  width: 66px;
  height: 1px;
}

.p-info-content__inner .module__box, .p-products-detail-feature .module__box {
  padding: 20px;
}

.p-info-content__inner .module__box--gray, .p-products-detail-feature .module__box--gray {
  background: #E5E5E5;
}

.p-info-content__inner .module__box--yellow, .p-products-detail-feature .module__box--yellow {
  background: #F0F0CA;
}

.p-info-content__inner .module__box > h2:first-of-type, .p-products-detail-feature .module__box > h2:first-of-type, .p-info-content__inner .module__box h3:first-of-type, .p-products-detail-feature .module__box h3:first-of-type, .p-info-content__inner .module__box h4:first-of-type, .p-products-detail-feature .module__box h4:first-of-type, .p-info-content__inner .module__box h5:first-of-type, .p-products-detail-feature .module__box h5:first-of-type, .p-info-content__inner .module__box p:first-of-type, .p-products-detail-feature .module__box p:first-of-type, .p-info-content__inner .module__box span:first-of-type, .p-products-detail-feature .module__box span:first-of-type, .p-info-content__inner .module__box ul:first-of-type, .p-products-detail-feature .module__box ul:first-of-type, .p-info-content__inner .module__box ol:first-of-type, .p-products-detail-feature .module__box ol:first-of-type, .p-info-content__inner .module__box dl:first-of-type, .p-products-detail-feature .module__box dl:first-of-type, .p-info-content__inner .module__box div:first-of-type, .p-products-detail-feature .module__box div:first-of-type {
  margin-top: 0;
}

.p-info-content__inner .module__box > h2:last-of-type, .p-products-detail-feature .module__box > h2:last-of-type, .p-info-content__inner .module__box h3:last-of-type, .p-products-detail-feature .module__box h3:last-of-type, .p-info-content__inner .module__box h4:last-of-type, .p-products-detail-feature .module__box h4:last-of-type, .p-info-content__inner .module__box h5:last-of-type, .p-products-detail-feature .module__box h5:last-of-type, .p-info-content__inner .module__box p:last-of-type, .p-products-detail-feature .module__box p:last-of-type, .p-info-content__inner .module__box span:last-of-type, .p-products-detail-feature .module__box span:last-of-type, .p-info-content__inner .module__box ul:last-of-type, .p-products-detail-feature .module__box ul:last-of-type, .p-info-content__inner .module__box ol:last-of-type, .p-products-detail-feature .module__box ol:last-of-type, .p-info-content__inner .module__box dl:last-of-type, .p-products-detail-feature .module__box dl:last-of-type, .p-info-content__inner .module__box div:last-of-type, .p-products-detail-feature .module__box div:last-of-type {
  margin-bottom: 0;
}

.p-info-content__inner .module__box > h2 + *, .p-products-detail-feature .module__box > h2 + *, .p-info-content__inner .module__box h3 + *, .p-products-detail-feature .module__box h3 + *, .p-info-content__inner .module__box h4 + *, .p-products-detail-feature .module__box h4 + *, .p-info-content__inner .module__box h5 + *, .p-products-detail-feature .module__box h5 + *, .p-info-content__inner .module__box p + *, .p-products-detail-feature .module__box p + *, .p-info-content__inner .module__box span + *, .p-products-detail-feature .module__box span + *, .p-info-content__inner .module__box ul + *, .p-products-detail-feature .module__box ul + *, .p-info-content__inner .module__box ol + *, .p-products-detail-feature .module__box ol + *, .p-info-content__inner .module__box dl + *, .p-products-detail-feature .module__box dl + *, .p-info-content__inner .module__box div + *, .p-products-detail-feature .module__box div + * {
  margin-top: 12px !important;
}

.p-info-content__inner .module__box ul, .p-products-detail-feature .module__box ul, .p-info-content__inner .module__box ol, .p-products-detail-feature .module__box ol {
  border: none;
  padding-top: 0;
  padding-bottom: 0;
}

.p-info-content__inner .module__box p, .p-products-detail-feature .module__box p, .p-info-content__inner .module__box ul, .p-products-detail-feature .module__box ul, .p-info-content__inner .module__box ol, .p-products-detail-feature .module__box ol {
  font-size: 1.4rem;
}

.p-info-content__inner .wp-block-columns, .p-products-detail-feature .wp-block-columns {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner .wp-block-columns, .p-products-detail-feature .wp-block-columns {
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 30px;
    flex-wrap: wrap;
  }
}
.p-info-content__inner .wp-block-columns--row-3 .wp-block-column, .p-products-detail-feature .wp-block-columns--row-3 .wp-block-column {
  flex: unset;
  flex-basis: inherit !important;
  width: 33.333%;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner .wp-block-columns--row-3 .wp-block-column, .p-products-detail-feature .wp-block-columns--row-3 .wp-block-column {
    width: calc(50% - 10px);
  }
}
.p-info-content__inner .wp-block-column, .p-products-detail-feature .wp-block-column {
  margin: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner .wp-block-column, .p-products-detail-feature .wp-block-column {
    flex: auto;
  }
}
.p-info-content__inner .wp-block-column > *, .p-products-detail-feature .wp-block-column > * {
  margin: 0;
}

.p-info-content__inner .wp-block-column > p a, .p-products-detail-feature .wp-block-column > p a {
  position: relative;
  margin-top: 20px;
  background: #F2F3F4;
  position: relative;
  cursor: pointer;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 0 20px;
  min-height: 35px;
  width: 100%;
  font-size: 1.4rem;
  line-height: 1.5;
  border: none;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
  color: #333;
}

.p-info-content__inner .wp-block-column > p a:after, .p-products-detail-feature .wp-block-column > p a:after {
  position: absolute;
  top: 50%;
  right: 20px;
  content: "＞";
  font-size: 1.2rem;
  color: #005BAC;
  font-weight: bold;
  -webkit-transform: translateY(-50%) scaleX(0.9);
          transform: translateY(-50%) scaleX(0.9);
}

.p-info-content__inner .wp-block-file a::before, .p-products-detail-feature .wp-block-file a::before {
  content: "▶ ";
}

.p-info-content__inner table, .p-products-detail-feature table {
  width: 100%;
}

.p-info-content__inner table th, .p-products-detail-feature table th, .p-info-content__inner table td, .p-products-detail-feature table td {
  padding: calc(20px - 3.5px) 16px;
  text-align: left;
  border: 3px solid #F2F3F4;
  background: #fff;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .p-info-content__inner table th, .p-products-detail-feature table th, .p-info-content__inner table td, .p-products-detail-feature table td {
    padding: calc(16px - 3.5px) 16px;
  }
}
.p-info-content__inner table th, .p-products-detail-feature table th,
.p-info-content__inner table td:first-of-type,
.p-products-detail-feature table td:first-of-type {
  background: #E4EAF0;
  font-weight: bold;
}

.p-info-content__inner table th:first-of-type, .p-products-detail-feature table th:first-of-type,
.p-info-content__inner table td:first-of-type,
.p-products-detail-feature table td:first-of-type {
  width: 28%;
}

.p-info-content__inner table th:nth-of-type(2), .p-products-detail-feature table th:nth-of-type(2),
.p-info-content__inner table td:nth-of-type(2),
.p-products-detail-feature table td:nth-of-type(2),
.p-info-content__inner table th:nth-of-type(3),
.p-products-detail-feature table th:nth-of-type(3),
.p-info-content__inner table td:nth-of-type(3),
.p-products-detail-feature table td:nth-of-type(3) {
  width: 36%;
}

/**
 * p-products-detail
 */
/* [p-products-detail]
-----------------------------------------------*/
.p-products-detail-main {
  padding-bottom: 80px;
  background-image: url(../img/shared/dot.png);
  background-color: #F2F3F4;
}
@media screen and (max-width: 767px) {
  .p-products-detail-main {
    padding-bottom: 40px;
  }
}
.p-products-detail-main-container {
  display: flex;
  -webkit-column-gap: 95px;
     -moz-column-gap: 95px;
          column-gap: 95px;
  flex-wrap: wrap;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-products-detail-main-container {
    row-gap: 32px;
  }
}
.p-products-detail-main-container::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 105%;
  z-index: 0;
  left: 34%;
  background: url(../img/products/detail_bg@2x.png);
}
@media screen and (max-width: 767px) {
  .p-products-detail-main-container::before {
    content: none;
  }
}
.p-products-detail-main__box {
  width: calc(50% - 95px);
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-products-detail-main__box {
    width: 100%;
    order: 1;
  }
}
.p-products-detail-main__img {
  width: 50%;
  padding-right: 45px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-products-detail-main__img {
    width: 100%;
    padding-right: 0;
  }
  .p-products-detail-main__img::before {
    content: "";
    position: absolute;
    width: calc(100% + 40px);
    height: 100%;
    z-index: 0;
    left: -20px;
    background: url(../img/products/detail_bg@2x.png);
    background-size: cover;
  }
}
.p-products-detail-main__img img {
  position: relative;
}
.p-products-detail-label {
  padding-bottom: 20px;
  border-bottom: 1px solid #B5ADA5;
}
@media screen and (max-width: 767px) {
  .p-products-detail-label {
    padding-bottom: 30px;
  }
}
.p-products-detail-col-8 {
  width: 66.6%;
}
@media screen and (max-width: 767px) {
  .p-products-detail-col-8 {
    width: 100%;
  }
}
.p-products-detail-catalog {
  display: flex;
  align-items: center;
  -webkit-column-gap: 26px;
     -moz-column-gap: 26px;
          column-gap: 26px;
  flex-wrap: wrap;
  row-gap: 30px;
}
.p-products-detail-catalog__button {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-products-detail-catalog__button {
    flex: auto;
    width: 100%;
  }
}
.p-products-detail-catalog__img {
  max-width: 144px;
}
@media screen and (max-width: 767px) {
  .p-products-detail-catalog__img {
    width: 100%;
    text-align: center;
  }
}
.p-products-detail-catalog__img img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.p-products-detail-catalog__link {
  max-width: 100%;
  min-height: 48px;
  justify-content: flex-start;
  font-weight: 500;
  padding-top: 0;
  padding-bottom: 0;
  text-align: left;
}
.p-products-detail-catalog__link:hover {
  opacity: 0.6;
}
.p-products-detail-catalog .c-button .p-products-detail-catalog__icon {
  position: relative;
  -webkit-transform: none;
          transform: none;
  right: initial;
  padding-right: 10px;
}
.p-products-detail-images-gap {
  margin-top: 82px;
}
.p-products-detail-images-container {
  display: flex;
  flex-wrap: wrap;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  align-items: center;
  z-index: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-products-detail-images-container {
    row-gap: 16px;
    margin-top: 60px;
  }
}
.p-products-detail-images-container::before {
  content: "";
  position: absolute;
  background: #F2F3F4;
  width: 100%;
  height: calc(100% + 60px + 38px);
  z-index: 0;
  left: 18%;
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
}
@media screen and (max-width: 767px) {
  .p-products-detail-images-container::before {
    width: calc(100% - 80px);
    left: initial;
    right: 0;
    top: -30px;
    height: calc(100% + 30px + 30px);
  }
}
.p-products-detail-images__img {
  position: relative;
  width: calc((100% - 40px) / 3);
}
@media screen and (max-width: 767px) {
  .p-products-detail-images__img {
    width: 100%;
  }
}
.p-products-detail-images__img img {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.p-products-detail-video-gap {
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .p-products-detail-video-gap {
    margin-top: 90px;
  }
}
.p-products-detail-table table {
  border: none;
}
.p-products-detail-table table colgroup col {
  width: inherit;
}
.p-products-detail-table table tr {
  border: none;
}
.p-products-detail-table table tbody td:first-of-type {
  width: 165px;
}
@media screen and (max-width: 767px) {
  .p-products-detail-table table tbody td:first-of-type {
    width: 100%;
  }
}
.p-products-detail-table table td:first-of-type {
  border-top: 1px solid #D1D4DB;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .p-products-detail-table table td:first-of-type {
    padding-bottom: 8px;
  }
}
.p-products-detail-table table td {
  border-right: none;
  border-left: none;
  border-bottom: none;
}
.p-products-detail-table table tr:first-child td {
  padding-top: 0;
  border-top: none;
}
.p-products-detail-table table tr:last-child td {
  padding-bottom: 0;
}
@media screen and (max-width: 767px) {
  .p-products-detail-table table tr:last-child td {
    padding-top: 8px;
  }
}
/**
 * p-contact-page
 */
/* [p-contact-page]
-----------------------------------------------*/
.p-contact-page-link-tel {
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-contact-page-link-tel .c-icon {
  margin-right: 8px;
}
.p-contact-page-link-tel .c-icon svg {
  width: 32px;
  height: 32px;
}
.p-contact-page-link-tel .c-link-tel {
  font-size: 3.2rem;
}

/* CF7 カスタマイズ
-----------------------------------------------*/
#contactFormWrapper .wpcf7-response-output {
  display: none;
}

.wpcf7-response-output.c-text-error {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .wpcf7-response-output.c-text-error {
    margin-top: 30px;
  }
}

#contactForm td .c-text-error {
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  #contactForm td .c-text-error {
    margin-top: 8px;
  }
}
#contactForm .wpcf7-list-item {
  margin: 0;
}
#contactForm .wpcf7-form-control-wrap .wpcf7-not-valid-tip {
  display: none;
}

.wpcf7-form-control.c-button--gradient-blue {
  -webkit-text-fill-color: #fff;
}

.wpcf7-spinner {
  display: none;
}

/**
 * p-animation
 */
/* [p-animation]
-----------------------------------------------*/
.p-animation-observer {
  opacity: 0;
  -webkit-transform: translateY(40px);
          transform: translateY(40px);
  transition: 0.5s;
}
.p-animation-observer.is-show {
  opacity: 1;
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
}

/* p-company */
/* [p-company] ローカルナビ
-------------------------------------------- */
.p-company-nav {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-company-nav {
    flex-wrap: wrap;
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
    row-gap: 9px;
  }
}
.p-company-nav__item {
  display: flex;
  padding-right: 1px;
  padding-bottom: 1px;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .p-company-nav__item {
    width: calc((100% - 60px) / 4);
  }
}
@media screen and (max-width: 767px) {
  .p-company-nav__item {
    width: calc((100% - 9px) / 2);
  }
}
.p-company-nav__item:hover {
  opacity: 1;
}
.p-company-nav__item__image {
  display: flex;
  height: 90px;
  width: 100%;
  align-items: center;
  -webkit-filter: grayscale(74%);
          filter: grayscale(74%);
  transition: -webkit-filter 0.2s;
  transition: filter 0.2s;
  transition: filter 0.2s, -webkit-filter 0.2s;
}
.p-company-nav__item__image img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 100%;
}
.p-company-nav__item__box {
  position: absolute;
  display: flex;
  padding-left: 27px;
}
.p-company-nav__item__box::before {
  content: "";
  position: absolute;
  left: 0;
  width: 17px;
  height: 1px;
  top: 50%;
  background-color: #fff;
}
.p-company-nav__item.is-current {
  pointer-events: none;
}
.p-company-nav__item.is-current .p-company-nav__item__image {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
@media (hover: hover) and (pointer: fine) {
  .p-company-nav__item:hover .p-company-nav__item__image {
    -webkit-filter: grayscale(0%);
            filter: grayscale(0%);
  }
}
.p-company-statement-container {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 8px;
  flex-wrap: wrap;
  padding-top: 70px;
  padding-bottom: 60px;
  position: relative;
  border-bottom: 1px solid #B2BBCE;
}
@media screen and (max-width: 767px) {
  .p-company-statement-container {
    padding-top: 60px;
    padding-bottom: 40px;
  }
}
.p-company-statement-container::before {
  content: "";
  position: absolute;
  top: 12px;
  left: 50%;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  height: 40px;
  width: 1px;
}
@media screen and (max-width: 767px) {
  .p-company-statement-container::before {
    top: 10px;
  }
}
.p-company-statement-box {
  flex: 1;
  background-color: #E5F2F8;
}
@media screen and (max-width: 767px) {
  .p-company-statement-box {
    width: 100%;
    flex: auto;
  }
}
.p-company-message-container {
  display: flex;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 32px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-company-message__img {
    text-align: center;
    width: 100%;
  }
}
.p-company-message__txt {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-company-message__txt {
    flex: auto;
    width: 100%;
  }
}

/* p-philosophy */
/* [p-philosophy] ローカルナビ
-------------------------------------------- */
.p-philosophy-gap {
  margin-top: 90px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-philosophy-gap {
    margin-top: 40px;
  }
}
.p-philosophy-box {
  padding: 0 45px 20px;
}
@media screen and (max-width: 767px) {
  .p-philosophy-box {
    padding: 0;
    padding-bottom: 20px;
  }
}
.p-philosophy-promise-gap {
  margin-top: 20px;
}
.p-philosophy-promise-container {
  display: flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  row-gap: 60px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-philosophy-promise-container {
    row-gap: 40px;
  }
}
.p-philosophy-promise-box {
  width: calc((100% - 60px) / 2);
}
@media screen and (max-width: 767px) {
  .p-philosophy-promise-box {
    width: 100%;
  }
}
.p-philosophy-promise__title {
  font-size: 2.3rem;
  text-align: center;
  font-weight: normal;
}
.p-philosophy-vertical-line {
  position: relative;
  margin: 0;
  padding-left: 8px;
}
.p-philosophy-vertical-line::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  top: 50%;
  left: 0;
  width: 2px;
  height: 100%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .p-philosophy-img-bottom img {
    height: 110px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* p-access */
/* [p-access] ローカルナビ
-------------------------------------------- */
.p-access-nav {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.p-access-nav li {
  width: calc((100% - 20px) / 2);
  background: rgba(255, 255, 255, 0.2);
  min-height: 46px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-access-nav li {
    width: 100%;
  }
}
.p-access-nav li .c-icon {
  margin-left: 10px;
}
.p-access-nav li svg {
  width: 14px;
  height: 7px;
  vertical-align: 2px;
}
.p-access-nav a {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  text-align: center;
  border: 1px solid #B2BBCE;
  padding: 0 20px;
  margin: 0;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-access-nav a {
    padding: 8px 16px;
  }
}
@media screen and (max-width: 767px) {
  .p-access-nav {
    flex-wrap: wrap;
    -webkit-column-gap: 9px;
       -moz-column-gap: 9px;
            column-gap: 9px;
    row-gap: 9px;
  }
}
.p-access-nav-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-access-nav-sm {
  display: flex;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-access-nav-sm {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-access-nav-sm li {
    width: 50%;
  }
  .p-access-nav-sm li:nth-of-type(even) a {
    border: none;
  }
}
.p-access-nav-sm li .c-icon {
  margin-left: 10px;
}
.p-access-nav-sm li svg {
  width: 14px;
  height: 7px;
  vertical-align: 2px;
}
.p-access-nav-sm li:last-of-type a {
  border: none;
}
.p-access-nav-sm a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-right: 30px;
  border-right: 1px solid #B2BBCE;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-access-nav-sm a {
    padding-right: 0;
  }
}
.p-access-title {
  background-color: #E4EAF0;
  padding: 15px 30px;
  border-top: 2px solid #005BAC;
}
@media screen and (max-width: 767px) {
  .p-access-title {
    padding: 8px 20px;
  }
}
.p-access-box {
  display: flex;
  padding: 20px 30px;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  flex-wrap: wrap;
}
@media screen and (max-width: 767px) {
  .p-access-box {
    padding: 16px 20px;
    row-gap: 16px;
  }
}
.p-access-box .c-table th, .p-access-box .p-products-detail-table table th, .p-products-detail-table .p-access-box table th {
  width: 100px;
  font-weight: normal;
}
.p-access-box .c-table td, .p-access-box .p-products-detail-table table td, .p-products-detail-table .p-access-box table td {
  padding-right: 0;
}
@media screen and (max-width: 767px) {
  .p-access-box .c-table th, .p-access-box .p-products-detail-table table th, .p-products-detail-table .p-access-box table th, .p-access-box .c-table td, .p-access-box .p-products-detail-table table td, .p-products-detail-table .p-access-box table td {
    display: table-cell;
    padding: 16px 0;
    border: none;
  }
  .p-access-box .c-table td, .p-access-box .p-products-detail-table table td, .p-products-detail-table .p-access-box table td {
    width: auto;
  }
  .p-access-box .c-table tr, .p-access-box .p-products-detail-table table tr, .p-products-detail-table .p-access-box table tr {
    border-bottom: 1px solid #D5D5D5;
  }
  .p-access-box .c-table tr:last-of-type, .p-access-box .p-products-detail-table table tr:last-of-type, .p-products-detail-table .p-access-box table tr:last-of-type {
    padding-bottom: 16px;
    border: none;
  }
  .p-access-box .c-table tr:last-of-type td, .p-access-box .p-products-detail-table table tr:last-of-type td, .p-products-detail-table .p-access-box table tr:last-of-type td {
    padding-top: 16px !important;
  }
}
.p-access__iframe {
  width: 52%;
}
@media screen and (max-width: 767px) {
  .p-access__iframe {
    width: 100%;
    padding-top: 70%;
    position: relative;
  }
  .p-access__iframe iframe {
    position: absolute;
    top: 0;
    left: 0;
  }
}
.p-access__table {
  flex: 1;
}
.p-access-gap {
  padding-top: 40px;
}
@media screen and (max-width: 767px) {
  .p-access-gap {
    padding-top: 30px;
  }
}

/* p-research */
/* [p-research] ローカルナビ
-------------------------------------------- */
.p-research-menu-box {
  padding: 20px 30px 30px;
  background-color: #F2F3F4;
}
.p-research-menu-title {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #005BAC;
  position: relative;
  padding-left: 12px;
  margin: 0;
  margin-bottom: 20px !important;
}
.p-research-menu-title::before {
  content: "";
  position: absolute;
  background: linear-gradient(135deg, #4CBEE8, #1E429A);
  top: -20px;
  left: 0;
  width: 2px;
  height: calc(100% + 20px);
}
.p-research-menu-container {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  flex-wrap: wrap;
  row-gap: 20px;
}
.p-research-menu__img {
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .p-research-menu__img {
    max-width: 100%;
  }
}
.p-research-menu__img img {
  width: 100%;
}
.p-research-menu__txt {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .p-research-menu__txt {
    flex: auto;
    width: 100%;
  }
}

/**
 * p-strengths
 */
/* [p-strengths] 技術力セクション
-----------------------------------------------*/
.p-strengths-technology {
  background-repeat: no-repeat;
  background-size: 100% 472px;
  padding: 30px 0 0;
  min-height: 472px;
}
@media screen and (max-width: 767px) {
  .p-strengths-technology {
    background-size: auto 472px;
    padding: 30px 20px 0;
  }
}
.p-strengths-technology__image {
  width: 66%;
}
@media screen and (max-width: 767px) {
  .p-strengths-technology__image {
    margin: 30px auto 0;
    width: 320px;
  }
}
.p-strengths-technology > .l-container {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-strengths-technology > .l-container {
    display: block;
  }
}
.p-strengths-technology--1 {
  background-image: url(../img/strengths/bg_tec01.jpg);
  background-position: left top;
}
@media screen and (min-width: 768px) {
  .p-strengths-technology--1 .p-strengths-technology__image {
    margin-left: -14.7%;
  }
}
.p-strengths-technology--2 {
  background-image: url(../img/strengths/bg_tec02.jpg);
  background-position: right top;
}
@media screen and (min-width: 768px) {
  .p-strengths-technology--2 > .l-container {
    flex-direction: row-reverse;
  }
  .p-strengths-technology--2 .p-strengths-technology__image {
    margin-right: -15.7%;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths-technology--2 .p-strengths-technology__image {
    position: relative;
    left: -20px;
  }
}
.p-strengths-technology--3 {
  background-image: url(../img/strengths/bg_tec03.jpg);
  background-position: left top;
}
@media screen and (min-width: 768px) {
  .p-strengths-technology--3 .p-strengths-technology__image {
    margin-left: -14.7%;
  }
}
.p-strengths-technology__text-box {
  flex: 1;
}

/* [p-strengths] 開発・研修拠点
-----------------------------------------------*/
.p-strengths-development {
  position: relative;
}
.p-strengths-development .l-container {
  padding-top: 145px;
}
@media screen and (max-width: 1099px) {
  .p-strengths-development .l-container {
    padding-top: 11.328125%;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths-development .l-container {
    padding-top: 0;
  }
}
.p-strengths-development__text-box {
  position: relative;
  background: transparent linear-gradient(115deg, #4CBEE8 0%, #1E429A 100%) 0% 0% no-repeat padding-box;
  box-shadow: 16px 16px 28px rgba(0, 0, 0, 0.1607843137);
  margin-right: 8%;
  margin-left: auto;
  padding: 60px;
  min-width: 300px;
  width: 59.4%;
}
@media screen and (max-width: 767px) {
  .p-strengths-development__text-box {
    margin: -40px 20px 0 auto;
    padding: 40px;
    min-width: 300px;
  }
}
.p-strengths-development__image {
  position: relative;
  margin: 0 auto;
  max-width: 1280px;
}
.p-strengths-development__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 44.140625%;
  max-width: 565px;
}
@media screen and (max-width: 767px) {
  .p-strengths-development__image img {
    position: relative;
    width: 307px;
  }
}
.p-strengths-development--reverse .p-strengths-development__text-box {
  margin-right: auto;
  margin-left: 8%;
}
@media screen and (max-width: 767px) {
  .p-strengths-development--reverse .p-strengths-development__text-box {
    margin-left: 20px;
  }
}
@media screen and (max-width: 767px) {
  .p-strengths-development--reverse .p-strengths-development__image {
    text-align: right;
  }
}
.p-strengths-development--reverse .p-strengths-development__image img {
  right: 0;
  left: inherit;
}

/* [p-strengths] マップ（SPのみ）
-----------------------------------------------*/
.p-strengths-button-row {
  margin-right: -4px;
  margin-left: -4px;
  margin-bottom: -8px;
}
.p-strengths-button-row > div {
  padding-right: 4px;
  padding-left: 4px;
  margin-bottom: 8px;
}

.p-strengths-map-button-hover--red:hover {
  opacity: 1;
}
.p-strengths-map-button-hover--red:hover rect {
  fill: #B72020;
}
.p-strengths-map-button-hover--blue:hover {
  opacity: 1;
}
.p-strengths-map-button-hover--blue:hover rect {
  fill: #214E84;
}
.p-strengths-map-button-hover--dark-blue:hover {
  opacity: 1;
}
.p-strengths-map-button-hover--dark-blue:hover rect {
  fill: #113068;
}

.p-strengths-map-button {
  box-shadow: none;
  position: relative;
  max-width: inherit;
  background-color: #2E75AD;
  color: #fff;
  justify-content: flex-start;
  text-align: left;
}
.p-strengths-map-button--red {
  background-color: #DE3535;
}
.p-strengths-map-button--dark-blue {
  background-color: #1E4291;
}
.p-strengths-map-button .icon-num {
  margin-right: 8px;
  font-size: 1.8rem;
}
.p-strengths-map-button > .c-icon {
  position: absolute;
  top: 50%;
  right: 16px;
  vertical-align: middle;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.p-strengths-map-button > .c-icon svg {
  width: 20px;
  height: 20px;
}

/* [utility] js処理外のページ内リンク
-----------------------------------------------*/
.u-anchor-target {
  display: block;
  margin-top: calc(-1 * var(--header-H) + 1px);
  padding-top: calc(var(--header-H) - 1px);
}
@media screen and (max-width: 767px) {
  .u-anchor-target {
    margin-top: calc(-1 * (var(--header-H) + 46px));
    padding-top: calc(var(--header-H) + 46px);
  }
}

/* [utility] position
--------------------------------*/
.u-position--absolute {
  position: absolute;
}

/* [utility] text
--------------------------------*/
.u-weight--normal {
  font-weight: normal;
}

.u-weight--bold {
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.u-font--sans-serif {
  font-family: "NotoSansJP", "MyHiragino", "メイリオ", Meiryo, sans-serif;
}

.u-font--serif {
  font-family: "NotoSerifJP", "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}

/* [utility] color
--------------------------------*/
.u-color--key {
  color: #005BAC;
}

.u-color--default {
  color: #333;
}

.u-color--white {
  color: #fff;
}

.u-color--red {
  color: #DE3535;
}

/* [utility] fill color
--------------------------------*/
.u-fill--key {
  color: #005BAC;
}

.u-fill--sub {
  color: #333;
}

/* [utility] max-width
--------------------------------*/
.u-max-width--col6 {
  max-width: 432px;
  width: 100%;
}

.u-max-width--col2 {
  max-width: 277px;
  width: 100%;
}

/* [utility] border
--------------------------------*/
.u-border-top {
  border-top: 1px solid #005BAC;
}
.u-border-top--gray-light {
  border-top: 1px solid #F2F3F4;
}

@media screen and (max-width: 767px) {
  .u-border-top--sm-down {
    border-top: 1px solid #005BAC;
  }
}
/* [utility] 非表示関連
--------------------------------*/
@media screen and (min-width: 1100px) {
  .u-visible--pc-down {
    display: none !important;
  }
}

@media screen and (max-width: 1099px) {
  .u-visible--pc {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .u-visible--md-down {
    display: none !important;
  }
}

@media screen and (max-width: 1023px) {
  .u-visible--md {
    display: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-visible--sm {
    display: none !important;
  }
}

@media screen and (min-width: 768px) {
  .u-visible--sm-down {
    display: none !important;
  }
}

/* [utility] display
--------------------------------*/
.u-display--b {
  display: block;
}

.u-display--ib {
  display: inline-block;
}

@media screen and (min-width: 768px) {
  .u-display-sm--ib {
    display: inline-block;
  }
}

/* [utility] margin
--------------------------------*/
.u-mt--none {
  margin-top: 0 !important;
}

.u-mb--none {
  margin-bottom: 0 !important;
}

.u-ml--none {
  margin-left: 0 !important;
}

.u-mr--none {
  margin-right: 0 !important;
}

.u-mt--auto {
  margin-top: auto !important;
}

.u-ml--auto {
  margin-left: auto !important;
}

.u-mr--auto {
  margin-right: auto !important;
}

.u-mt--xss {
  margin-top: 8px !important;
}

.u-mb--xss {
  margin-bottom: 8px !important;
}

.u-ml--xss {
  margin-left: 8px !important;
}

.u-mr--xss {
  margin-right: 8px !important;
}

.u-mt--xs {
  margin-top: 10px !important;
}

.u-mb--xs {
  margin-bottom: 10px !important;
}

.u-ml--xs {
  margin-left: 10px !important;
}

.u-mr--xs {
  margin-right: 10px !important;
}

.u-mt--sm {
  margin-top: 20px !important;
}

.u-mb--sm {
  margin-bottom: 20px !important;
}

.u-ml--sm {
  margin-left: 20px !important;
}

.u-mr--sm {
  margin-right: 20px !important;
}

.u-mt--md {
  margin-top: 40px !important;
}

.u-mb--md {
  margin-bottom: 40px !important;
}

.u-ml--md {
  margin-left: 40px !important;
}

.u-mr--md {
  margin-right: 40px !important;
}

.u-mt--lg {
  margin-top: 60px !important;
}

.u-mb--lg {
  margin-bottom: 60px !important;
}

.u-ml--lg {
  margin-left: 60px !important;
}

.u-mr--lg {
  margin-right: 60px !important;
}

.u-mt--xl {
  margin-top: 80px !important;
}

.u-mb--xl {
  margin-bottom: 80px !important;
}

.u-ml--xl {
  margin-left: 80px !important;
}

.u-mr--xl {
  margin-right: 80px !important;
}

.u-mt--xll {
  margin-top: 120px !important;
}

.u-mb--xll {
  margin-bottom: 120px !important;
}

.u-ml--xll {
  margin-left: 120px !important;
}

.u-mr--xll {
  margin-right: 120px !important;
}

@media screen and (max-width: 1023px) {
  .u-mt-md-down--none {
    margin-top: 0 !important;
  }
  .u-mb-md-down--none {
    margin-bottom: 0 !important;
  }
  .u-ml-md-down--none {
    margin-left: 0 !important;
  }
  .u-mr-md-down--none {
    margin-right: 0 !important;
  }
  .u-mt-md-down--xss {
    margin-top: 8px !important;
  }
  .u-mb-md-down--xss {
    margin-bottom: 8px !important;
  }
  .u-ml-md-down--xss {
    margin-left: 8px !important;
  }
  .u-mr-md-down--xss {
    margin-right: 8px !important;
  }
  .u-mt-md-down--xs {
    margin-top: 10px !important;
  }
  .u-mb-md-down--xs {
    margin-bottom: 10px !important;
  }
  .u-ml-md-down--xs {
    margin-left: 10px !important;
  }
  .u-mr-md-down--xs {
    margin-right: 10px !important;
  }
  .u-mt-md-down--sm {
    margin-top: 20px !important;
  }
  .u-mb-md-down--sm {
    margin-bottom: 20px !important;
  }
  .u-ml-md-down--sm {
    margin-left: 20px !important;
  }
  .u-mr-md-down--sm {
    margin-right: 20px !important;
  }
  .u-mt-md-down--md {
    margin-top: 40px !important;
  }
  .u-mb-md-down--md {
    margin-bottom: 40px !important;
  }
  .u-ml-md-down--md {
    margin-left: 40px !important;
  }
  .u-mr-md-down--md {
    margin-right: 40px !important;
  }
  .u-mt-md-down--lg {
    margin-top: 60px !important;
  }
  .u-mb-md-down--lg {
    margin-bottom: 60px !important;
  }
  .u-ml-md-down--lg {
    margin-left: 60px !important;
  }
  .u-mr-md-down--lg {
    margin-right: 60px !important;
  }
  .u-mt-md-down--xl {
    margin-top: 80px !important;
  }
  .u-mb-md-down--xl {
    margin-bottom: 80px !important;
  }
  .u-ml-md-down--xl {
    margin-left: 80px !important;
  }
  .u-mr-md-down--xl {
    margin-right: 80px !important;
  }
  .u-mt-md-down--xll {
    margin-top: 120px !important;
  }
  .u-mb-md-down--xll {
    margin-bottom: 120px !important;
  }
  .u-ml-md-down--xll {
    margin-left: 120px !important;
  }
  .u-mr-md-down--xll {
    margin-right: 120px !important;
  }
}
@media screen and (min-width: 1024px) {
  .u-mt-md--none {
    margin-top: 0 !important;
  }
  .u-mb-md--none {
    margin-bottom: 0 !important;
  }
  .u-ml-md--none {
    margin-left: 0 !important;
  }
  .u-mr-md--none {
    margin-right: 0 !important;
  }
  .u-mt-md--xss {
    margin-top: 8px !important;
  }
  .u-mb-md--xss {
    margin-bottom: 8px !important;
  }
  .u-ml-md--xss {
    margin-left: 8px !important;
  }
  .u-mr-md--xss {
    margin-right: 8px !important;
  }
  .u-mt-md--xs {
    margin-top: 10px !important;
  }
  .u-mb-md--xs {
    margin-bottom: 10px !important;
  }
  .u-ml-md--xs {
    margin-left: 10px !important;
  }
  .u-mr-md--xs {
    margin-right: 10px !important;
  }
  .u-mt-md--sm {
    margin-top: 20px !important;
  }
  .u-mb-md--sm {
    margin-bottom: 20px !important;
  }
  .u-ml-md--sm {
    margin-left: 20px !important;
  }
  .u-mr-md--sm {
    margin-right: 20px !important;
  }
  .u-mt-md--md {
    margin-top: 40px !important;
  }
  .u-mb-md--md {
    margin-bottom: 40px !important;
  }
  .u-ml-md--md {
    margin-left: 40px !important;
  }
  .u-mr-md--md {
    margin-right: 40px !important;
  }
  .u-mt-md--lg {
    margin-top: 60px !important;
  }
  .u-mb-md--lg {
    margin-bottom: 60px !important;
  }
  .u-ml-md--lg {
    margin-left: 60px !important;
  }
  .u-mr-md--lg {
    margin-right: 60px !important;
  }
  .u-mt-md--xl {
    margin-top: 80px !important;
  }
  .u-mb-md--xl {
    margin-bottom: 80px !important;
  }
  .u-ml-md--xl {
    margin-left: 80px !important;
  }
  .u-mr-md--xl {
    margin-right: 80px !important;
  }
  .u-mt-md--xll {
    margin-top: 120px !important;
  }
  .u-mb-md--xll {
    margin-bottom: 120px !important;
  }
  .u-ml-md--xll {
    margin-left: 120px !important;
  }
  .u-mr-md--xll {
    margin-right: 120px !important;
  }
}
@media screen and (min-width: 1100px) {
  .u-mt-lg--none {
    margin-top: 0 !important;
  }
  .u-mb-lg--none {
    margin-bottom: 0 !important;
  }
  .u-ml-lg--none {
    margin-left: 0 !important;
  }
  .u-mr-lg--none {
    margin-right: 0 !important;
  }
  .u-mt-lg--xss {
    margin-top: 8px !important;
  }
  .u-mb-lg--xss {
    margin-bottom: 8px !important;
  }
  .u-ml-lg--xss {
    margin-left: 8px !important;
  }
  .u-mr-lg--xss {
    margin-right: 8px !important;
  }
  .u-mt-lg--xs {
    margin-top: 10px !important;
  }
  .u-mb-lg--xs {
    margin-bottom: 10px !important;
  }
  .u-ml-lg--xs {
    margin-left: 10px !important;
  }
  .u-mr-lg--xs {
    margin-right: 10px !important;
  }
  .u-mt-lg--sm {
    margin-top: 20px !important;
  }
  .u-mb-lg--sm {
    margin-bottom: 20px !important;
  }
  .u-ml-lg--sm {
    margin-left: 20px !important;
  }
  .u-mr-lg--sm {
    margin-right: 20px !important;
  }
  .u-mt-lg--md {
    margin-top: 40px !important;
  }
  .u-mb-lg--md {
    margin-bottom: 40px !important;
  }
  .u-ml-lg--md {
    margin-left: 40px !important;
  }
  .u-mr-lg--md {
    margin-right: 40px !important;
  }
  .u-mt-lg--lg {
    margin-top: 60px !important;
  }
  .u-mb-lg--lg {
    margin-bottom: 60px !important;
  }
  .u-ml-lg--lg {
    margin-left: 60px !important;
  }
  .u-mr-lg--lg {
    margin-right: 60px !important;
  }
  .u-mt-lg--xl {
    margin-top: 80px !important;
  }
  .u-mb-lg--xl {
    margin-bottom: 80px !important;
  }
  .u-ml-lg--xl {
    margin-left: 80px !important;
  }
  .u-mr-lg--xl {
    margin-right: 80px !important;
  }
  .u-mt-lg--xll {
    margin-top: 120px !important;
  }
  .u-mb-lg--xll {
    margin-bottom: 120px !important;
  }
  .u-ml-lg--xll {
    margin-left: 120px !important;
  }
  .u-mr-lg--xll {
    margin-right: 120px !important;
  }
}
@media screen and (max-width: 1099px) {
  .u-mt-lg-down--none {
    margin-top: 0 !important;
  }
  .u-mb-lg-down--none {
    margin-bottom: 0 !important;
  }
  .u-ml-lg-down--none {
    margin-left: 0 !important;
  }
  .u-mr-lg-down--none {
    margin-right: 0 !important;
  }
  .u-mt-lg-down--xss {
    margin-top: 8px !important;
  }
  .u-mb-lg-down--xss {
    margin-bottom: 8px !important;
  }
  .u-ml-lg-down--xss {
    margin-left: 8px !important;
  }
  .u-mr-lg-down--xss {
    margin-right: 8px !important;
  }
  .u-mt-lg-down--xs {
    margin-top: 10px !important;
  }
  .u-mb-lg-down--xs {
    margin-bottom: 10px !important;
  }
  .u-ml-lg-down--xs {
    margin-left: 10px !important;
  }
  .u-mr-lg-down--xs {
    margin-right: 10px !important;
  }
  .u-mt-lg-down--sm {
    margin-top: 20px !important;
  }
  .u-mb-lg-down--sm {
    margin-bottom: 20px !important;
  }
  .u-ml-lg-down--sm {
    margin-left: 20px !important;
  }
  .u-mr-lg-down--sm {
    margin-right: 20px !important;
  }
  .u-mt-lg-down--md {
    margin-top: 40px !important;
  }
  .u-mb-lg-down--md {
    margin-bottom: 40px !important;
  }
  .u-ml-lg-down--md {
    margin-left: 40px !important;
  }
  .u-mr-lg-down--md {
    margin-right: 40px !important;
  }
  .u-mt-lg-down--lg {
    margin-top: 60px !important;
  }
  .u-mb-lg-down--lg {
    margin-bottom: 60px !important;
  }
  .u-ml-lg-down--lg {
    margin-left: 60px !important;
  }
  .u-mr-lg-down--lg {
    margin-right: 60px !important;
  }
  .u-mt-lg-down--xl {
    margin-top: 80px !important;
  }
  .u-mb-lg-down--xl {
    margin-bottom: 80px !important;
  }
  .u-ml-lg-down--xl {
    margin-left: 80px !important;
  }
  .u-mr-lg-down--xl {
    margin-right: 80px !important;
  }
  .u-mt-lg-down--xll {
    margin-top: 120px !important;
  }
  .u-mb-lg-down--xll {
    margin-bottom: 120px !important;
  }
  .u-ml-lg-down--xll {
    margin-left: 120px !important;
  }
  .u-mr-lg-down--xll {
    margin-right: 120px !important;
  }
}
@media screen and (min-width: 768px) {
  .u-mt-sm--none {
    margin-top: 0 !important;
  }
  .u-mb-sm--none {
    margin-bottom: 0 !important;
  }
  .u-ml-sm--none {
    margin-left: 0 !important;
  }
  .u-mr-sm--none {
    margin-right: 0 !important;
  }
  .u-mt-sm--xss {
    margin-top: 8px !important;
  }
  .u-mb-sm--xss {
    margin-bottom: 8px !important;
  }
  .u-ml-sm--xss {
    margin-left: 8px !important;
  }
  .u-mr-sm--xss {
    margin-right: 8px !important;
  }
  .u-mt-sm--xs {
    margin-top: 10px !important;
  }
  .u-mb-sm--xs {
    margin-bottom: 10px !important;
  }
  .u-ml-sm--xs {
    margin-left: 10px !important;
  }
  .u-mr-sm--xs {
    margin-right: 10px !important;
  }
  .u-mt-sm--sm {
    margin-top: 20px !important;
  }
  .u-mb-sm--sm {
    margin-bottom: 20px !important;
  }
  .u-ml-sm--sm {
    margin-left: 20px !important;
  }
  .u-mr-sm--sm {
    margin-right: 20px !important;
  }
  .u-mt-sm--md {
    margin-top: 40px !important;
  }
  .u-mb-sm--md {
    margin-bottom: 40px !important;
  }
  .u-ml-sm--md {
    margin-left: 40px !important;
  }
  .u-mr-sm--md {
    margin-right: 40px !important;
  }
  .u-mt-sm--lg {
    margin-top: 60px !important;
  }
  .u-mb-sm--lg {
    margin-bottom: 60px !important;
  }
  .u-ml-sm--lg {
    margin-left: 60px !important;
  }
  .u-mr-sm--lg {
    margin-right: 60px !important;
  }
  .u-mt-sm--xl {
    margin-top: 80px !important;
  }
  .u-mb-sm--xl {
    margin-bottom: 80px !important;
  }
  .u-ml-sm--xl {
    margin-left: 80px !important;
  }
  .u-mr-sm--xl {
    margin-right: 80px !important;
  }
  .u-mt-sm--xll {
    margin-top: 120px !important;
  }
  .u-mb-sm--xll {
    margin-bottom: 120px !important;
  }
  .u-ml-sm--xll {
    margin-left: 120px !important;
  }
  .u-mr-sm--xll {
    margin-right: 120px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-mt-sm-down--none {
    margin-top: 0 !important;
  }
  .u-mb-sm-down--none {
    margin-bottom: 0 !important;
  }
  .u-ml-sm-down--none {
    margin-left: 0 !important;
  }
  .u-mr-sm-down--none {
    margin-right: 0 !important;
  }
  .u-mt-sm-down--xss {
    margin-top: 8px !important;
  }
  .u-mb-sm-down--xss {
    margin-bottom: 8px !important;
  }
  .u-ml-sm-down--xss {
    margin-left: 8px !important;
  }
  .u-mr-sm-down--xss {
    margin-right: 8px !important;
  }
  .u-mt-sm-down--xs {
    margin-top: 10px !important;
  }
  .u-mb-sm-down--xs {
    margin-bottom: 10px !important;
  }
  .u-ml-sm-down--xs {
    margin-left: 10px !important;
  }
  .u-mr-sm-down--xs {
    margin-right: 10px !important;
  }
  .u-mt-sm-down--sm {
    margin-top: 20px !important;
  }
  .u-mb-sm-down--sm {
    margin-bottom: 20px !important;
  }
  .u-ml-sm-down--sm {
    margin-left: 20px !important;
  }
  .u-mr-sm-down--sm {
    margin-right: 20px !important;
  }
  .u-mt-sm-down--md {
    margin-top: 40px !important;
  }
  .u-mb-sm-down--md {
    margin-bottom: 40px !important;
  }
  .u-ml-sm-down--md {
    margin-left: 40px !important;
  }
  .u-mr-sm-down--md {
    margin-right: 40px !important;
  }
  .u-mt-sm-down--md-2 {
    margin-top: 30px !important;
  }
  .u-mb-sm-down--md-2 {
    margin-bottom: 30px !important;
  }
  .u-ml-sm-down--md-2 {
    margin-left: 30px !important;
  }
  .u-mr-sm-down--md-2 {
    margin-right: 30px !important;
  }
  .u-mt-sm-down--lg {
    margin-top: 60px !important;
  }
  .u-mb-sm-down--lg {
    margin-bottom: 60px !important;
  }
  .u-ml-sm-down--lg {
    margin-left: 60px !important;
  }
  .u-mr-sm-down--lg {
    margin-right: 60px !important;
  }
  .u-mt-sm-down--xl {
    margin-top: 80px !important;
  }
  .u-mb-sm-down--xl {
    margin-bottom: 80px !important;
  }
  .u-ml-sm-down--xl {
    margin-left: 80px !important;
  }
  .u-mr-sm-down--xl {
    margin-right: 80px !important;
  }
  .u-mt-sm-down--xll {
    margin-top: 120px !important;
  }
  .u-mb-sm-down--xll {
    margin-bottom: 120px !important;
  }
  .u-ml-sm-down--xll {
    margin-left: 120px !important;
  }
  .u-mr-sm-down--xll {
    margin-right: 120px !important;
  }
}
/* [utility] padding
--------------------------------*/
.u-pt--none {
  padding-top: 0 !important;
}

.u-pb--none {
  padding-bottom: 0 !important;
}

.u-pl--none {
  padding-left: 0 !important;
}

.u-pr--none {
  padding-right: 0 !important;
}

.u-pt--xss {
  padding-top: 8px !important;
}

.u-pb--xss {
  padding-bottom: 8px !important;
}

.u-pl--xss {
  padding-left: 8px !important;
}

.u-pr--xss {
  padding-right: 8px !important;
}

.u-pt--xs {
  padding-top: 10px !important;
}

.u-pb--xs {
  padding-bottom: 10px !important;
}

.u-pl--xs {
  padding-left: 10px !important;
}

.u-pr--xs {
  padding-right: 10px !important;
}

.u-pt--sm {
  padding-top: 20px !important;
}

.u-pb--sm {
  padding-bottom: 20px !important;
}

.u-pl--sm {
  padding-left: 20px !important;
}

.u-pr--sm {
  padding-right: 20px !important;
}

.u-pt--md {
  padding-top: 40px !important;
}

.u-pb--md {
  padding-bottom: 40px !important;
}

.u-pl--md {
  padding-left: 40px !important;
}

.u-pr--md {
  padding-right: 40px !important;
}

.u-pt--lg {
  padding-top: 60px !important;
}

.u-pb--lg {
  padding-bottom: 60px !important;
}

.u-pl--lg {
  padding-left: 60px !important;
}

.u-pr--lg {
  padding-right: 60px !important;
}

.u-pt--xl {
  padding-top: 80px !important;
}

.u-pb--xl {
  padding-bottom: 80px !important;
}

.u-pl--xl {
  padding-left: 80px !important;
}

.u-pr--xl {
  padding-right: 80px !important;
}

.u-pt--xll {
  padding-top: 120px !important;
}

.u-pb--xll {
  padding-bottom: 120px !important;
}

.u-pl--xll {
  padding-left: 120px !important;
}

.u-pr--xll {
  padding-right: 120px !important;
}

@media (min-width: 992px) {
  .u-pt-lg--none {
    padding-top: 0 !important;
  }
  .u-pb-lg--none {
    padding-bottom: 0 !important;
  }
  .u-pl-lg--none {
    padding-left: 0 !important;
  }
  .u-pr-lg--none {
    padding-right: 0 !important;
  }
  .u-pt-lg--xss {
    padding-top: 8px !important;
  }
  .u-pb-lg--xss {
    padding-bottom: 8px !important;
  }
  .u-pl-lg--xss {
    padding-left: 8px !important;
  }
  .u-pr-lg--xss {
    padding-right: 8px !important;
  }
  .u-pt-lg--xs {
    padding-top: 10px !important;
  }
  .u-pb-lg--xs {
    padding-bottom: 10px !important;
  }
  .u-pl-lg--xs {
    padding-left: 10px !important;
  }
  .u-pr-lg--xs {
    padding-right: 10px !important;
  }
  .u-pt-lg--sm {
    padding-top: 20px !important;
  }
  .u-pb-lg--sm {
    padding-bottom: 20px !important;
  }
  .u-pl-lg--sm {
    padding-left: 20px !important;
  }
  .u-pr-lg--sm {
    padding-right: 20px !important;
  }
  .u-pt-lg--md {
    padding-top: 40px !important;
  }
  .u-pb-lg--md {
    padding-bottom: 40px !important;
  }
  .u-pl-lg--md {
    padding-left: 40px !important;
  }
  .u-pr-lg--md {
    padding-right: 40px !important;
  }
  .u-pt-lg--lg {
    padding-top: 60px !important;
  }
  .u-pb-lg--lg {
    padding-bottom: 60px !important;
  }
  .u-pl-lg--lg {
    padding-left: 60px !important;
  }
  .u-pr-lg--lg {
    padding-right: 60px !important;
  }
  .u-pt-lg--xl {
    padding-top: 80px !important;
  }
  .u-pb-lg--xl {
    padding-bottom: 80px !important;
  }
  .u-pl-lg--xl {
    padding-left: 80px !important;
  }
  .u-pr-lg--xl {
    padding-right: 80px !important;
  }
  .u-pt-lg--xll {
    padding-top: 120px !important;
  }
  .u-pb-lg--xll {
    padding-bottom: 120px !important;
  }
  .u-pl-lg--xll {
    padding-left: 120px !important;
  }
  .u-pr-lg--xll {
    padding-right: 120px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pt-sm-down--none {
    padding-top: 0 !important;
  }
  .u-pb-sm-down--none {
    padding-bottom: 0 !important;
  }
  .u-pl-sm-down--none {
    padding-left: 0 !important;
  }
  .u-pr-sm-down--none {
    padding-right: 0 !important;
  }
  .u-pt-sm-down--xss {
    padding-top: 8px !important;
  }
  .u-pb-sm-down--xss {
    padding-bottom: 8px !important;
  }
  .u-pl-sm-down--xss {
    padding-left: 8px !important;
  }
  .u-pr-sm-down--xss {
    padding-right: 8px !important;
  }
  .u-pt-sm-down--xs {
    padding-top: 10px !important;
  }
  .u-pb-sm-down--xs {
    padding-bottom: 10px !important;
  }
  .u-pl-sm-down--xs {
    padding-left: 10px !important;
  }
  .u-pr-sm-down--xs {
    padding-right: 10px !important;
  }
  .u-pt-sm-down--sm {
    padding-top: 20px !important;
  }
  .u-pb-sm-down--sm {
    padding-bottom: 20px !important;
  }
  .u-pl-sm-down--sm {
    padding-left: 20px !important;
  }
  .u-pr-sm-down--sm {
    padding-right: 20px !important;
  }
  .u-pt-sm-down--md {
    padding-top: 40px !important;
  }
  .u-pb-sm-down--md {
    padding-bottom: 40px !important;
  }
  .u-pl-sm-down--md {
    padding-left: 40px !important;
  }
  .u-pr-sm-down--md {
    padding-right: 40px !important;
  }
  .u-pt-sm-down--lg {
    padding-top: 60px !important;
  }
  .u-pb-sm-down--lg {
    padding-bottom: 60px !important;
  }
  .u-pl-sm-down--lg {
    padding-left: 60px !important;
  }
  .u-pr-sm-down--lg {
    padding-right: 60px !important;
  }
  .u-pt-sm-down--xl {
    padding-top: 80px !important;
  }
  .u-pb-sm-down--xl {
    padding-bottom: 80px !important;
  }
  .u-pl-sm-down--xl {
    padding-left: 80px !important;
  }
  .u-pr-sm-down--xl {
    padding-right: 80px !important;
  }
  .u-pt-sm-down--xll {
    padding-top: 120px !important;
  }
  .u-pb-sm-down--xll {
    padding-bottom: 120px !important;
  }
  .u-pl-sm-down--xll {
    padding-left: 120px !important;
  }
  .u-pr-sm-down--xll {
    padding-right: 120px !important;
  }
}
/* [utility] font
--------------------------------*/
.u-align--left {
  text-align: left !important;
}

.u-align--center {
  text-align: center !important;
}

.u-align--right {
  text-align: right !important;
}

.u-align--justify {
  text-align: justify !important;
}

@media screen and (min-width: 1100px) {
  .u-align-lg--left {
    text-align: left !important;
  }
  .u-align-lg--center {
    text-align: center !important;
  }
  .u-align-lg--right {
    text-align: right !important;
  }
  .u-align-lg--justify {
    text-align: justify !important;
  }
}
@media screen and (min-width: 768px) {
  .u-align-sm--left {
    text-align: left !important;
  }
  .u-align-sm--center {
    text-align: center !important;
  }
  .u-align-sm--right {
    text-align: right !important;
  }
  .u-align-sm--justify {
    text-align: justify !important;
  }
}
@media screen and (max-width: 767px) {
  .u-align-sm-down--left {
    text-align: left !important;
  }
  .u-align-sm-down--center {
    text-align: center !important;
  }
  .u-align-sm-down--right {
    text-align: right !important;
  }
  .u-align-sm-down--justify {
    text-align: justify !important;
  }
}
.u-align--super {
  vertical-align: super;
}

/* [utility] サイズ指定など
--------------------------------*/
.u-width--12 {
  width: 100%;
}

.u-width--11 {
  width: 91.66666667%;
}

.u-width--10 {
  width: 83.33333333%;
}

.u-width--9 {
  width: 75%;
}

.u-width--8 {
  width: 66.66666667%;
}

.u-width--7 {
  width: 58.33333333%;
}

.u-width--6 {
  width: 50%;
}

.u-width--5 {
  width: 41.66666667%;
}

.u-width--4 {
  width: 33.33333333%;
}

.u-width--3 {
  width: 25%;
}

.u-width--2 {
  width: 16.66666667%;
}

.u-width--1 {
  width: 8.33333333%;
}

.u-width--sm {
  width: 110px !important;
}

.u-width--xs {
  width: 75px !important;
}

@media screen and (min-width: 1100px) {
  .u-width-lg--12 {
    width: 100%;
  }
  .u-width-lg--11 {
    width: 91.66666667%;
  }
  .u-width-lg--10 {
    width: 83.33333333%;
  }
  .u-width-lg--9 {
    width: 75%;
  }
  .u-width-lg--8 {
    width: 66.66666667%;
  }
  .u-width-lg--7 {
    width: 58.33333333%;
  }
  .u-width-lg--6 {
    width: 50%;
  }
  .u-width-lg--5 {
    width: 41.66666667%;
  }
  .u-width-lg--4 {
    width: 33.33333333%;
  }
  .u-width-lg--3 {
    width: 25%;
  }
  .u-width-lg--2 {
    width: 16.66666667%;
  }
  .u-width-lg--1 {
    width: 8.33333333%;
  }
  .u-width-lg--sm {
    width: 110px !important;
  }
}
/*# sourceMappingURL=../maps/style.css.map */