@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: "游ゴシック", YuGothic, "yu-gothic-pr6n", "Hiragino Sans", "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
  background: #fff; }

* {
  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;
  transition: opacity .3s; }
  a:hover {
    opacity: 0.6; }

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

.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: 1306px;
  padding: 0 40px;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .inner {
      padding: 0 15px; } }

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

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

::selection {
  background: #8D9DAD; }

.footer {
  padding: 92px 0 44px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    .footer {
      padding-bottom: 20px; } }
  .footer__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    .footer__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center; }
  .footer .inner {
    max-width: 1324px;
    position: relative; }
  .footer__top {
    display: flex;
    justify-content: space-between; }
    @media only screen and (max-width: 767px) {
      .footer__top {
        flex-direction: column; } }
  .footer__list {
    margin-top: 38px; }
    @media only screen and (max-width: 767px) {
      .footer__list {
        order: 1;
        text-align: center;
        margin-top: 0; } }
    .footer__list li {
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.1em;
      line-height: 1.5;
      margin-bottom: 16px;
      font-family: "trajan-pro-3", serif; }
      @media only screen and (max-width: 767px) {
        .footer__list li {
          font-size: 20px;
          font-size: 2rem;
          margin-bottom: 44px; } }
      .footer__list li:last-of-type {
        margin-bottom: 0; }
  .footer__logo {
    display: block;
    width: 174px; }
    @media only screen and (max-width: 767px) {
      .footer__logo {
        order: 3;
        margin: 0 auto 68px; } }
  .footer__right {
    margin-top: 46px; }
    @media only screen and (max-width: 767px) {
      .footer__right {
        order: 2;
        margin: 90px auto 50px;
        display: flex;
        flex-direction: column; } }
    .footer__right .logo {
      display: block;
      width: 108px;
      margin-bottom: 52px;
      margin-left: auto; }
      @media only screen and (max-width: 767px) {
        .footer__right .logo {
          order: 2;
          margin: 80px auto 0; } }
    .footer__right .sns-list {
      display: flex;
      align-items: center;
      justify-content: flex-end; }
      @media only screen and (max-width: 767px) {
        .footer__right .sns-list {
          order: 1; } }
      .footer__right .sns-list li {
        width: 25px;
        margin-left: 22px; }
        @media only screen and (max-width: 767px) {
          .footer__right .sns-list li {
            width: 34px;
            margin: 0 31px; } }
        .footer__right .sns-list li img {
          width: 100%; }
  .footer__copyright {
    text-align: center;
    font-family: "trajan-pro-3", serif;
    font-size: 12px;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    line-height: 1.33333333; }

.header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  padding-top: 50px;
  z-index: 99; }
  .header .inner {
    max-width: 1324px; }
  .header__logo {
    display: block;
    width: 140px;
    margin-bottom: 68px;
    position: fixed;
    top: 50px;
    left: 60px; }
    @media only screen and (max-width: 767px) {
      .header__logo {
        width: 68px;
        top: 20px;
        left: 13px; } }
  .header .gnav {
    position: fixed;
    top: 246px;
    left: 60px; }
    @media only screen and (max-width: 767px) {
      .header .gnav {
        top: 0;
        left: 0;
        width: 100%;
        height: 100svh;
        text-align: center;
        opacity: 0;
        visibility: hidden;
        transition: opacity 1s, visibility 1s;
        background: url(../images/common/bg_gnav.jpg) center center/cover no-repeat;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        padding: 29px; }
        .header .gnav.is-active {
          opacity: 1;
          visibility: visible; } }
    @media only screen and (max-width: 767px) {
      .header .gnav__logo {
        display: block;
        width: 97px;
        margin: 0 auto 0px; } }
    .header .gnav__list {
      font-family: "trajan-pro-3", serif;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.1em;
      line-height: 1.5;
      margin-bottom: 45px; }
      @media only screen and (max-width: 767px) {
        .header .gnav__list {
          font-size: 20px;
          font-size: 2rem;
          margin-bottom: 0; } }
      .header .gnav__list li {
        margin-bottom: 15px; }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li:last-of-type {
            margin-bottom: 0; } }
        @media only screen and (max-width: 767px) {
          .header .gnav__list li {
            margin-bottom: 44px; } }
    @media only screen and (max-width: 767px) {
      .header .gnav__sns-list {
        display: flex;
        align-items: center;
        justify-content: center; } }
    .header .gnav__sns-list li {
      width: 16px;
      margin-bottom: 17px; }
      @media only screen and (max-width: 767px) {
        .header .gnav__sns-list li {
          width: 34px;
          margin: 0 30px; } }
      .header .gnav__sns-list li img {
        width: 100%; }

.c-scroll {
  text-align: center;
  z-index: +1;
  mix-blend-mode: difference;
  width: max-content;
  position: fixed;
  top: 600px;
  left: 58px;
  transition: opacity .3s, visibility .3s; }
  .c-scroll.hide {
    opacity: 0;
    visibility: hidden; }
  .c-scroll b {
    overflow: hidden;
    width: 10px;
    height: 84px;
    padding: 4px 0 0;
    display: block;
    margin: 0 auto; }
  .c-scroll i {
    width: 1px;
    height: 80px;
    display: block;
    background: #000;
    background: #000;
    margin: 0 auto;
    position: relative; }
    .c-scroll i:before {
      content: "";
      width: 8px;
      height: 8px;
      display: block;
      background: #000;
      border-radius: 50%;
      position: absolute;
      top: -4px;
      left: -3px;
      animation: scrollAnimation 2s cubic-bezier(0.76, 0, 0.24, 1) infinite; }
  .c-scroll span {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.07em;
    color: #000;
    font-family: "trajan-pro-3", serif;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    display: inline-block;
    margin-top: 13px; }

@keyframes scrollAnimation {
  0% {
    transform: translateY(0);
    -webkit-transform: translateY(0); }
  48% {
    transform: translateY(88px);
    -webkit-transform: translateY(88px);
    opacity: 1; }
  50% {
    opacity: 0; }
  60% {
    transform: translateY(-8px);
    -webkit-transform: translateY(-8px); }
  100% {
    transform: translateY(0);
    -webkit-transform: translateY(0); } }

.hamburger {
  width: 80px;
  height: 37px;
  position: fixed;
  top: 27px;
  right: 0;
  z-index: 99;
  padding: 13px; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(1) {
    transform: rotate(135deg);
    top: 4px;
    width: 32px;
    left: 12px; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(2) {
    opacity: 0; }
  .hamburger.is-active .hamburger__inner span:nth-of-type(3) {
    transform: rotate(-135deg);
    bottom: 5px;
    width: 32px;
    left: 12px; }
  .hamburger__inner {
    width: 54px;
    height: 11px;
    position: relative; }
    .hamburger__inner span {
      width: 54px;
      height: 1px;
      display: block;
      background: #000;
      position: absolute;
      left: 0;
      transition: width .3s, top .3s, left .3s, bottom .3s, opacity .3s, transform .3s; }
      .hamburger__inner span:nth-of-type(1) {
        top: 0; }
      .hamburger__inner span:nth-of-type(2) {
        top: 5px; }
      .hamburger__inner span:nth-of-type(3) {
        bottom: 0; }

.c-title02 {
  text-align: center; }
  .c-title02 .en {
    font-size: 25px;
    font-size: 2.5rem;
    letter-spacing: 0.1em;
    display: block;
    font-family: "trajan-pro-3", serif;
    margin-bottom: 2px; }
    @media only screen and (max-width: 767px) {
      .c-title02 .en {
        font-size: 20px;
        font-size: 2rem; } }
  .c-title02 .jp {
    font-size: 13px;
    font-size: 1.3rem;
    letter-spacing: 0.14em;
    line-height: 1.66666667;
    font-weight: 500;
    display: block; }
    @media only screen and (max-width: 767px) {
      .c-title02 .jp {
        font-size: 14px;
        font-size: 1.4rem; } }

.c-btn {
  width: 100%;
  max-width: 263px;
  height: 50px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-size: 1.3rem;
  letter-spacing: 0.14em;
  font-weight: 600;
  background: #fff;
  border: 1px solid #000;
  color: #000;
  position: relative; }
  .c-btn.white {
    background: none;
    border-color: #fff;
    color: #fff; }
  .c-btn svg {
    position: absolute;
    top: 50%;
    right: 32px;
    transform: translate(0, -50%); }

.c-btn-big {
  width: 100%;
  max-width: 660px;
  height: 88px;
  border-radius: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  color: #fff;
  border: 1px solid #000;
  font-size: 14px;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  font-weight: 600;
  transition: background-color .3s, color .3s;
  margin: 0 auto; }
  @media only screen and (max-width: 767px) {
    .c-btn-big {
      height: 68px;
      border-radius: 34px;
      font-size: 15px;
      font-size: 1.5rem; } }
  .c-btn-big:hover {
    opacity: 1;
    background: #fff;
    color: #000; }

[data-monotone] {
  position: relative;
  filter: grayscale(100%);
  transition: filter 0.8s 0.8s; }
  [data-monotone].is-active {
    filter: grayscale(0%); }

.lg-toolbar {
  display: none; }

.lg-backdrop {
  background: rgba(0, 0, 0, 0.5); }

.lg-object.lg-image {
  max-height: 90%;
  max-width: 80%; }

.lg-prev, .lg-next {
  padding: 0;
  width: 50px;
  height: 50px;
  background: none;
  margin-top: -25px; }

.c-newsList li {
  border-top: 1px solid #000; }
  .c-newsList li:last-of-type {
    border-bottom: 1px solid #000; }
  .c-newsList li.has-image a {
    padding: 23px 0;
    padding-right: 100px; }
    .c-newsList li.has-image a:hover > div .image img {
      transform: scale(1.1); }
    @media only screen and (max-width: 767px) {
      .c-newsList li.has-image a {
        padding: 18px 0;
        padding-right: 0; } }
    .c-newsList li.has-image a > div {
      margin-left: 0;
      display: flex;
      align-items: center;
      justify-content: space-between; }
      @media only screen and (max-width: 767px) {
        .c-newsList li.has-image a > div {
          display: block; } }
    .c-newsList li.has-image a .image {
      width: 236px;
      overflow: hidden; }
      @media only screen and (max-width: 767px) {
        .c-newsList li.has-image a .image {
          margin-bottom: 14px; } }
      .c-newsList li.has-image a .image > div {
        position: relative;
        padding-top: 75%; }
      .c-newsList li.has-image a .image img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
        transition: transform .3s; }
    .c-newsList li.has-image a .text {
      display: block;
      width: calc(100% - 335px); }
      @media only screen and (max-width: 767px) {
        .c-newsList li.has-image a .text {
          width: 100%; } }
      .c-newsList li.has-image a .text .date-cate {
        padding-left: 0; }
  .c-newsList li a {
    padding: 38px 0;
    padding-right: 100px;
    display: block;
    transition: opacity .3s; }
    @media only screen and (max-width: 767px) {
      .c-newsList li a {
        padding: 18px 0 16px; } }
    .c-newsList li a:hover {
      opacity: 0.6; }
      .c-newsList li a:hover > div:after {
        transform: translate(10px, -50%); }
    .c-newsList li a > div {
      margin: 0 auto;
      position: relative; }
      @media only screen and (max-width: 767px) {
        .c-newsList li a > div {
          padding-left: 15px;
          padding-right: 42px; } }
      .c-newsList li a > div:after {
        content: "";
        width: 33px;
        height: 14px;
        display: block;
        background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
        position: absolute;
        top: 50%;
        right: 0%;
        transform: translate(0%, -50%);
        transition: transform .3s; }
    .c-newsList li a .text {
      display: flex; }
      @media only screen and (max-width: 767px) {
        .c-newsList li a .text {
          display: block; } }
      .c-newsList li a .text .date-cate {
        display: flex;
        align-items: center;
        width: 335px;
        padding-left: 100px; }
        @media only screen and (max-width: 767px) {
          .c-newsList li a .text .date-cate {
            width: 100%;
            padding-left: 0; } }
        .c-newsList li a .text .date-cate .date {
          font-size: 13px;
          font-size: 1.3rem;
          letter-spacing: 0.07em;
          line-height: 1.76923077;
          font-weight: 500;
          display: inline-block;
          margin-right: 20px; }
        .c-newsList li a .text .date-cate .cate {
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: 0.07em;
          line-height: 1.73333333;
          font-weight: 500; }
      .c-newsList li a .text .title {
        width: calc(100% - 335px);
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.07em;
        line-height: 1.73333333;
        font-weight: 500; }
        @media only screen and (max-width: 767px) {
          .c-newsList li a .text .title {
            width: 100%; } }

/* 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.contact main {
  min-height: calc(100vh - 283px); }
  @media only screen and (max-width: 767px) {
    body.contact main {
      min-height: calc(100vh - 692px); } }

body.contact .whole {
  padding-top: 49px;
  padding-bottom: 150px; }
  @media only screen and (max-width: 767px) {
    body.contact .whole {
      padding-top: 92px; } }
  body.contact .whole .inner {
    max-width: 985px; }
  body.contact .whole .head {
    padding-bottom: 50px; }
    body.contact .whole .head .c-title02 {
      text-align: center;
      margin-bottom: 24px; }
    body.contact .whole .head p {
      font-size: 18px;
      font-size: 1.8rem;
      letter-spacing: 0.07em;
      line-height: 1.72222222;
      font-weight: 500;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .head p {
          font-size: 18px;
          font-size: 1.8rem; } }
  body.contact .whole .formArea dl {
    margin-bottom: 48px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .formArea dl {
        margin-bottom: 32px; } }
    body.contact .whole .formArea dl dt {
      display: flex;
      align-items: center;
      margin-bottom: 13px;
      font-size: 14px;
      font-size: 1.4rem;
      letter-spacing: 0.07em;
      line-height: 1.71428571;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dt {
          flex-wrap: wrap; } }
      body.contact .whole .formArea dl dt small {
        font-size: 12px;
        font-size: 1.2rem;
        line-height: 1.66666667;
        display: inline-block;
        margin-left: 20px; }
        @media only screen and (max-width: 767px) {
          body.contact .whole .formArea dl dt small {
            margin: 8px 0 0;
            width: 100%;
            font-size: 10px;
            font-size: 1rem; } }
      body.contact .whole .formArea dl dt span {
        width: 63px;
        height: 21px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 11px;
        background: #8D9DAD;
        color: #fff;
        margin-left: 20px;
        font-size: 14px;
        font-size: 1.4rem;
        padding-top: 1px; }
    body.contact .whole .formArea dl dd .selectBox {
      position: relative; }
      body.contact .whole .formArea dl dd .selectBox svg {
        right: 50px;
        position: absolute;
        top: 50%;
        transform: translate(0%, -50%);
        pointer-events: none; }
        @media only screen and (max-width: 767px) {
          body.contact .whole .formArea dl dd .selectBox svg {
            right: 20px; } }
    body.contact .whole .formArea dl dd p {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.07em;
      font-weight: 600;
      line-height: 1.73333333; }
    body.contact .whole .formArea dl dd input[type="text"] {
      width: 100%;
      height: 64px;
      border-radius: 50px;
      border: 1px solid #000;
      position: relative;
      padding: 20px 50px;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.07em;
      font-weight: 600;
      line-height: 1.73333333; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dd input[type="text"] {
          height: 48px;
          padding: 10px 20px; } }
    body.contact .whole .formArea dl dd select {
      width: 100%;
      height: 64px;
      border-radius: 50px;
      border: 1px solid #000;
      position: relative;
      padding: 20px 50px;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.07em;
      font-weight: 600;
      line-height: 1.73333333; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dd select {
          height: 48px;
          padding: 10px 20px; } }
    body.contact .whole .formArea dl dd textarea {
      width: 100%;
      height: 350px;
      border-radius: 50px;
      border: 1px solid #000;
      position: relative;
      padding: 20px 50px;
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.07em;
      font-weight: 600;
      line-height: 1.73333333; }
      @media only screen and (max-width: 767px) {
        body.contact .whole .formArea dl dd textarea {
          padding: 10px 20px;
          border-radius: 24px; } }
  body.contact .whole .formArea .attention {
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.02em;
    line-height: 2.06666667;
    font-weight: 500;
    margin-bottom: 36px; }
    body.contact .whole .formArea .attention a {
      background: #8D9DAD;
      color: #fff; }
  body.contact .whole .formArea .agree {
    display: flex;
    align-items: center;
    justify-content: center;
    width: max-content;
    margin: 0 auto;
    position: relative;
    margin-bottom: 100px; }
    @media only screen and (max-width: 767px) {
      body.contact .whole .formArea .agree {
        margin-bottom: 60px; } }
    body.contact .whole .formArea .agree input {
      position: absolute;
      top: 0;
      left: 0; }
      body.contact .whole .formArea .agree input:checked + label > i:before {
        opacity: 1; }
    body.contact .whole .formArea .agree label {
      display: flex;
      align-items: center;
      justify-content: center; }
      body.contact .whole .formArea .agree label i {
        width: 33px;
        height: 33px;
        border-radius: 10px;
        border: 1px solid #000;
        margin-right: 20px;
        position: relative; }
        @media only screen and (max-width: 767px) {
          body.contact .whole .formArea .agree label i {
            width: 28px;
            height: 28px;
            margin-right: 12px;
            border-radius: 8px; } }
        body.contact .whole .formArea .agree label i:before {
          content: "";
          width: 21px;
          height: 18px;
          background: url(../images/common/icon_check.svg) center center/cover no-repeat;
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          opacity: 0; }
      body.contact .whole .formArea .agree label span {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.07em;
        line-height: 1.73333333;
        font-weight: 600; }
  body.contact .whole .formArea .btnWrap {
    margin-top: 80px;
    text-align: center; }
    body.contact .whole .formArea .btnWrap .c-btn-big {
      margin-bottom: 30px; }
    body.contact .whole .formArea .btnWrap .modify {
      font-size: 15px;
      font-size: 1.5rem;
      letter-spacing: 0.07em;
      line-height: 1.73333333;
      text-decoration: underline; }
  body.contact .whole .formArea .thanks {
    text-align: center;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.07em;
    line-height: 1.73333333; }
    body.contact .whole .formArea .thanks .c-btn {
      margin-left: auto;
      margin-right: auto;
      margin-top: 80px; }

body.news_detail .whole {
  padding-top: 49px;
  padding-bottom: 100px; }
  @media only screen and (max-width: 767px) {
    body.news_detail .whole {
      padding-top: 92px;
      padding-bottom: 75px; } }
  body.news_detail .whole .inner {
    max-width: 1043px; }
  body.news_detail .whole .head {
    position: relative;
    max-width: 660px;
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.news_detail .whole .head {
        padding-bottom: 32px; } }
    body.news_detail .whole .head .c-title02 {
      text-align: center;
      margin-bottom: 30px; }
    body.news_detail .whole .head .thumbSlider .swiper-slide {
      position: relative;
      padding-top: 74.95479204%; }
      body.news_detail .whole .head .thumbSlider .swiper-slide img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center; }
    body.news_detail .whole .head .thumbSlider .swiper-pagination {
      bottom: 13px; }
      body.news_detail .whole .head .thumbSlider .swiper-pagination .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        border: 1px solid #fff;
        margin: 0 5px;
        background: none;
        opacity: 1; }
      body.news_detail .whole .head .thumbSlider .swiper-pagination .swiper-pagination-bullet-active {
        background: #fff; }
    body.news_detail .whole .head .date-cate {
      display: flex;
      align-items: center;
      margin-top: 50px;
      margin-bottom: 15px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .whole .head .date-cate {
          margin-bottom: 24px; } }
      body.news_detail .whole .head .date-cate .date {
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.07em;
        line-height: 1.66666667;
        font-weight: 500;
        display: inline-block;
        margin-right: 20px; }
      body.news_detail .whole .head .date-cate .cate {
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.07em;
        line-height: 1.66666667;
        font-weight: 500; }
    body.news_detail .whole .head .title {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.07em;
      line-height: 1.7;
      font-weight: 500;
      margin-bottom: 20px; }
      @media only screen and (max-width: 767px) {
        body.news_detail .whole .head .title {
          font-size: 20px;
          font-size: 2rem; } }
  body.news_detail .whole .cont {
    max-width: 660px;
    margin: 0 auto;
    font-size: 15px;
    font-size: 1.5rem;
    letter-spacing: 0.04em;
    line-height: 2;
    font-weight: 500;
    position: relative;
    padding-bottom: 100px; }
    body.news_detail .whole .cont:after {
      content: "";
      width: calc(100vw - 80px);
      max-width: 963px;
      height: 1px;
      display: block;
      background-image: linear-gradient(to right, #000 1px, transparent 4px);
      background-size: 6px 1px;
      background-repeat: repeat-x;
      background-position: left bottom;
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translate(-50%, 0%); }
    body.news_detail .whole .cont p {
      margin-top: 40px;
      margin-bottom: 24px; }
    body.news_detail .whole .cont img {
      margin-bottom: 5px;
      width: 100%; }
    body.news_detail .whole .cont .c-btn {
      margin: 90px auto 0; }
      @media only screen and (max-width: 767px) {
        body.news_detail .whole .cont .c-btn {
          margin-top: 60px; } }
  body.news_detail .whole .pick-up {
    padding: 100px 0 0; }
    body.news_detail .whole .pick-up .c-title02 {
      text-align: center;
      margin-bottom: 70px; }
    body.news_detail .whole .pick-up .c-newsList {
      margin-bottom: 100px; }

body.news .whole {
  padding-top: 49px;
  padding-bottom: 150px; }
  @media only screen and (max-width: 767px) {
    body.news .whole {
      padding-top: 92px;
      padding-bottom: 75px; } }
  body.news .whole .inner {
    max-width: 1186px; }
  body.news .whole .head {
    padding-bottom: 70px; }
    @media only screen and (max-width: 767px) {
      body.news .whole .head {
        padding-bottom: 32px; } }
    body.news .whole .head .c-title02 {
      text-align: center;
      margin-bottom: 70px; }
    body.news .whole .head .cateList {
      display: flex;
      justify-content: center; }
      body.news .whole .head .cateList li {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.07em;
        line-height: 1.2;
        font-weight: 200;
        font-family: "Helvetica", sans-serif;
        margin: 0 68px; }
        @media only screen and (max-width: 767px) {
          body.news .whole .head .cateList li {
            font-size: 14px;
            font-size: 1.4rem;
            margin: 0 20px; } }
  body.news .whole .c-btn {
    margin: 0 auto;
    margin-top: 100px; }
    @media only screen and (max-width: 767px) {
      body.news .whole .c-btn {
        margin-top: 60px; } }

body.privacy-policy .whole {
  padding-top: 49px;
  padding-bottom: 100px; }
  @media only screen and (max-width: 767px) {
    body.privacy-policy .whole {
      padding-top: 92px;
      padding-bottom: 80px; } }
  body.privacy-policy .whole .inner {
    max-width: 1106px; }
  body.privacy-policy .whole .head {
    padding-bottom: 50px; }
    body.privacy-policy .whole .head .c-title02 {
      text-align: center;
      margin-bottom: 24px; }
    body.privacy-policy .whole .head p {
      font-size: 20px;
      font-size: 2rem;
      letter-spacing: 0.07em;
      line-height: 1.7;
      font-weight: 500;
      text-align: center; }
      @media only screen and (max-width: 767px) {
        body.privacy-policy .whole .head p {
          font-size: 18px;
          font-size: 1.8rem; } }
    body.privacy-policy .whole .head .anchorList {
      display: flex;
      justify-content: center;
      margin-top: 50px; }
      @media only screen and (max-width: 767px) {
        body.privacy-policy .whole .head .anchorList {
          display: block; } }
      body.privacy-policy .whole .head .anchorList li {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.07em;
        line-height: 1.2;
        font-weight: 200;
        font-family: "Helvetica", sans-serif;
        margin: 0 70px; }
        @media only screen and (max-width: 767px) {
          body.privacy-policy .whole .head .anchorList li {
            font-size: 14px;
            font-size: 1.4rem;
            margin: 0 0 20px;
            text-align: center; } }
  body.privacy-policy .whole .section {
    border-top: 1px solid #000;
    padding: 50px 0 74px; }
    @media only screen and (max-width: 767px) {
      body.privacy-policy .whole .section {
        padding: 36px 0 50px; } }
    body.privacy-policy .whole .section__box {
      max-width: 905px;
      margin: 0 auto; }
      body.privacy-policy .whole .section__box h3 {
        font-size: 20px;
        font-size: 2rem;
        letter-spacing: 0.02em;
        line-height: 1.75;
        font-weight: 600;
        text-align: center;
        margin-bottom: 34px; }
        @media only screen and (max-width: 767px) {
          body.privacy-policy .whole .section__box h3 {
            font-size: 18px;
            font-size: 1.8rem;
            margin-bottom: 24px; } }
      body.privacy-policy .whole .section__box .read {
        font-size: 17px;
        font-size: 1.7rem;
        letter-spacing: 0.02em;
        line-height: 2.05882353;
        font-weight: 500;
        margin-bottom: 38px; }
        @media only screen and (max-width: 767px) {
          body.privacy-policy .whole .section__box .read {
            font-size: 14px;
            font-size: 1.4rem; } }
      body.privacy-policy .whole .section__box dl {
        margin-bottom: 42px; }
        @media only screen and (max-width: 767px) {
          body.privacy-policy .whole .section__box dl {
            margin-bottom: 32px; } }
        body.privacy-policy .whole .section__box dl dt {
          font-size: 17px;
          font-size: 1.7rem;
          letter-spacing: 0.02em;
          line-height: 2.05882353;
          font-weight: 600;
          margin-bottom: 6px; }
          @media only screen and (max-width: 767px) {
            body.privacy-policy .whole .section__box dl dt {
              font-size: 16px;
              font-size: 1.6rem; } }
        body.privacy-policy .whole .section__box dl dd {
          padding: 0 40px;
          font-size: 15px;
          font-size: 1.5rem;
          letter-spacing: 0.02em;
          line-height: 2.06666667;
          font-weight: 500; }
          @media only screen and (max-width: 767px) {
            body.privacy-policy .whole .section__box dl dd {
              font-size: 14px;
              font-size: 1.4rem;
              padding: 0 10px; } }
      body.privacy-policy .whole .section__box address {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: 0.02em;
        line-height: 2.1875;
        font-weight: 600;
        width: max-content;
        margin: 64px auto 0; }
        @media only screen and (max-width: 767px) {
          body.privacy-policy .whole .section__box address {
            font-size: 15px;
            font-size: 1.5rem;
            margin-top: 42px; } }

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

body.top .top-section {
  position: relative;
  overflow: hidden; }
  @media only screen and (max-width: 767px) {
    body.top .top-section {
      padding-top: 25px; } }
  body.top .top-section:after {
    content: "";
    width: calc(100vw +  2px);
    height: 5.5636896vw;
    display: block;
    background: url(../images/top/round.svg) center center/cover no-repeat;
    z-index: +2;
    position: absolute;
    left: -1px;
    right: -1px;
    bottom: -1px; }
    @media only screen and (max-width: 767px) {
      body.top .top-section:after {
        bottom: -1px; } }
  body.top .top-section__bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden; }
    body.top .top-section__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: bottom center; }
    body.top .top-section__bg .fadeSlider {
      height: 100%; }
      body.top .top-section__bg .fadeSlider .slider {
        height: 100%; }
    body.top .top-section__bg .zoom {
      width: 100%;
      height: 100%;
      animation: 28s ease-in-out 0s infinite alternate zoomInOut; }
      body.top .top-section__bg .zoom img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: bottom center; }

@keyframes zoomInOut {
  0% {
    transform: scale(1); }
  30% {
    transform: scale(1.04); }
  46% {
    transform: scale(1); }
  54% {
    transform: scale(1); }
  80% {
    transform: scale(1.04); }
  100% {
    transform: scale(1); } }

body.top .main-visual {
  height: 61.34699854VW;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .main-visual {
      height: auto; } }
  body.top .main-visual__text {
    position: absolute;
    right: 7.32064422vw;
    top: 46.26647145vw;
    font-size: 2.7818448vw;
    letter-spacing: 0.09em;
    line-height: 1.44736842;
    font-family: "trajan-pro-3", serif;
    z-index: +2; }

body.top .intro {
  padding: 128px 0 136px;
  text-align: center;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .intro {
      padding: 70px 0 76px; } }
  body.top .intro__title {
    font-size: 34px;
    font-size: 3.4rem;
    letter-spacing: 0.38em;
    line-height: 1.70588235;
    font-weight: 500;
    font-family: "游明朝", YuMincho, "yu-mincho-pr6n", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", sans-serif;
    margin-bottom: 40px; }
    @media only screen and (max-width: 767px) {
      body.top .intro__title {
        font-size: 25px;
        font-size: 2.5rem;
        line-height: 1.72;
        margin-bottom: 70px; } }
    @media only screen and (max-width: 767px) {
      body.top .intro__title .en {
        display: block;
        font-size: 17px;
        font-size: 1.7rem;
        letter-spacing: 0.09em;
        line-height: 1.17647059;
        font-family: "trajan-pro-3", serif;
        margin-top: 15px; } }
  body.top .intro__text {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2.28571429;
    font-weight: 500; }
    @media only screen and (max-width: 767px) {
      body.top .intro__text {
        font-size: 16px;
        font-size: 1.6rem;
        letter-spacing: -0.02em;
        line-height: 2;
        text-align: left; } }

body.top .contents {
  padding: 100px 0 102px; }
  @media only screen and (max-width: 767px) {
    body.top .contents {
      padding: 70px 0; } }
  body.top .contents .inner {
    max-width: 1242px; }
  body.top .contents__title {
    font-size: 29px;
    font-size: 2.9rem;
    letter-spacing: 0.38em;
    line-height: 1.72413793;
    font-weight: 500;
    font-family: "游明朝", YuMincho, "yu-mincho-pr6n", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", sans-serif;
    text-align: center;
    margin: 40px 0 62px; }
    @media only screen and (max-width: 767px) {
      body.top .contents__title {
        font-size: 20px;
        font-size: 2rem;
        margin: 54px 0 40px; } }
  body.top .contents__image {
    width: 429px;
    margin: 0 auto 35px; }
    @media only screen and (max-width: 767px) {
      body.top .contents__image {
        width: 324px;
        margin-bottom: 50px; } }
  body.top .contents__wrap {
    border-radius: 100px;
    overflow: hidden;
    display: flex;
    flex-wrap: wrap; }
    @media only screen and (max-width: 767px) {
      body.top .contents__wrap {
        border-radius: 50px; } }
  body.top .contents__box {
    width: 50%;
    color: #FFFFFF;
    padding: 67px 40px 53px; }
    @media only screen and (max-width: 767px) {
      body.top .contents__box {
        width: 100%;
        padding: 60px 20px 76px; } }
    body.top .contents__box.wide {
      width: 100%; }
      @media only screen and (max-width: 767px) {
        body.top .contents__box.wide {
          padding-bottom: 58px; } }
      body.top .contents__box.wide .contents__box__inner {
        max-width: 963px;
        display: flex;
        justify-content: space-between; }
        @media only screen and (max-width: 767px) {
          body.top .contents__box.wide .contents__box__inner {
            flex-direction: column; } }
        body.top .contents__box.wide .contents__box__inner .left {
          width: 46.00207684%; }
          @media only screen and (max-width: 767px) {
            body.top .contents__box.wide .contents__box__inner .left {
              width: 100%;
              order: 2; } }
          body.top .contents__box.wide .contents__box__inner .left .title {
            display: block; }
            body.top .contents__box.wide .contents__box__inner .left .title span {
              display: block; }
            body.top .contents__box.wide .contents__box__inner .left .title strong {
              display: inline-block;
              margin-right: 14px;
              margin-bottom: 0; }
              @media only screen and (max-width: 767px) {
                body.top .contents__box.wide .contents__box__inner .left .title strong {
                  margin-bottom: 10px; } }
            body.top .contents__box.wide .contents__box__inner .left .title small {
              display: inline; }
              @media only screen and (max-width: 767px) {
                body.top .contents__box.wide .contents__box__inner .left .title small {
                  display: block; } }
          body.top .contents__box.wide .contents__box__inner .left .link {
            display: flex;
            align-items: center;
            margin-top: 26px; }
            @media only screen and (max-width: 767px) {
              body.top .contents__box.wide .contents__box__inner .left .link {
                margin-top: 46px; } }
            @media only screen and (max-width: 767px) {
              body.top .contents__box.wide .contents__box__inner .left .link .c-btn {
                max-width: 100%; } }
            body.top .contents__box.wide .contents__box__inner .left .link .logo {
              width: 79px;
              display: block;
              margin-left: 22px; }
        body.top .contents__box.wide .contents__box__inner .right {
          width: 49.84423676%; }
          @media only screen and (max-width: 767px) {
            body.top .contents__box.wide .contents__box__inner .right {
              width: 100%;
              order: 1; } }
        @media only screen and (max-width: 767px) {
          body.top .contents__box.wide .contents__box__inner .imageSlider {
            margin-bottom: 28px; } }
        body.top .contents__box.wide .contents__box__inner .imageSlider .swiper-slide {
          padding-top: 86.25%;
          position: relative; }
          body.top .contents__box.wide .contents__box__inner .imageSlider .swiper-slide img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center center;
            position: absolute;
            top: 0;
            left: 0; }
        body.top .contents__box.wide .contents__box__inner .imageSlider .swiper-pagination {
          bottom: 20px; }
          body.top .contents__box.wide .contents__box__inner .imageSlider .swiper-pagination .swiper-pagination-bullet {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: none;
            border: 1px solid #fff;
            opacity: 1;
            margin: 0 8px; }
            body.top .contents__box.wide .contents__box__inner .imageSlider .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
              background: #fff; }
    body.top .contents__box:nth-of-type(1) {
      background: #9A8181; }
    body.top .contents__box:nth-of-type(2) {
      background: #A58377; }
    body.top .contents__box:nth-of-type(3) {
      background: #B29A7B; }
    body.top .contents__box:nth-of-type(4) {
      background: #8F9B83; }
    body.top .contents__box:nth-of-type(5) {
      background: #8D9DAD; }
    body.top .contents__box__inner {
      max-width: 380px;
      margin: 0 auto; }
    body.top .contents__box .number {
      font-family: "trajan-pro-3", serif;
      display: flex;
      flex-wrap: wrap; }
      body.top .contents__box .number span {
        font-size: 13px;
        font-size: 1.3rem;
        letter-spacing: 0.1em;
        display: block;
        margin-top: 10px;
        margin-right: 42px; }
        @media only screen and (max-width: 767px) {
          body.top .contents__box .number span {
            font-size: 12px;
            font-size: 1.2rem;
            margin-right: 27px;
            margin-top: 0; } }
      body.top .contents__box .number ul {
        display: flex;
        align-items: center; }
        body.top .contents__box .number ul li {
          font-size: 12px;
          font-size: 1.2rem;
          letter-spacing: 0.1em;
          margin-right: 32px;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.top .contents__box .number ul li {
              font-size: 10px;
              font-size: 1rem;
              margin-right: 24px; } }
          body.top .contents__box .number ul li:after {
            content: "";
            width: 40px;
            height: 54px;
            display: block;
            background: url(../images/common/icon_circle.svg) center center/cover no-repeat;
            position: absolute;
            top: -17px;
            left: 48%;
            transform: translate(-50%, 0%);
            opacity: 0; }
            @media only screen and (max-width: 767px) {
              body.top .contents__box .number ul li:after {
                top: -13px;
                width: 26px;
                height: 40px; } }
          body.top .contents__box .number ul li.current:after {
            opacity: 1; }
      body.top .contents__box .number hr {
        width: 100%;
        height: 1px;
        margin: 28px 0 34px;
        display: block;
        position: relative;
        border: none; }
        @media only screen and (max-width: 767px) {
          body.top .contents__box .number hr {
            margin: 22px 0 40px; } }
        body.top .contents__box .number hr:after {
          content: "";
          width: 106px;
          height: 1px;
          display: block;
          background: #fff;
          position: absolute;
          top: 0;
          left: 0; }
    body.top .contents__box .title {
      margin-bottom: 22px; }
      @media only screen and (max-width: 767px) {
        body.top .contents__box .title {
          margin-bottom: 50px; } }
      body.top .contents__box .title span {
        font-size: 29px;
        font-size: 2.9rem;
        letter-spacing: 0.02em;
        font-family: "trajan-pro-3", serif;
        display: block;
        margin-bottom: 16px; }
      body.top .contents__box .title strong {
        font-size: 46px;
        font-size: 4.6rem;
        letter-spacing: 0.02em;
        font-family: "trajan-pro-3", serif;
        display: block;
        margin-bottom: 20px; }
        @media only screen and (max-width: 767px) {
          body.top .contents__box .title strong {
            margin-bottom: 12px; } }
      body.top .contents__box .title small {
        font-size: 15px;
        font-size: 1.5rem;
        letter-spacing: 0.14em;
        line-height: 1.73333333;
        font-weight: 600;
        display: block; }
    body.top .contents__box .description {
      font-size: 15px;
      font-size: 1.5rem;
      line-height: 1.93333333;
      font-weight: 500; }
      @media only screen and (max-width: 767px) {
        body.top .contents__box .description {
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.6875; } }

body.top .news {
  padding: 144px 0 117px;
  position: relative; }
  @media only screen and (max-width: 767px) {
    body.top .news {
      padding: 84px 0 68px; } }
  body.top .news__bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0; }
    body.top .news__bg img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: top center; }
  body.top .news .inner {
    position: relative; }
  body.top .news__list {
    max-width: 963px;
    margin: 70px auto 80px; }
    @media only screen and (max-width: 767px) {
      body.top .news__list {
        margin: 50px auto; } }
    body.top .news__list li {
      border-top: 1px solid #000; }
      body.top .news__list li:last-of-type {
        border-bottom: 1px solid #000; }
      body.top .news__list li a {
        padding: 38px 0px;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: opacity .3s; }
        @media only screen and (max-width: 767px) {
          body.top .news__list li a {
            padding: 18px 0 16px; } }
        body.top .news__list li a:hover {
          opacity: 0.6; }
          body.top .news__list li a:hover > div:after {
            transform: translate(10px, -50%); }
        body.top .news__list li a > div {
          width: 100%;
          max-width: 863px;
          margin: 0 auto;
          display: flex;
          align-items: center;
          position: relative; }
          @media only screen and (max-width: 767px) {
            body.top .news__list li a > div {
              padding-left: 15px;
              flex-wrap: wrap; } }
          body.top .news__list li a > div:after {
            content: "";
            width: 33px;
            height: 14px;
            display: block;
            background: url(../images/common/arrow_right.svg) center center/cover no-repeat;
            position: absolute;
            top: 50%;
            right: 0%;
            transform: translate(0%, -50%);
            transition: transform .3s; }
          body.top .news__list li a > div .date {
            font-size: 13px;
            font-size: 1.3rem;
            letter-spacing: 0.07em;
            line-height: 1.76923077;
            font-weight: 500;
            width: 137px; }
            @media only screen and (max-width: 767px) {
              body.top .news__list li a > div .date {
                width: 94px; } }
          body.top .news__list li a > div .cate {
            font-size: 15px;
            font-size: 1.5rem;
            letter-spacing: 0.07em;
            line-height: 1.73333333;
            font-weight: 500;
            width: 98px; }
            @media only screen and (max-width: 767px) {
              body.top .news__list li a > div .cate {
                width: auto;
                margin-top: -1px; } }
          body.top .news__list li a > div .title {
            font-size: 15px;
            font-size: 1.5rem;
            letter-spacing: 0.07em;
            line-height: 1.73333333;
            font-weight: 500;
            padding-right: 50px;
            width: calc(100% - 235px); }
            @media only screen and (max-width: 767px) {
              body.top .news__list li a > div .title {
                width: 100%; } }
  body.top .news .c-btn {
    margin: 0 auto; }
    @media only screen and (max-width: 767px) {
      body.top .news .c-btn {
        max-width: calc(100% - 32px); } }

body.top .company {
  padding: 100px 0; }
  @media only screen and (max-width: 767px) {
    body.top .company {
      padding: 70px 0; } }
  body.top .company .inner {
    max-width: 1042px; }
  body.top .company__table {
    margin: 70px auto 100px; }
    @media only screen and (max-width: 767px) {
      body.top .company__table {
        margin: 50px auto 70px; } }
    body.top .company__table table {
      width: 100%; }
      body.top .company__table table tr:nth-of-type(1) td {
        border-top: 1px solid #000000; }
      body.top .company__table table tr th {
        width: 250px;
        background: #8D9DAD;
        color: #fff;
        font-size: 12px;
        font-size: 1.2rem;
        letter-spacing: 0.05em;
        font-weight: 500;
        text-align: center;
        padding: 32px;
        border-bottom: 1px solid #fff; }
        @media only screen and (max-width: 767px) {
          body.top .company__table table tr th {
            width: 110px;
            font-size: 13px;
            font-size: 1.3rem;
            padding: 28px 10px; } }
      body.top .company__table table tr td {
        width: calc(100% - 250px);
        font-size: 14px;
        font-size: 1.4rem;
        letter-spacing: 0.05em;
        line-height: 1.71428571;
        font-weight: 500;
        padding: 18px 33px 18px 90px;
        border-bottom: 1px solid #000000; }
        @media only screen and (max-width: 767px) {
          body.top .company__table table tr td {
            width: calc(100% - 110px);
            padding: 16px 0 16px 20px;
            font-size: 14px;
            font-size: 1.4rem; } }
        body.top .company__table table tr td strong {
          display: block;
          font-size: 16px;
          font-size: 1.6rem;
          line-height: 1.6875;
          font-weight: 600; }
        body.top .company__table table tr td .link {
          font-size: 10px;
          font-size: 1rem;
          letter-spacing: 0.05em;
          font-weight: 500;
          font-family: "Futura", sans-serif;
          color: #fff;
          background: #8D9DAD;
          border-radius: 10px;
          position: relative;
          padding: 6px 16px 4px;
          display: inline-block;
          line-height: 1;
          margin-bottom: 16px; }
          @media only screen and (max-width: 767px) {
            body.top .company__table table tr td .link {
              font-size: 12px;
              font-size: 1.2rem;
              padding: 8px 32px 6px;
              border-radius: 18px; } }
        body.top .company__table table tr td p {
          margin-bottom: 18px; }
          body.top .company__table table tr td p:last-of-type {
            margin-bottom: 0; }
  body.top .company .c-btn-big {
    margin: 0 auto; }
