/*!**********************************************************************************************************************************************************************************************************************************************************************************************!*\
  !*** css ./node_modules/css-loader/dist/cjs.js??ruleSet[1].rules[1].use[1]!./node_modules/postcss-loader/dist/cjs.js??ruleSet[1].rules[1].use[2]!./node_modules/resolve-url-loader/index.js!./node_modules/sass-loader/dist/cjs.js??ruleSet[1].rules[1].use[4]!./src/assets/sass/index.scss ***!
  \**********************************************************************************************************************************************************************************************************************************************************************************************/
@charset "UTF-8";
/*
foundation/_variables.scss
*/
@font-face {
  /*フォントの名前*/
  font-family: "optima";
  /*フォントファイルへのパス（複数指定の場合、上から順に読み込まれる）*/
  src: url("/assets/font/optima.woff2") format("woff2"), url("/assets/font/optima.woff") format("woff");
}
.optimaClass {
  font-family: "optima";
}

@font-face {
  font-family: YuMinchoBold;
  src: local("YuMincho"), local("YuMincho");
  /* for Mac */
}
/*
font:{
  family: var.$gothicBold;
  weight:700;
}
*/
/* lp06 demo */
/*
foundation/_mixins.scss@include mix.fs();
*/
/* stylelint-disable */
/***
    The new CSS reset - version 1.5.1 (last updated 1.3.2022)
    GitHub page: https://github.com/elad2412/the-new-css-reset
***/
/*
    Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
    - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}

/* Preferred box-sizing value */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a,
button {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol,
ul,
menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* minimum style to allow to style meter element */
meter {
  -webkit-appearance: revert;
  -moz-appearance: revert;
       appearance: revert;
}

/* reset default text opacity of input placeholder */
::-webkit-input-placeholder {
  color: unset;
}
::-moz-placeholder {
  color: unset;
}
:-ms-input-placeholder {
  color: unset;
}
::-ms-input-placeholder {
  color: unset;
}
::placeholder {
  color: unset;
}

/* fix the feature of 'hidden' attribute.
 display:revert; revert to element instead of attribute */
:where([hidden]) {
  display: none;
}

/* revert for bug in Chromium browsers
 - fix for the content editable attribute will work properly. */
:where([contenteditable]) {
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable=true]) {
  -webkit-user-drag: element;
}

/*
foundation/_base.scss
*/
html {
  font-size: 62.5%;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.8;
  color: #404040;
  background-color: #fff;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
      -ms-text-size-adjust: 100%;
          text-size-adjust: 100%;
  /*コンテナの量に関わらずフッターを最下部に*/
  min-height: 100%;
  position: relative;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body a {
  display: block;
  overflow: hidden;
  text-decoration: none;
  cursor: pointer;
}
body picture {
  display: block;
}
body img {
  vertical-align: top;
}
body.lp06_demo {
  background-color: #f2f2f2;
  background-image: url("../img/website/lp06_demo/bg.svg");
  background-repeat: repeat;
  background-size: 80%;
}

body.noscroll {
  overflow: hidden;
}

/*
layout/_header.scss
*/
.l-header {
  vertical-align: middle;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  /*lp06 demo*/
}
.l-header_title {
  padding: 0 0 0 48px;
  height: 72px;
  background-color: #222222;
}
@media screen and (max-width: 768px) {
  .l-header_title {
    padding: 0 0 0 16px;
    height: 96px;
  }
}
.l-header_title a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  position: absolute;
  top: 55%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .l-header_title a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-header_title a img {
  height: 24px;
}
.l-header_title a p {
  display: block;
  margin: 0 0 0 24px;
  color: #fff;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .l-header_title a p {
    text-align: center;
    margin: 4px 0 0 -2px;
  }
}
.lp06_demo .l-header {
  width: 100%;
  max-width: 750px;
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
.lp06_demo .l-header_title {
  height: 80px;
  background-color: #fff;
}
.lp06_demo .l-header a {
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.lp06_demo .l-header a img {
  height: 100%;
}

/*
layout/_footer.scss
*/
.l-footer {
  padding: 64px 0 16px 0;
  background-color: #222222;
  color: #ffffff;
}
@media screen and (max-width: 1080px) {
  .l-footer {
    padding: 100px 0 0 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer {
    height: auto;
    padding: 40px 0 0 0;
  }
}
@media screen and (max-width: 540px) {
  .l-footer {
    padding: 16px 0 0 0;
  }
}
.l-footer_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  margin: 0 80px;
}
@media screen and (max-width: 1080px) {
  .l-footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 48px;
  }
}
@media screen and (max-width: 540px) {
  .l-footer_inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin: 0 24px;
  }
}
.l-footer_title {
  margin: 48px 0 0 0;
}
@media screen and (max-width: 1640px) {
  .l-footer_title {
    margin: 40px 80px 0 0;
  }
}
@media screen and (max-width: 1280px) {
  .l-footer_title {
    margin: 40px 64px 0 0;
  }
}
@media screen and (max-width: 1080px) {
  .l-footer_title {
    margin: 0 0 64px 0;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_title {
    margin: 40px 0;
    width: 64%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_title {
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 1080px) {
  .l-footer_title h1 a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_title h1 a {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
@media screen and (max-width: 1080px) {
  .l-footer_title h1 img {
    width: 40%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_title h1 img {
    width: 80%;
  }
}
@media screen and (max-width: 540px) {
  .l-footer_title h1 img {
    height: auto;
    width: 100%;
  }
}
.l-footer_title p {
  margin-top: 16px;
  font-size: 1.2rem;
}
@media screen and (max-width: 1080px) {
  .l-footer_title p {
    margin-top: auto;
    margin-left: 40px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_title p {
    margin-top: 16px;
    margin-left: 0;
  }
}
.l-footer_title_item {
  margin-top: 32px;
}
@media screen and (max-width: 1080px) {
  .l-footer_title_item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 40px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_title_item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0;
    margin-top: 16px;
  }
}
.l-footer_title_item p {
  display: block;
  margin-top: 0 !important;
  margin-left: 40px;
  position: relative;
}
.l-footer_title_item p::after {
  content: "";
  width: 24px;
  height: 1px;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: -40px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
.l-footer_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1080px) {
  .l-footer_nav {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.l-footer_item {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  padding: 0 24px;
  font-size: 1.2rem;
  border-right: 1px solid #444;
}
@media screen and (max-width: 1080px) {
  .l-footer_item {
    padding: 12px 0;
    border-right: none;
    border-top: 1px solid #444;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_item {
    padding: 16px 0;
    font-size: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_item {
    font-size: 1.6rem;
  }
}
.l-footer_item img {
  height: 32px;
}
@media screen and (max-width: 768px) {
  .l-footer_item img {
    height: 48px;
  }
}
@media screen and (max-width: 540px) {
  .l-footer_item img {
    height: 40px;
  }
}
.l-footer_item ul {
  margin-top: 8px;
}
@media screen and (max-width: 1080px) {
  .l-footer_item ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media screen and (max-width: 1080px) {
  .l-footer_item li {
    width: 16%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_item li {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  .l-footer_item li {
    width: 50%;
  }
}
.l-footer_item a:hover {
  color: #888888;
}
.l-footer_copyright {
  width: 100%;
  margin: 80px auto 0 auto;
  padding: 12px 0;
  text-align: center;
  border-top: 1px solid #d9d9d9;
}
@media screen and (max-width: 1080px) {
  .l-footer_copyright {
    margin: 64px auto 0 auto;
  }
}

/*
layout/_nav.scss
*/
.l-nav {
  width: 100vw;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background-image: url(/assets/img/common/bg.png);
  background-color: #fff;
  background-size: 24%;
  background-repeat: repeat;
  position: fixed;
  top: 72px;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .l-nav {
    background-color: #fff;
    height: auto;
    top: 96px;
  }
}

.l-gnav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 48px;
  padding: 8px 0;
  /*PC版はホバーでメニューが出てくる*/
  /*PC版はホバーでメニューが出てくる　ここまで*/
  /* スマホ版メニューはis-openを付与するとメニューが出てくる */
  /* スマホ版メニューはis-openを付与するとメニューが出てくる　ここまで */
}
@media screen and (max-width: 768px) {
  .l-gnav {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-left: 0;
    padding: 0 0 4px 0;
    overflow: hidden;
  }
}
.l-gnav_item {
  padding: 0 20px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-gnav_item {
    /*display: none;*/
    text-align: center;
    padding: 8px 0;
    width: 50%;
    background-color: #fff;
    border-bottom: solid 4px #eaeaea;
  }
}
.l-gnav_item:first-of-type {
  padding: 0 20px 0 0;
}
@media screen and (max-width: 768px) {
  .l-gnav_item:first-of-type {
    padding: 8px 0;
  }
}
@media screen and (max-width: 768px) {
  .l-gnav_item:nth-of-type(odd) {
    height: 44px;
    border-right: solid 4px #eaeaea;
  }
}
@media screen and (max-width: 768px) {
  .l-gnav_item-dropdown::after {
    content: "";
    --icon_color: currentColor;
    --icon_size: 8px;
    --border_width: 1px;
    display: inline-block;
    width: var(--icon_size);
    height: var(--icon_size);
    border: solid var(--border_width) var(--icon_color);
    border-top: 0;
    border-left: 0;
    -webkit-transform: translate(-50%, -50%) rotate(45deg);
            transform: translate(-50%, -50%) rotate(45deg);
    position: absolute;
    top: 45%;
    right: 16px;
  }
}
.l-gnav img {
  display: inline-block;
  height: 24px;
  cursor: pointer;
}
.l-gnav_label {
  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: 32px;
  font-size: 14px;
  font-weight: normal;
  -webkit-transition: none;
  transition: none;
  position: relative;
}
@media screen and (max-width: 768px) {
  .l-gnav_label {
    height: auto;
  }
}
.l-gnav_contents {
  padding: 16px;
  -webkit-box-shadow: 0 16px 16px 0 rgba(64, 64, 64, 0.1);
          box-shadow: 0 16px 16px 0 rgba(64, 64, 64, 0.1);
  border-radius: 8px;
  background: #fafafa;
  position: absolute;
  top: 120%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  -webkit-transition: opacity 0.2s ease, visibility 0.2s ease;
  transition: opacity 0.2s ease, visibility 0.2s ease;
  z-index: 101;
  visibility: hidden;
}
@media screen and (max-width: 768px) {
  .l-gnav_contents {
    display: none;
    padding: 8px;
    -webkit-box-shadow: none;
            box-shadow: none;
    border-radius: 0;
    background-color: #fff;
    border-bottom: solid 4px #eaeaea;
    position: static;
    -webkit-transform: none;
            transform: none;
    -webkit-transition: none;
    transition: none;
  }
}
.l-gnav_item:hover .l-gnav_contents {
  visibility: visible;
}
@media screen and (max-width: 768px) {
  .l-gnav_item.is-open::after {
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
            transform: translate(-50%, -50%) rotate(-135deg);
    top: 22px;
  }
}
@media screen and (max-width: 768px) {
  .l-gnav_item:nth-child(even) .l-gnav_contents {
    margin: 12px 0 -12px -100%;
  }
}
@media screen and (max-width: 768px) {
  .l-gnav_item.is-open .l-gnav_contents {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .l-gnav_category_list {
    -webkit-columns: 2;
       -moz-columns: 2;
            columns: 2;
    -webkit-column-gap: 22px;
       -moz-column-gap: 22px;
            column-gap: 22px;
    -webkit-column-break-inside: avoid;
       -moz-column-break-inside: avoid;
            break-inside: avoid-column;
  }
}
.l-gnav_category_list li {
  display: inline-block;
  width: 100%;
  white-space: nowrap;
}
.l-gnav_category_list li a {
  display: block;
  padding-right: 16px;
  text-align: left;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  -webkit-transition: color 0.12s, background 0.12s, border 0.12s;
  transition: color 0.12s, background 0.12s, border 0.12s;
}
@media screen and (max-width: 768px) {
  .l-gnav_category_list li a {
    padding: 8px 16px 8px 8px;
  }
}
.l-gnav_category_list li a::after {
  content: "";
  --icon_color: currentColor;
  --icon_size: 6px;
  --border_width: 1px;
  display: inline-block;
  width: var(--icon_size);
  height: var(--icon_size);
  border: solid var(--border_width) var(--icon_color);
  border-top: 0;
  border-left: 0;
  -webkit-transform: translateX(-25%) rotate(-45deg) skew(8deg, 8deg);
          transform: translateX(-25%) rotate(-45deg) skew(8deg, 8deg);
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.l-gnav_category_list li a:hover {
  color: #d9d9d9;
}

/* SP版　MENUにis-openを付与するとメニューが出てくる*/
.l-spmenu_label {
  display: none;
}
@media screen and (max-width: 768px) {
  .l-spmenu_label {
    display: block;
    width: 100%;
    height: 48px;
    background-image: url(/assets/img/common/bg.png);
    background-size: 64%;
    background-repeat: repeat;
    position: relative;
  }
}
@media screen and (max-width: 768px) {
  .l-spmenu_label img {
    height: 32px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
  }
}

.l-spmenu_label::after {
  content: "";
  --icon_color: currentColor;
  --icon_size: 8px;
  --border_width: 1px;
  display: inline-block;
  width: var(--icon_size);
  height: var(--icon_size);
  border: solid var(--border_width) var(--icon_color);
  border-top: 0;
  border-left: 0;
  -webkit-transform: translateY(-100%) rotate(45deg);
          transform: translateY(-100%) rotate(45deg);
  position: absolute;
  right: 20px;
}

@media screen and (max-width: 768px) {
  .js-dropdown.is-open::after {
    -webkit-transform: translate(-50%, -50%) rotate(-135deg);
            transform: translate(-50%, -50%) rotate(-135deg);
    top: 22px;
  }
}

@media screen and (max-width: 768px) {
  .l-spmenu_contents {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .l-spmenu_contents.is-open {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

/* SP版　MENUにis-openを付与するとメニューが出てくる　ここまで*/
/*
layout/_main.scss
*/
.l-main {
  margin: 200px 80px 80px 104px;
  /* lp06 demo */
}
@media screen and (max-width: 1080px) {
  .l-main {
    margin: 200px 64px 80px 64px;
  }
}
@media screen and (max-width: 768px) {
  .l-main {
    margin: 200px 40px 80px 40px;
  }
}
@media screen and (max-width: 540px) {
  .l-main {
    margin: 200px 16px 80px 16px;
  }
}
.l-main_inner {
  margin: 40px auto;
  width: auto;
}
.l-main_inner .about, .contact .l-main_inner {
  margin: 40px;
}
.under-construction .l-main_inner {
  width: auto;
}
.l-main .website, .other .l-main {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .l-main .website, .other .l-main {
    height: auto;
  }
}
.lp06_demo .l-main {
  margin: 0 auto;
  width: 100%;
  max-width: 750px;
}

/*
layout/_grid.scss
*/
.l-grid {
  margin: 0 0 24px 24px;
  -webkit-column-break-inside: avoid;
     -moz-column-break-inside: avoid;
          break-inside: avoid;
}
@media screen and (max-width: 768px) {
  .l-grid {
    margin: 0 0 24px 0;
  }
}
.l-grid_wrapper {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}
@media (min-width: 768px) {
  .l-grid_wrapper {
    -webkit-column-count: 2;
    -moz-column-count: 2;
    column-count: 2;
  }
}
@media (min-width: 992px) {
  .l-grid_wrapper {
    -webkit-column-count: 3;
    -moz-column-count: 3;
    column-count: 3;
  }
}
@media (min-width: 1500px) {
  .l-grid_wrapper {
    -webkit-column-count: 4;
    -moz-column-count: 4;
    column-count: 4;
  }
}
.l-grid_wrapper * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.l-grid_imgholder {
  padding: 24px;
  width: 100%;
  font-size: 12px;
  background-color: #f3f5fa;
  overflow: hidden;
}
@media (min-width: 768px) {
  .l-grid_imgholder {
    -webkit-column-break-inside: avoid;
    page-break-inside: avoid;
    -moz-column-break-inside: avoid;
         break-inside: avoid;
  }
}
.index .l-grid_imgholder {
  margin-top: 0;
}

/*!
  * driveway - pure CSS masonry layout aid
  *
  * @license MIT
  * @author jh3y
.dw {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-column-gap: 0;
     -moz-column-gap: 0;
          column-gap: 0;
  position: relative;
}

.dw * {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

@media (min-width: 768px) {
  .dw {
    -webkit-column-count: 2;
       -moz-column-count: 2;
            column-count: 2;
  }
}
@media (min-width: 992px) {
  .dw {
    -webkit-column-count: 3;
       -moz-column-count: 3;
            column-count: 3;
  }
}
@media (min-width: 1500px) {
  .dw {
    -webkit-column-count: 4;
       -moz-column-count: 4;
            column-count: 4;
  }
}

.dw-panel {
  margin: 0;
  padding: 5px;
}

.dw-panel__content {
  border-radius: 10px;
  overflow: hidden;
  padding: 20px;
  width: 100%;
}
@media (min-width: 768px) {
  .dw-panel {
    -webkit-column-break-inside: avoid;
       page-break-inside: avoid;
            break-inside: avoid;
  }
}

*/
/*
layout/_section.scss
*/
.l-section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 80px;
  margin-top: 80px;
  width: 80%;
}
.l-section_about {
  display: block;
}
.l-section_about p {
  font-size: 1.6rem;
}
@media screen and (max-width: 1280px) {
  .l-section {
    width: 880px;
  }
}
@media screen and (max-width: 1080px) {
  .l-section {
    gap: 40px;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .l-section {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
  }
}
.l-section p {
  margin-top: 16px;
  font-size: 1.6rem;
}

.l-section_lp06_demo {
  padding: 40px 0 0 0;
  background-color: #fff;
}

/*
object/component/_heading.scss
*/
.c-heading {
  margin-top: 80px;
}
.c-heading h2 {
  position: relative;
}
@media screen and (max-width: 1080px) {
  .c-heading h2 {
    text-align: center;
  }
}
.c-heading h2 img {
  width: auto;
  height: 72px;
}
@media screen and (max-width: 1080px) {
  .c-heading h2 img {
    height: 56px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 540px) {
  .c-heading h2 img {
    height: 48px;
  }
}
.c-heading h3 {
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-family: "Yu Mincho", "YuMincho", sans-serif;
}
@media screen and (max-width: 1080px) {
  .c-heading h3 {
    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;
  }
}
.c-heading h3 span {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  color: #C7C7C7;
}
.about .c-heading h3 span {
  display: inline-block;
  margin-left: 24px;
}
@media screen and (max-width: 1080px) {
  .about .c-heading h3 span {
    margin-left: 0;
  }
}
.c-heading h4 {
  margin: -40px auto 40px 24px;
  font-size: 2rem;
  font-family: "Yu Mincho", "YuMincho", sans-serif;
}
@media screen and (max-width: 768px) {
  .c-heading h4 {
    margin: -24px auto 24px 0;
    text-align: center;
  }
}
.c-heading h4 span {
  margin-left: 24px;
  font-size: 1.4rem;
  color: #C7C7C7;
}
@media screen and (max-width: 768px) {
  .c-heading h4 span {
    display: block;
    margin-left: 0;
  }
}
.c-heading p {
  margin-top: 16px;
  font-size: 1.4rem;
}

/*
object/component/_table.scss
*/
.c-table {
  margin-top: 24px;
  font-size: 1.6rem;
  white-space: nowrap;
}
@media screen and (max-width: 1080px) {
  .c-table {
    width: 100%;
  }
}
.c-table th {
  width: 100px;
  color: #8e8e8e;
}
.c-table td {
  white-space: wrap;
  padding: 8px;
}

/*
object/component/_animation.scss
*/
.c-animation_hover {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor)) 0 100%/var(--d, 0) 1px no-repeat, -webkit-gradient(linear, left top, left bottom, color-stop(0, currentColor)) 100% 100%/var(--d, 0) 1px no-repeat;
  background: linear-gradient(currentColor 0 0) 0 100%/var(--d, 0) 1px no-repeat, linear-gradient(currentColor 0 0) 100% 100%/var(--d, 0) 1px no-repeat;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.c-animation_hover:hover {
  --d: 65%;
}
@media screen and (max-width: 768px) {
  .c-animation_hover:hover {
    --d: 0%;
  }
}

.c-animation_shrink {
  display: inline-block;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.c-animation_shrink:hover {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}

.js-anime-line::before {
  -webkit-transform: scale(0, 1);
          transform: scale(0, 1);
  -webkit-animation: example 1.5s ease 0.5s 1 forwards;
          animation: example 1.5s ease 0.5s 1 forwards;
}

@-webkit-keyframes example {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}

@keyframes example {
  0% {
    -webkit-transform: scale(0, 1);
            transform: scale(0, 1);
  }
  100% {
    -webkit-transform: scale(1, 1);
            transform: scale(1, 1);
  }
}
.updown {
  -webkit-animation-name: updown1;
          animation-name: updown1;
  /* アニメーション名の指定 */
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
  /* アニメーションの開始時間指定 */
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  /* アニメーション動作時間の指定 */
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  /* アニメーションの動き指定（徐々に早く）*/
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

@-webkit-keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  65% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes updown1 {
  0% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  50% {
    -webkit-transform: translateY(16px);
            transform: translateY(16px);
  }
  65% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
.fadein-up {
  opacity: 0;
  -webkit-transform: translate(0, -30px);
          transform: translate(0, -30px);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein-left {
  opacity: 0;
  -webkit-transform: translate(-30px, 0);
          transform: translate(-30px, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.fadein-right {
  opacity: 0;
  -webkit-transform: translate(30px, 0);
          transform: translate(30px, 0);
  -webkit-transition: all 1.5s;
  transition: all 1.5s;
}

.scrollin {
  opacity: 1 !important;
  -webkit-transform: translate(0, 0) !important;
          transform: translate(0, 0) !important;
}

.rotation {
  -webkit-animation: 8s linear infinite rotation;
          animation: 8s linear infinite rotation;
}
@-webkit-keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotation {
  0% {
    -webkit-transform: rotate(0);
            transform: rotate(0);
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

/*
object/component/_tag.scss
*/
.c-tag {
  display: inline-block;
  margin: 16px 0 0 16px;
}
.c-tag:hover {
  color: #d9d9d9;
}
.c-tag:first-of-type {
  margin-left: 0;
}

/*
object/component/_scrolldown.scss
*/
.c-scrolldown {
  position: fixed;
  bottom: 40px;
  left: 64px;
}
@media screen and (max-width: 1080px) {
  .c-scrolldown {
    left: 32px;
  }
}
@media screen and (max-width: 768px) {
  .c-scrolldown {
    display: none;
  }
}
.c-scrolldown p {
  font-size: 14px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  position: absolute;
  left: -30px;
  top: 9px;
}
.c-scrolldown span {
  display: block;
  width: 2px;
  height: 120px;
  background: #d9d9d9;
  overflow-y: hidden;
  position: relative;
}
.c-scrolldown span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 64px;
  background: #222222;
  -webkit-animation: scrolldown 2s ease-in-out infinite;
          animation: scrolldown 2s ease-in-out infinite;
}

@-webkit-keyframes scrolldown {
  0% {
    top: 0;
  }
  60% {
    top: 100%;
    opacity: 1;
  }
  61% {
    opacity: 0;
    top: -52px;
  }
  62% {
    opacity: 1;
  }
  80% {
    top: 0;
  }
  100% {
    top: 0;
  }
}

@keyframes scrolldown {
  0% {
    top: 0;
  }
  60% {
    top: 100%;
    opacity: 1;
  }
  61% {
    opacity: 0;
    top: -52px;
  }
  62% {
    opacity: 1;
  }
  80% {
    top: 0;
  }
  100% {
    top: 0;
  }
}
.c-scrolldown.is-hidden {
  visibility: hidden;
  opacity: 0;
}

/*
object/component/_link.scss
*/
.c-link {
  display: block;
  color: #009ee0;
}
.c-link_intext {
  display: inline-block;
  vertical-align: bottom;
  color: #009ee0;
}
.c-link:hover {
  opacity: 0.6;
}

/*
object/component/under-construction.scss
*/
.c-under-construction {
  margin: 64px 0;
}
@media screen and (max-width: 1080px) {
  .c-under-construction {
    margin: 120px auto;
  }
}
.c-under-construction h3 {
  font-size: 3.2rem;
  font-family: "Yu Mincho", "YuMincho", sans-serif;
}
@media screen and (max-width: 1080px) {
  .c-under-construction h3 {
    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;
  }
}
.c-under-construction h3 span {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
  color: #C7C7C7;
}
.about .c-under-construction h3 span {
  display: inline-block;
  margin-left: 24px;
}
@media screen and (max-width: 1080px) {
  .about .c-under-construction h3 span {
    margin-left: 0;
  }
}

/*
object/component/offer.scss
*/
.c-offer {
  background-color: #fff;
}
.c-offer_img {
  margin-top: -8px;
  padding: 40px;
}
.c-offer_triangle {
  height: 80px;
  width: 100%;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.c-offer_cta {
  text-align: center;
  margin: -96px auto 0 auto;
  position: relative;
}
.c-offer_value {
  margin-top: 40px;
  text-align: center;
}

/*
object/component/_btn.scss
*/
.c-btn {
  text-align: left;
}
.c-btn a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 16px;
  font-weight: 500;
  max-width: 320px;
  margin-top: 24px;
  padding: 10px 25px;
  background: #222222;
  color: #fff;
  position: relative;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  z-index: 0;
}
@media screen and (max-width: 540px) {
  .c-btn a {
    max-width: none;
  }
}
.c-btn a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 0;
  display: block;
  background: #C7C7C7;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  left: 0;
}
.c-btn a:hover {
  color: #222;
}
.c-btn a:hover:before {
  width: 100%;
  z-index: -1;
}

/*
object/project/_top.scss
*/
.p-top_link {
  width: 400px;
  color: #404040;
  font-family: "optima", sans-serif;
  font-size: 4rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .p-top_link {
    width: 240px;
    font-size: 2.4rem;
  }
}
.p-top_link_image {
  margin-bottom: 40px;
}
@media screen and (max-width: 1080px) {
  .p-top_link_image {
    margin-bottom: 16px;
  }
}
.p-top_link_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: 100vh;
}
@media screen and (max-width: 1080px) {
  .p-top_link_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top_link_wrap .c-animation_hover {
  width: 240px;
}
.p-top_link_line {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: relative;
}
@media screen and (max-width: 1080px) {
  .p-top_link_line {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-top_link_line::before {
  content: "";
  margin: 0 calc(50% - 50vw);
  border-bottom: 1px solid #000;
  width: 100vw;
  position: absolute;
  bottom: 85px;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1080px) {
  .p-top_link_line::before {
    border: none;
  }
}

/*
object/project/_intro.scss
*/
.p-intro_list {
  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: 80px;
}
.p-intro_list_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 1280px) {
  .p-intro_list_wrap {
    padding: 0 40px;
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .p-intro_list_wrap {
    padding: 0;
  }
}
.p-intro_title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.8rem;
}
.p-intro_text {
  display: block;
  margin-right: 16px;
  font-size: 1.4rem;
  line-height: 1.8;
}
.p-intro_table tr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-intro_table th {
  width: 120px;
  font-size: 1.6rem;
  text-align: left;
}
.p-intro_table td {
  padding: 8px 0;
  font-size: 1.6rem;
  text-align: left;
}

/*
object/project/_carrer.scss
*/
.p-carrer_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 40px;
  margin-top: 80px;
}
.p-carrer_list_wrap {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
}
@media screen and (max-width: 1280px) {
  .p-carrer_list_wrap {
    padding: 0 40px;
    width: 100%;
  }
}
@media screen and (max-width: 1080px) {
  .p-carrer_list_wrap {
    padding: 0;
  }
}

.p-carrer_title {
  display: block;
  margin-bottom: 8px;
  font-size: 1.6rem;
}
.p-carrer_title time {
  margin-right: 16px;
  font-family: "optima", sans-serif;
}

.p-carrer_text {
  display: block;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .p-carrer_text {
    display: block;
  }
}

.p-carrer_table_wrap {
  margin-top: 16px;
  padding: 16px;
  width: 100%;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .p-carrer_table_wrap {
    padding: 8px;
  }
}
.p-carrer_table_title {
  display: inline-block;
  margin: 0 0 16px 0;
  font-size: 1.6rem;
  position: relative;
}
.p-carrer_table_title::after {
  content: "";
  width: 32px;
  height: 1px;
  background-color: #d9d9d9;
  position: absolute;
  top: 24px;
  left: 0;
}
.p-carrer_table tr {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.p-carrer_table th {
  width: 120px;
  font-size: 1.6rem;
  text-align: left;
}
.p-carrer_table td {
  padding: 8px 0;
  font-size: 1.6rem;
  text-align: left;
}

/*
object/project/_works.scss
*/
.p-item_title {
  margin-top: 8px;
  font-size: 1.2rem;
  overflow-wrap: break-word;
}
@media screen and (max-width: 1080px) {
  .p-item_title {
    font-size: 1.6rem;
  }
}

.p-item_image {
  margin: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  height: auto;
  -webkit-box-shadow: 14px 14px 14px -8px rgba(187, 191, 202, 0.32);
          box-shadow: 14px 14px 14px -8px rgba(187, 191, 202, 0.32);
}
.p-item_image_height240 {
  width: auto;
  height: 240px;
}
@media screen and (max-width: 1640px) {
  .p-item_image_height240 {
    height: 220px;
  }
}
@media screen and (max-width: 1280px) {
  .p-item_image_height240 {
    height: 180px;
  }
}
@media screen and (max-width: 1080px) {
  .p-item_image_height240 {
    height: 240px;
  }
}
@media screen and (max-width: 768px) {
  .p-item_image_height240 {
    height: 168px;
  }
}
@media screen and (max-width: 540px) {
  .p-item_image_height240 {
    height: 240px;
  }
}
.p-item_image_wrap {
  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;
  background-color: #E8E8E8;
}

.p-item_more {
  font-size: 1.6rem;
  text-align: center;
}

/*
object/project/_detail
*/
.p-detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.p-detail_image {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 400px;
}
@media screen and (max-width: 1640px) {
  .p-detail_image {
    width: 320px;
  }
}
@media screen and (max-width: 1080px) {
  .p-detail_image {
    width: auto;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .p-detail_image {
    width: 100%;
    margin: 0 auto;
  }
}
.p-detail_image img {
  width: 100%;
}
.p-detail_image_wrap {
  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;
  gap: 80px;
  margin: 80px auto 0 auto;
  max-width: 400px;
}
.site08 .p-detail_image_wrap {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.site08 .p-detail_image_sp {
  margin: 40px auto 0 auto;
  width: 320px;
}
.p-detail_ex {
  margin-left: 40px;
}
@media screen and (max-width: 1080px) {
  .p-detail_ex {
    margin: 0 auto;
    text-align: center;
  }
}
@media screen and (max-width: 1080px) {
  .p-detail_ex .c-heading {
    padding-top: 0;
  }
}
.p-detail_ex .c-heading_h2, .p-detail_ex .c-heading p {
  text-align: left;
}
@media screen and (max-width: 1080px) {
  .p-detail_ex .c-heading_h2, .p-detail_ex .c-heading p {
    text-align: center;
  }
}
.p-detail_ex .c-heading_h2::after {
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media screen and (max-width: 1080px) {
  .p-detail_ex .c-heading_h2::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.p-detail_ex_title {
  display: block;
  margin-top: 16px;
  font-size: 1.6rem;
  font-weight: bold;
}
.p-detail_ex_title:nth-of-type(1) {
  margin-top: 80px;
}
.p-detail_ex_text {
  display: block;
  margin: 8px 0 0 16px;
  font-size: 1.6rem;
  line-height: 1.8;
}
.p-detail_ex_text:nth-of-type(1) {
  margin-top: 40px;
}
@media screen and (max-width: 1080px) {
  .p-detail_ex_text {
    margin: 8px 0 0 0;
  }
}
.p-detail_old {
  margin-top: 40px;
}
.p-detail_old picture {
  width: 390px;
}
@media screen and (max-width: 1280px) {
  .p-detail_old picture {
    width: 312px;
  }
}
@media screen and (max-width: 540px) {
  .p-detail_old picture {
    width: 100%;
  }
}
.p-detail_otherlineup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 540px) {
  .p-detail_otherlineup {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-detail_otherlineup_container {
  display: inline-block;
  width: 20%;
}
@media screen and (max-width: 540px) {
  .p-detail_otherlineup_container {
    width: 100%;
  }
}
.p-detail_otherlineup_container p {
  display: block;
  text-align: center;
}
.p-detail_toppage {
  width: 100%;
}
.p-detail_otherpages {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 40px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 540px) {
  .p-detail_otherpages {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.p-detail_otherpages_container {
  display: inline-block;
  width: 30%;
  height: 640px;
  overflow-y: scroll;
}
@media screen and (max-width: 540px) {
  .p-detail_otherpages_container {
    width: 100%;
  }
}
.p-detail_otherpages_container p {
  display: block;
  text-align: center;
}

.p-detail_image.RM {
  margin-top: 24px;
  width: 480px;
}
@media screen and (max-width: 1080px) {
  .p-detail_image.RM {
    width: 400px;
  }
}
@media screen and (max-width: 768px) {
  .p-detail_image.RM {
    width: 100%;
  }
}

/*
object/project/_moc
*/
.p-moc {
  /*プッシュ　Tips系etc.*/
  /*オファーフレックス*/
  /*診断結果*/
  /*友だち追加画面*/
}
.p-moc_push {
  display: block;
  width: 390px;
  height: 778px;
  background-image: url(/assets/img/common/moc_push.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1280px) {
  .p-moc_push {
    width: 312px;
    height: 662px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_push {
    margin: 0 -16px;
    background-image: url(/assets/img/common/moc_push_sp.png);
    background-size: contain;
    background-position: 50%;
    width: 100vw;
    height: 123vh;
  }
}
.p-moc_push_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 315px;
  position: absolute;
  top: 240px;
  left: 58px;
  right: 32px;
  overflow-x: scroll;
}
@media screen and (max-width: 1280px) {
  .p-moc_push_box {
    width: 249px;
    top: 184px;
    left: 48px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_push_box {
    width: 94%;
    top: 28%;
    left: 10%;
  }
}
.p-moc_push_box picture {
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .p-moc_push_box picture {
    width: 200px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_push_box picture {
    width: 80%;
  }
}
.p-moc_check {
  display: block;
  width: 390px;
  height: 778px;
  background-image: url(/assets/img/common/moc_check.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1280px) {
  .p-moc_check {
    width: 312px;
    height: 662px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_check {
    margin: 0 -16px;
    background-image: url(/assets/img/common/moc_check_sp.png);
    background-size: contain;
    background-position: 50%;
    width: 100vw;
    height: 123vh;
  }
}
.p-moc_check_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 315px;
  position: absolute;
  top: 300px;
  left: 58px;
  right: 32px;
  overflow-x: scroll;
}
@media screen and (max-width: 1280px) {
  .p-moc_check_box {
    width: 249px;
    top: 248px;
    left: 48px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_check_box {
    width: 94%;
    top: 38%;
    left: 10%;
  }
}
.p-moc_check_box picture {
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .p-moc_check_box picture {
    width: 200px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_check_box picture {
    width: 80%;
  }
}
.p-moc_result {
  display: block;
  width: 390px;
  height: 778px;
  background-image: url(/assets/img/common/moc_result.png);
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1280px) {
  .p-moc_result {
    width: 312px;
    height: 662px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_result {
    margin: 0 -16px;
    background-image: url(/assets/img/common/moc_result_sp.png);
    background-size: contain;
    background-position: 50%;
    width: 100vw;
    height: 123vh;
  }
}
.p-moc_result_box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  width: 315px;
  position: absolute;
  top: 220px;
  left: 58px;
  right: 32px;
  overflow-x: scroll;
}
@media screen and (max-width: 1280px) {
  .p-moc_result_box {
    width: 249px;
    top: 176px;
    left: 48px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_result_box {
    width: 94%;
    top: 26%;
    left: 10%;
  }
}
.p-moc_result_box picture {
  width: 280px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 1280px) {
  .p-moc_result_box picture {
    width: 200px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_result_box picture {
    width: 80%;
  }
}
.p-moc_add {
  display: block;
  width: 390px;
  height: 778px;
}
@media screen and (max-width: 1280px) {
  .p-moc_add {
    width: 312px;
    height: 662px;
  }
}
@media screen and (max-width: 540px) {
  .p-moc_add {
    width: 100%;
    height: auto;
  }
}
.p-moc_wrap {
  position: relative;
}

.p-moc_push_box.no-scroll {
  overflow-x: unset;
}

.p-moc_check_box.no-scroll {
  overflow-x: unset;
}

/*
object/project/FV.scss
*/
/* lp06 demo */
.p-FV {
  position: relative;
}
.p-FV_bg {
  z-index: 1;
}
.p-FV_maincopy {
  padding-top: 40px;
  width: 100%;
  position: absolute;
  top: 40px;
  left: 53%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 2;
}
.p-FV_subcopy1 {
  position: absolute;
  top: 32%;
  right: 40px;
  z-index: 3;
}
.p-FV_subcopy2 {
  position: absolute;
  top: 48%;
  right: 112px;
  z-index: 3;
}
.p-FV_slideshow {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 16px;
  -webkit-animation: loop-slide 20s infinite linear 1s both;
          animation: loop-slide 20s infinite linear 1s both;
}
.p-FV_slideshow_bg {
  margin-top: -152px;
  padding: 40px 0;
  background-color: rgb(37, 33, 30);
  width: 100%;
  height: 100%;
  max-width: 750px;
  position: relative;
  overflow: hidden;
}
@-webkit-keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
.p-FV_content picture {
  width: 6vw;
}

/*
object/project/features.scss
*/
/* lp06 demo */
.p-features {
  padding: 40px 0 40px 0;
  background-color: #fff;
}
.p-features_title {
  width: 100%;
}
.p-features_content {
  margin-top: 40px;
  position: relative;
}
.p-features_left {
  margin: 0 auto 0 0;
}
.p-features_deco_left {
  position: absolute;
  top: -40px;
  right: 40px;
}
.p-features_right {
  margin: 0 0 0 auto;
}
.p-features_deco_right {
  position: absolute;
  top: -40px;
  left: 40px;
}

/*
object/project/question.scss
*/
/* lp06 demo */
.p-question_content {
  margin-top: 40px;
  text-align: center;
}
.p-question_content:nth-child(1) {
  margin-top: 0;
}

/*
object/project/recommend.scss
*/
/* lp06 demo */
.p-recommend {
  margin-top: -64px;
  padding: 0;
}

/*
object/project/benefits.scss
*/
/* lp06 demo */
.p-benefits_content {
  text-align: center;
}

/*
object/project/close.scss
*/
/* lp06 demo */
.p-close_content2 {
  text-align: center;
  margin-top: -256%;
}

/*
object/project/_about-us.scss
*/
.u-mt0 {
  margin-top: 0;
}

.u-mr0 {
  margin-right: 0;
}

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

.u-ml0 {
  margin-left: 0;
}

.u-ml60 {
  margin-left: 60px;
}

/* foundation */
/* layout */
/* object */
/* component */
/* project */
/* utility */

/*# sourceMappingURL=style.bundle.css.map*/