@charset "UTF-8";
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------------------------------------
writing-mode mixin
    Usage:
        $orientation    v (vertical)
                        h (horizontal)
		$direction      rl (right to left)
						lr (left to right)
----------------------------------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font: inherit;
  font-size: 100%;
  vertical-align: baseline; }

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

caption, th, td {
  text-align: left;
  font-weight: normal;
  vertical-align: middle; }

q, blockquote {
  quotes: none; }
  q:before, q:after, blockquote:before, blockquote:after {
    content: "";
    content: none; }

a img {
  border: none; }

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
  display: block; }

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
@font-face {
  font-family: 'FKGroteskNeue';
  src: url("../fonts/FKGroteskNeue.ttf") format("truetype"); }

@font-face {
  font-family: 'Rhymes Display';
  src: url("../fonts/Rhymes Display Thin.ttf") format("truetype");
  font-weight: 300; }

@font-face {
  font-family: 'Rhymes Display';
  src: url("../fonts/Rhymes Display Thin Italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }

@font-face {
  font-family: 'Rhymes Text';
  src: url("../fonts/Rhymes Text Thin Italic.ttf") format("truetype");
  font-weight: 300;
  font-style: italic; }

/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important; } }

/**
 * !!! ページCSS基本設定 !!!
 * 基本的にこの箇所は操作しないようにする
 * ----------------ここから----------------
 */
html {
  font-size: 62.5%;
  font-family: "FKGroteskNeue", sans-serif;
  font-weight: 251;
  color: #18181B;
  background: #FAFAF9; }

* {
  box-sizing: border-box; }

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

a {
  color: inherit;
  text-decoration: none; }

textarea {
  resize: vertical; }

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer; }

select::-ms-expand {
  display: none; }

.row {
  overflow: hidden;
  *zoom: 1; }

/**
 * ----------------ここまで----------------
 */
.inner {
  max-width: 1140px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 18px; } }

[data-trigger] {
  position: relative;
  top: 60px;
  -webkit-transition: top 1s, opacity 1s;
  -moz-transition: top 1s, opacity 1s;
  -o-transition: top 1s, opacity 1s;
  transition: top 1s, opacity 1s;
  opacity: 0; }
  [data-trigger].visible {
    top: 0;
    opacity: 1; }

main {
  padding-top: 88px; }
  @media only screen and (max-width: 767px) {
    main {
      padding-top: 72px; } }

.footer {
  background: #18181B;
  color: #fff;
  padding: 0 60px; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding: 0 18px; } }
  .footer__top {
    padding: 33px 0 40px;
    border-bottom: 1px solid #68686E;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        padding: 40px 0;
        display: block; } }
    .footer__top .title {
      width: 50%; }
      @media only screen and (max-width: 767px) {
        .footer__top .title {
          width: 100%; } }
      .footer__top .title p {
        margin-top: 8px;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: -0.06px;
        color: #68686E; }
        @media only screen and (max-width: 767px) {
          .footer__top .title p {
            letter-spacing: -0.08px;
            line-height: 1.16666667;
            margin-top: 16px; } }
        .footer__top .title p a {
          text-decoration: underline; }
    .footer__top .form-newsletter {
      width: 48.31460674%; }
      @media only screen and (max-width: 767px) {
        .footer__top .form-newsletter {
          width: 100%;
          margin-top: 40px; } }
      .footer__top .form-newsletter form {
        display: flex;
        align-items: center;
        justify-content: flex-end; }
        .footer__top .form-newsletter form input[type="text"] {
          max-width: 495px;
          height: 40px;
          width: calc(100% - 108px);
          border-radius: 4px;
          background: #38383E;
          color: #fff;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: -0.07px;
          padding: 10px 16px; }
          @media only screen and (max-width: 767px) {
            .footer__top .form-newsletter form input[type="text"] {
              border-radius: 2px;
              padding: 5px 8px; } }
          .footer__top .form-newsletter form input[type="text"]::placeholder {
            color: #fff; }
        .footer__top .form-newsletter form .c-btn {
          margin-left: 16px; }
  .footer__middle {
    padding: 32px 0 50px;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__middle {
        display: block;
        padding: 42px 0 20px; } }
    .footer__middle .logo {
      display: block;
      width: 115px; }
      @media only screen and (max-width: 767px) {
        .footer__middle .logo {
          width: 48px;
          margin-bottom: 38px; } }
    .footer__middle .menu {
      width: calc(100% - 135px);
      display: flex;
      justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        .footer__middle .menu {
          width: 100%;
          justify-content: space-between;
          flex-wrap: wrap; } }
      .footer__middle .menu dl {
        margin-left: 32px;
        width: 200px; }
        @media only screen and (max-width: 767px) {
          .footer__middle .menu dl {
            width: 48.52507375%;
            margin: 0 0 40px; } }
        .footer__middle .menu dl dt {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: -0.08px;
          line-height: 1.3;
          padding-bottom: 10px;
          border-bottom: 1px solid #68686E;
          color: #68686E;
          margin-bottom: 20px; }
          @media only screen and (max-width: 767px) {
            .footer__middle .menu dl dt {
              font-size: 15px;
              font-size: 1.5rem;
              padding-bottom: 8px;
              margin-bottom: 12px; } }
        .footer__middle .menu dl dd ul li {
          font-size: 16px;
          font-size: 1.6rem;
          letter-spacing: -0.08px;
          line-height: 1.3;
          margin-bottom: 16px; }
          @media only screen and (max-width: 767px) {
            .footer__middle .menu dl dd ul li {
              font-size: 14px;
              font-size: 1.4rem;
              line-height: 1.28571429;
              margin-bottom: 12px; } }
          .footer__middle .menu dl dd ul li:last-of-type {
            margin-bottom: 0; }
  .footer__bottom {
    padding-bottom: 50px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    .footer__bottom .text-list {
      display: flex; }
      .footer__bottom .text-list li {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: -0.07px;
        line-height: 1.3;
        margin-right: 23px; }
        @media only screen and (max-width: 767px) {
          .footer__bottom .text-list li {
            margin-right: 25px; } }
    .footer__bottom .sns-list {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      .footer__bottom .sns-list li {
        width: 40px;
        margin-left: 12px; }
        @media only screen and (max-width: 767px) {
          .footer__bottom .sns-list li {
            margin-left: 10px; } }
        .footer__bottom .sns-list li a {
          display: block; }
          .footer__bottom .sns-list li a:hover svg rect {
            fill: #fff; }
          .footer__bottom .sns-list li a:hover svg path {
            fill: #18181B; }
          .footer__bottom .sns-list li a svg {
            width: 100%;
            height: auto;
            display: block; }
            .footer__bottom .sns-list li a svg path {
              transition: fill .3s; }
            .footer__bottom .sns-list li a svg rect {
              transition: fill .3s;
              fill: #18181B; }

.header {
  width: 100%;
  height: 88px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background-color .3s; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 72px;
      padding: 0 18px;
      background: #FAFAF9; } }
  @media only screen and (max-width: 767px) {
    .header.white {
      background: none; } }
  .header.white .header__logo .black {
    opacity: 0; }
  .header.white .header__logo .white {
    opacity: 1; }
  .header.white .header__center .black {
    opacity: 0; }
  .header.white .header__center .white {
    opacity: 1; }
  .header.white .hamburger {
    background: #fff; }
    .header.white .hamburger__inner span {
      background: #000; }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__list:before {
      background: rgba(0, 0, 0, 0.4); } }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__list > li:hover > span, .header.white .gnav__list > li:hover > a {
      background: #68686E;
      color: #fff; }
      .header.white .gnav__list > li:hover > span:after, .header.white .gnav__list > li:hover > a:after {
        background: #fff; } }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__list > li > span {
      color: #fff; } }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__list > li > a {
      color: #fff; } }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__list > li > span:after, .header.white .gnav__list > li a:after {
      background: #fff; } }
  .header.white .gnav__link:before {
    background: rgba(0, 0, 0, 0.4); }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__link li a {
      color: #fff; } }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__link li a:hover {
      background: #68686E;
      color: #fff; } }
  @media only screen and (min-width: 768px) {
    .header.white .gnav .btn-demo {
      background: #68686E;
      color: #fff; }
      .header.white .gnav .btn-demo:hover {
        background: #fff;
        color: #18181B; } }
  .header.is-active .header__logo .black {
    opacity: 1; }
  .header.is-active .header__logo .white {
    opacity: 0; }
  .header.is-active .header__center .black {
    opacity: 1; }
  .header.is-active .header__center .white {
    opacity: 0; }
  .header.is-active .hamburger {
    background: #000; }
    .header.is-active .hamburger__inner span {
      background: #fff; }
  .header__center {
    display: block;
    width: 70px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: +1; }
    .header__center .black {
      opacity: 1; }
    .header__center .white {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; }
    .header__center img {
      transition: opacity .3s; }
  .header__logo {
    display: block;
    width: 142px;
    margin-right: 52px;
    position: relative;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 48px; } }
    .header__logo .black {
      opacity: 1; }
    .header__logo .white {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; }
    .header__logo img {
      transition: opacity .3s; }
  .header .gnav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: calc(100% - 194px); }
    @media only screen and (max-width: 767px) {
      .header .gnav {
        width: 100%;
        height: 100vh;
        background: #fff;
        overflow-y: scroll;
        position: fixed;
        top: 0;
        left: 0;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
        display: block;
        padding: 72px 18px; } }
    @media only screen and (max-width: 767px) {
      .header .gnav.is-active {
        opacity: 1;
        visibility: visible; } }
    .header .gnav__list {
      display: flex;
      align-items: center;
      transition: background-color .3s;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .header .gnav__list {
          display: block; } }
      .header .gnav__list:before {
        content: "";
        width: calc(100% + 16px);
        height: 36px;
        background: rgba(250, 250, 249, 0.4);
        backdrop-filter: blur(30px);
        border-radius: 200px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity .3s, background-color .3s; }
      .header .gnav__list > li {
        margin-right: 8px;
        position: relative;
        cursor: pointer;
        padding: 13px 0; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list > li {
            margin: 0;
            border-bottom: 1px solid #CBCAC8;
            padding: 0; } }
        .header .gnav__list > li:last-of-type {
          margin-right: 0; }
        @media only screen and (min-width: 768px) {
          .header .gnav__list > li:hover .gnav__list__child {
            opacity: 1;
            visibility: visible; }
          .header .gnav__list > li:hover > span {
            color: #18181B;
            background: #dddee4; }
          .header .gnav__list > li:hover > a {
            color: #18181B;
            background: #dddee4; }
          .header .gnav__list > li:hover > span:after, .header .gnav__list > li:hover a:after {
            background: #1D1F25; } }
        .header .gnav__list > li > span, .header .gnav__list > li > a {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.125;
          position: relative;
          display: flex;
          align-items: center;
          padding: 4px 12px;
          border-radius: 32px;
          transition: color .3s, background-color .3s; }
          @media only screen and (max-width: 767px) {
            .header .gnav__list > li > span, .header .gnav__list > li > a {
              font-size: 18px;
              font-size: 1.8rem;
              line-height: 1.22222222;
              letter-spacing: -0.315px;
              padding: 25px 0; } }
          .header .gnav__list > li > span:after, .header .gnav__list > li > a:after {
            content: "";
            width: 8px;
            height: 4px;
            display: inline-block;
            background: #1D1F25;
            clip-path: polygon(0 0, 100% 0, 50% 100%);
            margin-left: 6px;
            transition: background-color .3s; }
          .header .gnav__list > li > span.none:after, .header .gnav__list > li > a.none:after {
            content: none; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list > li .trigger {
            padding-bottom: 8px; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list > li .trigger:after {
            content: none; } }
      .header .gnav__list__child {
        padding: 16px 16px;
        background: #E8E9ED;
        background: #dddee4;
        border-radius: 8px;
        filter: drop-shadow(0 0 26px rgba(0, 0, 0, 0.08));
        position: absolute;
        left: 0;
        top: 52px;
        white-space: nowrap;
        opacity: 0;
        transition: opacity .3s, visibility .3s; }
        @media only screen and (min-width: 768px) {
          .header .gnav__list__child {
            visibility: hidden; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list__child {
            position: static;
            opacity: 1;
            padding: 12px;
            border-radius: 4px;
            margin-bottom: 25px; } }
        .header .gnav__list__child li {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.125;
          letter-spacing: 0;
          display: flex;
          align-items: center;
          margin-bottom: 16px;
          position: relative;
          color: rgba(24, 24, 27, 0.5); }
          @media only screen and (max-width: 767px) {
            .header .gnav__list__child li {
              line-height: 1.375;
              margin-bottom: 12px; } }
          .header .gnav__list__child li:last-of-type {
            margin-bottom: 0; }
          .header .gnav__list__child li span, .header .gnav__list__child li a {
            background: none;
            padding: 0;
            transition: color .3s; }
            @media only screen and (min-width: 768px) {
              .header .gnav__list__child li span:hover, .header .gnav__list__child li a:hover {
                color: #18181B; } }
            .header .gnav__list__child li span:after, .header .gnav__list__child li a:after {
              content: none; }
    .header .gnav__cv {
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        .header .gnav__cv {
          flex-direction: column;
          margin-top: 50px; } }
    .header .gnav__link {
      display: flex;
      align-items: center;
      position: relative; }
      .header .gnav__link:before {
        content: "";
        width: calc(100% + 12px);
        height: 36px;
        background: rgba(250, 250, 249, 0.4);
        backdrop-filter: blur(30px);
        border-radius: 200px;
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        transition: opacity .3s, background-color .3s; }
        @media only screen and (max-width: 767px) {
          .header .gnav__link:before {
            content: none; } }
      .header .gnav__link li {
        margin-left: 8px;
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.125;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .header .gnav__link li {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 1.4;
            margin: 0 5px; } }
        .header .gnav__link li:first-of-type {
          margin-left: 0; }
        .header .gnav__link li a {
          transition: color .3s, background-color .3s;
          padding: 3px 12px;
          border-radius: 32px; }
          @media only screen and (max-width: 767px) {
            .header .gnav__link li a {
              padding: 3px 10px; } }
          @media only screen and (min-width: 768px) {
            .header .gnav__link li a:hover {
              background: #E8E9ED;
              color: #18181B; } }
    .header .gnav .btn-demo {
      width: 148px;
      height: 40px;
      border-radius: 114px;
      background: #18181B;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: -0.08px;
      color: #fff;
      margin-left: 16px;
      transition: color .3s, background-color .3s, border .3s; }
      @media only screen and (max-width: 767px) {
        .header .gnav .btn-demo {
          width: 173px;
          height: 45px;
          border-radius: 57px;
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: -0.045px;
          margin: 32px auto 0; } }
      @media only screen and (min-width: 768px) {
        .header .gnav .btn-demo:hover {
          background: #fff;
          color: #18181B; } }

.hamburger {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color .3s;
  position: relative;
  z-index: +1; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
    transform: rotate(135deg);
    top: 5px; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
    opacity: 0; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
    transform: rotate(-135deg);
    bottom: 5px; }
  .hamburger__inner {
    width: 16px;
    height: 11px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; }
    .hamburger__inner span {
      width: 16px;
      height: 1px;
      display: block;
      background: #fff;
      transition: opacity .3s, transform .3s, top .3s, bottom .3s, background-color .3s; }
      .hamburger__inner span:nth-of-type(1) {
        position: absolute;
        top: 0;
        left: 0; }
      .hamburger__inner span:nth-of-type(3) {
        position: absolute;
        bottom: 0;
        left: 0; }

.c-title01 {
  font-family: "Rhymes Display", serif;
  font-weight: 251;
  font-size: 72px;
  font-size: 7.2rem;
  line-height: 1;
  letter-spacing: -2.88px; }
  @media only screen and (max-width: 767px) {
    .c-title01 {
      font-size: 47px;
      font-size: 4.7rem;
      line-height: 1.12765957;
      letter-spacing: -1.44px; } }

.c-title02 {
  font-family: "Rhymes Display", serif;
  font-weight: 251;
  font-size: 61px;
  font-size: 6.1rem;
  line-height: 1;
  letter-spacing: -2.88px; }
  @media only screen and (max-width: 767px) {
    .c-title02 {
      font-size: 40px;
      font-size: 4rem;
      line-height: 1.125;
      letter-spacing: -1.44px; } }

.c-title03 {
  font-family: "Rhymes Display", serif;
  font-weight: 251;
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1.1;
  letter-spacing: -0.75px; }
  @media only screen and (max-width: 767px) {
    .c-title03 {
      font-size: 22px;
      font-size: 2.2rem;
      line-height: 1.27272727;
      letter-spacing: -0.375px; } }

.c-title04 {
  font-family: "Rhymes Display", serif;
  font-weight: 251;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.1;
  letter-spacing: -0.96px; }
  @media only screen and (max-width: 767px) {
    .c-title04 {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.22222222;
      letter-spacing: -0.995px; } }

.c-title05 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -0.63px; }
  @media only screen and (max-width: 767px) {
    .c-title05 {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.375;
      letter-spacing: -0.315px; } }

.c-title06 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: -0.63px;
  font-weight: 400;
  line-height: 1.2; }
  @media only screen and (max-width: 767px) {
    .c-title06 {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: -0.315px; } }

.c-text01 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: -0.09px;
  line-height: 1.33333333;
  color: #68686E; }
  @media only screen and (max-width: 767px) {
    .c-text01 {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.4;
      letter-spacing: -0.045px; } }

.c-text02 {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.26666667;
  letter-spacing: -0.08px;
  color: #68686E; }
  @media only screen and (max-width: 767px) {
    .c-text02 {
      font-size: 14px;
      font-size: 1.4rem;
      line-height: 1.28571429;
      letter-spacing: -0.04px; } }

.c-text03 {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: -0.08px;
  color: #68686E; }
  @media only screen and (max-width: 767px) {
    .c-text03 {
      line-height: 1.16666667;
      letter-spacing: -0.04px; } }

.c-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  padding: 11px 20px 9px;
  border-radius: 114px;
  background: #FAFAF9;
  border: 1px solid #CBCAC8;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: -0.08px;
  line-height: 1.3;
  transition: color .3s, background-color .3s, border .3s; }
  .c-btn:hover {
    background: #000 !important;
    color: #fff !important; }
  .c-btn.white {
    background: #fff;
    color: #18181B;
    border: none; }
  .c-btn.beige {
    background: #FAFAF9; }
  .c-btn.gray {
    background: #38383E;
    border: none;
    color: #fff; }

@media only screen and (max-width: 767px) {
  #searchform {
    position: relative; } }

.c-cate-list {
  display: flex;
  justify-content: flex-end; }
  @media only screen and (max-width: 767px) {
    .c-cate-list {
      justify-content: flex-start;
      white-space: nowrap;
      overflow-x: scroll;
      height: 50px;
      padding-bottom: 8px; } }
  .c-cate-list > li {
    margin-left: 20px; }
    @media only screen and (max-width: 767px) {
      .c-cate-list > li {
        margin: 0px 0 6px 10px;
        margin-bottom: 0; } }
  .c-cate-list .break {
    width: 100%;
    height: 0;
    margin: 0; }

.c-cate-select {
  position: relative;
  display: inline-block; }
  @media only screen and (max-width: 767px) {
    .c-cate-select {
      position: static; } }
  .c-cate-select__btn {
    padding: 8px 38px 8px 20px;
    border-radius: 100px;
    background: #FAFAF9;
    border: 1px solid #CBCAC8;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.26666667;
    letter-spacing: -0.08px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    transition: color .3s, background-color .3s; }
    @media only screen and (max-width: 767px) {
      .c-cate-select__btn {
        padding: 11px 30px 11px 20px;
        font-size: 14px;
        font-size: 1.4rem; } }
    .c-cate-select__btn:hover {
      background: #1D1F25;
      color: #fff; }
      .c-cate-select__btn:hover:after {
        background: #fff; }
    .c-cate-select__btn.is-active:after {
      transform: translate(0%, -50%) rotate(180deg); }
    .c-cate-select__btn:after {
      content: "";
      width: 8px;
      height: 4px;
      display: inline-block;
      background: #1D1F25;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      position: absolute;
      top: 50%;
      right: 20px;
      transform: translate(0%, -50%);
      transition: background-color .3s, transform .3s; }
      @media only screen and (max-width: 767px) {
        .c-cate-select__btn:after {
          right: 17px;
          width: 6px;
          height: 3px; } }
  .c-cate-select__list {
    padding: 16px 24px;
    background: #FAFAF9;
    border-radius: 8px;
    border: 1px solid #CBCAC8;
    filter: drop-shadow(0 0 26px rgba(0, 0, 0, 0.08));
    will-change: filter;
    position: absolute;
    right: 0;
    top: 45px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s, visibility .3s;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      .c-cate-select__list {
        padding: 20px;
        border-radius: 4px;
        top: 50px; } }
    .c-cate-select__list.is-active {
      opacity: 1;
      visibility: visible; }
    .c-cate-select__list li {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.33333333;
      letter-spacing: -0.09px;
      display: flex;
      align-items: center;
      margin-bottom: 16px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .c-cate-select__list li {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: -0.08px;
          line-height: 1.28571429;
          margin-bottom: 24px; } }
      .c-cate-select__list li:last-of-type {
        margin-bottom: 0; }
      .c-cate-select__list li input {
        width: 1px;
        height: 1px;
        position: absolute;
        top: 0;
        left: 0; }
      .c-cate-select__list li label {
        display: flex;
        align-items: center; }
      .c-cate-select__list li i {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        margin-right: 12px;
        display: inline-block;
        overflow: hidden; }

.c-post-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 24px; }
  @media only screen and (max-width: 767px) {
    .c-post-list {
      margin-top: 10px; } }
  .c-post-list.col2 li {
    width: 48.11320755%;
    margin-right: 3.7735849%;
    margin-top: 3.7735849%; }
    @media only screen and (max-width: 767px) {
      .c-post-list.col2 li {
        width: 100%;
        margin: 0 0 32px; } }
    @media only screen and (max-width: 767px) {
      .c-post-list.col2 li:last-of-type {
        margin-bottom: 0; } }
    @media only screen and (min-width: 768px) {
      .c-post-list.col2 li:nth-of-type(3n) {
        margin-right: 3.7735849%; } }
    @media only screen and (min-width: 768px) {
      .c-post-list.col2 li:nth-of-type(-n + 3) {
        margin-top: 3.7735849%; } }
    @media only screen and (min-width: 768px) {
      .c-post-list.col2 li:nth-of-type(2n) {
        margin-right: 0; } }
    @media only screen and (min-width: 768px) {
      .c-post-list.col2 li:nth-of-type(-n + 2) {
        margin-top: 0; } }
  .c-post-list > li {
    width: 30.87818697%;
    margin-right: 3.68271954%;
    margin-top: 3.68271955%; }
    @media only screen and (max-width: 767px) {
      .c-post-list > li {
        width: 100%;
        margin: 0 0 32px; } }
    @media only screen and (max-width: 767px) {
      .c-post-list > li:last-of-type {
        margin-bottom: 0; } }
    @media only screen and (min-width: 768px) {
      .c-post-list > li:nth-of-type(3n) {
        margin-right: 0; } }
    @media only screen and (min-width: 768px) {
      .c-post-list > li:nth-of-type(-n + 3) {
        margin-top: 0; } }

.c-post a {
  background: #fff;
  border-radius: 2px;
  padding: 8px 8px 24px;
  display: block;
  display: flex;
  flex-direction: column;
  height: 100%; }
  @media only screen and (max-width: 767px) {
    .c-post a {
      padding-bottom: 20px; } }
  .c-post a.bg-none {
    background: none;
    padding: 0; }
    .c-post a.bg-none .text {
      padding: 0; }

.c-post .image {
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 311/180; }
  @media only screen and (max-width: 767px) {
    .c-post .image {
      aspect-ratio: 646/374; } }
  .c-post .image.low {
    aspect-ratio: 16/9; }
    @media only screen and (max-width: 767px) {
      .c-post .image.low {
        aspect-ratio: 16/9; } }
  .c-post .image.tall {
    aspect-ratio: 311/311; }
  .c-post .image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }

.c-post .text {
  margin-top: 20px;
  padding: 0 16px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    .c-post .text {
      margin-top: 10px;
      padding: 0 8px; } }
  .c-post .text .description {
    margin-top: 12px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.26666667;
    letter-spacing: -0.08px;
    color: #68686E; }
    @media only screen and (max-width: 767px) {
      .c-post .text .description {
        font-size: 14px;
        font-size: 1.4rem;
        line-height: 1.28571429;
        letter-spacing: -0.04px; } }
    .c-post .text .description h2 {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: -0.63px;
      line-height: 1.33333333;
      color: #68686E;
      margin-top: 12px;
      margin-bottom: 12px; }
      @media only screen and (max-width: 767px) {
        .c-post .text .description h2 {
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.4; } }
    .c-post .text .description h3 {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: -0.63px;
      line-height: 1.33333333;
      color: #68686E;
      margin-top: 12px;
      margin-bottom: 12px; }
      @media only screen and (max-width: 767px) {
        .c-post .text .description h3 {
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.4; } }
    .c-post .text .description ul {
      margin-bottom: 12px; }
      .c-post .text .description ul li {
        width: 100%;
        margin-bottom: 0px;
        color: #18181B;
        padding-left: 22px;
        position: relative;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.26666667;
        letter-spacing: -0.08px;
        color: #68686E; }
        @media only screen and (max-width: 767px) {
          .c-post .text .description ul li {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.28571429; } }
        .c-post .text .description ul li:before {
          content: "";
          width: 8px;
          height: 8px;
          display: inline-block;
          background: #68686E;
          border-radius: 50%;
          left: 6px;
          top: 5px;
          position: absolute; }
        .c-post .text .description ul li:last-of-type {
          margin-top: 0; }
  .c-post .text .col2 {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 16px; }
    .c-post .text .col2 .left {
      width: calc(100% - 139px); }
      .c-post .text .col2 .left .date-read {
        margin-bottom: 4px; }
      .c-post .text .col2 .left .cate {
        margin: 8px 0 0;
        max-width: 140px;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap; }
        @media only screen and (max-width: 767px) {
          .c-post .text .col2 .left .cate {
            max-width: 168px; } }
    .c-post .text .col2 .logo {
      width: 125px;
      height: 58px;
      display: flex;
      align-items: center;
      justify-content: center; }
      .c-post .text .col2 .logo img {
        max-height: 100%; }
  .c-post .text .col {
    margin-top: 20px;
    display: flex;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      .c-post .text .col {
        margin-top: 16px; } }
  .c-post .text .cate {
    padding: 6px 10px;
    display: inline-block;
    border-radius: 100px;
    border: 1px solid #CBCAC8;
    background: #FAFAF9;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: -0.008em;
    margin-right: 6px; }
    .c-post .text .cate svg {
      position: relative;
      top: 1px; }
    .c-post .text .cate.dark {
      background: #CBCAC8; }
  .c-post .text .date-read {
    display: flex;
    align-items: center; }
    .c-post .text .date-read hr {
      border: none;
      width: 1px;
      height: 10px;
      display: inline-block;
      background: #18181B;
      margin: 0 8px; }
  .c-post .text .date {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: -0.008em; }
    .c-post .text .date.bg {
      display: inline-block;
      padding: 6px 10px;
      border-radius: 100px;
      background: #CBCAC8; }
  .c-post .text .read {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: -0.008em; }
  .c-post .text .detail {
    margin-top: 20px; }
    @media only screen and (max-width: 767px) {
      .c-post .text .detail {
        margin-top: 8px; } }
    .c-post .text .detail ul {
      margin-top: 18px; }
      @media only screen and (max-width: 767px) {
        .c-post .text .detail ul {
          margin-top: 16px; } }
      .c-post .text .detail ul li {
        margin-bottom: 12px;
        padding-left: 1em;
        position: relative;
        color: #68686E; }
        @media only screen and (max-width: 767px) {
          .c-post .text .detail ul li {
            margin-bottom: 6px; } }
        .c-post .text .detail ul li:before {
          content: "・";
          position: absolute;
          top: 0;
          left: 0; }
        .c-post .text .detail ul li:last-of-type {
          margin-bottom: 0; }
    .c-post .text .detail .schedule {
      margin-bottom: 12px;
      color: #68686E;
      font-weight: 400; }
      @media only screen and (max-width: 767px) {
        .c-post .text .detail .schedule {
          margin-bottom: 8px; } }
    .c-post .text .detail .point {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: -0.08px;
      line-height: 1.26666667;
      color: #68686E; }
      @media only screen and (max-width: 767px) {
        .c-post .text .detail .point {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: -0.04px;
          line-height: 1.28571429; } }
      .c-post .text .detail .point p {
        margin-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          .c-post .text .detail .point p {
            margin-bottom: 8px; } }
      .c-post .text .detail .point h6 {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: -0.63px;
        line-height: 1.2;
        margin-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          .c-post .text .detail .point h6 {
            font-size: 15px;
            font-size: 1.5rem;
            letter-spacing: -0.045px;
            line-height: 1.4;
            margin-bottom: 8px; } }
      .c-post .text .detail .point ul {
        margin-top: 12px; }
        @media only screen and (max-width: 767px) {
          .c-post .text .detail .point ul {
            margin-top: 8px; } }
        .c-post .text .detail .point ul li {
          margin-bottom: 0;
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.25;
          letter-spacing: -0.08px; }
          @media only screen and (max-width: 767px) {
            .c-post .text .detail .point ul li {
              line-height: 1.16666667;
              letter-spacing: -0.04px; } }
          .c-post .text .detail .point ul li:before {
            content: "";
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #68686E;
            position: absolute;
            top: 5px;
            left: 2px; }
            @media only screen and (max-width: 767px) {
              .c-post .text .detail .point ul li:before {
                top: 4px; } }
  .c-post .text .sub-title {
    margin-bottom: 8px; }
  .c-post .text .c-btn {
    margin: 32px auto 8px; }
    @media only screen and (max-width: 767px) {
      .c-post .text .c-btn {
        margin: 25px auto 5px; } }
  .c-post .text .c-btn.left {
    margin: 24px 0 0; }

.c-result-text {
  text-align: center;
  padding: 200px 0; }
  @media only screen and (max-width: 767px) {
    .c-result-text {
      padding: 100px 0; } }

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 100px auto 0;
  width: max-content;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 59px; } }
  .wp-pagenavi a, .wp-pagenavi span {
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    font-weight: 400;
    color: #CBCAC8;
    width: 20px;
    height: 28px;
    margin: 0 4px;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi a, .wp-pagenavi span {
        font-size: 15px;
        font-size: 1.5rem; } }
  .wp-pagenavi .current {
    color: #68686E; }
  .wp-pagenavi .previouspostslink {
    margin-right: 5px;
    position: absolute;
    top: 1px;
    left: -30px; }
    .wp-pagenavi .previouspostslink:before {
      content: "";
      width: 8px;
      height: 14px;
      display: inline-block;
      background: url(../img/common/arrow_left.svg) center center/cover no-repeat;
      position: absolute;
      top: 46%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media only screen and (max-width: 767px) {
        .wp-pagenavi .previouspostslink:before {
          width: 5px;
          height: 9px; } }
  .wp-pagenavi .nextpostslink {
    margin-left: 5px;
    position: absolute;
    top: 1px;
    right: -30px; }
    .wp-pagenavi .nextpostslink:before {
      content: "";
      width: 8px;
      height: 14px;
      display: inline-block;
      background: url(../img/common/arrow_right.svg) center center/cover no-repeat;
      position: absolute;
      top: 46%;
      left: 50%;
      transform: translate(-50%, -50%); }
      @media only screen and (max-width: 767px) {
        .wp-pagenavi .nextpostslink:before {
          width: 5px;
          height: 9px; } }

.c-logo-slider__title {
  display: block;
  text-align: center;
  margin-bottom: 8px; }
  @media only screen and (max-width: 767px) {
    .c-logo-slider__title {
      margin-bottom: 4px; } }

.c-logo-slider .swiper {
  overflow: visible; }
  .c-logo-slider .swiper .swiper-wrapper {
    transition-timing-function: linear !important; }
  .c-logo-slider .swiper .swiper-slide {
    width: auto; }
  .c-logo-slider .swiper .logo-list {
    display: flex;
    align-items: center;
    white-space: nowrap;
    width: auto; }
    .c-logo-slider .swiper .logo-list li {
      width: 173px;
      margin-right: 18px; }
      @media only screen and (max-width: 767px) {
        .c-logo-slider .swiper .logo-list li {
          width: 110px;
          margin-right: 9px; } }
      .c-logo-slider .swiper .logo-list li:last-of-type {
        margin-right: 36px; }
        @media only screen and (max-width: 767px) {
          .c-logo-slider .swiper .logo-list li:last-of-type {
            margin-right: 18px; } }

.c-slider-col3 {
  position: relative; }
  @media only screen and (max-width: 767px) {
    .c-slider-col3 {
      width: calc(100% - 96px);
      margin: 0 auto; } }
  @media only screen and (max-width: 767px) {
    .c-slider-col3 .swiper {
      overflow: visible; } }
  .c-slider-col3 .swiper-button-prev, .c-slider-col3 .swiper-button-next {
    width: 37px;
    height: 37px;
    top: 50%;
    transform: translate(0, -50%);
    margin: 0; }
    @media only screen and (max-width: 767px) {
      .c-slider-col3 .swiper-button-prev, .c-slider-col3 .swiper-button-next {
        width: 36px;
        height: 36px; } }
    .c-slider-col3 .swiper-button-prev:after, .c-slider-col3 .swiper-button-next:after {
      content: none; }
  .c-slider-col3 .swiper-button-prev {
    left: -77px; }
    @media only screen and (max-width: 767px) {
      .c-slider-col3 .swiper-button-prev {
        left: -48px; } }
  .c-slider-col3 .swiper-button-next {
    right: -77px; }
    @media only screen and (max-width: 767px) {
      .c-slider-col3 .swiper-button-next {
        right: -48px; } }
  .c-slider-col3 .swiper-slide {
    height: auto; }

.c-slider-col2 {
  max-width: 693px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .c-slider-col2 {
      width: calc(100% - 28px); } }
  .c-slider-col2 .swiper {
    overflow: visible; }
    .c-slider-col2 .swiper .swiper-slide {
      width: 327px;
      height: auto; }
      @media only screen and (max-width: 767px) {
        .c-slider-col2 .swiper .swiper-slide {
          width: 100%; } }

.c-form__item {
  margin-bottom: 20px; }
  .c-form__item input[type="text"] {
    width: 100%;
    height: 39px;
    background: #F1F1F4;
    border-radius: 4px;
    border: 1px solid #CBCAC8;
    padding: 10px 16px;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: -0.08px;
    line-height: 1.26666667; }
    .c-form__item input[type="text"]::placeholder {
      color: #757575; }
  .c-form__item input[type="radio"] {
    margin: 0;
    margin-right: 6px;
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(24, 24, 27, 0.6);
    border-radius: 50%;
    vertical-align: -2px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
  .c-form__item input[type="radio"]:checked:before {
    margin: 0;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(24, 24, 27, 0.6);
    content: ''; }
  .c-form__item input[type="checkbox"] {
    margin-right: 6px;
    position: relative;
    width: 16px;
    height: 16px;
    border: 1px solid rgba(24, 24, 27, 0.6);
    vertical-align: -5px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none; }
    .c-form__item input[type="checkbox"]:checked {
      background: rgba(24, 24, 27, 0.6); }
  .c-form__item input[type="checkbox"]:checked:before {
    position: absolute;
    top: 1px;
    left: 4px;
    transform: rotate(50deg);
    width: 4px;
    height: 8px;
    border-right: 2px solid #fff;
    border-bottom: 2px solid #fff;
    content: ''; }
  .c-form__item .radio-list {
    display: flex;
    flex-wrap: wrap;
    margin-top: 12px; }
    .c-form__item .radio-list li {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: -0.08px;
      line-height: 1.26666667;
      color: rgba(24, 24, 27, 0.6);
      margin-right: 16px;
      margin-bottom: 16px; }
      .c-form__item .radio-list li label {
        display: flex;
        align-items: center; }
  .c-form__item .select-list {
    margin-top: 12px; }
    .c-form__item .select-list li {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: -0.08px;
      line-height: 1.26666667;
      color: rgba(24, 24, 27, 0.6);
      margin-bottom: 16px; }
      .c-form__item .select-list li label {
        display: flex;
        align-items: center; }

.c-form__label {
  display: block;
  width: 100%;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: -0.07px;
  line-height: 1.21333333;
  color: rgba(24, 24, 27, 0.6);
  margin-bottom: 4px; }

.c-form__required {
  color: #FB6839; }

.has-gray-background-color {
  background-color: #68686E; }

.has-gray-color {
  color: #68686E; }

.has-darkgray-background-color {
  background-color: #18181B; }

.has-darkgray-color {
  color: #18181B; }

.c-block {
  padding: 32px 0 100px;
  position: relative;
  border-top: 1px solid #CBCAC8; }
  @media only screen and (max-width: 767px) {
    .c-block {
      padding: 20px 0 75px; } }

.c-column {
  display: flex;
  justify-content: space-between;
  margin-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    .c-column {
      display: block;
      margin-bottom: 50px; } }
  .c-column:last-of-type {
    margin-bottom: 0; }
  .c-column__left {
    width: 30.8490566%; }
    @media only screen and (max-width: 767px) {
      .c-column__left {
        width: 100%;
        margin-bottom: 24px; } }
  .c-column__right {
    width: 65.37735849%; }
    @media only screen and (max-width: 767px) {
      .c-column__right {
        width: 100%; } }
    .c-column__right .c-title02 {
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        .c-column__right .c-title02 {
          margin-bottom: 32px; } }
    .c-column__right .c-title03 {
      margin-bottom: 32px; }
      @media only screen and (max-width: 767px) {
        .c-column__right .c-title03 {
          margin-bottom: 0; } }
    .c-column__right .c-text02 {
      margin-bottom: 40px; }
    .c-column__right .image {
      margin-top: 40px; }

.c-detail-head {
  padding: 69px 0 120px; }
  @media only screen and (max-width: 767px) {
    .c-detail-head {
      padding: 18px 0 40px; } }
  .c-detail-head__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 21px; }
    @media only screen and (max-width: 767px) {
      .c-detail-head__top {
        margin-bottom: 60px; } }
    .c-detail-head__top .cate-list {
      display: flex;
      align-items: center; }
      .c-detail-head__top .cate-list dl {
        margin-right: 20px;
        display: flex;
        align-items: center; }
        .c-detail-head__top .cate-list dl dt {
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: -0.008em;
          line-height: 1.26666667; }
        .c-detail-head__top .cate-list dl dd {
          display: flex; }
          .c-detail-head__top .cate-list dl dd span {
            margin-left: 5px;
            padding: 3px 8px;
            border-radius: 100px;
            display: inline-block;
            background: #CBCAC8;
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: -0.008em; }
  .c-detail-head__cont {
    text-align: center; }
    .c-detail-head__cont .cate-area {
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 32px; }
      @media only screen and (max-width: 767px) {
        .c-detail-head__cont .cate-area {
          margin-bottom: 21px; } }
      .c-detail-head__cont .cate-area .cate {
        display: inline-block;
        padding: 6px 10px;
        border-radius: 100px;
        border: 1px solid #CBCAC8;
        background: #FAFAF9;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: -0.008em;
        margin: 0 5px; }
    .c-detail-head__cont .c-title02 {
      margin-bottom: 32px; }
      @media only screen and (max-width: 767px) {
        .c-detail-head__cont .c-title02 {
          margin-bottom: 24px; } }
    .c-detail-head__cont .c-text01 {
      margin-bottom: 60px; }
      @media only screen and (max-width: 767px) {
        .c-detail-head__cont .c-text01 {
          margin-bottom: 40px; } }
    .c-detail-head__cont .author i {
      width: 40px;
      border-radius: 50%;
      display: block;
      margin: 0 auto 12px; }
      @media only screen and (max-width: 767px) {
        .c-detail-head__cont .author i {
          margin-bottom: 16px; } }
    .c-detail-head__cont .author span {
      display: block;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: -0.08px;
      text-decoration: underline;
      color: #68686E; }
  .c-detail-head .share-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .c-detail-head .share-btn {
        justify-content: center;
        margin-top: 40px; } }
    .c-detail-head .share-btn li {
      margin-left: 12px;
      width: 40px; }
      @media only screen and (max-width: 767px) {
        .c-detail-head .share-btn li {
          margin: 0 5px; } }
      .c-detail-head .share-btn li a {
        display: block; }
        .c-detail-head .share-btn li a:hover svg circle {
          fill: #18181B; }
        .c-detail-head .share-btn li a:hover svg path {
          fill: #F5F5F5; }
        .c-detail-head .share-btn li a svg {
          width: 100%;
          height: auto; }
          .c-detail-head .share-btn li a svg path {
            transition: fill .3s; }
          .c-detail-head .share-btn li a svg circle {
            transition: fill .3s; }

.c-detail-cont {
  padding-bottom: 160px; }
  @media only screen and (max-width: 767px) {
    .c-detail-cont {
      padding-bottom: 75px; } }
  .c-detail-cont__col {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .c-detail-cont__col {
        flex-direction: column; } }
  .c-detail-cont .cont {
    width: calc(100% - 367px);
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: -0.09px;
    line-height: 1.4;
    font-weight: 251; }
    @media only screen and (max-width: 767px) {
      .c-detail-cont .cont {
        width: 100%;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: -0.08px;
        line-height: 1.28571429; } }
    .c-detail-cont .cont .thumbnail {
      margin-bottom: 64px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont .thumbnail {
          margin-bottom: 50px; } }
      .c-detail-cont .cont .thumbnail img {
        width: 100%;
        margin: 0; }
    .c-detail-cont .cont strong {
      font-weight: 600; }
    .c-detail-cont .cont h1 {
      font-family: "Rhymes Display", serif;
      font-weight: 251;
      font-size: 72px;
      font-size: 7.2rem;
      line-height: 1;
      letter-spacing: -2.88px;
      margin-top: 64px;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont h1 {
          font-size: 47px;
          font-size: 4.7rem;
          line-height: 1.12765957;
          margin-top: 40px;
          margin-bottom: 20px; } }
    .c-detail-cont .cont h2 {
      font-family: "Rhymes Display", serif;
      font-weight: 251;
      font-size: 61px;
      font-size: 6.1rem;
      line-height: 1;
      letter-spacing: -2.88px;
      margin-top: 64px;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont h2 {
          font-size: 40px;
          font-size: 4rem;
          line-height: 1.125;
          margin-top: 40px;
          margin-bottom: 20px; } }
    .c-detail-cont .cont h3 {
      font-size: 32px;
      font-size: 3.2rem;
      font-family: "Rhymes Display", serif;
      font-weight: 251;
      line-height: 1.1;
      letter-spacing: -0.075px;
      margin-top: 64px;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont h3 {
          font-size: 22px;
          font-size: 2.2rem;
          line-height: 1.27272727;
          margin-top: 40px;
          margin-bottom: 20px; } }
    .c-detail-cont .cont h4 {
      font-family: "Rhymes Display", serif;
      font-weight: 251;
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.1;
      letter-spacing: -0.96px;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont h4 {
          font-size: 18px;
          font-size: 1.8rem;
          line-height: 1.22222222;
          letter-spacing: -1.99px;
          margin-bottom: 20px; } }
    .c-detail-cont .cont h5 {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: -0.63px;
      font-weight: 400;
      line-height: 1.08;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont h5 {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.375;
          margin-bottom: 20px; } }
    .c-detail-cont .cont h6 {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: -0.63px;
      font-weight: 400;
      line-height: 1.2;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont h6 {
          font-size: 14px;
          font-size: 1.4rem;
          margin-bottom: 20px; } }
    .c-detail-cont .cont ol {
      counter-reset: number 0; }
      .c-detail-cont .cont ol li {
        padding-left: 26px;
        position: relative;
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: -0.09px;
        line-height: 1.33333333;
        margin-bottom: 24px; }
        @media only screen and (max-width: 767px) {
          .c-detail-cont .cont ol li {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 1.4;
            margin-bottom: 12px; } }
        .c-detail-cont .cont ol li:last-of-type {
          margin-bottom: 0; }
        .c-detail-cont .cont ol li:before {
          counter-increment: number 1;
          content: counter(number) ".";
          display: inline-block;
          border-radius: 50%;
          position: absolute;
          top: 1px;
          left: 0px; }
          @media only screen and (max-width: 767px) {
            .c-detail-cont .cont ol li:before {
              top: 0px; } }
    .c-detail-cont .cont ul li {
      padding-left: 26px;
      position: relative;
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: -0.09px;
      line-height: 1.33333333;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont ul li {
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.4;
          margin-bottom: 12px; } }
      .c-detail-cont .cont ul li:last-of-type {
        margin-bottom: 0; }
      .c-detail-cont .cont ul li:before {
        content: "";
        width: 7px;
        height: 7px;
        display: inline-block;
        background: #18181B;
        border-radius: 50%;
        position: absolute;
        top: 9px;
        left: 7px; }
        @media only screen and (max-width: 767px) {
          .c-detail-cont .cont ul li:before {
            top: 8px; } }
    .c-detail-cont .cont img {
      border-radius: 2px; }
    .c-detail-cont .cont figure {
      margin-top: 64px;
      margin-bottom: 64px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont figure {
          margin-bottom: 50px; } }
      .c-detail-cont .cont figure figcaption {
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: -0.08px;
        color: #68686E;
        margin-top: 14px; }
        @media only screen and (max-width: 767px) {
          .c-detail-cont .cont figure figcaption {
            margin-top: 6px; } }
        .c-detail-cont .cont figure figcaption strong {
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 1.33333333;
          letter-spacing: -0.09px;
          color: #18181B; }
          @media only screen and (max-width: 767px) {
            .c-detail-cont .cont figure figcaption strong {
              font-size: 15px;
              font-size: 1.5rem;
              line-height: 1.4; } }
    .c-detail-cont .cont .head {
      padding: 40px 20px;
      background: #fff;
      margin-bottom: 80px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont .head {
          padding: 20px 12px;
          margin-bottom: 50px; } }
      .c-detail-cont .cont .head .c-title03 {
        margin-top: 0; }
      .c-detail-cont .cont .head .c-text02 {
        margin-bottom: 0;
        color: #18181B; }
    .c-detail-cont .cont blockquote {
      padding: 40px 20px;
      background: #fff;
      margin-bottom: 80px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont blockquote {
          padding: 20px 12px;
          margin-bottom: 50px; } }
      .c-detail-cont .cont blockquote h3 {
        margin-top: 0; }
      .c-detail-cont .cont blockquote p {
        margin-bottom: 0; }
    .c-detail-cont .cont p {
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .cont p {
          margin-bottom: 25px; } }
    .c-detail-cont .cont a {
      text-decoration: underline; }
  .c-detail-cont .related {
    width: 327px; }
    @media only screen and (max-width: 767px) {
      .c-detail-cont .related {
        width: 100%;
        margin-top: 40px; } }
    .c-detail-cont .related .c-post {
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        .c-detail-cont .related .c-post {
          margin-bottom: 32px; } }
      .c-detail-cont .related .c-post:last-of-type {
        margin-bottom: 0; }

.c-archive-head {
  text-align: center;
  padding: 160px 0 100px; }
  @media only screen and (max-width: 767px) {
    .c-archive-head {
      padding: 80px 0; } }
  .c-archive-head .c-title02 {
    margin-bottom: 32px; }

.c-archive-cont {
  padding: 0 0 200px; }
  @media only screen and (max-width: 767px) {
    .c-archive-cont {
      padding: 0 0 100px; } }

.c-col3 {
  display: flex;
  flex-wrap: wrap; }
  @media only screen and (max-width: 767px) {
    .c-col3 {
      display: block;
      margin-top: 81px; } }
  .c-col3 dl {
    width: 30.8490566%;
    margin-right: 3.7264151%;
    background: #E8E8E3;
    border-radius: 12px; }
    @media only screen and (max-width: 767px) {
      .c-col3 dl {
        width: 100%;
        margin: 0 0 32px;
        border-radius: 6px; } }
    @media only screen and (max-width: 767px) {
      .c-col3 dl:last-of-type {
        margin-bottom: 0; } }
    .c-col3 dl:nth-of-type(3n) {
      margin-right: 0; }
    .c-col3 dl dt {
      padding: 40px;
      min-height: 316px;
      color: #68686E; }
      @media only screen and (max-width: 767px) {
        .c-col3 dl dt {
          padding: 31px 32px;
          min-height: 99px; } }
    .c-col3 dl dd {
      padding: 40px;
      border-top: 1px solid #CBCAC8; }
      @media only screen and (max-width: 767px) {
        .c-col3 dl dd {
          padding: 32px; } }
      .c-col3 dl dd a {
        text-decoration: underline; }

.c-request-demo {
  height: 622px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .c-request-demo {
      height: auto;
      padding: 80px 18px; } }
  .c-request-demo__image {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    .c-request-demo__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  .c-request-demo__text {
    color: #fff;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%; }
    @media only screen and (max-width: 767px) {
      .c-request-demo__text {
        position: static;
        transform: translate(0, 0);
        width: 100%; } }
    .c-request-demo__text .c-title01 {
      display: block;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        .c-request-demo__text .c-title01 {
          margin-bottom: 40px; } }
    .c-request-demo__text .c-title05 {
      max-width: 906px;
      margin: 0 auto 32px; }
      @media only screen and (max-width: 767px) {
        .c-request-demo__text .c-title05 {
          margin-bottom: 40px; } }
    .c-request-demo__text .c-btn {
      margin: 0 auto; }

.c-discover {
  text-align: center;
  padding: 64px 0;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .c-discover {
      padding: 40px 0; } }
  .c-discover:before {
    content: "";
    width: calc(100% - 80px);
    height: 1px;
    display: block;
    background: #CBCAC8;
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 1060px; }
    @media only screen and (max-width: 767px) {
      .c-discover:before {
        width: calc(100% - 36px); } }
  .c-discover:after {
    content: "";
    width: calc(100% - 80px);
    height: 1px;
    display: block;
    background: #CBCAC8;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 0);
    max-width: 1060px; }
    @media only screen and (max-width: 767px) {
      .c-discover:after {
        width: calc(100% - 36px); } }
  .c-discover .c-title02 {
    margin-bottom: 60px; }
    @media only screen and (max-width: 767px) {
      .c-discover .c-title02 {
        margin-bottom: 40px; } }
  .c-discover .c-btn {
    margin: 0 auto; }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

main.about-us {
  background: #18181B; }
  main.about-us .main-visual {
    padding: 130px 0 80px;
    color: #fff; }
    @media only screen and (max-width: 767px) {
      main.about-us .main-visual {
        padding: 80px 0 40px; } }
    main.about-us .main-visual__text {
      text-align: center;
      margin: 0 auto 72px;
      max-width: 886px; }
      @media only screen and (max-width: 767px) {
        main.about-us .main-visual__text {
          margin-bottom: 60px; } }
      main.about-us .main-visual__text .c-title05 {
        margin-bottom: 32px; }
        @media only screen and (max-width: 767px) {
          main.about-us .main-visual__text .c-title05 {
            margin-bottom: 40px; } }
    main.about-us .main-visual__image {
      overflow: hidden;
      border-radius: 4px; }
      @media only screen and (max-width: 767px) {
        main.about-us .main-visual__image {
          border-radius: 2px; } }
  main.about-us .whole {
    background: #F5F5F5;
    padding-top: 80px;
    padding-bottom: 100px; }
    @media only screen and (max-width: 767px) {
      main.about-us .whole {
        padding-top: 50px;
        padding-bottom: 75px; } }
  main.about-us hr.sp {
    display: block;
    width: 100%;
    height: 1px;
    border: none;
    background: #CBCAC8;
    margin: 50px 0 10px; }
  main.about-us .c-block.pb40 {
    padding-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      main.about-us .c-block.pb40 {
        padding-bottom: 20px; } }
  main.about-us .c-block:last-of-type {
    border-bottom: 1px solid #CBCAC8;
    margin-top: 50px; }
    @media only screen and (max-width: 767px) {
      main.about-us .c-block:last-of-type {
        padding: 40px 0;
        margin-top: 0; } }
    @media only screen and (max-width: 767px) {
      main.about-us .c-block:last-of-type .c-column__right {
        text-align: center; } }
    @media only screen and (max-width: 767px) {
      main.about-us .c-block:last-of-type .c-btn.right {
        margin: 40px auto 0; } }
  main.about-us .c-btn.right {
    margin-top: 120px;
    margin-left: auto; }
    @media only screen and (max-width: 767px) {
      main.about-us .c-btn.right {
        margin-top: 60px; } }
  main.about-us .video {
    position: relative;
    cursor: pointer; }
    @media only screen and (max-width: 767px) {
      main.about-us .video {
        margin: 0 -18px; } }
    @media only screen and (max-width: 767px) {
      main.about-us .video__thumb {
        aspect-ratio: 750/597; } }
    @media only screen and (max-width: 767px) {
      main.about-us .video__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; } }
    main.about-us .video__interactive {
      position: absolute;
      left: 20px;
      bottom: 20px;
      width: 381px;
      display: flex; }
      @media only screen and (max-width: 767px) {
        main.about-us .video__interactive {
          width: 141px;
          left: 18px;
          bottom: 18px; } }
      main.about-us .video__interactive__image {
        width: 48.55643045%; }
      main.about-us .video__interactive__btn {
        width: 51.44356955%;
        background: rgba(0, 0, 0, 0.4);
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff; }
        @media only screen and (max-width: 767px) {
          main.about-us .video__interactive__btn {
            width: 100%;
            height: 56px;
            border-radius: 5px; } }
        @media only screen and (max-width: 767px) {
          main.about-us .video__interactive__btn i {
            width: 40px; } }
        @media only screen and (max-width: 767px) {
          main.about-us .video__interactive__btn i svg {
            display: block;
            width: 100%;
            height: auto; } }
        main.about-us .video__interactive__btn span {
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.26666667;
          letter-spacing: -0.08px;
          display: inline-block;
          margin-left: 16px; }
          @media only screen and (max-width: 767px) {
            main.about-us .video__interactive__btn span {
              font-size: 14px;
              font-size: 1.4rem;
              margin-left: 8px; } }
  main.about-us .tab-list li {
    margin-bottom: 10px;
    color: #68686E;
    cursor: pointer; }
    @media only screen and (max-width: 767px) {
      main.about-us .tab-list li {
        margin-bottom: 6px; } }
    main.about-us .tab-list li:last-of-type {
      margin-bottom: 0; }
    main.about-us .tab-list li.current {
      color: #18181B; }
  main.about-us .people-list {
    display: none; }
    main.about-us .people-list dl {
      border-bottom: 1px solid #CBCAC8; }
      main.about-us .people-list dl dt {
        padding: 32px 40px 32px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        position: relative;
        cursor: pointer; }
        main.about-us .people-list dl dt.active:after {
          transform: translate(0%, -50%) rotate(-90deg);
          opacity: 0; }
        main.about-us .people-list dl dt:before {
          content: "";
          width: 16px;
          height: 1px;
          display: inline-block;
          background: #FB6839;
          position: absolute;
          top: 50%;
          right: 24px;
          transform: translate(0%, -50%); }
        main.about-us .people-list dl dt:after {
          content: "";
          width: 1px;
          height: 16px;
          display: inline-block;
          background: #FB6839;
          position: absolute;
          top: 50%;
          right: 32px;
          transform: translate(0%, -50%);
          transition: transform .3s, opacity .3s; }
        main.about-us .people-list dl dt i {
          width: 64px; }
        main.about-us .people-list dl dt .name {
          width: calc(100% - 76px); }
          main.about-us .people-list dl dt .name .c-title04 {
            display: block;
            margin-bottom: 4px; }
      main.about-us .people-list dl dd {
        padding-bottom: 32px;
        display: none; }
  main.about-us .award-list .c-column {
    padding: 32px 0;
    margin-bottom: 0;
    border-bottom: 1px solid #CBCAC8; }
    @media only screen and (max-width: 767px) {
      main.about-us .award-list .c-column {
        padding: 20px 0;
        display: flex;
        align-items: flex-start; } }
    main.about-us .award-list .c-column:first-of-type {
      border-top: 1px solid #CBCAC8; }
    @media only screen and (max-width: 767px) {
      main.about-us .award-list .c-column__left {
        width: 106px;
        margin-bottom: 0; } }
    main.about-us .award-list .c-column__left .image {
      max-width: 204px; }
      @media only screen and (max-width: 767px) {
        main.about-us .award-list .c-column__left .image {
          width: 106px; } }
    main.about-us .award-list .c-column__right {
      display: flex;
      position: relative; }
      @media only screen and (max-width: 767px) {
        main.about-us .award-list .c-column__right {
          width: calc(100% - 116px);
          flex-wrap: wrap; } }
      main.about-us .award-list .c-column__right .year {
        width: 17.6046176%;
        color: #18181B; }
        @media only screen and (max-width: 767px) {
          main.about-us .award-list .c-column__right .year {
            order: 1;
            margin-right: 21px; } }
      main.about-us .award-list .c-column__right .title {
        width: 47.18614719%;
        padding-right: 25px;
        color: #18181B; }
        @media only screen and (max-width: 767px) {
          main.about-us .award-list .c-column__right .title {
            padding-right: 0;
            width: 100%;
            order: 3;
            margin-top: 10px; } }
      main.about-us .award-list .c-column__right .award {
        width: 35.20923521%;
        position: relative;
        color: #18181B; }
        @media only screen and (max-width: 767px) {
          main.about-us .award-list .c-column__right .award {
            order: 2; } }
      main.about-us .award-list .c-column__right .icon {
        width: 12px;
        height: 12px;
        display: inline-block;
        position: absolute;
        right: 0;
        top: 4px; }
        @media only screen and (max-width: 767px) {
          main.about-us .award-list .c-column__right .icon {
            display: none; } }

main.case_detail .c-request-demo {
  margin-top: 100px; }
  @media only screen and (max-width: 767px) {
    main.case_detail .c-request-demo {
      margin-top: 0; } }

main.contact-us {
  padding: 160px 0 100px; }
  @media only screen and (max-width: 767px) {
    main.contact-us {
      padding: 80px 0 75px; } }
  main.contact-us .head {
    padding-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      main.contact-us .head {
        padding-bottom: 50px; } }
  main.contact-us .c-block.pb40 {
    padding-bottom: 40px; }
  main.contact-us .c-block:last-of-type {
    border-bottom: 1px solid #CBCAC8; }
  @media only screen and (max-width: 767px) {
    main.contact-us .c-column__left .c-title05 {
      margin-bottom: 24px; } }
  main.contact-us .c-column__left .detail {
    padding: 8px 16px 24px;
    background: #fff;
    margin-top: 187px; }
    @media only screen and (max-width: 767px) {
      main.contact-us .c-column__left .detail {
        margin-top: 80px; } }
    main.contact-us .c-column__left .detail__thumb {
      margin: 0 -8px 20px;
      border-radius: 2px;
      overflow: hidden;
      aspect-ratio: 16/9; }
      main.contact-us .c-column__left .detail__thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    main.contact-us .c-column__left .detail .c-title03 {
      margin-bottom: 12px; }
    main.contact-us .c-column__left .detail .c-text03 {
      margin-bottom: 24px; }
      main.contact-us .c-column__left .detail .c-text03:last-child {
        margin-bottom: 0; }
    main.contact-us .c-column__left .detail .c-text01 {
      margin-bottom: 12px;
      color: #18181B; }
    main.contact-us .c-column__left .detail .info {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.26666667;
      letter-spacing: -0.08px;
      color: #68686E; }
      @media only screen and (max-width: 767px) {
        main.contact-us .c-column__left .detail .info {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.16666667; } }
      main.contact-us .c-column__left .detail .info h2 {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: -0.09px;
        line-height: 1.33333333;
        color: #18181B;
        margin-top: 24px;
        margin-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          main.contact-us .c-column__left .detail .info h2 {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 1.4;
            margin-top: 12px; } }
      main.contact-us .c-column__left .detail .info h3 {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: -0.09px;
        line-height: 1.33333333;
        color: #18181B;
        margin-top: 24px;
        margin-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          main.contact-us .c-column__left .detail .info h3 {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 1.4;
            margin-top: 12px; } }
      main.contact-us .c-column__left .detail .info ul li {
        color: #18181B;
        padding-left: 22px;
        position: relative;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.26666667;
        letter-spacing: -0.08px;
        color: #68686E; }
        @media only screen and (max-width: 767px) {
          main.contact-us .c-column__left .detail .info ul li {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.28571429; } }
        main.contact-us .c-column__left .detail .info ul li:before {
          content: "";
          width: 8px;
          height: 8px;
          display: inline-block;
          background: #68686E;
          border-radius: 50%;
          left: 6px;
          top: 5px;
          position: absolute; }
        main.contact-us .c-column__left .detail .info ul li:last-of-type {
          margin-bottom: 0; }
  main.contact-us .c-column__right .form-area iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 640/2175; }
    @media only screen and (max-width: 767px) {
      main.contact-us .c-column__right .form-area iframe {
        aspect-ratio: 640/5000; } }
  main.contact-us .c-column__right .c-btn.right {
    margin-left: auto;
    margin-top: 112px; }

main.privacy-policy {
  padding: 160px 0 20px; }
  @media only screen and (max-width: 767px) {
    main.privacy-policy {
      padding: 80px 0 20px; } }
  main.privacy-policy .head {
    padding-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      main.privacy-policy .head {
        padding-bottom: 50px; } }
  @media only screen and (min-width: 768px) {
    main.privacy-policy .c-block {
      padding-top: 80px; } }
  @media only screen and (max-width: 767px) {
    main.privacy-policy .c-block {
      padding-top: 0; } }
  main.privacy-policy .c-column__left .download {
    border-bottom: 1px solid #CBCAC8;
    padding: 0px 0 32px; }
    @media only screen and (max-width: 767px) {
      main.privacy-policy .c-column__left .download {
        border-top: none;
        padding: 20px 0; } }
    main.privacy-policy .c-column__left .download .c-text02 {
      color: #18181B;
      display: block;
      margin-bottom: 24px;
      font-weight: 400; }
      @media only screen and (max-width: 767px) {
        main.privacy-policy .c-column__left .download .c-text02 {
          margin-bottom: 16px; } }
    main.privacy-policy .c-column__left .download ul li {
      margin-bottom: 24px;
      padding-left: 17px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        main.privacy-policy .c-column__left .download ul li {
          margin-bottom: 16px; } }
      main.privacy-policy .c-column__left .download ul li:last-of-type {
        margin-bottom: 0; }
      main.privacy-policy .c-column__left .download ul li:before {
        content: "";
        width: 5px;
        height: 5px;
        display: inline-block;
        background: #18181B;
        border-radius: 50%;
        position: absolute;
        top: 10px;
        left: 0; }
        @media only screen and (max-width: 767px) {
          main.privacy-policy .c-column__left .download ul li:before {
            top: 11px; } }
    main.privacy-policy .c-column__left .download ul a {
      padding: 6px 10px;
      border-radius: 100px;
      border: 1px solid #CBCAC8;
      display: inline-block;
      transition: color .3s, background-color .3s, border .3s; }
      main.privacy-policy .c-column__left .download ul a:hover {
        background: #18181B; }
        main.privacy-policy .c-column__left .download ul a:hover .c-text03 {
          color: #fff; }
        main.privacy-policy .c-column__left .download ul a:hover svg path {
          fill: #fff; }
      main.privacy-policy .c-column__left .download ul a .c-text03 {
        color: #18181B;
        font-weight: 400;
        display: inline-block;
        margin-right: 4px;
        transition: color .3s; }
      main.privacy-policy .c-column__left .download ul a svg path {
        transition: fill .3s; }
  main.privacy-policy .c-column__left .legal {
    padding: 32px 0;
    border-bottom: 1px solid #CBCAC8; }
    @media only screen and (max-width: 767px) {
      main.privacy-policy .c-column__left .legal {
        padding: 20px 0; } }
    main.privacy-policy .c-column__left .legal .c-title03 {
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        main.privacy-policy .c-column__left .legal .c-title03 {
          margin-bottom: 12px; } }
    @media only screen and (max-width: 767px) {
      main.privacy-policy .c-column__left .legal .c-title06 {
        line-height: 1.4; } }
    main.privacy-policy .c-column__left .legal .c-title06 a {
      text-decoration: underline; }
  main.privacy-policy .c-column__right .c-text01 {
    margin-bottom: 40px;
    color: #18181B; }
    @media only screen and (max-width: 767px) {
      main.privacy-policy .c-column__right .c-text01 {
        margin-bottom: 26px; } }
  main.privacy-policy .c-column__right .c-title05 {
    margin-bottom: 20px; }
    @media only screen and (max-width: 767px) {
      main.privacy-policy .c-column__right .c-title05 {
        margin-bottom: 10px; } }
  main.privacy-policy .c-column__right ul {
    margin-top: -8px;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      main.privacy-policy .c-column__right ul {
        margin-top: -10px;
        margin-bottom: 26px; } }
    main.privacy-policy .c-column__right ul li {
      padding-left: 22px;
      position: relative;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.26666667;
      letter-spacing: -0.08px;
      color: #18181B;
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        main.privacy-policy .c-column__right ul li {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.28571429;
          margin-bottom: 16px; } }
      main.privacy-policy .c-column__right ul li:before {
        content: "";
        width: 8px;
        height: 8px;
        display: inline-block;
        background: #18181B;
        border-radius: 50%;
        left: 6px;
        top: 5px;
        position: absolute; }
      main.privacy-policy .c-column__right ul li:last-of-type {
        margin-bottom: 0; }
      main.privacy-policy .c-column__right ul li .c-text02 {
        color: #18181B;
        margin-bottom: 0; }

main.solution-overview .main-visual {
  padding-top: 160px;
  padding-bottom: 40px; }
  @media only screen and (max-width: 767px) {
    main.solution-overview .main-visual {
      padding-top: 80px;
      padding-bottom: 50px; } }
  main.solution-overview .main-visual__text {
    max-width: 624px;
    margin-bottom: 40px; }
    main.solution-overview .main-visual__text .c-title02 {
      margin-bottom: 32px; }
    main.solution-overview .main-visual__text .c-title05 {
      margin-bottom: 40px; }
  main.solution-overview .main-visual__image {
    overflow: hidden;
    border-radius: 4px; }
    @media only screen and (max-width: 767px) {
      main.solution-overview .main-visual__image {
        border-radius: 2px; } }

main.solution-overview .c-block .image {
  border-radius: 4px;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    main.solution-overview .c-block .image {
      border-radius: 2px; } }

main.solution-overview hr.sp {
  display: block;
  width: 100%;
  height: 1px;
  border: none;
  background: #CBCAC8;
  margin: 50px 0 10px; }

@media only screen and (max-width: 767px) {
  main.solution-overview .c-column__right .c-title03 {
    margin-bottom: 32px; } }

@media only screen and (max-width: 767px) {
  main.solution-overview .c-column__right .c-btn.sp-right {
    margin-left: auto; } }

main.top {
  padding-top: 0; }
  main.top .main-visual {
    padding: 129px 0 70px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      main.top .main-visual {
        padding: 92px 0 54px; } }
    main.top .main-visual .inner {
      padding: 0 60px;
      max-width: 1366px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        main.top .main-visual .inner {
          padding: 0 18px; } }
    main.top .main-visual__image {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      main.top .main-visual__image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    main.top .main-visual__col {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      padding: 0 32px; }
      @media only screen and (max-width: 767px) {
        main.top .main-visual__col {
          display: block;
          padding: 0; } }
      main.top .main-visual__col .text {
        width: 44.15254237%;
        padding-top: 21px; }
        @media only screen and (max-width: 767px) {
          main.top .main-visual__col .text {
            width: 100%;
            padding-top: 0; } }
        main.top .main-visual__col .text h1 {
          font-size: 61px;
          font-size: 6.1rem;
          line-height: 1;
          letter-spacing: -2.46px;
          color: #fff;
          font-family: "Rhymes Display", serif;
          font-weight: 251;
          margin-bottom: 24px; }
          @media only screen and (max-width: 767px) {
            main.top .main-visual__col .text h1 {
              font-size: 32px;
              font-size: 3.2rem;
              line-height: 1.171875;
              letter-spacing: -1.44px;
              margin-bottom: 16px; } }
        main.top .main-visual__col .text .c-title05 {
          color: #fff;
          margin-bottom: 32px; }
          @media only screen and (max-width: 767px) {
            main.top .main-visual__col .text .c-title05 {
              margin-bottom: 20px;
              max-width: 281px;
              font-size: 12px;
              font-size: 1.2rem;
              letter-spacing: -0.04px;
              line-height: 1.16666667; } }
        main.top .main-visual__col .text .btn-col {
          display: flex; }
          main.top .main-visual__col .text .btn-col .c-btn {
            margin-right: 24px; }
            @media only screen and (max-width: 767px) {
              main.top .main-visual__col .text .btn-col .c-btn {
                margin-right: 12px;
                padding-left: 10px;
                padding-right: 10px; } }
            main.top .main-visual__col .text .btn-col .c-btn.dark {
              background: #CBCAC8; }
      main.top .main-visual__col .image {
        width: 47.71186441%;
        aspect-ratio: 563/392;
        position: relative; }
        @media only screen and (max-width: 767px) {
          main.top .main-visual__col .image {
            width: 100%;
            margin-top: 32px; } }
        main.top .main-visual__col .image .image01 {
          position: absolute;
          top: 0;
          left: 0;
          width: 93.78330373%;
          filter: drop-shadow(0 0 23px rgba(0, 0, 0, 0.1)); }
        main.top .main-visual__col .image .image02 {
          position: absolute;
          right: 0;
          bottom: 0;
          width: 50.79928952%;
          filter: drop-shadow(0 0 24px rgba(0, 0, 0, 0.08)); }
    main.top .main-visual__col3 {
      display: flex;
      justify-content: space-between;
      margin-top: 72px; }
      @media only screen and (max-width: 767px) {
        main.top .main-visual__col3 {
          margin-top: 38px; } }
      main.top .main-visual__col3 dl {
        width: 32.20883534%;
        background: rgba(250, 250, 249, 0.15);
        backdrop-filter: blur(5px);
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 4px;
        display: flex;
        justify-content: space-between;
        padding: 28px 25px 24px 28px;
        color: #fff; }
        @media only screen and (max-width: 767px) {
          main.top .main-visual__col3 dl {
            width: 31.4159292%;
            padding: 20px 8px 14px;
            border-radius: 2px;
            flex-direction: column;
            justify-content: flex-start;
            align-items: center; } }
        main.top .main-visual__col3 dl dt {
          width: 136px;
          display: flex;
          align-items: flex-start; }
          @media only screen and (max-width: 767px) {
            main.top .main-visual__col3 dl dt {
              width: 100%;
              justify-content: center; } }
          main.top .main-visual__col3 dl dt strong {
            font-size: 81px;
            font-size: 8.1rem;
            letter-spacing: -2.45px;
            display: flex;
            align-items: center;
            margin-right: 5px; }
            @media only screen and (max-width: 767px) {
              main.top .main-visual__col3 dl dt strong {
                font-size: 40px;
                font-size: 4rem;
                letter-spacing: -1.02px;
                margin-right: 2px; } }
            main.top .main-visual__col3 dl dt strong.small {
              font-size: 71px;
              font-size: 7.1rem;
              margin-left: -12px; }
              @media only screen and (max-width: 767px) {
                main.top .main-visual__col3 dl dt strong.small {
                  font-size: 40px;
                  font-size: 4rem;
                  margin-left: -8px; } }
            main.top .main-visual__col3 dl dt strong .min {
              font-size: 32px;
              font-size: 3.2rem;
              letter-spacing: -1.44px;
              margin-right: 4px; }
              @media only screen and (max-width: 767px) {
                main.top .main-visual__col3 dl dt strong .min {
                  font-size: 20px;
                  font-size: 2rem;
                  margin-right: 2px; } }
          main.top .main-visual__col3 dl dt small {
            font-size: 32px;
            font-size: 3.2rem;
            letter-spacing: -1.44px;
            line-height: 0.8;
            position: relative;
            top: 8px;
            left: 4px; }
            @media only screen and (max-width: 767px) {
              main.top .main-visual__col3 dl dt small {
                font-size: 20px;
                font-size: 2rem;
                letter-spacing: -0.6px;
                top: 5px; } }
        main.top .main-visual__col3 dl dd {
          width: calc(100% - 150px); }
          @media only screen and (max-width: 767px) {
            main.top .main-visual__col3 dl dd {
              width: 100%;
              text-align: center;
              margin-top: 10px;
              display: flex;
              align-items: center;
              justify-content: center;
              min-height: 53px; } }
          main.top .main-visual__col3 dl dd .c-title05 {
            display: block;
            margin-bottom: 4px; }
            @media only screen and (max-width: 767px) {
              main.top .main-visual__col3 dl dd .c-title05 {
                margin-bottom: 0;
                line-height: 1.09375; } }
          main.top .main-visual__col3 dl dd .c-text02 {
            color: #fff; }
  main.top .intro {
    padding: 88px 0 120px;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      main.top .intro {
        padding: 64px 0 80px; } }
    main.top .intro .video {
      margin-top: 41px; }
      @media only screen and (max-width: 767px) {
        main.top .intro .video {
          margin-top: 20px; } }
  main.top .energy-action {
    position: relative;
    padding: 109px 0 132px; }
    @media only screen and (max-width: 767px) {
      main.top .energy-action {
        padding: 60px 0 50px; } }
    main.top .energy-action .inner {
      position: relative; }
    main.top .energy-action__bg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      main.top .energy-action__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    main.top .energy-action__head {
      margin-bottom: 56px;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        main.top .energy-action__head {
          margin-bottom: 40px; } }
      main.top .energy-action__head .c-title02 {
        margin-bottom: 32px; }
        @media only screen and (max-width: 767px) {
          main.top .energy-action__head .c-title02 {
            margin-bottom: 16px; } }
      main.top .energy-action__head .c-text01 {
        max-width: 694px;
        margin: 0 auto; }
    main.top .energy-action__list {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        main.top .energy-action__list {
          display: block; } }
      main.top .energy-action__list li {
        width: 30.81998115%;
        background: rgba(255, 255, 255, 0.12);
        border: 1px solid rgba(255, 255, 255, 0.3);
        backdrop-filter: blur(20px) saturate(120%);
        -webkit-backdrop-filter: blur(20px) saturate(120%);
        border-radius: 4px;
        padding: 32px;
        display: flex;
        flex-direction: column;
        justify-content: space-between; }
        @media only screen and (max-width: 767px) {
          main.top .energy-action__list li {
            width: 100%;
            border-radius: 2px;
            padding: 16px;
            margin-bottom: 20px; } }
        @media only screen and (max-width: 767px) {
          main.top .energy-action__list li:last-of-type {
            margin-bottom: 0; } }
        main.top .energy-action__list li i {
          display: block;
          width: 64px;
          margin-bottom: 24px; }
          @media only screen and (max-width: 767px) {
            main.top .energy-action__list li i {
              width: 50px;
              margin-bottom: 12px; } }
        main.top .energy-action__list li .c-title05 {
          margin-bottom: 8px;
          color: #FAFAF9; }
        main.top .energy-action__list li .c-text02 {
          margin-bottom: 16px;
          color: #fff; }
  main.top .solution {
    padding: 180px 0 129px; }
    @media only screen and (max-width: 767px) {
      main.top .solution {
        padding: 60px 0 60px; } }
    main.top .solution__box {
      display: flex;
      justify-content: space-between;
      margin-bottom: 140px; }
      @media only screen and (max-width: 767px) {
        main.top .solution__box {
          flex-direction: column;
          margin-bottom: 60px; } }
      main.top .solution__box:last-of-type {
        margin-bottom: 0; }
      main.top .solution__box .text {
        width: 43.67924528%; }
        @media only screen and (max-width: 767px) {
          main.top .solution__box .text {
            width: 100%;
            order: 2; } }
        main.top .solution__box .text .c-title05 {
          display: block;
          margin-bottom: 16px; }
          @media only screen and (max-width: 767px) {
            main.top .solution__box .text .c-title05 {
              margin-bottom: 8px; } }
        main.top .solution__box .text .c-title02 {
          margin-bottom: 16px; }
          @media only screen and (max-width: 767px) {
            main.top .solution__box .text .c-title02 {
              margin-bottom: 8px; } }
        main.top .solution__box .text .c-text01 {
          color: #68686E; }
        main.top .solution__box .text ul {
          margin-top: 48px; }
          @media only screen and (max-width: 767px) {
            main.top .solution__box .text ul {
              margin-top: 24px; } }
          main.top .solution__box .text ul li {
            margin-bottom: 24px; }
            @media only screen and (max-width: 767px) {
              main.top .solution__box .text ul li {
                margin-bottom: 12px; } }
            main.top .solution__box .text ul li:last-of-type {
              margin-bottom: 0; }
            main.top .solution__box .text ul li .c-title05 {
              margin-bottom: 8px; }
      main.top .solution__box .image {
        width: 51.98113208%;
        overflow: hidden;
        border-radius: 4px; }
        @media only screen and (max-width: 767px) {
          main.top .solution__box .image {
            width: 100%;
            border-radius: 2px;
            margin-bottom: 32px; } }
  main.top .organization-case {
    background: #18181B;
    padding: 77px 0 40px;
    overflow: hidden; }
    @media only screen and (max-width: 767px) {
      main.top .organization-case {
        padding: 30px 0 20px; } }
    main.top .organization-case__box {
      padding: 78px 0 80px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        main.top .organization-case__box {
          padding: 50px 0 60px; } }
      main.top .organization-case__box:first-of-type:after {
        content: "";
        width: calc(100vw - 120px);
        max-width: 1246px;
        height: 1px;
        display: block;
        background: #CBCAC8;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0); }
        @media only screen and (max-width: 767px) {
          main.top .organization-case__box:first-of-type:after {
            width: 100%;
            background: #68686E; } }
      main.top .organization-case__box > .c-btn {
        margin: 52px auto 0; }
        @media only screen and (max-width: 767px) {
          main.top .organization-case__box > .c-btn {
            margin-top: 50px; } }
    main.top .organization-case__head {
      margin-bottom: 56px;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        main.top .organization-case__head {
          margin-bottom: 32px; } }
      main.top .organization-case__head .c-title02 {
        margin-bottom: 32px;
        color: #fff; }
        @media only screen and (max-width: 767px) {
          main.top .organization-case__head .c-title02 {
            margin-bottom: 16px; } }
      main.top .organization-case__head .c-text01 {
        color: #FAFAF9; }
  main.top .platform-excellence {
    padding: 102px 0 137px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      main.top .platform-excellence {
        padding: 80px 0; } }
    main.top .platform-excellence .inner {
      position: relative; }
    main.top .platform-excellence__bg {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      main.top .platform-excellence__bg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    main.top .platform-excellence__box:first-of-type {
      margin-bottom: 130px; }
      @media only screen and (max-width: 767px) {
        main.top .platform-excellence__box:first-of-type {
          margin-bottom: 80px; } }
    main.top .platform-excellence .platform-list {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        main.top .platform-excellence .platform-list {
          display: block; } }
      main.top .platform-excellence .platform-list__box {
        position: relative;
        width: 48.11320755%;
        padding: 36px 32px;
        border-radius: 4px;
        backdrop-filter: blur(15px);
        box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.3); }
        @media only screen and (max-width: 767px) {
          main.top .platform-excellence .platform-list__box {
            width: 100%;
            min-height: 300px;
            padding: 20px 16px;
            margin-bottom: 20px; } }
        @media only screen and (max-width: 767px) {
          main.top .platform-excellence .platform-list__box:last-of-type {
            margin-bottom: 0; } }
        main.top .platform-excellence .platform-list__box .logo {
          width: 261px;
          margin: 0 auto 41px; }
          @media only screen and (max-width: 767px) {
            main.top .platform-excellence .platform-list__box .logo {
              width: 160px;
              margin-bottom: 20px; } }
        main.top .platform-excellence .platform-list__box .text .c-title05 {
          color: #fff;
          margin-bottom: 8px; }
          @media only screen and (max-width: 767px) {
            main.top .platform-excellence .platform-list__box .text .c-title05 {
              margin-bottom: 4px; } }
        main.top .platform-excellence .platform-list__box .text .c-text02 {
          color: #FAFAF9; }
        main.top .platform-excellence .platform-list__box .text ul {
          margin-top: 16px; }
          @media only screen and (max-width: 767px) {
            main.top .platform-excellence .platform-list__box .text ul {
              margin-top: 12px; } }
          main.top .platform-excellence .platform-list__box .text ul li {
            margin-bottom: 8px;
            display: flex;
            align-items: center; }
            @media only screen and (max-width: 767px) {
              main.top .platform-excellence .platform-list__box .text ul li {
                margin-bottom: 4px; } }
            main.top .platform-excellence .platform-list__box .text ul li:last-of-type {
              margin-bottom: 0; }
            main.top .platform-excellence .platform-list__box .text ul li svg {
              display: inline-block;
              margin-right: 8px; }
              @media only screen and (max-width: 767px) {
                main.top .platform-excellence .platform-list__box .text ul li svg {
                  margin-right: 4px; } }
        main.top .platform-excellence .platform-list__box .coming-soon {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          text-align: center;
          width: 100%;
          color: #fff; }
    main.top .platform-excellence__head {
      text-align: center;
      margin-bottom: 48px; }
      @media only screen and (max-width: 767px) {
        main.top .platform-excellence__head {
          margin-bottom: 50px; } }
      main.top .platform-excellence__head .c-title02 {
        color: #fff;
        margin-bottom: 32px; }
        @media only screen and (max-width: 767px) {
          main.top .platform-excellence__head .c-title02 {
            margin-bottom: 16px; } }
      main.top .platform-excellence__head .c-text01 {
        color: #FAFAF9;
        margin: 0 auto; }
    main.top .platform-excellence .excellence-list {
      display: flex; }
      @media only screen and (max-width: 767px) {
        main.top .platform-excellence .excellence-list {
          flex-wrap: wrap;
          justify-content: center; } }
      main.top .platform-excellence .excellence-list li {
        width: 18.20754717%;
        margin-right: 2.24056604%;
        background: #EDEBE9;
        overflow: hidden;
        border-radius: 4px;
        padding-bottom: 16px;
        aspect-ratio: 193/193;
        display: flex;
        align-items: flex-end;
        position: relative; }
        @media only screen and (max-width: 767px) {
          main.top .platform-excellence .excellence-list li {
            width: calc((100% - 10px) / 2);
            margin-right: 10px;
            margin-top: 10px;
            padding-bottom: 6px; } }
        @media only screen and (max-width: 767px) {
          main.top .platform-excellence .excellence-list li:nth-of-type(2n) {
            margin-right: 0; } }
        @media only screen and (max-width: 767px) {
          main.top .platform-excellence .excellence-list li:nth-of-type(-n + 2) {
            margin-top: 0; } }
        @media only screen and (max-width: 767px) {
          main.top .platform-excellence .excellence-list li:last-of-type {
            margin-right: 0px; } }
        main.top .platform-excellence .excellence-list li:nth-of-type(5n) {
          margin-right: 0; }
        main.top .platform-excellence .excellence-list li i {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%; }
        main.top .platform-excellence .excellence-list li .c-text03 {
          text-align: center;
          padding: 0 7px;
          color: #18181B;
          letter-spacing: -0.5px;
          position: relative;
          width: 100%; }
          @media only screen and (max-width: 767px) {
            main.top .platform-excellence .excellence-list li .c-text03 {
              padding: 0 10px;
              letter-spacing: -0.04px;
              min-height: 56px;
              display: flex;
              align-items: center;
              justify-content: center; } }
  main.top .news-blog {
    padding: 41px 0 0; }
    @media only screen and (max-width: 767px) {
      main.top .news-blog {
        padding: 20px 0; } }
    main.top .news-blog__box {
      padding: 81px 0 94px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        main.top .news-blog__box {
          padding: 60px 0; } }
      main.top .news-blog__box:first-of-type:after {
        content: "";
        width: calc(100vw - 120px);
        max-width: 1246px;
        height: 1px;
        display: block;
        background: #CBCAC8;
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 0); }
        @media only screen and (max-width: 767px) {
          main.top .news-blog__box:first-of-type:after {
            width: 100%; } }
      main.top .news-blog__box .c-title02 {
        text-align: center;
        margin-bottom: 64px; }
        @media only screen and (max-width: 767px) {
          main.top .news-blog__box .c-title02 {
            margin-bottom: 32px; } }
      main.top .news-blog__box > .c-btn {
        margin: 52px auto 0; }
        @media only screen and (max-width: 767px) {
          main.top .news-blog__box > .c-btn {
            margin-top: 50px; } }
  main.top .whitepaper {
    background: #18181B;
    padding: 107px 0 110px; }
    @media only screen and (max-width: 767px) {
      main.top .whitepaper {
        padding: 80px 0; } }
    main.top .whitepaper .inner > .c-btn {
      margin: 64px auto 0; }
      @media only screen and (max-width: 767px) {
        main.top .whitepaper .inner > .c-btn {
          margin-top: 50px; } }
    main.top .whitepaper .c-title02 {
      color: #FAFAF9;
      margin-bottom: 65px;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        main.top .whitepaper .c-title02 {
          margin-bottom: 32px; } }
    main.top .whitepaper .c-post-list .c-post .text .c-title03 {
      min-height: 75px;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-line-clamp: 2; }

main.webinar .archive-streaming {
  padding: 100px 0 154px;
  background: #F1F1F1; }
  @media only screen and (max-width: 767px) {
    main.webinar .archive-streaming {
      padding: 60px 0 80px; } }
  main.webinar .archive-streaming .c-title02 {
    text-align: center;
    margin-bottom: 32px; }
    @media only screen and (max-width: 767px) {
      main.webinar .archive-streaming .c-title02 {
        margin-bottom: 32px; } }
  main.webinar .archive-streaming .c-text01 {
    text-align: center; }
  main.webinar .archive-streaming .c-post-list {
    margin-top: 120px; }
    @media only screen and (max-width: 767px) {
      main.webinar .archive-streaming .c-post-list {
        margin-top: 80px; } }
