@charset "UTF-8";
:root {
  --base_wid: 1600;
}
@media (max-width: 767px) {
  :root {
    --base_wid: 750;
  }
}

/* リセット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: #333;
  font-family: "Noto Sans JP", sans-serif;
  word-break: break-all;
}
body.is-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow-y: scroll; /* スクロールバー補完 */
}

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

a {
  transition: all 0.35s;
}

/* スマホ用の表示の時はis-pcは非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
/* PC用の表示の時はis-spは非表示 */
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
/* コンテンツ幅
------------------------------*/
.inner {
  width: 1390px;
  max-width: 90%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .u-inner1220 {
    width: 1220px;
  }
}

/* タイトル
------------------------------*/
.c-section-title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.c-section-title__en {
  font-size: min(5.8rem, 58 / var(--base_wid) * 100vw);
  font-weight: 700;
  color: #a02126;
  font-family: "Antonio", sans-serif;
}
.c-section-title__en--sm {
  font-size: min(3.4rem, 34 / var(--base_wid) * 100vw);
}

.c-section-title__ja {
  font-size: min(2.4rem, 24 / var(--base_wid) * 100vw);
  line-height: 1.75;
  font-weight: 500;
  margin-top: 0.5em;
}
.c-section-title__ja--lg {
  font-size: min(2.7rem, 100vw * 27 / var(--base_wid));
}
/* 下層ページタイトル
------------------------------*/
.c-page-header {
  width: 93.75%;
  margin-left: auto;
  background: #e6e6e6;
  padding: min(140px, 100vw * 140 / var(--base_wid)) 0;
  padding-right: 6%;
}
@media (max-width: 767px) {
  .c-page-header {
    width: 100%;
    padding: 34% 0;
  }
}

.c-page-title {
  text-align: center;
}

.c-page-title__en {
  font-size: min(4.6rem, 100vw * 46 / var(--base_wid));
  font-weight: 700;
  color: #a02126;
  font-family: "Antonio", sans-serif;
}
.c-page-title__ja {
  display: block;
  font-size: min(2.7rem, 27 / var(--base_wid) * 100vw);
  font-weight: 500;
  line-height: 1.7407407407;
  transform: translateY(0.9em);
}
/* ボタン
------------------------------*/
.c-button {
  display: inline-block;
  width: 16em;
  border-radius: min(41px, 41 / var(--base_wid) * 100vw);
  font-size: min(2rem, 100vw * 20 / var(--base_wid));
  font-weight: 400;
  padding: 1em 0;
  text-align: center;
  border: 1px solid #a02126;
  padding: 1.5em 0;
  color: #a02126;
  position: relative;
}
.c-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  transform: translateY(-50%);
  background: #a02126;
  width: 3.2%;
  aspect-ratio: 10/20;
  -webkit-mask-image: url(../img/icon_arrow1.svg);
          mask-image: url(../img/icon_arrow1.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-button--red {
  background: #a02126;
  color: #fff;
}
.c-button--red::after {
  background: url(../img/icon_arrow1_wh.svg) no-repeat center center/contain;
}

.c-button-invert-wh {
  border: 1px solid #a02126;
}
@media (hover: hover) {
  .c-button-invert-wh:hover {
    opacity: 1;
    background: #fff;
    color: #a02126;
  }
  .c-button-invert-wh:hover::after {
    background: #a02126;
  }
}
.c-button-invert-wh.act { /* 複製 */
  opacity: 1;
  background: #fff;
  color: #a02126;
}
.c-button-invert-wh.act::after {
  background: #a02126;
}

.c-button-invert-red {
  border: 1px solid #a02126;
}
@media (hover: hover) {
  .c-button-invert-red:hover {
    opacity: 1;
    background: #a02126;
    color: #fff;
  }
  .c-button-invert-red:hover::after {
    background: #fff;
  }
}
.c-button-invert-red.act { /* 複製 */
  opacity: 1;
  background: #a02126;
  color: #fff;
}
.c-button-invert-red.act::after {
  background: #fff;
}

.c-button-invert-bk {
  border: 1px solid #333;
}
@media (hover: hover) {
  .c-button-invert-bk:hover {
    opacity: 1;
    background: #333;
    color: #fff;
  }
  .c-button-invert-bk:hover::after {
    background: #fff;
  }
}
.c-button-invert-bk.act { /* 複製 */
  opacity: 1;
  background: #333;
  color: #fff;
}
.c-button-invert-bk.act::after {
  background: #fff;
}

/*------------------------------
サイトバー
------------------------------*/
.c-layout {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .c-layout {
    display: block;
  }
}

.c-layout__main {
  width: 68%;
}
@media (max-width: 767px) {
  .c-layout__main {
    width: 100%;
  }
}

.c-layout__sidebar {
  width: 26%;
}
@media (max-width: 767px) {
  .c-layout__sidebar {
    width: 100%;
    margin-top: 27%;
  }
}

.c-sidebar__category {
  padding-bottom: min(50px, 3.125vw);
}
.c-sidebar__category li:nth-child(n+2) {
  margin-top: 4%;
}
.c-sidebar__category li a {
  display: inline-block;
  width: 100%;
  font-size: min(2rem, 100vw * 20 / var(--base_wid));
  font-weight: 400;
  line-height: 1.75;
  color: #a02126;
  border: 1px solid #a02126;
  border-radius: 26px;
  border-radius: min(26px, 1.625vw);
  padding: 0.5em 0;
  text-align: center;
}
@media (max-width: 767px) {
  .c-sidebar__category {
    padding-bottom: 12%;
  }
  .c-sidebar__category li a {
    font-size: min(2.8rem, 3.7333333333vw);
    padding: 0.6em 0;
    border-radius: min(40px, 5.3333333333vw);
  }
}

.c-sidebar__archive {
  padding-top: min(50px, 3.125vw);
  border-top: 1px dashed #333;
}
.c-sidebar__archive li:nth-child(n+2) {
  margin-top: 4%;
}
.c-sidebar__archive li a {
  display: inline-block;
  width: 100%;
  font-size: min(2rem, 1.5625vw);
  font-weight: 400;
  line-height: 1.75;
  border: 1px solid #333;
  border-radius: 26px;
  padding: 10px 0;
  text-align: center;
}
@media (max-width: 767px) {
  .c-sidebar__archive {
    padding-top: 12%;
  }
  .c-sidebar__archive li a {
    font-size: min(2.8rem, 3.7333333333vw);
    padding: 0.6em 0;
    border-radius: min(40px, 5.3333333333vw);
  }
}

.sidebar__past {
  display: block;
  border: 1px solid #a02126;
  margin-top: 16%;
  text-align: center;
  padding: 12% 0;
}
@media (max-width: 767px) {
  .sidebar__past {
    padding: 10% 0;
  }
}

.sidebar__past_en {
  font-family: "Antonio", sans-serif;
  font-weight: bold;
  color: #a02126;
  font-size: min(3.7rem, 100vw * 37 / var(--base_wid));
  position: relative;
  padding-bottom: 1em;
}
.sidebar__past_en::after {
  content: "";
  position: absolute;
  background: #a02126;
  height: 1px;
  width: 22%;
  left: 50%;
  bottom: 0%;
  transform: translate(-50%, 0%);
}
@media (max-width: 767px) {
  .sidebar__past_en {
    font-size: calc(100vw * 55 / var(--base_wid));
  }
}

.sidebar__past_ja {
  font-weight: 500;
  color: #333;
  font-size: min(2.7rem, 100vw * 27 / var(--base_wid));
  margin-top: 1.1em;
}
@media (max-width: 767px) {
  .sidebar__past_ja {
    font-size: calc(100vw * 40 / var(--base_wid));
  }
}

/*------------------------------
LINE問い合わせ
------------------------------*/
.c-line-banner {
  position: relative;
  color: #fff;
  display: flex;
  align-items: center;
}
.c-line-banner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../img/icon_line.svg) no-repeat center center/contain;
  width: 3.56em;
  aspect-ratio: 153/146;
}
.c-line-banner::after {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon_arrow2.svg) no-repeat center center/contain;
  width: 3em;
  aspect-ratio: 130/107;
  margin-left: 1.7em;
  transform: translateY(10%);
}

.c-line-banner__ja {
  font-weight: 500;
}

.c-line-banner__en {
  display: block;
  font-weight: 700;
  font-family: "Antonio", sans-serif;
}

/*------------------------------
NEWS一覧
------------------------------*/
.c-news-item {
  border-bottom: 1px dotted #000;
}
.c-news-item:first-child {
  border-top: 1px dotted #000;
}
.c-news-item a {
  display: flex;
  align-items: center;
  position: relative;
  padding: 3.4% 2.2%;
}
.c-news-item a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  background: url(../img/icon_arrow1.svg) no-repeat center center/contain;
  width: 1%;
  aspect-ratio: 10/20;
}
@media (max-width: 767px) {
  .c-news-item a {
    display: block;
    padding: 4.4% 2.2%;
  }
  .c-news-item a::after {
    width: 2%;
    right: 5.1%;
  }
}

.c-news__meta {
  width: min(410px, 410 / var(--base_wid) * 100vw);
  max-width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 5%;
}
@media (max-width: 767px) {
  .c-news__meta {
    width: 100%;
    justify-content: flex-start;
  }
}

.c-news__date {
  width: 35%;
  font-size: min(2.3rem, 100vw * 23 / var(--base_wid));
  font-weight: 500;
  line-height: 1.7391304348;
  color: #a02126;
}
@media (max-width: 767px) {
  .c-news__date {
    width: 6.7em;
  }
}

.c-news__category {
  min-width: 9.25em;
  max-width: 60%;
  font-size: min(2rem, 100vw * 20 / var(--base_wid));
  font-weight: 400;
  color: #a02126;
  border: 1px solid #a02126;
  border-radius: min(26px, 26 / var(--base_wid) * 100vw);
  padding: 0.8em 0.5em;
  text-align: center;
}
.c-news__title {
  width: min(927px, 927 / var(--base_wid) * 100vw);
  font-size: min(2.7rem, 100vw * 27 / var(--base_wid));
  font-weight: 500;
  line-height: 1.7407407407;
}
@media (max-width: 767px) {
  .c-news__title {
    font-size: min(3.1rem, 100vw * 31 / var(--base_wid));
    margin-top: 0.8em;
    width: 100%;
  }
}

/*------------------------------
EVENT一覧
------------------------------*/
.c-event {
  display: flex;
  flex-wrap: wrap;
  margin-top: min(35px, 2.1875vw);
}
@media (max-width: 767px) {
  .c-event {
    display: block;
    width: 96%;
    margin: 0 auto;
  }
}

.c-event__item {
  width: 29.9666666667%;
  background: #fff;
}
@media (min-width: 768px) {
  .c-event__item:not(:nth-child(3n)) {
    margin-right: 5%;
  }
  .c-event__item:nth-child(n+4) {
    margin-top: 10%;
  }
}
@media (max-width: 767px) {
  .c-event__item {
    width: 100%;
  }
  .c-event__item:nth-child(n+2) {
    margin-top: 16%;
  }
}

.c-event__thumbnail {
  width: 100%;
  aspect-ratio: 420/290;
}
.c-event__thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-event__title {
  font-size: min(2.7rem, 1.6875vw);
  font-weight: 500;
  line-height: 1.7777777778;
  margin-top: 0.8em;
}
@media (max-width: 767px) {
  .c-event__title {
    font-size: min(4.1rem, 5.4666666667vw);
  }
}

.c-event__date {
  font-size: min(2.3rem, 1.4375vw);
  font-weight: 500;
  line-height: 1.7391304348;
  color: #a02126;
  margin-top: 0.4em;
}
@media (max-width: 767px) {
  .c-event__date {
    font-size: min(3.5rem, 4.6666666667vw);
  }
}

.c-event__excerpt {
  font-size: min(2rem, 1.25vw);
  font-weight: 500;
  line-height: 1.75;
  margin-top: 0.4em;
}
@media (max-width: 767px) {
  .c-event__excerpt {
    font-size: min(3.1rem, 4.1333333333vw);
  }
}

.c-event__category {
  display: inline-block;
  font-size: min(1.7rem, 1.5625vw);
  font-weight: 400;
  background: #a02126;
  border-radius: 1.3em;
  color: #fff;
  text-align: center;
  padding: 0.8em 2.6em;
  margin-top: 1.4em;
}
@media (max-width: 767px) {
  .c-event__category {
    font-size: min(2.6rem, 3.4666666667vw);
  }
}

/*------------------------------
情報誌一覧
------------------------------*/
.c-magazine {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .c-magazine {
    display: block;
  }
}

.c-magazine__item {
  width: 25.9666666667%;
}
@media (min-width: 768px) {
  .c-magazine__item:not(:nth-child(3n)) {
    margin-right: 11%;
  }
  .c-magazine__item:nth-child(n+4) {
    margin-top: 10%;
  }
}
@media (max-width: 767px) {
  .c-magazine__item {
    width: 100%;
  }
  .c-magazine__item:nth-child(n+2) {
    margin-top: 30px;
  }
}

.c-magazine__text {
  position: relative;
}
.c-magazine__text::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.2em;
  transform: translateY(-50%);
  background: #a02126;
  width: 1.2em;
  aspect-ratio: 10/20;
  -webkit-mask-image: url(../img/icon_arrow1.svg);
          mask-image: url(../img/icon_arrow1.svg);
  -webkit-mask-size: 100%;
          mask-size: 100%;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
}
.c-magazine__text.no__after::after {
  display: none;
}

.c-magazine__issue {
  margin-top: 0.4em;
  font-size: min(2.3rem, 23 / var(--base_wid) * 100vw);
  font-weight: 500;
  line-height: 1.7391304348;
  color: #a02126;
}
@media (max-width: 767px) {
  .c-magazine__issue {
    font-size: min(2.3rem, 3.7333333333vw);
    margin-top: 15px;
  }
}

.c-magazine__title {
  font-size: min(2.7rem, 27 / var(--base_wid) * 100vw);
  font-weight: 500;
  line-height: 1.7407407407;
  margin-top: 0.2em;
}
@media (max-width: 767px) {
  .c-magazine__title {
    font-size: min(2.7rem, 4.2666666667vw);
    margin-top: 0.5em;
  }
}

/*------------------------------
header
------------------------------*/
header {
  position: relative;
  padding: min(30px, 100vw * 30 / var(--base_wid)) 0 min(20px, 100vw * 20 / var(--base_wid));
}
header:has(.is-active) {
  z-index: 600;
}
@media (max-width: 767px) {
  header {
    padding: min(30px, 4vw) 0 min(40px, 5.3333333333vw);
  }
}

.header__submenu {
  position: absolute;
  top: 0;
  right: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  padding: 0.85em 0.5em;
  background: #333;
  font-size: min(1.7rem, 1.0625vw);
}
.header__submenu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 1px;
  transform: translateX(-100%);
  background: #333;
  -webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 100% 100%, 100% 0);
  width: 11%;
  height: 100%;
}
.header__submenu li:not(:last-child) {
  border-right: 1px solid #fff;
}
.header__submenu li a {
  width: 100%;
  font-weight: 500;
  line-height: 1.7647058824;
  color: #fff;
  padding: 0 1.4em;
  display: flex;
  align-items: center;
}
.header__submenu li a img {
  width: 0.882em;
  margin-right: 5px;
}
@media (max-width: 767px) {
  .header__submenu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header__content {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}

.header__logo {
  position: fixed;
  z-index: 500;
  top: 0;
  left: 0;
  width: min(324px, 20.25vw);
  transform-origin: left top;
  transition: transform 0.5s;
}
.header__logo.act {
  transform: scale(0.3);
}
@media (max-width: 767px) {
  .header__logo {
    width: 30.2%;
  }
}

.header__nav {
  padding-top: min(70px, 4.375vw);
}

.header__menu {
  width: 74%;
  display: flex;
  margin-left: auto;
}
@media (max-width: 767px) {
  .header__menu {
    display: none;
  }
}

.header__item {
  width: 20%;
  text-align: center;
  border-left: 0.75px dotted #333;
}
.header__item:last-child {
  border-right: 0.75px dotted #333;
}
.header__item:nth-child(4) a {
  letter-spacing: -0.06em;
  font-feature-settings: "palt";
}
.header__item a {
  display: inline-block;
  width: 100%;
  font-size: min(1.7rem, 1.0625vw);
  font-weight: 500;
  line-height: 2;
  padding: 0.7em 0;
}
@media (hover: hover) {
  .header__item:hover a {
    opacity: 1;
  }
  .header__item:hover .header__item-en {
    color: #ff0000;
  }
}

.header__item-en {
  display: block;
  font-size: min(1.8rem, 1.125vw);
  font-weight: 700;
  color: #a02126;
  font-family: "Antonio", sans-serif;
  transition: all 0.35s;
}

.drawer-icon {
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
  cursor: pointer;
  width: 7%;
  aspect-ratio: 54/28;
  transform: translate(15%, -15%);
}
@media (max-width: 767px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active .drawer-icon__bar1,
.drawer-icon.is-active .drawer-icon__bar2,
.drawer-icon.is-active .drawer-icon__bar3 {
  background: #fff;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(43deg);
  left: 15%;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  transform: rotate(90deg);
  opacity: 0;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: translate(-15%, 230%) rotate(137deg);
  top: 50%;
  left: 15%;
}
.drawer-icon.is-active .drawer-icon__text {
  color: #fff;
  transform: translateY(240%);
}

.drawer-icon__bars {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  z-index: 400;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  width: 100%;
  aspect-ratio: 54/2;
  background: #a02126;
  top: 0;
  left: 0;
  transition: all 0.5s;
}

.drawer-icon__text {
  position: absolute;
  bottom: 0%;
  width: 100%;
  white-space: nowrap;
  font-size: min(1.5rem, 2vw);
  font-weight: 700;
  letter-spacing: 0.32em;
  color: #a02126;
  font-family: "Antonio", sans-serif;
  transform: translateY(130%);
  text-align: center;
}

.drawer-icon__bar1 {
  top: 0;
  transform-origin: left;
}

.drawer-icon__bar2 {
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.drawer-icon__bar3 {
  top: 100%;
  transform: translateY(-100%);
}

.drawer-content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  background: #a02126;
  padding: 15% 9.4%;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  overflow-y: auto;
  overscroll-behavior: contain; /* scroll伝番防止 */
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-menu li a {
  display: block;
  font-size: min(3.6rem, 4.8vw);
  font-weight: 700;
  line-height: 2.2222222222;
  color: #fff;
}

.drawer-contact {
  padding-left: min(110px, 14.6666666667vw);
  margin-top: min(65px, 8.6666666667vw);
}
.drawer-contact::before {
  width: 12vw;
}
.drawer-contact::after {
  width: 12vw;
  margin-left: 4.5vw;
  transform: translateY(10%);
}

.drawer-contact__ja {
  font-size: min(2.6rem, 3.4666666667vw);
}

.drawer-contact__en {
  font-size: min(1.9rem, 2.5333333333vw);
  display: block;
  margin-top: 1em;
}

/*------------------------------
footer
------------------------------*/
footer {
  padding: min(100px, 6.25vw) 0 min(120px, 7.5vw);
}
@media (max-width: 767px) {
  footer {
    padding-top: 7%;
  }
}

.footer__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .footer__wrapper {
    padding: 0 2%;
  }
}

.footer__logo {
  width: min(270px, 16.875vw);
}
@media (max-width: 767px) {
  .footer__logo {
    width: min(270px, 36vw);
  }
}

.footer__content {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-left: 1%;
}
@media (max-width: 767px) {
  .footer__content {
    width: 50%;
  }
}

.footer__nav {
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .footer__nav {
    display: block;
  }
}

.footer__menu {
  padding-left: min(30px, 1.875vw);
  border-left: 1px solid #333;
}
.footer__menu li {
  width: min(230px, 14.375vw);
}
.footer__menu li a {
  display: inline-block;
  width: 100%;
  font-size: min(2rem, 20 / var(--base_wid) * 100vw);
  font-weight: 500;
  line-height: 2.55;
}
@media (max-width: 767px) {
  .footer__menu {
    padding-left: 8%;
  }
  .footer__menu:first-child li:first-child a {
    margin-top: calc((1lh - 1em) / -2);
  }
  .footer__menu li {
    width: 100%;
  }
  .footer__menu li a {
    font-size: min(2.4rem, 3.2vw);
    line-height: 2.35;
  }
}

.footer__copyright {
  font-size: min(1.7rem, 17 / var(--base_wid) * 100vw);
  font-weight: 400;
  line-height: 2.0588235294;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .footer__copyright {
    margin-top: 7.3%;
    padding: 0 2%;
  }
}

.footer__img {
  width: 94px;
}
@media (max-width: 767px) {
  .footer__img {
    width: min(94px, 12.5333333333vw);
    margin-top: min(80px, 10.6666666667vw);
  }
}

/*------------------------------
line
------------------------------*/
.line {
  background: #a02126;
  transition: all 0.35s;
}
.line a {
  padding: min(130px, 8.125vw) 0;
  font-size: min(4.3rem, 3.125vw);
  line-height: 1.7441860465;
  padding-left: 4.5em;
}
@media (hover: hover) {
  .line:hover {
    background: #ff0000;
  }
  .line:hover a {
    opacity: 1;
  }
}
@media (max-width: 767px) {
  .line a {
    font-size: min(2.8rem, 3.7333333333vw);
    padding: 14.5% 0;
    padding-left: 4.5em;
  }
}

.line__text-en {
  font-size: min(2.3rem, 2.0833333333vw);
}
@media (max-width: 767px) {
  .line__text-en {
    font-size: min(1.5rem, 2vw);
  }
}

/*------------------------------
fade
------------------------------*/
.fade {
  opacity: 0;
}
.fade.nofade {
  opacity: 1;
}

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

/*------------------------------
投稿デフォルト
------------------------------*/
.c-default-style h1, .c-default-style h2, .c-default-style h3, .c-default-style h4, .c-default-style h5, .c-default-style h6, .c-default-style strong {
  font-weight: bold;
  margin: 1em 0;
}
.c-default-style h2 {
  font-size: 1.5em;
}
.c-default-style h3 {
  font-size: 1.17em;
}
.c-default-style h4 {
  font-size: 100%;
}
.c-default-style h5 {
  font-size: 0.83em;
}
.c-default-style h6 {
  font-size: 0.67em;
}
.c-default-style figure a {
  width: 100%;
}
.c-default-style a {
  color: #2271b1;
  text-decoration: underline;
}
.c-default-style ol {
  counter-reset: count 0;
}
.c-default-style ol li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-default-style ol li::before {
  content: counter(count) ".";
  counter-increment: count 1;
}
.c-default-style ul li {
  text-indent: -1em;
  padding-left: 1em;
}
.c-default-style ul li::before {
  content: "・";
}
/*# sourceMappingURL=common.css.map */