
@charset "UTF-8";
/* Document
 * ========================================================================== */
/**
 * 1. Add border box sizing in all browsers (opinionated).
 * 2. Backgrounds do not repeat by default (opinionated).
 */
*,
::before,
::after {
  box-sizing: border-box; /* 1 */
}
/**
 * 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. Breaks words to prevent overflow in all browsers (opinionated).
 * 4. Use a 4-space tab width in all browsers (opinionated).
 * 5. Remove the grey highlight on links in iOS (opinionated).
 * 6. Prevent adjustments of font size after orientation changes in iOS.
 */
:where(:root) {
  cursor: default; /* 1 */
  line-height: 1.5; /* 2 */
  overflow-wrap: break-word; /* 3 */
  -moz-tab-size: 4; /* 4 */
  -o-tab-size: 4;
     tab-size: 4; /* 4 */
  -webkit-tap-highlight-color: transparent; /* 5 */
  -webkit-text-size-adjust: 100%; /* 6 */
}
/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
:where(body) {
  margin: 0;
}
/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
:where(h1) {
  font-size: 2em;
  margin: 0.67em 0;
}
/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, and Safari.
 */
:where(dl, ol, ul) :where(dl, ol, ul) {
  margin: 0;
}
/**
 * 1. Correct the inheritance of border color in Firefox.
 * 2. Add the correct box sizing in Firefox.
 */
:where(hr) {
  color: inherit; /* 1 */
  height: 0; /* 2 */
}
/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
:where(nav) :where(ol, ul) {
  list-style-type: none;
  padding: 0;
}
/**
 * Prevent VoiceOver from ignoring list semantics in Safari (opinionated).
 */
:where(nav li)::before {
  content: "\200B";
  float: left;
}
/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 * 3. Prevent overflow of the container in all browsers (opinionated).
 */
:where(pre) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
  overflow: auto; /* 3 */
}
/* Text-level semantics
 * ========================================================================== */
/**
 * Add the correct text decoration in Safari.
 */
:where(abbr[title]) {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}
/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
:where(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.
 */
:where(code, kbd, samp) {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}
/**
 * Add the correct font size in all browsers.
 */
:where(small) {
  font-size: 80%;
}
/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
:where(audio, canvas, iframe, img, svg, video) {
  vertical-align: middle;
}
/**
 * Remove the border on iframes in all browsers (opinionated).
 */
:where(iframe) {
  border-style: none;
}
/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
:where(svg:not([fill])) {
  fill: currentColor;
}
/* Tabular data
 * ========================================================================== */
/**
 * 1. Collapse border spacing in all browsers (opinionated).
 * 2. Correct table border color inheritance in all Chrome, Edge, and Safari.
 * 3. Remove text indentation from table contents in Chrome, Edge, and Safari.
 */
:where(table) {
  border-collapse: collapse; /* 1 */
  border-color: inherit; /* 2 */
  text-indent: 0; /* 3 */
}
/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
:where(button, input, select) {
  margin: 0;
}
/**
 * Correct the inability to style buttons in iOS and Safari.
 */
:where(button, [type="button" i], [type="reset" i], [type="submit" i]) {
  -webkit-appearance: button;
}
/**
 * Change the inconsistent appearance in all browsers (opinionated).
 */
:where(fieldset) {
  border: 1px solid #a0a0a0;
}
/**
 * Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
:where(progress) {
  vertical-align: baseline;
}
/**
 * 1. Remove the margin in Firefox and Safari.
 * 3. Change the resize direction in all browsers (opinionated).
 */
:where(textarea) {
  margin: 0; /* 1 */
  resize: vertical; /* 3 */
}
/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
:where([type="search" i]) {
  -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 */
}
/* Interactive
 * ========================================================================== */
/*
 * Add the correct styles in Safari.
 */
:where(dialog) {
  background-color: white;
  border: solid;
  color: black;
  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;
}
:where(dialog:not([open])) {
  display: none;
}
/*
 * Add the correct display in Safari.
 */
:where(details > summary:first-of-type) {
  display: list-item;
}
/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
:where([aria-busy="true" i]) {
  cursor: progress;
}
/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
:where([aria-controls]) {
  cursor: pointer;
}
/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
:where([aria-disabled="true" i], [disabled]) {
  cursor: not-allowed;
}
/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
:where([aria-hidden="false" i][hidden]) {
  display: initial;
}
:where([aria-hidden="false" i][hidden]:not(:focus)) {
  clip: rect(0, 0, 0, 0);
  position: absolute;
}
/*
vwのフォントサイズ算出

$size:     基準のフォントサイズ
$viewport: 基準のビューポート
*/
/*
clamp（最小・最大設定）を使用した
vwのフォントサイズ算出

$min_fz: 最小フォントサイズ
$fz:     可変フォントサイズ
$max_fz: 最大フォントサイズ
*/
/*
print用 opacityリセット
*/
:root {
  --header-H: 144px;
  --footer-H: 98px;
  --topic-path-H: 30px;
  --key-color: #086E93;
  --key-color-15: #086E9326;
  --key-color-light: #A0DD63;
  --secondary-color: #EF8B00;
  --gradient-green-step-1: var(--key-color-light);
  --gradient-green-step-2: #46C983;
  --gradient-green-step-3: var(--key-color);
}
@media screen and (max-width: 767px) {
  :root {
    --header-H: 54px;
    --footer-H: 102px;
    --topic-path-H: 0px;
  }
}

@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");
}
* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  height: 100%;
  min-height: 100vh;
  margin: 0;
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Zen Kaku Gothic New", "MyHiragino", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, 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.8;
}

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

button {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Zen Kaku Gothic New", "MyHiragino", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
}

/* [layout] サイトレイアウト
-----------------------------------------------*/
.l-content-wrap {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding-top: var(--header-H);
  overflow: hidden;
}
@media screen and (max-width: 1450px) {
  .l-content-wrap {
    padding-top: 94px;
  }
}
@media screen and (max-width: 767px) {
  .l-content-wrap {
    padding-top: 60px;
  }
}

main {
  display: flex;
  flex: 1;
  flex-direction: column;
}

.l-fit-content-center {
  margin-right: auto;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

/* [layout] 汎用コンテナ
-----------------------------------------------*/
.l-container {
  width: 100%;
  max-width: 1144px;
  padding-right: 32px;
  padding-left: 32px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .l-container {
    padding-right: 24px;
    padding-left: 24px;
  }
}
.l-container--bg {
  margin: 0 40px;
  background-color: #FDFCFA;
  padding-bottom: 80px;
}
.l-container--bg-secondary {
  background-color: rgba(192, 139, 201, 0.1);
}
@media screen and (max-width: 767px) {
  .l-container--bg {
    margin: 0;
  }
}

/* [layout] 上下アキsection
-----------------------------------------------*/
.l-section {
  padding-top: 80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 767px) {
  .l-section {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

@media screen and (max-width: 767px) {
  .l-section--sm-down {
    padding-top: 64px;
    padding-bottom: 64px;
  }
}

/* [layout] ボックスレイアウト
-----------------------------------------------*/
.l-box {
  border-radius: 6px;
  padding: 30px;
  background: #fff;
}
@media screen and (max-width: 767px) {
  .l-box {
    padding: 32px;
  }
}
.l-box--gray {
  background: #FDFDFD;
  border: 1px solid #E8E8E8;
}
.l-box--border {
  border: 1px solid #E0E0E0;
}
.l-box--sm {
  padding: 20px;
}

.l-box-frame {
  box-shadow: 8px 6px 14px rgba(0, 0, 0, 0.0392156863);
  background: #fff;
  border-radius: 10px;
}

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

.l-link-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

/* [layout] スクロールバーデザイン変更
-----------------------------------------------*/
.l-scroll-bar {
  overflow-y: scroll;
  scrollbar-width: thin;
  scrollbar-color: #086E93 rgba(51, 51, 51, 0.1);
}
.l-scroll-bar::-webkit-scrollbar {
  background-color: transparent;
  width: 10px;
}
.l-scroll-bar::-webkit-scrollbar-thumb {
  background: #086E93;
  border-radius: 5px;
}
.l-scroll-bar::-webkit-scrollbar-track {
  background-color: rgba(51, 51, 51, 0.1);
}
.l-scroll-bar--secondary {
  scrollbar-width: thin;
  scrollbar-color: #92629A rgba(51, 51, 51, 0.1);
}
.l-scroll-bar--secondary::-webkit-scrollbar {
  background-color: transparent;
  width: 10px;
}
.l-scroll-bar--secondary::-webkit-scrollbar-thumb {
  background: #92629A;
  border-radius: 5px;
}
.l-scroll-bar--secondary::-webkit-scrollbar-track {
  background-color: rgba(51, 51, 51, 0.1);
}

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

.l-gap--xxl {
  display: flow-root;
  margin-top: 120px;
}
@media screen and (max-width: 767px) {
  .l-gap--xxl {
    margin-top: 80px;
  }
}

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

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

.l-gap--lg-2 {
  display: flow-root;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .l-gap--lg-2 {
    margin-top: 40px;
  }
}

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

.l-gap--md-2 {
  display: flow-root;
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .l-gap--md-2 {
    margin-top: 32px;
  }
}

.l-gap--md-3 {
  display: flow-root;
  margin-top: 32px;
}
@media screen and (max-width: 767px) {
  .l-gap--md-3 {
    margin-top: 16px;
  }
}

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

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

.l-gap--xs {
  display: flow-root;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .l-gap--xs {
    margin-top: 15px;
  }
}

.l-gap--xxs {
  display: flow-root;
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .l-gap--xxs {
    margin-top: 5px;
  }
}

.l-gap--form {
  display: flow-root;
  margin-top: 20px;
}

/* [layout] gapルール用クラス
-----------------------------------------------*/
.l-contact {
  background-image: url("/lp/assets/img/ohakaerabi/contact_bg@2x.jpg");
  background-size: cover;
  padding: 82px 0;
}
@media screen and (max-width: 767px) {
  .l-contact {
    background-image: url("/lp/assets/img/ohakaerabi/contact_bg_sp@2x.jpg");
  }
}
.l-contact-inner {
  -webkit-backdrop-filter: brightness(50%) blur(30px);
          backdrop-filter: brightness(50%) blur(30px);
  padding: 60px 60px 80px;
}
@media screen and (max-width: 767px) {
  .l-contact-inner {
    padding: 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-contact-inner .c-title-sm {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 959px) {
  .l-contact-inner .c-buttons {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 959px) {
  .l-contact-inner .c-buttons .c-button {
    width: 100%;
    max-width: 320px;
  }
}

/**
 * Footer Style
 */
/* [footer] layout
-----------------------------------------------*/
.l-footer {
  position: relative;
  padding: 40px 0;
}
.l-footer-copyright {
  font-size: 1.2rem;
  left: 1px;
  text-align: center;
  margin: 0;
}

/* [footer] ページトップボタン
-----------------------------------------------*/
.l-footer__page-top__container {
  height: 0;
  z-index: 90;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .l-footer__page-top__container {
    width: 100%;
  }
}

.l-footer__page-top {
  cursor: pointer;
  display: block;
  position: fixed;
  bottom: calc(env(safe-area-inset-bottom) + 28px);
  background-color: transparent;
  right: 40px;
  padding: 0;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.3s, visibility 0.3s;
  visibility: hidden;
}
@media screen and (max-width: 767px) {
  .l-footer__page-top {
    right: 24px;
    bottom: calc(env(safe-area-inset-bottom) + 24px);
  }
}
.l-footer__page-top.is-show {
  visibility: visible;
  opacity: 1;
}
.l-footer__page-top.is-absolute {
  position: absolute;
  bottom: calc(env(safe-area-inset-bottom) + var(--footer-H) - 28px);
}
.l-footer__page-top > .c-icon {
  -webkit-transform: rotate(-90deg) translateY(1px);
          transform: rotate(-90deg) translateY(1px);
  position: relative;
  z-index: 2;
}
.l-footer__page-top > .c-icon svg {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1019607843);
}
@media (hover: hover) and (pointer: fine) {
  .l-footer__page-top:hover {
    opacity: 0.7;
  }
}

/* [header]
-----------------------------------------------*/
#header-navigation {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100;
}

.l-header {
  height: var(--header-H);
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  transition: height 0.5s ease;
}
@media screen and (max-width: 1450px) {
  .l-header {
    height: 94px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
    padding: 0 24px;
  }
}
@media screen and (max-width: 767px) {
  .l-header-logo {
    width: 135px;
  }
}
.l-header.scrolled {
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1019607843);
}
@media print, screen and (min-width: 768px) {
  .l-header.scrolled {
    height: 94px;
  }
}

/* [nav]
-----------------------------------------------*/
.l-nav {
  display: flex;
  width: 100%;
  max-width: 650px;
}
.l-nav-menu {
  display: flex;
  list-style: none;
  -webkit-column-gap: 20PX;
     -moz-column-gap: 20PX;
          column-gap: 20PX;
  align-items: center;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 1450px) {
  .l-nav-menu {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 24px;
  }
}
.l-nav-menu li {
  display: flex;
  align-items: center;
}
.l-nav-menu a {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
}
@media screen and (max-width: 1450px) {
  .l-nav-menu a {
    color: #fff;
    font-size: 1.6rem;
  }
  .l-nav-menu a .c-icon {
    -webkit-transform: rotate(-90deg);
            transform: rotate(-90deg);
  }
  .l-nav-menu a .c-icon .svg-icon_arrow-d-dims {
    width: 12px;
    height: 6px;
  }
}
.l-nav-buttons {
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  width: 550px;
}
.l-nav-buttons .c-button {
  width: calc((100% - 10px) / 2);
  padding: 0 15px;
  min-width: 180px;
}
@media screen and (max-width: 1450px) {
  .l-nav-buttons .c-button {
    width: 100%;
  }
}
@media screen and (max-width: 1450px) {
  .l-nav-buttons {
    flex-wrap: wrap;
    max-width: 100%;
    row-gap: 24px;
  }
  .l-nav-buttons .c-button-base {
    background-color: #fff;
    color: #333;
  }
  .l-nav-buttons .svg-icon_pdf-dims path {
    fill: #333;
  }
}
.l-nav-wrapper {
  display: flex;
  -webkit-column-gap: 56px;
     -moz-column-gap: 56px;
          column-gap: 56px;
  justify-content: space-between;
}
@media screen and (max-width: 1450px) {
  .l-nav-wrapper {
    translate: 100% 0%;
    position: absolute;
    width: 318px;
    display: flex;
    flex-wrap: wrap;
    top: 144px;
    right: 0;
    padding: 32px 24px;
    transition: translate 0.3s;
    background-color: #333333;
    row-gap: 32px;
  }
  .l-nav-wrapper.active {
    translate: 0% 0%;
  }
}
@media screen and (max-width: 767px) {
  .l-nav-wrapper {
    top: 60px;
  }
}
.l-nav-hamburger {
  display: none;
  /* ×アイコンのスタイル */
}
@media screen and (max-width: 1450px) {
  .l-nav-hamburger {
    width: 60px;
    height: 62px;
    position: absolute;
    right: 25px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-nav-hamburger {
    right: 0;
  }
}
.l-nav-hamburger-menu-icon {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 31px;
  height: 19px;
  cursor: pointer;
  position: relative;
}
.l-nav-hamburger-menu-txt {
  font-size: 11px;
  font-weight: normal;
  margin-top: 6px;
  line-height: 1;
}
.l-nav-hamburger-menu-icon-line {
  width: 100%;
  height: 1px;
  background-color: #000;
  transition: 0.3s ease-in-out;
}
.l-nav-hamburger-menu-icon.active .l-nav-hamburger-menu-icon-line2 {
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.l-nav-hamburger-menu-icon.close .l-nav-hamburger-menu-icon-line1 {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
}
.l-nav-hamburger-menu-icon.close .l-nav-hamburger-menu-icon-line3 {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
  width: 100%;
  position: absolute;
  top: 50%;
  left: 0;
}

@-ms-viewport {
  width: device-width;
}
.l-grid-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .l-grid-row-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.l-grid-row-2--thin {
  gap: calc(20px / 2);
}

.l-grid-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media screen and (max-width: 767px) {
  .l-grid-row-3 {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 32px;
    justify-items: center;
  }
}
@media screen and (max-width: 767px) {
  .l-grid-row-3--sm {
    row-gap: 16px;
  }
}

@media screen and (max-width: 767px) {
  .l-grid-row-gap-sm-down--xxs {
    row-gap: 8px;
  }
}

.container-fluid {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .container-fluid {
    padding-right: 15px;
    padding-left: 15px;
  }
}

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

.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;
  width: 100%;
  min-height: 1px;
  padding-right: calc(20px / 2);
  padding-left: calc(20px / 2);
  margin-bottom: calc(20px);
}
@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 {
    padding-right: calc(15px / 2);
    padding-left: calc(15px / 2);
    margin-bottom: calc(15px);
  }
}
.l-row--thin .l-col-1,
.l-row--thin .l-col-2,
.l-row--thin .l-col-3,
.l-row--thin .l-col-4,
.l-row--thin .l-col-5,
.l-row--thin .l-col-6,
.l-row--thin .l-col-7,
.l-row--thin .l-col-8,
.l-row--thin .l-col-9,
.l-row--thin .l-col-10,
.l-row--thin .l-col-11,
.l-row--thin .l-col-12,
.l-row--thin .l-col,
.l-row--thin .l-col-auto,
.l-row--thin .l-col-sm-1,
.l-row--thin .l-col-sm-2,
.l-row--thin .l-col-sm-3,
.l-row--thin .l-col-sm-4,
.l-row--thin .l-col-sm-5,
.l-row--thin .l-col-sm-6,
.l-row--thin .l-col-sm-7,
.l-row--thin .l-col-sm-8,
.l-row--thin .l-col-sm-9,
.l-row--thin .l-col-sm-10,
.l-row--thin .l-col-sm-11,
.l-row--thin .l-col-sm-12,
.l-row--thin .l-col-sm,
.l-row--thin .l-col-sm-auto,
.l-row--thin .l-col-md-1,
.l-row--thin .l-col-md-2,
.l-row--thin .l-col-md-3,
.l-row--thin .l-col-md-4,
.l-row--thin .l-col-md-5,
.l-row--thin .l-col-md-6,
.l-row--thin .l-col-md-7,
.l-row--thin .l-col-md-8,
.l-row--thin .l-col-md-9,
.l-row--thin .l-col-md-10,
.l-row--thin .l-col-md-11,
.l-row--thin .l-col-md-12,
.l-row--thin .l-col-md,
.l-row--thin .l-col-md-auto,
.l-row--thin .l-col-lg-1,
.l-row--thin .l-col-lg-2,
.l-row--thin .l-col-lg-3,
.l-row--thin .l-col-lg-4,
.l-row--thin .l-col-lg-5,
.l-row--thin .l-col-lg-6,
.l-row--thin .l-col-lg-7,
.l-row--thin .l-col-lg-8,
.l-row--thin .l-col-lg-9,
.l-row--thin .l-col-lg-10,
.l-row--thin .l-col-lg-11,
.l-row--thin .l-col-lg-12,
.l-row--thin .l-col-lg,
.l-row--thin .l-col-lg-auto,
.l-row--thin .l-col-xl-1,
.l-row--thin .l-col-xl-2,
.l-row--thin .l-col-xl-3,
.l-row--thin .l-col-xl-4,
.l-row--thin .l-col-xl-5,
.l-row--thin .l-col-xl-6,
.l-row--thin .l-col-xl-7,
.l-row--thin .l-col-xl-8,
.l-row--thin .l-col-xl-9,
.l-row--thin .l-col-xl-10,
.l-row--thin .l-col-xl-11,
.l-row--thin .l-col-xl-12,
.l-row--thin .l-col-xl,
.l-row--thin .l-col-xl-auto {
  padding-right: calc(20px / 4);
  padding-left: calc(20px / 4);
  margin-bottom: calc(20px / 2);
}
@media screen and (max-width: 767px) {
  .l-row--thin .l-col-1,
  .l-row--thin .l-col-2,
  .l-row--thin .l-col-3,
  .l-row--thin .l-col-4,
  .l-row--thin .l-col-5,
  .l-row--thin .l-col-6,
  .l-row--thin .l-col-7,
  .l-row--thin .l-col-8,
  .l-row--thin .l-col-9,
  .l-row--thin .l-col-10,
  .l-row--thin .l-col-11,
  .l-row--thin .l-col-12,
  .l-row--thin .l-col,
  .l-row--thin .l-col-auto,
  .l-row--thin .l-col-sm-1,
  .l-row--thin .l-col-sm-2,
  .l-row--thin .l-col-sm-3,
  .l-row--thin .l-col-sm-4,
  .l-row--thin .l-col-sm-5,
  .l-row--thin .l-col-sm-6,
  .l-row--thin .l-col-sm-7,
  .l-row--thin .l-col-sm-8,
  .l-row--thin .l-col-sm-9,
  .l-row--thin .l-col-sm-10,
  .l-row--thin .l-col-sm-11,
  .l-row--thin .l-col-sm-12,
  .l-row--thin .l-col-sm,
  .l-row--thin .l-col-sm-auto,
  .l-row--thin .l-col-md-1,
  .l-row--thin .l-col-md-2,
  .l-row--thin .l-col-md-3,
  .l-row--thin .l-col-md-4,
  .l-row--thin .l-col-md-5,
  .l-row--thin .l-col-md-6,
  .l-row--thin .l-col-md-7,
  .l-row--thin .l-col-md-8,
  .l-row--thin .l-col-md-9,
  .l-row--thin .l-col-md-10,
  .l-row--thin .l-col-md-11,
  .l-row--thin .l-col-md-12,
  .l-row--thin .l-col-md,
  .l-row--thin .l-col-md-auto,
  .l-row--thin .l-col-lg-1,
  .l-row--thin .l-col-lg-2,
  .l-row--thin .l-col-lg-3,
  .l-row--thin .l-col-lg-4,
  .l-row--thin .l-col-lg-5,
  .l-row--thin .l-col-lg-6,
  .l-row--thin .l-col-lg-7,
  .l-row--thin .l-col-lg-8,
  .l-row--thin .l-col-lg-9,
  .l-row--thin .l-col-lg-10,
  .l-row--thin .l-col-lg-11,
  .l-row--thin .l-col-lg-12,
  .l-row--thin .l-col-lg,
  .l-row--thin .l-col-lg-auto,
  .l-row--thin .l-col-xl-1,
  .l-row--thin .l-col-xl-2,
  .l-row--thin .l-col-xl-3,
  .l-row--thin .l-col-xl-4,
  .l-row--thin .l-col-xl-5,
  .l-row--thin .l-col-xl-6,
  .l-row--thin .l-col-xl-7,
  .l-row--thin .l-col-xl-8,
  .l-row--thin .l-col-xl-9,
  .l-row--thin .l-col-xl-10,
  .l-row--thin .l-col-xl-11,
  .l-row--thin .l-col-xl-12,
  .l-row--thin .l-col-xl,
  .l-row--thin .l-col-xl-auto {
    padding-right: calc(15px / 4);
    padding-left: calc(15px / 4);
    margin-bottom: calc(15px / 2);
  }
}

.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 print, 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 print, screen and (min-width: 960px) {
  .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 (max-width: 959px) {
  .l-col-md-down {
    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 print, screen and (min-width: 1449px) {
  .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 print, screen and (min-width: 1449px) {
  .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;
}

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

@media print, 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 print, screen and (min-width: 960px) {
  .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 print, screen and (min-width: 1449px) {
  .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 print, screen and (min-width: 1449px) {
  .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 {
  align-self: auto !important;
}

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

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

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

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

.align-self-stretch {
  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 {
    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 {
    align-self: center !important;
  }
  .align-self-sm-down-baseline {
    align-self: baseline !important;
  }
  .align-self-sm-down-stretch {
    align-self: stretch !important;
  }
}
@media print, screen and (min-width: 960px) {
  .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 {
    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 {
    align-self: center !important;
  }
  .align-self-md-baseline {
    align-self: baseline !important;
  }
  .align-self-md-stretch {
    align-self: stretch !important;
  }
}
@media screen and (max-width: 959px) {
  .flex-md-down-row {
    flex-direction: row !important;
  }
  .flex-md-down-column {
    flex-direction: column !important;
  }
  .flex-md-down-row-reverse {
    flex-direction: row-reverse !important;
  }
  .flex-md-down-column-reverse {
    flex-direction: column-reverse !important;
  }
  .flex-md-down-wrap {
    flex-wrap: wrap !important;
  }
  .flex-md-down-nowrap {
    flex-wrap: nowrap !important;
  }
  .flex-md-down-wrap-reverse {
    flex-wrap: wrap-reverse !important;
  }
  .flex-md-down-fill {
    flex: 1 1 auto !important;
  }
  .flex-md-down-grow-0 {
    flex-grow: 0 !important;
  }
  .flex-md-down-grow-1 {
    flex-grow: 1 !important;
  }
  .flex-md-down-shrink-0 {
    flex-shrink: 0 !important;
  }
  .flex-md-down-shrink-1 {
    flex-shrink: 1 !important;
  }
  .justify-content-md-down-start {
    justify-content: flex-start !important;
  }
  .justify-content-md-down-end {
    justify-content: flex-end !important;
  }
  .justify-content-md-down-center {
    justify-content: center !important;
  }
  .justify-content-md-down-between {
    justify-content: space-between !important;
  }
  .justify-content-md-down-around {
    justify-content: space-around !important;
  }
  .align-items-md-down-start {
    align-items: flex-start !important;
  }
  .align-items-md-down-end {
    align-items: flex-end !important;
  }
  .align-items-md-down-center {
    align-items: center !important;
  }
  .align-items-md-down-baseline {
    align-items: baseline !important;
  }
  .align-items-md-down-stretch {
    align-items: stretch !important;
  }
  .align-content-md-down-start {
    align-content: flex-start !important;
  }
  .align-content-md-down-end {
    align-content: flex-end !important;
  }
  .align-content-md-down-center {
    align-content: center !important;
  }
  .align-content-md-down-between {
    align-content: space-between !important;
  }
  .align-content-md-down-around {
    align-content: space-around !important;
  }
  .align-content-md-down-stretch {
    align-content: stretch !important;
  }
  .align-self-md-down-auto {
    align-self: auto !important;
  }
  .align-self-md-down-start {
    align-self: flex-start !important;
  }
  .align-self-md-down-end {
    align-self: flex-end !important;
  }
  .align-self-md-down-center {
    align-self: center !important;
  }
  .align-self-md-down-baseline {
    align-self: baseline !important;
  }
  .align-self-md-down-stretch {
    align-self: stretch !important;
  }
}
@media print, screen and (min-width: 1449px) {
  .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 {
    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 {
    align-self: center !important;
  }
  .align-self-lg-baseline {
    align-self: baseline !important;
  }
  .align-self-lg-stretch {
    align-self: stretch !important;
  }
}
/**
 * Button
 */
button {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Zen Kaku Gothic New", "MyHiragino", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
  border: none;
}

/* [button] デフォルト
-----------------------------------------------*/
.c-button {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 64px;
  border-radius: 4px;
  cursor: pointer;
}
.c-button-w270 {
  max-width: 270px;
}
.c-button-w320 {
  max-width: 320px;
}
.c-button-primary {
  background-color: #BAA355;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.c-button-secondary {
  background-color: #92629A;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.c-button-base {
  background-color: #333;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1;
}
.c-button .text {
  display: inline-block;
  line-height: 1;
  font-size: 2.7rem;
}
.c-button .text-sm {
  font-size: 1.1rem;
  font-weight: normal;
  margin-top: 5px;
}
.c-button-icon {
  display: flex;
  align-items: center;
}
.c-button-arrow-down {
  position: relative;
  width: 100%;
  max-width: 340px;
  text-align: center;
  padding-bottom: 14px;
  font-size: 2rem;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .c-button-arrow-down {
    font-size: 1.8rem;
  }
}
.c-button-arrow-down::after {
  content: "";
  position: absolute;
  bottom: 4px;
  right: 0;
  width: 100%;
  height: 2px;
  z-index: 0;
  background-color: #333; /* borderのカラー */
  transition: all 0.3s;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
}
.c-button-arrow-down:hover {
  opacity: 1;
}
.c-button-arrow-down:hover::after {
  width: 100%;
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
}
.c-button-arrow-down .c-icon {
  position: absolute;
  bottom: 0px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 1;
}
.c-button .c-icon {
  display: block;
}
.c-button .svg-icon_mail-dims {
  margin-bottom: 2px;
}
.c-button .svg-icon_pdf-dims {
  margin-bottom: 1px;
}

.c-buttons {
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  row-gap: 20px;
}
.c-buttons .c-button {
  width: calc((100% - 20px) / 3);
}
@media screen and (max-width: 767px) {
  .c-buttons .c-button {
    width: 100%;
  }
}

/**
 * Icon
**/
.c-icon {
  display: inline-flex;
  align-items: center;
  font-size: 1em;
  font-style: inherit;
  line-height: 1;
  vertical-align: top;
}
.c-icon svg {
  fill: currentColor;
  width: 24px;
  height: 24px;
}
.c-icon .svg-icon_mail-dims {
  width: 18px;
  height: 14px;
}
.c-icon .svg-icon_pdf-dims {
  width: 14px;
  height: 18px;
}
.c-icon .svg-icon_arrow-d-dims {
  width: 8px;
  height: 4px;
}
.c-icon .svg-icon_list-q-dims {
  width: 20px;
  height: 20px;
}
@media screen and (max-width: 767px) {
  .c-icon .svg-icon_list-q-dims {
    width: 16px;
    height: 16px;
  }
}
.c-icon .svg-icon_arrow-button-dims {
  width: 18px;
  height: 9px;
}
.c-icon .svg-icon_freedial-dims {
  width: 26px;
  height: 17px;
}
.c-icon .svg-icon_nav-dims {
  width: 50px;
  height: 50px;
}
.c-icon.right {
  margin-right: 8px;
}
.c-icon.left {
  margin-left: 8px;
}
.c-icon--small svg {
  width: 16px;
  height: 16px;
}
.c-icon--large svg {
  width: 55px;
  height: 55px;
}
@media screen and (max-width: 767px) {
  .c-icon--large svg {
    width: 50px;
    height: 50px;
  }
}

.c-icon-interview {
  display: flex;
  align-items: center;
  gap: 8px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-family: "EB Garamond", sans-serif;
  color: #92629A;
}
.c-icon-interview--column {
  flex-direction: column-reverse;
  justify-content: center;
  gap: 3px;
}
.c-icon-interview--column svg {
  width: 30px;
  height: 30px;
}
.c-icon-interview--column .c-text-xs {
  font-size: 1rem;
  scale: 0.6;
}

.c-icon-new {
  display: inline-block;
  background-color: #E61212;
  padding: 4px 11px;
  font-size: 1.4rem;
  font-weight: bold;
  line-height: 1;
  color: #fff !important;
}

/**
 * Link
**/
/* [Link] 下線
-----------------------------------------------*/
/**
 * List
**/
/* [list] テキストリスト
-----------------------------------------------*/
.c-list {
  padding: 0;
  margin: 0;
  list-style: none;
  flex-direction: column;
}
.c-list > li {
  display: flex;
  margin: calc((1.5 - 1) / 2 * -1em) 0;
  line-height: 1.5;
}
.c-list > li:not(:first-child) {
  margin-top: calc(16px + (1.5 - 1) / 2 * -1em);
}
.c-list > li::before {
  content: "・";
}
.c-list > li > .c-list {
  margin-top: 16px;
}
.c-list-sm > li:not(:first-child) {
  margin-top: 8px;
}

/* [list] テキスト・アイコン付きインデントリスト
-----------------------------------------------*/
.c-list-icon {
  padding: 0;
  margin: 0;
  list-style: none;
}
.c-list-icon > li {
  display: flex;
  align-items: center;
}
.c-list-icon > li:not(:first-of-type) {
  margin-top: 12px;
}
@media screen and (max-width: 767px) {
  .c-list-icon > li {
    align-items: flex-start;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-list-icon > li .c-icon {
    margin-top: 7px;
  }
}
.c-list-icon__icon:after {
  content: "  ";
}
.c-list-icon__text {
  flex: 1;
}

/* [list] discリスト
-----------------------------------------------*/
.c-list-disc {
  margin: 0 0 -10px;
  padding: 0;
  list-style: none;
}
.c-list-disc > li {
  display: flex;
  padding: 0 0 10px 0;
  line-height: 1.5;
}
.c-list-disc > li::before {
  content: "・";
  margin-right: 2em;
  font-size: 1rem;
  font-weight: bold;
  color: #8CBC33;
  scale: 2.5;
}

/* [list] discリスト（小さいオレンジの点）
-----------------------------------------------*/
.c-list-disc-small {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 0;
  margin: 0;
  padding: 0;
}
@media screen and (max-width: 767px) {
  .c-list-disc-small {
    gap: 8px 0;
  }
}
.c-list-disc-small > li {
  display: flex;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  width: 100%;
}
.c-list-disc-small > li::before {
  content: "・";
  margin-left: -0.2em;
  color: #92629A;
}
@media screen and (max-width: 767px) {
  .c-list-disc-small > li::before {
    margin-left: 0;
  }
}
.c-list-disc-small--column-2 > li {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .c-list-disc-small--column-2 > li {
    width: 100%;
    font-size: 1.4rem;
  }
}

/* [list] チェックマークリスト
-----------------------------------------------*/
.c-list-check {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.c-list-check > li {
  display: flex;
  align-items: flex-start;
  margin: 0;
  font-size: 1.6rem;
  line-height: 1.5;
}
.c-list-check > li::before {
  content: "";
  position: relative;
  background-color: #92629A;
  display: inline-block;
  margin: 0 6px 0 0;
  height: 25px;
  min-width: 25px;
  width: 25px;
  -webkit-mask: url("../img/shared/icon_check.svg");
  mask: url("../img/shared/icon_check.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
}
.c-list-check--row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .c-list-check--row-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.c-list-check--row-2 > li {
  margin: 0;
}
.c-list-check--inline {
  display: inline-flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 16px 40px;
}
@media screen and (max-width: 767px) {
  .c-list-check--inline {
    gap: 16px 32px;
  }
}
.c-list-check--inline > li {
  margin: 0;
}
.c-list-check--fz-small > li {
  font-size: 1.4rem;
}
.c-list-check--fz-small > li::before {
  top: calc((2 - 1) / 4 * -1em);
}
@media screen and (max-width: 767px) {
  .c-list-check--small-sm-down {
    flex-direction: row;
  }
}
@media screen and (max-width: 767px) {
  .c-list-check--small-sm-down > li {
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .c-list-check--small-sm-down > li:before {
    top: 0.25em;
    margin-right: 4px;
    height: 14px;
    width: 14px;
    min-width: 14px;
  }
}
@media screen and (max-width: 1450px) {
  .c-list-check--inline-lg-down {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 4px 16px;
    margin: 0;
  }
}
@media screen and (max-width: 1450px) {
  .c-list-check--inline-lg-down > li {
    margin: 0;
  }
}
@media print, screen and (min-width: 768px) {
  .c-list-check--inline-sm {
    display: inline-flex;
    flex-wrap: wrap;
    flex-direction: row;
    gap: 16px 40px;
  }
}
@media print, screen and (min-width: 768px) {
  .c-list-check--inline-sm > li {
    margin: 0;
  }
}
.c-list-check--gray > li::before {
  background-color: #9A9A9A;
}

/* [p-list] 共通:タグリスト
-----------------------------------------------*/
.p-list-tags {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin: calc((1.5 - 1) / 2 * -1em) 0;
  margin-right: -1em;
  padding: 0 1em 0 0;
  list-style: none;
  line-height: 1;
}
.p-list-tags::before {
  content: "";
  position: relative;
  background-color: #086E93;
  display: inline-flex;
  align-self: center;
  margin: -0.1em 4px 0 0;
  height: 1em;
  width: 1em;
  font-size: 1.2rem;
  -webkit-mask: url("../img/shared/icon_tag.svg");
  mask: url("../img/shared/icon_tag.svg");
  -webkit-mask-size: cover;
  mask-size: cover;
  vertical-align: middle;
}
.p-list-tags > li {
  display: inline-block;
  font-size: 1.2rem;
  line-height: 1.5;
}
.p-list-tags > li:not(:last-child)::after {
  content: ", ";
}
.p-list-tags > li a {
  transition: 0.2s;
}
@media (hover: hover) and (pointer: fine) {
  .p-list-tags > li a:hover {
    opacity: 1;
    color: #086E93;
  }
}

/**
 * Media
 */
/* [Media] 幅100%画像
-----------------------------------------------*/
iframe {
  border: none;
  vertical-align: top;
  height: auto;
}

figure {
  margin: 0;
  position: relative;
}
figure > figcaption {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.9);
  color: #fff;
  width: 100%;
  padding: 3px 0 4px;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}

.c-figure {
  position: relative;
  margin: 0 auto;
  text-align: center;
}
.c-figure img {
  width: 100%;
  height: auto;
}
.c-figure--object-fit-cover img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-figure--object-fit-contain img {
  max-width: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-figure--center-caption {
  position: relative;
}
.c-figure--center-caption > figcaption {
  background-color: transparent;
  padding: 0;
  top: 50%;
  bottom: initial;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

/* [Media] はみ出し画像
-----------------------------------------------*/
.c-figure-unset {
  display: flex;
  align-items: flex-start;
  margin: 0 auto;
  justify-content: center;
}
.c-figure-unset--left {
  justify-content: flex-end;
}
.c-figure-unset--left img {
  max-width: unset;
}
.c-figure-unset--right {
  justify-content: flex-start;
}
.c-figure-unset--right img {
  max-width: unset;
}
@media print, screen and (min-width: 960px) {
  .c-figure-unset--md-left {
    justify-content: flex-end;
  }
  .c-figure-unset--md-left img {
    max-width: unset;
  }
}
@media print, screen and (min-width: 960px) {
  .c-figure-unset--md-right {
    justify-content: flex-start;
  }
  .c-figure-unset--md-right img {
    max-width: unset;
  }
}
@media print, screen and (min-width: 768px) {
  .c-figure-unset--sm-left {
    justify-content: flex-end;
  }
}
@media print, screen and (min-width: 768px) {
  .c-figure-unset--sm-right {
    justify-content: flex-start;
  }
  .c-figure-unset--sm-right img {
    max-width: unset;
  }
}

@media screen and (max-width: 959px) {
  .c-img-md-down--md {
    width: 100%;
    max-width: 480px;
  }
}

/**
 * Text
**/
sup {
  font-size: 0.6em;
}

/* [text] レギュレーション フォントサイズ
-----------------------------------------------*/
.c-text-xl {
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 2.1rem;
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-text-xl {
    font-size: 1.8rem;
  }
}

.c-text-lg {
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 1.8rem;
  font-weight: normal;
  line-height: 1.5;
}

.c-text-md {
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 1.5;
}

.c-text-sm {
  margin: calc((1.6 - 1) / 2 * -1em + 2px) 0;
  font-size: 1.5rem;
  font-weight: normal;
  line-height: 1.6;
}

.c-text-xs {
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 1.4rem;
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-text-xs {
    font-size: 1.4rem;
  }
}

.c-text-xxs {
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 1.3rem;
  font-weight: normal;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .c-text-xxs {
    font-size: 1.4rem;
  }
}

/* [text] リード文
-----------------------------------------------*/
.c-text-lead {
  margin: calc((2.875 - 1) / 2 * -1em) 0;
  font-size: 1.6rem;
  font-weight: normal;
  line-height: 2.875;
}
@media screen and (max-width: 767px) {
  .c-text-lead {
    margin: calc((2.125 - 1) / 2 * -1em) 0;
    line-height: 2.125;
  }
}

/* [Text] pre
-----------------------------------------------*/
pre {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #000;
  margin: 0;
  border: 1px solid #E0E0E0;
  padding: 0;
}
table pre {
  max-width: 800px;
  width: inherit;
}

/* [Text] 税込の（）左右のアキ削り
-----------------------------------------------*/
.c-text-tax {
  margin-left: -0.4em;
  margin-right: -0.4em;
}

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

.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;
  }
}

.c-text-underline {
  text-decoration: underline;
}

.c-text-maker {
  background-color: #92629A;
  display: inline-block;
  padding: 0 6px 1px;
  margin: 0 2px;
}
@media screen and (max-width: 767px) {
  .c-text-maker {
    margin-top: 3px;
    margin-bottom: 3px;
    font-size: 1.5rem;
    padding: 0 4px 1px;
  }
}

.c-text-box-radius {
  border: 1px solid #fff;
  border-radius: 20px;
  display: inline-block;
  color: #fff;
  padding: 5px 16px 7px;
}

/**
 * Title
**/
.c-title-xl {
  display: block;
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 5.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-xl {
    font-size: 3.2rem;
  }
}

.c-title-lg {
  display: block;
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 3.6rem;
  line-height: 1.5;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-lg {
    font-size: 2.8rem;
  }
}

.c-title-md {
  display: block;
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-md {
    font-size: 2.4rem;
  }
}

.c-title-sm {
  display: block;
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 2.7rem;
  line-height: 1.5;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@media screen and (max-width: 767px) {
  .c-title-sm {
    font-size: 2rem;
  }
}

.c-title-xs {
  display: block;
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
  font-size: 2.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-xs {
    font-size: 2rem;
  }
}

.c-title-underline {
  position: relative;
  text-align: center;
  margin-bottom: 0;
  padding-bottom: 20px;
}
.c-title-underline::after {
  position: absolute;
  content: "";
  width: 200px;
  height: 1px;
  background-color: #333;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.c-title-border {
  position: relative;
}
.c-title-border span {
  background-color: #fff;
  position: relative;
  z-index: 1;
  padding-right: 16px;
}
.c-title-border::before, .c-title-border::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #BAA355;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 0;
}
.c-title-border::before {
  top: calc(50% + 1.5px);
}
.c-title-border::after {
  top: calc(50% - 1.5px);
}
.c-title-border--secondary::before, .c-title-border--secondary::after {
  background-color: #92629A;
}

.c-title-border-left {
  position: relative;
  padding-left: 11px;
  margin: 0;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.c-title-border-left::before {
  position: absolute;
  content: "";
  width: 3px;
  height: 100%;
  background-color: #BAA355;
  top: 0;
  left: 0;
  z-index: 0;
}
.c-title-border-left--secondary::before {
  background-color: #92629A;
}

/**
 * p-ohakaerabi
 */
/* [p-ohakaerabi]
-----------------------------------------------*/
.p-ohakaerabi-first {
  background-image: url("/lp/assets/img/ohakaerabi/main_bg@2x.jpg");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 30px 40px 64px;
  margin: 0;
  height: 640px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-first {
    margin: 0;
    padding: 0 0 64px;
    height: auto;
    padding-bottom: 56px;
    background-image: url("/lp/assets/img/ohakaerabi/main_bg_sp@2x.jpg");
  }
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-first-txt {
    padding: 24px 16px 8px;
  }
}
.p-ohakaerabi-first-image {
  position: absolute;
  top: -30px;
  right: -6vw;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-first-image {
    display: none;
  }
}
.p-ohakaerabi-first-h1 {
  margin: 0;
  margin-left: -53px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-first-h1 {
    margin-left: 0;
  }
}
.p-ohakaerabi-grid {
  display: flex;
  -webkit-column-gap: 60px;
     -moz-column-gap: 60px;
          column-gap: 60px;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-grid {
    flex-direction: column;
    align-items: center;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 80px;
  }
}
.p-ohakaerabi-grid > section {
  width: 100%;
  max-width: 320px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-grid > section {
    position: relative;
  }
  .p-ohakaerabi-grid > section::after {
    position: absolute;
    content: "";
    height: 1px;
    width: 100%;
    left: 0;
    bottom: -40px;
    background-color: #E0E0E0;
  }
  .p-ohakaerabi-grid > section:last-of-type::after {
    content: none;
  }
}
.p-ohakaerabi-grid--border-right {
  position: relative;
}
.p-ohakaerabi-grid--border-right::after {
  content: "";
  position: absolute;
  top: 0;
  right: -30px;
  height: 100%;
  width: 1px;
  background-color: #E0E0E0;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-grid--border-right::after {
    content: none;
  }
}
.p-ohakaerabi-grid-3 {
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-grid-3 {
    flex-wrap: wrap;
    row-gap: 32px;
  }
}
.p-ohakaerabi-grid-3-col {
  width: 33.3333333333%;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-grid-3-col {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .p-ohakaerabi-grid-3-col .c-title-sm {
    font-size: 2.4rem;
  }
}
.p-ohakaerabi-grid-3-box {
  padding: 30px 20px 0;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-grid-3-box {
    padding: 24px 24px 0;
  }
}
.p-ohakaerabi-grid-image {
  text-align: center;
}
.p-ohakaerabi-box {
  border-radius: 10px;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1019607843);
}
.p-ohakaerabi-box-head {
  background-color: #9C856A;
  border-radius: 10px 10px 0 0;
  text-align: center;
  color: #fff;
  padding: 17px 16px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-box-head {
    padding: 16px;
  }
}
.p-ohakaerabi-box-head--secondary {
  background-color: #92629A;
}
.p-ohakaerabi-box-body {
  background-color: #fff;
  border-radius: 0 0 10px 10px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  row-gap: 30px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-box-body {
    padding: 32px 16px;
    row-gap: 32px;
  }
}
.p-ohakaerabi-box-section {
  display: flex;
  align-items: flex-start;
  -webkit-column-gap: 44px;
     -moz-column-gap: 44px;
          column-gap: 44px;
}
@media screen and (max-width: 959px) {
  .p-ohakaerabi-box-section {
    flex-direction: column;
    align-items: center;
    row-gap: 24px;
  }
}
.p-ohakaerabi-box-grid-2 {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  align-items: flex-start;
}
@media screen and (max-width: 959px) {
  .p-ohakaerabi-box-grid-2 {
    flex-wrap: wrap;
    row-gap: 24px;
    align-items: center;
    justify-content: center;
  }
}
.p-ohakaerabi-commitment {
  background-color: #333;
  padding: 30px 0 60px;
  position: relative;
  z-index: 1;
  mix-blend-mode: luminosity;
}
.p-ohakaerabi-commitment-1::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  opacity: 0.8;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  background-image: url("/lp/assets/img/ohakaerabi/commitment_01_img@2x.jpg");
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-commitment-1::after {
    background-image: url("/lp/assets/img/ohakaerabi/commitment_01_sp_img@2x.jpg");
    width: 100%;
  }
}
.p-ohakaerabi-commitment-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  opacity: 0.8;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  background-image: url("/lp/assets/img/ohakaerabi/commitment_02_img@2x.jpg");
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-commitment-2::after {
    background-image: url("/lp/assets/img/ohakaerabi/commitment_02_sp_img@2x.jpg");
    width: 100%;
  }
}
.p-ohakaerabi-commitment-3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  opacity: 0.8;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: right;
  background-image: url("/lp/assets/img/ohakaerabi/commitment_03_img@2x.jpg");
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-commitment-3::after {
    background-image: url("/lp/assets/img/ohakaerabi/commitment_03_sp_img@2x.jpg");
    width: 100%;
  }
}
.p-ohakaerabi-commitment-en-txt {
  margin: 0;
  line-height: 1;
}
.p-ohakaerabi-commitment-en {
  font-size: 2.4rem;
  color: #9C856A;
  vertical-align: 24px;
  padding-right: 4px;
}
.p-ohakaerabi-commitment-num {
  font-size: 12.7rem;
  color: #333;
  -webkit-text-stroke: 1px #9C856A;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-commitment-num {
    font-size: 9.8rem;
  }
}
.p-ohakaerabi-commitment-txt {
  margin-top: -35px;
  margin-left: -8px;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-ohakaerabi-commitment-box {
  max-width: 576px;
  position: relative;
  z-index: 1;
}
.p-ohakaerabi-commitment-labels {
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-commitment-labels {
    flex-wrap: wrap;
    row-gap: 20px;
  }
}
.p-ohakaerabi-commitment-labels p {
  margin: 0;
}
.p-ohakaerabi-commitment--right {
  display: flex;
  justify-content: flex-end;
}
.p-ohakaerabi-voice {
  position: relative;
}
.p-ohakaerabi-voice-article {
  border-radius: 8px;
  background-color: #fff;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.1019607843);
}
.p-ohakaerabi-voice-article img {
  border-radius: 8px 8px 0 0;
  width: 100%;
}
.p-ohakaerabi-voice-article-body {
  border-radius: 0 0 8px 8px;
  padding: 20px;
}
.p-ohakaerabi-voice-article-title {
  font-size: 1.7rem;
  margin: calc((1.5 - 1) / 2 * -1em + 2px) 0;
}
.p-ohakaerabi-voice-article .c-text-xxs {
  color: #888888;
}
.p-ohakaerabi-voice .swiper-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  position: relative;
  margin-top: 24px;
  bottom: 0;
}
.p-ohakaerabi-voice .swiper-pagination-bullet {
  background-color: #ddd;
  opacity: 1;
  margin: 0;
  width: 10px;
  height: 10px;
}
.p-ohakaerabi-voice .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #92629A;
}
.p-ohakaerabi-voice .swiper-slide {
  height: auto;
}
.p-ohakaerabi-voice .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
  left: -15px;
}
.p-ohakaerabi-voice .swiper-button-next {
  right: -15px;
}
.p-ohakaerabi-voice .swiper-button-prev,
.p-ohakaerabi-voice .swiper-button-next {
  background-color: transparent;
  top: calc(50% - 15px);
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-voice .swiper-button-prev,
  .p-ohakaerabi-voice .swiper-button-next {
    display: none;
  }
}
.p-ohakaerabi-voice .swiper-button-next:after, .p-ohakaerabi-voice .swiper-rtl .swiper-button-prev:after,
.p-ohakaerabi-voice .swiper-button-prev:after, .p-ohakaerabi-voice .swiper-rtl .swiper-button-next:after {
  content: none;
}
.p-ohakaerabi-qa {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-qa {
    row-gap: 24px;
  }
}
.p-ohakaerabi-qa-section {
  padding-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-qa-section {
    padding-bottom: 40px;
  }
}
.p-ohakaerabi-q {
  display: flex;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  align-items: center;
  margin: 0;
  padding: 20px;
  border: 1px solid #d4d4d4;
  border-radius: 6px;
  position: relative;
  padding-right: 60px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-q {
    padding-right: 40px;
  }
}
.p-ohakaerabi-q-mark {
  font-size: 3rem;
  color: #BAA355;
  font-weight: bold;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.p-ohakaerabi-q::before, .p-ohakaerabi-q::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  height: 1px;
  width: 16px;
  background-color: #BAA355;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-q::before, .p-ohakaerabi-q::after {
    right: 16px;
  }
}
.p-ohakaerabi-q::after {
  -webkit-transform: rotate(90deg);
          transform: rotate(90deg);
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}
.p-ohakaerabi-q.open::after {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
.p-ohakaerabi-a {
  background-color: #fafafa;
  border-radius: 6px;
  height: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0 40px;
  transition: all 0.5s ease;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-a {
    padding: 0 16px;
  }
}
.p-ohakaerabi-a.open {
  height: auto;
  opacity: 1;
  padding: 40px;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-a.open {
    margin-bottom: 24px;
    padding: 20px 16px;
  }
}
.p-ohakaerabi-knowledge-buttons {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  margin-bottom: 35px;
}
@media screen and (max-width: 767px) {
  .p-ohakaerabi-knowledge-buttons {
    -webkit-column-gap: 35px;
       -moz-column-gap: 35px;
            column-gap: 35px;
    row-gap: 30px;
  }
}
.p-ohakaerabi-request-iframe {
  height: 760px;
}
@media print, screen and (max-width: 528px) {
  .p-ohakaerabi-request-iframe {
    height: 880px;
  }
}

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

.u-position--relative {
  position: relative;
}

.u-scroll-x--auto {
  flex-wrap: nowrap;
  justify-content: flex-start;
  overflow-x: auto;
  overflow-y: hidden;
  text-align: left;
}

/* [utility] text
--------------------------------*/
.u-weight--normal {
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

.u-font--sans-serif {
  font-family: "Zen Kaku Gothic New", "游ゴシック体", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Zen Kaku Gothic New", "MyHiragino", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
}

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

.u-font--en {
  font-family: "EB Garamond", sans-serif;
}

.u-font--eng-primary {
  font-family: Orbitron, "游ゴシック体", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Zen Kaku Gothic New", "MyHiragino", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, Verdana, Meiryo, sans-serif;
}

.u-font-style--normal {
  font-style: normal;
}

.u-font--uppercase {
  text-transform: uppercase;
}

.u-line-height--1 {
  line-height: 1;
}

.u-letter-spacing--01 {
  letter-spacing: 0.1em;
}

.u-letter-spacing--005 {
  letter-spacing: 0.05em;
}

/* [utility] text color
--------------------------------*/
.u-color--primary {
  color: #BAA355;
}

.u-color--secondary {
  color: #92629A;
}

.u-color--tertiary {
  color: #9C856A;
}

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

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

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

.u-color--gray {
  color: rgba(30, 30, 30, 0.3);
}

/* [utility] line-height+上下トリミング
--------------------------------*/
.u-line-height-minus--xl {
  margin: calc((2 - 1) / 2 * -1em) 0;
  line-height: 2;
}

.u-line-height-minus--lg {
  margin: calc((1.75 - 1) / 2 * -1em) 0;
  line-height: 1.75;
}

.u-line-height-minus--md {
  margin: calc((1.5 - 1) / 2 * -1em) 0;
  line-height: 1.5;
}

.u-line-height-minus--sm {
  margin: calc((1.25 - 1) / 2 * -1em) 0;
  line-height: 1.25;
}

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

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

/* [utility] border
--------------------------------*/
.u-border-top {
  border-top: 1px solid #E0E0E0;
}
.u-border-top--gray-light {
  border-top: 1px solid #8d8d8d;
}

.u-border-bottom {
  border-bottom: 1px solid #E0E0E0;
}
.u-border-bottom--gray-light {
  border-bottom: 1px solid #8d8d8d;
}

@media screen and (max-width: 767px) {
  .u-border-top--sm-down {
    border-top: 1px solid #086E93;
  }
}
/* [utility] bg
--------------------------------*/
.u-bg--white {
  background-color: #fff;
}

.u-bg--gray {
  background-color: #FDFDFD;
}

.u-bg--tertiary {
  background-color: rgba(156, 133, 106, 0.25);
}

/* [utility] width / height
--------------------------------*/
.u-fit-content {
  display: inline-block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 767px) {
  .u-fit-content--sm-down {
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

/* [utility] 非表示関連
--------------------------------*/
@media print, screen and (min-width: 1449px) {
  .u-visible--lg-down {
    display: none !important;
  }
}

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

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

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

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

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

.u-display--after-none::after {
  display: none;
}

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

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

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

/* [utility] order
--------------------------------*/
@media screen and (max-width: 767px) {
  .u-order-sm-down--1 {
    order: 1;
  }
  .u-order-sm-down--2 {
    order: 2;
  }
  .u-order-sm-down--3 {
    order: 3;
  }
  .u-order-sm-down--4 {
    order: 4;
  }
  .u-order-sm-down--5 {
    order: 5;
  }
  .u-order-sm-down--6 {
    order: 6;
  }
}
@media screen and (max-width: 959px) {
  .u-order-md-down--1 {
    order: 1;
  }
  .u-order-md-down--2 {
    order: 2;
  }
  .u-order-md-down--3 {
    order: 3;
  }
  .u-order-md-down--4 {
    order: 4;
  }
  .u-order-md-down--5 {
    order: 5;
  }
  .u-order-md-down--6 {
    order: 6;
  }
}
/* [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--xxs-sp {
  margin-top: 5px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-mr--lg {
  margin-right: 80px !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--xxl {
  margin-top: 120px !important;
}

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

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

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

@media screen and (max-width: 959px) {
  .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--xxs {
    margin-top: 8px !important;
  }
  .u-mb-md-down--xxs {
    margin-bottom: 8px !important;
  }
  .u-ml-md-down--xxs {
    margin-left: 8px !important;
  }
  .u-mr-md-down--xxs {
    margin-right: 8px !important;
  }
  .u-mt-md-down--xs {
    margin-top: 16px !important;
  }
  .u-mb-md-down--xs {
    margin-bottom: 16px !important;
  }
  .u-ml-md-down--xs {
    margin-left: 16px !important;
  }
  .u-mr-md-down--xs {
    margin-right: 16px !important;
  }
  .u-mt-md-down--sm {
    margin-top: 24px !important;
  }
  .u-mb-md-down--sm {
    margin-bottom: 24px !important;
  }
  .u-ml-md-down--sm {
    margin-left: 24px !important;
  }
  .u-mr-md-down--sm {
    margin-right: 24px !important;
  }
  .u-mt-md-down--md {
    margin-top: 30px !important;
  }
  .u-mb-md-down--md {
    margin-bottom: 30px !important;
  }
  .u-ml-md-down--md {
    margin-left: 30px !important;
  }
  .u-mr-md-down--md {
    margin-right: 30px !important;
  }
  .u-mt-md-down--lg {
    margin-top: 80px !important;
  }
  .u-mb-md-down--lg {
    margin-bottom: 80px !important;
  }
  .u-ml-md-down--lg {
    margin-left: 80px !important;
  }
  .u-mr-md-down--lg {
    margin-right: 80px !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--xxl {
    margin-top: 120px !important;
  }
  .u-mb-md-down--xxl {
    margin-bottom: 120px !important;
  }
  .u-ml-md-down--xxl {
    margin-left: 120px !important;
  }
  .u-mr-md-down--xxl {
    margin-right: 120px !important;
  }
}
@media print, screen and (min-width: 960px) {
  .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--xxs {
    margin-top: 8px !important;
  }
  .u-mb-md--xxs {
    margin-bottom: 8px !important;
  }
  .u-ml-md--xxs {
    margin-left: 8px !important;
  }
  .u-mr-md--xxs {
    margin-right: 8px !important;
  }
  .u-mt-md--xs {
    margin-top: 16px !important;
  }
  .u-mb-md--xs {
    margin-bottom: 16px !important;
  }
  .u-ml-md--xs {
    margin-left: 16px !important;
  }
  .u-mr-md--xs {
    margin-right: 16px !important;
  }
  .u-mt-md--sm {
    margin-top: 24px !important;
  }
  .u-mb-md--sm {
    margin-bottom: 24px !important;
  }
  .u-ml-md--sm {
    margin-left: 24px !important;
  }
  .u-mr-md--sm {
    margin-right: 24px !important;
  }
  .u-mt-md--md {
    margin-top: 30px !important;
  }
  .u-mb-md--md {
    margin-bottom: 30px !important;
  }
  .u-ml-md--md {
    margin-left: 30px !important;
  }
  .u-mr-md--md {
    margin-right: 30px !important;
  }
  .u-mt-md--lg {
    margin-top: 80px !important;
  }
  .u-mb-md--lg {
    margin-bottom: 80px !important;
  }
  .u-ml-md--lg {
    margin-left: 80px !important;
  }
  .u-mr-md--lg {
    margin-right: 80px !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--xxl {
    margin-top: 120px !important;
  }
  .u-mb-md--xxl {
    margin-bottom: 120px !important;
  }
  .u-ml-md--xxl {
    margin-left: 120px !important;
  }
  .u-mr-md--xxl {
    margin-right: 120px !important;
  }
}
@media print, screen and (min-width: 1449px) {
  .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--xxs {
    margin-top: 8px !important;
  }
  .u-mb-lg--xxs {
    margin-bottom: 8px !important;
  }
  .u-ml-lg--xxs {
    margin-left: 8px !important;
  }
  .u-mr-lg--xxs {
    margin-right: 8px !important;
  }
  .u-mt-lg--xs {
    margin-top: 16px !important;
  }
  .u-mb-lg--xs {
    margin-bottom: 16px !important;
  }
  .u-ml-lg--xs {
    margin-left: 16px !important;
  }
  .u-mr-lg--xs {
    margin-right: 16px !important;
  }
  .u-mt-lg--sm {
    margin-top: 24px !important;
  }
  .u-mb-lg--sm {
    margin-bottom: 24px !important;
  }
  .u-ml-lg--sm {
    margin-left: 24px !important;
  }
  .u-mr-lg--sm {
    margin-right: 24px !important;
  }
  .u-mt-lg--md {
    margin-top: 30px !important;
  }
  .u-mb-lg--md {
    margin-bottom: 30px !important;
  }
  .u-ml-lg--md {
    margin-left: 30px !important;
  }
  .u-mr-lg--md {
    margin-right: 30px !important;
  }
  .u-mt-sm--lg {
    margin-top: 80px !important;
  }
  .u-mb-sm--lg {
    margin-bottom: 80px !important;
  }
  .u-ml-sm--lg {
    margin-left: 80px !important;
  }
  .u-mr-sm--lg {
    margin-right: 80px !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--xxl {
    margin-top: 120px !important;
  }
  .u-mb-sm--xxl {
    margin-bottom: 120px !important;
  }
  .u-ml-sm--xxl {
    margin-left: 120px !important;
  }
  .u-mr-sm--xxl {
    margin-right: 120px !important;
  }
}
@media screen and (max-width: 1450px) {
  .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--xxs {
    margin-top: 8px !important;
  }
  .u-mb-lg-down--xxs {
    margin-bottom: 8px !important;
  }
  .u-ml-lg-down--xxs {
    margin-left: 8px !important;
  }
  .u-mr-lg-down--xxs {
    margin-right: 8px !important;
  }
  .u-mt-lg-down--xs {
    margin-top: 16px !important;
  }
  .u-mb-lg-down--xs {
    margin-bottom: 16px !important;
  }
  .u-ml-lg-down--xs {
    margin-left: 16px !important;
  }
  .u-mr-lg-down--xs {
    margin-right: 16px !important;
  }
  .u-mt-lg-down--sm {
    margin-top: 24px !important;
  }
  .u-mb-lg-down--sm {
    margin-bottom: 24px !important;
  }
  .u-ml-lg-down--sm {
    margin-left: 24px !important;
  }
  .u-mr-lg-down--sm {
    margin-right: 24px !important;
  }
  .u-mt-lg-down--md {
    margin-top: 30px !important;
  }
  .u-mb-lg-down--md {
    margin-bottom: 30px !important;
  }
  .u-ml-lg-down--md {
    margin-left: 30px !important;
  }
  .u-mr-lg-down--md {
    margin-right: 30px !important;
  }
  .u-mt-lg-down--lg {
    margin-top: 80px !important;
  }
  .u-mb-lg-down--lg {
    margin-bottom: 80px !important;
  }
  .u-ml-lg-down--lg {
    margin-left: 80px !important;
  }
  .u-mr-lg-down--lg {
    margin-right: 80px !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--xxl {
    margin-top: 120px !important;
  }
  .u-mb-lg-down--xxl {
    margin-bottom: 120px !important;
  }
  .u-ml-lg-down--xxl {
    margin-left: 120px !important;
  }
  .u-mr-lg-down--xxl {
    margin-right: 120px !important;
  }
}
@media print, 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--xxs {
    margin-top: 8px !important;
  }
  .u-mb-sm--xxs {
    margin-bottom: 8px !important;
  }
  .u-ml-sm--xxs {
    margin-left: 8px !important;
  }
  .u-mr-sm--xxs {
    margin-right: 8px !important;
  }
  .u-mt-sm--xs {
    margin-top: 16px !important;
  }
  .u-mb-sm--xs {
    margin-bottom: 16px !important;
  }
  .u-ml-sm--xs {
    margin-left: 16px !important;
  }
  .u-mr-sm--xs {
    margin-right: 16px !important;
  }
  .u-mt-sm--sm {
    margin-top: 24px !important;
  }
  .u-mb-sm--sm {
    margin-bottom: 24px !important;
  }
  .u-ml-sm--sm {
    margin-left: 24px !important;
  }
  .u-mr-sm--sm {
    margin-right: 24px !important;
  }
  .u-mt-sm--md {
    margin-top: 30px !important;
  }
  .u-mb-sm--md {
    margin-bottom: 30px !important;
  }
  .u-ml-sm--md {
    margin-left: 30px !important;
  }
  .u-mr-sm--md {
    margin-right: 30px !important;
  }
  .u-mt-sm--lg {
    margin-top: 80px !important;
  }
  .u-mb-sm--lg {
    margin-bottom: 80px !important;
  }
  .u-ml-sm--lg {
    margin-left: 80px !important;
  }
  .u-mr-sm--lg {
    margin-right: 80px !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--xxl {
    margin-top: 120px !important;
  }
  .u-mb-sm--xxl {
    margin-bottom: 120px !important;
  }
  .u-ml-sm--xxl {
    margin-left: 120px !important;
  }
  .u-mr-sm--xxl {
    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--xxs {
    margin-top: 8px !important;
  }
  .u-mb-sm-down--xxs {
    margin-bottom: 8px !important;
  }
  .u-ml-sm-down--xxs {
    margin-left: 8px !important;
  }
  .u-mr-sm-down--xxs {
    margin-right: 8px !important;
  }
  .u-mt-sm-down--xs {
    margin-top: 16px !important;
  }
  .u-mb-sm-down--xs {
    margin-bottom: 16px !important;
  }
  .u-ml-sm-down--xs {
    margin-left: 16px !important;
  }
  .u-mr-sm-down--xs {
    margin-right: 16px !important;
  }
  .u-mt-sm-down--sm {
    margin-top: 24px !important;
  }
  .u-mb-sm-down--sm {
    margin-bottom: 24px !important;
  }
  .u-ml-sm-down--sm {
    margin-left: 24px !important;
  }
  .u-mr-sm-down--sm {
    margin-right: 24px !important;
  }
  .u-mt-sm-down--md {
    margin-top: 30px !important;
  }
  .u-mb-sm-down--md {
    margin-bottom: 30px !important;
  }
  .u-ml-sm-down--md {
    margin-left: 30px !important;
  }
  .u-mr-sm-down--md {
    margin-right: 30px !important;
  }
  .u-mt-sm-down--md-2 {
    margin-top: 32px !important;
  }
  .u-mb-sm-down--md-2 {
    margin-bottom: 32px !important;
  }
  .u-ml-sm-down--md-2 {
    margin-left: 32px !important;
  }
  .u-mr-sm-down--md-2 {
    margin-right: 32px !important;
  }
  .u-mt-sm-down--lg {
    margin-top: 80px !important;
  }
  .u-mb-sm-down--lg {
    margin-bottom: 80px !important;
  }
  .u-ml-sm-down--lg {
    margin-left: 80px !important;
  }
  .u-mr-sm-down--lg {
    margin-right: 80px !important;
  }
  .u-mt-sm-down--xl {
    margin-top: 64px !important;
  }
  .u-mb-sm-down--xl {
    margin-bottom: 64px !important;
  }
  .u-ml-sm-down--xl {
    margin-left: 64px !important;
  }
  .u-mr-sm-down--xl {
    margin-right: 64px !important;
  }
  .u-mt-sm-down--xxl {
    margin-top: 120px !important;
  }
  .u-mb-sm-down--xxl {
    margin-bottom: 120px !important;
  }
  .u-ml-sm-down--xxl {
    margin-left: 120px !important;
  }
  .u-mr-sm-down--xxl {
    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--xxs {
  padding-top: 8px !important;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.u-pr--lg {
  padding-right: 80px !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--xxl {
  padding-top: 120px !important;
}

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

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

.u-pr--xxl {
  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--xxs {
    padding-top: 8px !important;
  }
  .u-pb-lg--xxs {
    padding-bottom: 8px !important;
  }
  .u-pl-lg--xxs {
    padding-left: 8px !important;
  }
  .u-pr-lg--xxs {
    padding-right: 8px !important;
  }
  .u-pt-lg--xs {
    padding-top: 16px !important;
  }
  .u-pb-lg--xs {
    padding-bottom: 16px !important;
  }
  .u-pl-lg--xs {
    padding-left: 16px !important;
  }
  .u-pr-lg--xs {
    padding-right: 16px !important;
  }
  .u-pt-lg--sm {
    padding-top: 24px !important;
  }
  .u-pb-lg--sm {
    padding-bottom: 24px !important;
  }
  .u-pl-lg--sm {
    padding-left: 24px !important;
  }
  .u-pr-lg--sm {
    padding-right: 24px !important;
  }
  .u-pt-lg--md {
    padding-top: 30px !important;
  }
  .u-pb-lg--md {
    padding-bottom: 30px !important;
  }
  .u-pl-lg--md {
    padding-left: 30px !important;
  }
  .u-pr-lg--md {
    padding-right: 30px !important;
  }
  .u-pt-lg--lg {
    padding-top: 80px !important;
  }
  .u-pb-lg--lg {
    padding-bottom: 80px !important;
  }
  .u-pl-lg--lg {
    padding-left: 80px !important;
  }
  .u-pr-lg--lg {
    padding-right: 80px !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--xxl {
    padding-top: 120px !important;
  }
  .u-pb-lg--xxl {
    padding-bottom: 120px !important;
  }
  .u-pl-lg--xxl {
    padding-left: 120px !important;
  }
  .u-pr-lg--xxl {
    padding-right: 120px !important;
  }
}
@media print, screen and (min-width: 768px) {
  .u-pt-sm--none {
    padding-top: 0 !important;
  }
  .u-pb-sm--none {
    padding-bottom: 0 !important;
  }
  .u-pl-sm--none {
    padding-left: 0 !important;
  }
  .u-pr-sm--none {
    padding-right: 0 !important;
  }
  .u-pt-sm--xxs {
    padding-top: 8px !important;
  }
  .u-pb-sm--xxs {
    padding-bottom: 8px !important;
  }
  .u-pl-sm--xxs {
    padding-left: 8px !important;
  }
  .u-pr-sm--xxs {
    padding-right: 8px !important;
  }
  .u-pt-sm--xs {
    padding-top: 16px !important;
  }
  .u-pb-sm--xs {
    padding-bottom: 16px !important;
  }
  .u-pl-sm--xs {
    padding-left: 16px !important;
  }
  .u-pr-sm--xs {
    padding-right: 16px !important;
  }
  .u-pt-sm--sm {
    padding-top: 24px !important;
  }
  .u-pb-sm--sm {
    padding-bottom: 24px !important;
  }
  .u-pl-sm--sm {
    padding-left: 24px !important;
  }
  .u-pr-sm--sm {
    padding-right: 24px !important;
  }
  .u-pt-sm--md {
    padding-top: 30px !important;
  }
  .u-pb-sm--md {
    padding-bottom: 30px !important;
  }
  .u-pl-sm--md {
    padding-left: 30px !important;
  }
  .u-pr-sm--md {
    padding-right: 30px !important;
  }
  .u-pt-sm--lg {
    padding-top: 80px !important;
  }
  .u-pb-lg--lg {
    padding-bottom: 80px !important;
  }
  .u-pl-lg--lg {
    padding-left: 80px !important;
  }
  .u-pr-lg--lg {
    padding-right: 80px !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--xxl {
    padding-top: 120px !important;
  }
  .u-pb-lg--xxl {
    padding-bottom: 120px !important;
  }
  .u-pl-lg--xxl {
    padding-left: 120px !important;
  }
  .u-pr-lg--xxl {
    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--xxs {
    padding-top: 8px !important;
  }
  .u-pb-sm-down--xxs {
    padding-bottom: 8px !important;
  }
  .u-pl-sm-down--xxs {
    padding-left: 8px !important;
  }
  .u-pr-sm-down--xxs {
    padding-right: 8px !important;
  }
  .u-pt-sm-down--xs {
    padding-top: 16px !important;
  }
  .u-pb-sm-down--xs {
    padding-bottom: 16px !important;
  }
  .u-pl-sm-down--xs {
    padding-left: 16px !important;
  }
  .u-pr-sm-down--xs {
    padding-right: 16px !important;
  }
  .u-pt-sm-down--sm {
    padding-top: 24px !important;
  }
  .u-pb-sm-down--sm {
    padding-bottom: 24px !important;
  }
  .u-pl-sm-down--sm {
    padding-left: 24px !important;
  }
  .u-pr-sm-down--sm {
    padding-right: 24px !important;
  }
  .u-pt-sm-down--md {
    padding-top: 30px !important;
  }
  .u-pb-sm-down--md {
    padding-bottom: 30px !important;
  }
  .u-pl-sm-down--md {
    padding-left: 30px !important;
  }
  .u-pr-sm-down--md {
    padding-right: 30px !important;
  }
  .u-pt-sm-down--lg {
    padding-top: 80px !important;
  }
  .u-pb-sm-down--lg {
    padding-bottom: 80px !important;
  }
  .u-pl-sm-down--lg {
    padding-left: 80px !important;
  }
  .u-pr-sm-down--lg {
    padding-right: 80px !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--xxl {
    padding-top: 120px !important;
  }
  .u-pb-sm-down--xxl {
    padding-bottom: 120px !important;
  }
  .u-pl-sm-down--xxl {
    padding-left: 120px !important;
  }
  .u-pr-sm-down--xxl {
    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 print, screen and (min-width: 1449px) {
  .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 (max-width: 1450px) {
  .u-align-lg-down--left {
    text-align: left !important;
  }
  .u-align-lg-down--center {
    text-align: center !important;
  }
  .u-align-lg-down--right {
    text-align: right !important;
  }
  .u-align-lg-down--justify {
    text-align: justify !important;
  }
}
@media print, 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 {
  font-size: 0.5em;
  vertical-align: super;
}

/* [utility] サイズ指定など
--------------------------------*/
.u-max-width--col-7 {
  max-width: 641.6666666667px;
}

.u-max-width--col-8 {
  max-width: 733.3333333333px;
}

.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 print, screen and (min-width: 1449px) {
  .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=style.css.map */