@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Open+Sans:wght@300..800&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
      text-size-adjust: none;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
}

body {
  min-height: 100vh;
  line-height: 1.5;
}

h1,
h2,
h3,
h4,
button,
input,
label {
  line-height: 1.1;
}

h1,
h2,
h3,
h4 {
  text-wrap: balance;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  padding: 0;
  font-size: 13px;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  font-weight: 300;
  line-height: 1.9;
  -webkit-font-feature-settings: "halt";
          font-feature-settings: "halt";
}

:is(h1, h2, h3, h4, h5, h6) {
  line-height: 1.5;
}

a {
  cursor: pointer;
}

img {
  max-width: 100%;
  vertical-align: middle;
}

input {
  margin: 0;
  padding: 0;
}

textarea {
  font: inherit;
  color: inherit;
}

figure {
  margin: 0;
}

figcaption {
  line-height: 1.3;
}

address {
  font-style: normal;
}

button {
  font: inherit;
  padding: 0;
  background-color: transparent;
  border: none;
  color: inherit;
  cursor: pointer;
}

:root {
  --logo-height-sm: 40px;
  --logo-height-lg: 72px;
}

.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
  background-color: rgba(255, 255, 255, 0.9);
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
  z-index: 10000;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  will-change: transform;
  -webkit-transition: -webkit-transform 0.8s ease;
  transition: -webkit-transform 0.8s ease;
  transition: transform 0.8s ease;
  transition: transform 0.8s ease, -webkit-transform 0.8s ease;
}
.l-header__logo {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 80%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0;
  padding: 0;
  font-size: 24px;
  font-weight: bold;
  z-index: 10000;
}
.l-header__logo > * {
  margin: 0;
}
.l-header__logo a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1em;
  color: #333;
  text-decoration: none;
}
.l-header__logo:has(img) {
  width: 100%;
  height: var(--logo-height-sm);
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.l-header__logo:has(img) img {
  width: auto;
  height: var(--logo-height-sm);
}
@media screen and (min-width: 960px) {
  .l-header__logo:has(img) {
    height: var(--logo-height-lg);
  }
  .l-header__logo:has(img) img {
    height: var(--logo-height-lg);
  }
}
.l-header.js-header_hide {
  -webkit-transform: translateY(-150%);
  transform: translateY(-150%);
}

.l-header_nav-inline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  height: 60px;
}
@media screen and (min-width: 960px) {
  .l-header_nav-inline {
    height: 90px;
  }
}
@media screen and (min-width: 960px) {
  .l-header_nav-inline {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    padding-top: 0;
    height: 90px;
  }
}

/**
* container
*/
.l-container {
  margin-top: 60px;
  padding-top: 0;
  padding-bottom: 0;
}
@media screen and (min-width: 768px) {
  .l-container {
    /* 240803_2 変更要望を反映 */
    margin-top: 90px;
    overflow: hidden;
  }
}
.l-container_inner {
  width: 100%;
  padding-bottom: clamp(3.75rem, 2.083rem + 5.56vw, 6.25rem);
  padding-right: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
  padding-left: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
}
.l-container_inner > :not(.l-align_wide, .l-align_full) {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.l-container_inner > .l-align_wide {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.l-container_inner > .l-align_full {
  margin-right: calc(clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem) * -1);
  margin-left: calc(clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem) * -1);
  padding-right: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
  padding-left: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
}
.l-container_inner > .l-align_full > * {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.l-container_inner .l-content {
  padding-top: clamp(3.75rem, 2.083rem + 5.56vw, 6.25rem);
  padding-bottom: clamp(3.75rem, 2.083rem + 5.56vw, 6.25rem);
}
.l-container_inner .l-content_wide {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.l-container_inner .l-content > * {
  -webkit-margin-before: 2.5em;
          margin-block-start: 2.5em;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.l-container_inner .l-content > :first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.l-container_inner:has(.l-col_secondary) {
  overflow: hidden;
}

.l-footer {
  width: 100%;
  margin: 0;
  background-color: #fff;
}
.l-footer_inner {
  width: 100%;
  padding-bottom: clamp(3.75rem, 2.083rem + 5.56vw, 6.25rem);
  padding-right: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
  padding-left: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
  padding-top: clamp(2.5rem, 0.833rem + 5.56vw, 5rem);
  padding-bottom: clamp(2.5rem, 0.833rem + 5.56vw, 5rem);
}
.l-footer_inner > :not(.l-align_wide, .l-align_full) {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer_inner > .l-align_wide {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer_inner > .l-align_full {
  margin-right: calc(clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem) * -1);
  margin-left: calc(clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem) * -1);
  padding-right: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
  padding-left: clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
}
.l-footer_inner > .l-align_full > * {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer_inner .l-content {
  padding-top: clamp(3.75rem, 2.083rem + 5.56vw, 6.25rem);
  padding-bottom: clamp(3.75rem, 2.083rem + 5.56vw, 6.25rem);
}
.l-footer_inner .l-content_wide {
  max-width: 1080px;
  margin-left: auto;
  margin-right: auto;
}
.l-footer_inner .l-content > * {
  -webkit-margin-before: 2.5em;
          margin-block-start: 2.5em;
  -webkit-margin-after: 0;
          margin-block-end: 0;
}
.l-footer_inner .l-content > :first-child {
  -webkit-margin-before: 0;
          margin-block-start: 0;
}
.l-footer_inner:has(.l-col_secondary) {
  overflow: hidden;
}
.l-footer_content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 2em;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .l-footer_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 2em 0;
  }
}
@media screen and (min-width: 960px) {
  .l-footer_content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 3em 0;
  }
}

/**
 * button styles
 */
.c-btn {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75em 2em;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-transition: ease 500ms;
  transition: ease 500ms;
  border-radius: 0px;
  overflow: hidden;
  text-decoration: none;
}
.c-btn:hover {
  opacity: 0.85;
}
.c-btn::before, .c-btn::after {
  color: #fff;
}
.c-btn_width-mid {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.c-btn_width-full {
  width: 100%;
}
.c-btn_large {
  font-size: clamp(16px, 12.6666666667px + 0.6944444444vw, 18px);
}
.c-btn_round {
  border-radius: 16px;
}
.c-btn[href$=".doc"]::after, .c-btn[href$=".docx"]::after, .c-btn[href$=".xls"]::after, .c-btn[href$=".xlsx"]::after, .c-btn[href$=".pdf"]::after {
  color: #fff;
}
.c-btn[target=_blank][href$=".doc"]::after, .c-btn[target=_blank][href$=".docx"]::after, .c-btn[target=_blank][href$=".xls"]::after, .c-btn[target=_blank][href$=".xlsx"]::after, .c-btn[target=_blank][href$=".pdf"]::after {
  color: #fff;
}
.c-btn_bg-bk {
  background-color: #333;
}
.c-btn_bg-bk span {
  color: #333;
  -webkit-filter: invert(100%) grayscale(100%) contrast(100);
          filter: invert(100%) grayscale(100%) contrast(100);
}
.c-btn_bg-bk:hover::after {
  color: #fff;
}
.c-btn_bg-gry-d {
  background-color: #999;
}
.c-btn_bg-gry-d span {
  color: #333;
  -webkit-filter: invert(100%) grayscale(100%) contrast(100);
          filter: invert(100%) grayscale(100%) contrast(100);
}
.c-btn_bg-gry-xd {
  background-color: #666;
}
.c-btn_bg-gry-xd span {
  color: #333;
  -webkit-filter: invert(100%) grayscale(100%) contrast(100);
          filter: invert(100%) grayscale(100%) contrast(100);
}
.c-btn_icon-arrow::after {
  position: absolute;
  right: 1.5em;
  content: "";
  width: 25px;
  height: 25px;
  background-image: url(../../../assets/images/common/icon-next.svg);
  -webkit-transition: ease 0.5s;
  transition: ease 0.5s;
}
.c-btn_icon-arrow:hover::after {
  -webkit-transform: translateX(6px);
          transform: translateX(6px);
  -webkit-filter: invert(100%) grayscale(100%) contrast(100);
          filter: invert(100%) grayscale(100%) contrast(100);
}
.c-btn_border {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0.75em 2em;
  font-weight: normal;
  line-height: 1;
  letter-spacing: 0.1em;
  -webkit-transition: ease 500ms;
  transition: ease 500ms;
  border-radius: 0px;
  overflow: hidden;
  text-decoration: none;
  border: 1px solid #666;
  background-color: #fff;
}
.c-btn_border:hover {
  opacity: 0.85;
}
.c-btn_border::before, .c-btn_border::after {
  color: #fff;
}
.c-btn_border_width-mid {
  width: 100%;
  max-width: 440px;
  margin: 0 auto;
}
.c-btn_border_width-full {
  width: 100%;
}
.c-btn_border_large {
  font-size: clamp(16px, 12.6666666667px + 0.6944444444vw, 18px);
}
.c-btn_border_round {
  border-radius: 16px;
}
.c-btn_border[href$=".doc"]::after, .c-btn_border[href$=".docx"]::after, .c-btn_border[href$=".xls"]::after, .c-btn_border[href$=".xlsx"]::after, .c-btn_border[href$=".pdf"]::after {
  color: #fff;
}
.c-btn_border[target=_blank][href$=".doc"]::after, .c-btn_border[target=_blank][href$=".docx"]::after, .c-btn_border[target=_blank][href$=".xls"]::after, .c-btn_border[target=_blank][href$=".xlsx"]::after, .c-btn_border[target=_blank][href$=".pdf"]::after {
  color: #fff;
}
.c-btn_border span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 0.5em;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-bottom: 1px;
  color: #666;
  font-weight: 300;
  -webkit-transition: ease 500ms;
  transition: ease 500ms;
}
.c-btn_border:hover {
  background-color: #666;
}
.c-btn_border:hover span {
  color: #fff;
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}

/**
 * button page top
 */
.c-btn_pagetop {
  position: fixed;
  right: 0;
  bottom: 0;
  width: 52px;
  height: 52px;
  background-color: #999;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  opacity: 0;
  overflow: hidden;
  cursor: pointer;
  z-index: 190;
}
.c-btn_pagetop:after {
  content: "\e908";
  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;
  width: 100%;
  height: 100%;
  color: #fff;
  font-family: "camelus";
  font-size: 1em;
}

.c-copyright {
  margin: 0;
  text-align: center;
  line-height: 3;
  font-size: 13px;
  color: #fff;
  background-color: #333;
}

@font-face {
  font-family: "camelus";
  src: url("../fonts/icon/camelus.ttf?bl67s0") format("truetype"), url("../fonts/icon/camelus.woff?bl67s0") format("woff"), url("../fonts/icon/camelus.svg?bl67s0#camelus") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}
[class^=c-icon-],
[class*=" c-icon-"] {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[class^=c-icon-]:before, [class^=c-icon-]:after,
[class*=" c-icon-"]:before,
[class*=" c-icon-"]:after {
  font-family: "camelus" !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.c-icon-search:before {
  content: "\e903";
}

.c-icon-arrow-up:before {
  content: "\e908";
}

.c-icon-arrow-right:before {
  content: "\e909";
}

.c-icon-file-pdf:before {
  content: "\e90e";
}

a[target=_blank]:after,
button[target=_blank]:after, a[href$=".pdf"]:after,
button[href$=".pdf"]:after {
  content: "";
  margin: 0 0.25em;
  font-family: "camelus";
  font-weight: 300;
  display: inline-block;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  line-height: 1;
  text-indent: 0;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
a[target=_blank]:has(img):after,
button[target=_blank]:has(img):after, a[href$=".pdf"]:has(img):after,
button[href$=".pdf"]:has(img):after {
  content: none;
}

a[href$=".pdf"]:after,
button[href$=".pdf"]:after {
  content: "\e90e";
  color: #d62222;
}

a[target=_blank]:after,
button[target=_blank]:after {
  content: "";
  width: 1.3em;
  height: 1.3em;
  background-image: url(../../../assets/images/common/icon-extrnal.svg);
  background-repeat: no-repeat;
  background-size: cover;
  -webkit-transform: translateY(2px);
          transform: translateY(2px);
}
a[target=_blank][href$=".pdf"]:after,
button[target=_blank][href$=".pdf"]:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  content: "PDF";
  width: auto;
  padding: 0.8em;
  color: #fff;
  line-height: 1;
  background-image: none;
  background-color: #666;
}

/**
* list 
* 
*/
ul,
ol,
dl {
  padding-left: 1.2em;
}

.c-list_disc, .c-list_side-ct, .c-list_side, .c-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: 0.5em;
}
.c-list_disc dt, .c-list_side-ct dt, .c-list_side dt, .c-list dt {
  font-weight: bold;
}
.c-list_disc dd, .c-list_side-ct dd, .c-list_side dd, .c-list dd {
  display: list-item;
}

.c-list {
  padding-left: 0;
  list-style-type: none;
}
.c-list dt {
  margin-left: 0;
}
.c-list_side {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  list-style: none;
  padding: 0;
}
.c-list_side-ct {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  gap: 1em;
  list-style: none;
  padding: 0;
}
.c-list_disc {
  list-style-type: disc;
}
.c-list_disc dt {
  margin-left: -1.2em;
}
.c-list_disc dd {
  display: list-item;
}
.c-list_disc::marker {
  font-family: var(--symbol-font);
}

/**
* scroll lock
* 
*/
html.js-fixed {
  height: 100%;
  overflow: hidden;
}

/**
* global navigation
* trigger behavior
*/
#nav_trigger {
  display: none;
}
#nav_trigger:checked ~ .c-navtrigger .c-navtrigger_line {
  background: transparent;
}
#nav_trigger:checked ~ .c-navtrigger .c-navtrigger_line:after, #nav_trigger:checked ~ .c-navtrigger .c-navtrigger_line:before {
  -webkit-transition: top 0.3s 0.05s ease, -webkit-transform 0.3s 0.35s ease;
  transition: top 0.3s 0.05s ease, -webkit-transform 0.3s 0.35s ease;
  transition: top 0.3s 0.05s ease, transform 0.3s 0.35s ease;
  transition: top 0.3s 0.05s ease, transform 0.3s 0.35s ease, -webkit-transform 0.3s 0.35s ease;
  top: 0;
}
#nav_trigger:checked ~ .c-navtrigger .c-navtrigger_line:before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#nav_trigger:checked ~ .c-navtrigger .c-navtrigger_line:after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#nav_trigger:checked ~ .c-gnav {
  position: fixed;
  display: block;
  opacity: 1;
  -webkit-animation: fadeIn 0.5s ease-in 0s forwards;
          animation: fadeIn 0.5s ease-in 0s forwards;
  pointer-events: initial;
}
@-webkit-keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@keyframes fadeIn {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: block;
    opacity: 0;
  }
  100% {
    display: block;
    opacity: 1;
  }
}
@media screen and (min-width: 960px) {
  #nav_trigger:checked ~ .c-gnav {
    right: 0;
    -webkit-transform: unset;
            transform: unset;
    -webkit-transition: -webkit-transform 0s;
    transition: -webkit-transform 0s;
    transition: transform 0s;
    transition: transform 0s, -webkit-transform 0s;
  }
}

.js-active + .c-navtrigger {
  background-color: #eee;
}

/**
* global navigation
* trigger button
*/
.c-navtrigger {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  right: 0;
  width: 60px;
  height: 60px;
  margin: auto;
  background-color: #fff;
  border-radius: 0;
  z-index: 100;
  cursor: pointer;
}
.c-navtrigger .c-navtrigger_line {
  position: relative;
  width: 24px;
  height: 1px;
  margin: auto;
  background: #333;
  -webkit-transition: background 0.01s 0.3s ease;
  transition: background 0.01s 0.3s ease;
  border-radius: 8px;
}
.c-navtrigger .c-navtrigger_line:before, .c-navtrigger .c-navtrigger_line:after {
  -webkit-transition: top 0.3s 0.35s ease, -webkit-transform 0.3s 0.05s ease;
  transition: top 0.3s 0.35s ease, -webkit-transform 0.3s 0.05s ease;
  transition: top 0.3s 0.35s ease, transform 0.3s 0.05s ease;
  transition: top 0.3s 0.35s ease, transform 0.3s 0.05s ease, -webkit-transform 0.3s 0.05s ease;
  position: absolute;
  background: #333;
  width: 24px;
  height: 1px;
  content: "";
  border-radius: 8px;
}
.c-navtrigger .c-navtrigger_line:before {
  top: -5px;
}
.c-navtrigger .c-navtrigger_line:after {
  top: 5px;
}
@media screen and (min-width: 960px) {
  .c-navtrigger {
    display: none;
  }
}

/**
* global navigation
* outline
*/
.c-gnav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  color: #fff;
  text-align: center;
  background-color: #fff;
  pointer-events: none;
  overflow-y: auto;
  opacity: 0;
  z-index: 0;
}
.c-gnav a {
  text-decoration: none;
}
.c-gnav.js-active {
  pointer-events: auto;
}
@media screen and (min-width: 960px) {
  .c-gnav {
    display: block;
    left: 0;
    width: 100%;
    height: 90px;
    margin-top: 0 !important;
    padding: 0;
    background-color: rgba(255, 255, 255, 0);
    pointer-events: auto;
    overflow-y: visible;
    opacity: 1;
  }
}

:where(:has(.c-menu_bg-circle)) .c-gnav {
  background-color: rgba(255, 255, 255, 0);
}

/**
* global navigation
* background setting
*/
.c-menu_bg-circle {
  position: fixed;
  right: -50px;
  top: -50px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background-color: rgb(255, 255, 255);
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-transition: all 0.6s;
  transition: all 0.6s;
  z-index: 3;
}
.c-menu_bg-circle.js-active {
  -webkit-transform: scale(50);
          transform: scale(50);
}

/**
* global navigation
* menu
*/
.c-gnav {
  margin-top: 60px;
}
.c-gnav .c-menu_main {
  max-width: 960px;
  margin: 0 auto;
  padding: 0;
  line-height: 1;
  list-style: none;
  background-color: #f2f2f2;
}
.c-gnav .c-menu_main > li {
  font-size: 15px;
  text-align: left;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  border-bottom: 1px solid #eee;
}
.c-gnav .c-menu_main > li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: auto;
  height: auto;
  padding: 1.25em 1.25em;
  color: #333;
}
.c-gnav .c-menu_main > li a[href^="#"]::after {
  content: none;
}
.c-gnav .c-menu_main > li a:hover {
  opacity: 0.9;
}
.c-gnav .c-menu_main > li:not(.has-children) a::after {
  content: "\e909";
  font-family: "camelus";
  font-size: 20px;
  color: #666;
}
.c-gnav .c-menu_childwrap {
  visibility: visible;
  opacity: 1;
  display: none;
  -webkit-transition: none;
  transition: none;
}
.c-gnav .c-menu_child {
  padding: 0;
  background-color: #ccc;
  list-style: none;
}
.c-gnav .c-menu_child > li {
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
  border-bottom: 1px solid rgb(255, 255, 255);
}
.c-gnav .c-menu_child > li a {
  text-indent: 1em;
}
.c-gnav .c-menu_child > li:hover {
  opacity: 1;
}
.c-gnav .c-menu_child figure img {
  display: none;
}
.c-gnav .c-menu_child figure figcaption {
  line-height: 1;
}
@media screen and (min-width: 960px) {
  .c-gnav {
    margin-top: 90px;
    padding: 0 clamp(1.25rem, 0.833rem + 1.39vw, 1.875rem);
  }
  .c-gnav .c-menu_main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    table-layout: fixed;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 2em;
    width: 100%;
    max-width: var(--wp--style--global--wide-size);
    margin: 0 auto;
    padding: 0;
    background-color: initial;
    border-width: 0;
  }
  .c-gnav .c-menu_main > li {
    text-align: center;
    border-width: 0px;
  }
  .c-gnav .c-menu_main > li > a {
    position: relative;
    height: 90px;
    padding: 0;
    line-height: 90px;
    -webkit-transition: ease 0.2s;
    transition: ease 0.2s;
    overflow: hidden;
    border-width: 0 !important;
  }
  .c-gnav .c-menu_main > li > a[href^="#"]::after {
    content: "";
  }
  .c-gnav .c-menu_main > li > a::after {
    display: block;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    position: absolute;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #999;
    border-radius: 100px;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: right top;
            transform-origin: right top;
    -webkit-transition: -webkit-transform 0.2s ease-out;
    transition: -webkit-transform 0.2s ease-out;
    transition: transform 0.2s ease-out;
    transition: transform 0.2s ease-out, -webkit-transform 0.2s ease-out;
    will-change: transform;
  }
  .c-gnav .c-menu_main > li:hover > a::after {
    opacity: 1;
    -webkit-transform: scaleX(1);
            transform: scaleX(1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
  .c-gnav .c-menu_childwrap {
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    height: auto;
    margin-left: calc(-50vw + 50%);
    padding: 0 10px;
    color: #fff;
    background: #f2f2f2;
    overflow: hidden;
    line-height: 1;
    opacity: 0;
    -webkit-transition-duration: 0.2s;
            transition-duration: 0.2s;
    -webkit-transition-delay: 0.1s;
            transition-delay: 0.1s;
    -webkit-transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, visibility, -webkit-transform;
    transition-property: opacity, transform, visibility;
    transition-property: opacity, transform, visibility, -webkit-transform;
    pointer-events: none;
  }
  .c-gnav .c-menu_child {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    max-width: 1080px;
    margin: 0 auto;
    padding: 0;
    background: #f2f2f2;
  }
  .c-gnav .c-menu_child li {
    margin: clamp(0.938rem, 0.813rem + 0.42vw, 1.125rem) clamp(0.938rem, 0.813rem + 0.42vw, 1.125rem);
    line-height: 1;
    border-width: 0;
  }
  .c-gnav .c-menu_child li a {
    height: auto;
    padding: 0;
    font-size: 100%;
    color: #333;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
    opacity: 1;
  }
  .c-gnav .c-menu_child li a:hover {
    background-color: rgba(255, 255, 255, 0.1);
  }
  .c-gnav .c-menu_child li:first-of-type {
    display: block;
  }
  .c-gnav .c-menu_child figure {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.25em;
  }
  .c-gnav .c-menu_child figure img {
    display: block;
    width: 72px;
    height: 72px;
  }
  .c-gnav .c-menu_child figure figcaption {
    font-size: 13px;
    text-align: center;
    text-indent: 0;
    -webkit-transition: ease 0.3s;
    transition: ease 0.3s;
  }
  .c-gnav .c-menu_child figure:hover figcaption {
    text-decoration: underline;
    text-underline-offset: 2px;
  }
}

@media (width >= 1100px) {
  .has-search {
    width: 250px;
  }
}

.has-children {
  position: relative;
}
.has-children > .c-menu_child-icon {
  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;
  position: absolute;
  width: 60px;
  height: 53px;
  right: 0px;
  top: 0px;
  text-align: center;
  font-style: normal;
  cursor: pointer;
}
.has-children > .c-menu_child-icon:before {
  content: "+";
  color: #666;
  font-size: 24px;
  line-height: 1;
}
.has-children.close .c-menu_childwrap .c-menu_child {
  width: 100%;
  height: auto !important;
}
.has-children:hover .c-menu_childwrap {
  opacity: 0.99;
  visibility: visible;
  pointer-events: inherit;
  -webkit-backdrop-filter: blur(12px);
          backdrop-filter: blur(12px);
}
.has-children.js-menu_child-open > .c-menu_child-icon:before {
  content: "-";
}
@media screen and (min-width: 960px) {
  .has-children {
    position: initial;
  }
  .has-children > .c-menu_child-icon {
    display: none;
  }
}

/**
 * post styles
 */
.c-post a {
  position: relative;
  height: 100%;
  color: #666;
  text-decoration: none;
  font-weight: 400;
}
.c-post a:hover .c-post_title {
  text-decoration: underline;
  text-decoration-thickness: 1px;
}
.c-post a:after {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}
.c-post_meta {
  /* 240803 変更要望を反映 */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 1em;
}
.c-post_meta-cat {
  /* 240803 変更要望を反映 */
  min-width: 120px;
  padding: 0.5em 0.25em;
  line-height: 1;
  text-align: center;
  font-size: 12px;
  border: 1px solid #666;
}
.c-post_title {
  /* 240803 変更要望を反映 */
  padding: 1em 0 0 0;
  font-weight: 400;
  font-size: clamp(14px, 13px + 0.3125vw, 15px);
  text-underline-offset: 4px;
  white-space: break-spaces;
}

:root {
  --ctr-height: 10px;
  --ctr-width: 10px;
  --ctr-rad: 100px;
}

.c-slider_ctr {
  position: absolute;
  bottom: 0px !important;
  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;
  width: 100%;
  height: var(--ctr-height);
  padding: 0;
  z-index: 1;
}
.c-slider_ctr .swiper-pagination-bullets {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-slider_ctr .swiper-pagination-bullet {
  position: relative;
  width: var(--ctr-width);
  height: var(--ctr-height);
  margin: 0 5px;
  border-radius: var(--ctr-rad);
  opacity: 1;
  background-color: #666666;
}
.c-slider_ctr .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #cccccc;
}
.c-slider_ctr .swiper-button-next,
.c-slider_ctr .swiper-container-rtl .swiper-button-prev {
  right: -5px;
}
.c-slider_ctr .swiper-button-prev,
.c-slider_ctr .swiper-container-rtl .swiper-button-next {
  left: -5px;
}

.c-slider_btn {
  /* 240803 変更要望を反映 */
  display: none;
  position: absolute;
  width: 100%;
}
.c-slider_btn .swiper-button-prev,
.c-slider_btn .swiper-button-next {
  position: absolute;
  top: auto;
  width: 40px;
  height: 40px;
  margin: 0px;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 2;
  background-image: url(../../../assets/images/common/icon-slide-arrow.svg);
}
.c-slider_btn .swiper-button-prev::after,
.c-slider_btn .swiper-button-next::after {
  display: none;
}
.c-slider_btn .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  .c-slider_btn {
    display: block;
    top: calc(50% - 64px);
  }
}
@media screen and (min-width: 960px) {
  .c-slider_btn {
    top: calc(50% - 72px);
  }
}
@media (width >= 1300px) {
  .c-slider_btn .swiper-button-prev,
  .c-slider_btn .swiper-button-next {
    background-size: cover;
    background-color: #333;
    background-blend-mode: multiply;
    -webkit-mask-image: url(../../../assets/images/common/icon-slide-arrow.svg);
            mask-image: url(../../../assets/images/common/icon-slide-arrow.svg);
    -webkit-mask-size: 40px;
            mask-size: 40px;
  }
  .c-slider_btn .swiper-button-prev {
    -webkit-transform: rotate(180deg) translateX(64px);
            transform: rotate(180deg) translateX(64px);
  }
  .c-slider_btn .swiper-button-next {
    -webkit-transform: translatex(64px);
            transform: translatex(64px);
  }
}

/**
* header for project
* 
*/
.p-header_search {
  width: 100%;
  height: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 52px;
  padding: 0 1.25em;
}
.p-header_search form {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
}
.p-header_search input {
  width: 100%;
  height: 30px;
  text-indent: 2.5em;
  line-height: 30px;
  border-radius: 100px;
  border-width: 1px;
  border-color: #666;
}
.p-header_search input:focus {
  outline: none;
}
.p-header_search button {
  position: absolute;
  left: 0;
  width: 40px;
  height: 30px;
}
.p-header_search i {
  color: #666;
  font-size: 18px;
}
@media screen and (min-width: 960px) {
  .p-header_search {
    height: 100%;
    padding: 0;
  }
}

/**
* footer for project
* 
*/
.p-footer {
  color: #666;
  background-color: #f2f2f2;
}
.p-footer p,
.p-footer ul,
.p-footer dl {
  margin: 0;
  font-size: 14px;
}
.p-footer ul {
  padding: 0;
  list-style: none;
}
.p-footer a {
  color: #666;
  text-decoration: none;
}
.p-footer a img {
  height: 48px;
}
.p-footer_logo {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  margin-bottom: 1.5em;
}
.p-footer_navi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -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;
  gap: 2em 0;
}
.p-footer_navi dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0 2em;
  width: 100%;
}
.p-footer_navi dl dt {
  width: 100%;
  text-align: center;
  margin-bottom: 1em;
}
.p-footer_navi ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  gap: 1em;
  width: 100%;
}
.p-footer_navi ul:first-of-type li {
  font-weight: bold;
}
.p-footer_link ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1.5em;
}
.p-footer_link ul li {
  font-size: 12px;
}
.p-footer_legal {
  width: 100%;
}
.p-footer_legal ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-flow: wrap;
      flex-flow: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 1em;
}
.p-footer_copy {
  width: 100%;
  font-family: "Open Sans", sans-serif;
  font-size: 13px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-footer_inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
  }
  .p-footer_navi {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 2em 0;
    position: relative;
    width: 65%;
  }
  .p-footer_navi dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
  }
  .p-footer_navi dl dt {
    text-align: left;
  }
  .p-footer_navi dl:first-of-type {
    width: 25%;
  }
  .p-footer_navi dl:last-of-type {
    width: 45%;
  }
  .p-footer_navi ul {
    width: 30%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .p-footer_link {
    width: 35%;
  }
  .p-footer_link ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media screen and (min-width: 960px) {
  .p-footer_logo {
    width: 25%;
    -webkit-box-pack: left;
        -ms-flex-pack: left;
            justify-content: left;
  }
  .p-footer_navi {
    padding-left: 3em;
    width: 55%;
    border-left: 1px solid #999;
  }
  .p-footer_link {
    width: 20%;
  }
}

/**
* for project page
* 
*/
/* side fixed cta */
.p-fixed-bnr {
  display: none;
}
.p-fixed-bnr ul {
  margin: 0;
  padding: 0;
  background-color: #eee;
}
.p-fixed-bnr ul li {
  font-size: 13px;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  overflow: hidden;
}
.p-fixed-bnr ul li:not(:last-of-type) {
  position: relative;
}
.p-fixed-bnr ul li:not(:last-of-type)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 18px;
  height: 1px;
  margin: auto;
  background-color: #fff;
}
.p-fixed-bnr ul li:nth-of-type(1) a::before {
  background-image: url(../../../assets/images/common/icon-room.svg);
}
.p-fixed-bnr ul li:nth-of-type(2) a::before {
  background-image: url(../../../assets/images/common/icon-catalog.svg);
}
.p-fixed-bnr ul li:nth-of-type(3) a::before {
  background-image: url(../../../assets/images/common/icon-contact.svg);
}
.p-fixed-bnr a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
  padding: 1.85em 1.2em;
  color: #fff;
  line-height: 1;
  text-decoration: none;
  background-color: #999;
  -webkit-transition: ease 500ms;
  transition: ease 500ms;
}
.p-fixed-bnr a::before {
  display: block;
  content: "";
  width: 20px;
  height: 20px;
  background-position: center center;
  background-repeat: no-repeat;
}
.p-fixed-bnr a:hover {
  opacity: 0.8;
}
@media screen and (min-width: 960px) {
  .p-fixed-bnr {
    /* 240810 Safariを修正 */
    position: fixed;
    right: 0;
    top: 100px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    z-index: 10;
    height: 458px;
    width: 52px;
  }
}

/* news list */
.p-news_list {
  /* 240803 変更要望を反映 */
  padding: 0 0 2em 0;
  list-style: none;
}
.p-news_list li {
  border-top: 1px solid #666;
}
.p-news_list li a {
  display: block;
  padding: 1.5em 2.5em 1.5em 0;
  -webkit-transition: ease 0.3s;
  transition: ease 0.3s;
}
@media screen and (min-width: 768px) {
  .p-news_list li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1em;
  }
  .p-news_list li a h3 {
    padding: 0;
  }
}

.p-page_heading {
  width: 100%;
  margin-bottom: clamp(3.75rem, 2.083rem + 5.56vw, 6.25rem);
}
.p-page_heading h2,
.p-page_heading h3 {
  margin: 0;
  padding-bottom: 0;
  font-size: clamp(20px, 6.6666666667px + 2.7777777778vw, 28px);
  font-weight: 400;
  letter-spacing: 0.25em;
  line-height: 1;
}
.p-page_heading:has(.comment) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: 1em;
}
.p-page_heading:has(.comment) h2,
.p-page_heading:has(.comment) h3 {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-page_heading .comment {
  font-size: clamp(13px, 11px + 0.625vw, 15px);
  letter-spacing: 0.1em;
}
.p-page_heading .comment br {
  display: none;
}
.p-page_heading-border {
  position: relative;
  max-width: 100%;
  padding: 0 0 2em 0;
  /* アニメーション化により、下線を削除 */
  /* border-bottom: 1px solid f.$color-gry-xd; */
}
.p-page_heading .line {
  /* アニメーション用に .line 追加 */
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #666;
}
@media screen and (min-width: 768px) {
  .p-page_heading:has(.comment) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3em;
  }
  .p-page_heading .comment br {
    display: block;
  }
}

/**
* for project page
* concept
*/
.p-concept {
  /* section title */
}
.p-concept_visual-message {
  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;
  gap: 2em;
}
.p-concept_visual figure img {
  max-width: 120px;
}
.p-concept_visual p {
  font-weight: 300;
  line-height: 2;
}
.p-concept_visual p br {
  display: none;
}
.p-concept_system-detail {
  gap: 2em 0;
}
.p-concept_system-detail .image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-concept_system-detail .text {
  width: 100%;
}
.p-concept_system-detail .text dl {
  margin: 0 auto;
  padding: 0;
}
.p-concept_system-detail .text dl dt {
  text-align: center;
  color: #a88579;
  font-size: clamp(24px, 16px + 2.5vw, 32px);
  font-family: "Open Sans", sans-serif;
}
.p-concept_system-detail .text dl dd {
  margin-bottom: 3em;
}
.p-concept_creation-gallery {
  gap: 2em;
}
.p-concept_creation-flow dl {
  padding: 0;
}
.p-concept_creation-flow dt {
  position: relative;
  margin-bottom: 0.5em;
  color: #a88579;
  font-size: clamp(18px, 12px + 1.875vw, 24px);
  text-align: center;
}
.p-concept_creation-flow dt span {
  display: inline-block;
  text-indent: 0.3em;
  letter-spacing: 0.3em;
  border-bottom: 1px solid #a88579;
}
.p-concept_creation-flow dd {
  position: relative;
  margin-bottom: 3em;
}
.p-concept_creation-flow dd:not(:last-of-type)::after {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -30px;
  margin: auto;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 10px solid transparent;
  border-left: 10px solid transparent;
  border-top: 10px solid #a88579;
  border-bottom: 0;
}
.p-concept_sust-detail {
  gap: 2em;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.p-concept_sust-detail .possible {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
}
.p-concept_sust-detail .possible h4 {
  margin: 1em 0;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
}
.p-concept_sust-detail .possible p {
  text-align: justify;
}
.p-concept_sust-detail .possible p br {
  display: none;
}
.p-concept_sust-detail .evidence {
  padding: 0;
  list-style: none;
}
.p-concept_sust-detail .evidence li {
  margin-bottom: 2em;
}
.p-concept_sust-detail .evidence figure img {
  display: block;
  height: 60px;
  width: auto;
  margin: 0 auto;
}
.p-concept_sust-detail .evidence figcaption {
  padding-top: 1em;
  text-align: justify;
  line-height: 1.9;
}
@media screen and (min-width: 640px) {
  .p-concept_system-detail .text dl dd {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .p-concept_visual-message {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 100px;
  }
  .p-concept_visual p {
    font-size: 14px;
    line-height: 3;
  }
  .p-concept_visual p br {
    display: block;
  }
  .p-concept_system-detail {
    gap: 0;
  }
  .p-concept_system-detail .image {
    width: 45%;
  }
  .p-concept_system-detail .text {
    width: 55%;
    padding-top: 3em;
  }
  .p-concept_system-detail .text dl {
    max-width: 290px;
  }
  .p-concept_system-detail .text dl dd {
    margin-bottom: 5em;
  }
  .p-concept_creation-gallery {
    padding-bottom: 3em;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-concept_creation-gallery figure {
    width: 46%;
  }
  .p-concept_creation-flow {
    max-width: 700px;
    margin: 0 auto;
  }
  .p-concept_creation-flow dl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -ms-flex-flow: wrap;
        flex-flow: wrap;
    gap: 1em;
  }
  .p-concept_creation-flow dl dt {
    width: 35%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
  .p-concept_creation-flow dl dt:not(:last-of-type)::after {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0px;
    margin: auto;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 10px solid #a88579;
    border-bottom: 0;
  }
  .p-concept_creation-flow dl dd {
    width: calc(65% - 3em);
  }
  .p-concept_creation-flow dl dd:not(:last-of-type)::after {
    content: none;
  }
  .p-concept_sust-detail {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-concept_sust-detail .possible {
    width: 46%;
    margin-bottom: 3em;
  }
  .p-concept_sust-detail .evidence {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .p-concept_sust-detail .evidence li {
    width: 30%;
  }
  .p-concept_sust-detail .evidence figcaption {
    text-align: center;
  }
}

/**
* background 
* color
*/
.u-bg_red {
  background-color: #d62222 !important;
}

.u-bg_bk {
  background-color: #333 !important;
}

.u-bg_gry {
  background-color: #ccc !important;
}

.u-bg_gry-l {
  background-color: #eee !important;
}

.u-bg_gry-xl {
  background-color: #f2f2f2 !important;
}

.u-bg_gry-xxl {
  background-color: #f7f7f7 !important;
}

.u-bg_gry-xxxl {
  background-color: #f9f9f9 !important;
}

/**
* block
* 
*/
.u-block_center, .u-block_center-800, .u-block_center-500, .u-block_center-400, .u-block_center-300, .u-block_center-200 {
  display: block;
  margin-inline: auto;
}

.u-content_over-full {
  width: 100vw !important;
  max-width: 100vw !important;
  margin: 0 calc(50% - 50vw) !important;
}

.u-block_center-200 {
  width: min(90%, 200px);
}

.u-block_center-300 {
  width: min(90%, 300px);
}

.u-block_center-400 {
  width: min(90%, 400px);
}

.u-block_center-500 {
  width: min(90%, 500px);
}

.u-block_center-800 {
  width: min(90%, 800px);
}

/**
* flex
* 
*/
.u-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.u-row > * {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}

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

.u-text_center, .u-text_center-md {
  text-align: center;
}
.u-text_center-md {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u-text_center-md {
    text-align: center;
  }
}

.u-text_right, .u-text_right-md {
  text-align: right;
}
.u-text_right-md {
  text-align: left;
}
@media screen and (min-width: 768px) {
  .u-text_right-md {
    text-align: right;
  }
}

.u-text_justify {
  text-align: justify;
  text-justify: inter-ideograph;
}

/**
* text
* font size
*/
.u-text_size75 {
  font-size: 75% !important;
}

.u-text_size80 {
  font-size: 80% !important;
}

.u-text_size110 {
  font-size: 110% !important;
}

.u-text_size120 {
  font-size: 120% !important;
}

.u-text_size140 {
  font-size: 140% !important;
}

.u-text_size160 {
  font-size: 160% !important;
}

.u-text_size180 {
  font-size: 180% !important;
}

.u-text_size200 {
  font-size: 200% !important;
}

.u-text_size-l {
  font-size: 18px !important;
}

/**
* text
* weight
*/
.u-text_bold, .u-text_bold-block {
  font-weight: bold;
}

.u-text_bold-block {
  display: block;
}

/**
* text
* font family
*/
.u-text_en {
  font-family: "Open Sans", sans-serif;
}

a .u-hover_scale {
  overflow: hidden;
}
a .u-hover_scale img {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  -webkit-transform: scale(1, 1);
          transform: scale(1, 1);
}
a .u-hover_filter {
  position: relative;
}
a .u-hover_filter:before {
  -webkit-transition: all 500ms ease-in-out;
  transition: all 500ms ease-in-out;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
  top: 0;
  left: 0;
  opacity: 0;
}
a .u-hover_line-text {
  position: absolute;
  z-index: 6;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: inline-block;
  width: 130px;
  height: 40px;
  margin: auto;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-weight: 300;
  line-height: 42px;
  border: none;
  background: transparent;
  outline: none !important;
  cursor: pointer;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
a .u-hover_line-text::before, a .u-hover_line-text::after {
  position: absolute;
  right: 0;
  top: 0;
  content: "";
  background: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
a .u-hover_line-text::before {
  height: 0%;
  width: 1px;
}
a .u-hover_line-text::after {
  width: 0%;
  height: 1px;
}
a .u-hover_line-text span {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
  opacity: 0;
}
a .u-hover_line-text span::before, a .u-hover_line-text span::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  background: #fff;
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
a .u-hover_line-text span::before {
  width: 1px;
  height: 0%;
}
a .u-hover_line-text span::after {
  width: 0%;
  height: 1px;
}
a:hover .u-hover_scale img {
  -webkit-transform: scale(1.2, 1.2);
          transform: scale(1.2, 1.2);
}
a:hover .u-hover_filter:before {
  opacity: 1;
}
a:hover .u-hover_line-text::before {
  height: 100%;
}
a:hover .u-hover_line-text::after {
  width: 100%;
}
a:hover .u-hover_line-text span {
  opacity: 1;
}
a:hover .u-hover_line-text span::before {
  height: 100%;
}
a:hover .u-hover_line-text span::after {
  width: 100%;
}/*# sourceMappingURL=style.css.map */
