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

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

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

/**
 * !!! browsersyncのアラートを非表示 !!!
 */
#__bs_notify__ {
  display: none !important; }

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

* {
  font-size: 14px;
  font-size: 1.4rem;
  box-sizing: border-box; }

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

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

input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none; }

textarea {
  resize: vertical; }

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

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

.inner {
  max-width: 1280px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 18px; } }

[data-trigger] {
  position: relative;
  transform: translate(0, 30px);
  opacity: 0;
  transition: transform 1.2s ease, opacity 1.2s ease; }
  [data-trigger].visible {
    transform: translate(0, 0px);
    opacity: 1; }
  [data-trigger].delay01 {
    transition-delay: 0.2s; }
  [data-trigger].delay02 {
    transition-delay: 0.4s; }
  [data-trigger].delay03 {
    transition-delay: 0.6s; }
  [data-trigger].delay04 {
    transition-delay: 0.8s; }

[data-inview] {
  opacity: 0;
  transition: opacity 2.4s ease; }
  [data-inview].is-active {
    opacity: 1; }

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

.footer {
  background: #F2F2ED;
  padding: 48px 0 36px;
  border-top: 1px solid rgba(0, 0, 0, 0.3);
  position: relative; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding: 23px 0 20px; } }
  .footer .inner {
    max-width: 100%; }
    @media only screen and (max-width: 767px) {
      .footer .inner {
        padding: 0 18px; } }
  .footer__logo {
    display: block;
    width: 320px; }
    @media only screen and (max-width: 767px) {
      .footer__logo {
        width: 128px; } }
    .footer__logo img {
      width: 100%; }
  @media only screen and (max-width: 767px) {
    .footer .insta {
      display: block;
      width: 22px;
      height: 22px; }
      .footer .insta svg {
        display: block;
        width: 100%;
        height: 100%; } }
  .footer__menu {
    display: flex;
    justify-content: flex-end; }
    @media only screen and (max-width: 767px) {
      .footer__menu {
        flex-wrap: wrap;
        justify-content: space-between; } }
    .footer__menu ul {
      margin-left: 64px; }
      @media only screen and (max-width: 767px) {
        .footer__menu ul {
          margin-left: 0; } }
      .footer__menu ul:last-of-type {
        margin-left: 58px; }
        @media only screen and (max-width: 767px) {
          .footer__menu ul:last-of-type {
            margin-left: 0;
            margin-top: 12px;
            width: 100%;
            margin-left: -3px; } }
      .footer__menu ul li {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.8;
        margin-bottom: 10px; }
        @media only screen and (max-width: 767px) {
          .footer__menu ul li {
            font-size: 10px;
            font-size: 1rem;
            margin-bottom: 5px; } }
        .footer__menu ul li:last-of-type {
          margin-bottom: 0; }
        .footer__menu ul li svg {
          position: relative;
          top: 1px;
          margin-left: 6px;
          margin-right: 4px;
          display: inline-block; }
          @media only screen and (max-width: 767px) {
            .footer__menu ul li svg {
              width: 8px;
              margin-left: 3px;
              margin-right: 2px;
              top: 2px; } }
        .footer__menu ul li .ml0 {
          margin-left: 0; }
        .footer__menu ul li > ul {
          margin: 3px 0 0 !important; }
          .footer__menu ul li > ul li {
            margin-bottom: 0px;
            padding-left: 16px;
            position: relative;
            margin-left: 0;
            line-height: 1.7; }
            .footer__menu ul li > ul li:before {
              content: "";
              width: 10px;
              height: 1px;
              display: inline-block;
              background: #343434;
              position: absolute;
              top: 10px;
              left: 0; }
  .footer__top {
    padding-bottom: 100px;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        align-items: center;
        padding-bottom: 20px; } }
  .footer__bottom {
    padding-top: 31px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2;
    border-top: 1px solid #CDCDCD; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        padding-top: 20px;
        font-size: 12px;
        font-size: 1.2rem;
        justify-content: center; } }

.header {
  width: 100%;
  height: 80px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999; }
  @media only screen and (max-width: 767px) {
    .header {
      height: 64px; } }
  .header:after {
    content: "";
    width: 100%;
    height: 100%;
    display: block;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity .3s; }
  .header .inner {
    max-width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .header .inner {
        padding: 0 10px 0 18px; } }
  .header.white:after {
    opacity: 0; }
  .header.white .header__logo .black {
    opacity: 0; }
  .header.white .header__logo .white {
    opacity: 1; }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__list li {
      color: #fff; } }
  .header.white .gnav__list li .trigger svg path {
    fill: #fff; }
  @media only screen and (min-width: 768px) {
    .header.white .gnav__list li ul li:before {
      background: #fff; } }
  .header.white .hamburger__inner span {
    background: #fff; }
  .header.is-active:after {
    opacity: 1 !important; }
  .header.is-active .header__logo .black {
    opacity: 1 !important; }
  .header.is-active .header__logo .white {
    opacity: 0 !important; }
  .header.is-active .hamburger__inner span {
    background: #000 !important; }
  .header__logo {
    display: block;
    position: relative;
    width: 200px;
    z-index: +1; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 135px; } }
    .header__logo img {
      transition: opacity .3s; }
    .header__logo .white {
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0; }
  .header .right {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
  .header .gnav {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media only screen and (min-width: 768px) {
      .header .gnav {
        position: relative;
        z-index: +1; } }
    @media only screen and (max-width: 767px) {
      .header .gnav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        overflow-y: scroll;
        background: #BCA84B;
        color: #fff;
        padding-top: 80px;
        padding-left: 18px;
        padding-right: 18px;
        display: block;
        transition: opacity .3s, visibility .3s;
        opacity: 0;
        visibility: hidden; }
        .header .gnav.is-active {
          opacity: 1;
          visibility: visible; } }
    .header .gnav .bottom {
      background: #F2F2ED;
      margin: 0 -18px;
      padding: 32px 27px;
      display: flex;
      justify-content: space-between; }
      .header .gnav .bottom .official {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 2;
        color: #343434; }
        .header .gnav .bottom .official li {
          margin-bottom: 14px; }
          .header .gnav .bottom .official li a {
            display: flex;
            align-items: center; }
            .header .gnav .bottom .official li a svg {
              width: 21px;
              height: auto;
              display: block;
              margin-right: 6px; }
      .header .gnav .bottom .link {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 2;
        color: #343434; }
        .header .gnav .bottom .link li {
          margin-bottom: 16px; }
          .header .gnav .bottom .link li a {
            display: flex;
            align-items: center; }
            .header .gnav .bottom .link li a:after {
              content: "";
              width: 9px;
              height: 9px;
              display: inline-block;
              background: url(../images/common/icon_blank.svg) center center/cover no-repeat;
              margin-left: 7px; }
    .header .gnav__list {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        .header .gnav__list {
          display: block; } }
      @media only screen and (min-width: 768px) {
        .header .gnav__list > li:hover {
          color: #A6A6A6; }
          .header .gnav__list > li:hover ul {
            opacity: 1;
            visibility: visible; }
          .header .gnav__list > li:hover .trigger svg path {
            fill: #A6A6A6; } }
      .header .gnav__list li {
        margin-left: 32px;
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        font-weight: 600;
        font-family: "century-gothic", sans-serif; }
        @media only screen and (min-width: 768px) {
          .header .gnav__list li {
            transition: color .3s, filter .3s;
            position: relative; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li {
            margin-left: 0;
            border-bottom: 1px solid #fff; }
            .header .gnav__list li:last-of-type {
              border-bottom: none; } }
        .header .gnav__list li .trigger svg {
          position: relative;
          top: -2px;
          margin-left: 3px; }
          .header .gnav__list li .trigger svg path {
            transition: fill .3s; }
        @media only screen and (min-width: 768px) {
          .header .gnav__list li ul {
            position: absolute;
            top: 18px;
            left: 0;
            white-space: nowrap;
            opacity: 0;
            visibility: hidden;
            transition: opacity .3s, visibility .3s;
            padding-top: 15px; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li ul {
            display: none;
            background: rgba(212, 212, 212, 0.2); } }
        @media only screen and (min-width: 768px) {
          .header .gnav__list li ul li {
            margin-left: 0;
            padding-left: 16px;
            position: relative;
            margin-bottom: 5px;
            color: #343434; }
            .header .gnav__list li ul li:before {
              content: "";
              width: 10px;
              height: 1px;
              display: block;
              background: #343434;
              position: absolute;
              top: 6px;
              left: 0;
              transition: background-color .3s; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li ul li:last-of-type {
            border-bottom: none; } }
        @media only screen and (min-width: 768px) {
          .header .gnav__list li ul li a {
            display: inline-block;
            padding-bottom: 5px;
            position: relative; }
            .header .gnav__list li ul li a:hover:after {
              opacity: 1; }
            .header .gnav__list li ul li a:after {
              content: "";
              width: 100%;
              height: 1px;
              display: block;
              background: #BCA84B;
              position: absolute;
              left: 0;
              bottom: 0;
              opacity: 0;
              transition: opacity .3s; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li ul li a {
            padding-left: 27px; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a:after {
            content: "";
            width: 10px;
            height: 21px;
            display: block;
            background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
            position: absolute;
            top: 50%;
            right: 17px;
            transform: translate(0%, -50%); } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a, .header .gnav__list li .trigger {
            padding: 12px 17px 12px 13px;
            display: block;
            position: relative;
            cursor: pointer;
            transition: background-color .3s, color .3s; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a.active, .header .gnav__list li .trigger.active {
            background: #fff;
            color: #BCA84B; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a.active i:before, .header .gnav__list li .trigger.active i:before {
            background: #BCA84B; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a.active i:after, .header .gnav__list li .trigger.active i:after {
            opacity: 0; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a i, .header .gnav__list li .trigger i {
            width: 22px;
            height: 22px;
            display: block;
            position: absolute;
            top: 50%;
            right: 13px;
            transform: translate(0%, -50%); } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a i:before, .header .gnav__list li .trigger i:before {
            content: "";
            width: 100%;
            height: 1px;
            display: block;
            background: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%); } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a i:after, .header .gnav__list li .trigger i:after {
            content: "";
            width: 1px;
            height: 100%;
            display: block;
            background: #fff;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            transition: opacity .3s; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a .en, .header .gnav__list li .trigger .en {
            font-size: 30px;
            font-size: 3rem;
            font-weight: 400;
            letter-spacing: 0;
            font-family: "century-gothic", sans-serif;
            display: block;
            margin-bottom: 3px; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li a .jp, .header .gnav__list li .trigger .jp {
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.8;
            font-weight: 500; } }
  .header .btn-contact {
    width: 150px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    background: #BCA84B;
    color: #fff;
    border: 1px solid #BCA84B;
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-weight: 600;
    margin-left: 32px;
    position: relative;
    z-index: +1;
    transition: color .3s, background-color .3s; }
    .header .btn-contact:hover {
      background: #fff;
      color: #BCA84B; }
  .header .btn-cart {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #BCA84B;
    border: 1px solid #BCA84B;
    padding-right: 2px;
    margin-left: 28px;
    transition: color .3s, background-color .3s; }
    .header .btn-cart:hover {
      background: #fff; }
      .header .btn-cart:hover svg path {
        stroke: #BCA84B; }
    @media only screen and (min-width: 768px) {
      .header .btn-cart {
        position: relative;
        z-index: +1; } }
    @media only screen and (max-width: 767px) {
      .header .btn-cart {
        width: 23px;
        height: 23px;
        margin: 0;
        position: fixed;
        top: 21px;
        right: 56px;
        z-index: +1; } }
    .header .btn-cart svg {
      display: block; }
      @media only screen and (max-width: 767px) {
        .header .btn-cart svg {
          width: 12px; } }
      .header .btn-cart svg path {
        transition: stroke .3s; }

.hamburger {
  padding: 10px;
  position: relative;
  z-index: +1;
  cursor: pointer; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
    top: 7px;
    transform: rotate(135deg); }
  .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
    opacity: 0; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
    bottom: 7px;
    transform: rotate(-135deg); }
  .hamburger__inner {
    width: 20px;
    height: 15px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center; }
    .hamburger__inner span {
      width: 20px;
      height: 1px;
      display: block;
      background: #343434;
      transition: opacity .3s, top .3s, bottom .3s, transform .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-size: 42px;
  font-size: 4.2rem;
  letter-spacing: 0.05em;
  line-height: 1.7; }
  @media only screen and (max-width: 767px) {
    .c-title01 {
      font-size: 24px;
      font-size: 2.4rem; } }

.c-title02 {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    .c-title02 {
      font-size: 18px;
      font-size: 1.8rem; } }

.c-title03 {
  font-size: 20px;
  font-size: 2rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    .c-title03 {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.7; } }

.c-title04 {
  font-size: 18px;
  font-size: 1.8rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    .c-title04 {
      font-size: 14px;
      font-size: 1.4rem; } }

.c-en01 {
  font-size: 72px;
  font-size: 7.2rem;
  font-family: "century-gothic", sans-serif;
  color: #BCA84B; }
  @media only screen and (max-width: 767px) {
    .c-en01 {
      font-size: 36px;
      font-size: 3.6rem; } }

.c-en02 {
  font-size: 48px;
  font-size: 4.8rem;
  font-family: "century-gothic", sans-serif;
  color: #BCA84B; }
  @media only screen and (max-width: 767px) {
    .c-en02 {
      font-size: 30px;
      font-size: 3rem; } }

.c-en03 {
  font-size: 32px;
  font-size: 3.2rem;
  font-family: "century-gothic", sans-serif;
  color: #BCA84B; }

.c-text01 {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    .c-text01 {
      font-size: 12px;
      font-size: 1.2rem; } }

.c-catch {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.41666667;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    .c-catch {
      font-size: 10px;
      font-size: 1rem;
      line-height: 1.8; } }

.c-more {
  font-size: 12px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
  line-height: 1.41666667;
  font-weight: 500; }

.c-btn {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3px 24px;
  border: 1px solid #343434;
  border-radius: 100px;
  width: max-content;
  transition: color .3s, background-color .3s; }
  .c-btn:hover {
    background: #343434;
    color: #fff; }
  @media only screen and (max-width: 767px) {
    .c-btn {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 1.45833333;
      padding: 6px 18px;
      border-radius: 120px; } }

.c-title-area {
  padding: 32px 0;
  padding-right: 30px; }
  @media only screen and (max-width: 767px) {
    .c-title-area {
      padding: 30px 0;
      text-align: center; } }
  .c-title-area .inner {
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .c-title-area .inner {
        justify-content: center; } }
  .c-title-area .c-btn {
    white-space: nowrap; }

.c-news-list {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #A6A6A6; }
  .c-news-list li {
    width: 25%;
    border-right: 1px solid #A6A6A6;
    border-bottom: 1px solid #A6A6A6;
    position: relative; }
    @media only screen and (max-width: 767px) {
      .c-news-list li {
        width: 50%; } }
    @media only screen and (max-width: 767px) {
      .c-news-list li:nth-of-type(2n) {
        border-right: none; } }
    @media only screen and (min-width: 768px) {
      .c-news-list li:nth-of-type(4n) {
        border-right: none; } }
    .c-news-list li .pickup {
      width: 72px;
      height: 25px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: #BCA84B;
      color: #fff;
      position: absolute;
      top: 0;
      right: 0;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.05em;
      font-weight: 700;
      font-family: "century-gothic", sans-serif; }
    .c-news-list li a {
      padding: 25px;
      display: flex;
      flex-direction: column;
      height: 100%; }
      @media only screen and (max-width: 767px) {
        .c-news-list li a {
          padding: 15px; } }
      .c-news-list li a:hover .image img {
        transform: scale(1.05); }
    .c-news-list li .image {
      aspect-ratio: 291/291;
      overflow: hidden; }
      .c-news-list li .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transition: transform .3s; }
    .c-news-list li .text {
      margin-top: 29px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      flex-grow: 1; }
      @media only screen and (max-width: 767px) {
        .c-news-list li .text {
          margin-top: 15px; } }
      .c-news-list li .text .c-catch {
        display: block;
        margin-bottom: 10px; }
        @media only screen and (max-width: 767px) {
          .c-news-list li .text .c-catch {
            margin-bottom: 9px; } }
      .c-news-list li .text .cate {
        display: flex;
        justify-content: flex-end;
        flex-wrap: wrap; }
        .c-news-list li .text .cate span {
          display: inline-block;
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.05em;
          line-height: 1.41666667;
          font-weight: 600;
          padding: 1px 9px 2px;
          border: 1px solid #BCA84B;
          color: #BCA84B;
          margin-left: 10px;
          margin-top: 10px; }
          @media only screen and (max-width: 767px) {
            .c-news-list li .text .cate span {
              font-size: 10px;
              font-size: 1rem;
              padding: 1px 5px 1px;
              margin-top: 9px; } }

@media only screen and (max-width: 767px) {
  .c-breadcrumb {
    max-width: 192px; } }

.c-breadcrumb ul {
  display: flex;
  align-items: center;
  justify-content: flex-end; }
  .c-breadcrumb ul li {
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.05em;
    line-height: 1.41666667;
    font-weight: 600;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      .c-breadcrumb ul li {
        font-size: 10px;
        font-size: 1rem; } }
    .c-breadcrumb ul li:last-of-type {
      display: block;
      overflow: hidden;
      text-overflow: ellipsis; }
      .c-breadcrumb ul li:last-of-type:after {
        content: none; }
    .c-breadcrumb ul li:after {
      content: "";
      width: 4px;
      height: 7px;
      display: inline-block;
      background: url(../images/common/arrow_breadcrumb.svg) center center/cover no-repeat;
      margin: 0 10px 0 7px;
      position: relative;
      top: -1px; }
      @media only screen and (max-width: 767px) {
        .c-breadcrumb ul li:after {
          margin: 0 8px 0 5px;
          top: 0px; } }
    .c-breadcrumb ul li span {
      color: #909090; }

.c-cate-area {
  padding: 20px 0; }
  @media only screen and (max-width: 767px) {
    .c-cate-area {
      padding: 9px 0; } }
  .c-cate-area dl {
    padding: 0 8px 0 24px;
    display: flex;
    align-items: center;
    justify-content: center; }
    @media only screen and (max-width: 767px) {
      .c-cate-area dl {
        padding: 0;
        align-items: stretch; } }
    .c-cate-area dl dt {
      font-size: 16px;
      font-size: 1.6rem;
      letter-spacing: 0.05em;
      line-height: 1.75;
      font-weight: 600;
      padding-right: 24px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .c-cate-area dl dt {
          font-size: 12px;
          font-size: 1.2rem;
          padding-right: 18px;
          white-space: nowrap;
          padding-top: 6px; } }
      .c-cate-area dl dt:after {
        content: "";
        width: 1px;
        height: calc(100% - 8px);
        display: block;
        background: #CBCBCB;
        position: absolute;
        top: 4px;
        right: 0; }
    .c-cate-area dl dd {
      padding-left: 24px; }
      @media only screen and (max-width: 767px) {
        .c-cate-area dl dd {
          padding-left: 18px; } }

.c-cate-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap; }
  @media only screen and (max-width: 767px) {
    .c-cate-list {
      padding-top: 6px; } }
  .c-cate-list li {
    position: relative;
    margin-right: 24px; }
    @media only screen and (max-width: 767px) {
      .c-cate-list li {
        margin-right: 12px;
        margin-bottom: 6px; } }
    .c-cate-list li input {
      position: absolute;
      top: 0;
      left: 0; }
      .c-cate-list li input:checked + label > i:before {
        opacity: 1; }
    .c-cate-list li label {
      display: flex;
      align-items: center; }
      .c-cate-list li label i {
        width: 20px;
        height: 20px;
        background: #F2F2F2;
        border: 1px solid #CBCBCB;
        margin-right: 8px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .c-cate-list li label i {
            width: 16px;
            height: 16px;
            margin-right: 6px; } }
        .c-cate-list li label i:before {
          content: "";
          width: 20px;
          height: 20px;
          display: block;
          background: #BCA84B;
          position: absolute;
          top: -1px;
          left: -1px;
          opacity: 0; }
          @media only screen and (max-width: 767px) {
            .c-cate-list li label i:before {
              width: 16px;
              height: 16px; } }
      .c-cate-list li label span {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.75;
        font-weight: 600; }
        @media only screen and (max-width: 767px) {
          .c-cate-list li label span {
            font-size: 12px;
            font-size: 1.2rem; } }

.c-page-nav {
  padding: 44px 0 60px; }
  @media only screen and (max-width: 767px) {
    .c-page-nav {
      padding: 23px 0 24px; } }

.wp-pagenavi {
  display: flex;
  justify-content: center;
  align-items: center; }
  .wp-pagenavi span, .wp-pagenavi a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 600;
    font-family: "century-gothic", sans-serif;
    color: #CBCBCB;
    margin: 0 8px; }
  .wp-pagenavi .current {
    color: #BCA84B; }
  .wp-pagenavi .previouspostslink {
    width: 7px;
    height: 15px;
    position: relative;
    margin-right: 17px; }
    .wp-pagenavi .previouspostslink .prev:before {
      content: "";
      width: 7px;
      height: 15px;
      display: inline-block;
      background: url(../images/common/arrow_left_gray.svg) center center/cover no-repeat;
      position: absolute;
      top: 1px;
      left: 0; }
  .wp-pagenavi .nextpostslink {
    width: 7px;
    height: 15px;
    position: relative;
    margin-left: 17px; }
    .wp-pagenavi .nextpostslink .next:before {
      content: "";
      width: 7px;
      height: 15px;
      display: inline-block;
      background: url(../images/common/arrow_right_gold.svg) center center/cover no-repeat;
      position: absolute;
      top: 1px;
      left: 0; }

.c-image-slider {
  height: 100%; }
  .c-image-slider .swiper {
    width: 100%;
    height: 100%; }
    .c-image-slider .swiper .swiper-wrapper .swiper-slide {
      width: 100%;
      height: 100%; }
      .c-image-slider .swiper .swiper-wrapper .swiper-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
  .c-image-slider .swiper-pagination {
    position: absolute;
    left: auto;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: max-content;
    align-items: flex-end;
    opacity: 0.8; }
    @media only screen and (max-width: 767px) {
      .c-image-slider .swiper-pagination {
        right: 18px;
        bottom: 18px; } }
    .c-image-slider .swiper-pagination .swiper-pagination-bullet {
      opacity: 0.5;
      background: #fff;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      margin: 0 0 0 9px; }
      @media only screen and (max-width: 767px) {
        .c-image-slider .swiper-pagination .swiper-pagination-bullet {
          width: 10px;
          height: 10px;
          margin-left: 5px; } }
    .c-image-slider .swiper-pagination .swiper-pagination-bullet-active {
      opacity: 1; }

@media only screen and (max-width: 767px) {
  .c-infinite-slider {
    padding: 0 16px; } }

.c-infinite-slider .swiper .swiper-wrapper {
  transition-timing-function: linear !important; }
  @media only screen and (max-width: 767px) {
    .c-infinite-slider .swiper .swiper-wrapper {
      display: flex;
      flex-wrap: wrap;
      gap: 4.38596492%; } }

.c-infinite-slider .swiper .swiper-slide {
  width: 327px; }
  @media only screen and (max-width: 767px) {
    .c-infinite-slider .swiper .swiper-slide {
      width: 47.80701754%;
      margin-top: 4.38596492%; }
      .c-infinite-slider .swiper .swiper-slide:nth-of-type(-n + 2) {
        margin-top: 0; } }

.c-col {
  display: flex;
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    .c-col {
      flex-direction: column; } }
  .c-col .image {
    width: 61.85944363%;
    aspect-ratio: 845/521; }
    @media only screen and (max-width: 767px) {
      .c-col .image {
        width: 100%; } }
    .c-col .image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  .c-col .text {
    width: 38.14055637%;
    padding: 6.5885798vw;
    display: flex;
    justify-content: center;
    flex-direction: column; }
    @media only screen and (max-width: 767px) {
      .c-col .text {
        width: 100%;
        padding: 45px 30px;
        order: 2; } }
    .c-col .text .c-en02 {
      font-size: 3.51390922vw;
      margin-bottom: 3.36749634vw; }
      @media only screen and (max-width: 767px) {
        .c-col .text .c-en02 {
          font-size: 30px;
          font-size: 3rem;
          margin-bottom: 18px; } }
    .c-col .text p {
      font-size: 1.02489019vw;
      line-height: 2;
      letter-spacing: 0.05em;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        .c-col .text p {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.8; } }
    .c-col .text .c-btn {
      margin-top: 3.36749634vw; }
      @media only screen and (max-width: 767px) {
        .c-col .text .c-btn {
          margin-top: 32px; } }

.c-col2 {
  display: flex; }
  @media only screen and (max-width: 767px) {
    .c-col2 {
      flex-direction: column; } }
  .c-col2 .text {
    width: 50%;
    padding: 11.6398243vw 6.5885798vw;
    display: flex;
    justify-content: center;
    flex-direction: column; }
    @media only screen and (max-width: 767px) {
      .c-col2 .text {
        width: 100%;
        order: 2;
        padding: 45px 30px 60px; } }
    .c-col2 .text.beige {
      background: #F2F2ED; }
    .c-col2 .text .c-en02 {
      font-size: 3.51390922vw;
      margin-bottom: 4.6852123vw; }
      @media only screen and (max-width: 767px) {
        .c-col2 .text .c-en02 {
          font-size: 30px;
          font-size: 3rem;
          margin-bottom: 30px; } }
    .c-col2 .text .c-title03 {
      font-size: 1.46412884vw; }
    .c-col2 .text .c-title04 {
      font-size: 1.31771596vw; }
      @media only screen and (max-width: 767px) {
        .c-col2 .text .c-title04 {
          font-size: 14px;
          font-size: 1.4rem; } }
    .c-col2 .text .c-btn {
      margin-top: 4.6852123vw; }
      @media only screen and (max-width: 767px) {
        .c-col2 .text .c-btn {
          margin-top: 32px; } }
  .c-col2 .image {
    width: 50%;
    aspect-ratio: 684/683; }
    @media only screen and (max-width: 767px) {
      .c-col2 .image {
        width: 100%; } }
    .c-col2 .image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }

.c-head {
  padding: 60px 0 29px;
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    .c-head {
      padding: 12px 0; } }
  .c-head .inner {
    max-width: 1266px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between; }

.c-form {
  background: #F9F9F9;
  padding: 57px 78px 78px; }
  @media only screen and (max-width: 767px) {
    .c-form {
      padding: 30px 20px 75px; } }
  .c-form table {
    width: 100%; }
    @media only screen and (max-width: 767px) {
      .c-form table {
        display: block; } }
    @media only screen and (max-width: 767px) {
      .c-form table tbody {
        display: block; } }
    .c-form table tbody tr {
      border-bottom: 1px solid #EBEBE8; }
      @media only screen and (max-width: 767px) {
        .c-form table tbody tr {
          display: block;
          padding: 21px 0; } }
      @media only screen and (max-width: 767px) {
        .c-form table tbody tr:first-of-type {
          padding-top: 0; } }
      .c-form table tbody tr th {
        width: 255px;
        vertical-align: top;
        padding: 29px 0; }
        @media only screen and (max-width: 767px) {
          .c-form table tbody tr th {
            display: block;
            width: 100%;
            padding: 0;
            margin-bottom: 12px; } }
        .c-form table tbody tr th span {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.8;
          font-weight: 500; }
        .c-form table tbody tr th em {
          display: inline-block;
          padding: 0 7px 2px;
          border-radius: 2px;
          margin-left: 4px;
          background: #BCA84B;
          color: #fff;
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.05em;
          line-height: 1.41666667;
          font-weight: 500; }
      .c-form table tbody tr td {
        width: calc(100% - 255px);
        padding: 21px 0;
        position: relative; }
        @media only screen and (max-width: 767px) {
          .c-form table tbody tr td {
            display: block;
            width: 100%;
            padding: 0; } }
        .c-form table tbody tr td .select-box {
          position: relative; }
          .c-form table tbody tr td .select-box select {
            width: 100%;
            height: 40px;
            border-radius: 2px;
            border: 1px solid #D9D9D9;
            background: #F2F2F2;
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.05em;
            line-height: 1.8;
            padding: 7px 8px; }
            .c-form table tbody tr td .select-box select::placeholder {
              color: #B3B3B3; }
          .c-form table tbody tr td .select-box svg {
            position: absolute;
            top: 16px;
            right: 8px;
            pointer-events: none; }
        .c-form table tbody tr td input[type="text"] {
          width: 100%;
          height: 40px;
          border-radius: 2px;
          border: 1px solid #D9D9D9;
          background: #F2F2F2;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.8;
          padding: 7px 8px; }
          .c-form table tbody tr td input[type="text"]::placeholder {
            color: #B3B3B3; }
        .c-form table tbody tr td textarea {
          width: 100%;
          height: 235px;
          border-radius: 2px;
          border: 1px solid #D9D9D9;
          background: #F2F2F2;
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.05em;
          line-height: 1.8;
          padding: 7px 8px;
          resize: none; }
          @media only screen and (max-width: 767px) {
            .c-form table tbody tr td textarea {
              height: 164px; } }
          .c-form table tbody tr td textarea::placeholder {
            color: #B3B3B3; }
        .c-form table tbody tr td input[type="file"] {
          cursor: pointer; }
          .c-form table tbody tr td input[type="file"]::file-selector-button {
            width: 122px;
            height: 28px;
            position: relative;
            background: #F2F2F2;
            border: 1px solid #D9D9D9;
            border-radius: 2px;
            margin-right: 12px; }
  .c-form .privacy {
    text-align: center;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 2.2;
    font-weight: 500;
    margin-top: 32px;
    margin-bottom: 64px; }
    @media only screen and (max-width: 767px) {
      .c-form .privacy {
        margin-bottom: 32px; } }
    .c-form .privacy a {
      text-decoration: underline; }
  .c-form .btn {
    width: 326px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 100px;
    border: 1px solid #343434;
    color: #343434;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-weight: 500;
    margin: 32px auto 0;
    transition: color .3s, background-color .3s; }
    @media only screen and (max-width: 767px) {
      .c-form .btn {
        width: 132px;
        height: 31px;
        border-radius: 120px;
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 32px; } }
    .c-form .btn:hover {
      background: #343434;
      color: #fff; }

.c-thanks {
  text-align: center; }

/* 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; }

body.about .main-visual__image {
  width: 100%;
  height: 520px; }
  @media only screen and (max-width: 767px) {
    body.about .main-visual__image {
      height: 260px; } }
  body.about .main-visual__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }

body.about .intro {
  background: #F2F2ED;
  text-align: center;
  padding: 90px 0 120px; }
  @media only screen and (max-width: 767px) {
    body.about .intro {
      padding: 40px 0 62px; } }
  body.about .intro .en {
    display: block;
    font-size: 90px;
    font-size: 9rem;
    line-height: 1.8;
    font-family: "century-gothic", sans-serif;
    margin-bottom: 4px; }
    @media only screen and (max-width: 767px) {
      body.about .intro .en {
        font-size: 35px;
        font-size: 3.5rem;
        margin-bottom: 30px;
        line-height: 1.5; } }
    body.about .intro .en span {
      letter-spacing: 0.06em; }
  body.about .intro .jp {
    font-size: 32px;
    font-size: 3.2rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    display: block;
    margin-bottom: 64px; }
    @media only screen and (max-width: 767px) {
      body.about .intro .jp {
        font-size: 24px;
        font-size: 2.4rem;
        margin-bottom: 25px; } }
  @media only screen and (max-width: 767px) {
    body.about .intro .c-title03 {
      font-size: 13px;
      font-size: 1.3rem;
      letter-spacing: 0.05em;
      line-height: 1.8; } }

body.about .c-col .text .c-en03 {
  font-size: 2.34260615vw;
  margin-bottom: 2.34260615vw; }
  @media only screen and (max-width: 767px) {
    body.about .c-col .text .c-en03 {
      font-size: 24px;
      font-size: 2.4rem;
      margin-bottom: 18px; } }

body.about .c-col .text .c-title03 {
  font-size: 1.46412884vw;
  margin-bottom: 2.34260615vw; }
  @media only screen and (max-width: 767px) {
    body.about .c-col .text .c-title03 {
      font-size: 16px;
      font-size: 1.6rem;
      margin-bottom: 18px; } }

body.about .c-col .text strong {
  display: block;
  font-size: 1.61054173vw;
  letter-spacing: 0.05em;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 1.09809663vw; }
  @media only screen and (max-width: 767px) {
    body.about .c-col .text strong {
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.7;
      margin-bottom: 16px; } }
  body.about .c-col .text strong:last-of-type {
    margin-bottom: 0; }

body.about .message .c-title-area {
  border-bottom: 1px solid #A6A6A6; }

body.about .message .c-col2 .text .c-en03 {
  margin-bottom: 32px; }
  @media only screen and (max-width: 767px) {
    body.about .message .c-col2 .text .c-en03 {
      font-size: 21px;
      font-size: 2.1rem;
      margin-bottom: 30px; } }

body.about .message .c-col2 .text .c-title02 {
  margin-bottom: 17px; }
  @media only screen and (max-width: 767px) {
    body.about .message .c-col2 .text .c-title02 {
      font-size: 16px;
      font-size: 1.6rem;
      margin-bottom: 16px; } }

body.about .message .c-col2 .text p {
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.03em;
  line-height: 1.8;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    body.about .message .c-col2 .text p {
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.05em; } }

body.about .message .c-col2 .text span {
  display: block;
  margin-top: 32px;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 2.25;
  font-weight: 600; }
  @media only screen and (max-width: 767px) {
    body.about .message .c-col2 .text span {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 1.8;
      text-align: right;
      margin-top: 30px; } }

body.casestudy .cont .inner {
  max-width: 1126px; }

body.casestudy .cont__box {
  padding: 80px 0;
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    body.casestudy .cont__box {
      padding: 60px 12px; } }
  body.casestudy .cont__box .text {
    display: flex;
    justify-content: space-between;
    margin-bottom: 64px; }
    @media only screen and (max-width: 767px) {
      body.casestudy .cont__box .text {
        display: block;
        margin-bottom: 45px; } }
    body.casestudy .cont__box .text .description {
      width: 68.35564054%; }
      @media only screen and (max-width: 767px) {
        body.casestudy .cont__box .text .description {
          width: 100%; } }
      body.casestudy .cont__box .text .description .c-title02 {
        margin-bottom: 49px; }
        @media only screen and (max-width: 767px) {
          body.casestudy .cont__box .text .description .c-title02 {
            margin-bottom: 32px; } }
      body.casestudy .cont__box .text .description dl {
        margin-bottom: 32px; }
        @media only screen and (max-width: 767px) {
          body.casestudy .cont__box .text .description dl {
            margin-bottom: 24px; } }
        body.casestudy .cont__box .text .description dl:last-of-type {
          margin-bottom: 0; }
        body.casestudy .cont__box .text .description dl dt {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 2;
          font-weight: 600;
          margin-bottom: 5px; }
          @media only screen and (max-width: 767px) {
            body.casestudy .cont__box .text .description dl dt {
              line-height: 1.8;
              margin-bottom: 12px; } }
    body.casestudy .cont__box .text .info {
      width: 22.3709369%; }
      @media only screen and (max-width: 767px) {
        body.casestudy .cont__box .text .info {
          width: 100%;
          margin-top: 45px; } }
      body.casestudy .cont__box .text .info .logo {
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.casestudy .cont__box .text .info .logo {
            order: 2;
            width: 112px; } }
      body.casestudy .cont__box .text .info dl {
        margin-bottom: 12px; }
        @media only screen and (max-width: 767px) {
          body.casestudy .cont__box .text .info dl {
            margin-bottom: 18px; } }
        body.casestudy .cont__box .text .info dl:last-of-type {
          margin-bottom: 0; }
        body.casestudy .cont__box .text .info dl dt {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 2;
          font-weight: 600; }
          @media only screen and (max-width: 767px) {
            body.casestudy .cont__box .text .info dl dt {
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.8;
              letter-spacing: 0.05em; } }
        body.casestudy .cont__box .text .info dl dd {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 2; }
          @media only screen and (max-width: 767px) {
            body.casestudy .cont__box .text .info dl dd {
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.8;
              letter-spacing: 0.05em; } }
  body.casestudy .cont__box .image .image-slider__nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 22px; }
    @media only screen and (max-width: 767px) {
      body.casestudy .cont__box .image .image-slider__nav {
        margin-top: 20px; } }
  body.casestudy .cont__box .image .swiper-pagination {
    position: absolute;
    left: auto;
    right: 30px;
    bottom: 30px;
    display: flex;
    width: max-content;
    align-items: flex-end;
    opacity: 0.8; }
    @media only screen and (max-width: 767px) {
      body.casestudy .cont__box .image .swiper-pagination {
        right: 18px;
        bottom: 18px; } }
    body.casestudy .cont__box .image .swiper-pagination .swiper-pagination-bullet {
      opacity: 0.5;
      background: #fff;
      width: 16px;
      height: 16px;
      border-radius: 50%;
      margin: 0 0 0 9px; }
      @media only screen and (max-width: 767px) {
        body.casestudy .cont__box .image .swiper-pagination .swiper-pagination-bullet {
          width: 10px;
          height: 10px;
          margin-left: 5px; } }
    body.casestudy .cont__box .image .swiper-pagination .swiper-pagination-bullet-active {
      opacity: 1; }
  body.casestudy .cont__box .image .swiper-button-prev, body.casestudy .cont__box .image .swiper-button-next {
    position: static;
    display: flex;
    align-items: center;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 600;
    font-family: "century-gothic", sans-serif;
    color: #BCA84B;
    width: 72px;
    height: 28px;
    margin: 0;
    transition: color .3s; }
    @media only screen and (max-width: 767px) {
      body.casestudy .cont__box .image .swiper-button-prev, body.casestudy .cont__box .image .swiper-button-next {
        width: 60px; } }
    body.casestudy .cont__box .image .swiper-button-prev:after, body.casestudy .cont__box .image .swiper-button-next:after {
      content: none; }
    body.casestudy .cont__box .image .swiper-button-prev svg, body.casestudy .cont__box .image .swiper-button-next svg {
      display: block;
      width: 9px;
      height: 18px;
      position: relative;
      top: 1px; }
      body.casestudy .cont__box .image .swiper-button-prev svg path, body.casestudy .cont__box .image .swiper-button-next svg path {
        stroke: #BCA84B;
        transition: stroke .3s; }
  body.casestudy .cont__box .image .swiper-button-prev svg {
    margin-right: 25px; }
    @media only screen and (max-width: 767px) {
      body.casestudy .cont__box .image .swiper-button-prev svg {
        margin-right: 10px; } }
  body.casestudy .cont__box .image .swiper-button-next svg {
    margin-left: 25px; }
    @media only screen and (max-width: 767px) {
      body.casestudy .cont__box .image .swiper-button-next svg {
        margin-left: 10px; } }
  body.casestudy .cont__box .image .swiper-button-disabled {
    opacity: 1;
    color: #CBCBCB; }
    body.casestudy .cont__box .image .swiper-button-disabled svg path {
      stroke: #CBCBCB; }

body.casestudy .cont__nav {
  padding: 70px 0; }
  @media only screen and (max-width: 767px) {
    body.casestudy .cont__nav {
      padding: 25px 0; } }

body.company .main-visual__image {
  width: 100%;
  height: 520px; }
  @media only screen and (max-width: 767px) {
    body.company .main-visual__image {
      height: 260px; } }
  body.company .main-visual__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }

body.company .profile {
  border-bottom: 1px solid #A6A6A6; }
  body.company .profile .c-title-area {
    border-bottom: 1px solid #A6A6A6; }
  body.company .profile__cont {
    padding: 64px 0 64px; }
    @media only screen and (max-width: 767px) {
      body.company .profile__cont {
        padding: 45px 0; } }
  body.company .profile__table table {
    width: 100%; }
    body.company .profile__table table tbody tr:first-of-type th {
      padding-top: 0; }
    body.company .profile__table table tbody tr:first-of-type td {
      padding-top: 0; }
    body.company .profile__table table tbody tr:last-of-type th {
      padding-bottom: 0; }
    body.company .profile__table table tbody tr:last-of-type td {
      padding-bottom: 0; }
    body.company .profile__table table tbody tr th {
      width: 119px;
      padding: 12px 0;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.8;
      font-weight: 500;
      vertical-align: top; }
      @media only screen and (max-width: 767px) {
        body.company .profile__table table tbody tr th {
          width: 73px;
          padding: 8px 0;
          font-size: 12px;
          font-size: 1.2rem; } }
    body.company .profile__table table tbody tr td {
      width: calc(100% - 119px);
      padding: 12px 0;
      padding-left: 86px;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.8;
      font-weight: 500;
      border-left: 1px solid #A6A6A6; }
      @media only screen and (max-width: 767px) {
        body.company .profile__table table tbody tr td {
          width: calc(100% - 73px);
          font-size: 12px;
          font-size: 1.2rem;
          padding: 8px 0;
          padding-left: 30px; } }
      body.company .profile__table table tbody tr td a {
        color: #BCA84B;
        margin-left: 24px; }
        @media only screen and (max-width: 767px) {
          body.company .profile__table table tbody tr td a {
            margin-left: 0; } }
        body.company .profile__table table tbody tr td a svg {
          margin-left: 4px;
          position: relative;
          top: 2px; }
  body.company .profile__image {
    margin-top: 64px; }

body.company .member .c-title-area {
  border-bottom: 1px solid #A6A6A6; }

body.company .member__list {
  display: flex;
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    body.company .member__list {
      flex-direction: column; } }
  body.company .member__list li {
    width: 33.33333%;
    padding: 30px 30px 33px;
    border-right: 1px solid #A6A6A6; }
    @media only screen and (max-width: 767px) {
      body.company .member__list li {
        width: 100%;
        padding: 30px;
        border-right: none;
        border-bottom: 1px solid #A6A6A6; } }
    @media only screen and (max-width: 767px) {
      body.company .member__list li:last-of-type {
        border-bottom: none; } }
    body.company .member__list li:nth-of-type(3n) {
      border-right: none; }
    body.company .member__list li .image {
      aspect-ratio: 395/395; }
      body.company .member__list li .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    body.company .member__list li .text {
      margin-top: 24px; }
      @media only screen and (max-width: 767px) {
        body.company .member__list li .text {
          margin-top: 18px; } }
      body.company .member__list li .text .name {
        padding-bottom: 16px;
        border-bottom: 1px solid #BCA84B; }
        @media only screen and (max-width: 767px) {
          body.company .member__list li .text .name {
            padding-bottom: 12px; } }
        body.company .member__list li .text .name .c-title03 {
          margin-right: 24px; }
          @media only screen and (max-width: 767px) {
            body.company .member__list li .text .name .c-title03 {
              margin-right: 16px; } }
      body.company .member__list li .text p {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 1px;
        line-height: 1.7;
        margin-top: 16px; }
        @media only screen and (max-width: 767px) {
          body.company .member__list li .text p {
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            line-height: 1.8;
            margin-top: 12px; } }

body.company .history {
  background: #F2F2ED; }
  body.company .history .c-title-area {
    border-bottom: 1px solid #A6A6A6; }
  body.company .history__cont {
    padding: 80px 0 120px; }
    @media only screen and (max-width: 767px) {
      body.company .history__cont {
        padding: 60px 12px 60px 22px; } }
    body.company .history__cont .inner {
      max-width: 1205px; }
  body.company .history__list dl {
    display: flex;
    width: 100%; }
    @media only screen and (max-width: 767px) {
      body.company .history__list dl {
        display: block;
        margin-bottom: 32px;
        position: relative; }
        body.company .history__list dl:before {
          content: "";
          width: 1px;
          height: calc(100% + 32px);
          display: block;
          background: #BCA84B;
          position: absolute;
          top: 8px;
          left: 5px; } }
    @media only screen and (max-width: 767px) {
      body.company .history__list dl:last-of-type:before {
        content: none; } }
    body.company .history__list dl:last-of-type dt:before {
      content: none; }
    body.company .history__list dl dt {
      width: 156px;
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.03em;
      line-height: 1.2;
      font-family: "century-gothic", sans-serif;
      color: #BCA84B;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.company .history__list dl dt {
          width: 100%;
          padding-left: 35px;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.5; } }
      body.company .history__list dl dt:before {
        content: "";
        width: 1px;
        height: 100%;
        display: block;
        background: #BCA84B;
        position: absolute;
        right: 5px;
        top: 8px; }
        @media only screen and (max-width: 767px) {
          body.company .history__list dl dt:before {
            content: none; } }
      body.company .history__list dl dt:after {
        content: "";
        width: 11px;
        height: 11px;
        display: block;
        border-radius: 50%;
        background: #BCA84B;
        position: absolute;
        top: 8px;
        right: 0; }
        @media only screen and (max-width: 767px) {
          body.company .history__list dl dt:after {
            width: 10px;
            height: 10px;
            top: 8px;
            left: 0;
            right: auto; } }
    body.company .history__list dl dd {
      width: calc(100% - 156px);
      padding-left: 65px;
      padding-right: 273px;
      padding-bottom: 64px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.company .history__list dl dd {
          width: 100%;
          padding: 0;
          padding-left: 35px;
          margin-top: 12px; } }
      body.company .history__list dl dd .cate-list {
        display: flex;
        margin-bottom: 15px; }
        @media only screen and (max-width: 767px) {
          body.company .history__list dl dd .cate-list {
            margin-bottom: 8px; } }
        body.company .history__list dl dd .cate-list span {
          background: #BCA84B;
          color: #fff;
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0.05em;
          font-family: "century-gothic", sans-serif;
          width: 100px;
          height: 26px;
          display: flex;
          align-items: center;
          justify-content: center;
          margin-right: 10px; }
          @media only screen and (max-width: 767px) {
            body.company .history__list dl dd .cate-list span {
              font-size: 10px;
              font-size: 1rem;
              width: 75px;
              height: 20px; } }
        body.company .history__list dl dd .cate-list .c-text01 {
          margin-bottom: 8px; }
      body.company .history__list dl dd .image {
        width: 200px;
        position: absolute;
        top: -40px;
        right: 0;
        transform: translate(0%, 0%); }
        @media only screen and (max-width: 767px) {
          body.company .history__list dl dd .image {
            position: static;
            margin-top: 24px; } }

body.entry {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between; }
  @media only screen and (max-width: 767px) {
    body.entry .c-breadcrumb {
      max-width: 100%; } }
  body.entry .cont {
    padding: 120px 0; }
    @media only screen and (max-width: 767px) {
      body.entry .cont {
        padding: 28px 0 60px; } }
    body.entry .cont .inner {
      max-width: 920px; }

body.news_detail .post {
  padding-top: 88px;
  padding-bottom: 100px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .post {
      padding-top: 18px;
      padding-bottom: 60px; } }
  body.news_detail .post .inner {
    max-width: 844px; }
  body.news_detail .post__head {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .post__head {
        margin-bottom: 24px; } }
    body.news_detail .post__head .date-cate {
      margin-bottom: 40px;
      display: flex;
      align-items: center; }
      @media only screen and (max-width: 767px) {
        body.news_detail .post__head .date-cate {
          margin-bottom: 23px; } }
      body.news_detail .post__head .date-cate .date {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.77px;
        line-height: 1.75;
        font-weight: 500;
        margin-right: 16px; }
        @media only screen and (max-width: 767px) {
          body.news_detail .post__head .date-cate .date {
            font-size: 10px;
            font-size: 1rem;
            letter-spacing: 0.05em;
            margin-right: 0px; } }
      body.news_detail .post__head .date-cate .cate {
        color: #BCA84B;
        border: 1px solid #BCA84B;
        display: inline-block;
        padding: 1px 10px 2px;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        line-height: 1.41666667;
        font-weight: 500;
        margin-left: 10px; }
        @media only screen and (max-width: 767px) {
          body.news_detail .post__head .date-cate .cate {
            font-size: 10px;
            font-size: 1rem;
            padding: 1px 5px; } }
  body.news_detail .post .thumbnail {
    width: 100%;
    margin-bottom: 42px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .post .thumbnail {
        margin-bottom: 16px; } }
    body.news_detail .post .thumbnail img {
      width: 100%; }
  body.news_detail .post .cont {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      body.news_detail .post .cont {
        font-size: 12px;
        font-size: 1.2rem; } }
    body.news_detail .post .cont p {
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .post .cont p {
          margin-bottom: 16px; } }
    body.news_detail .post .cont h1 {
      font-size: 42px;
      font-size: 4.2rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 400;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .post .cont h1 {
          font-size: 24px;
          font-size: 2.4rem;
          margin-bottom: 16px; } }
    body.news_detail .post .cont h2 {
      font-size: 24px;
      font-size: 2.4rem;
      letter-spacing: 0.05em;
      line-height: 1.7;
      font-weight: 500;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .post .cont h2 {
          font-size: 18px;
          font-size: 1.8rem;
          margin-bottom: 16px; } }
    body.news_detail .post .cont h3 {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.05em;
      line-height: 1.8;
      font-weight: 500;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .post .cont h3 {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.7;
          margin-bottom: 16px; } }
    body.news_detail .post .cont h4 {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0.05em;
      line-height: 1.8;
      font-weight: 500;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .post .cont h4 {
          font-size: 14px;
          font-size: 1.4rem;
          margin-bottom: 16px; } }

body.odm .c-col2 {
  border-bottom: 1px solid #A6A6A6; }
  body.odm .c-col2 .text {
    padding: 6.5885798vw 6.5885798vw 7.4670571vw; }
    @media only screen and (max-width: 767px) {
      body.odm .c-col2 .text {
        order: 1;
        padding: 60px 30px; } }
    body.odm .c-col2 .text .c-title02 {
      font-size: 1.75695461vw; }
      @media only screen and (max-width: 767px) {
        body.odm .c-col2 .text .c-title02 {
          font-size: 16px;
          font-size: 1.6rem; } }
    body.odm .c-col2 .text p {
      font-size: 1.17130307vw;
      letter-spacing: 0.05em;
      line-height: 1.8;
      font-weight: 500;
      margin-top: 2.34260615vw; }
      @media only screen and (max-width: 767px) {
        body.odm .c-col2 .text p {
          font-size: 12px;
          font-size: 1.2rem;
          margin-top: 18px; } }
  @media only screen and (max-width: 767px) {
    body.odm .c-col2 .image {
      order: 2; } }

body.odm .case__head {
  padding: 32px 0 49px;
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    body.odm .case__head {
      padding: 60px 12px 54px; } }
  body.odm .case__head .inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-end; }
    @media only screen and (max-width: 767px) {
      body.odm .case__head .inner {
        display: block; } }
  body.odm .case__head .text h2 {
    font-size: 42px;
    font-size: 4.2rem;
    letter-spacing: 0.05em;
    line-height: 1.7;
    font-family: "century-gothic", sans-serif;
    color: #BCA84B;
    margin-bottom: 12px; }
    @media only screen and (max-width: 767px) {
      body.odm .case__head .text h2 {
        font-size: 30px;
        font-size: 3rem;
        letter-spacing: 0;
        line-height: 1;
        text-align: center;
        margin-bottom: 32px; } }
  body.odm .case__head .text p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2; }
    @media only screen and (max-width: 767px) {
      body.odm .case__head .text p {
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        line-height: 1.8; } }
  body.odm .case__head .logo-list {
    display: flex;
    justify-content: flex-end;
    align-items: center; }
    @media only screen and (max-width: 767px) {
      body.odm .case__head .logo-list {
        justify-content: space-between;
        max-width: 301px;
        margin: 24px auto 0; } }
    body.odm .case__head .logo-list .logo {
      margin-left: 32px; }
      @media only screen and (max-width: 767px) {
        body.odm .case__head .logo-list .logo {
          margin: 0; } }
    body.odm .case__head .logo-list .w105 {
      width: 105px; }
      @media only screen and (max-width: 767px) {
        body.odm .case__head .logo-list .w105 {
          width: 82px; } }
    body.odm .case__head .logo-list .w58 {
      width: 58px; }
      @media only screen and (max-width: 767px) {
        body.odm .case__head .logo-list .w58 {
          width: 46px; } }
    body.odm .case__head .logo-list .w154 {
      width: 154px; }
      @media only screen and (max-width: 767px) {
        body.odm .case__head .logo-list .w154 {
          width: 121px; } }

body.odm .case__list {
  display: flex;
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    body.odm .case__list {
      display: block; } }
  body.odm .case__list li {
    padding: 30px 30px;
    width: 33.3333333%;
    border-right: 1px solid #A6A6A6; }
    @media only screen and (max-width: 767px) {
      body.odm .case__list li {
        width: 100%;
        padding: 30px 30px 33px;
        border-right: none;
        border-bottom: 1px solid #A6A6A6; } }
    @media only screen and (max-width: 767px) {
      body.odm .case__list li:last-of-type {
        border-bottom: none; } }
    body.odm .case__list li:nth-of-type(3n) {
      border-right: none; }
    body.odm .case__list li .image {
      aspect-ratio: 395/394; }
      body.odm .case__list li .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    body.odm .case__list li .text {
      margin-top: 42px; }
      @media only screen and (max-width: 767px) {
        body.odm .case__list li .text {
          margin-top: 30px; } }
      body.odm .case__list li .text h3 {
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 0.05em;
        line-height: 1.75;
        font-weight: 500;
        margin-bottom: 15px; }
        @media only screen and (max-width: 767px) {
          body.odm .case__list li .text h3 {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.7;
            margin-bottom: 12px; } }
      body.odm .case__list li .text p {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 1.04px;
        line-height: 1.7; }
        @media only screen and (max-width: 767px) {
          body.odm .case__list li .text p {
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            line-height: 1.8; } }

body.odm .case .c-btn {
  margin: 44px auto 0; }
  @media only screen and (max-width: 767px) {
    body.odm .case .c-btn {
      margin-top: 30px; } }

body.odm .case .col {
  display: flex;
  border-top: 1px solid #A6A6A6;
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    body.odm .case .col {
      display: block; } }
  body.odm .case .col__box {
    width: 50%;
    border-right: 1px solid rgba(0, 0, 0, 0.3);
    padding: 80px 120px; }
    @media only screen and (max-width: 767px) {
      body.odm .case .col__box {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(0, 0, 0, 0.3);
        padding: 30px; } }
    @media only screen and (max-width: 767px) {
      body.odm .case .col__box:last-of-type {
        border-bottom: none; } }
    body.odm .case .col__box:nth-of-type(2n) {
      border-right: none; }
    body.odm .case .col__box h3 {
      color: #BCA84B;
      margin-bottom: 48px; }
      @media only screen and (max-width: 767px) {
        body.odm .case .col__box h3 {
          margin-bottom: 24px; } }
      body.odm .case .col__box h3 .c-catch {
        margin-left: 20px; }
    body.odm .case .col__box .col2 {
      display: flex;
      margin-bottom: 28px; }
      body.odm .case .col__box .col2 hr {
        width: 1px;
        height: 111px;
        display: block;
        background: rgba(0, 0, 0, 0.3);
        margin: 8px 38px 8px 68px; }
    body.odm .case .col__box ul li {
      padding-left: 1.2em;
      position: relative; }
      body.odm .case .col__box ul li:before {
        content: "・";
        position: absolute;
        top: 0;
        left: 0; }

body.odm .c-infinite-slider {
  margin: 100px 0 80px; }
  @media only screen and (max-width: 767px) {
    body.odm .c-infinite-slider {
      margin: 45px 0; } }

body.odm .flow {
  background: #F2F2ED;
  border-bottom: 1px solid #A6A6A6; }
  body.odm .flow .c-title-area {
    border-bottom: 1px solid #A6A6A6; }
  body.odm .flow__cont {
    padding: 80px 0 90px; }
    @media only screen and (max-width: 767px) {
      body.odm .flow__cont {
        padding: 45px 0; } }
    body.odm .flow__cont .inner {
      max-width: 1208px; }
      @media only screen and (max-width: 767px) {
        body.odm .flow__cont .inner {
          max-width: 281px; } }
  body.odm .flow__list li {
    border-bottom: 1px solid #BCA84B;
    display: flex;
    align-items: flex-end;
    padding-bottom: 32px;
    margin-bottom: 50px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.odm .flow__list li {
        display: block;
        padding-bottom: 20px;
        margin-bottom: 25px; } }
    body.odm .flow__list li:last-of-type {
      padding-bottom: 0;
      margin-bottom: 0;
      border: none; }
      body.odm .flow__list li:last-of-type:before {
        content: none; }
      body.odm .flow__list li:last-of-type:after {
        content: none; }
    body.odm .flow__list li:before {
      content: "";
      width: 32px;
      height: 20px;
      display: block;
      background: #BCA84B;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      position: absolute;
      bottom: -20px;
      left: 125px; }
      @media only screen and (max-width: 767px) {
        body.odm .flow__list li:before {
          left: 19px;
          bottom: -10px;
          width: 16px;
          height: 10px; } }
    body.odm .flow__list li:after {
      content: "";
      width: 30px;
      height: 19px;
      display: block;
      background: #F2F2ED;
      clip-path: polygon(0 0, 100% 0, 50% 100%);
      position: absolute;
      bottom: -18px;
      left: 126px; }
      @media only screen and (max-width: 767px) {
        body.odm .flow__list li:after {
          left: 20px;
          bottom: -8px;
          width: 14px;
          height: 9px; } }
    body.odm .flow__list li .step-item {
      width: 252px;
      padding-left: 94px; }
      @media only screen and (max-width: 767px) {
        body.odm .flow__list li .step-item {
          width: 100%;
          padding-left: 0;
          display: flex;
          align-items: center;
          margin-bottom: 13px; } }
      body.odm .flow__list li .step-item .step {
        width: 100px;
        height: 26px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.05em;
        font-family: "century-gothic", sans-serif;
        color: #fff;
        background: #BCA84B;
        margin-bottom: 10px; }
        @media only screen and (max-width: 767px) {
          body.odm .flow__list li .step-item .step {
            width: 58px;
            height: 26px;
            margin-right: 10px;
            margin-bottom: 0; } }
      body.odm .flow__list li .step-item .item {
        width: 100px;
        display: block;
        text-align: center; }
        @media only screen and (max-width: 767px) {
          body.odm .flow__list li .step-item .item {
            width: auto;
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.05em;
            line-height: 1.7;
            font-weight: 500; } }
    body.odm .flow__list li .title {
      width: calc(100% - 252px);
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.55555556; }
      @media only screen and (max-width: 767px) {
        body.odm .flow__list li .title {
          width: 100%;
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.8; } }

body.odm .commitment__head {
  padding: 32px 0 48px;
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    body.odm .commitment__head {
      padding: 60px 12px; } }
  body.odm .commitment__head .c-title01 {
    color: #BCA84B;
    margin-bottom: 12px; }
    @media only screen and (max-width: 767px) {
      body.odm .commitment__head .c-title01 {
        text-align: center;
        margin-bottom: 22px; } }
  body.odm .commitment__head p {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
    max-width: 593px; }
    @media only screen and (max-width: 767px) {
      body.odm .commitment__head p {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.8;
        letter-spacing: 0.05em; } }

body.odm .commitment .c-col:last-of-type {
  border-bottom: none; }

body.odm .commitment .c-col .text .c-en03 {
  font-size: 2.34260615vw;
  margin-bottom: 2.7818448vw; }
  @media only screen and (max-width: 767px) {
    body.odm .commitment .c-col .text .c-en03 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 2;
      margin-bottom: 8px; } }

body.odm .commitment .c-col .text .c-title03 {
  font-size: 1.46412884vw;
  margin-bottom: 1.31771596vw; }
  @media only screen and (max-width: 767px) {
    body.odm .commitment .c-col .text .c-title03 {
      font-size: 16px;
      font-size: 1.6rem;
      margin-bottom: 18px; } }

body.odm .commitment .c-col .text p {
  font-size: 1.02489019vw;
  letter-spacing: 0.05em;
  line-height: 2;
  font-weight: 500; }
  @media only screen and (max-width: 767px) {
    body.odm .commitment .c-col .text p {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 1.8; } }

body.odm .commitment .logistics .text {
  padding-right: 5.41727672vw; }

body.our-brand .brand .images .brand-images-slider .swiper .swiper-slide {
  aspect-ratio: 68316/68166; }
  body.our-brand .brand .images .brand-images-slider .swiper .swiper-slide img {
    width: 101%;
    height: 101%;
    object-fit: cover;
    object-position: center center; }

body.our-brand .brand .images .swiper-pagination {
  position: absolute;
  left: auto;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: max-content;
  align-items: flex-end;
  opacity: 0.8; }
  @media only screen and (max-width: 767px) {
    body.our-brand .brand .images .swiper-pagination {
      right: 18px;
      bottom: 18px; } }
  body.our-brand .brand .images .swiper-pagination .swiper-pagination-bullet {
    opacity: 0.5;
    background: #fff;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    margin: 0 0 0 9px; }
    @media only screen and (max-width: 767px) {
      body.our-brand .brand .images .swiper-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        margin-left: 5px; } }
  body.our-brand .brand .images .swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1; }

body.our-brand .brand .text {
  padding: 40px 0 90px; }
  @media only screen and (max-width: 767px) {
    body.our-brand .brand .text {
      padding: 45px 0 60px; } }
  body.our-brand .brand .text .col {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.our-brand .brand .text .col {
        display: block; } }
    body.our-brand .brand .text .col .info {
      width: 50%; }
      @media only screen and (max-width: 767px) {
        body.our-brand .brand .text .col .info {
          width: 100%; } }
      @media only screen and (max-width: 767px) {
        body.our-brand .brand .text .col .info .name-logo {
          display: flex;
          justify-content: space-between; } }
      @media only screen and (max-width: 767px) {
        body.our-brand .brand .text .col .info .name-logo .logo {
          width: 69px;
          margin-top: 7px; } }
      body.our-brand .brand .text .col .info .name {
        margin-bottom: 56px; }
        @media only screen and (max-width: 767px) {
          body.our-brand .brand .text .col .info .name {
            margin-bottom: 28px; } }
        body.our-brand .brand .text .col .info .name .en {
          display: block;
          font-size: 96px;
          font-size: 9.6rem;
          font-family: "century-gothic", sans-serif;
          margin-bottom: 13px; }
          @media only screen and (max-width: 767px) {
            body.our-brand .brand .text .col .info .name .en {
              font-size: 48px;
              font-size: 4.8rem;
              margin-bottom: 6px; } }
        body.our-brand .brand .text .col .info .name .jp {
          display: block; }
      body.our-brand .brand .text .col .info .c-title02 {
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.our-brand .brand .text .col .info .c-title02 {
            margin-bottom: 12px; } }
    body.our-brand .brand .text .col .link {
      width: 50%;
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      flex-direction: column; }
      @media only screen and (max-width: 767px) {
        body.our-brand .brand .text .col .link {
          width: 100%;
          display: block; } }
      body.our-brand .brand .text .col .link .logo {
        width: 100%;
        height: 163px;
        display: flex;
        align-items: center;
        justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        body.our-brand .brand .text .col .link__list {
          display: flex;
          flex-wrap: wrap;
          justify-content: space-between;
          margin-top: 22px;
          padding: 0 10px; } }
      body.our-brand .brand .text .col .link__list li {
        margin-top: 16px; }
        @media only screen and (max-width: 767px) {
          body.our-brand .brand .text .col .link__list li {
            margin-top: 23px;
            width: calc((100% - 23px) / 2); } }
        body.our-brand .brand .text .col .link__list li a {
          width: 168px;
          padding: 3px 18px;
          white-space: nowrap; }
          @media only screen and (max-width: 767px) {
            body.our-brand .brand .text .col .link__list li a {
              width: 100%;
              padding: 5px 17px; } }
  body.our-brand .brand .text .image-list {
    margin-top: 78px;
    display: flex;
    gap: 2.27655987%; }
    @media only screen and (max-width: 767px) {
      body.our-brand .brand .text .image-list {
        margin-top: 45px;
        gap: 15px;
        flex-wrap: wrap; } }
    body.our-brand .brand .text .image-list .image {
      width: 23.2925801%; }
      @media only screen and (max-width: 767px) {
        body.our-brand .brand .text .image-list .image {
          width: calc((100% - 15px) / 2); } }

@media only screen and (max-width: 767px) {
  body.privacy-policy .c-head .c-en01 {
    white-space: nowrap; } }

@media only screen and (max-width: 767px) {
  body.privacy-policy .c-breadcrumb ul {
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 85px; } }

body.privacy-policy .cont {
  padding: 80px 0 120px; }
  @media only screen and (max-width: 767px) {
    body.privacy-policy .cont {
      padding: 45px 12px 75px; } }
  body.privacy-policy .cont .inner {
    max-width: 844px; }
  body.privacy-policy .cont .c-title02 {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.privacy-policy .cont .c-title02 {
        margin-bottom: 16px; } }
  body.privacy-policy .cont .mb48 {
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.privacy-policy .cont .mb48 {
        margin-bottom: 50px; } }
  body.privacy-policy .cont dl {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.privacy-policy .cont dl {
        margin-bottom: 32px; } }
    body.privacy-policy .cont dl:last-of-type {
      margin-bottom: 0; }
    body.privacy-policy .cont dl dt {
      margin-bottom: 12px; }
    body.privacy-policy .cont dl dd ul {
      margin-top: 12px; }
      body.privacy-policy .cont dl dd ul li {
        padding-left: 1.2em;
        position: relative; }
        body.privacy-policy .cont dl dd ul li:before {
          content: "・";
          position: absolute;
          top: 0;
          left: 0; }

body.recruit .main-visual__image {
  width: 100%;
  height: 520px; }
  @media only screen and (max-width: 767px) {
    body.recruit .main-visual__image {
      height: 260px; } }
  body.recruit .main-visual__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center; }

body.recruit .intro {
  padding: 120px 0;
  text-align: center; }
  @media only screen and (max-width: 767px) {
    body.recruit .intro {
      padding: 60px 12px;
      text-align: left; } }
  body.recruit .intro .c-title01 {
    margin-bottom: 21px; }
    @media only screen and (max-width: 767px) {
      body.recruit .intro .c-title01 {
        margin-bottom: 32px; } }
  @media only screen and (max-width: 767px) {
    body.recruit .intro .c-title03 {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.8; } }

body.recruit .title-area {
  border-top: 1px solid #A6A6A6;
  border-bottom: 1px solid #A6A6A6;
  padding: 32px 0 24px; }
  @media only screen and (max-width: 767px) {
    body.recruit .title-area {
      padding: 30px 0; } }
  body.recruit .title-area h2 {
    color: #BCA84B;
    text-align: center; }
    body.recruit .title-area h2 .en {
      display: block;
      font-size: 24px;
      font-size: 2.4rem;
      font-family: "century-gothic", sans-serif;
      margin-bottom: 3px; }
      @media only screen and (max-width: 767px) {
        body.recruit .title-area h2 .en {
          font-size: 16px;
          font-size: 1.6rem;
          margin-bottom: 2;
          font-weight: 400; } }

body.recruit .employee__cont {
  padding: 100px 0 120px; }
  @media only screen and (max-width: 767px) {
    body.recruit .employee__cont {
      padding: 30px 12px 75px; } }
  body.recruit .employee__cont .inner {
    max-width: 1126px; }

body.recruit .employee__list {
  display: flex;
  flex-wrap: wrap;
  gap: 3.82409178%; }
  @media only screen and (max-width: 767px) {
    body.recruit .employee__list {
      display: block; } }
  body.recruit .employee__list li {
    width: 48.08795411%;
    margin-top: 5.35372849%; }
    @media only screen and (max-width: 767px) {
      body.recruit .employee__list li {
        width: 100%;
        margin-top: 45px; } }
    @media only screen and (max-width: 767px) {
      body.recruit .employee__list li:first-of-type {
        margin-top: 0; } }
    @media only screen and (min-width: 768px) {
      body.recruit .employee__list li:nth-of-type(-n +2) {
        margin-top: 0; } }
    body.recruit .employee__list li .text {
      margin-top: 32px; }
      @media only screen and (max-width: 767px) {
        body.recruit .employee__list li .text {
          margin-top: 24px; } }
      body.recruit .employee__list li .text .c-title02 {
        margin-bottom: 8px; }

body.recruit .employee .other {
  margin-top: 120px; }
  @media only screen and (max-width: 767px) {
    body.recruit .employee .other {
      margin-top: 60px; } }
  body.recruit .employee .other__list {
    margin-top: 32px;
    display: flex;
    flex-wrap: wrap;
    gap: 3.82409178%; }
    @media only screen and (max-width: 767px) {
      body.recruit .employee .other__list {
        margin-top: 20px;
        display: block; } }
    body.recruit .employee .other__list li {
      width: 48.08795411%;
      margin-top: 2.29445507%;
      display: flex; }
      @media only screen and (max-width: 767px) {
        body.recruit .employee .other__list li {
          width: 100%;
          margin-top: 16px; } }
      @media only screen and (max-width: 767px) {
        body.recruit .employee .other__list li:first-of-type {
          margin-top: 0; } }
      @media only screen and (min-width: 768px) {
        body.recruit .employee .other__list li:nth-of-type(-n + 2) {
          margin-top: 0; } }
      body.recruit .employee .other__list li i {
        width: 64px;
        height: 64px; }
        @media only screen and (max-width: 767px) {
          body.recruit .employee .other__list li i {
            width: 40px;
            height: 40px; } }
      body.recruit .employee .other__list li p {
        width: calc(100% - 64px);
        padding: 16px 22px;
        background: #F2F2ED; }
        @media only screen and (max-width: 767px) {
          body.recruit .employee .other__list li p {
            width: calc(100% - 40px);
            padding: 7px 14px; } }

body.recruit .voice__list {
  display: flex; }
  @media only screen and (max-width: 767px) {
    body.recruit .voice__list {
      display: block; } }
  body.recruit .voice__list li {
    width: 25%;
    border-right: 1px solid #A6A6A6;
    padding: 25px; }
    @media only screen and (max-width: 767px) {
      body.recruit .voice__list li {
        width: 100%;
        display: block;
        border-right: none;
        border-bottom: 1px solid #A6A6A6;
        padding: 30px; } }
    @media only screen and (max-width: 767px) {
      body.recruit .voice__list li:last-of-type {
        border-bottom: none; } }
    body.recruit .voice__list li:nth-of-type(4n) {
      border-right: none; }
    body.recruit .voice__list li .image {
      aspect-ratio: 291/291; }
      body.recruit .voice__list li .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    body.recruit .voice__list li .text {
      margin-top: 32px; }
      @media only screen and (max-width: 767px) {
        body.recruit .voice__list li .text {
          margin-top: 16px; } }
      body.recruit .voice__list li .text .name {
        padding-bottom: 24px;
        margin-bottom: 24px;
        border-bottom: 1px solid #BCA84B; }
        @media only screen and (max-width: 767px) {
          body.recruit .voice__list li .text .name {
            padding-bottom: 18px;
            margin-bottom: 18px; } }
        body.recruit .voice__list li .text .name span {
          display: block; }
          @media only screen and (max-width: 767px) {
            body.recruit .voice__list li .text .name span {
              display: inline-block;
              margin-right: 16px; } }
      body.recruit .voice__list li .text strong {
        display: block;
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.05em;
        line-height: 1.7;
        font-weight: 500; }
        @media only screen and (max-width: 767px) {
          body.recruit .voice__list li .text strong {
            font-size: 14px;
            font-size: 1.4rem;
            line-height: 1.8; } }
      body.recruit .voice__list li .text p {
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 1px;
        line-height: 1.7;
        margin-top: 10px; }
        @media only screen and (max-width: 767px) {
          body.recruit .voice__list li .text p {
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            line-height: 1.8;
            margin-top: 12px; } }

body.recruit .job-description__cont {
  padding: 64px 0 138px; }
  @media only screen and (max-width: 767px) {
    body.recruit .job-description__cont {
      padding: 45px 12px; } }
  body.recruit .job-description__cont .inner {
    max-width: 1126px; }

body.recruit .job-description__tab {
  display: flex;
  flex-wrap: wrap;
  gap: 4.58891013%;
  margin-bottom: 20px; }
  @media only screen and (max-width: 767px) {
    body.recruit .job-description__tab {
      gap: 18px;
      margin-bottom: 45px; } }
  body.recruit .job-description__tab button {
    width: 21.51051625%;
    height: 51px;
    border-radius: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #343434;
    font-size: 18px;
    font-size: 1.8rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    color: #343434;
    font-weight: 500;
    margin-bottom: 3.05927342%;
    transition: color .3s, background-color .3s, border .3s; }
    @media only screen and (max-width: 767px) {
      body.recruit .job-description__tab button {
        width: calc((100% - 18px) / 2);
        height: 30px;
        border-radius: 86px;
        font-size: 12px;
        font-size: 1.2rem;
        margin-bottom: 0; } }
    body.recruit .job-description__tab button.current {
      color: #fff;
      background: #BCA84B;
      border-color: #BCA84B; }

body.recruit .job-description__box > div {
  display: none;
  padding: 64px 73px;
  background: #F2F2ED; }
  @media only screen and (max-width: 767px) {
    body.recruit .job-description__box > div {
      padding: 30px 20px; } }
  body.recruit .job-description__box > div:first-child {
    display: block; }

@media only screen and (max-width: 767px) {
  body.recruit .job-description__box table {
    display: block; } }

@media only screen and (max-width: 767px) {
  body.recruit .job-description__box table tbody {
    display: block; } }

body.recruit .job-description__box table tbody tr {
  border-bottom: 1px solid #BCA84B; }
  @media only screen and (max-width: 767px) {
    body.recruit .job-description__box table tbody tr {
      display: block;
      padding: 20px 7px; } }
  body.recruit .job-description__box table tbody tr:first-of-type {
    border-top: 1px solid #BCA84B; }
  body.recruit .job-description__box table tbody tr th {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-weight: 600;
    padding: 24px 0;
    vertical-align: top;
    width: 176px; }
    @media only screen and (max-width: 767px) {
      body.recruit .job-description__box table tbody tr th {
        display: block;
        width: 100%;
        padding: 0;
        margin-bottom: 8px;
        font-size: 14px;
        font-size: 1.4rem; } }
  body.recruit .job-description__box table tbody tr td {
    font-size: 14px;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    line-height: 1.8;
    font-weight: 500;
    padding: 25px 0;
    width: calc(100% - 176px); }
    @media only screen and (max-width: 767px) {
      body.recruit .job-description__box table tbody tr td {
        display: block;
        width: 100%;
        padding: 0;
        font-size: 12px;
        font-size: 1.2rem; } }

body.recruit .job-description .cv {
  text-align: center;
  margin-top: 90px; }
  @media only screen and (max-width: 767px) {
    body.recruit .job-description .cv {
      margin-top: 32px; } }
  body.recruit .job-description .cv .c-title03 {
    margin-bottom: 8px;
    display: block; }
    @media only screen and (max-width: 767px) {
      body.recruit .job-description .cv .c-title03 {
        margin-bottom: 12px; } }
  body.recruit .job-description .cv .btn {
    width: 442px;
    height: 60px;
    border-radius: 100px;
    background: #BCA84B;
    color: #fff;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 32px auto 0; }
    @media only screen and (max-width: 767px) {
      body.recruit .job-description .cv .btn {
        width: 221px;
        height: 30px;
        border-radius: 50px;
        font-size: 12px;
        font-size: 1.2rem;
        margin-top: 23px; } }

body.top main {
  padding-top: 0; }

body.top .main-visual {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0; }
  body.top .main-visual__image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0; }
    body.top .main-visual__image:after {
      content: "";
      width: 100%;
      height: 100%;
      display: block;
      background: #EAEDEF;
      mix-blend-mode: multiply;
      position: absolute;
      top: 0;
      left: 0;
      z-index: +2; }
  body.top .main-visual__slider .swiper .swiper-slide {
    width: 100%;
    height: 100vh; }
    body.top .main-visual__slider .swiper .swiper-slide img {
      width: 100%;
      height: 100vh;
      object-fit: cover;
      object-position: center center; }
  body.top .main-visual__text {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translate(-50%, 0%);
    color: #fff;
    text-align: center;
    z-index: +2;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__text {
        position: absolute;
        top: 50%;
        left: 50%;
        bottom: auto;
        transform: translate(-50%, -50%); } }
    body.top .main-visual__text .en {
      display: block;
      font-size: 150px;
      font-size: 15rem;
      line-height: 1.33333333;
      letter-spacing: -0.03em;
      font-family: "century-gothic", sans-serif; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__text .en {
          font-size: 42px;
          font-size: 4.2rem; } }
      body.top .main-visual__text .en span {
        letter-spacing: 0.06em; }
    body.top .main-visual__text .jp {
      display: block;
      font-size: 26px;
      font-size: 2.6rem;
      letter-spacing: 0.15em;
      font-weight: 500;
      line-height: 1.45089286; }
  @media only screen and (max-width: 767px) {
    body.top .main-visual__scroll {
      width: 4px;
      position: absolute;
      z-index: +2;
      right: 18px;
      bottom: 32px;
      filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.25)); } }

body.top .whole {
  position: relative;
  background: #fff;
  margin-top: 100vh; }

@media only screen and (max-width: 767px) {
  body.top .news .c-title-area {
    padding-top: 48px; } }

@media only screen and (max-width: 767px) {
  body.top .news .c-title-area .inner {
    justify-content: space-between; } }

body.top .about {
  border-bottom: 1px solid #A6A6A6; }
  @media only screen and (max-width: 767px) {
    body.top .about .image {
      order: 2; } }
  @media only screen and (max-width: 767px) {
    body.top .about .text {
      order: 1;
      text-align: center; } }
  @media only screen and (max-width: 767px) {
    body.top .about .text .c-en02 {
      margin-bottom: 32px; } }
  @media only screen and (max-width: 767px) {
    body.top .about .text .c-title03 {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.8; } }
  @media only screen and (max-width: 767px) {
    body.top .about .text .c-btn {
      margin: 32px auto 0;
      width: 132px; } }

@media only screen and (max-width: 767px) {
  body.top .c-col .image {
    order: 3;
    aspect-ratio: 750/750; } }

@media only screen and (max-width: 767px) {
  body.top .c-col .text {
    text-align: center;
    padding: 60px 0; } }

@media only screen and (max-width: 767px) {
  body.top .c-col .text .c-en02 {
    margin-bottom: 32px; } }

@media only screen and (max-width: 767px) {
  body.top .c-col .text .c-btn {
    margin: 32px auto 0; } }

body.top .business .c-title-area {
  border-bottom: 1px solid #A6A6A6; }

body.top .business .odm .text {
  padding-right: 4.39238653vw; }
  @media only screen and (max-width: 767px) {
    body.top .business .odm .text {
      padding-right: 0; } }

body.top .product {
  border-bottom: 1px solid #A6A6A6;
  padding-bottom: 120px; }
  @media only screen and (max-width: 767px) {
    body.top .product {
      padding-bottom: 54px; } }
  @media only screen and (max-width: 767px) {
    body.top .product .c-title-area {
      border-bottom: 1px solid #A6A6A6;
      margin-bottom: 54px; } }
  @media only screen and (max-width: 767px) {
    body.top .product .c-title-area .inner {
      justify-content: space-between; } }
  @media only screen and (max-width: 767px) {
    body.top .product .product-slider {
      padding-top: 30px;
      padding-left: 16px;
      padding-right: 16px; } }
  body.top .product .product-slider__nav {
    padding: 48px 0; }
    @media only screen and (max-width: 767px) {
      body.top .product .product-slider__nav {
        padding: 20px 9px 30px; } }
    body.top .product .product-slider__nav .inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      max-width: 1205px; }
    body.top .product .product-slider__nav .swiper-button-prev, body.top .product .product-slider__nav .swiper-button-next {
      position: static;
      display: flex;
      align-items: center;
      font-size: 16px;
      font-size: 1.6rem;
      line-height: 1.75;
      font-weight: 600;
      font-family: "century-gothic", sans-serif;
      color: #BCA84B;
      width: 72px;
      height: 28px;
      margin: 0; }
      body.top .product .product-slider__nav .swiper-button-prev:after, body.top .product .product-slider__nav .swiper-button-next:after {
        content: none; }
      body.top .product .product-slider__nav .swiper-button-prev svg, body.top .product .product-slider__nav .swiper-button-next svg {
        display: block;
        width: 9px;
        height: 18px;
        position: relative;
        top: 1px; }
        body.top .product .product-slider__nav .swiper-button-prev svg path, body.top .product .product-slider__nav .swiper-button-next svg path {
          stroke: #BCA84B; }
    body.top .product .product-slider__nav .swiper-button-prev span {
      color: #CBCBCB; }
    body.top .product .product-slider__nav .swiper-button-prev svg {
      margin-right: 25px; }
      body.top .product .product-slider__nav .swiper-button-prev svg path {
        stroke: #CBCBCB; }
    body.top .product .product-slider__nav .swiper-button-next svg {
      margin-left: 25px; }

@media only screen and (max-width: 767px) {
  body.top .recruit .text {
    text-align: center;
    background: #F2F2ED; } }

@media only screen and (max-width: 767px) {
  body.top .recruit .text .c-en02 {
    margin-bottom: 32px; } }

@media only screen and (max-width: 767px) {
  body.top .recruit .text .c-btn {
    width: 132px;
    margin: 32px auto 0; } }

@media only screen and (max-width: 767px) {
  body.top .recruit .image {
    order: 3; } }
