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

html {
  line-height: 1; }

ol, ul {
  list-style: none; }

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

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

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

a img {
  border: none; }

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

/**
 * !!! 変数の定義 !!!
 * 変数は作りすぎず、デザインコンポーネント、もしくはシンボルを元に作成する
 * またGoogle Font等の特殊なウェブフォントの場合、そのフォント名を定義してわかりやすくする
 */
/**
 * !!! ブレークポイント !!!
 */
@media only screen and (max-width: 767px) {
  .pc {
    display: none !important; } }

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

::-webkit-scrollbar {
  display: none;
  -webkit-appearance: none; }

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

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

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

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

/**
 * ----------------ここまで----------------
 */
/**
 * !!! FlexBox Rule !!!
 * 都度scssを記載するのではなく、クラスで定義し、クラスの付け外しで管理すること。
 */
.flex-row {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  justify-content: space-between; }

/**
 * !!! Inner Rule !!!
 * 最初にデザインを確認し、存在するinnerパターンを作成すること
 * max-width指定のみだと、画面幅を縮小するときに余白が消えるため、paddingをつけること
 * 例) innerが1000pxであれば、
 *     max-width: 1060px;
 *     padding: 0 30px;
 */
.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: translateY(30px);
  transition: transform 1.2s ease, opacity 1.2s ease;
  opacity: 0; }
  [data-trigger].visible {
    transform: translateY(0px);
    opacity: 1; }

main {
  padding-top: 90px; }
  @media only screen and (max-width: 1160px) {
    main {
      padding-top: 75px; } }

.footer {
  background: #F7F7F7;
  color: #000036; }
  .footer__top {
    padding: 84px 83px 40px;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        padding: 50px 18px 60px;
        display: block; } }
  .footer__left {
    width: 322px;
    max-width: 322px; }
    @media only screen and (max-width: 767px) {
      .footer__left {
        width: 100%;
        max-width: 100%;
        margin-bottom: 20px;
        position: relative; } }
    @media only screen and (max-width: 767px) {
      .footer__left .privacy {
        width: 75px;
        position: absolute;
        right: 0;
        bottom: 0; } }
    .footer__left__logo {
      display: block;
      width: 100%;
      margin-bottom: 56px;
      transition: opacity .3s; }
      .footer__left__logo:hover {
        opacity: 0.6; }
      @media only screen and (max-width: 767px) {
        .footer__left__logo {
          width: 220px;
          margin-bottom: 32px; } }
    .footer__left address strong {
      display: block;
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.05em;
      line-height: 1.5;
      font-weight: 500;
      margin-bottom: 6px; }
      @media only screen and (max-width: 767px) {
        .footer__left address strong {
          font-size: 14px;
          font-size: 1.4rem;
          margin-bottom: 4px; } }
    .footer__left address p {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.05em;
      line-height: 1.3; }
      @media only screen and (max-width: 767px) {
        .footer__left address p {
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.75; } }
  .footer__right {
    max-width: 850px;
    width: calc(100% - 322px);
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
    margin-right: -6px; }
    @media only screen and (max-width: 767px) {
      .footer__right {
        width: 100%;
        display: block; } }
    .footer__right ul {
      margin-left: 40px; }
      @media only screen and (max-width: 767px) {
        .footer__right ul {
          margin: 0;
          margin-top: 25px; } }
      @media only screen and (max-width: 767px) {
        .footer__right ul:first-of-type {
          margin-top: 0; } }
      @media only screen and (max-width: 1298px) {
        .footer__right ul:nth-of-type(3n) {
          margin-top: 40px;
          margin-right: 42px; } }
      @media only screen and (max-width: 767px) {
        .footer__right ul:nth-of-type(3n) {
          margin: 25px 0 0; } }
      .footer__right ul li {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.8;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          .footer__right ul li {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 1.75;
            white-space: nowrap;
            margin-bottom: 8px; } }
        .footer__right ul li:last-of-type {
          margin-bottom: 0; }
        .footer__right ul li a {
          display: flex;
          align-items: center;
          transition: opacity .3s; }
          .footer__right ul li a:hover {
            opacity: 0.6; }
        .footer__right ul li i {
          width: 14px;
          position: relative;
          top: 1px; }
          .footer__right ul li i img {
            display: block;
            width: 100%; }
        .footer__right ul li span {
          max-width: calc(100% - 20px);
          margin: 0 6px; }
          @media only screen and (max-width: 767px) {
            .footer__right ul li span.sp-pl0 {
              margin-left: 0; } }
    .footer__right .privacy {
      width: 100px;
      margin-top: 9px; }
      @media only screen and (max-width: 1355px) {
        .footer__right .privacy {
          width: 100%;
          margin-top: 40px;
          text-align: right; }
          .footer__right .privacy img {
            width: 100px; } }
  .footer__bottom {
    border-top: 1px solid #C9C9C9;
    padding: 32px 83px;
    display: flex;
    align-items: center;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px 18px; } }
    .footer__bottom a {
      transition: opacity .3s; }
      .footer__bottom a:hover {
        opacity: 0.6; }
    .footer__bottom p {
      font-size: 12px;
      font-size: 1.2rem;
      line-height: 2; }
      @media only screen and (max-width: 767px) {
        .footer__bottom p {
          order: 2;
          line-height: 1.5;
          margin-top: 12px;
          text-align: left; } }
    .footer__bottom ul {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        .footer__bottom ul {
          order: 1;
          justify-content: flex-start;
          flex-wrap: wrap; } }
      .footer__bottom ul li {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 2;
        margin-left: 32px; }
        @media only screen and (max-width: 767px) {
          .footer__bottom ul li {
            line-height: 1.5;
            margin: 0 20px 8px 0; } }

.header {
  width: 100%;
  height: 90px;
  position: fixed;
  top: 0;
  left: 0;
  background: #fff;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 99;
  transition: background-color .3s,  color .3s, transform .3s, opacity .3s; }
  @media only screen and (max-width: 1160px) {
    .header {
      height: 75px;
      padding: 0 18px; } }
  @media only screen and (max-width: 767px) {
    .header:before {
      content: "";
      width: 100%;
      height: 75px;
      background: #F7F7F7;
      position: absolute;
      top: 0;
      left: 0;
      opacity: 0;
      transition: opacity .3s;
      z-index: +1; } }
  .header.downMove {
    transform: translate(0, 0); }
  .header.upMove {
    transform: translate(0, -80px); }
    @media only screen and (max-width: 767px) {
      .header.upMove {
        transform: translate(0, -60px); } }
  .header.is-active {
    transform: translate(0, 0); }
    @media only screen and (max-width: 767px) {
      .header.is-active:before {
        opacity: 1; } }
  .header__logo {
    display: block;
    width: 160px;
    transition: opacity .3s; }
    .header__logo:hover {
      opacity: 0.6; }
    @media only screen and (max-width: 1160px) {
      .header__logo {
        width: 130px;
        position: relative;
        z-index: +1; } }
  .header .gnav {
    display: flex;
    align-items: center;
    justify-content: flex-end; }
    @media only screen and (max-width: 1160px) {
      .header .gnav {
        position: fixed;
        width: 100%;
        height: 100vh;
        top: 0;
        left: 0;
        bottom: 0;
        overflow-y: scroll;
        opacity: 0;
        visibility: hidden;
        transition: opacity .3s, visibility .3s;
        background: #F7F7F7;
        justify-content: flex-start;
        flex-direction: column;
        padding: 80px 18px 80px; }
        .header .gnav.is-active {
          opacity: 1;
          visibility: visible; } }
    .header .gnav__list {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      @media only screen and (max-width: 1160px) {
        .header .gnav__list {
          justify-content: flex-start;
          flex-direction: column;
          width: 100%;
          text-align: left; } }
      .header .gnav__list li {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.5;
        letter-spacing: 0.05em;
        font-weight: 500;
        margin-left: 28px; }
        @media only screen and (max-width: 1160px) {
          .header .gnav__list li {
            font-size: 16px;
            font-size: 1.6rem;
            border-bottom: 1px solid #C9C9C9;
            line-height: 1.6;
            width: 100%;
            margin: 0;
            color: #000036; } }
        .header .gnav__list li a {
          transition: opacity .3s; }
          @media only screen and (max-width: 1160px) {
            .header .gnav__list li a {
              display: block;
              padding: 20px 6px; } }
          .header .gnav__list li a:hover {
            opacity: 0.6; }
    .header .gnav .sp-menu {
      width: 100%;
      margin-top: 20px; }
      .header .gnav .sp-menu li {
        margin-bottom: 10px;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.08em;
        line-height: 1.75;
        color: #000036; }
        .header .gnav .sp-menu li:first-of-type {
          margin-bottom: 20px; }
        .header .gnav .sp-menu li:last-of-type {
          margin-bottom: 0; }
        .header .gnav .sp-menu li a {
          display: flex;
          align-items: center; }
        .header .gnav .sp-menu li i {
          display: inline-block;
          width: 12px;
          margin-left: 4px; }
          .header .gnav .sp-menu li i img {
            display: block; }
          .header .gnav .sp-menu li i.mr {
            margin-left: 0;
            margin-right: 6px; }
    .header .gnav .btn-col {
      display: flex;
      align-items: center;
      justify-content: flex-end;
      margin-left: 8px; }
      @media only screen and (max-width: 1160px) {
        .header .gnav .btn-col {
          justify-content: flex-start;
          flex-direction: column;
          margin-left: 0;
          margin-top: 20px; } }
      .header .gnav .btn-col .btn {
        min-width: 185px;
        padding: 0 21px;
        height: 40px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        font-weight: 500;
        margin-left: 20px;
        padding-bottom: 2px;
        transition: color .3s, background-color .3s; }
        @media only screen and (max-width: 1160px) {
          .header .gnav .btn-col .btn {
            margin: 20px auto 0;
            width: 275px;
            height: 50px;
            border-radius: 50px;
            padding: 0 20px;
            justify-content: space-between;
            font-size: 14px;
            font-size: 1.4rem;
            font-weight: 400; } }
        .header .gnav .btn-col .btn.navy {
          color: #fff;
          background: #000036;
          border: 1px solid #000036; }
          .header .gnav .btn-col .btn.navy:hover {
            color: #000036;
            background: #fff; }
            .header .gnav .btn-col .btn.navy:hover svg path {
              fill: #000036; }
        .header .gnav .btn-col .btn.lt-blue {
          background: #A7C7E4; }
          .header .gnav .btn-col .btn.lt-blue:hover {
            color: #fff; }
            .header .gnav .btn-col .btn.lt-blue:hover svg path {
              fill: #fff; }
        .header .gnav .btn-col .btn svg {
          margin-left: 9px; }
          @media only screen and (max-width: 767px) {
            .header .gnav .btn-col .btn svg {
              width: 20px; } }
          .header .gnav .btn-col .btn svg path {
            transition: fill .3s; }

.hamburger {
  display: none; }
  @media only screen and (max-width: 1160px) {
    .hamburger {
      width: 40px;
      height: 40px;
      background: #000036;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      z-index: +1; } }
  .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
    transform: rotate(135deg);
    top: 6px; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
    width: 0; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
    transform: rotate(-135deg);
    bottom: 6px; }
  .hamburger__inner {
    width: 17px;
    height: 13px;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: space-between; }
    .hamburger__inner span {
      width: 17px;
      height: 1px;
      display: block;
      background: #fff;
      transition: transform .3s, top .3s, bottom .3s, width .3s;
      position: relative; }
      .hamburger__inner span:nth-of-type(2) {
        position: absolute;
        top: 6px;
        right: 0; }

.c-breadcrumb {
  display: flex; }
  .c-breadcrumb li {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.09em;
    line-height: 1.75;
    white-space: nowrap; }
    @media only screen and (max-width: 767px) {
      .c-breadcrumb li {
        font-size: 14px;
        font-size: 1.4rem; } }
    .c-breadcrumb li:last-of-type {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      -webkit-line-clamp: 1; }
      .c-breadcrumb li:last-of-type:after {
        content: none; }
    .c-breadcrumb li a {
      color: #000000; }
    .c-breadcrumb li span {
      color: #A6A6A6; }
    .c-breadcrumb li:after {
      content: "";
      width: 4px;
      height: 6px;
      display: inline-block;
      background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
      margin: 0 10px 0 5px;
      position: relative;
      top: -2px; }
      @media only screen and (max-width: 767px) {
        .c-breadcrumb li:after {
          margin: 0 7px 0 2px; } }

.c-title {
  color: #000037; }
  .c-title .en {
    display: block;
    font-size: 56px;
    font-size: 5.6rem;
    letter-spacing: 0.09em;
    line-height: 1.4;
    font-weight: 500;
    font-family: "Montserrat", sans-serif; }
    @media only screen and (max-width: 767px) {
      .c-title .en {
        font-size: 30px;
        font-size: 3rem; } }
  .c-title .jp {
    display: block;
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.09em;
    line-height: 1.2; }
    @media only screen and (max-width: 767px) {
      .c-title .jp {
        font-size: 15px;
        font-size: 1.5rem;
        margin-top: 4px; } }

.c-news-list li {
  border-top: 1px solid #C9C9C9; }
  .c-news-list li:last-of-type {
    border-bottom: 1px solid #C9C9C9; }
  .c-news-list li a {
    padding: 40px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: opacity .3s; }
    @media only screen and (min-width: 768px) {
      .c-news-list li a:hover {
        opacity: 0.6; }
        .c-news-list li a:hover .image img {
          transform: scale(1.1); } }
    @media only screen and (max-width: 767px) {
      .c-news-list li a {
        padding: 32px 0; } }
  .c-news-list li .image {
    width: 270px;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 270 / 180; }
    @media only screen and (max-width: 767px) {
      .c-news-list li .image {
        width: 102px; } }
    .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 {
    width: calc(100% - 310px); }
    @media only screen and (max-width: 767px) {
      .c-news-list li .text {
        width: calc(100% - 114px); } }
    .c-news-list li .text .date-cate {
      display: flex;
      align-items: center;
      margin-bottom: 4px; }
      .c-news-list li .text .date-cate .date {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.75;
        color: #888888; }
        @media only screen and (max-width: 767px) {
          .c-news-list li .text .date-cate .date {
            font-size: 13px;
            font-size: 1.3rem; } }
      .c-news-list li .text .date-cate .cate {
        margin-left: 12px;
        display: inline-block;
        padding: 4px 10px;
        border-radius: 16px;
        color: #fff;
        background: #000036;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        font-weight: 500; }
        @media only screen and (max-width: 767px) {
          .c-news-list li .text .date-cate .cate {
            padding: 5px 7px; } }
    .c-news-list li .text .title {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.08em;
      line-height: 1.65;
      font-weight: 500;
      font-family: "Shippori Mincho", serif;
      color: #000036; }
      @media only screen and (max-width: 767px) {
        .c-news-list li .text .title {
          font-size: 14px;
          font-size: 1.4rem;
          line-height: 1.55;
          letter-spacing: 0.011em;
          display: -webkit-box;
          -webkit-box-orient: vertical;
          overflow: hidden;
          text-overflow: ellipsis;
          -webkit-line-clamp: 2; } }

.c-title01 {
  font-size: 40px;
  font-size: 4rem;
  letter-spacing: 0.01em;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Shippori Mincho", serif; }
  @media only screen and (max-width: 767px) {
    .c-title01 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 1.55; } }

.c-title02 {
  font-size: 32px;
  font-size: 3.2rem;
  letter-spacing: 0.011em;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Shippori Mincho", serif; }
  @media only screen and (max-width: 767px) {
    .c-title02 {
      font-size: 21px;
      font-size: 2.1rem; } }

.c-title03 {
  font-size: 22px;
  font-size: 2.2rem;
  letter-spacing: 0.003em;
  line-height: 1.6;
  font-weight: 500;
  font-family: "Shippori Mincho", serif;
  color: #000036; }
  @media only screen and (max-width: 767px) {
    .c-title03 {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 1.4;
      letter-spacing: 0.01em; } }

.c-sub-title {
  font-size: 24px;
  font-size: 2.4rem;
  letter-spacing: 0.05em;
  line-height: 1.4;
  font-weight: 500;
  font-family: "Montserrat", sans-serif;
  color: #000036;
  padding-left: 0.5em;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .c-sub-title {
      font-size: 16px;
      font-size: 1.6rem; } }
  .c-sub-title:before {
    content: "";
    width: 5px;
    height: 5px;
    display: inline-block;
    border-radius: 50%;
    background: #000036;
    position: absolute;
    top: 50%;
    left: 0%;
    transform: translate(0%, -50%); }
    @media only screen and (max-width: 767px) {
      .c-sub-title:before {
        width: 3px;
        height: 3px; } }

.c-text01 {
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  line-height: 1.75; }
  @media only screen and (max-width: 767px) {
    .c-text01 {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.05em; } }

.c-btn {
  width: max-content;
  height: 52px;
  border-radius: 100px;
  border: 1px solid #000036;
  transition: color .3s, background-color .3s;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 15px;
  font-size: 1.5rem;
  letter-spacing: 0.05em;
  font-weight: 500;
  background: #000036;
  color: #fff;
  padding: 0 20px 0 26px; }
  @media only screen and (max-width: 767px) {
    .c-btn {
      border-radius: 50px;
      height: 32px;
      font-size: 13px;
      font-size: 1.3rem;
      padding: 0 7px 1px 14px;
      margin-left: auto; } }
  @media only screen and (min-width: 768px) {
    .c-btn:hover {
      background: rgba(255, 255, 255, 0);
      color: #000036; }
      .c-btn:hover svg circle {
        fill: #000036; }
      .c-btn:hover svg path {
        fill: #fff; } }
  .c-btn span {
    margin-right: 32px; }
    @media only screen and (max-width: 767px) {
      .c-btn span {
        margin-right: 18px; } }
  @media only screen and (max-width: 767px) {
    .c-btn svg {
      width: 20px; } }
  .c-btn svg circle {
    transition: fill .3s; }
  .c-btn svg path {
    transition: fill .3s; }

.wp-pagenavi {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 80px; }
  @media only screen and (max-width: 767px) {
    .wp-pagenavi {
      margin-top: 50px; } }
  .wp-pagenavi span, .wp-pagenavi a {
    border: none;
    width: auto;
    height: auto;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    margin: 0 9px;
    color: #A6A6A6; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi span, .wp-pagenavi a {
        font-size: 17px;
        font-size: 1.7rem;
        margin: 0 12px; } }
  .wp-pagenavi .current {
    color: #000037; }
  .wp-pagenavi .previouspostslink {
    margin-right: 16px; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi .previouspostslink {
        margin-right: 18px; } }
    .wp-pagenavi .previouspostslink .prev {
      width: 9px;
      height: 14px;
      position: relative; }
      .wp-pagenavi .previouspostslink .prev:before {
        content: "";
        width: 9px;
        height: 14px;
        display: inline-block;
        background: url(../images/common/arrow_left.svg) center center/cover no-repeat;
        transform: rotate(0deg);
        position: absolute;
        top: 0;
        left: 0; }
  .wp-pagenavi .nextpostslink {
    margin-left: 16px; }
    @media only screen and (max-width: 767px) {
      .wp-pagenavi .nextpostslink {
        margin-left: 18px; } }
    .wp-pagenavi .nextpostslink .next {
      width: 9px;
      height: 14px;
      position: relative; }
      .wp-pagenavi .nextpostslink .next:before {
        content: "";
        width: 9px;
        height: 14px;
        display: inline-block;
        background: url(../images/common/arrow_left.svg) center center/cover no-repeat;
        transform: rotate(180deg);
        position: absolute;
        top: 0;
        left: 0; }

/* 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 .whole {
  padding: 50px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.about .whole {
      padding: 40px 0 120px; } }
  body.about .whole .c-title {
    margin: 30px 0 80px; }
    @media only screen and (max-width: 767px) {
      body.about .whole .c-title {
        margin: 24px 0 32px; } }

body.about .main-visual {
  border-radius: 6px;
  overflow: hidden; }

body.about .c-wrap {
  padding: 0 50px; }
  @media only screen and (max-width: 767px) {
    body.about .c-wrap {
      padding: 0; } }

body.about hr {
  width: calc(100% - 80px);
  max-width: 1200px;
  height: 1px;
  display: block;
  margin: 0 auto;
  background: #C9C9C9;
  border: none; }
  @media only screen and (max-width: 767px) {
    body.about hr {
      width: calc(100% - 36px); } }

body.about .vision-promise {
  padding-top: 100px;
  padding-bottom: 120px; }
  @media only screen and (max-width: 767px) {
    body.about .vision-promise {
      padding-top: 50px;
      padding-bottom: 75px; } }
  body.about .vision-promise__box {
    margin-bottom: 80px; }
    @media only screen and (max-width: 767px) {
      body.about .vision-promise__box {
        margin-bottom: 50px; } }
    body.about .vision-promise__box:last-of-type {
      margin-bottom: 0; }
    body.about .vision-promise__box .c-sub-title {
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.about .vision-promise__box .c-sub-title {
          margin-bottom: 32px; } }
    body.about .vision-promise__box .c-title01 {
      margin-bottom: 32px; }
      @media only screen and (max-width: 767px) {
        body.about .vision-promise__box .c-title01 {
          margin-bottom: 25px;
          letter-spacing: -0.01em;
          font-feature-settings: "palt";
          white-space: nowrap; } }
    body.about .vision-promise__box p {
      font-size: 18px;
      font-size: 1.8rem;
      line-height: 2.2;
      letter-spacing: 1px; }
      @media only screen and (max-width: 767px) {
        body.about .vision-promise__box p {
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.75;
          letter-spacing: 0.008em; } }

body.about .top-message {
  padding: 120px 0; }
  @media only screen and (max-width: 767px) {
    body.about .top-message {
      padding: 75px 0; } }
  body.about .top-message dl {
    margin-top: 40px;
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      body.about .top-message dl {
        margin-top: 32px;
        display: block; } }
    body.about .top-message dl dt {
      width: 47.74774775%; }
      @media only screen and (max-width: 767px) {
        body.about .top-message dl dt {
          width: 100%;
          margin-bottom: 32px; } }
      body.about .top-message dl dt .image {
        overflow: hidden;
        border-radius: 8px; }
    body.about .top-message dl dd {
      width: 48.64864865%; }
      @media only screen and (min-width: 768px) {
        body.about .top-message dl dd {
          margin-top: -10px; } }
      @media only screen and (max-width: 767px) {
        body.about .top-message dl dd {
          width: 100%; } }
      body.about .top-message dl dd .c-title02 {
        margin-bottom: 32px; }
        @media only screen and (max-width: 767px) {
          body.about .top-message dl dd .c-title02 {
            margin-bottom: 20px;
            font-feature-settings: "palt";
            letter-spacing: -0.01em; } }
      body.about .top-message dl dd p {
        font-size: 16px;
        font-size: 1.6rem;
        line-height: 1.9;
        margin-bottom: 24px;
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.about .top-message dl dd p {
            font-size: 15px;
            font-size: 1.5rem;
            line-height: 1.75;
            letter-spacing: 0.05em; } }
        body.about .top-message dl dd p:last-of-type {
          margin-bottom: 0; }

body.about .company {
  padding: 120px 0 0; }
  @media only screen and (max-width: 767px) {
    body.about .company {
      padding: 75px 0 0; } }
  body.about .company__box {
    margin-top: 40px;
    padding: 80px 64px;
    border-radius: 8px;
    background: #F7F7F7; }
    @media only screen and (max-width: 767px) {
      body.about .company__box {
        margin-top: 32px;
        padding: 32px 12px 40px; } }
  body.about .company__table {
    margin-bottom: 84px; }
    @media only screen and (max-width: 767px) {
      body.about .company__table {
        margin-bottom: 50px; } }
    body.about .company__table .c-title03 {
      margin-bottom: 28px; }
      @media only screen and (max-width: 767px) {
        body.about .company__table .c-title03 {
          margin-bottom: 20px; } }
    body.about .company__table .table {
      display: flex;
      justify-content: space-between;
      align-items: flex-start; }
      @media only screen and (max-width: 767px) {
        body.about .company__table .table {
          display: block; } }
      body.about .company__table .table table {
        width: 47.94238683%;
        border-top: 1px solid #C9C9C9; }
        @media only screen and (max-width: 767px) {
          body.about .company__table .table table {
            width: 100%;
            display: block; } }
        @media only screen and (max-width: 767px) {
          body.about .company__table .table table:last-of-type {
            border-top: none; } }
        @media only screen and (max-width: 767px) {
          body.about .company__table .table table tbody {
            display: block; } }
        body.about .company__table .table table tr {
          border-bottom: 1px solid #C9C9C9; }
          @media only screen and (max-width: 767px) {
            body.about .company__table .table table tr {
              display: block;
              padding: 16px 0; } }
          body.about .company__table .table table tr th {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.6;
            font-weight: 500;
            padding: 16px 0 16px 10px;
            width: 40.77253219%;
            vertical-align: top;
            color: #000036; }
            @media only screen and (max-width: 767px) {
              body.about .company__table .table table tr th {
                font-size: 15px;
                font-size: 1.5rem;
                font-weight: 500;
                width: 100%;
                padding: 0;
                margin-bottom: 6px;
                display: block;
                padding: 0; } }
          body.about .company__table .table table tr td {
            font-size: 16px;
            font-size: 1.6rem;
            line-height: 1.6;
            padding: 16px 0;
            width: 59.22746781%;
            vertical-align: top; }
            @media only screen and (max-width: 767px) {
              body.about .company__table .table table tr td {
                font-size: 15px;
                font-size: 1.5rem;
                line-height: 1.75;
                letter-spacing: 0.008em;
                font-weight: 400;
                display: block;
                padding: 0;
                width: 100%; } }
  body.about .company__list {
    display: flex;
    flex-wrap: wrap;
    padding-bottom: 80px;
    border-bottom: 1px solid #C9C9C9; }
    @media only screen and (max-width: 767px) {
      body.about .company__list {
        padding-bottom: 50px; } }
    body.about .company__list li {
      width: 48.14814815%;
      margin-right: 3.7037037%;
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        body.about .company__list li {
          width: 100%;
          margin: 0 0 40px; } }
      body.about .company__list li:nth-of-type(3) {
        margin-right: 0; }
      body.about .company__list li:nth-of-type(5) {
        margin-right: 0; }
      body.about .company__list li:first-of-type {
        margin-top: 0;
        width: 100%; }
      @media only screen and (max-width: 767px) {
        body.about .company__list li:last-of-type {
          margin-bottom: 0; } }
      body.about .company__list li .image {
        overflow: hidden;
        border-radius: 8px; }
        @media only screen and (max-width: 767px) {
          body.about .company__list li .image {
            border-radius: 4px; } }
      body.about .company__list li .text {
        margin-top: 16px; }
        body.about .company__list li .text .c-title03 {
          margin-bottom: 2px; }
          @media only screen and (max-width: 767px) {
            body.about .company__list li .text .c-title03 {
              margin-bottom: 4px; } }
        body.about .company__list li .text .c-text01 {
          margin-bottom: 16px; }
          @media only screen and (max-width: 767px) {
            body.about .company__list li .text .c-text01 {
              margin-bottom: 20px; } }
        body.about .company__list li .text .col .link {
          margin-right: 32px; }
        body.about .company__list li .text .link {
          font-size: 13px;
          font-size: 1.3rem;
          line-height: 2;
          letter-spacing: 0.003em; }
          @media only screen and (max-width: 767px) {
            body.about .company__list li .text .link {
              font-size: 11px;
              font-size: 1.1rem; } }
          body.about .company__list li .text .link:after {
            content: "";
            width: 16px;
            height: 16px;
            display: inline-block;
            background: url(../images/common/icon_link.svg) center center/cover no-repeat;
            margin-left: 10px;
            position: relative;
            top: 4px; }
            @media only screen and (max-width: 767px) {
              body.about .company__list li .text .link:after {
                width: 10px;
                height: 10px;
                margin-left: 5px;
                top: 1px; } }
  body.about .company .privacy {
    padding-top: 80px; }
    @media only screen and (max-width: 767px) {
      body.about .company .privacy {
        padding-top: 50px; } }
    body.about .company .privacy dl {
      display: flex;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        body.about .company .privacy dl {
          display: block; } }
      body.about .company .privacy dl dt {
        width: 30%; }
        @media only screen and (max-width: 767px) {
          body.about .company .privacy dl dt {
            width: 100%; } }
        body.about .company .privacy dl dt i {
          display: block;
          width: 164px; }
          @media only screen and (max-width: 767px) {
            body.about .company .privacy dl dt i {
              width: 75px; } }
      body.about .company .privacy dl dd {
        width: 55.34979424%; }
        @media only screen and (max-width: 767px) {
          body.about .company .privacy dl dd {
            width: 100%;
            margin-top: 22px; } }
        body.about .company .privacy dl dd table {
          width: 100%; }
          @media only screen and (max-width: 767px) {
            body.about .company .privacy dl dd table {
              display: block; } }
          @media only screen and (max-width: 767px) {
            body.about .company .privacy dl dd table tbody {
              display: block; } }
          @media only screen and (max-width: 767px) {
            body.about .company .privacy dl dd table tr {
              display: block;
              padding: 10px 0; } }
          body.about .company .privacy dl dd table tr th {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.009em;
            line-height: 1.75;
            width: 162px;
            padding: 10px 0; }
            @media only screen and (max-width: 767px) {
              body.about .company .privacy dl dd table tr th {
                display: block;
                width: 100%;
                font-size: 15px;
                font-size: 1.5rem;
                letter-spacing: 0.008em;
                margin-bottom: 5px;
                padding: 0; } }
          body.about .company .privacy dl dd table tr td {
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.009em;
            line-height: 1.75;
            width: calc(100% - 162px);
            padding: 10px 0; }
            @media only screen and (max-width: 767px) {
              body.about .company .privacy dl dd table tr td {
                display: block;
                width: 100%;
                font-size: 15px;
                font-size: 1.5rem;
                letter-spacing: 0.008em;
                padding: 0; } }

body.about .history {
  padding: 120px 0;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.about .history {
      padding-top: 75px;
      padding-bottom: 80px; } }
  body.about .history .c-sub-title {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.about .history .c-sub-title {
        margin-bottom: 32px; } }
  body.about .history__slider {
    margin-top: 40px; }
    @media only screen and (max-width: 767px) {
      body.about .history__slider {
        margin-top: 43px; } }
    body.about .history__slider .scroll-bar {
      margin-top: 40px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.about .history__slider .scroll-bar {
          margin-top: 32px; } }
    body.about .history__slider hr {
      margin: 0;
      border: none;
      width: 100%;
      height: 2px;
      display: block;
      background: #C9C9C9;
      position: absolute;
      top: 50%;
      left: 0%;
      transform: translate(0%, -50%); }
      @media only screen and (max-width: 767px) {
        body.about .history__slider hr {
          height: 1px; } }
    body.about .history__slider .swiper-nav {
      display: flex; }
      @media only screen and (max-width: 767px) {
        body.about .history__slider .swiper-nav {
          justify-content: flex-end; } }
      body.about .history__slider .swiper-nav button {
        padding: 0;
        width: 52px;
        height: 52px;
        position: static;
        margin: 0;
        margin-right: 40px; }
        @media only screen and (max-width: 767px) {
          body.about .history__slider .swiper-nav button {
            width: 30px;
            height: 30px;
            margin: 0 0 0 20px; } }
        body.about .history__slider .swiper-nav button:after {
          content: none; }
        @media only screen and (max-width: 767px) {
          body.about .history__slider .swiper-nav button:active {
            opacity: 0.7; } }
        @media only screen and (min-width: 768px) {
          body.about .history__slider .swiper-nav button:hover {
            opacity: 0.7; } }
        body.about .history__slider .swiper-nav button svg {
          width: 100%;
          height: 100%; }
          body.about .history__slider .swiper-nav button svg circle {
            transition: fill .3s, stroke .3s;
            stroke-width: 2px; }
          body.about .history__slider .swiper-nav button svg path {
            transition: fill .3s; }
      body.about .history__slider .swiper-nav .swiper-button-disabled {
        opacity: 1; }
        body.about .history__slider .swiper-nav .swiper-button-disabled svg circle {
          fill: #A6A6A6; }
  body.about .history .c-wrap {
    padding: 0 90px;
    max-width: 1280px;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.about .history .c-wrap {
        padding: 0 18px; } }
  body.about .history .swiper {
    overflow: visible; }
  body.about .history__cont {
    padding: 40px;
    background: #F7F7F7;
    width: 370px;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.about .history__cont {
        width: 274px;
        padding: 32px 12px; } }
    body.about .history__cont:first-of-type {
      border-radius: 8px 0 0 8px; }
      @media only screen and (max-width: 767px) {
        body.about .history__cont:first-of-type {
          border-radius: 4px 0 0 4px; } }
      body.about .history__cont:first-of-type:before {
        content: none; }
    body.about .history__cont:last-of-type {
      border-radius: 0 8px 8px 0; }
      @media only screen and (max-width: 767px) {
        body.about .history__cont:last-of-type {
          border-radius: 0 4px 4px 0; } }
    body.about .history__cont:before {
      content: "";
      width: 1px;
      height: calc(100% - 80px);
      display: block;
      background: #C9C9C9;
      position: absolute;
      top: 40px;
      left: 0; }
      @media only screen and (max-width: 767px) {
        body.about .history__cont:before {
          height: calc(100% - 64px);
          top: 32px; } }
    body.about .history__cont .c-title02 {
      margin-bottom: 6px; }
      @media only screen and (max-width: 767px) {
        body.about .history__cont .c-title02 {
          margin-bottom: 10px; } }
    @media only screen and (max-width: 767px) {
      body.about .history__cont .c-text01 {
        font-feature-settings: "palt"; } }
    body.about .history__cont .image {
      margin-top: 32px; }

body.business .whole {
  padding: 50px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.business .whole {
      padding: 40px 0 120px; } }
  body.business .whole .c-title {
    margin: 30px 0 80px; }
    @media only screen and (max-width: 767px) {
      body.business .whole .c-title {
        margin: 24px 0 32px; } }

body.business .main-visual {
  border-radius: 6px;
  overflow: hidden; }

body.business .c-wrap {
  padding: 0 50px; }
  @media only screen and (max-width: 767px) {
    body.business .c-wrap {
      padding: 0; } }

body.business .cont {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 120px;
  border-bottom: 1px solid #C9C9C9; }
  @media only screen and (max-width: 767px) {
    body.business .cont {
      padding-bottom: 75px; } }
  body.business .cont .read {
    margin: 100px 0 80px; }
    @media only screen and (max-width: 767px) {
      body.business .cont .read {
        margin: 50px 0; } }
    body.business .cont .read .c-title01 {
      color: #000036;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.business .cont .read .c-title01 {
          margin-bottom: 32px; } }
    body.business .cont .read .c-text01 {
      max-width: 902px; }
  body.business .cont .image-text dl {
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 64px; }
    @media only screen and (max-width: 767px) {
      body.business .cont .image-text dl {
        display: block;
        margin-bottom: 40px; } }
    body.business .cont .image-text dl:last-of-type {
      margin-bottom: 0; }
    body.business .cont .image-text dl dt {
      width: 48.18181818%; }
      @media only screen and (max-width: 767px) {
        body.business .cont .image-text dl dt {
          width: 100%; } }
      body.business .cont .image-text dl dt .image {
        height: 100%;
        min-height: 440px; }
        @media only screen and (max-width: 767px) {
          body.business .cont .image-text dl dt .image {
            min-height: 0; } }
        body.business .cont .image-text dl dt .image img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: center center; }
    body.business .cont .image-text dl dd {
      width: 51.81818182%;
      background: #F7F7F7;
      padding: 40px;
      display: flex;
      justify-content: center;
      flex-direction: column; }
      @media only screen and (max-width: 767px) {
        body.business .cont .image-text dl dd {
          width: 100%;
          padding: 32px 12px; } }
      body.business .cont .image-text dl dd .sub-title {
        margin-bottom: 20px; }
        @media only screen and (max-width: 767px) {
          body.business .cont .image-text dl dd .sub-title {
            margin-bottom: 8px; } }
        body.business .cont .image-text dl dd .sub-title .en {
          font-size: 24px;
          font-size: 2.4rem;
          letter-spacing: 0.05em;
          line-height: 1.5;
          font-weight: 500;
          font-family: "Montserrat", sans-serif;
          color: #000036;
          display: block;
          margin-bottom: 8px; }
          @media only screen and (max-width: 767px) {
            body.business .cont .image-text dl dd .sub-title .en {
              font-size: 16px;
              font-size: 1.6rem;
              margin-bottom: 6px; } }
        body.business .cont .image-text dl dd .sub-title .jp {
          display: block; }
      body.business .cont .image-text dl dd .c-attention {
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.06em;
        line-height: 1.4;
        margin-top: 8px; }
        @media only screen and (max-width: 767px) {
          body.business .cont .image-text dl dd .c-attention {
            font-size: 12px;
            font-size: 1.2rem;
            letter-spacing: 0.05em;
            line-height: 1.6; } }
  body.business .cont .btn-col {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 120px; }
    @media only screen and (max-width: 767px) {
      body.business .cont .btn-col {
        display: block;
        margin-top: 60px; } }
    body.business .cont .btn-col .c-btn {
      width: 291px;
      margin: 0 20px;
      white-space: nowrap; }
      @media only screen and (max-width: 767px) {
        body.business .cont .btn-col .c-btn {
          width: 290px;
          margin: 0 auto 20px;
          padding-left: 18px; } }
      @media only screen and (max-width: 767px) {
        body.business .cont .btn-col .c-btn:last-of-type {
          margin-bottom: 0; } }

body.business .quality {
  padding-top: 30px; }
  @media only screen and (max-width: 767px) {
    body.business .quality {
      padding-top: 25px; } }
  body.business .quality__box {
    padding: 80px 0;
    border-bottom: 1px solid #C9C9C9; }
    @media only screen and (max-width: 767px) {
      body.business .quality__box {
        padding: 50px 0; } }
    body.business .quality__box:last-of-type {
      padding-bottom: 0;
      border-bottom: none; }
    body.business .quality__box .c-sub-title {
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        body.business .quality__box .c-sub-title {
          margin-bottom: 20px; } }
    body.business .quality__box .c-title01 {
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        body.business .quality__box .c-title01 {
          margin-bottom: 16px; } }
    body.business .quality__box .c-attention {
      font-size: 13px;
      font-size: 1.3rem;
      line-height: 1.4;
      letter-spacing: 0.06em;
      margin-top: 12px; }
      @media only screen and (max-width: 767px) {
        body.business .quality__box .c-attention {
          font-size: 12px;
          font-size: 1.2rem;
          line-height: 1.6;
          letter-spacing: 0.05em;
          margin-top: 8px; } }
    body.business .quality__box .c-text01 {
      max-width: 820px;
      font-feature-settings: "palt"; }
    body.business .quality__box .mb80 {
      margin-bottom: 80px; }
      @media only screen and (max-width: 767px) {
        body.business .quality__box .mb80 {
          margin-bottom: 50px; } }
    body.business .quality__box .image-col {
      display: flex;
      justify-content: space-between;
      margin-bottom: 24px; }
      @media only screen and (max-width: 767px) {
        body.business .quality__box .image-col {
          display: block;
          margin-bottom: 32px; } }
      body.business .quality__box .image-col .image {
        width: 48.18181818%;
        border-radius: 8px;
        overflow: hidden; }
        @media only screen and (max-width: 767px) {
          body.business .quality__box .image-col .image {
            width: 100%;
            margin: 0 0 20px; } }
        @media only screen and (max-width: 767px) {
          body.business .quality__box .image-col .image:last-of-type {
            margin-bottom: 0; } }
    body.business .quality__box .c-title03 {
      margin-bottom: 12px; }
    body.business .quality__box .c-title02 {
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        body.business .quality__box .c-title02 {
          margin-bottom: 12px; } }
    body.business .quality__box .col3 {
      display: flex;
      margin-top: 80px; }
      @media only screen and (max-width: 767px) {
        body.business .quality__box .col3 {
          margin-top: 50px;
          display: block; } }
      body.business .quality__box .col3 li {
        border-radius: 8px;
        overflow: hidden;
        background: #F7F7F7;
        width: 30.90909091%;
        margin-right: 3.63636364%; }
        @media only screen and (max-width: 767px) {
          body.business .quality__box .col3 li {
            width: 100%;
            margin: 0 0 25px; } }
        body.business .quality__box .col3 li:nth-of-type(3n) {
          margin-right: 0; }
        @media only screen and (max-width: 767px) {
          body.business .quality__box .col3 li:last-of-type {
            margin-bottom: 0; } }
        body.business .quality__box .col3 li .text {
          padding: 20px 24px; }
          @media only screen and (max-width: 767px) {
            body.business .quality__box .col3 li .text {
              padding: 20px 12px; } }
          body.business .quality__box .col3 li .text .c-title03 {
            color: #000;
            display: block;
            margin-bottom: 8px;
            line-height: 1.6; }
          body.business .quality__box .col3 li .text .c-text01 {
            margin-bottom: 0; }

body.contact .whole {
  padding: 50px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.contact .whole {
      padding: 40px 0 120px; } }
  body.contact .whole .c-title {
    margin: 30px 0 64px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .c-title {
        margin: 24px 0 32px; } }

body.contact .c-wrap {
  max-width: 850px;
  margin: 0 auto; }

body.contact .mt64 {
  margin-top: 64px; }
  @media only screen and (max-width: 767px) {
    body.contact .mt64 {
      margin-top: 40px; } }

body.contact .mb24 {
  margin-bottom: 24px; }
  @media only screen and (max-width: 767px) {
    body.contact .mb24 {
      margin-bottom: 20px; } }

body.contact .ml0 {
  margin-left: 0 !important; }

body.contact .mt0 {
  margin-top: 0 !important; }

body.contact .mb {
  margin-bottom: 12px !important; }
  @media only screen and (max-width: 767px) {
    body.contact .mb {
      margin-bottom: 8px !important; } }

body.contact .cont .thanks .prev {
  display: flex;
  align-items: center;
  width: max-content;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-top: 64px; }
  body.contact .cont .thanks .prev span {
    margin-right: 12px; }
  body.contact .cont .thanks .prev svg {
    display: block;
    position: relative;
    top: 1px; }

body.contact .cont__head {
  margin-bottom: 80px; }
  @media only screen and (max-width: 767px) {
    body.contact .cont__head {
      margin-bottom: 40px; } }
  body.contact .cont__head .c-title02 {
    color: #000036;
    margin-bottom: 16px; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__head .c-title02 {
        margin-bottom: 10px; } }
  body.contact .cont__head .btn-col {
    display: flex;
    align-items: center;
    margin-top: 32px; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__head .btn-col {
        display: block; } }
  body.contact .cont__head .c-btn {
    width: 280px;
    margin-right: 40px; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__head .c-btn {
        width: 290px;
        height: 40px;
        padding-right: 16px;
        padding-left: 20px;
        margin: 20px auto 0px;
        white-space: nowrap; } }
    @media only screen and (max-width: 767px) {
      body.contact .cont__head .c-btn:first-of-type {
        margin-top: 0; } }
  body.contact .cont__head .c-text01 small {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.75;
    letter-spacing: 0.009em;
    display: block; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__head .c-text01 small {
        line-height: 1.6;
        letter-spacing: 0.005em;
        margin-top: 4px; } }
  body.contact .cont__head .c-title03 {
    margin-top: 32px;
    position: relative;
    padding-left: 0.9em;
    margin-bottom: 9px; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__head .c-title03 {
        margin-bottom: 10px; } }
    body.contact .cont__head .c-title03:before {
      content: "・";
      position: absolute;
      top: 0;
      left: 0; }
  body.contact .cont__head .attention {
    padding-left: 10px;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.009em;
    line-height: 1.75;
    color: #000036;
    border-left: 2px solid #000036;
    margin: 16px 0; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__head .attention {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.6;
        letter-spacing: 0.005em;
        margin: 10px 0 12px; } }
    body.contact .cont__head .attention strong {
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__head .attention strong {
          display: block;
          letter-spacing: 0.008em; } }
    @media only screen and (max-width: 767px) {
      body.contact .cont__head .attention span {
        margin-left: -0.6em;
        margin-top: 4px; } }

body.contact .cont__form {
  background: #F7F7F7;
  padding: 45px 80px 80px; }
  @media only screen and (max-width: 767px) {
    body.contact .cont__form {
      padding: 20px 20px 60px; } }
  body.contact .cont__form .w133 {
    width: 133px !important; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .w133 {
        width: 100% !important; } }
  body.contact .cont__form .w166 {
    width: 166px !important; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .w166 {
        width: 100% !important; } }
  @media only screen and (max-width: 767px) {
    body.contact .cont__form .spchange {
      width: calc(100% - 22px) !important; } }
  body.contact .cont__form .w123 {
    width: 123px !important; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .w123 {
        width: 148px !important; } }
  body.contact .cont__form .formArea table {
    width: 100%; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea table {
        display: block; } }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea table tbody {
        display: block; } }
    body.contact .cont__form .formArea table tbody tr {
      border-bottom: 1px solid #C9C9C9; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea table tbody tr {
          display: block;
          padding: 20px 0; } }
      body.contact .cont__form .formArea table tbody tr th {
        width: 240px;
        vertical-align: top;
        padding: 38px 0;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.75; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea table tbody tr th {
            display: block;
            width: 100%;
            padding: 0;
            margin-bottom: 8px;
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.008em; } }
        body.contact .cont__form .formArea table tbody tr th em {
          display: inline-block;
          padding: 2px 7px 3px;
          border-radius: 3px;
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.05em;
          line-height: 1;
          color: #fff;
          background: #000036;
          margin-left: 7px;
          position: relative;
          top: -1px; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea table tbody tr th em {
              padding: 2px 4px 3px;
              font-size: 11px;
              font-size: 1.1rem;
              margin-left: 2px;
              border-radius: 1px; } }
      body.contact .cont__form .formArea table tbody tr td {
        width: calc(100% - 240px);
        padding: 24px 0;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea table tbody tr td {
            display: block;
            width: 100%;
            padding: 0; } }
        body.contact .cont__form .formArea table tbody tr td span {
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.75;
          margin: 0 8px; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea table tbody tr td span {
              font-size: 14px;
              font-size: 1.4rem; } }
        body.contact .cont__form .formArea table tbody tr td p {
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: 0.009em;
          line-height: 1.75; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea table tbody tr td p {
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: 0.008em; } }
        body.contact .cont__form .formArea table tbody tr td input[type="text"] {
          width: 100%;
          height: 44px;
          border-radius: 2px;
          border: 1px solid #C9C9C9;
          padding: 9px 10px;
          background: #fff;
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.75;
          letter-spacing: 0.009em;
          font-weight: 400; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea table tbody tr td input[type="text"] {
              height: 40px;
              padding: 8px 6px;
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: 0.008em; } }
          body.contact .cont__form .formArea table tbody tr td input[type="text"]::placeholder {
            color: #C9C9C9; }
        body.contact .cont__form .formArea table tbody tr td textarea {
          width: 100%;
          height: 148px;
          border-radius: 2px;
          border: 1px solid #C9C9C9;
          padding: 9px 10px;
          background: #fff;
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.75;
          letter-spacing: 0.009em;
          font-weight: 400;
          resize: none; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea table tbody tr td textarea {
              height: 163px;
              padding: 8px 6px;
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: 0.008em; } }
          body.contact .cont__form .formArea table tbody tr td textarea::placeholder {
            color: #C9C9C9; }
        body.contact .cont__form .formArea table tbody tr td .select-box {
          position: relative; }
          body.contact .cont__form .formArea table tbody tr td .select-box svg {
            pointer-events: none;
            position: absolute;
            top: 50%;
            right: 16px;
            transform: translate(0%, -50%); }
            @media only screen and (max-width: 767px) {
              body.contact .cont__form .formArea table tbody tr td .select-box svg {
                right: 13px; } }
        body.contact .cont__form .formArea table tbody tr td select {
          width: 100%;
          height: 44px;
          border-radius: 2px;
          border: 1px solid #C9C9C9;
          padding: 9px 10px;
          background: #fff;
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.75;
          letter-spacing: 0.009em;
          font-weight: 400; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea table tbody tr td select {
              height: 40px;
              padding: 8px 6px;
              font-size: 14px;
              font-size: 1.4rem;
              letter-spacing: 0.008em; } }
  body.contact .cont__form .formArea .qa {
    margin-top: 40px;
    border-bottom: 1px solid #C9C9C9; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea .qa {
        margin-top: 32px; } }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea .qa .radioList {
        margin-top: 0; } }
    body.contact .cont__form .formArea .qa strong {
      display: block;
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.75;
      margin-bottom: 32px; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea .qa strong {
          font-size: 14px;
          font-size: 1.4rem;
          margin-bottom: 20px; } }
    body.contact .cont__form .formArea .qa hr {
      border: none;
      width: 100%;
      height: 1px;
      display: block;
      background: #C9C9C9;
      margin: 40px 0; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea .qa hr {
          margin: 20px 0; } }
    body.contact .cont__form .formArea .qa .w146 {
      width: 146px !important;
      margin: 0 9px; }
    body.contact .cont__form .formArea .qa span {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.75; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea .qa span {
          font-size: 14px;
          font-size: 1.4rem; } }
    body.contact .cont__form .formArea .qa dl {
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea .qa dl {
          margin-bottom: 32px; } }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea .qa dl:last-of-type {
          margin-bottom: 20px; } }
      body.contact .cont__form .formArea .qa dl dt {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.75; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .qa dl dt {
            display: block;
            width: 100%;
            padding: 0;
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.008em; } }
        body.contact .cont__form .formArea .qa dl dt em {
          display: inline-block;
          padding: 2px 7px 3px;
          border-radius: 3px;
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.05em;
          line-height: 1;
          color: #fff;
          background: #000036;
          margin-left: 7px;
          position: relative;
          top: -1px; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea .qa dl dt em {
              padding: 2px 4px 3px;
              font-size: 11px;
              font-size: 1.1rem;
              margin-left: 2px;
              border-radius: 1px; } }
      body.contact .cont__form .formArea .qa dl dd p {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.75;
        margin-left: 10px;
        margin-top: 20px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .qa dl dd p {
            font-size: 14px;
            font-size: 1.4rem;
            margin: 10px 0 0; } }
      body.contact .cont__form .formArea .qa dl dd input[type="text"] {
        width: 100%;
        height: 44px;
        border-radius: 2px;
        border: 1px solid #C9C9C9;
        padding: 9px 10px;
        background: #fff;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.75;
        letter-spacing: 0.009em;
        font-weight: 400;
        margin-top: 16px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .qa dl dd input[type="text"] {
            height: 40px;
            padding: 8px 6px;
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.008em;
            margin-top: 8px; } }
        body.contact .cont__form .formArea .qa dl dd input[type="text"]::placeholder {
          color: #C9C9C9; }
      body.contact .cont__form .formArea .qa dl dd textarea {
        width: 100%;
        height: 148px;
        border-radius: 2px;
        border: 1px solid #C9C9C9;
        padding: 9px 10px;
        background: #fff;
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.75;
        letter-spacing: 0.009em;
        font-weight: 400;
        resize: none;
        margin-top: 16px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .qa dl dd textarea {
            height: 163px;
            padding: 8px 6px;
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.008em; } }
        body.contact .cont__form .formArea .qa dl dd textarea::placeholder {
          color: #C9C9C9; }
  body.contact .cont__form .formArea .radioList {
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea .radioList {
        margin-top: -10px; } }
    body.contact .cont__form .formArea .radioList li {
      position: relative;
      margin-right: 20px;
      margin-top: 12px; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea .radioList li {
          margin-top: 8px; } }
      body.contact .cont__form .formArea .radioList li input[type="radio"] {
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        width: 1px;
        height: 1px; }
        body.contact .cont__form .formArea .radioList li input[type="radio"]:checked + label > i:before {
          opacity: 1; }
      body.contact .cont__form .formArea .radioList li label {
        display: flex;
        align-items: center; }
        body.contact .cont__form .formArea .radioList li label i {
          width: 16px;
          height: 16px;
          border-radius: 50%;
          border: 1px solid #C9C9C9;
          background: #fff;
          margin-right: 8px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea .radioList li label i {
              width: 16px;
              height: 16px;
              margin-right: 4px; } }
          body.contact .cont__form .formArea .radioList li label i:before {
            content: "";
            width: 10px;
            height: 10px;
            display: inline-block;
            background: #000036;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            border-radius: 50%;
            opacity: 0; }
            @media only screen and (max-width: 767px) {
              body.contact .cont__form .formArea .radioList li label i:before {
                width: 10px;
                height: 10px; } }
        body.contact .cont__form .formArea .radioList li label span {
          font-size: 15px;
          font-size: 1.5rem;
          line-height: 1.75;
          margin: 0; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea .radioList li label span {
              font-size: 14px;
              font-size: 1.4rem;
              font-feature-settings: "palt"; } }
  body.contact .cont__form .formArea .privacy {
    margin-top: 60px; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea .privacy {
        margin-top: 32px; } }
    body.contact .cont__form .formArea .privacy strong {
      display: block;
      text-align: center;
      margin-bottom: 20px;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.003em;
      line-height: 1.6;
      font-weight: 500;
      color: #000036; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea .privacy strong {
          font-size: 14px;
          font-size: 1.4rem;
          letter-spacing: 0.008em;
          line-height: 1.75;
          font-weight: 400; } }
    body.contact .cont__form .formArea .privacy__cont {
      background: #fff;
      height: 262px;
      overflow-y: scroll; }
      @media only screen and (max-width: 767px) {
        body.contact .cont__form .formArea .privacy__cont {
          height: 174px; } }
      body.contact .cont__form .formArea .privacy__cont > div {
        padding: 25px 24px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .privacy__cont > div {
            padding: 12px; } }
      body.contact .cont__form .formArea .privacy__cont__wrap hr {
        border: none;
        width: 100%;
        height: 1px;
        display: block;
        background: #C9C9C9; }
      body.contact .cont__form .formArea .privacy__cont__wrap .c-title03 {
        margin-bottom: 12px;
        display: block;
        font-feature-settings: "palt"; }
      body.contact .cont__form .formArea .privacy__cont__wrap dl {
        padding-top: 24px;
        margin-bottom: 34px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .privacy__cont__wrap dl {
            padding-top: 20px;
            margin-bottom: 20px; } }
        body.contact .cont__form .formArea .privacy__cont__wrap dl.pt0 {
          padding-top: 0; }
        body.contact .cont__form .formArea .privacy__cont__wrap dl dd a {
          text-decoration: underline; }
        body.contact .cont__form .formArea .privacy__cont__wrap dl dd .c-text01 {
          margin-bottom: 12px; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea .privacy__cont__wrap dl dd .c-text01 {
              font-size: 12px;
              font-size: 1.2rem;
              line-height: 1.6;
              margin-bottom: 12px; } }
          body.contact .cont__form .formArea .privacy__cont__wrap dl dd .c-text01:last-of-type {
            margin-bottom: 0; }
        body.contact .cont__form .formArea .privacy__cont__wrap dl dd ol {
          margin-top: 8px;
          margin-bottom: 16px;
          counter-reset: number 0; }
          body.contact .cont__form .formArea .privacy__cont__wrap dl dd ol > li {
            padding-left: 2em;
            position: relative;
            font-size: 16px;
            font-size: 1.6rem;
            letter-spacing: 0.05em;
            line-height: 1.75;
            margin-bottom: 8px; }
            @media only screen and (max-width: 767px) {
              body.contact .cont__form .formArea .privacy__cont__wrap dl dd ol > li {
                font-size: 12px;
                font-size: 1.2rem;
                line-height: 1.6;
                margin-bottom: 6px; } }
            body.contact .cont__form .formArea .privacy__cont__wrap dl dd ol > li:last-of-type {
              margin-bottom: 0; }
            body.contact .cont__form .formArea .privacy__cont__wrap dl dd ol > li:before {
              counter-increment: number 1;
              content: "（" counter(number) "）";
              position: absolute;
              top: 0;
              left: -0.5em; }
        body.contact .cont__form .formArea .privacy__cont__wrap dl dd .alphabet > li {
          margin-bottom: 28px; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea .privacy__cont__wrap dl dd .alphabet > li {
              margin-bottom: 14px; } }
          body.contact .cont__form .formArea .privacy__cont__wrap dl dd .alphabet > li:last-of-type {
            margin-bottom: 0; }
          body.contact .cont__form .formArea .privacy__cont__wrap dl dd .alphabet > li:before {
            content: "（" counter(number, lower-alpha) "）"; }
      body.contact .cont__form .formArea .privacy__cont__wrap .col {
        display: flex;
        justify-content: space-between; }
        body.contact .cont__form .formArea .privacy__cont__wrap .col i {
          width: 150px; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea .privacy__cont__wrap .col i {
              width: 75px; } }
        body.contact .cont__form .formArea .privacy__cont__wrap .col .c-text01 {
          text-align: right;
          margin-top: 98px; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea .privacy__cont__wrap .col .c-text01 {
              margin-top: 42px; } }
      body.contact .cont__form .formArea .privacy__cont__title {
        font-size: 22px;
        font-size: 2.2rem;
        letter-spacing: 0.009em;
        line-height: 1.6;
        color: #000036;
        padding-bottom: 24px;
        border-bottom: 1px solid #C9C9C9; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .privacy__cont__title {
            font-size: 15px;
            font-size: 1.5rem;
            padding-bottom: 11px; } }
      body.contact .cont__form .formArea .privacy__cont__text {
        padding-top: 24px;
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.009em;
        line-height: 1.75;
        font-feature-settings: "palt";
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .privacy__cont__text {
            padding-top: 11px;
            font-size: 12px;
            font-size: 1.2rem;
            line-height: 1.6;
            letter-spacing: 0.005em; } }
  body.contact .cont__form .formArea .agree {
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto 0;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea .agree {
        margin-top: 20px; } }
    body.contact .cont__form .formArea .agree.disabled {
      opacity: 0.4;
      pointer-events: none; }
    body.contact .cont__form .formArea .agree input[type="checkbox"] {
      position: absolute;
      top: 0;
      left: 0; }
      body.contact .cont__form .formArea .agree input[type="checkbox"]:checked + label > i:before {
        opacity: 1; }
      body.contact .cont__form .formArea .agree input[type="checkbox"]:disabled + label {
        opacity: 0.4; }
    body.contact .cont__form .formArea .agree label {
      display: flex;
      justify-content: center;
      align-items: center; }
      body.contact .cont__form .formArea .agree label i {
        width: 20px;
        height: 20px;
        border-radius: 2px;
        background: #fff;
        border: 1px solid #C9C9C9;
        margin-right: 8px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .agree label i {
            width: 16px;
            height: 16px;
            margin-right: 6px; } }
        body.contact .cont__form .formArea .agree label i:before {
          content: "";
          width: 12px;
          height: 12px;
          display: inline-block;
          background: #000036;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          opacity: 0; }
          @media only screen and (max-width: 767px) {
            body.contact .cont__form .formArea .agree label i:before {
              width: 9px;
              height: 9px; } }
      body.contact .cont__form .formArea .agree label span {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.003em;
        line-height: 1.6; }
        @media only screen and (max-width: 767px) {
          body.contact .cont__form .formArea .agree label span {
            font-size: 14px;
            font-size: 1.4rem;
            letter-spacing: 0.008em;
            line-height: 1.75; } }
  body.contact .cont__form .formArea .attention {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.009em;
    line-height: 1.75;
    text-align: center;
    margin-top: 32px; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea .attention {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.6;
        letter-spacing: 0.005em;
        text-align: left; } }
  body.contact .cont__form .formArea .btn-submit {
    width: 300px;
    height: 56px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 80px auto 0;
    transition: color .3s, background-color .3s;
    background: #000036;
    color: #fff;
    border: 1px solid #000036;
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.005em;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      body.contact .cont__form .formArea .btn-submit {
        width: 100%;
        height: 50px;
        margin-top: 40px;
        font-size: 14px;
        font-size: 1.4rem;
        font-weight: 400; } }
    @media only screen and (min-width: 768px) {
      body.contact .cont__form .formArea .btn-submit:hover {
        background: transparent;
        color: #000036; } }

body.howtouse .header {
  opacity: 0;
  visibility: hidden; }

body.howtouse .whole {
  padding-bottom: 100px; }
  @media only screen and (max-width: 767px) {
    body.howtouse .whole {
      padding-bottom: 50px; } }
  body.howtouse .whole .inner {
    max-width: 848px; }
  body.howtouse .whole .c-title01 {
    text-align: center;
    margin-bottom: 60px; }
  body.howtouse .whole dl {
    margin-bottom: 80px; }
    body.howtouse .whole dl dd .c-text01 {
      display: block;
      margin-top: 10px; }
  body.howtouse .whole iframe {
    margin-top: 20px; }
    @media only screen and (max-width: 767px) {
      body.howtouse .whole iframe {
        margin-top: 16px; } }

body.news_detail .whole {
  padding: 50px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .whole {
      padding: 40px 0 120px; } }

body.news_detail .news-detail-wrap {
  max-width: 850px;
  margin: 120px auto 0; }
  @media only screen and (max-width: 767px) {
    body.news_detail .news-detail-wrap {
      margin-top: 50px; } }
  body.news_detail .news-detail-wrap .date-cate {
    display: flex;
    align-items: center;
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .news-detail-wrap .date-cate {
        margin-bottom: 20px; } }
    body.news_detail .news-detail-wrap .date-cate .date {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.75;
      color: #888888; }
      @media only screen and (max-width: 767px) {
        body.news_detail .news-detail-wrap .date-cate .date {
          font-size: 13px;
          font-size: 1.3rem; } }
    body.news_detail .news-detail-wrap .date-cate .cate {
      margin-left: 19px;
      display: inline-block;
      padding: 4px 10px;
      border-radius: 16px;
      color: #fff;
      background: #000036;
      font-size: 12px;
      font-size: 1.2rem;
      letter-spacing: 0.05em;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.news_detail .news-detail-wrap .date-cate .cate {
          padding: 5px 7px;
          margin-left: 16px; } }
  body.news_detail .news-detail-wrap .title {
    font-size: 32px;
    font-size: 3.2rem;
    line-height: 1.6;
    letter-spacing: 0.011em;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.news_detail .news-detail-wrap .title {
        font-size: 21px;
        font-size: 2.1rem;
        margin-bottom: 20px; } }
  body.news_detail .news-detail-wrap .post {
    font-size: 16px;
    font-size: 1.6rem;
    letter-spacing: 0.05em;
    line-height: 1.75; }
    @media only screen and (max-width: 767px) {
      body.news_detail .news-detail-wrap .post {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.05em; } }
    body.news_detail .news-detail-wrap .post p {
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .news-detail-wrap .post p {
          margin-bottom: 32px; } }
    body.news_detail .news-detail-wrap .post a {
      color: #428AC9;
      text-decoration: underline; }
    body.news_detail .news-detail-wrap .post img {
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .news-detail-wrap .post img {
          margin-bottom: 32px; } }
    body.news_detail .news-detail-wrap .post h2 {
      font-size: 22px;
      font-size: 2.2rem;
      letter-spacing: 0.003em;
      line-height: 1.6;
      font-weight: 500;
      font-family: "Shippori Mincho", serif;
      color: #000036;
      margin-bottom: 40px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .news-detail-wrap .post h2 {
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: 0.01em;
          line-height: 1.4;
          margin-bottom: 32px; } }
    body.news_detail .news-detail-wrap .post h3 {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.003em;
      line-height: 1.6;
      font-weight: 500;
      font-family: "Shippori Mincho", serif;
      color: #000036;
      margin-bottom: 16px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .news-detail-wrap .post h3 {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.4;
          letter-spacing: 0.01em;
          margin-bottom: 12px; } }
    body.news_detail .news-detail-wrap .post ul {
      margin-bottom: 1em; }
    body.news_detail .news-detail-wrap .post ol {
      margin-bottom: 1em; }
      body.news_detail .news-detail-wrap .post ol li {
        padding-left: 1em;
        position: relative; }
        body.news_detail .news-detail-wrap .post ol li:before {
          content: "・";
          position: absolute;
          top: 0;
          left: 0; }

body.news .whole {
  padding: 50px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.news .whole {
      padding: 40px 0 120px; } }
  body.news .whole .c-title {
    margin: 30px 0 80px; }
    @media only screen and (max-width: 767px) {
      body.news .whole .c-title {
        margin: 24px 0 32px; } }

body.news .news-wrap {
  max-width: 1100px;
  margin: 0 auto; }

body.news .cate-list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 17px; }
  @media only screen and (max-width: 767px) {
    body.news .cate-list {
      margin-bottom: 16px; } }
  body.news .cate-list li {
    margin-right: 15px;
    margin-bottom: 15px; }
    @media only screen and (max-width: 767px) {
      body.news .cate-list li {
        margin-right: 16px;
        margin-bottom: 16px; } }
    body.news .cate-list li.current a {
      background: #000036; }
    body.news .cate-list li a {
      min-width: 104px;
      height: 32px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.05em;
      font-weight: 500;
      background: #C9C9C9;
      padding: 0 21px;
      padding-bottom: 1px;
      transition: background-color .3s; }
      @media only screen and (min-width: 768px) {
        body.news .cate-list li a:hover {
          background: #000036; } }
      @media only screen and (max-width: 767px) {
        body.news .cate-list li a {
          min-width: 64px;
          height: 20px;
          font-size: 12px;
          font-size: 1.2rem;
          padding: 0 7px; } }

body.policy .whole {
  padding: 50px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.policy .whole {
      padding: 40px 0 120px; } }
  body.policy .whole .c-title {
    margin: 30px 0 80px; }
    @media only screen and (max-width: 767px) {
      body.policy .whole .c-title {
        margin: 24px 0 32px; } }

body.policy .policy-wrap {
  max-width: 850px;
  margin: 0 auto;
  font-size: 16px;
  font-size: 1.6rem;
  letter-spacing: 0.009em;
  line-height: 1.75; }
  @media only screen and (max-width: 767px) {
    body.policy .policy-wrap {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.008em; } }
  body.policy .policy-wrap p {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.policy .policy-wrap p {
        margin-bottom: 32px; } }
  body.policy .policy-wrap dl {
    margin-bottom: 64px; }
    body.policy .policy-wrap dl:last-of-type {
      margin-bottom: 0; }
    @media only screen and (max-width: 767px) {
      body.policy .policy-wrap dl {
        margin-bottom: 32px; } }
    body.policy .policy-wrap dl dd {
      counter-reset: alphabet 0; }
      body.policy .policy-wrap dl dd .mt100 {
        margin-top: 100px; }
        @media only screen and (max-width: 767px) {
          body.policy .policy-wrap dl dd .mt100 {
            margin-top: 50px; } }
      body.policy .policy-wrap dl dd p {
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.policy .policy-wrap dl dd p {
            margin-bottom: 12px; } }
      body.policy .policy-wrap dl dd ul {
        margin-top: 8px;
        margin-bottom: 16px; }
        @media only screen and (max-width: 767px) {
          body.policy .policy-wrap dl dd ul {
            margin-top: 6px;
            margin-bottom: 14px; } }
        body.policy .policy-wrap dl dd ul:last-of-type {
          margin-bottom: 0; }
      body.policy .policy-wrap dl dd .alphabet {
        margin: 40px 0; }
        @media only screen and (max-width: 767px) {
          body.policy .policy-wrap dl dd .alphabet {
            margin: 32px 0; } }
        body.policy .policy-wrap dl dd .alphabet li {
          padding-left: 1em; }
          body.policy .policy-wrap dl dd .alphabet li:before {
            counter-increment: alphabet 1;
            content: counter(alphabet, lower-alpha) "）"; }
      body.policy .policy-wrap dl dd blockquote {
        margin: 64px 0;
        background: #F7F7F7;
        padding: 34px 24px; }
        @media only screen and (max-width: 767px) {
          body.policy .policy-wrap dl dd blockquote {
            padding: 24px 12px;
            margin: 40px 0; } }
        body.policy .policy-wrap dl dd blockquote .c-title03 {
          margin-bottom: 24px; }
          @media only screen and (max-width: 767px) {
            body.policy .policy-wrap dl dd blockquote .c-title03 {
              margin-bottom: 16px; } }
        body.policy .policy-wrap dl dd blockquote hr {
          border: none;
          display: block;
          width: 100%;
          height: 1px;
          background: #C9C9C9;
          margin: 40px 0; }
          @media only screen and (max-width: 767px) {
            body.policy .policy-wrap dl dd blockquote hr {
              margin: 20px 0; } }
        body.policy .policy-wrap dl dd blockquote p {
          margin-bottom: 0; }
      body.policy .policy-wrap dl dd .col {
        display: flex;
        justify-content: space-between;
        align-items: flex-end;
        margin-top: 80px; }
        @media only screen and (max-width: 767px) {
          body.policy .policy-wrap dl dd .col {
            margin-top: 64px; } }
        body.policy .policy-wrap dl dd .col .privacy {
          width: 150px; }
          @media only screen and (max-width: 767px) {
            body.policy .policy-wrap dl dd .col .privacy {
              width: 75px; } }
        body.policy .policy-wrap dl dd .col p {
          text-align: right; }
  body.policy .policy-wrap h2 {
    font-size: 22px;
    font-size: 2.2rem;
    letter-spacing: 0.003em;
    line-height: 1.6;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    color: #000036;
    margin-bottom: 12px; }
    @media only screen and (max-width: 767px) {
      body.policy .policy-wrap h2 {
        font-size: 18px;
        font-size: 1.8rem;
        letter-spacing: 0.01em;
        line-height: 1.4; } }
  body.policy .policy-wrap a {
    text-decoration: underline;
    text-underline-offset: 2px; }
  body.policy .policy-wrap ul {
    counter-reset: number 0; }
    body.policy .policy-wrap ul li {
      padding-left: 2em;
      position: relative;
      margin-bottom: 8px; }
      body.policy .policy-wrap ul li:last-of-type {
        margin-bottom: 0; }
      body.policy .policy-wrap ul li:before {
        counter-increment: number 1;
        content: "（" counter(number) "）";
        position: absolute;
        top: 0;
        left: -0.5em; }
    body.policy .policy-wrap ul.simple li {
      margin-bottom: 2em; }
      body.policy .policy-wrap ul.simple li:before {
        content: counter(number) ".";
        left: 0.5em; }
  body.policy .policy-wrap ol li {
    padding-left: 1em;
    position: relative; }
    body.policy .policy-wrap ol li:before {
      content: "・";
      position: absolute;
      top: 0;
      left: 0; }
  body.policy .policy-wrap ol.simple li {
    margin-bottom: 2em;
    padding-left: 1.5em; }
    body.policy .policy-wrap ol.simple li:before {
      left: 0.2em; }

body.recruit .whole {
  padding: 50px 0 0px; }
  @media only screen and (max-width: 767px) {
    body.recruit .whole {
      padding: 40px 0 0px; } }
  body.recruit .whole .c-title {
    margin: 30px 0 80px; }
    @media only screen and (max-width: 767px) {
      body.recruit .whole .c-title {
        margin: 24px 0 32px; } }

body.recruit .main-visual {
  border-radius: 6px;
  overflow: hidden; }

body.recruit .c-wrap {
  padding: 0 50px; }
  @media only screen and (max-width: 767px) {
    body.recruit .c-wrap {
      padding: 0; } }

body.recruit .message {
  padding: 100px 0 70px; }
  @media only screen and (max-width: 767px) {
    body.recruit .message {
      padding: 50px 0; } }
  body.recruit .message .c-sub-title {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.recruit .message .c-sub-title {
        margin-bottom: 32px; } }
  body.recruit .message .c-title01 {
    margin-bottom: 32px; }
    @media only screen and (max-width: 767px) {
      body.recruit .message .c-title01 {
        margin-bottom: 25px; } }
  body.recruit .message p {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 2.2;
    font-feature-settings: "palt"; }
    @media only screen and (max-width: 767px) {
      body.recruit .message p {
        font-size: 15px;
        font-size: 1.5rem;
        line-height: 1.75; } }

body.recruit .voice {
  padding: 70px 0;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.recruit .voice {
      padding: 50px 0; } }
  body.recruit .voice .c-sub-title {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.recruit .voice .c-sub-title {
        margin-bottom: 20px; } }
  body.recruit .voice__slider {
    margin-top: 64px;
    position: relative; }
    @media only screen and (max-width: 767px) {
      body.recruit .voice__slider {
        margin-top: 20px; } }
    body.recruit .voice__slider .swiper-nav {
      display: flex;
      justify-content: flex-end;
      margin-top: 40px; }
      @media only screen and (max-width: 767px) {
        body.recruit .voice__slider .swiper-nav {
          margin-top: -53px;
          margin-bottom: 23px; } }
      body.recruit .voice__slider .swiper-nav .swiper-button-prev {
        left: -92px; }
        @media only screen and (max-width: 1310px) {
          body.recruit .voice__slider .swiper-nav .swiper-button-prev {
            left: -75px; } }
      body.recruit .voice__slider .swiper-nav .swiper-button-next {
        right: -92px; }
        @media only screen and (max-width: 1310px) {
          body.recruit .voice__slider .swiper-nav .swiper-button-next {
            right: -75px; } }
      body.recruit .voice__slider .swiper-nav .swiper-button-prev, body.recruit .voice__slider .swiper-nav .swiper-button-next {
        padding: 0;
        width: 52px;
        height: 52px;
        position: absolute;
        margin: 0;
        padding: 0;
        transition: .3s;
        top: 50%;
        transform: translate(0, -50%); }
        @media only screen and (max-width: 767px) {
          body.recruit .voice__slider .swiper-nav .swiper-button-prev, body.recruit .voice__slider .swiper-nav .swiper-button-next {
            position: static;
            width: 30px;
            height: 30px;
            margin-left: 20px;
            transform: translate(0, 0%); } }
        @media only screen and (max-width: 767px) {
          body.recruit .voice__slider .swiper-nav .swiper-button-prev:active, body.recruit .voice__slider .swiper-nav .swiper-button-next:active {
            opacity: 0.7; } }
        @media only screen and (min-width: 768px) {
          body.recruit .voice__slider .swiper-nav .swiper-button-prev:hover, body.recruit .voice__slider .swiper-nav .swiper-button-next:hover {
            opacity: 0.7; } }
        body.recruit .voice__slider .swiper-nav .swiper-button-prev:after, body.recruit .voice__slider .swiper-nav .swiper-button-next:after {
          content: none; }
        body.recruit .voice__slider .swiper-nav .swiper-button-prev svg, body.recruit .voice__slider .swiper-nav .swiper-button-next svg {
          width: 100%;
          height: 100%; }
          body.recruit .voice__slider .swiper-nav .swiper-button-prev svg circle, body.recruit .voice__slider .swiper-nav .swiper-button-next svg circle {
            transition: fill .3s, stroke .3s;
            stroke-width: 2px; }
          body.recruit .voice__slider .swiper-nav .swiper-button-prev svg path, body.recruit .voice__slider .swiper-nav .swiper-button-next svg path {
            transition: fill .3s; }
      body.recruit .voice__slider .swiper-nav .swiper-button-disabled {
        opacity: 1; }
        body.recruit .voice__slider .swiper-nav .swiper-button-disabled svg circle {
          fill: #A6A6A6; }
    body.recruit .voice__slider .swiper {
      overflow: visible; }
    body.recruit .voice__slider .swiper-slide {
      background: #F7F7F7;
      border-radius: 8px;
      overflow: hidden;
      height: auto;
      opacity: 0.4;
      transition: opacity .3s; }
      @media only screen and (max-width: 767px) {
        body.recruit .voice__slider .swiper-slide {
          border-radius: 4px; } }
      body.recruit .voice__slider .swiper-slide .text {
        padding: 22px 24px 40px; }
        @media only screen and (max-width: 767px) {
          body.recruit .voice__slider .swiper-slide .text {
            padding: 12px 12px 25px; } }
        body.recruit .voice__slider .swiper-slide .text .name {
          display: flex;
          padding-bottom: 20px;
          margin-bottom: 24px;
          border-bottom: 1px solid #C9C9C9; }
          @media only screen and (min-width: 768px) {
            body.recruit .voice__slider .swiper-slide .text .name {
              min-height: 92px;
              align-items: center; } }
          @media only screen and (max-width: 767px) {
            body.recruit .voice__slider .swiper-slide .text .name {
              padding-bottom: 12px;
              margin-bottom: 12px; } }
          body.recruit .voice__slider .swiper-slide .text .name span {
            display: block;
            margin-right: 40px;
            color: #000036;
            font-feature-settings: "palt"; }
            @media only screen and (max-width: 767px) {
              body.recruit .voice__slider .swiper-slide .text .name span {
                margin-right: 20px; } }
            body.recruit .voice__slider .swiper-slide .text .name span:last-of-type {
              margin-right: 0; }
        body.recruit .voice__slider .swiper-slide .text strong {
          display: block;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.5;
          font-weight: 500;
          font-family: "Shippori Mincho", serif;
          margin-bottom: 12px; }
          @media only screen and (max-width: 767px) {
            body.recruit .voice__slider .swiper-slide .text strong {
              font-size: 15px;
              font-size: 1.5rem;
              line-height: 1.75;
              letter-spacing: -0.05em;
              margin-bottom: 5px;
              font-feature-settings: "palt"; } }
    body.recruit .voice__slider .swiper-slide-active {
      opacity: 1; }
    @media only screen and (min-width: 768px) {
      body.recruit .voice__slider .swiper-slide-next {
        opacity: 1; } }

body.recruit .job {
  padding: 70px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.recruit .job {
      padding: 50px 0 120px; } }
  body.recruit .job .c-sub-title {
    margin-bottom: 24px; }
    @media only screen and (max-width: 767px) {
      body.recruit .job .c-sub-title {
        margin-bottom: 20px; } }
  body.recruit .job .c-title01 {
    margin-bottom: 64px; }
    @media only screen and (max-width: 767px) {
      body.recruit .job .c-title01 {
        margin-bottom: 32px; } }
  body.recruit .job .no-recruit .c-title02 {
    display: block;
    margin-bottom: 12px; }
    @media only screen and (max-width: 767px) {
      body.recruit .job .no-recruit .c-title02 {
        margin-bottom: 10px; } }
  body.recruit .job__tab {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.recruit .job__tab {
        margin-bottom: 12px; } }
    body.recruit .job__tab li {
      width: 22.27272727%;
      margin-right: 3.63636364%;
      margin-bottom: 3.63636364%; }
      @media only screen and (max-width: 767px) {
        body.recruit .job__tab li {
          width: 48.52507375%;
          margin-right: 2.9498525%;
          margin-bottom: 20px; } }
      body.recruit .job__tab li:nth-of-type(4n) {
        margin-right: 0; }
      @media only screen and (max-width: 767px) {
        body.recruit .job__tab li:nth-of-type(2n) {
          margin-right: 0; } }
      body.recruit .job__tab li.current button {
        background: #000036; }
      body.recruit .job__tab li button {
        width: 100%;
        height: 52px;
        border-radius: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        background: #C9C9C9;
        transition: background-color .3s;
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.05em;
        font-weight: 500; }
        @media only screen and (max-width: 767px) {
          body.recruit .job__tab li button {
            padding: 2px 10px;
            height: auto;
            min-height: 40px;
            border-radius: 50px;
            font-size: 13px;
            font-size: 1.3rem;
            letter-spacing: 0.05em;
            line-height: 1.46153846; } }
        @media only screen and (min-width: 768px) {
          body.recruit .job__tab li button:hover {
            background: #000036; } }
  body.recruit .job__cont {
    background: #F7F7F7;
    border-radius: 8px;
    padding: 56px 80px 80px; }
    @media only screen and (max-width: 767px) {
      body.recruit .job__cont {
        border-radius: 4px;
        padding: 0 20px 40px; } }
    body.recruit .job__cont__table {
      display: none; }
    body.recruit .job__cont table {
      width: 100%; }
      @media only screen and (max-width: 767px) {
        body.recruit .job__cont table {
          display: block; } }
      @media only screen and (max-width: 767px) {
        body.recruit .job__cont table tbody {
          display: block; } }
      body.recruit .job__cont table tbody tr {
        border-bottom: 1px solid #C9C9C9; }
        @media only screen and (max-width: 767px) {
          body.recruit .job__cont table tbody tr {
            display: block;
            padding: 20px 0; } }
        body.recruit .job__cont table tbody tr th {
          width: 178px;
          padding: 22px 0;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.75;
          font-weight: 500;
          color: #000036;
          vertical-align: top; }
          @media only screen and (max-width: 767px) {
            body.recruit .job__cont table tbody tr th {
              display: block;
              width: 100%;
              font-size: 15px;
              font-size: 1.5rem;
              margin-bottom: 8px;
              padding: 0; } }
        body.recruit .job__cont table tbody tr td {
          width: calc(100% - 178px);
          padding: 24px 0;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.75; }
          @media only screen and (max-width: 767px) {
            body.recruit .job__cont table tbody tr td {
              font-size: 15px;
              font-size: 1.5rem;
              display: block;
              width: 100%;
              padding: 0;
              letter-spacing: 0.008em; } }

body.recruit .recruit {
  width: 100%;
  height: 36.60322108vw;
  min-height: 500px;
  position: relative;
  padding: 67px 0 65px;
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    body.recruit .recruit {
      padding: 328px 0 40px;
      height: auto;
      min-height: 0; } }
  body.recruit .recruit__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.recruit .recruit__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.recruit .recruit .inner {
    position: relative;
    max-width: 100%;
    width: calc(100% - 86px); }
    @media only screen and (max-width: 767px) {
      body.recruit .recruit .inner {
        width: 100%; } }
  body.recruit .recruit .c-sub-title {
    margin-bottom: 27px; }
    @media only screen and (max-width: 767px) {
      body.recruit .recruit .c-sub-title {
        margin-bottom: 12px; } }
  body.recruit .recruit .c-title01 {
    margin-bottom: 13px; }
    @media only screen and (max-width: 767px) {
      body.recruit .recruit .c-title01 {
        margin-bottom: 12px; } }
  body.recruit .recruit .c-text01 {
    max-width: 455px;
    margin-bottom: 41px; }
    @media only screen and (max-width: 767px) {
      body.recruit .recruit .c-text01 {
        margin-bottom: 32px; } }
  @media only screen and (max-width: 767px) {
    body.recruit .recruit .c-btn {
      width: 100%;
      height: 40px;
      padding-right: 13px;
      padding-left: 25px; } }

body.top .inner {
  max-width: 100%;
  width: calc(100% - 86px); }
  @media only screen and (max-width: 767px) {
    body.top .inner {
      width: 100%; } }

body.top .loading {
  width: 100%;
  height: 100vh;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100; }
  body.top .loading__logo {
    width: 320px;
    opacity: 0; }
    @media only screen and (max-width: 767px) {
      body.top .loading__logo {
        width: 200px; } }

body.top .main-visual {
  margin: 0 40px;
  position: relative;
  width: calc(100% - 80px);
  height: calc(100vh - 130px); }
  @media only screen and (max-width: 1160px) {
    body.top .main-visual {
      height: calc(100vh - 115px); } }
  @media only screen and (max-width: 767px) {
    body.top .main-visual {
      width: calc(100% - 36px);
      height: calc(100svh - 75px - 18px);
      margin: 0 18px; } }
  body.top .main-visual__image {
    overflow: hidden;
    border-radius: 10px;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .main-visual__image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
    body.top .main-visual__image .swiper {
      width: 100%;
      height: 100%; }
      body.top .main-visual__image .swiper .swiper-slide {
        position: relative; }
    body.top .main-visual__image strong {
      display: block;
      position: absolute;
      left: 40px;
      bottom: 40px;
      font-size: 74px;
      font-size: 7.4rem;
      line-height: 1.35135135;
      font-weight: 500;
      letter-spacing: 0.012em;
      font-family: "Shippori Mincho", serif;
      color: #fff; }
      body.top .main-visual__image strong.navy {
        color: #000036; }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image strong.sp-navy {
          color: #000036; } }
      @media only screen and (max-width: 767px) {
        body.top .main-visual__image strong {
          font-size: 36px;
          font-size: 3.6rem;
          line-height: 1.35;
          left: 20px;
          bottom: 20px; } }
  body.top .main-visual__text {
    font-size: 78px;
    font-size: 7.8rem;
    line-height: 1.4;
    letter-spacing: 0.012em;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    color: #fff;
    position: absolute;
    left: 43px;
    bottom: 44px; }
    @media only screen and (max-width: 767px) {
      body.top .main-visual__text {
        font-size: 45px;
        font-size: 4.5rem;
        line-height: 1.35;
        left: 18px;
        bottom: 70px; } }

body.top .about {
  padding: 150px 0 80px; }
  @media only screen and (max-width: 767px) {
    body.top .about {
      padding: 100px 0 50px; } }
  body.top .about__col {
    display: flex;
    justify-content: space-between;
    margin-bottom: 150px; }
    @media only screen and (max-width: 767px) {
      body.top .about__col {
        display: block;
        margin-bottom: 100px; } }
  body.top .about__text {
    width: 48%; }
    @media only screen and (max-width: 767px) {
      body.top .about__text {
        width: 100%; } }
    body.top .about__text .c-sub-title {
      margin-bottom: 50px; }
      @media only screen and (max-width: 767px) {
        body.top .about__text .c-sub-title {
          margin-bottom: 31px; } }
    body.top .about__text p {
      font-size: 28px;
      font-size: 2.8rem;
      line-height: 2.5;
      font-weight: 500;
      font-family: "Shippori Mincho", serif;
      margin-bottom: 64px;
      font-feature-settings: "palt"; }
      @media only screen and (max-width: 767px) {
        body.top .about__text p {
          font-size: 18px;
          font-size: 1.8rem;
          letter-spacing: -0.011em;
          margin-bottom: 40px; } }
    @media only screen and (max-width: 767px) {
      body.top .about__text .c-btn {
        margin-left: auto; } }
  body.top .about__image {
    width: 48.33333333%; }
    @media only screen and (max-width: 767px) {
      body.top .about__image {
        width: 100%; } }
    body.top .about__image .image {
      overflow: hidden;
      border-radius: 8px; }
  body.top .about__banner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between; }
    body.top .about__banner a {
      display: block;
      overflow: hidden;
      border-radius: 8px;
      position: relative;
      width: 48.33333333%; }
      @media only screen and (min-width: 768px) {
        body.top .about__banner a {
          min-height: 400px;
          aspect-ratio: 580/400; } }
      @media only screen and (max-width: 767px) {
        body.top .about__banner a {
          width: 100%;
          height: 240px;
          border-radius: 4px;
          margin-bottom: 20px; } }
      body.top .about__banner a:first-of-type {
        width: 100%;
        margin-bottom: 3.33333333%; }
        @media only screen and (min-width: 768px) {
          body.top .about__banner a:first-of-type {
            min-height: 500px;
            aspect-ratio: 1200/500; } }
        @media only screen and (max-width: 767px) {
          body.top .about__banner a:first-of-type {
            height: 339px;
            margin-bottom: 20px; } }
      @media only screen and (max-width: 767px) {
        body.top .about__banner a:last-of-type {
          margin-bottom: 0; } }
      @media only screen and (min-width: 768px) {
        body.top .about__banner a:hover .image img {
          transform: scale(1.1); }
        body.top .about__banner a:hover .text svg circle {
          fill: transparent;
          stroke: #000036; }
        body.top .about__banner a:hover .text svg path {
          fill: #000036; } }
    body.top .about__banner .image {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0%;
      left: 0%; }
      body.top .about__banner .image img {
        transition: transform .6s;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    body.top .about__banner .text {
      position: absolute;
      left: 26px;
      right: 24px;
      bottom: 24px;
      display: flex;
      justify-content: space-between;
      align-items: flex-end; }
      @media only screen and (max-width: 767px) {
        body.top .about__banner .text {
          left: 12px;
          right: 18px;
          bottom: 18px; } }
      body.top .about__banner .text .c-title01 {
        color: #000036; }
        body.top .about__banner .text .c-title01 small {
          font-size: 26px;
          font-size: 2.6rem;
          letter-spacing: 0.05em; }
          @media only screen and (max-width: 767px) {
            body.top .about__banner .text .c-title01 small {
              font-size: 14px;
              font-size: 1.4rem; } }
      body.top .about__banner .text svg {
        border-radius: 50%; }
        @media only screen and (max-width: 767px) {
          body.top .about__banner .text svg {
            width: 30px; } }
        body.top .about__banner .text svg circle {
          transition: fill .3s, stroke .3s;
          stroke-width: 2px; }
        body.top .about__banner .text svg path {
          transition: fill .3s; }

body.top .product {
  padding: 80px 0;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .product {
      padding: 50px 0; } }
  body.top .product h3 {
    font-size: 40px;
    font-size: 4rem;
    line-height: 1.6;
    font-weight: 500;
    font-family: "Shippori Mincho", serif;
    margin: 24px 0 40px;
    color: #000036; }
    @media only screen and (max-width: 767px) {
      body.top .product h3 {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 1.55;
        letter-spacing: 0.01em;
        margin: 20px 0 25px; } }
  body.top .product .c-btn {
    margin: 64px auto 0; }
    @media only screen and (max-width: 767px) {
      body.top .product .c-btn {
        margin: 40px 0 0 auto; } }
  body.top .product .swiper {
    overflow: visible; }
    body.top .product .swiper .swiper-wrapper {
      transition-timing-function: linear !important; }
    body.top .product .swiper .swiper-slide {
      width: 435px;
      overflow: hidden;
      border-radius: 8px; }
      @media only screen and (max-width: 767px) {
        body.top .product .swiper .swiper-slide {
          width: 258px;
          border-radius: 4px; } }

body.top .news {
  padding: 80px 0 60px; }
  @media only screen and (max-width: 767px) {
    body.top .news {
      padding: 50px 0; } }
  body.top .news .c-news-list {
    margin: 40px 0 64px; }
    @media only screen and (max-width: 767px) {
      body.top .news .c-news-list {
        margin: 32px 0 40px; } }
  body.top .news .c-btn {
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.top .news .c-btn {
        margin: 0;
        margin-left: auto; } }

body.top .topics {
  padding: 80px 0 200px; }
  @media only screen and (max-width: 767px) {
    body.top .topics {
      padding: 50px 0 120px; } }
  body.top .topics .c-sub-title {
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.top .topics .c-sub-title {
        margin-bottom: 32px; } }
  body.top .topics__banner {
    overflow: hidden;
    border-radius: 8px;
    position: relative;
    margin-bottom: 3.33333333%;
    display: block; }
    @media only screen and (min-width: 768px) {
      body.top .topics__banner:hover .image img {
        transform: scale(1.1); }
      body.top .topics__banner:hover .text .c-btn {
        background: rgba(255, 255, 255, 0);
        color: #000036; }
        body.top .topics__banner:hover .text .c-btn svg circle {
          fill: #000036; }
        body.top .topics__banner:hover .text .c-btn svg path {
          fill: #fff; } }
    @media only screen and (min-width: 768px) {
      body.top .topics__banner {
        width: 100%;
        min-height: 500px;
        aspect-ratio: 1200/500; } }
    @media only screen and (max-width: 767px) {
      body.top .topics__banner {
        border-radius: 4px;
        margin-bottom: 20px;
        height: 600px; } }
    body.top .topics__banner .image {
      width: 100%;
      height: 100%;
      position: absolute;
      top: 0;
      left: 0; }
      body.top .topics__banner .image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transition: transform .6s; }
    body.top .topics__banner .text {
      position: absolute;
      left: 55px;
      max-width: 448px; }
      @media only screen and (min-width: 768px) {
        body.top .topics__banner .text {
          top: calc(50% + 16px);
          transform: translate(0, -50%); } }
      @media only screen and (max-width: 767px) {
        body.top .topics__banner .text {
          left: 12px;
          right: 12px;
          bottom: 40px; } }
      body.top .topics__banner .text .c-title01 {
        font-feature-settings: "palt"; }
        @media only screen and (max-width: 767px) {
          body.top .topics__banner .text .c-title01 {
            font-size: 20px;
            font-size: 2rem; } }
        body.top .topics__banner .text .c-title01 small {
          font-size: 12px;
          font-size: 1.2rem;
          position: relative;
          top: -26px; }
          @media only screen and (max-width: 767px) {
            body.top .topics__banner .text .c-title01 small {
              font-size: 10px;
              font-size: 1rem;
              top: -12px; } }
      body.top .topics__banner .text .c-text01 {
        margin: 18px 0 12px;
        max-width: 440px; }
        @media only screen and (max-width: 767px) {
          body.top .topics__banner .text .c-text01 {
            margin: 12px 0 12px; } }
      body.top .topics__banner .text .c-attention {
        margin-bottom: 24px;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.09em;
        line-height: 1.4;
        max-width: 426px; }
      @media only screen and (max-width: 767px) {
        body.top .topics__banner .text .c-btn {
          margin-left: auto; } }
  body.top .topics__col3 {
    display: flex; }
    @media only screen and (max-width: 767px) {
      body.top .topics__col3 {
        display: block; } }
    body.top .topics__col3 a {
      display: block;
      width: 31.08333333%;
      margin-right: 3.375%;
      overflow: hidden;
      border-radius: 8px;
      position: relative; }
      @media only screen and (max-width: 767px) {
        body.top .topics__col3 a {
          width: 100%;
          margin: 0 0 20px;
          border-radius: 4px; } }
      body.top .topics__col3 a:nth-of-type(3n) {
        margin-right: 0; }
        @media only screen and (max-width: 767px) {
          body.top .topics__col3 a:nth-of-type(3n) {
            margin-bottom: 0; } }
      @media only screen and (min-width: 768px) {
        body.top .topics__col3 a:hover .image img {
          transform: scale(1.1); }
        body.top .topics__col3 a:hover .text svg circle {
          fill: transparent;
          stroke: #000036; }
        body.top .topics__col3 a:hover .text svg path {
          fill: #000036; } }
      body.top .topics__col3 a .image img {
        transition: transform .6s; }
      body.top .topics__col3 a .text {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: absolute;
        left: 27px;
        right: 23px;
        bottom: 24px; }
        @media only screen and (max-width: 767px) {
          body.top .topics__col3 a .text {
            left: 12px;
            right: 18px;
            bottom: 18px;
            align-items: center; } }
        body.top .topics__col3 a .text span {
          font-size: 22px;
          font-size: 2.2rem;
          letter-spacing: 0.05em;
          line-height: 1.4;
          font-weight: 500;
          font-family: "Shippori Mincho", serif;
          color: #000036; }
          @media only screen and (max-width: 767px) {
            body.top .topics__col3 a .text span {
              font-size: 18px;
              font-size: 1.8rem;
              letter-spacing: 0.01em; } }
        body.top .topics__col3 a .text svg {
          border-radius: 50%; }
          @media only screen and (max-width: 767px) {
            body.top .topics__col3 a .text svg {
              width: 30px; } }
          body.top .topics__col3 a .text svg circle {
            transition: fill .3s, stroke .3s;
            stroke-width: 2px; }
          body.top .topics__col3 a .text svg path {
            transition: fill .3s; }

body.top .recruit {
  width: 100%;
  height: 36.60322108vw;
  min-height: 500px;
  position: relative;
  padding: 67px 0 65px;
  display: flex;
  align-items: center; }
  @media only screen and (max-width: 767px) {
    body.top .recruit {
      padding: 297px 0 40px;
      height: auto;
      min-height: 0; } }
  body.top .recruit__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .recruit__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center; }
  body.top .recruit .inner {
    position: relative; }
  body.top .recruit .c-sub-title {
    margin-bottom: 27px; }
    @media only screen and (max-width: 767px) {
      body.top .recruit .c-sub-title {
        margin-bottom: 12px; } }
  body.top .recruit .c-title01 {
    margin-bottom: 13px; }
    @media only screen and (max-width: 767px) {
      body.top .recruit .c-title01 {
        margin-bottom: 12px; } }
  body.top .recruit .c-text01 {
    max-width: 455px;
    margin-bottom: 41px; }
    @media only screen and (max-width: 767px) {
      body.top .recruit .c-text01 {
        margin-bottom: 32px; } }
  @media only screen and (max-width: 767px) {
    body.top .recruit .c-btn {
      width: 100%;
      max-width: 100%;
      height: 40px;
      padding: 0 11px 1px 25px; } }
