@charset "UTF-8";
/* リセットCSS
===================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  padding: 0;
  margin: 0;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 1.6;
  font-weight: 500;
  background: #fff;
}

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, button, 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 {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

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

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

q, blockquote {
  quotes: none;
}

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

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

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

a {
  text-decoration: none;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
  }
}

input, select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  background: #fff;
}

/*------------------------------
common
------------------------------*/
body {
  color: #3f3f3f;
  font-family: "Noto Serif JP", serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

html {
  font-size: 100%;
  scroll-behavior: smooth;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media (max-width: 767px) {
  main {
    margin-top: 70px;
  }
}

/* コンテンツ幅
------------------------------*/
.inner {
  width: 1680px;
  max-width: 90%;
  margin: 0 auto;
}

.u-inner-full {
  width: 1920px;
  max-width: 100%;
}

/* タイトル
------------------------------*/
.c-sec-ttl.left {
  padding-left: 6%;
}

.c-sec-ttl__ja {
  display: block;
  font-size: min(3rem, 2.5714285714vw);
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-sec-ttl__ja {
    font-size: 1.5rem;
  }
}

.c-sec-ttl__en {
  display: block;
  font-size: clamp(0.5rem, 0.8571428571vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.2em;
  margin-top: 0.75em;
}
@media (max-width: 767px) {
  .c-sec-ttl__en {
    font-size: 0.75rem;
  }
}

.c-sec-line {
  position: relative;
}
.c-sec-line > span {
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);
  width: 82.6%;
  background: #424242;
  height: 1px;
}
.c-sec-line > span.right {
  right: 0;
  transform-origin: left;
}
@media (max-width: 767px) {
  .c-sec-line > span {
    width: 62%;
  }
}

.c-sec-line-wh > span {
  background: #fff;
}

/* ページヘッダー
------------------------------*/
.c-page-head {
  margin-top: min(160px, 8.3333333333vw);
}
@media (max-width: 767px) {
  .c-page-head {
    margin-top: 5%;
  }
}

.c-page-head__body {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-page-head__body {
    display: block;
  }
}

.c-page-ttl__en {
  display: block;
  font-size: clamp(0.5rem, 0.8571428571vw, 1rem);
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.2em;
}
@media (max-width: 767px) {
  .c-page-ttl__en {
    font-size: 0.75rem;
  }
}

.c-page-ttl__ja {
  display: block;
  font-size: min(3rem, 2.5714285714vw);
  font-weight: 600;
  line-height: 1.3; /* sy */
  margin-top: 0.5em;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .c-page-ttl__ja {
    font-size: 1.5rem;
  }
}

.c-page-nav {
  display: flex;
}
.c-page-nav li:nth-child(n+2) {
  margin-left: min(80px, 4.1666666667vw); /* sy */
}
.c-page-nav li a {
  display: inline-block;
  font-size: clamp(0.625rem, 1.0714285714vw, 1.25rem);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: 0.04em;
}
@media (max-width: 767px) {
  .c-page-nav {
    margin-top: 5%;
  }
  .c-page-nav li a {
    font-size: 0.75rem;
  }
}

.c-page-mv {
  position: relative;
  margin-top: min(35px, 1.8229166667vw);
}
@media (max-width: 767px) {
  .c-page-mv {
    margin-top: 5%;
  }
  .c-page-mv img {
    aspect-ratio: 375/150;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

/* ニュース一覧
------------------------------*/
.c-news-list {
  max-width: 1410px;
  margin: 0 auto;
}

.c-news-list__item {
  padding: 1.85% 3.5460992908%;
  border: 1px solid #d6d6d6;
}
.c-news-list__item:nth-child(n+2) {
  margin-top: 1.65%;
}
.c-news-list__item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: clamp(0.625rem, 1.0714285714vw, 1.25rem);
  font-weight: 400;
  line-height: 1.85;
}
@media screen and (max-width: 999px) {
  .c-news-list__item {
    padding: 1.85% 1.5%;
  }
}
@media (max-width: 767px) {
  .c-news-list__item a {
    display: block;
    font-size: 0.75rem;
  }
}

.c-news-list__meta {
  width: 28.2442748092%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 999px) {
  .c-news-list__meta {
    width: 30%;
  }
}
@media (max-width: 767px) {
  .c-news-list__meta {
    width: 100%;
  }
}

.c-news-list__date {
  letter-spacing: 0.18em;
}

.c-news-list__category {
  display: block;
  min-width: 8.4em;
  letter-spacing: 0.05em;
  color: #fff;
  background: #424242;
  text-align: center;
}

.c-news-list__title {
  width: 61.0687022901%;
  letter-spacing: 0.18em;
}
@media (max-width: 767px) {
  .c-news-list__title {
    width: 100%;
    margin-top: 10px;
  }
}

/*------------------------------
404
------------------------------*/
.error-page {
  padding: 10% 0 24.4%;
  text-align: center;
}
.error-page h2 {
  font-size: 3.75rem;
  font-weight: bold;
}
.error-page p {
  padding-top: 5%;
  font-size: 1.25rem;
}
@media (max-width: 767px) {
  .error-page h2 {
    font-size: 2.5rem;
  }
  .error-page p {
    font-size: 1rem;
  }
}

/*------------------------------
fade
------------------------------*/
.fade:not(.nofade) {
  opacity: 0;
}

/*------------------------------
tel link
------------------------------*/
.tel-link {
  position: absolute;
  background: url(../img/tel-link.png) no-repeat center center/100%;
  transform: translate(0%, -50%);
  aspect-ratio: 377/753;
  width: 10%;
  right: 0%;
  top: 50%;
  z-index: 200;
}
.tel-link.type2 {
  top: 25%;
}
@media (max-width: 767px) {
  .tel-link {
    display: none;
  }
}

/*------------------------------
animation
------------------------------*/
.c-line-anim {
  position: relative;
}
.c-line-anim::before {
  content: "";
  position: absolute;
  background: #424242;
  height: 1px;
  transform: translate(0%, -50%) scaleX(0);
  top: 50%;
  width: 18em;
  right: calc(100% + 2em);
  transition: transform 2s;
  transform-origin: right;
}
@media (hover: hover) {
  .c-line-anim:hover::before {
    transform: translate(0%, -50%) scaleX(1);
  }
}

.c-line-anim-wh::before {
  background: #fff;
}

.c-line-anim-right::before {
  right: unset;
  left: calc(100% + 2em);
  transform-origin: left;
}
/*# sourceMappingURL=common.css.map */