@charset "UTF-8";
/* Sanitize
 * ========================================================================== */
/**
 * Add border box sizing in all browsers (opinionated).
 */
html {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/**
 * 1. Add text decoration inheritance in all browsers (opinionated).
 * 2. Add vertical alignment inheritance in all browsers (opinionated).
 */
::before,
::after {
  text-decoration: inherit;
  /* 1 */
  vertical-align: inherit;
  /* 2 */
}

/**
 * 1. Use the default cursor in all browsers (opinionated).
 * 2. Change the line height in all browsers (opinionated).
 * 3. Use a 4-space tab width in all browsers (opinionated).
 * 4. Remove the grey highlight on links in iOS (opinionated).
 * 5. Prevent adjustments of font size after orientation changes in
 *		IE on Windows Phone and in iOS.
 * 6. Breaks words to prevent overflow in all browsers (opinionated).
 */
html {
  cursor: default;
  /* 1 */
  line-height: 1.5;
  /* 2 */
  -moz-tab-size: 4;
  /* 3 */
  -o-tab-size: 4;
     tab-size: 4;
  /* 3 */
  -webkit-tap-highlight-color: transparent;
  /* 4 */
  -ms-text-size-adjust: 100%;
  /* 5 */
  -webkit-text-size-adjust: 100%;
  /* 5 */
  word-break: break-word;
  /* 6 */
}

/* Sections
 * ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Edge, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
 * ========================================================================== */
/**
 * Remove the margin on nested lists in Chrome, Edge, IE, and Safari.
 */
dl dl,
dl ol,
dl ul,
ol dl,
ul dl {
  margin: 0;
}

/**
 * Remove the margin on nested lists in Edge 18- and IE.
 */
ol ol,
ol ul,
ul ol,
ul ul {
  margin: 0;
}

/**
 * 1. Add the correct sizing in Firefox.
 * 2. Show the overflow in Edge 18- and IE.
 */
hr {
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */
}

/**
 * Add the correct display in IE.
 */
main {
  display: block;
}

/**
 * Remove the list style on navigation lists in all browsers (opinionated).
 */
nav ol,
nav ul {
  list-style: none;
  padding: 0;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/* Text-level semantics
 * ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * Add the correct text decoration in Edge 18-, IE, and Safari.
 */
abbr[title] {
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/* Embedded content
 * ========================================================================== */
/*
 * Change the alignment on media elements in all browsers (opinionated).
 */
img {
  max-width: 100%;
  height: auto;
}

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

/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block;
}

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0;
}

/**
 * Remove the border on iframes in all browsers (opinionated).
 */
iframe {
  border-style: none;
}

/**
 * Remove the border on images within links in IE 10-.
 */
img {
  border-style: none;
}

/**
 * Change the fill color to match the text color in all browsers (opinionated).
 */
svg:not([fill]) {
  fill: currentColor;
}

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden;
}

/* Tabular data
 * ========================================================================== */
/**
 * Collapse border spacing in all browsers (opinionated).
 */
table {
  border-collapse: collapse;
}

/* Forms
 * ========================================================================== */
/**
 * Remove the margin on controls in Safari.
 */
button,
input,
select {
  margin: 0;
}

/**
 * 1. Show the overflow in IE.
 * 2. Remove the inheritance of text transform in Edge 18-, Firefox, and IE.
 */
button {
  overflow: visible;
  /* 1 */
  text-transform: none;
  /* 2 */
}

/**
 * Correct the inability to style buttons in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * 1. Change the inconsistent appearance in all browsers (opinionated).
 * 2. Correct the padding in Firefox.
 */
fieldset {
  border: 1px solid #a0a0a0;
  /* 1 */
  padding: 0.35em 0.75em 0.625em;
  /* 2 */
}

/**
 * Show the overflow in Edge 18- and IE.
 */
input {
  overflow: visible;
}

/**
 * 1. Correct the text wrapping in Edge 18- and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 */
legend {
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  white-space: normal;
  /* 1 */
  color: inherit;
  /* 2 */
}

/**
 * 1. Add the correct display in Edge 18- and IE.
 * 2. Add the correct vertical alignment in Chrome, Edge, and Firefox.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */
}

/**
 * Remove the inheritance of text transform in Firefox.
 */
select {
  text-transform: none;
}

/**
 * 1. Remove the margin in Firefox and Safari.
 * 2. Remove the default vertical scrollbar in IE.
 * 3. Change the resize direction in all browsers (opinionated).
 */
textarea {
  margin: 0;
  /* 1 */
  overflow: auto;
  /* 2 */
  resize: vertical;
  /* 3 */
}

/**
 * Remove the padding in IE 10-.
 */
[type=checkbox],
[type=radio] {
  padding: 0;
}

/**
 * 1. Correct the odd appearance in Chrome, Edge, and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Safari.
 */
::-webkit-inner-spin-button,
::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the text style of placeholders in Chrome, Edge, and Safari.
 */
::-webkit-input-placeholder {
  color: inherit;
  opacity: 0.54;
}

/**
 * Remove the inner padding in Chrome, Edge, and Safari on macOS.
 */
::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style upload buttons in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */
}

/**
 * Remove the inner border and padding of focus outlines in Firefox.
 */
::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus outline styles unset by the previous rule in Firefox.
 */
:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Remove the additional :invalid styles in Firefox.
 */
:-moz-ui-invalid {
  box-shadow: none;
}

/* Interactive
 * ========================================================================== */
/*
 * Add the correct display in Edge 18- and IE.
 */
details {
  display: block;
}

/*
 * Add the correct styles in Edge 18-, IE, and Safari.
 */
dialog {
  background-color: white;
  border: solid;
  color: black;
  display: block;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  left: 0;
  margin: auto;
  padding: 1em;
  position: absolute;
  right: 0;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
}

dialog:not([open]) {
  display: none;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Scripting
 * ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block;
}

/**
 * Add the correct display in IE.
 */
template {
  display: none;
}

/* User interaction
 * ========================================================================== */
/*
 * 1. Remove the tapping delay in IE 10.
 * 2. Remove the tapping delay on clickable elements
			in all browsers (opinionated).
 */
a,
area,
button,
input,
label,
select,
summary,
textarea,
[tabindex] {
  -ms-touch-action: manipulation;
  /* 1 */
  touch-action: manipulation;
  /* 2 */
}

/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none;
}

/* Accessibility
 * ========================================================================== */
/**
 * Change the cursor on busy elements in all browsers (opinionated).
 */
[aria-busy=true] {
  cursor: progress;
}

/*
 * Change the cursor on control elements in all browsers (opinionated).
 */
[aria-controls] {
  cursor: pointer;
}

/*
 * Change the cursor on disabled, not-editable, or otherwise
 * inoperable elements in all browsers (opinionated).
 */
[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

/*
 * Change the display on visually hidden accessible elements
 * in all browsers (opinionated).
 */
[aria-hidden=false][hidden] {
  display: initial;
}

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

/**
 * Add
 */
dl dd {
  margin-left: 0;
}

figure {
  margin: 0;
}

table {
  table-layout: fixed;
}

menu {
  padding: 0;
}

html {
  font-size: 2.66vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 62.5%;
  }
}

@media screen and (min-width: 767.98px) and (max-width: 990px) {
  html {
    /* font-size: 62.5%; */
  }
}
body {
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.8;
  color: #4d4d4d;
  letter-spacing: 0.05em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 500;
}

@media screen and (max-width: 767.98px) {
  body {
    line-height: 1.5;
    min-width: 1%;
    overflow-x: hidden;
    position: relative;
  }
}
img {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* mouseover
--------------------------------------------------*/
@media screen and (min-width: 768px) {
  .over:hover {
    opacity: 0.6;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
label {
  cursor: pointer;
}

/* link
--------------------------------------------------*/
a {
  color: #0851d7;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
a:link, a:active, a:visited {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  a:hover, a:focus {
    text-decoration: underline;
  }
}

picture {
  display: block;
}

#post {
  /* editor */
  /* img */
  /* clearfix */
}
#post .m-content__title {
  font-weight: 400;
  font-size: 2.2rem;
  line-height: 1.4;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #post .m-content__title {
    font-size: 4rem;
  }
}
#post h1,
#post h2,
#post h3,
#post h4,
#post h5,
#post h6 {
  font-weight: 700;
}
#post b {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #post h1 {
    font-size: 2.8rem;
  }
}
#post h2 {
  font-size: 1.6em;
}
@media screen and (min-width: 768px) {
  #post h2 {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  #post h3 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  #post h4 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  #post h5 {
    font-size: 2rem;
  }
}
#post p {
  font-size: 1.3em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #post p {
    font-size: 1.6rem;
  }
}
#post a {
  text-decoration: underline;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  #post a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#post .l-content__body {
  margin-top: 9.6vw;
  padding-bottom: 16vw;
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #post .l-content__body {
    max-width: 690px;
    padding-left: 15px;
    padding-right: 15px;
    padding-bottom: 120px;
    margin: 23px auto 0;
  }
}
#post hr {
  border: none;
  margin: 1em 0;
  border-top: 1px solid #c4c4c4;
}
#post ol {
  padding-left: 2em;
}
#post ul {
  padding-left: 2em;
  list-style: none;
  color: #000;
}
#post ul li {
  position: relative;
}
#post ul li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: -1em;
  width: 1.0666666667vw;
  height: 1.0666666667vw;
  border-radius: 50px;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  #post ul li::before {
    width: 4px;
    height: 4px;
    top: 0.8em;
  }
}
#post li {
  font-size: 1.4rem;
  margin: 0.5em 0;
}
@media screen and (min-width: 768px) {
  #post li {
    font-size: 1.8rem;
    margin: 0.1em 0;
  }
}
#post img {
  max-width: 100%;
  height: auto;
}
#post strong {
  font-weight: bold;
}
#post em {
  font-style: italic;
}
#post blockquote {
  display: block;
  -webkit-margin-before: 1em;
  -webkit-margin-after: 1em;
  -webkit-margin-start: 40px;
  -webkit-margin-end: 40px;
}
#post .aligncenter {
  display: block;
  margin: 0 auto;
}
#post .alignright {
  float: right;
}
#post .alignleft {
  float: left;
}
#post img[class*=wp-image-],
#post img[class*=attachment-] {
  height: auto;
  max-width: 100%;
}
#post .clearfix {
  overflow: hidden;
  zoom: 1;
}
#post .clearfix:after {
  content: "";
  display: block;
  clear: both;
}
#post figcaption {
  font-size: 1.2rem;
  color: #9c9c9c;
}
@media screen and (min-width: 768px) {
  #post figcaption {
    font-size: 1.3rem;
  }
}
#post figure {
  margin: 1em 0;
}
#post .wp-block-gallery {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  list-style-type: none;
  padding: 0;
}
#post .wp-block-gallery.columns-2 {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#post .wp-block-gallery.columns-2 li:nth-of-type(2n) {
  margin-right: 0;
}
#post .wp-block-gallery li {
  list-style: none;
  margin: 0 16px 16px 0;
  position: relative;
}
#post .wp-block-gallery li::before {
  display: none;
}
#post .wp-block-gallery .blocks-gallery-image,
#post .wp-block-gallery .blocks-gallery-item {
  width: calc(50% - 8px);
}
#post .wp-block-gallery .blocks-gallery-image figure,
#post .wp-block-gallery .blocks-gallery-item figure {
  margin: 0;
  height: 100%;
}

@media screen and (min-width: 768px) {
  #news #post .l-content__heading {
    margin: 40px auto 0;
    max-width: 790px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#news .m-text-link {
  text-align: right;
}
#news .m-text-link a {
  font-size: 1.4rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  padding: 0.2em 0;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  #news .m-text-link a {
    font-size: 1.6rem;
  }
  #news .m-text-link a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.p-heading__title {
  margin: 0;
  font-size: 0.9rem;
  color: #888;
  line-height: 1;
  padding: 1em 5.3333333333vw 1em 0;
  text-align: right;
  background-color: #f9f9f9;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .p-heading__title {
    padding-right: 23px;
  }
}

.l-header {
  background-color: #fff;
  border-bottom: 1px solid #c4c4c4;
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 99;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.l-header.is-wide {
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.l-header.is-wide .f-container {
  height: 17.0666666667vw;
}
@media screen and (min-width: 768px) {
  .l-header.is-wide .f-container {
    height: 63px;
  }
}
.l-header.is-front {
  background-color: transparent;
}
.l-header.is-front .f-container {
  background-color: transparent;
}
.l-header.is-front .f-container .h-logo svg {
  fill: #fff;
}
.l-header.is-front .menu-line {
  background-color: #fff;
}
.l-header.is-front .m-header-nav__link {
  color: #fff;
}
.l-header .f-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 10.6666666667vw;
  position: relative;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .l-header .f-container {
    height: 49px;
  }
}
.l-header .f-container .h-logo {
  margin: 0;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  line-height: 1;
  width: 23.7333333333vw;
  height: 100%;
  padding-left: 6.4vw;
}
@media screen and (min-width: 768px) {
  .l-header .f-container .h-logo {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: 98px;
    padding-left: 23px;
  }
  .l-header .f-container .h-logo:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.l-header .f-container .h-logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100%;
}
.l-header .f-container .h-logo svg {
  fill: #000;
}

/* ----------------------------------------------------------------------------------------------------
*	TOPページのみヘッダーアンダーラインなし
* --------------------------------------------------------------------------------------------------*/
#home .l-header {
  border: none;
}

/* ----------------------------------------------------------------------------------------------------
*	ハンバーガー
* --------------------------------------------------------------------------------------------------*/
.l-hamburger-menu {
  height: 100%;
  width: 16vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-hamburger-menu {
    width: 80px;
  }
}

.m-menu-btn {
  position: absolute;
  top: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  width: 100%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  z-index: 1;
  background-color: transparent;
  padding-right: 5vw;
  border: none;
}
@media screen and (min-width: 768px) {
  .m-menu-btn {
    padding-right: 30px;
    cursor: pointer;
  }
}

.menu-line {
  content: "";
  display: block;
  height: 2px;
  width: 7.4666666667vw;
  background-color: #000;
  margin: 0.2em 0;
}
@media screen and (min-width: 768px) {
  .menu-line {
    width: 28px;
  }
}

.menu-line__short {
  width: 4.2666666667vw;
}
@media screen and (min-width: 768px) {
  .menu-line__short {
    width: 16px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	ヘッダーナビゲーション
* --------------------------------------------------------------------------------------------------*/
.m-header-nav {
  margin-left: auto;
  height: 100%;
}
@media screen and (max-width: 767.98px) {
  .m-header-nav {
    display: none;
  }
}

.m-header-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
  margin: 0;
}

.m-header-nav__item {
  height: 100%;
  list-style: none;
}

.m-header-nav__link {
  color: #000;
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4px 20px 0;
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  .m-header-nav__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	ナビゲーション
* --------------------------------------------------------------------------------------------------*/
.m-close-button {
  position: absolute;
  width: 10.6666666667vw;
  height: 10.6666666667vw;
  top: 9.0666666667vw;
  right: 4.2666666667vw;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}
@media screen and (min-width: 768px) {
  .m-close-button {
    top: 35px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
}
.m-close-button span {
  position: absolute;
  width: 5.3333333333vw;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .m-close-button span {
    width: 20px;
  }
}
.m-close-button span:first-of-type {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.m-close-button span:last-of-type {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}

.l-menu-content {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: -1;
  opacity: 0;
  pointer-events: none;
  background-color: rgba(109, 101, 91, 0.98);
  -webkit-transition: 0.3s;
  transition: 0.3s;
  height: 100vh;
  overflow-y: scroll;
}
.l-menu-content * {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-menu-content {
    overflow: hidden;
  }
}

.l-header.is-open .l-menu-content {
  opacity: 1;
  pointer-events: auto;
  z-index: 10;
}

.l-menu-content__inner {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
}

.l-primary-secondaly__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.l-primary-nav {
  padding: 8vw 10.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .l-primary-nav {
    padding: 0;
    margin-top: auto;
  }
}

@media screen and (min-width: 768px) {
  .bl-primary-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (min-width: 768px) {
  .bl-primary-nav__item {
    margin: 0 3em;
  }
}

.m-primary-nav__link {
  font-size: 3.6rem;
  font-weight: 300;
}
@media screen and (min-width: 768px) {
  .m-primary-nav__link {
    font-size: 4rem;
  }
  .m-primary-nav__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.l-secondly-nav {
  padding: 0 10.6666666667vw 0;
}
@media screen and (min-width: 768px) {
  .l-secondly-nav {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

.m-secondly-nav__link {
  font-size: 1.6rem;
  font-weight: 700;
  display: block;
  width: 100%;
  padding: 0.3em 0;
}
@media screen and (min-width: 768px) {
  .m-secondly-nav__link {
    font-size: 1.8rem;
  }
  .m-secondly-nav__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.m-secondly-nav__link .m-en {
  min-width: 5em;
  display: inline-block;
}
.m-secondly-nav__link .m-jp {
  font-size: 1.1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  .m-secondly-nav__link .m-jp {
    font-size: 1.2rem;
  }
}

.l-utility-nav__wrapper {
  border-top: 1px solid #958e86;
  margin-top: 5vw;
}
@media screen and (min-width: 768px) {
  .l-utility-nav__wrapper {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    border-top: none;
    margin-top: 18px;
    background-color: rgba(96, 87, 77, 0.97);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-utility-nav__wrapper .l-flex {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-utility-nav__wrapper .l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 767.98px) and (max-width: 990px) {
  .l-utility-nav__wrapper .l-flex {
    display: block;
    width: 100%;
  }
}

.bl-tertiary-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.bl-tertiary-nav__item {
  margin: 0 0.7em;
}
@media screen and (min-width: 768px) {
  .bl-tertiary-nav__item {
    margin: 0 4em;
  }
}

.m-tertiary-nav__link {
  font-size: 1.4rem;
  padding: 1em 0;
  font-weight: 700;
  display: block;
}
@media screen and (min-width: 768px) {
  .m-tertiary-nav__link {
    font-size: 1.6rem;
  }
  .m-tertiary-nav__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.m-tertiary-nav__link svg {
  margin: 0 0 0 5px;
  vertical-align: middle;
}

.l-quaternary-nav {
  padding: 0 5.3333333333vw;
}
@media screen and (min-width: 767.98px) and (max-width: 990px) {
  .l-quaternary-nav {
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  .l-quaternary-nav {
    padding: 0;
    max-width: 670px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.bl-quaternary-nav__list {
  display: -ms-grid;
  display: grid;
  width: 100%;
  -ms-grid-columns: 1fr 0px 1fr;
  grid-template-columns: 1fr 1fr;
  /*-ms-grid-rows: 50% 0px 50%;*/
  /*grid-template-rows: 50% 50%;*/
  gap: 0px 0px;
      grid-template-areas: "l-q-nav01 l-q-nav01" "l-q-nav02 l-q-nav03";
}
@media screen and (min-width: 768px) {
  .bl-quaternary-nav__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.bl-quaternary-nav__item {
  border: 1px solid #d2d1cd;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .bl-quaternary-nav__item {
    margin: 0 1.5em;
  }
}
@media screen and (min-width: 767.98px) and (max-width: 990px) {
  .bl-quaternary-nav__item {
    margin: 0 1em;
  }
}

.l-q-nav01 {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: l-q-nav01;
}
@media screen and (max-width: 767.98px) {
  .l-q-nav01 {
    border-bottom: none;
  }
}
@media screen and (min-width: 768px) {
  .l-q-nav01 {
    max-width: 46%;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.l-q-nav02 {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  grid-area: l-q-nav02;
}
@media screen and (min-width: 768px) {
  .l-q-nav02 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.l-q-nav03 {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  grid-area: l-q-nav03;
}
@media screen and (max-width: 767.98px) {
  .l-q-nav03 {
    border-left: none;
  }
}
@media screen and (min-width: 768px) {
  .l-q-nav03 {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}

.bl-quaternary-nav__link {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  text-align: center;
  padding: 1em;
}
@media screen and (min-width: 768px) {
  .bl-quaternary-nav__link {
    font-size: 1.3rem;
    width: 100%;
    white-space: nowrap;
  }
  .bl-quaternary-nav__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.l-tel {
  padding: 3.7333333333vw 5.8666666667vw;
  background-color: rgba(96, 87, 77, 0.97);
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  .l-tel {
    background-color: transparent;
    padding: 0;
    margin-left: 3vw;
    margin-top: 0.8em;
  }
}
@media screen and (min-width: 767.98px) and (max-width: 990px) {
  .l-tel {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 4vw;
  }
}
.l-tel .m-text {
  margin: 0;
  font-size: 1.2rem;
}
.l-tel .m-tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  .l-tel .m-tel {
    padding-left: 0;
  }
}
.l-tel .m-tel a {
  font-size: 1.6rem;
  font-weight: 500;
  padding: 0.5em 1em 0.5em 0.5em;
  white-space: nowrap;
}
.l-tel .m-tel .m-text {
  font-size: 1.1rem;
}
.l-tel .m-icon {
  display: inline-block;
  width: 3.2vw;
}
@media screen and (min-width: 768px) {
  .l-tel .m-icon {
    width: 14px;
  }
}

.l-logo__wrapper {
  background-color: rgba(96, 87, 77, 0.97);
  padding-bottom: 26.6666666667vw;
  padding-top: 12vw;
}
@media screen and (min-width: 768px) {
  .l-logo__wrapper {
    padding-top: 0;
    padding-bottom: 20px;
    margin-top: auto;
  }
}

.l-nav-logo {
  width: 46.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-nav-logo {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: auto;
    max-width: 170px;
  }
  .l-nav-logo:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.l-nav-logo a {
  display: block;
}
@media screen and (min-width: 768px) {
  .l-nav-logo a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.l-footer {
  background-color: #fff;
}

.l-footer__inner {
  border-top: 1px solid #bdbcbc;
  position: relative;
}

.m-footer__text {
  font-size: 1.2rem;
  padding: 4.2666666667vw 12.2666666667vw;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .m-footer__text {
    text-align: center;
    padding: 6px 0;
  }
}

.l-footer-bg-text__wrapper {
  background-color: #000;
  position: relative;
  height: 150.1333333333vw;
}
@media screen and (min-width: 768px) {
  .l-footer-bg-text__wrapper {
    height: 1132px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

@media screen and (min-width: 768px) {
  .l-footer-text__wrapper {
    width: 50%;
    height: 100%;
  }
}

.l-bg01 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer01.jpg);
  background-position: center center;
}

.l-bg02 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer02.jpg);
  background-position: center center;
}

.l-bg03 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer03.jpg);
  background-position: center right;
}

.l-bg04 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer04.jpg);
  background-position: top center;
}

.l-bg05 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer05.jpg);
  background-position: center center;
}

.l-bg06 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer06.jpg);
  background-position: center left;
}

.l-bg07 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer07.jpg);
  background-position: bottom left;
}

.l-bg08 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer08.jpg);
  background-position: center center;
}

.l-bg08 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer08.jpg);
  background-position: center center;
}

.l-bg09 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer09.jpg);
  background-position: center right;
}

.l-bg10 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer10.jpg);
  background-position: center center;
}

.l-bg11 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer11.jpg);
  background-position: center right;
}

.l-bg12 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer12.jpg);
  background-position: center right;
}

.l-bg13 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer13.jpg);
  background-position: bottom center;
}

.l-bg14 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer14.jpg);
  background-position: center center;
}

.l-bg15 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer15.jpg);
  background-position: center center;
}

.l-bg16 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer16.jpg);
  background-position: center left;
}

.l-bg17 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer17.jpg);
  background-position: center center;
}

.l-bg18 .l-footer-bg {
  background-image: url(../../assets/img/common/bg_footer18.jpg);
  background-position: center right;
}

@media screen and (max-width: 767.98px) {
  .l-bg01 .m-footer-logo svg,
.l-bg02 .m-footer-logo svg,
.l-bg05 .m-footer-logo svg,
.l-bg06 .m-footer-logo svg,
.l-bg08 .m-footer-logo svg,
.l-bg09 .m-footer-logo svg,
.l-bg12 .m-footer-logo svg,
.l-bg13 .m-footer-logo svg,
.l-bg16 .m-footer-logo svg {
    fill: #000;
  }
  .l-bg01 .l-footer-text__wrapper *,
.l-bg02 .l-footer-text__wrapper *,
.l-bg05 .l-footer-text__wrapper *,
.l-bg06 .l-footer-text__wrapper *,
.l-bg08 .l-footer-text__wrapper *,
.l-bg09 .l-footer-text__wrapper *,
.l-bg12 .l-footer-text__wrapper *,
.l-bg13 .l-footer-text__wrapper *,
.l-bg16 .l-footer-text__wrapper * {
    color: #000;
  }
  .l-bg01 .m-footer-nav__item.m-external svg,
.l-bg02 .m-footer-nav__item.m-external svg,
.l-bg05 .m-footer-nav__item.m-external svg,
.l-bg06 .m-footer-nav__item.m-external svg,
.l-bg08 .m-footer-nav__item.m-external svg,
.l-bg09 .m-footer-nav__item.m-external svg,
.l-bg12 .m-footer-nav__item.m-external svg,
.l-bg13 .m-footer-nav__item.m-external svg,
.l-bg16 .m-footer-nav__item.m-external svg {
    fill: #000;
  }
}
.l-footer-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  bottom: 0;
  left: 0;
  right: 0;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .l-footer-bg {
    width: 50%;
    position: static;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.l-footer-text__wrapper {
  position: relative;
  z-index: 2;
  padding: 7.4666666667vw 8.5333333333vw;
  height: 100%;
}
.l-footer-text__wrapper * {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .l-footer-text__wrapper {
    padding: 0 30px 114px 113px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}

.l-link-logo__wrapper {
  padding: 9.0666666667vw 8.5333333333vw;
}

.bl-footer__list {
  margin: 0;
}

.m-footer-nav__item.m-external {
  margin-top: 28px;
}
.m-footer-nav__item.m-external svg {
  fill: #fff;
  margin: 0 0 0 5px;
  vertical-align: middle;
}

.m-footer-nav__link {
  font-size: 1.3rem;
  font-weight: 700;
  color: currentColor;
  padding: 0.6em 0;
  display: block;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .m-footer-nav__link {
    font-weight: 500;
    font-size: 1.4rem;
    padding: 0.4em 0;
    letter-spacing: 0.1em;
  }
  .m-footer-nav__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.m-footer-logo {
  width: 55.7333333333vw;
  position: absolute;
  bottom: 8vw;
  left: 0;
  right: 0;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .m-footer-logo {
    -webkit-transition: 0.4s;
    transition: 0.4s;
    width: auto;
    position: static;
    margin: 74px 0 0;
    max-width: 340px;
  }
  .m-footer-logo:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.m-footer-logo svg {
  fill: #fff;
}

.m-copyright {
  font-size: 1.3rem;
  font-weight: 500;
  margin-top: 10.6666666667vw;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .m-copyright {
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    margin-top: 28px;
  }
}

.preload * {
  -webkit-transition: none !important;
  transition: none !important;
}

@media (min-width: 768px) {
  a[href*="tel:"] {
    text-decoration: none;
    cursor: default;
    pointer-events: none;
  }
}
body.is-fixed {
  height: 100vh;
  position: fixed;
  overflow-y: hidden;
  width: 100%;
}

.l-content__inner {
  width: 100%;
  padding-right: 7.4666666667vw;
  padding-left: 7.4666666667vw;
}
.l-content__inner.l-narrow {
  padding-left: 10.6666666667vw;
  padding-right: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-content__inner {
    max-width: 1110px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 0 auto;
  }
}

.l-content__heading {
  margin: 2.6666666667vw 0 8vw;
}
@media screen and (min-width: 768px) {
  .l-content__heading {
    margin: 0 0 30px;
  }
}

.m-content__title {
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: 0.05em;
  font-size: 2.6rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .m-content__title {
    font-size: 4.4rem;
    text-align: center;
  }
}
.m-content__title .m-sub {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  .m-content__title .m-sub {
    font-size: 1.6rem;
  }
}

.l-textcenter {
  text-align: center;
}

.m-text {
  font-size: 1.4rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .m-text {
    font-size: 1.6rem;
  }
}

.m-title {
  font-size: 2.2rem;
}
@media screen and (min-width: 768px) {
  .m-title {
    font-size: 3.4rem;
  }
}

.m-link {
  font-size: 1.4rem;
  display: block;
  border: 1px solid #4d4d4d;
  text-align: center;
  font-weight: 700;
  padding: 0.6em 1em;
  width: 100%;
  color: currentColor;
  text-decoration: none;
}
.m-link:focus {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  .m-link {
    padding: 0.5em 1em;
  }
  .m-link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

#home .l-link__wrapper .m-link + .m-link{
  margin: 30px auto 0 auto;
}

.m-en {
  font-family: "Hind", sans-serif;
}

.bl-section__heading {
  position: relative;
  margin-bottom: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  .bl-section__heading {
    margin-bottom: 15px;
  }
}

.m-section__title {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  font-family: "Hind", sans-serif;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .m-section__title {
    font-size: 3.2rem;
  }
}

.m-section__link {
  font-size: 1.2rem;
  position: absolute;
  right: 0;
  top: 45%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  color: currentColor;
  padding: 1em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .m-section__link {
    font-size: 1.6rem;
    top: auto;
    bottom: -5px;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    padding: 1em 2em 0;
  }
  .m-section__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

.l-bg-right-gray {
  background-color: #f3f3f3;
}

.m-has-arrow .m-arrow {
  display: inline-block;
  padding-right: 0.5em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.m-has-arrow:hover .m-arrow {
  padding-right: 0.2em;
  padding-left: 0.3em;
}

/* ----------------------------------------------------------------------------------------------------
	*	faq
	* --------------------------------------------------------------------------------------------------*/
.l-faq {
  padding-top: 11.7333333333vw;
  padding-bottom: 14.6666666667vw;
}
@media screen and (min-width: 768px) {
  .l-faq {
    padding-top: 80px;
    padding-bottom: 99px;
    max-width: 910px;
    margin: 0 auto;
  }
}

.bl_faq {
  border-top: 1px solid #c4c4c4;
  margin: 0;
}
.bl_faq:last-of-type {
  border-bottom: 1px solid #c4c4c4;
}

.bl_faq_q.is_faq_open {
  background-color: rgb(243, 243, 243);
}
.bl_faq_q.is_faq_open .bl_faq__button::after {
  -webkit-transform: translateY(-10%) rotate(225deg);
          transform: translateY(-10%) rotate(225deg);
}

.bl_faq__button {
  border: none;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  width: 100%;
  text-align: left;
  line-height: 1.4;
  padding: 0.9em 10.6666666667vw 0.9em 5.0666666667vw;
}
@media screen and (max-width: 767.98px) {
  .bl_faq__button {
    color: currentColor;
  }
}
@media screen and (min-width: 768px) {
  .bl_faq__button {
    padding: 1.8em 60px 1.8em 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  .bl_faq__button:hover {
    background-color: #fafafa;
  }
}
.bl_faq__button::after {
  content: "";
  position: absolute;
  width: 2.6666666667vw;
  height: 2.6666666667vw;
  border-bottom: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  top: 50%;
  right: 4.5333333333vw;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .bl_faq__button::after {
    width: 10px;
    height: 10px;
    right: 30px;
  }
}
.bl_faq__button span {
  font-size: 1.3rem;
  color: #4d4d4d;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (min-width: 768px) {
  .bl_faq__button span {
    font-size: 1.8rem;
  }
}

.bl_faq_a {
  background: rgba(207, 207, 207, 0.1);
  padding: 2.5333333333vw 10.6666666667vw 3.2vw 5.0666666667vw;
  display: none;
}
@media screen and (min-width: 768px) {
  .bl_faq_a {
    padding: 0.2em 20px 0.2em 20px;
  }
}

.bl_faq_a {
  clear: both;
}
.bl_faq_a h1,
.bl_faq_a h2,
.bl_faq_a h3,
.bl_faq_a h4,
.bl_faq_a h5,
.bl_faq_a h6 {
  font-weight: 700;
}
.bl_faq_a b {
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .bl_faq_a h1 {
    font-size: 2.8rem;
  }
}
.bl_faq_a h2 {
  font-size: 1.6em;
}
@media screen and (min-width: 768px) {
  .bl_faq_a h2 {
    font-size: 2.6rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_faq_a h3 {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_faq_a h4 {
    font-size: 2.2rem;
  }
}
@media screen and (min-width: 768px) {
  .bl_faq_a h5 {
    font-size: 2rem;
  }
}
.bl_faq_a p {
  font-size: 1.3em;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .bl_faq_a p {
    font-size: 1.6rem;
  }
}
.bl_faq_a figure {
  margin: 1em 0;
}
.bl_faq_a figcaption {
  font-size: 1.2rem;
  color: #9c9c9c;
}
@media screen and (min-width: 768px) {
  .bl_faq_a figcaption {
    margin-top: 0.5em;
    font-size: 1.3rem;
  }
}
.bl_faq_a a {
  color: currentColor;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .bl_faq_a a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.bl_faq_a ol {
  padding-left: 2em;
}
.bl_faq_a ul {
  padding-left: 2em;
  list-style: none;
  color: #000;
}
.bl_faq_a ul li {
  position: relative;
}
.bl_faq_a ul li::before {
  content: "";
  position: absolute;
  top: 0.65em;
  left: -1em;
  width: 1.0666666667vw;
  height: 1.0666666667vw;
  border-radius: 50px;
  background-color: #000;
}
@media screen and (min-width: 768px) {
  .bl_faq_a ul li::before {
    width: 4px;
    height: 4px;
    top: 0.8em;
  }
}
.bl_faq_a li {
  font-size: 1.3rem;
  margin: 0.5em 0;
}
@media screen and (min-width: 768px) {
  .bl_faq_a li {
    font-size: 1.8rem;
    margin: 0.1em 0;
  }
}
.bl_faq_a img {
  max-width: 100%;
  height: auto;
}
.bl_faq_a .m-text-link a {
  font-size: 1.3rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  padding: 0.2em 0;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  .bl_faq_a .m-text-link a {
    font-size: 1.6rem;
  }
  .bl_faq_a .m-text-link a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.bl_faq_a hr {
  border: none;
  margin: 2em 0;
  border-top: 1px solid #c4c4c4;
}
.bl_faq_a strong {
  font-weight: bold;
}
.bl_faq_a em {
  font-style: italic;
}
.bl_faq_a .aligncenter {
  display: block;
  margin: 0 auto;
}
.bl_faq_a .alignright {
  float: right;
}
.bl_faq_a .alignleft {
  float: left;
}

.clearfix {
  overflow: hidden;
  zoom: 1;
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.hp-center {
  text-align: center;
}

.hp-right {
  text-align: right;
}

.bl_faq__text {
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  .bl_faq__text {
    font-size: 1.6rem;
  }
}

/* ----------------------------------------------------------------------------------------------------
	*	ニュース
	* --------------------------------------------------------------------------------------------------*/
.l-news {
  padding-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  .l-news {
    padding-top: 73px;
  }
}

.bl-news__list,
.bl-news__item {
  margin: 0;
  padding: 0;
  list-style: none;
}

.bl-news__item {
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
  border-top: 1px solid #c4c4c4;
}
@media screen and (min-width: 768px) {
  .bl-news__item {
    padding-left: 0;
    padding-right: 0;
  }
/*
  .bl-news__item:last-of-type {
    border-bottom: 1px solid #c4c4c4;
  }
*/
}

.m-news__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
      -ms-flex-direction: column-reverse;
          flex-direction: column-reverse;
  color: currentColor;
  padding: 1em 0;
  text-decoration: none !important;
}
@media screen and (min-width: 768px) {
  .m-news__link {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    padding: 2.4em 20px;
  }
  .m-news__link:hover {
    background-color: #fafafa;
  }
}
.m-news__link p {
  font-size: 1.3rem;
  margin: 0;
  line-height: 1.4;
  min-height: 2em;
  color: #4d4d4d;
}
@media screen and (min-width: 768px) {
  .m-news__link p {
    font-size: 1.8rem;
    min-height: inherit;
  }
}
.m-news__link time {
  margin-top: 0.5em;
  font-size: 1.1rem;
  color: #9c9c9c;
}
@media screen and (min-width: 768px) {
  .m-news__link time {
    font-size: 1.6rem;
    margin-top: -0.05em;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 30px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	パンくず
* --------------------------------------------------------------------------------------------------*/
.breadcrumb__list {
  font-size: 1.2rem;
  list-style: none;
  color: #888;
  margin: 0;
  background-color: #efefef;
  padding: 5.3333333333vw 6.4vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .breadcrumb__list {
    background-color: transparent;
    padding: 15px 27px;
  }
}
.breadcrumb__list .breadcrumb__item {
  display: inline;
}
.breadcrumb__list a {
  position: relative;
  color: currentColor;
  display: inline-block;
  padding-right: 1em;
}
.breadcrumb__list a::after {
  content: ">";
  position: absolute;
  top: 50%;
  right: 0.2em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  .breadcrumb__list a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	エフェクト
* --------------------------------------------------------------------------------------------------*/
.fade-up {
  opacity: 0;
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
}

.effect {
  -webkit-animation: imgbrightness 1s ease-out forwards;
          animation: imgbrightness 1s ease-out forwards;
}

@-webkit-keyframes imgbrightness {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    /* filter: brightness(300%); */
    /*　明度300%　*/
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* filter: brightness(100%); */
    /*　100%が基準値　*/
  }
}

@keyframes imgbrightness {
  0% {
    opacity: 0;
    -webkit-transform: translateY(100px);
            transform: translateY(100px);
    /* filter: brightness(300%); */
    /*　明度300%　*/
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
    /* filter: brightness(100%); */
    /*　100%が基準値　*/
  }
}
/* ----------------------------------------------------------------------------------------------------
*	利用規約とプライバシーポリシーとエラーとメンテナンス（テキストベースのページ）
* --------------------------------------------------------------------------------------------------*/
#oth {
  /* ----------------------------------------------------------------------------------------------------
  *	エラー メンテナンス
  * --------------------------------------------------------------------------------------------------*/
}
#oth .l-content__heading {
  padding-top: 8vw;
  margin-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #oth .l-content__heading {
    padding-top: 23px;
    margin-bottom: 70px;
  }
}
#oth .l-content__heading .l-content__inner {
  padding-left: 5.8666666667vw;
  padding-right: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  #oth .l-content__heading .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#oth .l-content__body {
  padding-bottom: 22.4vw;
}
@media screen and (min-width: 768px) {
  #oth .l-content__body {
    padding-bottom: 194px;
  }
}
#oth .l-content__body .l-content__inner {
  padding-left: 11.4666666667vw;
  padding-right: 11.2vw;
}
@media screen and (min-width: 768px) {
  #oth .l-content__body .l-content__inner {
    max-width: 830px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#oth .bl-content + .bl-content {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  #oth .bl-content + .bl-content {
    margin-top: 64px;
  }
}
#oth .bl-content div + div {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  #oth .bl-content div + div {
    margin-top: 42px;
  }
}
#oth .l-content__title {
  font-size: 2.2rem;
  margin: 0.5em 0;
}
@media screen and (min-width: 768px) {
  #oth .l-content__title {
    margin: 0.3em 0;
  }
}
#oth .m-large-title {
  font-size: 2rem;
  margin: 0.8em 0;
}
@media screen and (min-width: 768px) {
  #oth .m-large-title {
    font-size: 2.4rem;
    margin: 0.3em 0;
  }
}
#oth .m-middle-title {
  font-size: 1.6rem;
  margin: 0.8em 0 0.5em;
}
@media screen and (min-width: 768px) {
  #oth .m-middle-title {
    font-size: 1.8rem;
    margin: 0.3em 0 0;
  }
}
#oth .m-title {
  font-size: 1.8rem;
  margin: 0.5em 0;
}
@media screen and (min-width: 768px) {
  #oth .m-title {
    font-size: 1.6rem;
    margin: 0.3em 0;
  }
}
#oth .m-text {
  font-size: 1.4rem;
  margin: 0.3em 0;
}
@media screen and (min-width: 768px) {
  #oth .m-text {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
#oth .m-text + .m-text {
  margin-top: 1em;
}
#oth .m-text + .m-list {
  margin-top: 1.5em;
}
#oth .m-list + .m-text {
  margin-top: 1.5em;
}
#oth .m-list {
  padding-left: 1.5em;
  font-size: 1.4rem;
  margin: 0.5em 0;
}
@media screen and (min-width: 768px) {
  #oth .m-list {
    font-size: 1.6rem;
    margin: 0.3em 0;
  }
}
#oth .m-list li {
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #oth .m-list li {
    line-height: 1.6;
  }
}
#oth .l-tel-mail-area {
  background-color: #f3f3f3;
  padding: 2.6666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 5.3333333333vw 0 0;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area {
    margin: 10px auto 57px;
    padding: 25px 50px;
  }
}
#oth .l-tel-mail-area .l-tel-mail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area .l-tel-mail__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#oth .l-tel-mail-area .m-text {
  font-size: 1.1rem;
  padding-left: 3.2em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area .m-text {
    font-size: 1.3rem;
  }
}
#oth .l-tel-mail-area a {
  font-size: 1.4rem;
  color: currentColor;
  padding: 0.4em 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area a {
    font-size: 1.6rem;
  }
}
#oth .l-tel-mail-area a:hover {
  text-decoration: none;
}
#oth .l-tel-mail-area a:hover:hover {
  opacity: 0.7;
  text-decoration: none;
}
#oth .l-tel-mail-area a i {
  min-width: 2.5em;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area a i {
    min-width: inherit;
    padding-right: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area a.m-mail {
    margin-right: 2em;
  }
}
#oth .l-tel-mail-area a.m-mail i {
  position: relative;
  top: 0.4em;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area a.m-mail i {
    top: 0.65em;
  }
}
#oth .l-tel-mail-area a.m-mail i img {
  display: inline-block;
  width: 4vw;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area a.m-mail i img {
    width: 16px;
  }
}
#oth .l-tel-mail-area a.m-tel i {
  position: relative;
  top: 0.1em;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area a.m-tel i {
    top: 0.3em;
  }
}
#oth .l-tel-mail-area a.m-tel i img {
  display: inline-block;
  width: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  #oth .l-tel-mail-area a.m-tel i img {
    width: 11px;
  }
}
#oth .l-content-center {
  max-inline-size: -webkit-max-content;
  max-inline-size: -moz-max-content;
  max-inline-size: max-content;
  margin-inline: auto;
  min-height: 107.7333333333vw;
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center {
    min-height: 415px;
    padding-top: 58px;
  }
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#oth .l-content-center .m-title {
  font-size: 3.9rem;
  font-weight: 300;
  text-align: center;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .m-title {
    font-size: 5.2rem;
  }
}
#oth .l-content-center .m-en {
  display: block;
}
#oth .l-content-center .m-jp {
  display: block;
  font-size: 1.8rem;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .m-jp {
    font-size: 2rem;
  }
}
#oth .l-content-center .m-text {
  margin-top: 2.5em;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .m-text {
    text-align: center;
    font-size: 1.4rem;
    margin-top: 2.5em;
  }
}
#oth .l-content-center .l-link__wrapper {
  margin-top: 2em;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-link__wrapper {
    margin-top: 1.5em;
  }
}
#oth .l-content-center .l-link__wrapper a {
  font-size: 1.4rem;
  font-weight: 700;
  color: currentColor;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-link__wrapper a {
    font-size: 1.6rem;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #oth .l-content-center .l-link__wrapper a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#oth .l-content-center .l-tel-mail-area {
  background-color: #f3f3f3;
  padding: 2.6666666667vw 2.6666666667vw 5.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 2.6666666667vw 0 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area {
    max-width: 400px;
    margin: 10px auto 57px;
    padding: 15px 50px;
  }
}
#oth .l-content-center .l-tel-mail-area .l-tel-mail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area .l-tel-mail__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#oth .l-content-center .l-tel-mail-area .m-text {
  font-size: 1.1rem;
  padding-left: 3.2em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area .m-text {
    padding-left: 0;
    text-align: center;
    margin-top: 0.6em;
  }
}
#oth .l-content-center .l-tel-mail-area a {
  font-size: 1.4rem;
  color: currentColor;
  padding: 0.4em 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: none;
}
#oth .l-content-center .l-tel-mail-area a:hover {
  text-decoration: none;
}
#oth .l-content-center .l-tel-mail-area a:hover:hover {
  opacity: 0.7;
  text-decoration: none;
}
#oth .l-content-center .l-tel-mail-area a i {
  min-width: 2.5em;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area a i {
    min-width: inherit;
    padding-right: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area a.m-mail {
    margin-right: 2em;
  }
}
#oth .l-content-center .l-tel-mail-area a.m-mail i {
  position: relative;
  top: 0.4em;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area a.m-mail i {
    top: 0.65em;
  }
}
#oth .l-content-center .l-tel-mail-area a.m-mail i img {
  display: inline-block;
  width: 4vw;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area a.m-mail i img {
    width: 16px;
  }
}
#oth .l-content-center .l-tel-mail-area a.m-tel i {
  position: relative;
  top: 0.1em;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area a.m-tel i {
    top: 0.3em;
  }
}
#oth .l-content-center .l-tel-mail-area a.m-tel i img {
  display: inline-block;
  width: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  #oth .l-content-center .l-tel-mail-area a.m-tel i img {
    width: 11px;
  }
}
#oth.maintenance {
  min-height: 100vh;
  min-height: 100svh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#oth.maintenance main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#oth.maintenance .l-content-center {
  min-height: inherit;
}
#oth.maintenance .m-title,
#oth.maintenance .m-title .m-jp {
  font-size: 2.1rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #oth.maintenance .m-title,
#oth.maintenance .m-title .m-jp {
    font-size: 2.8rem;
  }
}
#oth.maintenance .m-title + .m-text {
  margin-top: 1em;
}
#oth.maintenance .m-logo {
  width: 26.6666666667vw;
  margin: 9.3333333333vw auto 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  #oth.maintenance .m-logo {
    width: 100px;
    margin: 25px auto 84px;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	コンテンツのリンク
* --------------------------------------------------------------------------------------------------*/
.l-content-links {
  /* border-top: 1px solid #c4c4c4; */
  background-color: #f3f3f3;
  padding-top: 14.1333333333vw;
  padding-bottom: 15.7333333333vw;
}
.l-content-links.l-no-border {
  border-top: none;
}
@media screen and (min-width: 768px) {
  .l-content-links {
    padding-top: 64px;
    padding-bottom: 63px;
  }
}
.l-content-links .m-link-wrapper {
  text-align: center;
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  .l-content-links .m-link-wrapper {
    margin-top: 70px;
  }
}
.l-content-links .m-link-wrapper a {
  color: currentColor;
  font-size: 1.6rem;
  font-weight: 500;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .l-content-links .m-link-wrapper a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.l-content-links .bl-content-link__list {
  margin: -10.6666666667vw 0 0;
  list-style: none;
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  .l-content-links .bl-content-link__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 1200px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0;
    margin: -4% auto 0;
  }
}
.l-content-links .bl-content-link__item,
.l-content-links .bl-content-link__item a {
  position: relative;
  display: block;
}
.l-content-links .bl-content-link__item {
  margin-top: 10.6666666667vw;
  aspect-ratio: 280/209;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-content-links .bl-content-link__item {
    width: 25.5%;
    /* width: 45.8%; */
    margin: 4% 1.4% 0;
  }
}
.l-content-links .bl-content-link__item a {
  color: currentColor;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .l-content-links .bl-content-link__item a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
.l-content-links .bl-content-link__item p {
  font-size: 2.2rem;
  color: #fff;
  text-align: center;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0.5em;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 768px) {
  .l-content-links .bl-content-link__item p {
    font-size: 2.8rem;
    bottom: 0.2em;
  }
}
.l-content-links .bl-content-link__item picture {
  width: 100%;
  height: 100%;
}
.l-content-links .bl-content-link__item picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.l-content-links.p-text-only {
  padding-top: 4vw;
  padding-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  .l-content-links.p-text-only {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
.l-content-links.p-text-only .bl-content-link__list {
  margin: 0 7.4666666667vw;
  padding: 4vw 0;
}
@media screen and (min-width: 768px) {
  .l-content-links.p-text-only .bl-content-link__list {
    margin: 0 auto;
    padding: 23px 0;
  }
}
.l-content-links.p-text-only .bl-content-link__list.p-border {
  border-bottom: 1px solid #c4c4c4;
}
@media screen and (min-width: 768px) {
  .l-content-links.p-text-only .bl-content-link__list.p-border {
    border: none;
  }
}
.l-content-links.p-text-only .bl-content-link__item {
  margin: 0;
  aspect-ratio: auto;
  font-weight: 700;
  width: auto;
  position: relative;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  .l-content-links.p-text-only .bl-content-link__item {
    font-size: 2rem;
    padding: 0 min(5%, 60px);
    text-align: center;
  }
}
.l-content-links.p-text-only .bl-content-link__item:last-child::after {
  display: none;
}
@media screen and (min-width: 768px) {
  .l-content-links.p-text-only .bl-content-link__item::after {
    content: "";
    position: absolute;
    right: 0;
    height: 100%;
    width: 1px;
    background-color: #c4c4c4;
  }
}
@media screen and (min-width: 768px) {
  .l-content-links.p-text-only .bl-content-link__item {
    text-align: center;
  }
}
.l-content-links.p-text-only .bl-content-link__item a {
  padding: 4vw 0;
}
@media screen and (min-width: 768px) {
  .l-content-links.p-text-only .bl-content-link__item a {
    padding: 0;
    display: inline-block;
  }
}
@media screen and (min-width: 768px) {
  .l-content-links.p-text-only .bl-content-link__item span {
    display: none;
  }
}

.shopping-guide .l-content-links {
  border: none;
  background-color: #f3f3f3;
}

footer.l-copyright-only .m-copyright {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 0;
}

hr {
  margin: 0;
  border: none;
  border-top: 1px solid #bebebe;
}

.c-aspectRatio {
  position: relative;
  width: 100%;
}
.c-aspectRatio__inside {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.c-inputCheckbox__input,
.c-inputRadio__input {
  display: none;
}
.c-inputCheckbox__mark,
.c-inputRadio__mark {
  position: relative;
  padding: 0 0 0 30px;
}
.c-inputCheckbox__mark::before,
.c-inputRadio__mark::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #ccc;
  width: 20px;
  height: 20px;
}
.c-inputCheckbox__mark::after,
.c-inputRadio__mark::after {
  position: absolute;
  top: 5px;
  left: 5px;
  background: #0000ff;
  width: 10px;
  height: 10px;
}

.c-inputRadio__mark::before, .c-inputRadio__mark::after {
  border-radius: 50%;
}

:checked + .c-inputCheckbox__mark::after,
:checked + .c-inputRadio__mark::after {
  content: "";
}

/* --------------------------------------------------
  display
-------------------------------------------------- */
@media screen and (max-width: 767.98px) {
  .u-pc {
    display: none;
  }

  .u-tab {
    display: none;
  }

  .u-nopc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .u-sp {
    display: none;
  }

  .u-tab {
    display: none;
  }

  .u-nopc {
    display: none;
  }
}
@media screen and (min-width: 767.98px) and (max-width: 990px) {
  .u-tab {
    display: block;
  }

  .u-nopc {
    display: block;
  }
}
/* --------------------------------------------------
  cleafix
-------------------------------------------------- */
.u-clearfix:after {
  display: block;
  clear: both;
  content: "";
}

/* --------------------------------------------------
  align
-------------------------------------------------- */
.u-alignL {
  text-align: left;
}

.u-alignC {
  text-align: center;
}

.u-alignR {
  text-align: right;
}

/* --------------------------------------------------
  margin
-------------------------------------------------- */
.u-margin.-short {
  margin-bottom: 16px;
}
.u-margin.-middle {
  margin-bottom: 32px;
}
.u-margin.-large {
  margin-bottom: 64px;
}

/* --------------------------------------------------
  padding
-------------------------------------------------- */
.-ratio16-9 {
  padding-top: 56.25%;
}

.-ratio4-3 {
  padding-top: 75%;
}

#home {
  /* ----------------------------------------------------------------------------------------------------
  *	コピー
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	オーダー
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	company
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	ギャラリー
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	faq
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	news
  * --------------------------------------------------------------------------------------------------*/
}
#home .l-front-content__wrapper {
  background-color: #fff;
}
#home .l-copy {
  background: #6d655b;
  padding-top: 10.6666666667vw;
  padding-bottom: 13.6vw;
}
@media screen and (min-width: 768px) {
  #home .l-copy {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
#home .l-copy * {
  color: #fff;
}
#home .l-copy .m-title {
  text-align: center;
  margin-top: 7.7333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #home .l-copy .m-title {
    margin-top: 13px;
    margin-bottom: 0;
  }
}
#home .l-copy .m-subtitle {
  text-align: center;
  font-size: 1.2rem;
  font-weight: normal;
  font-weight: 500;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  #home .l-copy .m-subtitle {
    font-size: 1.6rem;
  }
}
#home .l-copy .m-text {
  margin-top: 5.3333333333vw;
  margin-bottom: 0;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #home .l-copy .m-text {
    margin-top: 20px;
    text-align: center;
    font-size: 1.8rem;
    line-height: 2;
  }
}
#home .l-copy .m-text + .m-text {
  margin: 0;
}
@media screen and (min-width: 768px) {
  #home .l-copy .m-text + .m-text {
    margin-top: 1em;
  }
}
#home .l-order {
  padding-top: 9.6vw;
  /* padding-bottom: 6.9333333333vw; */
}
#home .l-order .l-content__inner {
  padding-left: 11.5333333333vw;
  padding-right: 11.5333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  #home .l-order {
    padding-top: 90px;
  }
}
@media screen and (min-width: 768px) {
  #home .l-order .l-content__heading {
    margin-bottom: 0;
  }
}
/*
#home .l-order .l-content__inner {
  padding-left: 0;
  padding-right: 0;
}
*/
@media screen and (min-width: 768px) {
  #home .l-order .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#home .l-order .m-title {
  text-align: center;
  margin-top: 0.2em;
}
@media screen and (min-width: 768px) {
  #home .l-order .m-title {
    font-weight: 500;
    margin-top: 0;
    font-size: 3.2rem;
  }
}
#home .l-order .m-subtitle {
  font-size: 1.4rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #home .l-order .m-subtitle {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
}
#home .l-creator,
#home .bl-creator__item {
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  #home .l-creator {
    margin-top: -40px;
  }
}
#home .bl-creator__item {
  margin-top: 13vw;
}
@media screen and (min-width: 768px) {
  #home .bl-creator__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin-top: 95px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#home .l-swiper__wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  #home .l-swiper__wrapper {
    width: 60%;
    margin-left: 1em;
  }
}
#home .l-swiper__wrapper .swiper-pagination-bullets {
  text-align: right;
}
#home .l-swiper__wrapper .swiper-pagination-bullet {
  border-radius: 0;
  width: 48px;
  height: 1px;
  opacity: 1;
  position: relative;
  background-color: transparent;
}
@media screen and (min-width: 768px) {
  #home .l-swiper__wrapper .swiper-pagination-bullet {
    padding: 15px 0;
  }
}
#home .l-swiper__wrapper .swiper-pagination-bullet::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #888;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#home .l-swiper__wrapper .swiper-pagination-bullet-active {
  position: relative;
}
#home .l-swiper__wrapper .swiper-pagination-bullet-active::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  width: 100%;
  height: 2px;
  background-color: #414141;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
#home .l-swiper__wrapper .swiper-button-next:after,
#home .l-swiper__wrapper .swiper-button-prev:after {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
@media screen and (min-width: 768px) {
  #home .l-swiper__wrapper .swiper-button-next:after,
#home .l-swiper__wrapper .swiper-button-prev:after {
    display: none;
  }
}
#home .l-swiper__wrapper .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#home .l-swiper__wrapper .swiper-button-prev:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#home .l-swiper__wrapper .swiper-pagination-fraction {
  position: absolute;
  z-index: 2;
  padding-right: 3.7333333333vw;
  bottom: 3.7333333333vw;
  color: #fff;
  text-align: right;
  font-size: 1.4rem;
  font-family: "Hind", sans-serif;
}
#home .swiper {
  position: relative;
}
@media screen and (min-width: 768px) {
  #home .swiper {
    aspect-ratio: 1/1;
  }
}
@media screen and (min-width: 768px) {
  #home .swiper .swiper-button-next {
    right: 30px;
  }
}
@media screen and (min-width: 768px) {
  #home .swiper .swiper-button-prev {
    left: 30px;
  }
}
#home .swiper .swiper-button-prev,
#home .swiper .swiper-button-next {
  color: #4d4d4d;
}
/*
@media screen and (min-width: 768px) {
  #home .swiper .swiper-button-prev,
#home .swiper .swiper-button-next {
    display: none;
  }
}
*/
#home .swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  background: #fff;
}
#home .swiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #e59a0a;
}
#home .swiper .l-counter {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #fff;
  bottom: 4.5vw;
  right: 7vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #home .swiper .l-counter {
    display: none;
  }
}
#home .swiper .l-counter p {
  margin: 0;
  line-height: 1;
  padding: 0 0.1em;
}
#home .swiper-wrapper {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  #home .swiper-wrapper {
    margin-top: 0;
  }
}
#home .swiper-wrapper .swiper-slide {
  position: relative;
  height: 100vw;
}
@media screen and (min-width: 768px) {
  #home .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
#home .swiper-wrapper .swiper-slide p {
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #2e58a6;
  padding: 0.1em 1.2em;
  font-weight: 500;
  color: #fff;
  font-size: 1.6rem;
  z-index: 2;
  display: inline-block;
}
#home .swiper-wrapper .swiper-slide picture,
#home .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#home .swiper-wrapper .slick-arrow {
  position: absolute;
  top: 50%;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
  width: 4vw;
  height: 4vw;
  z-index: 2;
}
#home .swiper-wrapper .next-arrow {
  right: 7vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#home .swiper-wrapper .prev-arrow {
  left: 7vw;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#home .swiper-wrapper .slick-dots {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#home .swiper-wrapper .slick-dots li {
  list-style: none;
  margin-left: 5px;
}
#home .swiper-wrapper .slick-dots li.slick-active button::before {
  background-color: #414141;
  height: 2px;
}
#home .swiper-wrapper .slick-dots button {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  position: relative;
  display: block;
  width: 48px;
  padding: 10px 0;
  border: 0;
  outline: none;
  background: transparent;
  color: transparent;
  font-size: 0;
  line-height: 0;
  cursor: pointer;
}
#home .swiper-wrapper .slick-dots button::before {
  content: "";
  position: absolute;
  width: 48px;
  height: 1px;
  top: 50%;
  left: 0;
  background: #dad2bf;
}
#home .bl-creatoer__prof-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#home .bl-creatoer__prof-reserve .m-reserve {
  display: none;
}
@media screen and (min-width: 768px) {
  #home .bl-creatoer__prof-reserve .m-reserve {
    text-decoration: none !important;
    display: block;
    font-size: 1.6rem;
    padding-left: 140px;
  }
  #home .bl-creatoer__prof-reserve .m-reserve:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#home .bl-creator__prof {
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-decoration: none;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  #home .bl-creator__prof {
    padding-left: 0;
    padding-right: 0;
  }
  #home .bl-creator__prof:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#home .bl-prof__img-wrapper {
  width: 12.8vw;
  height: 12.8vw;
  border-radius: 100%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 3vw;
}
@media screen and (min-width: 768px) {
  #home .bl-prof__img-wrapper {
    width: 90px;
    height: 90px;
    margin-right: 20px;
  }
}
#home .bl-prof__img-wrapper img {
  width: 12.8vw;
  height: 12.8vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  #home .bl-prof__img-wrapper img {
    width: 90px;
    height: 90px;
  }
}
#home .m-position {
  font-size: 1.2rem;
  color: #888;
  margin: 0;
  line-height: 1;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #home .m-position {
    font-size: 1.6rem;
  }
}
#home .m-name {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1;
  margin-top: 0.3em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #home .m-name {
    font-size: 2.8rem;
  }
}
#home .m-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.4rem;
  font-weight: bold;
  color: currentColor;
  padding-right: 4vw;
  padding-top: 1.5vw;
}
@media screen and (min-width: 768px) {
  #home .m-reserve {
    display: none;
  }
}
#home .m-reserve p {
  padding: 0 0.3em;
  line-height: 1;
}
#home .l-company {
  padding-top: 10.6666666667vw;
  padding-bottom: 13.8666666667vw;
}
@media screen and (min-width: 768px) {
  #home .l-company {
    padding-top: 90px;
    padding-bottom: 94px;
  }
}
#home .l-company .l-content__inner {
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  #home .l-company .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 910px;
  }
}
#home .l-company img {
  width: 100%;
  height: auto;
}

#home .l-company .m-title {
    text-align: center;
}

#home .l-company .l-text__wrapper {
  position: absolute;
  max-width: 60.2666666667vw;
  margin: 0 auto;
  bottom: 5.8666666667vw;
  left: 0;
  right: 0;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #home .l-company .l-text__wrapper {
    bottom: 33px;
    max-width: inherit;
  }
}
#home .l-company .l-text__wrapper * {
  color: #fff;
  text-align: center;
}
#home .l-company .l-text__wrapper .m-title {
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  #home .l-company .l-text__wrapper .m-title {
    margin-bottom: 0.2em;
    font-size: 3.2rem;
  }
}
#home .l-company .l-text__wrapper .m-link {
  border-color: #c4c4c4;
}
@media screen and (min-width: 768px) {
  #home .l-company .l-text__wrapper .m-link {
    max-width: 260px;
    margin: 0 auto;
  }
}
#home .l-company .m-text {
  margin-top: 1.4em;
  margin-bottom: 1.2em;
    text-align: center;
}

#home .l-company .m-link {
    margin: 0 auto;
    max-width: 260px;
}

#home .l-contact .l-content__inner{
  padding-left: 12.5333333333vw;
    padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #home .l-contact .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 910px;
  }
}

#home .l-contact .m-title {
    text-align: center;
}

#home .l-contact .m-text {
    margin-top: 1.4em;
    margin-bottom: 1.2em;
    text-align: center;
}

#home .l-contact ul{
  padding: 0;
    font-size: 1.4rem;
    text-align: center;
}

@media screen and (min-width: 768px) {
    #home .l-contact ul{
        display: flex;
        justify-content: space-between;
        max-width: 800px;
        margin: 0 auto;
    }
}

#home .l-contact li{
    margin: 0 0 30px 0;
    list-style: none;
}
@media screen and (min-width: 768px) {
    #home .l-contact li{
        margin: 0;
        width: 30%;
    }
}

#home .l-contact a{
    display: block;
    padding: 0.6em 1em;
    width: 100%;
    border: 1px solid #4d4d4d;
    color: #4d4d4d;
    font-weight: 700;
    text-decoration: none;
}

#home .l-contact a:hover{
    opacity: 0.7;
}

#home .l-useinfo{
    margin: 0 0 50px 0;
    padding: 50px 0;
    background-color: #e8e9e9
}
@media screen and (min-width: 768px) {
  #home .l-useinfo{
    margin: 0 0 100px 0;
  }
}

#home .l-useinfo__inner {
    margin: 0 auto;
    padding-bottom: 50px;
    text-align: center;
    background-color: #fff;
    max-width: 90%;
}
@media screen and (min-width: 768px) {
    #home .l-useinfo__inner {
      padding-top: 100px;
      padding-left: 10.5333333333vw;
      padding-right: 10.5333333333vw;
      padding-bottom: 100px;
      max-width: 910px;
    }
}

#home .l-useinfo ul{
  margin: 0;
  padding: 0;
}

#home .l-useinfo h2{
  padding-left: 10.5333333333vw;
  padding-right: 10.5333333333vw;
}
@media screen and (min-width: 768px) {
  #home .l-useinfo h2{
    padding-left: 0;
    padding-right: 0;
  }
}

@media screen and (min-width: 768px) {
    #home .l-useinfo ul {
        display: flex;
        justify-content: space-between;
    }
}

#home .l-useinfo li {
  margin: 0;
  padding: 0;
    list-style:none;
}
@media screen and (min-width: 768px) {
    #home .l-useinfo li {
        width: 30%;
    }

}

#home .l-useinfo li img{
  max-width: 150px;
}
@media screen and (min-width: 768px) {
    #home .l-useinfo li img{
        display: block;
        margin: 0 auto;
        max-width: 150px;
    }

}

#home .l-useinfo a{
  margin: 0 auto;
  max-width: 260px;
}

#home .l-safe {
    margin: 0 auto;
    padding: 0 0 50px 0;
    text-align: center;
}
@media screen and (min-width: 768px) {
    #home .l-safe {
      padding: 0 0 100px 0;
        max-width: 910px;
    }
}

#home .l-safe ul{
  padding: 0;
}
@media screen and (min-width: 768px) {
    #home .l-safe ul {
        display: flex;
        justify-content: space-between;
    }
}

#home .l-safe li {
    list-style:none;
}
@media screen and (min-width: 768px) {
    #home .l-safe li {
        width: 30%;
    }

}
#home .l-safe a{
  margin: 0 auto;
  max-width: 260px;
}

@media screen and (min-width: 768px) {
  #home .l-gallery-craft__wrapper .l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
@media screen and (min-width: 768px) {
  #home .l-gallery-craft__wrapper {
    background-color: #000;
  }
  #home .l-gallery-craft__wrapper * {
    color: #fff;
  }
}
#home .l-gallery-craft__wrapper > .l-content__inner {
  padding-left: 0;
  padding-right: 0;
}
@media screen and (min-width: 768px) {
  #home .l-gallery-craft__wrapper > .l-content__inner {
    max-width: 1510px;
  }
}
#home .l-gallery {
  background-color: #f3f3f3;
}
@media screen and (min-width: 768px) {
  #home .l-gallery {
    background-color: transparent;
  }
}
#home .l-craft.l-card {
  padding-bottom: 14.9333333333vw;
}
@media screen and (min-width: 768px) {
  #home .l-craft.l-card {
    padding-bottom: 0;
  }
}
#home .l-card {
  padding-top: 12.2666666667vw;
  padding-bottom: 12.2666666667vw;
}
@media screen and (min-width: 768px) {
  #home .l-card {
    padding-top: 0;
    padding-bottom: 0;
    width: 50%;
  }
}
#home .l-card .l-content__inner {
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #home .l-card .l-content__inner {
    position: relative;
    padding-left: 0;
    padding-right: 0;
  }
}
#home .l-card .l-content__inner picture img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  #home .l-card .l-txt-wrapper {
    position: absolute;
    bottom: 47px;
    text-align: center;
    left: 0;
    right: 0;
    width: 100%;
    padding: 0 1em;
  }
  #home .l-card .l-txt-wrapper .m-title {
    font-size: 3rem;
    margin-bottom: 0;
    font-weight: 700;
  }
  #home .l-card .l-txt-wrapper .m-title + .m-text {
    margin-top: 0;
  }
}
#home .l-card .picture-title__wrapper {
  position: relative;
}
#home .l-card .picture-title__wrapper .m-title {
  text-align: center;
  color: #fff;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin-bottom: 0.5em;
  z-index: 1;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #home .l-card .m-text {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  #home .l-card .m-link {
    max-width: 260px;
    margin: 24px auto 0;
    border-color: #c4c4c4;
  }
}
#home .l-use {
  background-color: #e4dac8;
  padding-bottom: 12.2666666667vw;
}
@media screen and (min-width: 768px) {
  #home .l-use {
    margin-top: 139px;
    padding-top: 90px;
    padding-bottom: 120px;
  }
}
#home .l-use .l-content__inner {
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #home .l-use .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 910px;
  }
}
#home .l-use .l-content__heading {
  text-align: center;
  margin-top: 9.0666666667vw;
  grid-area: heading;
}
@media screen and (min-width: 768px) {
  #home .l-use .l-content__heading {
    margin-top: 0;
    margin-bottom: 5px;
  }
}
#home .l-use .l-content__heading .m-subtitle {
  font-size: 1.2rem;
  letter-spacing: 0.1em;
}
@media screen and (min-width: 768px) {
  #home .l-use .l-content__heading .m-subtitle {
    font-size: 1.6rem;
  }
}
#home .l-use .l-content__heading .m-title {
  margin-top: 0.6em;
}
@media screen and (min-width: 768px) {
  #home .l-use .l-content__heading .m-title {
    font-size: 3.2rem;
    font-weight: 500;
  }
}
@media screen and (min-width: 768px) {
  #home .l-grid {
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 0 46%;
    grid-template-columns: auto 46%;
    -ms-grid-rows: auto 0 auto 0 auto 0 auto 0 auto;
    grid-template-rows: auto auto auto auto auto;
    gap: 0 0;
        grid-template-areas: "heading heading" "largeimg largeimg" "text01 smallimg" "text02 smallimg" "link smallimg";
  }
  #home .l-use .l-content__heading {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
}

#home .l-designers{
  margin: 50px 0 0 0;
    background-color: #e2d9c7;
}
@media screen and (min-width: 768px) {
  #home .l-designers{
    margin: 100px 0 0 0;
  }
}

#home .l-designers .l-content__inner {
    padding-top: 12.5333333333vw;
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
    padding-bottom: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #home .l-designers .l-content__inner {
      padding-top: 100px;
      padding-left: 15px;
      padding-right: 15px;
      padding-bottom: 100px;
      max-width: 910px;
  }
}

#home .l-designers .l-content__inner ul{
  padding: 0;
}
@media screen and (min-width: 768px) {
    #home .l-designers .l-content__inner ul {
        display: flex;
        justify-content: space-between;
        margin: 0 0 30px 0;
    }
}

#home .l-designers .l-content__inner ul li{
    margin: 0 0 30px 0;
    padding: 0;
    list-style: none;
}
@media screen and (min-width: 768px) {
    #home .l-designers .l-content__inner ul li {
        margin: 0;
        width: 30%;
    }
}

#home .l-designers .l-content__inner .l-txt-wrapper{
    text-align: center;
}

#home .l-designers .l-content__inner .l-txt-wrapper h2{
    font-size: 2.2rem;
    font-weight: 500;
}
@media screen and (min-width: 768px) {
    #home .l-designers .l-content__inner .l-txt-wrapper h2{
        font-size: 3.2rem;
    }
}

#home .l-designers .l-content__inner .l-txt-wrapper a{
    margin: 0 auto;
    width: 260px;
}

#home .l-img-upper {
  grid-area: largeimg;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}
@media screen and (min-width: 768px) {
  #home .l-img-upper {
    margin-left: 0;
    margin-right: 0;
  }
}
#home .l-img-bottom {
  grid-area: smallimg;
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  #home .l-img-bottom {
    margin-top: 23px;
    margin-left: 36px;
  }
}
@media screen and (min-width: 768px) {
  #home .m-text {
    line-height: 1.6;
  }
}
#home .l-text__upper {
  grid-area: text01;
}
@media screen and (min-width: 768px) {
  #home .l-text__upper {
    margin-top: 30px;
  }
}
#home .l-text__bottom {
  grid-area: text02;
}
@media screen and (min-width: 768px) {
  #home .l-text__bottom {
    margin-top: 27px;
  }
}
#home .l-link__wrapper {
  margin-top: 8.5333333333vw;
  grid-area: link;
}
@media screen and (min-width: 768px){
  #home .l-img-upper {
    -ms-grid-row: 3;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  #home .l-img-bottom {
    -ms-grid-row: 5;
    -ms-grid-row-span: 5;
    -ms-grid-column: 3;
  }
  #home .l-text__upper {
    -ms-grid-row: 5;
    -ms-grid-column: 1;
  }
  #home .l-text__bottom {
    -ms-grid-row: 7;
    -ms-grid-column: 1;
  }
  #home .l-link__wrapper {
    -ms-grid-row: 9;
    -ms-grid-column: 1;
  }
}
@media screen and (min-width: 768px) {
  #home .l-link__wrapper {
    margin-top: 30px;
  }
  #home .l-link__wrapper .m-link {
    max-width: 260px;
    margin: 0 auto;
  }
}
#home picture img {
  width: 100%;
  height: auto;
}
#home .l-faq {
  padding-bottom: 0;
}
#home .l-news {
  max-width: 910px;
  margin: 0 auto;
}

/* ----------------------------------------------------------------------------------------------------
*	MV
* --------------------------------------------------------------------------------------------------*/
.l-mv__wrapper {
  position: relative;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .l-mv__wrapper {
    aspect-ratio: 16/9;
  }
}
.l-mv__wrapper.is-hide {
  opacity: 0;
}

.l-kv__movie {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.bl-mv-nav {
  position: absolute;
  margin: 0;
  padding: 0;
  list-style: none;
  left: 0;
  right: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  bottom: 7vw;
  width: 100%;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .bl-mv-nav {
    display: none;
  }
}

.bl-mv-nav__item {
  margin: 0 1em;
  list-style: none;
}

.m-mv-nav__link {
  border: 1px solid #fff;
  font-size: 1.4rem;
  padding: 0.5em 1em;
  background-color: rgba(255, 255, 255, 0.1);
  font-weight: 500;
  width: 36.2666666667vw;
  color: #fff;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  height: 100%;
}
.m-mv-nav__link.m-en {
  font-size: 1.6rem;
  padding-top: 0.6em;
}

#designer .l-content__heading {
  margin-top: 5.8666666667vw;
}
@media screen and (min-width: 768px) {
  #designer .l-content__heading {
    margin-top: 14px;
    margin-bottom: 12px;
  }
}
#designer .bl-designers {
  padding: 0;
  list-style: none;
  max-width: 1046px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #designer .bl-designers {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-left: 15px;
    padding-right: 15px;
    margin-top: 30px;
    margin-bottom: 100px;
  }
}
#designer .bl-designer {
  background-color: #f3f3f3;
  padding: 8.8vw 6.4vw 6.1333333333vw;
  margin-top: 5.0666666667vw;
}
@media screen and (min-width: 768px) {
  #designer .bl-designer {
    width: 48.7%;
    padding: 47px 5% 40px;
    margin-top: 24px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
#designer .bl-designer .bl-img__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #designer .bl-designer .bl-img__wrapper {
    margin-top: auto;
  }
}
#designer .bl-designer .bl-img__wrapper a {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#designer .bl-designer .bl-img__wrapper a:hover:hover {
  opacity: 0.7;
  text-decoration: none;
}
#designer .bl-designer .bl-img__wrapper .l-thumb {
  width: 50%;
  aspect-ratio: 1/1;
  display: block;
}
#designer .bl-designer .bl-img__wrapper .l-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#designer .bl-designer .bl-link__wrapper {
  text-align: right;
}
#designer .bl-designer__prof {
  display: -ms-grid;
  display: grid;
  gap: 0px 0px;
  -ms-grid-columns: 19vw 0px auto;
  grid-template-columns: 19vw auto;
  -ms-grid-rows: auto 0px auto;
  grid-template-rows: auto auto;
      grid-template-areas: "image detail" "graf graf";
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  #designer .bl-designer__prof {
    -ms-grid-columns: 104px auto;
    grid-template-columns: 104px auto;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
        grid-template-areas: "image detail" "image graf";
    margin-bottom: 30px;
  }
}
@media screen and (min-width: 767.98px) and (max-width: 990px) {
  #designer .bl-designer__prof {
        grid-template-areas: "image detail" "graf graf";
  }
}
#designer .bl-name-link__wrapper {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 1.6em;
  grid-area: detail;
}
@media screen and (min-width: 768px) {
  #designer .bl-name-link__wrapper {
    padding-top: 2.5em;
  }
}
@media screen and (min-width: 767.98px) and (max-width: 990px) {
  #designer .bl-name-link__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 1.5em;
  }
}
#designer .m-designer-name {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
  color: currentColor;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  display: block;
}
@media screen and (min-width: 768px) {
  #designer .m-designer-name {
    font-size: 2.4rem;
  }
  #designer .m-designer-name:hover:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#designer .m-reserve {
  font-size: 1.4rem;
  color: currentColor;
  font-weight: 700;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #designer .m-reserve {
    font-size: 1.6rem;
  }
  #designer .m-reserve:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#designer .degigner-img__wrapper {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: image;
  width: 15.2vw;
  height: 15.2vw;
  border-radius: 100%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #designer .degigner-img__wrapper {
    width: 88px;
    height: 88px;
  }
}
#designer .degigner-img__wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 15.2vw;
  height: 15.2vw;
}
@media screen and (min-width: 768px) {
  #designer .degigner-img__wrapper img {
    width: 88px;
    height: 88px;
  }
}
#designer .bl-designer__detail {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  margin-top: 1.5em;
  font-size: 1.3rem;
  width: 100%;
  grid-area: graf;
}
#designer .bl-designer__detail th {
  border-right: 1px solid #c4c4c4;
  padding-right: 1em;
  vertical-align: top;
  text-align: left;
  width: 8em;
  font-weight: 400;
}
#designer .bl-designer__detail td {
  padding-left: 1.5em;
}
#designer .bl-designer__detail td p {
  margin: 0;
}
#designer .m-detail {
  font-size: 1.4rem;
  font-weight: 700;
  text-align: right;
  padding: 1em 0;
  display: inline-block;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  #designer .m-detail {
    font-size: 1.6rem;
    padding-bottom: 0;
  }
  #designer .m-detail:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	詳細ページ
* --------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  #designer-detail .bl-designer__prof {
    max-width: 960px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 55px auto 0;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 1fr;
    grid-template-columns: auto 1fr;
    -ms-grid-rows: auto 1fr;
    grid-template-rows: auto 1fr;
        grid-template-areas: "image prof" "image detail";
  }
  #designer-detail .bl-designer__prof > .bl-name-link__wrapper {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  #designer-detail .bl-designer__prof > .degigner-img__wrapper {
    -ms-grid-row: 1;
    -ms-grid-row-span: 2;
    -ms-grid-column: 1;
  }
}
#designer-detail .l-img-prof__wrapper {
  position: relative;
  overflow: hidden;
}
#designer-detail .degigner-img__wrapper {
  position: absolute;
  top: 68.8vw;
  left: 6.1333333333vw;
  width: 25.6vw;
  height: 25.6vw;
  border-radius: 100%;
  overflow: hidden;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #designer-detail .degigner-img__wrapper {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    position: static;
    width: 160px;
    height: 160px;
    grid-area: image;
    margin-right: 43px;
  }
}
#designer-detail .degigner-img__wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#designer-detail .bl-name-link__wrapper {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  top: 76vw;
  left: 38.1333333333vw;
  color: #fff;
  text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.6);
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-name-link__wrapper {
    position: static;
    color: currentColor;
    text-shadow: none;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    grid-area: prof;
    -webkit-box-align: end;
        -ms-flex-align: end;
            align-items: flex-end;
  }
}
#designer-detail .bl-name-link__wrapper .m-designer-name {
  font-size: 2.2rem;
  margin: 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-name-link__wrapper .m-designer-name {
    font-size: 2.6rem;
  }
}
#designer-detail .bl-name-link__wrapper .m-reserve {
  font-size: 1.4rem;
  color: currentColor;
  display: block;
  margin-top: 0.5em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-name-link__wrapper .m-reserve {
    margin-top: 0;
    font-size: 1.6rem;
    margin-left: 2em;
  }
  #designer-detail .bl-name-link__wrapper .m-reserve:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#designer-detail .l-designer__detail__wrapper {
  background-color: #f3f3f3;
  width: 100%;
  padding: 6.4vw 7.2vw;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-designer__detail__wrapper {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
    grid-area: detail;
    background-color: transparent;
    margin-top: 24px;
    padding: 0;
  }
  @media screen and (min-width: 768px){
  #designer .bl-name-link__wrapper {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
  }
  #designer .degigner-img__wrapper {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      -ms-grid-column: 1;
  }
  #designer .bl-designer__detail {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
      -ms-grid-column-span: 1;
  }
  #designer-detail .degigner-img__wrapper {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      -ms-grid-column: 1;
  }
  #designer-detail .bl-designer__prof > .degigner-img__wrapper {
      -ms-grid-row: 1;
      -ms-grid-row-span: 2;
      -ms-grid-column: 1;
  }
  #designer-detail .bl-name-link__wrapper {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
  }
  #designer-detail .l-designer__detail__wrapper {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
  }
  #designer-detail .bl-designer__prof > .l-designer__detail__wrapper {
      -ms-grid-row: 2;
      -ms-grid-column: 2;
  }
  }
  @media screen and (min-width: 767.98px) and (max-width: 990px){
  #designer .bl-name-link__wrapper {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
  }
  #designer .degigner-img__wrapper {
      -ms-grid-row: 1;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
  }
  #designer .bl-designer__detail {
      -ms-grid-row: 2;
      -ms-grid-column: 1;
      -ms-grid-column-span: 2;
  }
  #designer-detail .degigner-img__wrapper {
      -ms-grid-row: 1;
      -ms-grid-row-span: 1;
      -ms-grid-column: 1;
  }
  #designer-detail .l-designer__detail__wrapper {
      -ms-grid-row: 1;
      -ms-grid-column: 2;
  }
  }
}
#designer-detail .bl-designer__detail th,
#designer-detail .bl-designer__detail td {
  font-size: 1.3rem;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-designer__detail th,
#designer-detail .bl-designer__detail td {
    line-height: 1.8;
  }
}
#designer-detail .bl-designer__detail th {
  text-align: left;
  font-weight: 400;
  padding-right: 0.5em;
  width: 7.5em;
  vertical-align: top;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-designer__detail th {
    padding-right: 1em;
    width: 10em;
  }
}
#designer-detail .bl-designer__detail td {
  padding-left: 1em;
  border-left: 1px solid #c4c4c4;
}
#designer-detail .bl-designer__detail td p {
  margin: 0;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-designer__detail td {
    padding-left: 3em;
  }
}
#designer-detail .l-achievement {
  margin-top: 18.1333333333vw;
  padding-bottom: 16.8vw;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-achievement {
    margin-top: 120px;
    padding-bottom: 116px;
  }
}
#designer-detail .bl-achievement__list {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-achievement__list {
    margin-top: 0;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	デザイナー作品詳細
* --------------------------------------------------------------------------------------------------*/
#designer-achievement .l-content__heading {
  padding-top: 10.6666666667vw;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-content__heading {
    padding-top: 26px;
  }
}
#designer-achievement .l-content__heading .l-content__inner {
  padding-left: 3.7333333333vw;
  padding-right: 3.7333333333vw;
}
#designer-achievement .l-content__heading .m-content__title {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-content__heading .m-content__title {
    font-size: 4.4rem;
  }
}
#designer-achievement .l-img-prof__wrapper {
  margin-top: 10.6666666667vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-img-prof__wrapper {
    margin-top: 50px;
  }
}
#designer-achievement .l-from-designer {
  background-color: #e4dac8;
  padding: 8.5333333333vw 0 6.9333333333vw;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-from-designer {
    padding: 32px 0 49px;
  }
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-from-designer .l-content__inner {
    max-width: 620px;
  }
}
#designer-achievement .l-from-designer .m-title {
  font-size: 1.3rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-from-designer .m-title {
    font-size: 2.2rem;
  }
}
#designer-achievement .l-from-designer .m-text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-from-designer .m-text {
    font-size: 1.6rem;
  }
}
#designer-achievement .l-from-designer .l-name-reserve__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 3em;
}
#designer-achievement .l-from-designer .l-img-name__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#designer-achievement .l-from-designer .l-img-name__wrapper figure {
  width: 13.0666666667vw;
  height: 13.0666666667vw;
  border-radius: 100%;
  overflow: hidden;
  margin-right: 4vw;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-from-designer .l-img-name__wrapper figure {
    width: 88px;
    height: 88px;
    margin-right: 24px;
  }
}
#designer-achievement .l-from-designer .l-img-name__wrapper figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#designer-achievement .l-from-designer .m-designer-name {
  font-size: 2rem;
  margin: 0;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-from-designer .m-designer-name {
    font-size: 2.2rem;
  }
}
#designer-achievement .l-from-designer .m-reserve {
  font-size: 1.4rem;
  font-weight: 700;
  color: currentColor;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-from-designer .m-reserve {
    font-size: 1.6rem;
  }
}
#designer-achievement .l-achievement {
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-achievement {
    margin-top: 120px;
  }
}
#designer-achievement .bl-achievement__list {
  margin-top: 4.8vw;
}
@media screen and (min-width: 768px) {
  #designer-achievement .bl-achievement__list {
    margin-top: 50px;
  }
}
#designer-achievement .bl-links {
  margin: 0;
  list-style: none;
  padding-right: 7.4666666667vw;
  padding-left: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  #designer-achievement .bl-links {
    max-width: 930px;
    padding-left: 15px;
    padding-right: 15px;
    margin: 5px auto 0;
  }
}
@media screen and (min-width: 768px) {
  #designer-achievement .bl-links .bl_links__list {
    text-align: right;
  }
}
#designer-achievement .bl-links a {
  font-size: 1.4rem;
  color: currentColor;
  text-decoration: none;
  padding: 1.2em 0;
  display: inline-block;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #designer-achievement .bl-links a {
    font-size: 1.6rem;
    padding: 0;
    margin-top: 25px;
  }
  #designer-achievement .bl-links a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}

#designer-detail,
#designer-achievement {
  /* ----------------------------------------------------------------------------------------------------
  *	スライダー
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	作品一覧
  * --------------------------------------------------------------------------------------------------*/
}
#designer-detail .l-swiper__wrapper,
#designer-achievement .l-swiper__wrapper {
  position: relative;
}
@media screen and (min-width: 768px) {
  #designer-detail .swiper,
#designer-achievement .swiper {
    position: relative;
    max-width: 620px !important;
    margin: 0 auto !important;
    overflow: visible !important;
  }
}
#designer-detail .swiper .swiper-button-prev,
#designer-achievement .swiper .swiper-button-prev {
  left: -38px;
  color: #4d4d4d;
}
@media screen and (max-width: 767.98px) {
  #designer-detail .swiper .swiper-button-prev,
#designer-achievement .swiper .swiper-button-prev {
    display: none;
  }
}
#designer-detail .swiper .swiper-button-next,
#designer-achievement .swiper .swiper-button-next {
  right: -38px;
  color: #4d4d4d;
}
@media screen and (max-width: 767.98px) {
  #designer-detail .swiper .swiper-button-next,
#designer-achievement .swiper .swiper-button-next {
    display: none;
  }
}
#designer-detail .swiper .swiper-button-next:after,
#designer-detail .swiper .swiper-button-prev:after,
#designer-achievement .swiper .swiper-button-next:after,
#designer-achievement .swiper .swiper-button-prev:after {
  font-size: 6vw;
}
@media screen and (min-width: 768px) {
  #designer-detail .swiper .swiper-button-next:after,
#designer-detail .swiper .swiper-button-prev:after,
#designer-achievement .swiper .swiper-button-next:after,
#designer-achievement .swiper .swiper-button-prev:after {
    content: "";
    width: 24px;
    height: 24px;
    border-top: 1px solid #4d4d4d;
    border-right: 1px solid #4d4d4d;
  }
}
@media screen and (min-width: 768px) {
  #designer-detail .swiper .swiper-button-next:after,
#designer-achievement .swiper .swiper-button-next:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
  }
}
@media screen and (min-width: 768px) {
  #designer-detail .swiper .swiper-button-prev:after,
#designer-achievement .swiper .swiper-button-prev:after {
    -webkit-transform: rotate(225deg);
            transform: rotate(225deg);
  }
}
#designer-detail .swiper-wrapper,
#designer-achievement .swiper-wrapper {
  width: 100%;
}
#designer-detail .m-counter,
#designer-achievement .m-counter {
  position: absolute;
  right: 4vw;
  top: 90vw;
  font-size: 1.6rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #designer-detail .m-counter,
#designer-achievement .m-counter {
    display: none;
  }
}
#designer-detail .arrows,
#designer-achievement .arrows {
  position: absolute;
  width: 100%;
  left: 0;
  right: 0;
  margin: 0 auto;
  top: 50vw;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  #designer-detail .arrows,
#designer-achievement .arrows {
    width: 690px;
    top: 300px;
  }
}
#designer-detail .arrows .slick-arrow,
#designer-achievement .arrows .slick-arrow {
  position: absolute;
  top: 50%;
  width: 23px;
  height: 23px;
  border-left: 1px solid #636363;
  border-bottom: 1px solid #636363;
  cursor: pointer;
}
#designer-detail .arrows .prev-arrow,
#designer-achievement .arrows .prev-arrow {
  left: 5vw;
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
@media screen and (min-width: 768px) {
  #designer-detail .arrows .prev-arrow,
#designer-achievement .arrows .prev-arrow {
    left: 0;
  }
}
#designer-detail .arrows .next-arrow,
#designer-achievement .arrows .next-arrow {
  right: 5vw;
  -webkit-transform: translateY(-50%) rotate(225deg);
          transform: translateY(-50%) rotate(225deg);
}
@media screen and (min-width: 768px) {
  #designer-detail .arrows .next-arrow,
#designer-achievement .arrows .next-arrow {
    right: 0;
  }
}
#designer-detail .arrows .slick-disabled,
#designer-achievement .arrows .slick-disabled {
  display: none !important;
}
#designer-detail .swiper-slide,
#designer-achievement .swiper-slide {
  position: relative;
  -webkit-transition: opacity 0.7s 0.2s;
  transition: opacity 0.7s 0.2s;
  opacity: 0.4;
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  #designer-detail .swiper-slide,
#designer-achievement .swiper-slide {
    /* &::before {
    	content: "";
    	position: absolute;
    	top: 0;
    	left: 0;
    	width: 100%;
    	height: 100%;
    	z-index: 1;
    	background-color: #fff;
    	opacity: $swiper-opacity;
    	transition: $swiper-opacity-transition;
    	pointer-events: none;
    } */
  }
}
@media screen and (min-width: 768px) {
  #designer-detail .swiper-slide,
#designer-achievement .swiper-slide {
    margin: 0 30px;
  }
  #designer-detail .swiper-slide a,
#designer-achievement .swiper-slide a {
    display: block;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  #designer-detail .swiper-slide a:hover,
#designer-achievement .swiper-slide a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#designer-detail .swiper-slide .l-picture__wrapper,
#designer-achievement .swiper-slide .l-picture__wrapper {
  position: relative;
}
#designer-detail .swiper-slide .m-state,
#designer-achievement .swiper-slide .m-state {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  bottom: 1em;
  left: 0;
  right: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #designer-detail .swiper-slide .m-state,
#designer-achievement .swiper-slide .m-state {
    font-size: 2.4rem;
  }
}
#designer-detail .swiper-slide picture,
#designer-achievement .swiper-slide picture {
  height: 100vw;
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  #designer-detail .swiper-slide picture,
#designer-achievement .swiper-slide picture {
    height: 100%;
    max-height: 620px;
    width: 620px;
  }
}
#designer-detail .swiper-slide picture img,
#designer-achievement .swiper-slide picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#designer-detail .swiper-slide-active,
#designer-achievement .swiper-slide-active {
  opacity: 1;
  /* &::before {
  	opacity: 0;
  } */
}
#designer-detail .l-achievement .l-content__inner,
#designer-achievement .l-achievement .l-content__inner {
  padding-left: 4.5333333333vw;
  padding-right: 4.5333333333vw;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-achievement .l-content__inner,
#designer-achievement .l-achievement .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#designer-detail .l-achievement .m-sub,
#designer-achievement .l-achievement .m-sub {
  display: block;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-achievement .m-sub,
#designer-achievement .l-achievement .m-sub {
    font-size: 1.6rem;
  }
}
#designer-detail .l-achievement .m-content__title,
#designer-achievement .l-achievement .m-content__title {
  font-size: 2rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-achievement .m-content__title,
#designer-achievement .l-achievement .m-content__title {
    font-size: 2.4rem;
  }
}
#designer-detail .l-create-detail,
#designer-achievement .l-create-detail {
  padding: 5.8666666667vw 0;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-create-detail,
#designer-achievement .l-create-detail {
    padding: 36px 0;
  }
}
#designer-detail .l-detail,
#designer-achievement .l-detail {
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-detail,
#designer-achievement .l-detail {
    max-width: 580px;
  }
}
#designer-detail .l-detail th,
#designer-detail .l-detail td,
#designer-achievement .l-detail th,
#designer-achievement .l-detail td {
  font-size: 1.3rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-detail th,
#designer-detail .l-detail td,
#designer-achievement .l-detail th,
#designer-achievement .l-detail td {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
#designer-detail .l-detail th,
#designer-achievement .l-detail th {
  text-align: left;
  font-weight: normal;
  width: 5.5em;
  padding-right: 1em;
  vertical-align: top;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-detail th,
#designer-achievement .l-detail th {
    width: 7.5em;
  }
}
#designer-detail .l-detail td,
#designer-achievement .l-detail td {
  border-left: 1px solid #c4c4c4;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  #designer-detail .l-detail td,
#designer-achievement .l-detail td {
    padding-left: 3em;
  }
}
#designer-detail .l-detail td p,
#designer-achievement .l-detail td p {
  margin: 0;
}
#designer-detail .bl-achievement__list,
#designer-achievement .bl-achievement__list {
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  /* max-height: calc((vw($bw, 126)) * 3); */
  overflow: hidden;
  -webkit-transition: 1s;
  transition: 1s;
}
#designer-detail .bl-achievement__list.is-open,
#designer-achievement .bl-achievement__list.is-open {
  max-height: inherit !important;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-achievement__list,
#designer-achievement .bl-achievement__list {
    max-width: 940px;
    margin: 0 auto;
  }
}
#designer-detail .bl-achievement__item,
#designer-achievement .bl-achievement__item {
  width: 33.3333%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  height: 33.6vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-achievement__item,
#designer-achievement .bl-achievement__item {
    width: 29.1%;
    height: auto;
    aspect-ratio: 1/1;
    margin: 40px 2.1% 0;
  }
}
#designer-detail .bl-achievement__item picture,
#designer-detail .bl-achievement__item img,
#designer-achievement .bl-achievement__item picture,
#designer-achievement .bl-achievement__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#designer-detail .bl-achievement__item a,
#designer-achievement .bl-achievement__item a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-achievement__item a:hover,
#designer-achievement .bl-achievement__item a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#designer-detail .bl-achievement__item:first-of-type,
#designer-detail .bl-achievement__item:nth-of-type(3n + 1),
#designer-achievement .bl-achievement__item:first-of-type,
#designer-achievement .bl-achievement__item:nth-of-type(3n + 1) {
  border-left: none;
}
#designer-detail .bl-achievement__item:nth-of-type(3n),
#designer-achievement .bl-achievement__item:nth-of-type(3n) {
  border-right: none;
}
#designer-detail .m-button-more,
#designer-achievement .m-button-more {
  border: none;
  background-color: transparent;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  width: 26.6666666667vw;
  margin: 5.3333333333vw auto;
  display: block;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  #designer-detail .m-button-more,
#designer-achievement .m-button-more {
    margin-top: 35px;
    cursor: pointer;
    font-size: 2rem;
  }
}
#designer-detail .m-button-more.is-hide,
#designer-achievement .m-button-more.is-hide {
  opacity: 0;
  pointer-events: none;
}
#designer-detail .bl-linkorder,
#designer-achievement .bl-linkorder {
  margin-top: 10.6666666667vw;
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #designer-detail .bl-linkorder,
#designer-achievement .bl-linkorder {
    margin: 77px auto 0;
    max-width: 460px;
    padding: 0;
  }
  #designer-detail .bl-linkorder .m-link,
#designer-achievement .bl-linkorder .m-link {
    border-color: #666;
    font-size: 1.6rem;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    letter-spacing: 0.08em;
  }
}

#designer-achievement .swiper .swiper-button-next:after,
#designer-achievement .swiper .swiper-button-prev:after {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
@media screen and (min-width: 768px) {
  #designer-achievement .swiper .swiper-button-next:after,
#designer-achievement .swiper .swiper-button-prev:after {
    width: 24px;
    height: 24px;
  }
}
#designer-achievement .swiper .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#designer-achievement .swiper .swiper-button-prev:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#designer-achievement .swiper .swiper-button-prev {
  top: 300px;
  left: -38px;
  color: #4d4d4d;
}
@media screen and (max-width: 767.98px) {
  #designer-achievement .swiper .swiper-button-prev {
    left: 5.3333333333vw;
    top: 50vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#designer-achievement .swiper .swiper-button-next {
  top: 300px;
  right: -38px;
  color: #4d4d4d;
}
@media screen and (max-width: 767.98px) {
  #designer-achievement .swiper .swiper-button-next {
    right: 5.3333333333vw;
    top: 50vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#designer-achievement .swiper .swiper-button-disabled {
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #designer-achievement .bl-slider__content {
    opacity: 0.1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
#designer-achievement .bl-slider__content.slick-current {
  opacity: 1;
}
#designer-achievement .l-achievement {
  padding-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  #designer-achievement .l-achievement {
    padding-bottom: 93px;
  }
}

#gallery {
  /* ----------------------------------------------------------------------------------------------------
  *	アイテム一覧
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	ギャラリー下層
  * --------------------------------------------------------------------------------------------------*/
}
#gallery .l-content__heading {
  margin-top: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  #gallery .l-content__heading {
    margin-top: 30px;
  }
}
#gallery .l-content__heading .l-content__inner {
  padding-left: 6.4vw;
  padding-right: 6.4vw;
}
#gallery .l-content__body {
  padding-bottom: 20vw;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #gallery .l-content__body {
    padding-bottom: 130px;
  }
}
#gallery .swiper {
  position: relative;
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  #gallery .swiper {
    max-width: 620px !important;
    margin: 0 auto 110px !important;
    overflow: visible !important;
  }
}
#gallery .swiper .swiper-pagination {
  text-align: right;
  font-size: 1.6rem;
  padding-right: 5.0666666667vw;
  font-family: "Hind", sans-serif;
  bottom: 3.2vw;
}
@media screen and (min-width: 768px) {
  #gallery .swiper .swiper-pagination {
    display: none;
  }
}
#gallery .swiper .swiper-button-next:after,
#gallery .swiper .swiper-button-prev:after {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
@media screen and (min-width: 768px) {
  #gallery .swiper .swiper-button-next:after,
#gallery .swiper .swiper-button-prev:after {
    width: 24px;
    height: 24px;
  }
}
#gallery .swiper .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#gallery .swiper .swiper-button-prev:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#gallery .swiper .swiper-button-next {
  right: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #gallery .swiper .swiper-button-next {
    right: -38px;
  }
}
#gallery .swiper .swiper-button-prev {
  left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #gallery .swiper .swiper-button-prev {
    left: -38px;
  }
}
#gallery .swiper .m-counter {
  position: absolute;
  right: 4vw;
  bottom: 4.2666666667vw;
  font-size: 1.6rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #gallery .swiper .m-counter {
    display: none;
  }
}
#gallery .swiper .slick-arrow {
  position: absolute;
  width: 4.2666666667vw;
  height: 4.2666666667vw;
  border-left: 1px solid #4d4d4d;
  border-bottom: 1px solid #4d4d4d;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #gallery .swiper .slick-arrow {
    cursor: pointer;
    top: 0;
    width: 16px;
    height: 16px;
  }
}
#gallery .swiper .prev-arrow {
  left: 5.3333333333vw;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (min-width: 768px) {
  #gallery .swiper .prev-arrow {
    left: 0;
  }
}
#gallery .swiper .next-arrow {
  right: 5.3333333333vw;
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
@media screen and (min-width: 768px) {
  #gallery .swiper .next-arrow {
    right: 0;
  }
}
#gallery .swiper .arrows {
  width: 100%;
  position: absolute;
  top: 50%;
}
@media screen and (min-width: 768px) {
  #gallery .swiper .arrows {
    width: 690px;
    margin: 0 auto;
    left: 0;
    right: 0;
    z-index: 3;
  }
}
#gallery .swiper-slide {
  position: relative;
  width: 100%;
  height: 100vw;
  overflow: hidden;
  opacity: 0.4;
  -webkit-transition: opacity 0.7s 0.2s;
  transition: opacity 0.7s 0.2s;
}
@media screen and (min-width: 768px) {
  #gallery .swiper-slide {
    width: 620px;
    height: 620px;
    margin: 0 30px;
  }
}
#gallery .swiper-slide a {
  position: relative;
  display: block;
  height: 100%;
  color: currentColor;
  text-decoration: none;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  #gallery .swiper-slide a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#gallery .swiper-slide p {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 1;
  bottom: 2.6666666667vw;
  font-size: 2rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #gallery .swiper-slide p {
    font-size: 2.4rem;
    bottom: 20px;
  }
}
#gallery .swiper-slide picture {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gallery .swiper-slide picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gallery .swiper-slide-active {
  opacity: 1;
}
#gallery .l-items {
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  #gallery .l-items {
    margin-top: 75px;
  }
}
@media screen and (min-width: 768px) {
  #gallery .l-items.l-items-wide {
    margin-top: -20px;
  }
}
@media screen and (min-width: 768px) {
  #gallery .l-items .l-content__inner {
    max-width: 950px;
  }
}
@media screen and (max-width: 767.98px) {
  #gallery .l-items .l-content__inner {
    padding-left: 0;
    padding-right: 0;
  }
}
#gallery .l-items .m-title {
  padding-left: 6.4vw;
  padding-right: 6.4vw;
  font-size: 1.8rem;
}
@media screen and (min-width: 768px) {
  #gallery .l-items .m-title {
    font-size: 3.2rem;
    padding: 0;
    text-align: center;
  }
}
#gallery .bl-item__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0;
  list-style: none;
  margin: 0;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#gallery .bl-item__img {
  width: 33.333%;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  #gallery .bl-item__img {
    width: 30.4%;
    margin: 3% 1.46% 0;
  }
}
#gallery .bl-item__img a {
  display: block;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  width: 100%;

}
@media screen and (min-width: 768px) {
  #gallery .bl-item__img a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#gallery .bl-item__img picture {
  width: 100%;
  height: 100%;
}
#gallery .bl-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#gallery .bl-link__wrapper.m-right {
  text-align: right;
}

#gallery .bl-link__wrapper.m-center {
  margin: 9.6vw 12.8vw 0;
}
@media screen and (min-width: 768px) {
  #gallery .bl-link__wrapper.m-center {
    max-width: 460px;
    margin: 46px auto 0;
  }
  #gallery .bl-link__wrapper.m-center .m-link {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  #gallery .bl-link__wrapper.m-center .m-link {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
  }
}
#gallery .m-viewall {
  font-size: 1.4rem;
  font-weight: 500;
  color: currentColor;
  padding: 1em 2em;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #gallery .m-viewall {
    font-size: 1.6rem;
  }
  #gallery .m-viewall:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#gallery #gallery-content .l-content__heading .m-sub {
  margin-bottom: 0;
}
#gallery .l-othercategory {
  background-color: #f3f3f3;
  margin-top: 15.2vw;
  padding: 8vw 0;
}
@media screen and (min-width: 768px) {
  #gallery .l-othercategory {
    margin-top: 73px;
    padding: 54px 0 75px;
  }
}
#gallery .l-othercategory .m-title {
  font-size: 2.2rem;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #gallery .l-othercategory .m-title {
    font-size: 3.2rem;
  }
}
#gallery .bl-category-links__list {
  margin-top: 0.5em;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  #gallery .bl-category-links__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    max-width: 980px;
    margin: calc(25px - 4%) auto 0;
  }
}
@media screen and (min-width: 768px) {
  #gallery .bl-category-links__item {
    position: relative;
    margin-top: 4%;
    min-width: 18%;
    padding: 0 2%;
  }
  #gallery .bl-category-links__item::after {
    content: "";
    position: absolute;
    right: 0;
    top: 0.8em;
    height: 2.4em;
    width: 1px;
    background-color: #d6d6d6;
  }
  #gallery .bl-category-links__item:last-child::after {
    display: none;
  }
}
#gallery .category-links__link {
  color: currentColor;
  text-decoration: none;
  font-size: 1.4rem;
  display: block;
  padding: 1em 0;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #gallery .category-links__link {
    font-size: 2rem;
    text-align: center;
    width: 100%;
    padding: 0;
  }
  #gallery .category-links__link:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
@media screen and (min-width: 768px) {
  #gallery .category-links__link span {
    display: none;
  }
}

#contact {
  /* ----------------------------------------------------------------------------------------------------
  *	フォームリセット
  * --------------------------------------------------------------------------------------------------*/
}
#contact input,
#contact button,
#contact select,
#contact textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
#contact textarea {
  resize: vertical;
}
#contact input[type=checkbox],
#contact input[type=radio] {
  visibility: hidden;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
#contact input[type=submit],
#contact input[type=button],
#contact label,
#contact button,
#contact select {
  cursor: pointer;
}
#contact select::-ms-expand {
  display: none;
}
#contact input[type=text] {
  line-height: normal;
}
#contact .l-content__inner {
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #contact .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#contact .l-content__heading {
  padding-top: 10.6666666667vw;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading {
    padding-top: 18px;
  }
}
#contact .l-content__heading .m-content__title {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading .m-content__title {
    font-size: 4.4rem;
  }
}
#contact .l-content__heading .m-text {
  margin-top: 1.5em;
  line-height: 1.4;
  margin: 1em 0;
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading .m-text {
    text-align: center;
  }
}
#contact .l-content__heading .l-tel-area {
  margin-top: 5.3333333333vw;
  padding: 3.7333333333vw 4vw;
  background-color: #f3f3f3;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: auto 0px 1fr;
  grid-template-columns: auto 1fr;
  -ms-grid-rows: auto 0px auto;
  grid-template-rows: auto auto;
  gap: 0px 0px;
      grid-template-areas: "text text" "icon telnumber" "icon hour";
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading .l-tel-area {
    display: -ms-grid;
    display: grid;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 15px 25px;
    max-width: 460px;
    margin: 33px auto 0;
    -ms-grid-columns: auto auto auto;
    grid-template-columns: auto auto auto;
    -ms-grid-rows: auto auto;
    grid-template-rows: auto auto;
        grid-template-areas: "text text text" "icon telnumber hour";
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#contact .l-content__heading .l-tel-area .m-text {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  font-size: 1.2rem;
  grid-area: text;
  margin: 0 0 0.5em 0;
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading .l-tel-area .m-text {
    font-size: 1.4rem;
    text-align: left;
  }
}
#contact .l-content__heading .l-tel-area i {
  -ms-grid-row: 3;
  -ms-grid-row-span: 3;
  -ms-grid-column: 1;
  width: 3.2vw;
  grid-area: icon;
  margin-top: 0.3em;
  margin-right: 1em;
  margin-left: 1em;
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading .l-tel-area i {
    width: 12px;
    margin-right: 10px;
    margin-left: 0.5em;
  }
}
#contact .l-content__heading .l-tel-area a {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  font-size: 1.6rem;
  font-weight: 500;
  text-decoration: none;
  color: currentColor;
  grid-area: telnumber;
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading .l-tel-area a {
    margin-right: 15px;
  }
}
#contact .l-content__heading .l-tel-area .m-note {
  -ms-grid-row: 5;
  -ms-grid-column: 3;
  font-size: 1.1rem;
  grid-area: hour;
  margin: 0.5em 0 0 0;
}
@media screen and (min-width: 768px){
  #contact .l-content__heading .l-tel-area .m-text {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    -ms-grid-column-span: 3;
  }
  #contact .l-content__heading .l-tel-area i {
    -ms-grid-row: 2;
    -ms-grid-row-span: 1;
    -ms-grid-column: 1;
  }
  #contact .l-content__heading .l-tel-area a {
    -ms-grid-row: 2;
    -ms-grid-column: 2;
  }
  #contact .l-content__heading .l-tel-area .m-note {
    -ms-grid-row: 2;
    -ms-grid-column: 3;
  }
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading .l-tel-area .m-note {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  #contact .l-content__heading .m-link {
    max-width: 460px;
    margin: 40px auto 0;
    font-size: 1.6rem;
    padding: 0.8em 0;
    letter-spacing: 0.1em;
  }
}
#contact .l-guide-area {
  margin-top: 14.4vw;
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #contact .l-guide-area {
    margin: 66px auto 0;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 800px;
  }
}
#contact .l-guide-area .m-title {
  font-size: 1.8rem;
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #contact .l-guide-area .m-title {
    font-size: 2.6rem;
  }
}
#contact .l-guide-area .m-text {
  font-size: 1.3rem;
  margin: 0.5em 0 0;
}
@media screen and (min-width: 768px) {
  #contact .l-guide-area .m-text {
    font-size: 1.6rem;
    text-align: center;
    margin-top: 1em;
  }
}
#contact .l-guide-area .l-guide-link__wrapper {
  text-align: center;
}
#contact .l-guide-area a {
  font-weight: 500;
  text-align: center;
  color: currentColor;
  text-decoration: none;
  display: inline-block;
  font-size: 1.4rem;
  padding: 0.5em 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #contact .l-guide-area a {
    font-size: 1.6rem;
  }
  #contact .l-guide-area a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#contact .l-faq {
  margin-top: 9.0666666667vw;
  padding: 9.3333333333vw 0 12.8vw;
  background-color: #f3f3f3;
}
@media screen and (min-width: 768px) {
  #contact .l-faq {
    margin-top: 65px;
    padding: 43px 15px 74px;
  }
}
#contact .l-faq .l-content__inner {
  padding-left: 7.4666666667vw;
  padding-right: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  #contact .l-faq .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 910px;
  }
}
#contact .l-link-wrapper {
  margin: 10.6666666667vw 12.5333333333vw 16.2666666667vw;
}
@media screen and (min-width: 768px) {
  #contact .l-link-wrapper {
    margin: 49px auto 65px;
  }
  #contact .l-link-wrapper .m-link {
    font-size: 1.6rem;
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    max-width: 460px;
    margin: 0 auto;
    letter-spacing: 0.1em;
  }
}
@media screen and (min-width: 768px) {
  #contact .bl_faq_a {
    background-color: #fafafa;
  }
}
#contact .l-register-content {
  background-color: #f3f3f3;
  padding: 4.8vw 0 12.8vw;
}
@media screen and (min-width: 768px) {
  #contact .l-register-content {
    padding: 38px 0 60px;
    margin-top: 30px;
  }
}
@media screen and (min-width: 768px) {
  #contact .l-register-content .l-content__inner {
    max-width: 490px;
  }
}
#contact .bl-register {
  margin-top: 0;
}
#contact .bl-register dt {
  font-size: 1.4rem;
}
#contact .bl-register dd {
  padding-top: 0.5em;
}
#contact .bl-register dd input {
  border: 1px solid #c4c4c4;
  font-size: 1.6rem;
  padding: 0.6em;
  background-color: #fff;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #contact .bl-register dd input {
    font-size: 1.4rem;
  }
}
#contact .bl-register dd textarea {
  border: 1px solid #c4c4c4;
  font-size: 1.6rem;
  padding: 0.6em;
  background-color: #fff;
  width: 100%;
  min-height: 41.3333333333vw;
}
@media screen and (min-width: 768px) {
  #contact .bl-register dd textarea {
    min-height: 180px;
    font-size: 1.4rem;
  }
}
#contact .bl-input + .bl-input {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  #contact .bl-input + .bl-input {
    margin-top: 28px;
  }
}
#contact .l-submit-wrapper {
  margin-top: 15.4666666667vw;
}
@media screen and (min-width: 768px) {
  #contact .l-submit-wrapper {
    margin-top: 69px;
  }
}
#contact .l-submit-wrapper .l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-bottom: 4vw;
}
@media screen and (min-width: 768px) {
  #contact .l-submit-wrapper .l-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 18px;
  }
}
#contact .l-submit-wrapper a {
  color: currentColor;
  font-size: 1.2rem;
  display: inline-block;
  margin-right: 2em;
  text-decoration: underline;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  #contact .l-submit-wrapper a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#contact .l-submit-wrapper a i {
  display: inline-block;
  width: 3.2vw;
  position: relative;
  top: 0.3em;
  margin-left: 0.4em;
}
@media screen and (min-width: 768px) {
  #contact .l-submit-wrapper a i {
    width: 12px;
    top: 0.4em;
  }
}
#contact .m-button {
  background-color: #fff;
  border: 1px solid #666;
  text-align: center;
  padding: 2.6666666667vw 2.6666666667vw 1.3333333333vw;
  width: 100%;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  #contact .m-button {
    padding: 5px 10px 5px;
  }
}
@media screen and (min-width: 768px) and (min-width: 768px) {
  #contact .m-button:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#contact .m-button .m-text-small {
  font-size: 1.2rem;
  display: block;
}
#contact .m-button .m-text {
  display: block;
  font-size: 1.6rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area-wrapper {
    text-align: center;
  }
}
#contact .l-tel-mail-area {
  background-color: #f3f3f3;
  padding: 2.6666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 5.3333333333vw 12.5333333333vw 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area {
    margin: 30px auto 57px;
    padding: 15px 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
#contact .l-tel-mail-area .l-tel-mail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area .l-tel-mail__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#contact .l-tel-mail-area .m-text {
  font-size: 1.1rem;
  padding-left: 3.2em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area .m-text {
    padding-left: 0;
    text-align: center;
    margin-top: 0.6em;
  }
}
#contact .l-tel-mail-area a {
  font-size: 1.4rem;
  color: currentColor;
  padding: 0.4em 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  text-decoration: none;
}
#contact .l-tel-mail-area a:hover {
  text-decoration: none;
}
#contact .l-tel-mail-area a:hover:hover {
  opacity: 0.7;
  text-decoration: none;
}
#contact .l-tel-mail-area a i {
  min-width: 2.5em;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area a i {
    min-width: inherit;
    padding-right: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area a.m-mail {
    margin-right: 2em;
  }
}
#contact .l-tel-mail-area a.m-mail i {
  position: relative;
  top: 0.4em;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area a.m-mail i {
    top: 0.65em;
  }
}
#contact .l-tel-mail-area a.m-mail i img {
  display: inline-block;
  width: 4vw;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area a.m-mail i img {
    width: 16px;
  }
}
#contact .l-tel-mail-area a.m-tel i {
  position: relative;
  top: 0.1em;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area a.m-tel i {
    top: 0.3em;
  }
}
#contact .l-tel-mail-area a.m-tel i img {
  display: inline-block;
  width: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  #contact .l-tel-mail-area a.m-tel i img {
    width: 11px;
  }
}
@media screen and (min-width: 768px) {
  #contact.completion .l-content__heading .m-content__title + .m-text {
    margin-top: 30px;
  }
}

#news .l-content__heading {
  margin-top: 4.8vw;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #news .l-content__heading {
    margin-top: 22px;
  }
}
@media screen and (min-width: 768px) {
  #news .l-content__inner {
    max-width: 910px;
  }
}
#news .m-year {
  font-size: 1.8rem;
  margin: 0;
  padding: 0 5.3333333333vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #news .m-year {
    font-size: 3.2rem;
    padding: 0 20px;
  }
}
#news .l-news {
  padding-top: 0;
  margin-top: 9.3333333333vw;
}
@media screen and (min-width: 768px) {
  #news .l-news {
    margin-top: 59px;
  }
}
#news .l-news:last-of-type {
  margin-bottom: 21.3333333333vw;
}
@media screen and (min-width: 768px) {
  #news .l-news:last-of-type {
    margin-bottom: 112px;
  }
}
#news .l-news + .l-news {
  margin-top: 13.6vw;
}
@media screen and (min-width: 768px) {
  #news .l-news + .l-news {
    margin-top: 71px;
  }
}
#news .bl-news__item {
  border-top: none;
  border-bottom: 1px solid #c4c4c4;
}

#site_map .l-content__heading {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #site_map .l-content__heading {
    margin-top: 15px;
  }
}
#site_map .l-content__body {
  padding: 5.3333333333vw 10.4vw;
}
@media screen and (min-width: 768px) {
  #site_map .l-content__body {
    padding: 0 15px;
    max-width: 900px;
    margin: 0 auto 60px;
  }
}
#site_map .l-content__body .l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #site_map .l-content__body .l-flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl-content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: distribute;
        justify-content: space-around;
  }
}
#site_map .bl-content__wrapper:first-of-type {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#site_map .bl-content__wrapper:last-of-type {
  margin-top: 2.6666666667vw;
}
#site_map .bl-content__wrapper + .bl-content__wrapper {
  margin-top: 65px;
}
#site_map .bl_sitemap-area + .bl_sitemap-area {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  #site_map .bl_sitemap-area + .bl_sitemap-area {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl_sitemap-area {
    width: 30%;
    margin: 0 1.5%;
  }
}
#site_map .bl_sitemap-area ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#site_map .bl_sitemap-area li {
  font-size: 1.5rem;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #site_map .bl_sitemap-area li {
    font-size: 1.8rem;
  }
}
#site_map .bl_sitemap-area a {
  color: currentColor;
  display: block;
  padding: 0.9em 0;
}
@media screen and (min-width: 768px) {
  #site_map .bl_sitemap-area a {
    padding: 0.5em 0;
    display: inline-block;
    text-decoration: none;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #site_map .bl_sitemap-area a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#site_map .bl_sitemap-area .m-large {
  font-size: 2.2rem;
  padding-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  #site_map .bl_sitemap-area .m-large {
    font-size: 3.2rem;
    padding-bottom: 0.2em;
  }
}
#site_map .bl_sitemap-area .m-middle {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #site_map .bl_sitemap-area .m-middle {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl-link-top {
    text-align: center;
    width: 100%;
    margin: 40px 0;
  }
}
#site_map .bl-link-top li {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #site_map .bl-link-top li {
    font-size: 2rem;
  }
}
#site_map .bl-link-designer li,
#site_map .bl-link-gallerry li,
#site_map .bl-link-concept li {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #site_map .bl-link-designer li,
#site_map .bl-link-gallerry li,
#site_map .bl-link-concept li {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl_nav02 li:first-child {
    font-size: 2rem;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl-link-concept {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl-link-gallerry {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl_nav01 {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
  #site_map .bl_nav01 li {
    margin-bottom: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl_nav02 {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
}
@media screen and (min-width: 768px) {
  #site_map .bl_nav03 {
    -webkit-box-ordinal-group: 4;
        -ms-flex-order: 3;
            order: 3;
  }
  #site_map .bl_nav03 li {
    margin-bottom: 0.5em;
  }
}

#faq {
  /* ----------------------------------------------------------------------------------------------------
  *	アンカー
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	コンテンツ
  * --------------------------------------------------------------------------------------------------*/
}
#faq .l-page-nav {
  background-color: #f3f3f3;
}
@media screen and (min-width: 768px) {
  #faq .l-page-nav {
    margin-bottom: 10px;
  }
}
#faq .bl-page-nav__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 1em;
}
@media screen and (min-width: 768px) {
  #faq .bl-page-nav__list {
    max-width: 910px;
    padding: 35px 15px;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#faq .bl-page-nav__item {
  width: 50%;
}
@media screen and (min-width: 768px) {
  #faq .bl-page-nav__item {
    width: auto;
    margin: 1em 2em;
  }
}
#faq .bl-page-nav__item a {
  font-size: 1.4rem;
  font-weight: 700;
  padding: 1em;
  color: currentColor;
  text-decoration: none;
  display: inline-block;
}
@media screen and (min-width: 768px) {
  #faq .bl-page-nav__item a {
    font-size: 2rem;
    padding: 0;
  }
  #faq .bl-page-nav__item a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#faq .l-content__heading {
  margin: 4.8vw 0;
}
@media screen and (min-width: 768px) {
  #faq .l-content__heading {
    margin: 30px 0 65px;
  }
}
#faq .l-content__body {
  padding-bottom: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  #faq .l-content__body {
    max-width: 910px;
    margin: 0 auto;
    padding-bottom: 150px;
  }
}
#faq .l-faq {
  padding-top: 2.6666666667vw;
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  #faq .l-faq {
    padding-top: 55px;
    padding-bottom: 0;
  }
}
#faq .m-faq__title {
  font-size: 1.8rem;
  font-weight: 700;
  padding-left: 5.0666666667vw;
}
@media screen and (min-width: 768px) {
  #faq .m-faq__title {
    font-size: 2.6rem;
    padding-left: 20px;
  }
}

#consultation {
  /* ----------------------------------------------------------------------------------------------------
  *	所要時間
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  	*	サンプルのタイトル
  	* --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	予約相談タイトル(担当デザイナーとか)
  * --------------------------------------------------------------------------------------------------*/
  /*
  ----------------------------------------------------------------------------------------------------
  *	コンテンツ内包のタイトル
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	テキストコンテンツのベース枠
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	変更ボタン
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	担当デザイナー
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	デザインの好み
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	リフォームジュエリー（BEFORE）
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	リフォームジュエリー（AFTER）
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	ご予算・納期・相談希望日
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	お客様情報
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	予約をはじめる
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	フォームリセット
  * --------------------------------------------------------------------------------------------------*/
  /* inputの位置と枠　*/
  /* inputの位置と枠　*/
  /*　チェックマーク　*/
  /* ----------------------------------------------------------------------------------------------------
  *	ボタン
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	確認画面一覧
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	予約完了
  * --------------------------------------------------------------------------------------------------*/
}
#consultation a {
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #consultation .hp-pc-center {
    text-align: center;
  }
}
#consultation .l-content__inner {
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#consultation .l-content__heading {
  padding: 10.6666666667vw 0 2.6666666667vw;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__heading {
    padding: 69px 0 20px;
  }
}
#consultation .l-content__heading .m-text.m-blod {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__heading .m-text.m-blod {
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.4;
  }
}
#consultation .l-content__heading .m-text {
  margin: 0;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__heading .m-text {
    max-width: 510px;
    text-align: center;
    margin: 1em auto 0;
  }
}
#consultation .l-content__heading .m-content__title {
  font-size: 2.4rem;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__heading .m-content__title {
    font-size: 4.4rem;
  }
}
#consultation .l-content__heading .m-content__title + .m-text {
  margin-top: 1em;
}
#consultation .l-content__body {
  padding-bottom: 9.8666666667vw;
  overflow: hidden;
  /* ----------------------------------------------------------------------------------------------------
  *	swiper
  * --------------------------------------------------------------------------------------------------*/
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body {
    padding-bottom: 125px;
  }
}
#consultation .l-content__body .l-swiper__wrapper {
  margin-top: 2.6666666667vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .l-swiper__wrapper {
    max-width: 950px;
    margin: 10px auto 0;
    width: 88%;
  }
}
#consultation .l-content__body .l-swiper__wrapper.l-large {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .l-swiper__wrapper.l-large {
    margin-top: 33px;
  }
}
#consultation .l-content__body .l-swiper-content__wrapper {
  /* height: vw($bw, 300);
  overflow-y: auto; */
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .l-swiper-content__wrapper {
    /* height: 500px; */
  }
}
#consultation .l-content__body .swiper-button-next:after,
#consultation .l-content__body .swiper-button-prev:after {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .swiper-button-next:after,
#consultation .l-content__body .swiper-button-prev:after {
    width: 24px;
    height: 24px;
  }
}
#consultation .l-content__body .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#consultation .l-content__body .swiper-button-prev:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#consultation .l-content__body .swiper-button-next,
#consultation .l-content__body .swiper-button-prev {
  top: 38vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .swiper-button-next,
#consultation .l-content__body .swiper-button-prev {
    top: 240px;
  }
}
#consultation .l-content__body .swiper-button-prev {
  left: 3.5vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .swiper-button-prev {
    left: -12px;
  }
}
#consultation .l-content__body .swiper-button-next {
  right: 3.5vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .swiper-button-next {
    right: -12px;
  }
}
#consultation .l-content__body .swiper-button-disabled {
  opacity: 0;
}
#consultation .l-content__body .swiper {
  max-width: 88vw !important;
  position: relative;
  margin: 0 auto !important;
  overflow: visible !important;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .swiper {
    max-width: 950px !important;
  }
}
@media screen and (max-width: 767.98px) {
  #consultation .l-content__body .apply.swiper {
    max-width: inherit !important;
  }
}
#consultation .l-content__body .swiper-slide-active .swiper-content {
  opacity: 1;
}
#consultation .l-content__body .swiper-content {
  border-radius: 10px;
  -webkit-box-shadow: 0px 4px 14px -3px rgba(0, 0, 0, 0.31);
          box-shadow: 0px 4px 14px -3px rgba(0, 0, 0, 0.31);
  width: 85.3333333333vw;
  min-height: 70.9333333333vw;
  margin: 0 auto 3.7333333333vw;
  border: 1px solid #dcdcdc;
  background-color: #fff;
  opacity: 0.4;
  -webkit-transition: opacity 0.7s 0.2s;
  transition: opacity 0.7s 0.2s;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__body .swiper-content {
    max-width: 800px;
    min-height: 453px;
    margin-bottom: 15px;
    width: 80vw;
  }
}
#consultation .l-content__body .swiper-content.l-narrow {
  width: 80vw;
}
#consultation .l-time {
  background-color: #f3f3f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 74.6666666667vw;
  margin: 0 auto;
  padding: 0.5em;
}
@media screen and (min-width: 768px) {
  #consultation .l-time {
    max-width: 510px;
    margin: 0 auto;
    padding: 0.2em 1em;
  }
}
#consultation .l-time i {
  display: inline-block;
  width: 3.7333333333vw;
  margin-right: 0.5em;
}
@media screen and (min-width: 768px) {
  #consultation .l-time i {
    width: 14px;
    height: 14px;
  }
}
#consultation .l-time .m-text {
  margin: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-time .m-text {
    font-size: 1.4rem;
  }
}
#consultation .l-sample {
  background-color: #e4dac8;
  padding: 0.5em 0.2em 0.1em;
  position: relative;
}
@media screen and (min-width: 768px) {
  #consultation .l-sample {
    padding-top: 0.6em;
    padding-bottom: 0.2em;
  }
}
#consultation .l-sample .m-samp-text {
  font-size: 1.2rem;
  text-align: center;
  margin: 0;
  letter-spacing: 0.1em;
}
#consultation .l-sample .m-counter {
  position: absolute;
  right: 4vw;
  font-size: 1.1rem;
  top: 56%;
  margin: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  #consultation .l-sample .m-counter {
    right: 24px;
  }
}
#consultation.l-apply {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  min-height: 100vh;
}
#consultation.l-apply main {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#consultation.l-apply .l-content__body {
  padding-bottom: 0;
}
#consultation .l-reserve-title__wrapper {
  border-bottom: 1px solid #dcdcdc;
}
#consultation .l-reserve-title__wrapper .l-reserve__title {
  font-size: 1.3rem;
  font-weight: 700;
  text-align: center;
  padding: 0.5em 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-reserve-title__wrapper .l-reserve__title {
    font-size: 1.4rem;
    padding: 0.6em 0;
  }
}
#consultation .m-title {
  text-align: center;
  font-size: 1.3rem;
  margin: 0 0 1em;
}
@media screen and (min-width: 768px) {
  #consultation .m-title {
    font-size: 2.2rem;
    margin-bottom: 0.8em;
  }
}
#consultation .l-content__wrapper {
  margin-top: 2.6666666667vw;
  margin-bottom: 5.3333333333vw;
}
#consultation .l-content__wrapper .m-text {
  font-size: 1.3rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper .m-text {
    font-size: 1.6rem;
  }
  #consultation .l-content__wrapper .m-text.hp-pc-center {
    text-align: center;
    margin-top: 1.5em;
  }
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper {
    padding: 20px 0 30px;
    max-width: 800px;
    margin: 0 auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#consultation .l-content__wrapper .l-file__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper .l-file__wrapper {
    width: 100%;
    margin: 0 auto;
  }
}
#consultation .l-content__wrapper .l-file__wrapper > div {
  position: relative;
  margin: 0 2.1333333333vw;
  width: 50%;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper .l-file__wrapper > div {
    margin: 0 22px;
    width: 176px;
  }
}
#consultation .l-content__wrapper .l-file__wrapper > div img {
  width: 100%;
  height: auto;
}
#consultation .l-content__wrapper .l-file__wrapper > div .m-btn-clear {
  margin: 0;
  padding: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#consultation .l-content__wrapper .l-file__wrapper > div .m-btn-clear::before {
  content: "";
  width: 4.2666666667vw;
  height: 4.2666666667vw;
  background-color: #fff;
  border-radius: 100%;
  position: absolute;
  top: 1.3333333333vw;
  right: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper .l-file__wrapper > div .m-btn-clear::before {
    width: 16px;
    height: 16px;
    top: 9px;
    right: 9px;
  }
}
#consultation .l-content__wrapper .l-file__wrapper > div .m-btn-clear::after {
  content: "×";
  position: absolute;
  top: 1.2vw;
  right: 1.8933333333vw;
  font-size: 1.1rem;
  color: #888;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper .l-file__wrapper > div .m-btn-clear::after {
    top: 7px;
    right: 11px;
  }
}
#consultation .l-content__wrapper .l-file__wrapper .m-file {
  width: 26.6666666667vw;
  height: 20vw;
  background-color: #f3f3f3;
  border: 1px dashed #848484;
  display: block;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper .l-file__wrapper .m-file {
    width: 176px;
    height: 132px;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #consultation .l-content__wrapper .l-file__wrapper .m-file:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#consultation .l-content__wrapper .l-file__wrapper .m-file span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  color: #888;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper .l-file__wrapper .m-file span {
    font-size: 1.4rem;
  }
}
#consultation .l-content__wrapper .l-file__wrapper .m-file .m-plus {
  font-size: 2.6rem;
  color: currentColor;
  color: #9b9b9b;
  line-height: 1.2;
}
@media screen and (min-width: 768px) {
  #consultation .l-content__wrapper .l-file__wrapper .m-file .m-plus {
    font-size: 2.8rem;
  }
}
#consultation .l-btn__wrapper {
  text-align: center;
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  #consultation .l-btn__wrapper {
    padding-top: 1em;
    margin-top: 1.5em;
  }
}
#consultation .l-btn__wrapper .m-change-btn {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #consultation .l-btn__wrapper .m-change-btn {
    font-size: 1.6rem;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #consultation .l-btn__wrapper .m-change-btn:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#consultation .l-charge .bl-designer {
  padding-left: 3.2vw;
  padding-right: 3.2vw;
  width: 73%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer {
    width: auto;
    padding: 0;
  }
}
#consultation .l-charge .bl-designer .m-text {
  margin: 0;
  font-size: 1.3rem;
  line-height: 1.4;
}
#consultation .l-charge .bl-designer .l-button__wrapper {
  margin-top: 6.6666666667vw;
  padding: 0 2.6666666667vw;
}
#consultation .l-charge .bl-designer .m-button {
  width: 100%;
}
#consultation .l-charge .bl-designer .m-button + .m-button {
  margin-top: 6.4vw;
}
#consultation .l-charge .bl-designer .l-prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-prof {
    min-width: 400px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
#consultation .l-charge .bl-designer figure {
  width: 12.8vw;
  height: 12.8vw;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 2.6666666667vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer figure {
    width: 72px;
    height: 72px;
    margin-right: 20px;
  }
}
#consultation .l-charge .bl-designer figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#consultation .l-charge .bl-designer .l-prof__wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#consultation .l-charge .bl-designer .m-name {
  font-size: 1.3rem;
  margin: 0 0 0.2em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .m-name {
    font-size: 1.6rem;
  }
}
#consultation .l-charge .bl-designer .l-works {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-works {
    margin-top: 1.3em;
  }
}
#consultation .l-charge .bl-designer .l-works .m-title {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-works .m-title {
    font-size: 1.2rem;
  }
}
#consultation .l-charge .bl-designer .l-works ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-works ul {
    width: 400px;
    margin: -6px auto 0;
  }
}
#consultation .l-charge .bl-designer .l-works ul li {
  width: 23%;
  margin: 2% 1% 0;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-works ul li {
    width: 88px;
    height: 88px;
    margin: 12px 6px 0;
  }
}
#consultation .l-charge .bl-designer .l-works ul li picture {
  width: 100%;
  height: 100%;
}
#consultation .l-charge .bl-designer .l-works ul li picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#consultation .l-charge .bl-designer .l-prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-prof {
    max-width: 400px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
#consultation .l-charge .bl-designer figure {
  width: 12.8vw;
  height: 12.8vw;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 2.6666666667vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer figure {
    width: 72px;
    height: 72px;
    margin-right: 20px;
  }
}
#consultation .l-charge .bl-designer figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#consultation .l-charge .bl-designer .l-prof__wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#consultation .l-charge .bl-designer .m-name {
  font-size: 1.3rem;
  margin: 0 0 0.2em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .m-name {
    font-size: 1.6rem;
  }
}
#consultation .l-charge .bl-designer .m-text {
  margin: 0;
  font-size: 1.2rem;
}
#consultation .l-charge .bl-designer .l-works {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-works {
    margin-top: 1.3em;
  }
}
#consultation .l-charge .bl-designer .l-works .m-title {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-works .m-title {
    font-size: 1.2rem;
  }
}
#consultation .l-charge .bl-designer .l-works ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-works ul {
    width: 520px;
    margin: -6px auto 0;
  }
}
#consultation .l-charge .bl-designer .l-works ul li {
  width: 23%;
  margin: 2% 1% 0;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-designer .l-works ul li {
    width: 118px;
    height: 118px;
    margin: 12px 6px 0;
  }
}
#consultation .l-charge .bl-designer .l-works ul li picture {
  width: 100%;
  height: 100%;
}
#consultation .l-charge .bl-designer .l-works ul li picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#consultation .l-charge .bl-nominate {
  width: 82%;
  margin: 8vw auto 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-nominate {
    margin-top: 0;
    width: 100%;
  }
}
#consultation .l-charge .bl-nominate .l-button__wrapper {
  margin-top: 6.6666666667vw;
  padding: 0 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-nominate .l-button__wrapper {
    padding: 0;
    max-width: 320px;
    margin: 60px auto 0;
  }
}
#consultation .l-charge .bl-nominate .l-button__wrapper > div + div {
  margin-top: 6.4vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-charge .bl-nominate .l-button__wrapper > div + div {
    margin-top: 32px;
  }
}
#consultation .l-liking .bl-like {
  width: 90%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-liking .bl-like {
    margin: 0 auto;
    min-width: 548px;
    width: auto;
  }
}
#consultation .l-liking .bl-like .bl-like-block .m-title {
  font-size: 1.4rem;
  font-weight: 400;
  margin: 0;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #consultation .l-liking .bl-like .bl-like-block .m-title {
    font-size: 2.2rem;
  }
}
#consultation .l-liking .bl-like .bl-like-block .m-title i {
  width: 3.7333333333vw;
  display: inline-block;
  margin-right: 0.3em;
  position: relative;
  top: 0.1em;
}
@media screen and (min-width: 768px) {
  #consultation .l-liking .bl-like .bl-like-block .m-title i {
    width: 24px;
    top: 0.2em;
    margin-right: 0.5em;
  }
}
#consultation .l-liking .bl-like .bl-like-block .m-right {
  margin: 0.2em 0 0;
  font-size: 1.2rem;
  text-align: right;
}
#consultation .l-liking .bl-like .bl-like-block ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #consultation .l-liking .bl-like .bl-like-block ul {
    margin: -10px -6px 0;
    min-height: 100px;
  }
}
#consultation .l-liking .bl-like .bl-like-block ul li {
  width: 18%;
  margin: 1% 1% 0;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  #consultation .l-liking .bl-like .bl-like-block ul li {
    width: 100px;
    height: 100px;
  }
}
#consultation .l-liking .bl-like .bl-like-block ul li picture {
  width: 100%;
  height: 100%;
}
#consultation .l-liking .bl-like .bl-like-block ul li picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#consultation .l-liking .bl-like .bl-like-block ul li.m-blank {
  width: 100%;
  text-align: center;
  background-color: #f8f8f8;
  aspect-ratio: auto;
  padding: 1.5em 1em;
}
@media screen and (min-width: 768px) {
  #consultation .l-liking .bl-like .bl-like-block ul li.m-blank {
    padding: 0 1em;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#consultation .l-liking .bl-like .bl-like-block ul li.m-blank span {
  font-size: 1.2rem;
  color: #888;
}
#consultation .l-liking .bl-like-select {
  width: 82%;
  margin: 8vw auto 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-liking .bl-like-select {
    width: 100%;
    margin-top: 0;
  }
}
#consultation .l-liking .bl-like-select .l-button__wrapper {
  margin-top: 12.5333333333vw;
  padding: 0 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-liking .bl-like-select .l-button__wrapper {
    padding: 0;
    max-width: 320px;
    margin: 80px auto 0;
  }
}
#consultation .l-reform-before .bl-reform-b {
  width: 87%;
  margin: 0 auto;
}
#consultation .l-reform-before .bl-reform-b .m-text {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-before .bl-reform-b .m-text {
    font-size: 1.6rem;
  }
}
#consultation .l-reform-before .bl-reform-b .l-jwels {
  margin: -4% auto 0;
  padding: 0 4.2666666667vw;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 77%;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-before .bl-reform-b .l-jwels {
    padding: 0;
    width: auto;
  }
}
#consultation .l-reform-before .bl-reform-b .l-jwels li {
  width: 44%;
  margin: 6% 3% 0;
  aspect-ratio: 100/75;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-before .bl-reform-b .l-jwels li {
    width: 176px;
  }
}
#consultation .l-reform-before .bl-reform-b .l-jwels li picture {
  width: 100%;
  height: 100%;
}
#consultation .l-reform-before .bl-reform-b .l-jwels li picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#consultation .l-reform-before .bl-reform-b .m-note {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-before .bl-reform-b .m-note {
    max-width: 500px;
    margin: 20px auto 0;
  }
}
#consultation .l-reform-before .bl-jwel-post {
  width: 82%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-before .bl-jwel-post .l-file__wrapper {
    margin-top: 50px;
    width: 100%;
  }
}
#consultation .l-reform-before .bl-jwel-post .m-note {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-before .bl-jwel-post .m-note {
    max-width: 500px;
    margin: 20px auto 0;
  }
}
#consultation .l-reform-after .bl-reform-a {
  width: 87%;
  margin: 0 auto;
}
#consultation .l-reform-after .bl-reform-a .m-text {
  margin: 0.5em 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-reform-a .m-text {
    font-size: 1.6rem;
    text-align: center;
    margin: 0;
  }
}
#consultation .l-reform-after .bl-reform-a .m-note {
  font-size: 1.2rem;
  color: #888;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-reform-a .m-note {
    text-align: center;
    margin: 20px auto;
  }
}
#consultation .l-reform-after .bl-reform-a .m-item-title {
  font-size: 1.3rem;
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-reform-a .m-item-title {
    text-align: center;
    font-size: 1.6rem;
  }
}
#consultation .l-reform-after .bl-reform-a .bl-cell {
  border-top: 1px dashed #c4c4c4;
  padding: 1em 0 2em;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-reform-a .bl-cell {
    width: 86%;
    margin: 0 auto;
  }
}
#consultation .l-reform-after .bl-reform-a .bl-cell:last-of-type {
  padding-bottom: 0;
}
#consultation .l-reform-after .bl-reform-a .bl-cell .m-title {
  font-size: 1.3rem;
  text-align: left;
  font-weight: 400;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-reform-a .bl-cell .m-title {
    text-align: center;
    font-size: 1.6rem;
  }
}
#consultation .l-reform-after .bl-reform-a .bl-cell .m-text {
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-reform-a .bl-cell .m-text {
    font-size: 1.4rem;
    max-width: 400px;
    margin: 0 auto;
    text-align: left;
  }
}
#consultation .l-reform-after .bl-reform-a .bl-cell .l-jwels {
  margin: -6% -3% 0;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 90%;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-reform-a .bl-cell .l-jwels {
    width: auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: -5px -11px 0;
  }
}
#consultation .l-reform-after .bl-reform-a .bl-cell .l-jwels li {
  margin: 6% 3% 0;
  width: 44%;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-reform-a .bl-cell .l-jwels li {
    width: 176px;
    margin: 10px 24px;
  }
}
#consultation .l-reform-after .bl-reform-a .bl-cell .l-jwels li picture {
  width: 100%;
  height: auto;
}
#consultation .l-reform-after .bl-reform-a .bl-cell .l-jwels li picture img {
  width: 100%;
  height: auto;
}
#consultation .l-reform-after .bl-hope-post {
  width: 86%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-hope-post {
    padding-bottom: 10px;
    width: 86.25%;
    margin: 0 auto;
  }
}
#consultation .l-reform-after .bl-hope-post .l-item {
  padding-right: 1em;
}
#consultation .l-reform-after .bl-hope-post .l-input__list {
  margin: 0;
  margin-top: -1em;
  padding: 0;
  list-style: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-hope-post .l-input__list {
    max-width: 430px;
    margin: -5px auto 10px;
    display: -ms-grid;
    display: grid;
    -ms-grid-columns: auto 10px 1fr 10px auto;
    grid-template-columns: auto 1fr auto;
    grid-gap: 10px;
  }
}
#consultation .l-reform-after .bl-hope-post .l-input__list li {
  min-width: 40%;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-hope-post .l-input__list li {
    min-width: inherit;
    font-size: 1.4rem;
  }
}
#consultation .l-reform-after .bl-hope-post .l-input__list li.l-short {
  width: 42%;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-hope-post .l-input__list li.l-short {
    width: auto;
  }
}
#consultation .l-reform-after .bl-hope-post .l-input__list li.l-large {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#consultation .l-reform-after .bl-hope-post .l-input__list li span {
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-hope-post .l-input__list li span {
    padding-top: 0;
    padding-bottom: 0;
  }
  #consultation .l-reform-after .bl-hope-post .l-input__list li span span {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #consultation .l-reform-after .bl-hope-post .l-input__list li span:hover span {
    opacity: 0.7;
  }
}
#consultation .l-reform-after .bl-hope-post .m-text-small {
  font-size: 1.2rem;
}
#consultation .l-reform-after .bl-hope-post .m-note {
  font-size: 1.2rem;
  color: #888;
  margin: 0;
}
#consultation .l-reform-after .bl-hope-post .m-note.l-mt {
  margin-top: 1em;
}
#consultation .l-reform-after .bl-hope-post hr {
  margin: 1em 0 2em;
  border: none;
  border-top: 1px dotted #c4c4c4;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-hope-post hr {
    margin: 2em 0;
  }
}
#consultation .l-reform-after .bl-hope-post .l-file__wrapper {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  margin: 0 -2.1333333333vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-hope-post .l-file__wrapper {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
#consultation .l-reform-after .bl-hope-post .m-example {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 1.2rem;
  color: #888;
  margin-right: -5.3333333333vw;
  margin-top: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-reform-after .bl-hope-post .m-example {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-top: 1.5em;
    line-height: 1.4;
    margin-right: 0;
  }
}
#consultation .l-reform-after .bl-hope-post .m-example dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
#consultation .l-hope .bl-hope {
  width: 89%;
  margin: 0 auto;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope {
    max-width: 90%;
    max-inline-size: -webkit-max-content;
    max-inline-size: -moz-max-content;
    max-inline-size: max-content;
    margin-inline: auto;
    font-size: 1.6rem;
  }
}
#consultation .l-hope .bl-hope dt {
  color: #888;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope dt {
    width: 110px;
    font-size: 1.4rem;
  }
}
#consultation .l-hope .bl-hope .l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope .l-outline {
    margin-top: 2.5em;
  }
}
#consultation .l-hope .bl-hope .l-outline > .l-flex {
  margin: 1em 0;
}
#consultation .l-hope .bl-hope .l-outline > .l-flex > dd {
  width: 70%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope .l-outline > .l-flex > dd {
    margin-left: 0;
    width: auto;
  }
}
#consultation .l-hope .bl-hope .l-detail .l-flex {
  margin: 0.5em 0;
}
#consultation .l-hope .bl-hope .l-detail .l-flex dd {
  width: 70%;
  margin-left: auto;
  font-family: "Hind", sans-serif;
  letter-spacing: -0.01em;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope .l-detail .l-flex dd {
    margin-left: 0;
    width: auto;
  }
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope .l-hope-detail {
    margin-top: 2em;
  }
}
#consultation .l-hope .bl-hope .l-hope-detail .l-flex dt {
  font-size: 1.2rem;
  padding-left: 1em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope .l-hope-detail .l-flex dt {
    font-size: 1.3rem;
    padding-left: 2em;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
}
#consultation .l-hope .bl-hope-post {
  width: 86%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post {
    width: 80%;
    margin: 0 auto;
  }
}
#consultation .l-hope .bl-hope-post .l-outline > div {
  margin: 3em 0;
}
#consultation .l-hope .bl-hope-post .l-outline > div.l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#consultation .l-hope .bl-hope-post .l-outline > div.l-hope-detail {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-outline > div.l-hope-detail {
    margin-top: 30px;
  }
}
#consultation .l-hope .bl-hope-post .l-outline .l-post-area {
  width: 69%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-outline .l-post-area {
    margin-left: 0;
  }
  #consultation .l-hope .bl-hope-post .l-outline .l-post-area input[type=text] {
    width: 252px;
  }
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-outline .l-detail > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}
#consultation .l-hope .bl-hope-post .l-outline .l-detail > div dt {
  margin-right: 2em;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-outline .l-detail > div dt {
    font-size: 1.2rem;
    margin-top: 0.2em;
  }
}
#consultation .l-hope .bl-hope-post .l-outline .l-detail > div + div {
  margin-top: 1em;
}
#consultation .l-hope .bl-hope-post .l-outline .l-item {
  padding-right: 1em;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-outline .l-item {
    width: 80px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}
#consultation .l-hope .bl-hope-post dl {
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post dl {
    font-size: 1.4rem;
  }
}
#consultation .l-hope .bl-hope-post dt {
  color: #888;
}
#consultation .l-hope .bl-hope-post .l-hope-detail.l-flex dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-hope-detail.l-flex dd {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
#consultation .l-hope .bl-hope-post .l-flex.l-hour {
  margin: 0;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  list-style: none;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#consultation .l-hope .bl-hope-post .l-flex.l-hour li {
  font-size: 1.2rem;
  font-family: "Hind", sans-serif;
  width: 50%;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-flex.l-hour li {
    width: auto;
    margin-right: 2em;
    font-size: 1.4rem;
  }
}
#consultation .l-hope .bl-hope-post .l-flex.l-hour li span {
  padding-top: 0.6em;
  padding-bottom: 0.6em;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-flex.l-hour li span span {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #consultation .l-hope .bl-hope-post .l-flex.l-hour li span:hover span {
    opacity: 0.7;
  }
}
#consultation .l-hope .bl-hope-post .l-hope-day {
  margin: 1em 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-hope .bl-hope-post .l-hope-day {
    margin-top: 0;
    margin-bottom: 0.5em;
    width: 142px;
  }
}
#consultation .l-personal .l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#consultation .l-personal .bl-personal {
  width: 89%;
  margin: 0 auto;
  font-size: 1.3rem;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal {
    font-size: 1.6rem;
    width: auto;
    max-inline-size: -webkit-max-content;
    max-inline-size: -moz-max-content;
    max-inline-size: max-content;
    margin-inline: auto;
    max-width: 90%;
  }
}
#consultation .l-personal .bl-personal .l-outline > div {
  margin: 1em 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal .l-outline > div {
    margin: 2em 0;
  }
  #consultation .l-personal .bl-personal .l-outline > div:first-of-type {
    margin-top: 0;
  }
}
#consultation .l-personal .bl-personal .l-outline dt {
  color: #888;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal .l-outline dt {
    font-size: 1.4rem;
    width: 108px;
    padding-top: 0.2em;
  }
}
#consultation .l-personal .bl-personal .l-outline dd {
  width: 74%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal .l-outline dd {
    margin-left: 0;
    width: auto;
  }
}
#consultation .l-personal .bl-personal-post {
  width: 86%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal-post .l-outline {
    width: 44%;
    margin: 0 auto;
  }
}
#consultation .l-personal .bl-personal-post .l-outline > div {
  margin: 3em 0;
}
#consultation .l-personal .bl-personal-post .l-post-area {
  width: 69%;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal-post .l-post-area {
    width: auto;
    margin-left: 0;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
#consultation .l-personal .bl-personal-post .l-gender {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#consultation .l-personal .bl-personal-post .l-gender > div {
  width: 50%;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal-post .l-gender > div {
    width: auto;
  }
}
#consultation .l-personal .bl-personal-post .l-gender > div:last-of-type {
  width: auto;
}
#consultation .l-personal .bl-personal-post .l-gender > div span {
  font-size: 1.2rem;
  padding-top: 0.2em;
  padding-bottom: 0.5em;
  margin-bottom: 1em;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal-post .l-gender > div span {
    font-size: 1.4rem;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0;
  }
  #consultation .l-personal .bl-personal-post .l-gender > div span span {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #consultation .l-personal .bl-personal-post .l-gender > div span:hover span {
    opacity: 0.7;
  }
}
#consultation .l-personal .bl-personal-post .l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
#consultation .l-personal .bl-personal-post dt {
  font-size: 1.3rem;
  color: #888;
}
@media screen and (min-width: 768px) {
  #consultation .l-personal .bl-personal-post dt {
    font-size: 1.4rem;
    width: 90px;
  }
}
#consultation .l-link-wrapper {
  margin-top: 2.6666666667vw;
  padding: 0 12.5333333333vw 0;
}
@media screen and (min-width: 768px) {
  #consultation .l-link-wrapper {
    margin: 40px auto 0;
    max-width: 460px;
    padding: 0;
  }
}
#consultation .l-link-wrapper .m-link {
  background-color: #fff;
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  #consultation .l-link-wrapper .m-link {
    padding-top: 0.8em;
    padding-bottom: 0.8em;
    font-size: 1.6rem;
    letter-spacing: 0.1em;
  }
}
#consultation input,
#consultation button,
#consultation select,
#consultation textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
#consultation input[type=text],
#consultation input[type=tel],
#consultation input[type=email],
#consultation input[type=date] {
  border-bottom: 1px solid #c4c4c4;
  line-height: normal;
  width: 100%;
  padding: 0 0.2em 0.2em;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 1.6rem;
}
#consultation input[type=text].m-border-w,
#consultation input[type=tel].m-border-w,
#consultation input[type=email].m-border-w,
#consultation input[type=date].m-border-w {
  border-bottom-width: 2px;
  border-color: #4d4d4d;
}
#consultation input[type=date] {
  border-width: 2px;
  border-color: #4d4d4d;
}
#consultation textarea {
  resize: vertical;
  font-size: 1.3rem;
  padding: 1em;
  border: 1px solid #c4c4c4;
  width: 100%;
  min-height: 23.4666666667vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#consultation textarea ::-webkit-input-placeholder {
  color: #888;
}
#consultation textarea ::-moz-placeholder {
  color: #888;
}
#consultation textarea :-ms-input-placeholder {
  color: #888;
}
#consultation textarea ::-ms-input-placeholder {
  color: #888;
}
#consultation textarea ::placeholder {
  color: #888;
}
@media screen and (min-width: 768px) {
  #consultation textarea {
    display: block;
    width: 394px;
    min-height: 104px;
    margin: 0 auto;
    padding: 0.5em 1em;
  }
}
#consultation input[type=checkbox],
#consultation input[type=radio],
#consultation input[type=file] {
  visibility: hidden;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
#consultation input[type=submit],
#consultation input[type=button],
#consultation label,
#consultation button,
#consultation select {
  cursor: pointer;
}
#consultation select::-ms-expand {
  display: none;
}
#consultation button,
#consultation button * {
  color: currentColor;
}
#consultation input[type=radio] + span {
  display: inline-block;
  position: relative;
  padding-left: 22px;
  cursor: pointer;
}
#consultation input[type=radio] + span:before {
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50px;
  display: block;
  position: absolute;
  border: 2px solid #cacaca;
  content: "";
}
#consultation input[type=radio]:checked + span:before {
  border-color: #4d4d4d;
}
#consultation input[type=radio]:checked + span:after {
  display: block;
  position: absolute;
  top: 47%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 4px;
  width: 8px;
  height: 8px;
  background-color: #4d4d4d;
  border-radius: 50px;
  content: "";
}
#consultation input[type=checkbox] + span {
  display: inline-block;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
}
#consultation input[type=checkbox] + span:before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 2px;
  display: block;
  position: absolute;
  border: 2px solid #cacaca;
  content: "";
}
#consultation input[type=checkbox]:checked + span:before {
  border-color: #4d4d4d;
  background-color: #4d4d4d;
}
#consultation input[type=checkbox]:checked + span:after {
  display: block;
  position: absolute;
  top: 43%;
  left: 2px;
  width: 4px;
  height: 8px;
  -webkit-transform: rotate(45deg) translateY(-50%);
          transform: rotate(45deg) translateY(-50%);
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  content: "";
}
#consultation input.l-mark-hide + span::before,
#consultation input.l-mark-hide:checked + span::before,
#consultation input.l-mark-hide:checked + span::after {
  display: none;
}
#consultation input.l-mark-hide + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
}
#consultation .m-calendar {
  background: url(../../assets/img/common/icn_calendar.svg) no-repeat right 5px center;
  padding-right: 2em;
  background-size: 16px auto;
}
#consultation .m-button {
  border: 1px solid #4d4d4d;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.5em;
  font-size: 1.4rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  font-weight: 700;
  background-color: #fff;
  line-height: 1.2;
  min-height: 11.2vw;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#consultation .m-button .m-text-small {
  font-size: 1.2rem;
  display: block;
}
@media screen and (min-width: 768px) {
  #consultation .m-button {
    font-size: 1.6rem;
    min-height: 56px;
    line-height: 1.4;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #consultation .m-button:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#consultation .swiper-button__wrapper {
  width: 85.3333333333vw;
  margin: 2.1333333333vw auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  #consultation .swiper-button__wrapper {
    margin-top: 14px;
    max-width: 800px;
    width: 80vw;
  }
}
#consultation .swiper-button__wrapper .swiper-text-button-prev,
#consultation .swiper-button__wrapper .swiper-text-button-next {
  width: 26.6666666667vw;
  height: 10.6666666667vw;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border: 1px solid #888;
  color: #4d4d4d;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
  z-index: 2;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  #consultation .swiper-button__wrapper .swiper-text-button-prev,
#consultation .swiper-button__wrapper .swiper-text-button-next {
    width: 120px;
    height: 40px;
  }
}
#consultation .swiper-button__wrapper .swiper-text-button-prev.is-to-confirm,
#consultation .swiper-button__wrapper .swiper-text-button-next.is-to-confirm {
  border-color: #c4c4c4;
  color: #c4c4c4;
  pointer-events: none;
}
#consultation .swiper-pagination {
  position: static;
  padding-left: 0.2em;
}
@media screen and (min-width: 768px) {
  #consultation.register-confirmation .l-content__body {
    padding-bottom: 0;
  }
}
#consultation.register-confirmation .l-reserve-title__wrapper {
  background-color: #4d4d4d;
}
#consultation.register-confirmation .l-reserve-title__wrapper .l-reserve__title {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1;
  padding: 0.5em 0;
}
@media screen and (min-width: 768px) {
  #consultation.register-confirmation .l-reserve-title__wrapper .l-reserve__title {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  #consultation.register-confirmation .l-content__wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    width: 100%;
    padding-top: 35px;
    padding-bottom: 14px;
  }
}
#consultation.register-confirmation .swiper-wrapper {
  display: block;
}
#consultation.register-confirmation .swiper-content {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  #consultation.register-confirmation .swiper-content {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
    /* min-height: 430px; */
  }
}
#consultation.register-confirmation .swiper-slide {
  margin-top: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  #consultation.register-confirmation .swiper-slide {
    margin-top: 24px;
  }
}
#consultation.register-confirmation .l-content__body {
  margin-top: 2em;
  background-color: #f3f3f3;
}
#consultation.register-confirmation .l-btn__wrapper {
  text-align: right;
  padding-right: 1.5em;
}
@media screen and (min-width: 768px) {
  #consultation.register-confirmation .l-btn__wrapper {
    text-align: center;
    margin-top: auto;
    padding-top: 3em;
  }
}
#consultation.register-confirmation .m-btn-modification {
  font-size: 1.4rem;
  font-weight: 700;
  color: currentColor;
}
@media screen and (min-width: 768px) {
  #consultation.register-confirmation .m-btn-modification {
    font-size: 1.6rem;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #consultation.register-confirmation .m-btn-modification:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#consultation .l-submit__wrapper {
  margin-top: 10.6666666667vw;
  margin-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-submit__wrapper {
    background-color: #fff;
    padding-top: 42px;
    padding-bottom: 67px;
    margin-top: 90px;
    margin-bottom: 0;
  }
}
#consultation .l-submit__wrapper .l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto;
  width: 74.6666666667vw;
}
@media screen and (min-width: 768px) {
  #consultation .l-submit__wrapper .l-flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
#consultation .l-submit__wrapper a {
  font-size: 1.2rem;
  color: currentColor;
  text-decoration: underline;
  display: inline-block;
  margin-right: 2em;
}
@media screen and (min-width: 768px) {
  #consultation .l-submit__wrapper a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
  #consultation .l-submit__wrapper a:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#consultation .l-submit__wrapper a i {
  display: inline-block;
  width: 3.2vw;
  position: relative;
  top: 0.3em;
  margin-left: 0.6em;
}
@media screen and (min-width: 768px) {
  #consultation .l-submit__wrapper a i {
    width: 14px;
  }
}
#consultation .l-submit__wrapper .m-submit {
  background-color: #fff;
  border: 1px solid #666666;
  width: 74.6666666667vw;
  min-height: 10.6666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin: 0 auto;
  padding: 0.1em 0;
  margin-top: 4.5333333333vw;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #consultation .l-submit__wrapper .m-submit {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
    margin-top: 15px;
    width: 460px;
    min-height: 36px;
  }
  #consultation .l-submit__wrapper .m-submit:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#consultation .l-submit__wrapper .m-submit span {
  font-size: 1.2rem;
  display: block;
  font-weight: 400;
}
#consultation.register-completion {
  /* ----------------------------------------------------------------------------------------------------
  *	LINE
  * --------------------------------------------------------------------------------------------------*/
  /*.l-line {
  	padding-top: vw($bw, 41);
  	background-color: #e4dac8;
  	@include devicePC {
  		padding-top: 56px;
  		padding-bottom: 92px;
  	}
  	.l-content__inner {
  		@include devicePC {
  			max-width: 540px;
  		}
  	}
  	.bl-content {
  		background: #fff;
  		@include devicePC {
  			margin-top: 42px;
  		}
  		.m-middle-title {
  			@include devicePC {
  				margin-bottom: 0;
  			}
  		}
  		.m-middle-title + .m-text {
  			@include devicePC {
  				margin-top: 0.58em;
  			}
  		}
  	}
  	.m-title {
  		font-size: 2rem;
  		text-align: left;
  		@include devicePC {
  			text-align: center;
  			font-size: 2.4rem;
  			line-height: 1.6;
  		}
  	}
  	.m-middle-title {
  		font-size: 1.6rem;
  		background: rgba(228,218,200,.4);
  		@include devicePC {
  			text-align: center;
  			font-size: 1.8rem;
  		}
  	}
  	.bl-line-steps {
  		margin-top: vw($bw, 49);
  		background: #fff;
  		@include devicePC {
  			margin-top: 53px;
  		}
  	}
  	.l-line-steps__list {
  		list-style: none;
  		padding: 0;
  		margin: 0;
  		@include devicePC {
  			margin-top: -10px;
  		}
  	}
  	.l-line-steps__item {
  		position: relative;
  		margin-top: vw($bw, 24);
  		padding-bottom: vw($bw, 70);
  		@include devicePC {
  			margin-top: 26px;
  			padding-bottom: 60px;
  		}
  		&::after {
  			content: "";
  			position: absolute;
  			bottom: 0;
  			left: 0;
  			right: 0;
  			background: url(../../assets/img/common/icn_triangle_gray.svg) no-repeat center center;
  			width: vw($bw, 38);
  			height: vw($bw, 38);
  			margin: 0 auto;
  			@include devicePC {
  				background-image: url(../../assets/img/common/icn_triangle_gray_w.svg);
  				width: 32px;
  				height: 32px;
  			}
  		}
  		&:last-of-type {
  			&::after {
  				display: none;
  			}
  		}
  		.m-num {
  			font-size: 1.2rem;
  			font-weight: $fwb;
  			color: #888;
  			text-align: center;
  			margin-bottom: 0;
  		}
  		.m-num + .m-text {
  			margin-top: 0.2em;
  		}
  		.m-text.hp-pc-center {
  			@include devicePC {
  				text-align: center;
  			}
  		}
  		.m-qr {
  			text-align: center;
  			img {
  				width: vw($bw, 123);
  				height: auto;
  				@include devicePC {
  					width: 123px;
  				}
  			}
  			.m-text {
  				font-size: 1.3rem;
  				margin-bottom: 0;
  				@include devicePC {
  					font-size: 1.6rem;
  					margin-top: 0.5em;
  				}
  			}
  		}
  		.l-flex {
  			@include devicePC {
  				display: flex;
  				justify-content: center;
  			}
  			figure {
  				margin-top: 1em;
  				@include devicePC {
  					width: 239px;
  					aspect-ratio: 239/219;
  					overflow: hidden;
  					margin: 0 15px;
  					img {
  						width: 100%;
  						height: 100%;
  						object-fit: cover;
  					}
  				}
  			}
  		}
  	}
  }*/
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-content__heading {
    padding-top: 24px;
  }
}
#consultation.register-completion .l-content__heading .m-content__title {
  font-size: 2.4rem;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-content__heading .m-content__title {
    font-size: 4.4rem;
  }
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-content__heading .m-content__title + .m-text {
    margin-top: 2em;
  }
}
#consultation.register-completion .l-content__heading .m-text {
  line-height: 1.2;
}
#consultation.register-completion .l-content__heading .m-text + .m-text {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area-wrapper {
    text-align: center;
  }
}
#consultation.register-completion .l-tel-mail-area {
  background-color: #f3f3f3;
  padding: 2.6666666667vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 5.3333333333vw 12.5333333333vw 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area {
    width: 100%;
    max-width: 510px;
    margin: 14px auto 57px;
    padding: 15px 50px;
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
  }
}
#consultation.register-completion .l-tel-mail-area .l-tel-mail__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area .l-tel-mail__wrapper {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
#consultation.register-completion .l-tel-mail-area .m-text {
  font-size: 1.1rem;
  padding-left: 3.2em;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area .m-text {
    padding-left: 0;
    text-align: center;
    margin-top: 0.6em;
  }
}
#consultation.register-completion .l-tel-mail-area a {
  font-size: 1.4rem;
  color: currentColor;
  padding: 0.4em 0;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
#consultation.register-completion .l-tel-mail-area a:hover {
  text-decoration: none;
}
#consultation.register-completion .l-tel-mail-area a:hover:hover {
  opacity: 0.7;
  text-decoration: none;
}
#consultation.register-completion .l-tel-mail-area a i {
  min-width: 2.5em;
  display: inline-block;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area a i {
    min-width: inherit;
    padding-right: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area a.m-mail {
    margin-right: 2em;
  }
}
#consultation.register-completion .l-tel-mail-area a.m-mail i {
  position: relative;
  top: 0.4em;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area a.m-mail i {
    top: 0.65em;
  }
}
#consultation.register-completion .l-tel-mail-area a.m-mail i img {
  display: inline-block;
  width: 4vw;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area a.m-mail i img {
    width: 16px;
  }
}
#consultation.register-completion .l-tel-mail-area a.m-tel i {
  position: relative;
  top: 0.1em;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area a.m-tel i {
    top: 0.3em;
  }
}
#consultation.register-completion .l-tel-mail-area a.m-tel i img {
  display: inline-block;
  width: 2.6666666667vw;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-tel-mail-area a.m-tel i img {
    width: 11px;
  }
}
#consultation.register-completion .l-line {
  padding-top: 10.9333333333vw;
  padding-bottom: 18.6667vw;
  background-color: #e4dac8;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .l-line {
    padding-top: 56px;
    padding-bottom: 92px;
  }
}
#consultation.register-completion .p-desiredContact {
  width: 100%;
  max-width: 510px;
  background: #fff;
  margin: 0 auto;
}
#consultation.register-completion .p-desiredContact:nth-child(n+2) {
  margin: 6.4vw auto 0;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContact:nth-child(n+2) {
    margin: 30px auto 0;
  }
}
#consultation.register-completion .p-desiredContact__title {
  padding: 3.333vw;
  margin: 0;
  background: rgba(228, 218, 200, 0.4);
  font-size: 1.4rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContact__title {
    padding: 10px;
    font-size: 1.6rem;
  }
}
#consultation.register-completion .p-desiredContact__content {
  padding: 4.8vw 5.333vw 4vw;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContact__content {
    padding: 25px;
    font-size: 1.4rem;
  }
}
#consultation.register-completion .p-desiredContact__step {
  position: relative;
  padding-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContact__step {
    padding-bottom: 84px;
  }
}
#consultation.register-completion .p-desiredContact__step::after {
  content: "";
  position: absolute;
  bottom: 4.8vw;
  left: 0;
  right: 0;
  background: url(../../assets/img/common/icn_triangle_gray.svg) no-repeat center center;
  width: 10.1333333333vw;
  height: 10.1333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContact__step::after {
    bottom: 26px;
    background-image: url(../../assets/img/common/icn_triangle_gray_w.svg);
    width: 32px;
    height: 32px;
  }
}
#consultation.register-completion .p-desiredContact__step:last-child {
  padding-bottom: 0;
}
#consultation.register-completion .p-desiredContact__step:last-child::after {
  display: none;
}
#consultation.register-completion .p-desiredContact__stepNum {
  margin: 0;
  font-size: 1.2rem;
  font-weight: bold;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContact__stepNum {
    font-size: 1.6rem;
  }
}
#consultation.register-completion .p-desiredContact__text {
  margin: 0;
}
#consultation.register-completion .p-desiredContact__annotation {
  margin: 0;
  font-size: 1.1rem;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContact__annotation {
    font-size: 1.5rem;
  }
}
#consultation.register-completion .p-desiredContact__list {
  padding: 0;
  margin: 0;
  font-size: 1.2rem;
  list-style: none;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContact__list {
    font-size: 1.6rem;
  }
}
#consultation.register-completion .p-desiredContactQr {
  text-align: center;
}
#consultation.register-completion .p-desiredContactQr__image {
  width: 62px;
  height: 62px;
  padding: 3px;
  margin: 28px auto 16px;
  border: 1px solid #c4c4c4;
}
#consultation.register-completion .p-desiredContactQr__text {
  margin: 0;
}
#consultation.register-completion .p-desiredContactQr__link {
  color: #000;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  #consultation.register-completion .p-desiredContactQr__image {
    width: 124px;
    height: 124px;
    padding: 10px;
    margin: 7px auto;
  }
}

/* ----------------------------------------------------------------------------------------------------
*	モーダルウィンドウ
* --------------------------------------------------------------------------------------------------*/
button.mfp-close {
  display: none !important;
}

.modal-container input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
.modal-container input[type=checkbox],
.modal-container input[type=radio] {
  visibility: hidden;
  width: 1px;
  position: absolute;
  top: 0;
  left: 0;
}
.modal-container input.l-mark-hide + span::before,
.modal-container input.l-mark-hide:checked + span::before,
.modal-container input.l-mark-hide:checked + span::after {
  display: none;
}
.modal-container input.l-mark-hide + span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0;
}

/* ----------------------------------------------------------------------------------------------------
*	デザイナー指名のモーダル
* --------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal {
    padding: 0;
    margin: 0 auto;
  }
}
#modal01 .l-creator-modal .l-modal__heading {
  text-align: center;
  position: relative;
  padding: 4vw 0 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .l-modal__heading {
    padding: 22px 0;
  }
}
#modal01 .l-creator-modal .l-modal__heading .m-title {
  font-size: 1.3rem;
  font-weight: 700;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .l-modal__heading .m-title {
    font-size: 2.2rem;
  }
}
#modal01 .l-creator-modal .l-creator {
  margin: 0 auto;
  background-color: #fff;
}
#modal01 .l-creator-modal .l-creator li + li {
  margin-top: 16vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .l-creator li + li {
    margin-top: 37px;
  }
}
#modal01 .l-creator-modal .l-creator,
#modal01 .l-creator-modal .bl-creator__item {
  padding: 0;
  list-style: none;
}
#modal01 .l-creator-modal .swiper {
  position: relative;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .swiper {
    aspect-ratio: 1/1;
  }
}
#modal01 .l-creator-modal .swiper .swiper-button-next:after,
#modal01 .l-creator-modal .swiper .swiper-button-prev:after {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .swiper .swiper-button-next:after,
#modal01 .l-creator-modal .swiper .swiper-button-prev:after {
    width: 24px;
    height: 24px;
  }
}
#modal01 .l-creator-modal .swiper .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#modal01 .l-creator-modal .swiper .swiper-button-prev:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
#modal01 .l-creator-modal .swiper .swiper-button-next {
  right: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .swiper .swiper-button-next {
    right: -38px;
  }
}
#modal01 .l-creator-modal .swiper .swiper-button-prev {
  left: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .swiper .swiper-button-prev {
    left: -38px;
  }
}
#modal01 .l-creator-modal .swiper .swiper-pagination-bullet {
  width: 20px;
  height: 20px;
  text-align: center;
  line-height: 20px;
  font-size: 12px;
  color: #000;
  background: #fff;
}
#modal01 .l-creator-modal .swiper .swiper-pagination-bullet-active {
  color: #fff;
  background: #e59a0a;
}
#modal01 .l-creator-modal .swiper .l-counter {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  color: #fff;
  bottom: 4.5vw;
  right: 7vw;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .swiper .l-counter {
    display: none;
  }
}
#modal01 .l-creator-modal .swiper .l-counter p {
  margin: 0;
  line-height: 1;
  padding: 0 0.1em;
}
#modal01 .l-creator-modal .swiper-wrapper {
  margin-top: 4vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .swiper-wrapper {
    margin-top: 0;
  }
}
#modal01 .l-creator-modal .swiper-wrapper .swiper-slide {
  position: relative;
  height: 100vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .swiper-wrapper .swiper-slide {
    height: auto;
  }
}
#modal01 .l-creator-modal .swiper-wrapper .swiper-slide p {
  position: absolute;
  top: 43%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #2e58a6;
  padding: 0.1em 1.2em;
  font-weight: 500;
  color: #fff;
  font-size: 1.1rem;
  z-index: 2;
  display: inline-block;
}
#modal01 .l-creator-modal .swiper-wrapper .swiper-slide picture,
#modal01 .l-creator-modal .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#modal01 .l-creator-modal .bl-creatoer__prof-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#modal01 .l-creator-modal .bl-creatoer__prof-reserve .m-reserve {
  display: none;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-creatoer__prof-reserve .m-reserve {
    display: block;
    font-size: 1.6rem;
    padding-left: 140px;
  }
  #modal01 .l-creator-modal .bl-creatoer__prof-reserve .m-reserve:hover {
    opacity: 0.7;
    text-decoration: none;
  }
}
#modal01 .l-creator-modal .bl-creator__prof {
  padding-left: 5.3333333333vw;
  padding-right: 5.3333333333vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-creator__prof {
    padding-left: 0;
    padding-right: 0;
  }
}
#modal01 .l-creator-modal .bl-prof__img-wrapper {
  width: 12.8vw;
  height: 12.8vw;
  border-radius: 100%;
  overflow: hidden;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin-right: 3vw;
  will-change: transform;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-prof__img-wrapper {
    width: 64px;
    height: 64px;
    margin-right: 20px;
  }
}
#modal01 .l-creator-modal .bl-prof__img-wrapper img {
  width: 12.8vw;
  height: 12.8vw;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-prof__img-wrapper img {
    width: 64px;
    height: 64px;
  }
}
#modal01 .l-creator-modal .m-position {
  font-size: 1.2rem;
  color: #888;
  margin: 0;
  line-height: 1;
  font-weight: 700;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .m-position {
    font-size: 1.6rem;
  }
}
#modal01 .l-creator-modal .m-name {
  font-size: 1.8rem;
  margin: 0;
  line-height: 1;
  margin-top: 0.3em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .m-name {
    font-size: 2.4rem;
  }
}
#modal01 .l-creator-modal .m-reserve {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  font-size: 1.4rem;
  font-weight: bold;
  color: currentColor;
  padding-right: 4vw;
  padding-top: 1.5vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .m-reserve {
    display: none;
  }
}
#modal01 .l-creator-modal .m-reserve p {
  padding: 0 0.3em;
  line-height: 1;
}
#modal01 .l-creator-modal .l-button__wrapper {
  margin-top: 5.3333333333vw;
  padding: 0 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .l-button__wrapper {
    margin-top: 32px;
    padding: 0;
  }
}
#modal01 .l-creator-modal .l-no-order {
  border-top: 1px solid #c4c4c4;
  padding-top: 8.2666666667vw;
  margin-top: 2.6666666667vw;
  padding-bottom: 8.2666666667vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .l-no-order {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 20px;
  }
}
#modal01 .l-creator-modal .l-creator {
  padding-bottom: 11.2vw;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .l-creator {
    margin-top: 24px;
    max-width: 680px;
    padding-bottom: 30px;
  }
}
#modal01 .l-creator-modal .l-creator .l-swiper__wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .l-creator .l-swiper__wrapper {
    width: 38.23%;
    margin-left: 1em;
  }
}
#modal01 .l-creator-modal .l-creator .l-swiper__wrapper .swiper-pagination-bullets {
  text-align: right;
}
#modal01 .l-creator-modal .l-creator .l-swiper__wrapper .swiper-pagination-bullet {
  border-radius: 0;
  width: 30px;
  background-color: #dad2bf;
  height: 1px;
  opacity: 1;
}
#modal01 .l-creator-modal .l-creator .l-swiper__wrapper .swiper-pagination-bullet-active {
  height: 2px;
  background-color: #414141;
}
@media screen and (max-width: 767.98px) {
  #modal01 .l-creator-modal .l-creator .l-swiper__wrapper .swiper-button-next:after,
#modal01 .l-creator-modal .l-creator .l-swiper__wrapper .swiper-button-prev:after {
    font-size: 6vw;
  }
}
#modal01 .l-creator-modal .l-creator .l-swiper__wrapper .swiper-pagination-fraction {
  position: absolute;
  z-index: 2;
  padding-right: 3.7333333333vw;
  bottom: 3.7333333333vw;
  color: #fff;
  text-align: right;
  font-size: 1.4rem;
  font-family: "Hind", sans-serif;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-creator__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#modal01 .l-creator-modal .l-creator-select {
  background-color: #fff;
}
#modal01 .l-creator-modal .m-button {
  border: 1px solid #4d4d4d;
  padding: 0.4em;
  font-size: 1.4rem;
  width: 100%;
  text-align: center;
  font-weight: 700;
  background-color: #fff;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .m-button {
    min-height: 40px;
    max-width: 260px;
    margin: 0 auto;
  }
}
#modal01 .l-creator-modal .m-button span {
  font-size: 1.2rem;
  display: block;
}
#modal01 .l-creator-modal .bl-designer .l-prof {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-designer .l-prof {
    max-width: 400px;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin: 0 auto;
  }
}
#modal01 .l-creator-modal .bl-designer figure {
  width: 12.8vw;
  height: 12.8vw;
  overflow: hidden;
  border-radius: 100%;
  margin-right: 2.6666666667vw;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-designer figure {
    width: 72px;
    height: 72px;
    margin-right: 20px;
  }
}
#modal01 .l-creator-modal .bl-designer figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#modal01 .l-creator-modal .bl-designer .l-prof__wrapper {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
#modal01 .l-creator-modal .bl-designer .m-name {
  font-size: 1.3rem;
  margin: 0 0 0.2em;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-designer .m-name {
    font-size: 1.6rem;
  }
}
#modal01 .l-creator-modal .bl-designer .m-text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
}
#modal01 .l-creator-modal .bl-designer .l-works {
  margin-top: 1em;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-designer .l-works {
    margin-top: 1.3em;
  }
}
#modal01 .l-creator-modal .bl-designer .l-works .m-title {
  margin: 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-designer .l-works .m-title {
    font-size: 1.2rem;
  }
}
#modal01 .l-creator-modal .bl-designer .l-works ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-designer .l-works ul {
    width: 400px;
    margin: -6px auto 0;
  }
}
#modal01 .l-creator-modal .bl-designer .l-works ul li {
  width: 23%;
  margin: 2% 1% 0;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  #modal01 .l-creator-modal .bl-designer .l-works ul li {
    width: 88px;
    height: 88px;
    margin: 12px 6px 0;
  }
}
#modal01 .l-creator-modal .bl-designer .l-works ul li picture {
  width: 100%;
  height: 100%;
}
#modal01 .l-creator-modal .bl-designer .l-works ul li picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ----------------------------------------------------------------------------------------------------
*	デザインの好みのモーダル
* --------------------------------------------------------------------------------------------------*/
#modal02 .l-modal__heading {
  position: relative;
  padding: 5.3333333333vw 5.3333333333vw 3.7333333333vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #modal02 .l-modal__heading {
    padding: 30px 40px 10px;
  }
}
#modal02 .l-modal__heading .m-text {
  font-size: 1.3rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #modal02 .l-modal__heading .m-text {
    font-size: 1.6rem;
  }
}
#modal02 .l-modal__heading i {
  display: inline-block;
  width: 5.3333333333vw;
  margin: 0 0.5em;
  position: relative;
  top: 0.3em;
}
@media screen and (min-width: 768px) {
  #modal02 .l-modal__heading i {
    width: 24px;
  }
}
@media screen and (min-width: 768px) {
  #modal02 .l-design-modal {
    padding: 0 25px 20px;
  }
}
#modal02 .l-design-modal .l-like__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  list-style: none;
  margin: 0;
  padding: 0;
  margin-top: -5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #modal02 .l-design-modal .l-like__list {
    margin-top: -10px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
}
#modal02 .l-design-modal .l-like__list li {
  width: 48%;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #modal02 .l-design-modal .l-like__list li {
    width: 23%;
    margin-top: 20px;
    margin-right: 2.5%;
  }
  #modal02 .l-design-modal .l-like__list li:nth-of-type(4n) {
    margin-right: 0;
  }
}
#modal02 .l-design-modal .l-like__list li picture {
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
}
#modal02 .l-design-modal .l-like__list li picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#modal02 .l-design-modal .l-like__list li .l-button__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 1em 0;
}
#modal02 .l-design-modal .l-like__list li .l-button__wrapper .l-button {
  width: 50%;
  text-align: center;
}
#modal02 .l-design-modal .l-like__list li input[type=radio] + span,
#modal02 .l-design-modal .l-like__list li input[type=checkbox] + span {
  text-align: center;
  width: 100%;
  padding-left: 0;
}
#modal02 .l-design-modal .l-like__list li input[type=radio] + span::before, #modal02 .l-design-modal .l-like__list li input[type=radio] + span::after,
#modal02 .l-design-modal .l-like__list li input[type=checkbox] + span::before,
#modal02 .l-design-modal .l-like__list li input[type=checkbox] + span::after {
  display: none;
}
#modal02 .l-design-modal .l-like__list li input[type=radio] + span svg,
#modal02 .l-design-modal .l-like__list li input[type=checkbox] + span svg {
  fill: #d9d8d8;
  width: 6.4vw;
}
@media screen and (min-width: 768px) {
  #modal02 .l-design-modal .l-like__list li input[type=radio] + span svg,
#modal02 .l-design-modal .l-like__list li input[type=checkbox] + span svg {
    width: 24px;
  }
}
#modal02 .l-design-modal .l-like__list li input[type=radio]:checked + span svg,
#modal02 .l-design-modal .l-like__list li input[type=checkbox]:checked + span svg {
  fill: #baac8b;
}
#modal02 .l-confirm-button__wrapper {
  padding: 7.2vw 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #modal02 .l-confirm-button__wrapper {
    padding: 14px 0 29px;
  }
}
#modal02 .l-confirm-button__wrapper .m-button {
  background-color: transparent;
  border: 1px solid #4d4d4d;
  padding: 0.5em;
  font-size: 1.4rem;
  font-weight: 500;
  width: 100%;
  text-align: center;
  font-weight: 700;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  #modal02 .l-confirm-button__wrapper .m-button {
    max-width: 320px;
    margin: 0 auto;
  }
}

/*モーダル本体の指定 + モーダル外側の背景の指定*/
.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 1024;
  overflow: hidden;
}

.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.67);
  z-index: 1;
}

.modal-content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media screen and (min-width: 768px) {
  .modal-content {
    width: auto;
    height: auto;
    padding-left: 15px;
    padding-right: 15px;
    max-width: 880px;
    min-height: 620px;
    max-height: 620px;
  }
}

/*モーダル本体の擬似要素の指定*/
.modal-container:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  height: 100%;
}

/*モーダル本体に「active」クラス付与した時のスタイル*/
.modal-container.is-active {
  opacity: 1;
  visibility: visible;
}

/*モーダル枠の指定*/
.modal-body {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  max-height: 90vh;
  max-height: 90svh;
  background-color: #fff;
  border-radius: 10px;
  width: 90%;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  /* position: relative;
  display: inline-block;
  vertical-align: middle;
  z-index: 2;
  width: 100%; */
}
@media screen and (min-width: 768px) {
  .modal-body {
    width: 90%;
    max-width: 880px;
  }
}
.modal-body .closeButton {
  position: absolute;
  top: 2.6666666667vw;
  right: 5.3333333333vw;
  width: 7.4666666667vw;
  height: 7.4666666667vw;
  background-color: transparent;
  border: none;
  z-index: 3;
}
@media screen and (min-width: 768px) {
  .modal-body .closeButton {
    width: 30px;
    height: 30px;
    top: 21px;
    right: 27px;
  }
}
.modal-body .closeButton::before, .modal-body .closeButton::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 5.8666666667vw;
  height: 1px;
  background-color: rgba(17, 17, 17, 0.54);
}
@media screen and (min-width: 768px) {
  .modal-body .closeButton::before, .modal-body .closeButton::after {
    width: 24px;
    height: 2px;
  }
}
.modal-body .closeButton::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
}
.modal-body .closeButton::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
}

/*モーダルを閉じるボタンの指定*/
.modal-close {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  top: -40px;
  right: -40px;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

/* ----------------------------------------------------------------------------------------------------
*	モーダル中のスクロールがコンテンツによって異なる
* --------------------------------------------------------------------------------------------------*/
@media screen and (min-width: 768px) {
  #modal02 .modal-content {
    min-height: 521px;
    max-height: 521px;
  }
}
#modal02 .modal-body {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

#about-cocon {
  /* ----------------------------------------------------------------------------------------------------
  *	width-confidence
  * --------------------------------------------------------------------------------------------------*/
}
@media screen and (min-width: 768px) {
  #about-cocon .l-content__inner {
    max-width: 986px;
  }
}
#about-cocon .l-content__heading {
  text-align: center;
  padding-top: 10.1333333333vw;
  padding-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-content__heading {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#about-cocon .l-content__heading picture {
  margin-bottom: 4em;
  display: block;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-content__heading picture {
    margin-bottom: 6em;
  }
}
#about-cocon .l-content__heading picture img {
  width: 100%;
  height: auto;
}
#about-cocon .l-content__heading .m-title {
  border-bottom: 1px solid #c4c4c4;
  padding-bottom: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-content__heading .m-title {
    padding-bottom: 0.6em;
  }
}
#about-cocon .l-content__heading .m-title .m-jp {
  font-size: 2.2rem;
  font-weight: 500;
  display: block;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-content__heading .m-title .m-jp {
    font-size: 3.4rem;
  }
}
#about-cocon .l-content__heading .m-title .m-en {
  font-size: 1.4rem;
  font-weight: 700;
  display: block;
  margin-bottom: 0.8em;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-content__heading .m-title .m-en {
    font-size: 1.8rem;
  }
}
#about-cocon .l-content__heading .m-text {
  font-size: 1.4rem;
  font-weight: 500;
  margin-top: 2em;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-content__heading .m-text {
    font-size: 1.8rem;
    font-weight: 400;
    line-height: 2.2;
  }
}
#about-cocon .l-detail-content {
  background-color: #f3f3f3;
  padding-top: 10.6666666667vw;
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-detail-content {
    padding-top: 40px;
    padding-bottom: 30px;
  }
}
#about-cocon .l-media {
  padding-bottom: 5.3333333333vw;
}
#about-cocon .l-media.l-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    border-bottom: 1px solid #c4c4c4;
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #about-cocon .l-media:last-of-type {
    border: none;
  }
}
#about-cocon .l-media picture {
  margin: 0 3.7333333333vw;
}
#about-cocon .l-media picture img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-media picture {
    margin: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    max-width: 48%;
  }
}
@media screen and (min-width: 768px) {
  #about-cocon .l-media .l-text__wrapper {
    max-width: 48%;
  }
}
#about-cocon .l-media .l-text__wrapper .m-title {
  text-align: center;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-media .l-text__wrapper .m-title {
    line-height: 1.2;
  }
}
#about-cocon .l-media .l-text__wrapper .m-title .m-en {
  display: block;
  color: #888;
  font-weight: 700;
  margin-bottom: 0;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-media .l-text__wrapper .m-title .m-en {
    font-size: 1.6rem;
  }
}
#about-cocon .l-media .l-text__wrapper .m-title .m-jp {
  font-size: 2.2rem;
  font-weight: 500;
  display: block;
  margin-top: 0.1em;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-media .l-text__wrapper .m-title .m-jp {
    font-size: 2.4rem;
    line-height: 1.4;
    margin-top: 0.3em;
  }
}
#about-cocon .l-media .l-text__wrapper .m-text {
  margin: 0 3.7333333333vw;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-media .l-text__wrapper .m-text {
    line-height: 1.6;
    margin: 0;
  }
}
#about-cocon .l-media .l-text__wrapper .l-link__wrapper {
  text-align: center;
  margin-top: 0.8em;
}
#about-cocon .l-media .l-text__wrapper a {
  font-size: 1.4rem;
  font-weight: 700;
  display: inline-block;
  padding: 1em 0;
  color: currentColor;
  text-decoration: none;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-media .l-text__wrapper a {
    font-size: 1.6rem;
  }
}
#about-cocon .l-width-confidence {
  padding-top: 13.0666666667vw;
  padding-bottom: 16.8vw;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence {
    padding-top: 70px;
    padding-bottom: 148px;
  }
}
#about-cocon .l-width-confidence .l-content__inner {
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .l-content__inner {
    max-width: 986px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#about-cocon .l-width-confidence .l-img__wrapper {
  position: relative;
  margin-bottom: 1.5em;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .l-img__wrapper {
    margin-bottom: 32px;
  }
}
#about-cocon .l-width-confidence .l-img__wrapper picture {
  width: 100%;
}
#about-cocon .l-width-confidence .l-img__wrapper picture img {
  width: 100%;
  height: auto;
}
#about-cocon .l-width-confidence .l-img__wrapper .m-title {
  text-align: center;
  font-size: 2.2rem;
  color: #fff;
  font-weight: 700;
  position: absolute;
  bottom: 0.3em;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .l-img__wrapper .m-title {
    font-size: 3rem;
    bottom: -0.1em;
  }
}
#about-cocon .l-width-confidence .m-text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .m-text {
    font-size: 1.6rem;
    text-align: center;
  }
}
#about-cocon .l-width-confidence .l-guarantee__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .l-guarantee__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#about-cocon .l-width-confidence .l-guarantee__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  margin-top: 1.4em;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .l-guarantee__item {
    width: 32%;
    max-width: 270px;
  }
}
#about-cocon .l-width-confidence .l-guarantee__item .m-title {
  font-size: 2.2rem;
  font-weight: 700;
  font-family: "Hind", sans-serif;
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .l-guarantee__item .m-title {
    font-size: 2.6rem;
  }
}
#about-cocon .l-width-confidence .l-guarantee__item .m-title + .m-text {
  margin-top: 0;
}
#about-cocon .l-width-confidence .l-guarantee__item .l-link__wrapper {
  margin: 0 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .l-guarantee__item .l-link__wrapper {
    margin: auto 0 0;
  }
  #about-cocon .l-width-confidence .l-guarantee__item .l-link__wrapper .m-link {
    max-width: 260px;
    margin: 0 auto;
  }
}
#about-cocon .l-width-confidence .l-guarantee__item .m-text {
  text-align: center;
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  #about-cocon .l-width-confidence .l-guarantee__item .m-text {
    font-size: 1.8rem;
    margin-bottom: 1.5em;
  }
}

#company {
  /* ----------------------------------------------------------------------------------------------------
  *	from ceo
  * --------------------------------------------------------------------------------------------------*/
}
#company .l-content__heading {
  margin-top: 4.8vw;
}
@media screen and (min-width: 768px) {
  #company .l-content__heading {
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  #company .l-content__inner {
    max-width: 910px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#company main .m-en {
  margin-top: 0.8em;
  display: block;
  font-weight: 400;
}
@media screen and (min-width: 768px) {
  #company main .m-en {
    margin-top: 0.4em;
  }
}
#company .l-about-company {
  padding-top: 0;
}
@media screen and (min-width: 768px) {
  #company .l-about-company {
    padding-top: 48px;
  }
}
#company .l-about-company .m-company-img__wrapper {
  margin: 0;
  width: 100%;
}
#company .l-about-company .m-company-img__wrapper img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  #company .l-about-company .m-company-img__wrapper {
    width: auto;
    margin-left: 20px;
    text-align: right;
  }
}
#company .l-about-company .m-company-img__wrapper.l-img01 {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#company .l-about-company .m-company-img__wrapper.l-img02 {
  -webkit-box-ordinal-group: 5;
      -ms-flex-order: 4;
          order: 4;
  margin-top: 7.4666666667vw;
}
@media screen and (min-width: 768px) {
  #company .l-about-company .m-company-img__wrapper.l-img02 {
    margin-top: 19px;
  }
}
#company .l-about-company .l-company {
  font-size: 1.3rem;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #company .l-about-company .l-company {
    margin-top: 0;
    font-size: 1.8rem;
  }
}
#company .l-about-company .l-company > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
#company .l-about-company .l-company > div dt {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-right: 1px solid #c4c4c4;
  width: 5.8em;
  padding-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  #company .l-about-company .l-company > div dt {
    padding-bottom: 0.3em;
  }
}
#company .l-about-company .l-company > div dd {
  margin-left: 1.5em;
}
#company .l-about-company .l-about {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #company .l-about-company .l-about {

    margin-top: 50px;
    font-size: 1.6rem;
  }
}
#company .l-about-company .l-about .l-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 0.2em;
}
@media screen and (min-width: 768px) {
  #company .l-about-company .l-about .l-flex {
    margin-top: 0;
  }
}
#company .l-about-company .l-about .l-flex dd {
  margin-left: 0.3em;
}
#company .l-about-company .l-about.l-license {
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  margin-top: 3.2vw;
}
#company .l-about-company .l-about.l-business {
  -webkit-box-ordinal-group: 6;
      -ms-flex-order: 5;
          order: 5;
  margin-top: 8vw;
}
#company .l-about-company .l-about.l-business dd {
  margin-top: 0.2em;
}
@media screen and (min-width: 768px) {
  #company .l-about-company .l-about.l-business {
    margin-top: 44px;
  }
}
@media screen and (min-width: 768px) {
  #company .l-about-company .l-pc-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}
#company .l-about-company .l-line-up {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
#company .l-from-ceo {
  background-color: #f3f3f3;
  margin-top: 6.6666666667vw;
  padding-bottom: 29.3333333333vw;
}
@media screen and (min-width: 768px) {
  #company .l-from-ceo {
    margin-top: 70px;
    padding-top: 69px;
    padding-bottom: 108px;
  }
}
#company .l-from-ceo picture {
  width: 100%;
}
@media screen and (min-width: 768px) {
  #company .l-from-ceo picture {
    max-width: 880px;
    margin: 0 auto;
  }
}
#company .l-from-ceo picture img {
  width: 100%;
  height: auto;
}
@media screen and (min-width: 768px) {
  #company .l-from-ceo picture {
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 768px) {
  #company .l-from-ceo .l-text__wrapper {
    max-width: 550px;
    margin: 0 auto;
  }
}
#company .l-from-ceo .l-text__wrapper .m-content__title {
  margin-top: 8.5333333333vw;
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  #company .l-from-ceo .l-text__wrapper .m-content__title {
    margin-top: 45px;
    font-size: 2.4rem;
  }
}
#company .l-from-ceo .l-text__wrapper .m-content__title .m-en {
  display: block;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 2em;
  color: #888;
}
@media screen and (min-width: 768px) {
  #company .l-from-ceo .l-text__wrapper .m-content__title .m-en {
    font-size: 2.2rem;
    margin-bottom: 1em;
  }
}
#company .l-from-ceo .l-text__wrapper .m-content__title + .m-text {
  margin-top: 1.6em;
}
#company .l-from-ceo .l-text__wrapper .m-text {
  font-size: 1.4rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  #company .l-from-ceo .l-text__wrapper .m-text {
    font-size: 1.6rem;
  }
}
#company .l-from-ceo .l-text__wrapper .m-text + .m-text {
  margin-top: 2.4em;
}

#price {
  /* ----------------------------------------------------------------------------------------------------
  *	スライダー
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	見出し
  * --------------------------------------------------------------------------------------------------*/
  /* ----------------------------------------------------------------------------------------------------
  *	費用の考え方
  * --------------------------------------------------------------------------------------------------*/
}
@-webkit-keyframes detailShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes detailShow {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#price .l-price__wrapper {
  overflow: hidden;
  background-color: #f3f3f3;
  position: relative;
  padding-top: 8.5333333333vw;
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper {
    padding: 46px 0 0;
  }
}
#price .l-price__wrapper .l-create-detail {
  opacity: 0;
  padding: 5.8666666667vw 0;
  max-width: 74.6666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper .l-create-detail {
    padding: 21px 0 30px;
    max-width: 580px;
  }
}
#price .l-price__wrapper .l-create-detail.is-detail-show {
  -webkit-animation: detailShow 1s 0.5s forwards;
          animation: detailShow 1s 0.5s forwards;
}
#price .l-price__wrapper .l-detail {
  width: 100%;
  margin: 0 auto;
  table-layout: fixed;
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper .l-detail {
    max-width: 580px;
  }
}
#price .l-price__wrapper .l-detail .cell01 th,
#price .l-price__wrapper .l-detail .cell01 td {
  padding-bottom: 2em;
}
#price .l-price__wrapper .l-detail th,
#price .l-price__wrapper .l-detail td {
  font-size: 1.3rem;
  line-height: 1.8;
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper .l-detail th,
#price .l-price__wrapper .l-detail td {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
#price .l-price__wrapper .l-detail th {
  text-align: left;
  font-weight: normal;
  width: 5.5em;
  padding-right: 1em;
  vertical-align: top;
  white-space: nowrap;
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper .l-detail th {
    width: 7.5em;
  }
}
#price .l-price__wrapper .l-detail td {
  border-left: 1px solid #c4c4c4;
  padding-left: 1em;
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper .l-detail td {
    padding-left: 3em;
  }
}
#price .l-price__wrapper .l-detail td p {
  margin: 0;
}
#price .l-price__wrapper .l-swiper__wrapper {
  position: relative;
}
#price .l-price__wrapper .l-swiper-button__wrapper {
  width: 100%;
  position: absolute;
  top: 47vw;
  margin: 0 auto;
  left: 0;
  right: 0;
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper .l-swiper-button__wrapper {
    max-width: 680px;
    top: 346px;
  }
}
#price .l-price__wrapper .swiper-button-prev {
  left: 1.4em;
  color: #4d4d4d;
}
#price .l-price__wrapper .swiper-button-next {
  right: 1.4em;
  color: #4d4d4d;
}
#price .l-price__wrapper .swiper-button-next:after,
#price .l-price__wrapper .swiper-button-prev:after {
  content: "";
  width: 4.8vw;
  height: 4.8vw;
  border-top: 1px solid #4d4d4d;
  border-right: 1px solid #4d4d4d;
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper .swiper-button-next:after,
#price .l-price__wrapper .swiper-button-prev:after {
    width: 24px;
    height: 24px;
  }
}
#price .l-price__wrapper .swiper-button-next:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#price .l-price__wrapper .swiper-button-prev:after {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
}
@media screen and (min-width: 768px) {
  #price .l-price__wrapper {
    margin-top: 50px;
  }
}
#price .swiper {
  max-width: 74.6666666667vw;
  margin: 0 auto !important;
  position: relative;
}
@media screen and (min-width: 768px) {
  #price .swiper {
    position: relative;
    max-width: 580px !important;
    overflow: visible !important;
  }
}
#price .swiper-wrapper {
  width: 100%;
  height: auto;
}
#price .m-counter {
  position: absolute;
  right: 4vw;
  top: 90vw;
  font-size: 1.6rem;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
@media screen and (min-width: 768px) {
  #price .m-counter {
    display: none;
  }
}
#price .swiper-slide {
  height: auto;
}
@media screen and (min-width: 768px) {
  #price .swiper-slide {
    margin: 0 30px;
  }
}
#price .swiper-slide .l-swiper-inner {
  position: relative;
  height: 100%;
  opacity: 0.4;
  -webkit-transition: opacity 0.7s 0.2s;
  transition: opacity 0.7s 0.2s;
}
@media screen and (min-width: 768px) {
  #price .swiper-slide .l-swiper-inner::before {
    /* content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background-color: #fff;
    opacity: $swiper-opacity;
    transition: $swiper-opacity-transition;
    pointer-events: none; */
  }
}
#price .swiper-slide .l-picture__wrapper {
  position: relative;
}
#price .swiper-slide .m-state {
  position: absolute;
  font-size: 2rem;
  text-align: center;
  bottom: 1em;
  left: 0;
  right: 0;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #price .swiper-slide .m-state {
    font-size: 2.4rem;
  }
}
#price .swiper-slide picture {
  width: 100%;
  overflow: hidden;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 768px) {
  #price .swiper-slide picture {
    height: auto;
    width: 580px;
  }
}
#price .swiper-slide picture img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
#price .swiper-slide-active .l-swiper-inner {
  opacity: 1;
}
@media screen and (min-width: 768px) {
  #price .swiper-slide-active .l-swiper-inner {
    /* &::before {
    	opacity: 0;
    } */
  }
}
#price .swiper-pagination {
  position: absolute;
  top: 68vw;
  padding-right: 2.6666666667vw;
  display: inline-block;
  text-align: right;
  font-size: 1.4rem;
  font-family: "Hind", sans-serif;
  opacity: 0;
}
@media screen and (min-width: 768px) {
  #price .swiper-pagination {
    font-size: 1.6rem;
    top: 540px;
    padding-right: 20px;
  }
}
#price .swiper-pagination.is-pagenation-show {
  -webkit-animation: detailShow 1s 0.5s forwards;
          animation: detailShow 1s 0.5s forwards;
}
@media screen and (min-width: 768px) {
  #price .bl-slider__content {
    opacity: 0.1;
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }
}
#price .bl-slider__content.slick-current {
  opacity: 1;
}
#price .l-achievement {
  padding-bottom: 16vw;
}
@media screen and (min-width: 768px) {
  #price .l-achievement {
    padding-bottom: 93px;
  }
}
#price .l-content__heading {
  padding-top: 4.8vw;
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 768px) {
  #price .l-content__heading {
    padding-top: 20px;
    margin-bottom: 70px;
    text-align: center;
  }
}
#price .l-content__heading .m-sub__title {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #price .l-content__heading .m-sub__title {
    font-size: 1.6rem;
  }
}
#price .l-way-to-think {
  padding-left: 6.9333333333vw;
  padding-right: 6.9333333333vw;
  padding-top: 8vw;
}
@media screen and (min-width: 768px) {
  #price .l-way-to-think {
    padding: 34px 15px 0;
    max-width: 830px;
    margin: 0 auto;
  }
}
#price .l-way-to-think .m-title {
  font-size: 2rem;
  text-align: center;
}
@media screen and (min-width: 768px) {
  #price .l-way-to-think .m-title {
    font-size: 2.4rem;
  }
}
#price .l-way-to-think .l-content {
  background-color: #e4dac8;
  margin-top: 5.3333333333vw;
  padding: 2.6666666667vw 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #price .l-way-to-think .l-content {
    padding: 37px 30px 37px 50px;
    margin: 36px auto 0;
  }
}
@media screen and (min-width: 768px) {
  #price .l-way-to-think .l-content .m-text {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 768px) {
  #price .l-way-to-think .l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
#price .l-way-to-think .l-icon__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 65.3333333333vw;
  margin: 0 auto;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background: url(../../assets/img/price/bg_circle.svg) no-repeat center center/80% 80%;
}
@media screen and (min-width: 768px) {
  #price .l-way-to-think .l-icon__wrapper {
    width: 276px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-right: 45px;
  }
}
#price .l-way-to-think .l-icon__wrapper .m-circle {
  margin: 4vw 0;
}
@media screen and (min-width: 768px) {
  #price .l-way-to-think .l-icon__wrapper .m-circle {
    margin: 17px 0;
  }
}
#price .l-way-to-think .l-icon__wrapper .m-circle .m-block .m-en {
  margin-top: 2.2em;
}
@media screen and (min-width: 768px) {
  #price .l-way-to-think .l-icon__wrapper .m-circle .m-block .m-en {
    margin-top: 2em;
  }
}
#price .l-way-to-think .l-icon__wrapper .m-circle .m-block .m-jp {
  margin-top: 0.3em;
}
#price .m-circle {
  width: 26.1333333333vw;
  height: 26.1333333333vw;
  -webkit-clip-path: circle(50% at 50% 50%);
          clip-path: circle(50% at 50% 50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  #price .m-circle {
    height: 110px;
    width: 110px;
  }
}
#price .m-circle .m-block {
  height: 50%;
  text-align: center;
}
#price .m-circle .m-block.m-brown {
  background-color: #6d655b;
}
#price .m-circle .m-block .m-en {
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-top: 2.1em;
}
@media screen and (min-width: 768px) {
  #price .m-circle .m-block .m-en {
    font-size: 1.4rem;
    margin-top: 2.51em;
  }
}
#price .m-circle .m-block .m-jp {
  font-size: 1.6rem;
  margin-top: 0.3em;
}
@media screen and (min-width: 768px) {
  #price .m-circle .m-block .m-jp {
    font-size: 1.8rem;
  }
}
#price .l-service {
  padding-top: 10.1333333333vw;
  padding-bottom: 14.4vw;
}
@media screen and (min-width: 768px) {
  #price .l-service {
    max-width: 830px;
    padding: 56px 0 100px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  #price .l-service .l-content__inner {
    padding-left: 35px;
    padding-right: 15px;
  }
}
#price .l-service__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
#price .l-service__list .m-circle {
  background-color: #e4dac8;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #price .l-service__list .m-circle {
    width: 132px;
    height: 132px;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 28px 0 0;
  }
}
#price .bl-service__item {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #price .bl-service__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    text-align: left;
  }
  #price .bl-service__item .l-text__wrapper {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
  }
}
#price .bl-service__item .m-title {
  margin-top: 0.8em;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #price .bl-service__item .m-title {
    margin-top: 1.2em;
    font-size: 2.4rem;
  }
}
#price .bl-service__item .m-title + .m-text {
  margin-top: 0.5em;
}
@media screen and (min-width: 768px) {
  #price .bl-service__item .m-title + .m-text {
    margin-top: 0;
  }
}
#price .bl-service__item + .bl-service__item {
  margin-top: 11.7333333333vw;
}
@media screen and (min-width: 768px) {
  #price .bl-service__item + .bl-service__item {
    margin-top: 48px;
  }
}
#price .l-material {
  margin-top: 4.8vw;
  background-color: #f3f3f3;
  padding: 2.1333333333vw 6.4vw 6.4vw;
  text-align: left;
}
@media screen and (min-width: 768px) {
  #price .l-material {
    margin-top: 16px;
    padding: 4px 28px 18px;
  }
}
#price .l-material dl {
  margin: 1.5em 0 0;
}
#price .l-material dt {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (min-width: 768px) {
  #price .l-material dt {
    line-height: 1.2;
  }
}
#price .l-material dd {
  margin-top: 0.5em;
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #price .l-material dd {
    margin-top: 0;
  }
}

#support .l-content__heading {
  padding-top: 4.8vw;
}
@media screen and (min-width: 768px) {
  #support .l-content__heading {
    padding-top: 20px;
    padding-bottom: 10px;
    text-align: center;
  }
}
#support .l-content__heading .m-text {
  padding: 0 1.5em;
}
@media screen and (min-width: 768px) {
  #support .l-content__heading .m-text {
    padding: 0;
    margin-top: 44px;
  }
}
#support .l-content__heading .m-sub__title {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 1.6em;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #support .l-content__heading .m-sub__title {
    font-size: 1.6rem;
    margin-bottom: 0.5em;
  }
}
@media screen and (min-width: 768px) {
  #support .l-content__body .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 680px;
  }
}
#support .l-service-detail {
  background-color: #f3f3f3;
  padding-top: 10.9333333333vw;
  padding-bottom: 0.5333333333vw;
}
@media screen and (min-width: 768px) {
  #support .l-service-detail {
    padding-top: 40px;
    padding-bottom: 70px;
  }
}
#support .bl-service {
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  #support .bl-service {
    text-align: center;
  }
}
#support .bl-service li {
  margin: 2.5em 0;
}
@media screen and (min-width: 768px) {
  #support .bl-service li {
    margin: 4em 0;
  }
  #support .bl-service li:last-of-type {
    margin-bottom: 90px;
  }
}
#support .bl-service .m-list__title {
  font-size: 2rem;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #support .bl-service .m-list__title {
    font-size: 2.4rem;
  }
}
#support .bl-service .m-text {
  font-size: 1.4rem;
  margin-top: 0.5em;
}
#support .bl-content + .bl-content {
  margin-top: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  #support .bl-content + .bl-content {
    margin-top: 140px;
  }
}
#support .m-bg {
  background-color: #4d4d4d;
  color: #fff;
  padding: 0.3em 0.5em;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #support .m-bg {
    background-color: transparent;
    color: currentColor;
  }
}
@media screen and (min-width: 768px) {
  #support .m-title.m-bg {
    font-size: 2.2rem;
    padding: 0;
    padding-bottom: 0.2em;
    border-bottom: 1px solid #4d4d4d;
    text-align: center;
  }
}
#support hr {
  margin: 1em 0;
  padding: 0;
  border: none;
  width: 100%;
  border-top: 1px solid #c4c4c4;
}
#support .l-caution {
  padding-top: 1em;
}
@media screen and (min-width: 768px) {
  #support .l-caution {
    padding-top: 0;
  }
}
#support .l-caution .m-title {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #support .l-caution .m-title {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  #support .l-caution .m-text {
    line-height: 1.4;
  }
}
#support .l-guarantee {
  padding-top: 14.1333333333vw;
  padding-bottom: 6.6666666667vw;
}
@media screen and (min-width: 768px) {
  #support .l-guarantee {
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
#support .l-guarantee .m-title {
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  #support .l-guarantee .m-title {
    font-size: 2rem;
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  #support .l-guarantee .m-text {
    line-height: 1.6;
  }
}
#support .l-guarantee .m-text + .m-text {
  margin-top: 2em;
}

@media screen and (min-width: 768px) {
  #serviceflow .l-content__inner {
    padding-left: 15px;
    padding-right: 15px;
    max-width: 830px;
    margin: 0 auto;
  }
}
#serviceflow .m-text {
  font-size: 1.4rem;
}
@media screen and (min-width: 768px) {
  #serviceflow .m-text {
    font-size: 1.6rem;
  }
}
#serviceflow .l-content__heading {
  padding-top: 4.8vw;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-content__heading {
    padding-top: 20px;
    padding-bottom: 34px;
    text-align: center;
  }
}
#serviceflow .l-content__heading .m-text {
  padding: 0 1.5em;
}
#serviceflow .l-content__heading .m-sub__title {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-content__heading .m-sub__title {
    font-size: 1.6rem;
  }
}
#serviceflow .l-service-about {
  background-color: #e4dac8;
  padding-top: 10.6666666667vw;
  padding-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-service-about {
    padding-top: 49px;
    padding-bottom: 54px;
  }
}
@media screen and (min-width: 768px) {
  #serviceflow .l-service-about .l-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
#serviceflow .l-service-about picture {
  margin-bottom: 3em;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-service-about picture {
    width: 42%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin-left: 20px;
    margin-bottom: 0;
  }
}
#serviceflow .l-service-about picture img {
  width: 100%;
  height: 100%;
}
#serviceflow .l-service-about .l-text__wrapper .m-text {
  margin: 0;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-service-about .l-text__wrapper .m-text {
    font-size: 1.8rem;
    line-height: 1.6;
  }
}
#serviceflow .l-service-about .l-text__wrapper .m-text + .m-text {
  margin-top: 1em;
}
#serviceflow .l-service-flow {
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-service-flow {
    padding-top: 50px;
  }
}
#serviceflow .l-service-flow .m-title {
  text-align: center;
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-service-flow .m-title {
    font-size: 2.4rem;
  }
}
#serviceflow .l-service-flow picture {
  margin-top: 0;
  margin-bottom: 6.6666666667vw;
  width: 100%;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-service-flow picture {
    margin-bottom: 0;
  }
}
#serviceflow .l-service-flow picture img {
  width: 100%;
  height: auto;
}
#serviceflow .bl-flow__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
#serviceflow .bl-flow__item {
  margin-top: 7.7333333333vw;
  padding-bottom: 16vw;
  position: relative;
}
@media screen and (min-width: 768px) {
  #serviceflow .bl-flow__item {
    margin-top: 32px;
    padding-bottom: 90px;
  }
}
#serviceflow .bl-flow__item:first-of-type {
  margin-top: 5.0666666667vw;
}
@media screen and (min-width: 768px) {
  #serviceflow .bl-flow__item:first-of-type {
    margin-top: 42px;
  }
}
#serviceflow .bl-flow__item:last-of-type::after {
  display: none;
}
#serviceflow .bl-flow__item::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: url(../../assets/img/common/icn_triangle.svg) no-repeat center center;
  width: 10.1333333333vw;
  height: 10.1333333333vw;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  #serviceflow .bl-flow__item::after {
    width: 32px;
    height: 32px;
  }
}
@media screen and (min-width: 768px) {
  #serviceflow .bl-flow__item.l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding-bottom: 74px;
  }
}
@media screen and (min-width: 768px) {
  #serviceflow .bl-flow__item .m-text {
    max-width: 620px;
    margin: 0 auto;
  }
}
@media screen and (min-width: 768px) {
  #serviceflow .bl-flow__item .l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  #serviceflow .bl-flow__item .l-flex picture {
    width: 48.5%;
  }
  #serviceflow .bl-flow__item .l-flex picture img {
    width: 100%;
    height: auto;
  }
}
#serviceflow .m-list-title {
  text-align: center;
  margin: 0;
}
@media screen and (min-width: 768px) {
  #serviceflow .m-list-title {
    margin-bottom: 0.2em;
  }
}
#serviceflow .m-list-title .m-en {
  display: block;
  font-size: 1.2rem;
  color: #888;
  font-weight: 700;
  margin-bottom: 0.5em;
}
@media screen and (min-width: 768px) {
  #serviceflow .m-list-title .m-en {
    font-size: 1.4rem;
  }
}
#serviceflow .m-list-title .m-jp {
  font-size: 2.2rem;
  display: block;
}
@media screen and (min-width: 768px) {
  #serviceflow .m-list-title .m-jp {
    font-size: 2.4rem;
  }
}
#serviceflow .l-flex picture {
  margin: 2em 0;
}
@media screen and (min-width: 768px) {
  #serviceflow .l-flex picture {
    margin-top: 30px;
    margin-bottom: 0;
  }
}

#quality {
  /* ----------------------------------------------------------------------------------------------------
  *	見出し
  * --------------------------------------------------------------------------------------------------*/
}
#quality picture {
  width: 100%;
}
#quality picture img {
  width: 100%;
  height: auto;
}
#quality .l-content__heading {
  padding-top: 4.8vw;
  margin-bottom: 6.4vw;
}
@media screen and (min-width: 768px) {
  #quality .l-content__heading {
    padding-top: 20px;
    margin-bottom: 70px;
    text-align: center;
  }
}
#quality .l-content__heading .m-sub__title {
  display: block;
  font-size: 1.4rem;
  margin-bottom: 2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #quality .l-content__heading .m-sub__title {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 768px) {
  #quality .l-quality-content {
    max-width: 1200px;
    margin: 0 auto 64px;
  }
}
#quality .l-quality-content picture {
  margin-bottom: 3em;
}
@media screen and (min-width: 768px) {
  #quality .l-quality-content picture {
    margin-bottom: 3.8em;
  }
}
#quality .l-quality-content .m-text {
  padding-left: 10.6666666667vw;
  padding-right: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  #quality .l-quality-content .m-text {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
  }
}
#quality .l-your-specialist {
  background-color: #f3f3f3;
  padding-top: 6.1333333333vw;
  padding-bottom: 10.6666666667vw;
}
@media screen and (min-width: 768px) {
  #quality .l-your-specialist {
    padding-top: 47px;
    padding-bottom: 47px;
  }
}
@media screen and (min-width: 768px) {
  #quality .l-your-specialist .l-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
#quality .l-your-specialist .m-title {
  font-size: 2.2rem;
  text-align: center;
}
#quality .l-your-specialist .m-title .m-en {
  font-weight: 700;
}
#quality .l-your-specialist .m-image {
  margin-top: 13.3333333333vw;
}
@media screen and (min-width: 768px) {
  #quality .l-your-specialist .m-image {
    margin-top: 0;
    margin-bottom: 37px;
  }
}
#quality .l-specialists__list {
  margin: 0;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 768px) {
  #quality .l-specialists__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-top: -10px;
  }
}
#quality .bl-specialists__item {
  margin-top: 8vw;
}
@media screen and (min-width: 768px) {
  #quality .bl-specialists__item {
    margin-top: 14px;
    width: 48%;
  }
}
@media screen and (min-width: 768px) {
  #quality .bl-specialists__item .m-text {
    line-height: 1.6;
  }
}
#quality .bl-specialists__item + .bl-specialists__item {
  margin-top: 14.9333333333vw;
}
@media screen and (min-width: 768px) {
  #quality .bl-specialists__item + .bl-specialists__item {
    margin-top: 14px;
  }
}
#quality .m-specialists__title {
  text-align: center;
  margin-bottom: 0;
}
@media screen and (min-width: 768px) {
  #quality .m-specialists__title {
    line-height: 1.4;
  }
}
#quality .m-specialists__title .m-en,
#quality .m-specialists__title .m-jp {
  display: block;
}
#quality .m-specialists__title .m-en {
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  #quality .m-specialists__title .m-en {
    margin-bottom: 1em;
  }
}
#quality .m-specialists__title .m-jp {
  font-size: 2.2rem;
  margin-top: 0.2em;
}
@media screen and (min-width: 768px) {
  #quality .m-specialists__title .m-jp {
    font-size: 2.4rem;
  }
}
#quality .m-title + .m-text {
  margin-top: 0.5em;
}
#quality .l-message {
  padding-top: 14.4vw;
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 768px) {
  #quality .l-message {
    padding-top: 68px;
    padding-bottom: 66px;
  }
}
#quality .l-message .m-image {
  margin-bottom: 8vw;
}
@media screen and (min-width: 768px) {
  #quality .l-message .m-image {
    margin-bottom: 67px;
  }
}
@media screen and (min-width: 768px) {
  #quality .l-message .m-text {
    line-height: 2;
  }
}
@media screen and (min-width: 768px) {
  #quality .l-message .m-ceo {
    font-size: 1.4rem;
  }
}
#quality .l-message hr {
  margin: 2.5em 0;
  border: none;
  border-top: 1px solid #c4c4c4;
}
@media screen and (min-width: 768px) {
  #quality .l-message .m-specialists__title .m-en {
    font-size: 2.2rem;
    color: #888;
    margin-bottom: 0;
  }
  #quality .l-message .m-specialists__title .m-jp {
    margin-top: 0.8em;
  }
}
#quality .l-workshop {
  padding-top: 11.2vw;
  padding-bottom: 5.3333333333vw;
  background-color: #f3f3f3;
}
@media screen and (min-width: 768px) {
  #quality .l-workshop {
    padding-top: 47px;
    padding-bottom: 47px;
  }
}
@media screen and (min-width: 768px) {
  #quality .l-workshop {
    padding-top: 0;
    padding-bottom: 105px;
    background-color: #fff;
  }
}
#quality .l-workshop .l-text__wrapper {
  padding-left: 12.5333333333vw;
  padding-right: 12.5333333333vw;
}
@media screen and (min-width: 768px) {
  #quality .l-workshop .l-text__wrapper {
    padding-left: 15px;
    padding-right: 15px;
  }
}
#quality .l-workshop .l-text__wrapper .m-title {
  text-align: center;
}
@media screen and (min-width: 768px) {
  #quality .l-workshop .l-text__wrapper .m-title {
    margin-top: 60px;
    margin-bottom: 0;
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  #quality .l-workshop .l-text__wrapper .m-text {
    text-align: center;
    margin-top: 0.5em;
  }
}
#quality .l-workshop {
  overflow: hidden;
}
#quality .l-workshop .swiper {
  overflow: visible;
  pointer-events: none;
}
#quality .swiper-wrapper {
  -webkit-transition-timing-function: linear !important;
  transition-timing-function: linear !important;
}
#quality .swiper-content {
  aspect-ratio: 561/352;
  overflow: hidden;
}
#quality .swiper-content picture {
  display: block;
  width: 100%;
  height: 100%;
}
#quality .swiper-content picture img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* Z-INDEX */
.formError {
  z-index: 990;
}

.formError .formErrorContent {
  z-index: 991;
}

.formError .formErrorArrow {
  z-index: 996;
}

.ui-dialog .formError {
  z-index: 5000;
}

.ui-dialog .formError .formErrorContent {
  z-index: 5001;
}

.ui-dialog .formError .formErrorArrow {
  z-index: 5006;
}

.inputContainer {
  position: relative;
  float: left;
}

.formError {
  position: absolute;
  top: 300px;
  left: 300px;
  display: block;
  cursor: pointer;
  text-align: left;
}

.formError.inline {
  position: relative;
  top: 0;
  left: 0;
  display: inline-block;
}

.ajaxSubmit {
  padding: 20px;
  background: #55ea55;
  border: 1px solid #999;
  display: none;
}

.formError .formErrorContent {
  width: 100%;
  background: #ee0101;
  position: relative;
  color: #fff;
  min-width: 120px;
  font-size: 11px;
  border: 2px solid #ddd;
  box-shadow: 0 0 6px #000;
  -moz-box-shadow: 0 0 6px #000;
  -webkit-box-shadow: 0 0 6px #000;
  -o-box-shadow: 0 0 6px #000;
  padding: 4px 10px 4px 10px;
  border-radius: 6px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -o-border-radius: 6px;
}

.formError.inline .formErrorContent {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  border: none;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  -o-border-radius: 0;
}

.greenPopup .formErrorContent {
  background: #33be40;
}

.blackPopup .formErrorContent {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow {
  width: 15px;
  margin: -2px 0 0 13px;
  position: relative;
}

body[dir=rtl] .formError .formErrorArrow,
body.rtl .formError .formErrorArrow {
  margin: -2px 13px 0 0;
}

.formError .formErrorArrowBottom {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
  margin: 0px 0 0 12px;
  top: 2px;
}

.formError .formErrorArrow div {
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  box-shadow: 0 2px 3px #444;
  -moz-box-shadow: 0 2px 3px #444;
  -webkit-box-shadow: 0 2px 3px #444;
  -o-box-shadow: 0 2px 3px #444;
  font-size: 0px;
  height: 1px;
  background: #ee0101;
  margin: 0 auto;
  line-height: 0;
  font-size: 0;
  display: block;
}

.formError .formErrorArrowBottom div {
  box-shadow: none;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  -o-box-shadow: none;
}

.greenPopup .formErrorArrow div {
  background: #33be40;
}

.blackPopup .formErrorArrow div {
  background: #393939;
  color: #FFF;
}

.formError .formErrorArrow .line10 {
  width: 13px;
  border: none;
}

.formError .formErrorArrow .line9 {
  width: 11px;
  border: none;
}

.formError .formErrorArrow .line8 {
  width: 11px;
}

.formError .formErrorArrow .line7 {
  width: 9px;
}

.formError .formErrorArrow .line6 {
  width: 7px;
}

.formError .formErrorArrow .line5 {
  width: 5px;
}

.formError .formErrorArrow .line4 {
  width: 3px;
}

.formError .formErrorArrow .line3 {
  width: 1px;
  border-left: 2px solid #ddd;
  border-right: 2px solid #ddd;
  border-bottom: 0 solid #ddd;
}

.formError .formErrorArrow .line2 {
  width: 3px;
  border: none;
  background: #ddd;
}

.formError .formErrorArrow .line1 {
  width: 1px;
  border: none;
  background: #ddd;
}

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

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

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

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

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

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

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

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

.swiper-backface-hidden .swiper-slide {
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  -webkit-perspective: 1200px;
          perspective: 1200px;
}

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

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

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

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

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

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

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

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

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

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

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

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

.swiper-centered > .swiper-wrapper::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-ordinal-group: 10000;
      -ms-flex-order: 9999;
          order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-start: var(--swiper-centered-offset-before);
          margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  -webkit-margin-before: var(--swiper-centered-offset-before);
          margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  -webkit-transform: translateZ(0);
          transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

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

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

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

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

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

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

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

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

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

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

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  -webkit-animation: swiper-preloader-spin 1s infinite linear;
          animation: swiper-preloader-spin 1s infinite linear;
}

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

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

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

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

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

.swiper-grid > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

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

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

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

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

.swiper-cube {
  overflow: visible;
}

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

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

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

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

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

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

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

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

.swiper-flip {
  overflow: visible;
}

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

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

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

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

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  -webkit-transition-property: opacity, height, -webkit-transform;
  transition-property: opacity, height, -webkit-transform;
  transition-property: transform, opacity, height;
  transition-property: transform, opacity, height, -webkit-transform;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  -webkit-transform-origin: center bottom;
          transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

.p-video {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 100vh;
}
.p-video__inner {
  padding: 13.6vw 0 9.3333vw;
}
.p-video__wrap {
  width: 100%;
  max-width: 830px;
  padding: 0 15px;
  margin: 0 auto;
  text-align: center;
}
.p-video__title {
  margin: 0 0 8.8vw;
  font-size: 5.8667vw;
  font-weight: bold;
}
.p-video__lead {
  margin: 0 0 7.7333vw;
  font-size: 3.7333vw;
}
.p-video__video video {
  width: 100%;
}
.p-video__download {
  position: relative;
  display: inline-block;
  padding-right: 1em;
  margin-top: 1em;
  color: #000;
  font-size: 3.7333vw;
  font-weight: bold;
}
.p-video__download::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 1em;
  height: 1em;
  margin: auto 0;
  background-image: url(../img/common/ico_download.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.p-video__block {
  max-width: 80%;
  padding: 6px 16px;
  margin: 16vw auto 5.3333vw;
  background: #f1f1f1;
  font-size: 3.2vw;
  text-align: left;
}
.p-video__text {
  margin: 0;
}
.p-video__tag {
  margin: 0;
  font-size: 2.6667vw;
  font-weight: bold;
}
.p-video__top a {
  color: #000;
}
.p-video__footer {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-video__footerLogo {
  max-width: 140px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-video__inner {
    padding: 100px 0 70px;
  }
  .p-video__title {
    margin: 0 0 65px;
    font-size: 44px;
  }
  .p-video__lead {
    margin: 0 0 55px;
    font-size: 28px;
  }
  .p-video__video {
    max-width: 800px;
    margin: 0 auto;
  }
  .p-video__download {
    font-size: 28px;
  }
  .p-video__block {
    padding: 6px 16px;
    margin: 100px auto 40px;
    font-size: 20px;
  }
  .p-video__tag {
    font-size: 16px;
  }
  .p-video__top {
    font-size: 16px;
  }
  .p-video__footer {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .p-video__footerLogo {
    max-width: 140px;
    margin: 0 auto;
  }
}


.l-mv,.l-kv__movie{
    width: 100%;
    height: auto;
    aspect-ratio: 414/662;
}
@media screen and (min-width: 768px) {
    .l-mv,.l-kv__movie{
        width: 100%;
        height: auto;
        aspect-ratio: 1920/1080;
    }
}

#home .l-gallery{
  margin: 0 0 30px 0;
  background-color: #fff;;
}

#home .l-gallery .swiper {
  margin: 0 auto 30px auto;
}
@media screen and (min-width: 768px) {
  #home .l-gallery .swiper {
    margin: 0 auto;
    width:1080px;
  }
}

#home .l-gallery .swiper{
  height: 300px;
}
@media screen and (min-width: 768px) {
  #home .l-gallery .swiper{
    height: 700px;
  }
}

@media screen and (min-width: 768px) {
  #home .l-gallery .swiper-wrapper .swiper-slide .swiper-slide-in{
    display: block;
    text-align: center;
  }
}

#home .l-gallery .swiper-wrapper .swiper-slide .swiper-slide-in a{
  color: #000;
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  #home .l-gallery .swiper-wrapper .swiper-slide .swiper-slide-in img{
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: auto;
  }
}

#home .l-gallery .swiper-wrapper .swiper-slide .swiper-slide-in span{
    display: block;
    margin: 20px auto 0 auto;
    padding: 0;
    font-size: 1.6em;
    text-align: center;
}

#home .l-gallery .underLink{
  display: block;
  margin: 0 auto;
  padding: 10px;
  width: 200px;
  border: 1px solid #000;
  color: #000;
  font-size: 1.5rem;
  text-align: center;
  text-decoration: none;;
}

@media ( prefers-reduced-motion: reduce ) {
  .sip-slider, .swiper-container, .swiper-wrapper, .swiper-slide, .swiper-slide img{
   transition-duration: 100ms !important;
 }
}

.bl-item__img a{
  color: #000;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .bl-item__img a{
    font-size: 1.5rem;
  }
}

.bl-item__img a .itemInfo{
  display: flex;
  justify-content: space-between;
  margin: 20px auto 0 auto;
  width: 90%;
}
@media screen and (min-width: 768px) {
  .bl-item__img a .itemInfo{
    width: 100%;
  }
}

.bl-item__img a .itemInfo p{
  margin: 0;
  padding: 0;
  width: 42%;
  border-right: 1px solid #000;
}
.bl-item__img a .itemInfo p + p{
  width: 56%;
  border-right: none;
}
@media screen and (min-width: 768px) {
  .bl-item__img a .itemInfo p{
    width: 35%;
  }
  .bl-item__img a .itemInfo p + p{
    width: 63%;
  }
}

#gallery .itemTitleBox{
  margin: 50px 0 0 0;
  width: 100%;
  min-height: 50px;
}

#gallery .itemTitleBoxIn{
  position: relative;
}

#gallery .bl-link__wrapper.m-right{
  position: absolute;
  top:0;
  right:0;
}
