@charset "UTF-8";
/*
Theme Name: Theme name
Author: Author
Author URI:
*/
/* CSS Document */ /*Reset-------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
embed,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
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 {
  margin: 0;
  padding: 0;
  outline: 0;
  border: none;
  background: transparent;
  vertical-align: baseline;
}

html {
  height: 100%;
  overflow-y: scroll;
}

body {
  line-height: 1.8;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

article,
aside,
footer,
header,
nav,
main,
section {
  display: block;
}

strong,
em {
  font-weight: bold;
}

blockquote p {
  padding: 0.5em;
}

blockquote p.cite {
  text-align: right;
  background-color: #f0f0e8;
}

blockquote,
q {
  quotes: none;
}

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

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

br {
  letter-spacing: 0;
}

pre {
  font-family: "Osaka-Mono", "Osaka－等幅", "MS Gothic", "ＭＳ ゴシック", arial, "Lucida Grande", monospace;
  line-height: 1.4;
  letter-spacing: 0;
  white-space: pre; /* CSS 2.0 */
  white-space: pre-wrap; /* CSS 2.1 */
  white-space: pre-line; /* CSS 3.0 */
  white-space: -pre-wrap; /* Opera 4-6 */
  white-space: -o-pre-wrap; /* Opera 7 */
  white-space: -moz-pre-wrap; /* Mozilla */
  white-space: -hp-pre-wrap; /* HP Printers */
  word-wrap: break-word; /* IE 5+ */
}

hr {
  margin: 0;
  padding: 0;
  border: 0;
  color: #000;
  background-color: #000;
  height: 1px;
} /* テーブル系 */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th {
  text-align: left;
}

th,
td {
  vertical-align: top;
} /* リスト系 */
ol,
ul {
  /* list-style: none; */
  list-style-position: inside;
}

ol {
  list-style-type: decimal;
}

ol li {
  zoom: normal;
} /* ボタン系 */ /*CSS Tricks-------------------------------*/
.hideText {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
} /* 簡易ロールオーバー */
a:hover.rollover img {
  opacity: 0.7; /* Standard: FF gt 1.5, Opera, Safari */
  filter: alpha(opacity=70); /* IE lt 8 */
  -ms-filter: "alpha(opacity=70)"; /* IE 8 */
  -khtml-opacity: 0.7; /* Safari 1.x */
  -moz-opacity: 0.7; /* FF lt 1.5, Netscape */
} /* new clearfix */
.clearfix:after {
  visibility: hidden;
  display: block;
  font-size: 0;
  content: " ";
  clear: both;
  height: 0;
}

* html .clearfix {
  zoom: 1;
} /* IE6 */
*:first-child + html .clearfix {
  zoom: 1;
} /* IE7 */
/* ============================================
   🔧 Swiper高速回転バグの修正
   ============================================
   問題: prefers-reduced-motion設定時に
        transition-duration: 0.01msが適用され
        Swiperが超高速回転する

   対策: Swiperの要素を除外する
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  /* Swiperの要素を除外 */
  *:not(.swiper-wrapper):not(.swiper-slide),
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  margin-top: 0 !important;
  scroll-behavior: smooth;
  font-size: calc(100vw / 1400 * 15);
}
@media (1400px < width) {
  html {
    font-size: 15px;
  }
}
@media (width <= 768px) {
  html {
    font-size: calc(100vw / 375 * 15);
  }
}
html.is-menu-clicked {
  overflow: hidden;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #111;
  background: #f8f8f8;
  line-height: 1.57;
  word-break: break-word;
  overflow-wrap: anywhere;
}

a {
  color: #111;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  opacity: 0.9;
  filter: alpha(opacity=90);
}

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

svg {
  max-width: 100%;
}

pre {
  white-space: pre;
}

table {
  border-collapse: collapse;
}
@media (width <= 768px) {
  table:not([class]) {
    width: 100% !important;
  }
}

th,
td {
  border: 1px solid #ccc;
}

ul {
  list-style-position: outside;
  margin-left: 1.5em;
}

/********************************************
* Layout
********************************************/
/* Header */
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 1.3333333333rem;
  font-weight: 500;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 0 0.2666666667rem 0.5333333333rem rgba(0, 0, 0, 0.08);
}
@media (width <= 768px) {
  .l-header {
    height: 3.7333333333rem;
    padding-left: 0.6666666667rem;
    align-items: center;
  }
}
body:not(.p-home) .l-header, .is-scrolled .l-header {
  background: #fff;
  position: fixed;
}
@keyframes headerSlide {
  0% {
    top: -6.6666666667rem;
  }
  100% {
    top: 0;
  }
}
.l-header__left {
  display: flex;
  gap: 2.6666666667rem;
  align-items: center;
}
.l-header__logo {
  width: 20rem;
  fill: #fff;
}
@media (width <= 768px) {
  .l-header__logo {
    width: 18.6666666667rem;
  }
}
.l-header__logo-img {
  vertical-align: middle;
}
.l-header__right {
  display: flex;
  align-items: center;
  gap: 1.3333333333rem;
}
.l-header__sp {
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 100%;
  top: 0;
  transition: 0.3s;
  overflow-y: scroll;
  background: #000;
  text-align: center;
  overflow-y: scroll;
  padding: 3.3333333333rem 1.3333333333rem 5.3333333333rem;
}
.is-menu-clicked .l-header__sp {
  left: 0;
}
.l-header__sp-logo {
  width: 17.3333333333rem;
  margin: 0 auto 1.3333333333rem;
}
.l-header__sp-logo img {
  width: 100%;
}
.l-header__sp-copyrights {
  color: #888888;
  margin-bottom: 2.6666666667rem;
  font-weight: 400;
  font-size: 0.8rem;
}
.l-header__sp-list {
  list-style: none;
  font-size: 1.0666666667rem;
}
.l-header__sp-item {
  color: #fff;
  border-bottom: 1px solid #333;
  text-align: left;
  position: relative;
}
.l-header__sp-item:after {
  content: "";
  width: 0.4rem;
  height: 0.5333333333rem;
  background-color: #999;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  right: 0.6666666667rem;
  top: calc(50% - 0.2666666667rem);
}
.l-header__sp-item .c-global-nav__sub-list.c-list {
  display: block;
  position: relative;
  background: none;
  margin: 0.6666666667rem 0;
}
.l-header__sp-item .c-global-nav__sub-item {
  position: relative;
  padding-left: 1.6666666667rem;
}
.l-header__sp-item .c-global-nav__sub-item::before {
  content: "";
  position: absolute;
  left: 0.6666666667rem;
  top: 50%;
  transform: translateY(-50%);
  width: 0.2666666667rem;
  height: 0.2666666667rem;
  background: #fff;
  border-radius: 50%;
}
.l-header__sp-item .c-global-nav__sub-link {
  border-bottom: none;
  font-size: 0.8rem;
  padding: 0.3333333333rem 0;
}
.l-header__sp-item--no-link {
  padding: 0.6666666667rem 0 0 0.6666666667rem;
}
.l-header__sp-item--no-link:after {
  content: none;
}
.l-header__sp-link {
  color: #fff;
  display: block;
  padding: 0.6666666667rem;
}

.l-menu_trigger {
  position: absolute;
  top: 0;
  right: 0;
  width: 3.7333333333rem;
  margin: 0 auto;
  height: 3.7333333333rem;
  background: #000;
  display: none;
  z-index: 1;
  cursor: pointer;
}
@media (width <= 768px) {
  .l-menu_trigger {
    display: block;
  }
}
.is-menu-clicked .l-menu_trigger {
  position: fixed;
}
.l-menu_trigger__bar {
  display: inline-block;
  transition: all 0.3s;
  box-sizing: border-box;
  width: 1.6rem;
  position: absolute;
  left: calc(50% - 0.8rem);
  top: calc(50% - 0.1rem);
  height: 0.2rem;
  display: inline-block;
  background-color: #fff;
}
.l-menu_trigger__bar:nth-of-type(1) {
  transform: translateY(-0.4666666667rem);
}
.is-menu-clicked .l-menu_trigger__bar:nth-of-type(1) {
  transform: translateY(0rem) rotate(45deg);
}
.is-menu-clicked .l-menu_trigger__bar:nth-of-type(2) {
  transform: scaleX(0);
}
.l-menu_trigger__bar:nth-of-type(3) {
  transform: translateY(0.4666666667rem);
}
.is-menu-clicked .l-menu_trigger__bar:nth-of-type(3) {
  transform: translateY(0rem) rotate(-45deg);
}

/* Footer */
.l-footer {
  padding: 4.6666666667rem 0 3.3333333333rem;
  background-color: #000;
  color: #fff;
}
@media (width <= 768px) {
  .l-footer {
    text-align: center;
    padding: 2.6666666667rem 0;
  }
}
.l-footer .c-inner {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.l-footer__logo {
  width: 17.3666666667rem;
}
@media (width <= 768px) {
  .l-footer__logo {
    width: 14.3333333333rem;
    margin: 0 auto 0.6666666667rem;
    order: 2;
  }
}
@media (width <= 768px) {
  .l-footer .c-footer-nav {
    order: 1;
  }
}
.l-footer__copy {
  width: 100%;
  text-align: center;
}
@media (width <= 768px) {
  .l-footer__copy {
    order: 3;
  }
}

/* Sidebar */
.l-main {
  padding-top: 6.6666666667rem;
}
@media (width <= 768px) {
  .l-main {
    padding-top: 3.7333333333rem;
  }
}

/********************************************
* Wordpress
********************************************/
.cc-color-override--1601514304.cc-window {
  display: none;
}

/* Media */
.size-auto,
.size-full,
.size-large,
.size-medium,
.size-thumbnail {
  max-width: 100%;
  height: auto;
}

.aligncenter {
  display: block;
  margin: 0 auto;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

/* Contact Form */
.wpcf7 .wpcf7-not-valid-tip {
  display: none;
}
.wpcf7 .wpcf7-not-valid {
  background: pink;
}
.wpcf7 .wpcf7-response-output {
  margin: 10px 0 0;
  padding: 8px 35px 8px 14px;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.wpcf7 .wpcf7-validation-errors {
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid #eed3d7;
}
.wpcf7 .wpcf7-mail-sent-ok {
  color: #3a87ad;
  background-color: #d9edf7;
  border: 1px solid #bce8f1;
}
.wpcf7 input[type=text],
.wpcf7 input[type=email],
.wpcf7 input[type=url],
.wpcf7 input[type=tel],
.wpcf7 input[type=number],
.wpcf7 input[type=date],
.wpcf7 input[type=search] {
  width: 100%;
  height: 2.6666666667rem;
  font-size: 1rem;
}
.wpcf7 textarea {
  width: 100%;
  height: 16.6666666667rem;
  font-size: 1rem;
}
.wpcf7 input[type=submit] {
  background-color: #333;
  color: #fff;
  padding: 0.6666666667rem 1.3333333333rem;
  border: none;
  border-radius: 0.2666666667rem;
  font-size: 1rem;
  width: 13.3333333333rem;
  margin: 0 auto;
  display: inline-block;
  cursor: pointer;
}
.wpcf7 input[type=submit]:hover {
  background-color: #555;
}

.bogo-language-switcher {
  display: flex;
  gap: 1.3333333333rem;
  margin-left: 0 !important;
}
@media (width <= 768px) {
  .l-header__right .bogo-language-switcher {
    display: none;
  }
}
.l-header__right .bogo-language-switcher .bogo-language-name {
  color: #aaa;
}
.l-header__right .bogo-language-switcher .bogo-language-name a {
  color: #666;
}
.l-header__right .bogo-language-switcher .bogo-language-name a.current {
  font-weight: 700;
  color: #000;
}
.l-header__right .bogo-language-switcher li:not(.current) {
  opacity: 0.6;
}
.l-header__right .bogo-language-switcher li:not(.current) span {
  filter: grayscale(100%);
}
.l-header__sp .bogo-language-switcher {
  margin-top: 1.3333333333rem;
  justify-content: center;
}
.l-header__sp .bogo-language-switcher .bogo-language-name {
  color: #999;
}
.l-header__sp .bogo-language-switcher .bogo-language-name a,
.l-header__sp .bogo-language-switcher .bogo-language-name a.current {
  color: #fff;
}
.l-header__sp .bogo-language-switcher li:not(.current) {
  opacity: 0.6;
}
.l-header__sp .bogo-language-switcher li:not(.current) span {
  filter: grayscale(100%);
}

.p-404:not(.p-home) .l-article table,
.p-404:not(.p-home) .l-article img,
.p-404:not(.p-home) .l-article ul,
.p-404:not(.p-home) .l-article ol,
.p-404:not(.p-home) .l-article p,
.single:not(.p-home) .l-article table,
.single:not(.p-home) .l-article img,
.single:not(.p-home) .l-article ul,
.single:not(.p-home) .l-article ol,
.single:not(.p-home) .l-article p,
.page:not(.p-home) .l-article table,
.page:not(.p-home) .l-article img,
.page:not(.p-home) .l-article ul,
.page:not(.p-home) .l-article ol,
.page:not(.p-home) .l-article p {
  margin-bottom: 1.5em;
}
.p-404:not(.p-home) .l-article table:last-child,
.p-404:not(.p-home) .l-article img:last-child,
.p-404:not(.p-home) .l-article ul:last-child,
.p-404:not(.p-home) .l-article ol:last-child,
.p-404:not(.p-home) .l-article p:last-child,
.single:not(.p-home) .l-article table:last-child,
.single:not(.p-home) .l-article img:last-child,
.single:not(.p-home) .l-article ul:last-child,
.single:not(.p-home) .l-article ol:last-child,
.single:not(.p-home) .l-article p:last-child,
.page:not(.p-home) .l-article table:last-child,
.page:not(.p-home) .l-article img:last-child,
.page:not(.p-home) .l-article ul:last-child,
.page:not(.p-home) .l-article ol:last-child,
.page:not(.p-home) .l-article p:last-child {
  margin-bottom: 0;
}
.p-404:not(.p-home) .l-article h4,
.p-404:not(.p-home) .l-article h3,
.p-404:not(.p-home) .l-article h2,
.single:not(.p-home) .l-article h4,
.single:not(.p-home) .l-article h3,
.single:not(.p-home) .l-article h2,
.page:not(.p-home) .l-article h4,
.page:not(.p-home) .l-article h3,
.page:not(.p-home) .l-article h2 {
  margin: 2em 0 1em;
}
.p-404:not(.p-home) .l-article p,
.single:not(.p-home) .l-article p,
.page:not(.p-home) .l-article p {
  line-height: 2;
}

@media (width <= 768px) {
  body.single .c-section {
    padding-left: 1.3333333333rem;
    padding-right: 1.3333333333rem;
  }
}

body.single-post section .c-inner,
body.single-event section .c-inner {
  background-color: #fff;
  padding: 2.6666666667rem !important;
  margin-bottom: 2.6666666667rem;
}
@media (width <= 768px) {
  body.single-post section .c-inner,
  body.single-event section .c-inner {
    padding: 1.3333333333rem !important;
  }
}
body.single-post .c-post__content a,
body.single-event .c-post__content a {
  text-decoration: underline;
}

body.single-event .c-news-list--event {
  width: 100%;
}
body.single-event .c-news-list__item {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
body.single-event .c-news-list__date {
  height: auto;
  padding: 0.6666666667rem 0;
}

body.single-group .c-news-list--event {
  margin-bottom: 5.3333333333rem !important;
}
@media (width <= 768px) {
  body.single-group .c-news-list--event {
    margin-bottom: 2.6666666667rem !important;
  }
}
@media (width <= 768px) {
  body.single-group .c-inner {
    padding: 0;
  }
}

/********************************************
* Component
********************************************/
.c-answer-list {
  list-style: none;
}
.c-answer-list__item {
  background: #222222;
  color: #fff;
  border-radius: 0.4666666667rem;
  display: flex;
  justify-content: space-between;
  padding: 3.3333333333rem 6.6666666667rem 3.3333333333rem 0;
  position: relative;
}
@media (width <= 768px) {
  .c-answer-list__item {
    padding: 2rem 1.3333333333rem 1.3333333333rem;
    flex-wrap: wrap;
  }
}
.c-answer-list__item:nth-of-type(2n) {
  color: #222222;
  background: #e6e6e6;
}
.c-answer-list__item:nth-of-type(2n) .c-answer-list__title {
  background: #222;
  color: #fff;
}
.c-answer-list__item:nth-of-type(2n) .c-nayami-list__title {
  border-bottom: 1px solid #222;
}
.c-answer-list__item:not(:last-of-type) {
  margin-bottom: 4rem;
}
@media (width <= 768px) {
  .c-answer-list__item:not(:last-of-type) {
    margin-bottom: 1.3333333333rem;
  }
}
.c-answer-list__inner {
  text-align: right;
}
.c-answer-list__thumb {
  width: 36.6666666667rem;
  text-align: left;
}
@media (width <= 768px) {
  .c-answer-list__thumb {
    width: 100%;
    margin-bottom: 1.3333333333rem;
  }
}
.c-answer-list__img {
  width: 30rem;
}
.c-answer-list__title {
  font-size: 2rem;
  font-weight: 700;
  background: #e6e6e6;
  color: #222;
  display: inline-block;
  line-height: 1.167;
  padding: 0.6666666667rem 2rem;
  margin: -0.6666666667rem 0 4rem;
}
@media (width <= 768px) {
  .c-answer-list__title {
    font-size: 1.0666666667rem;
    padding: 0.6666666667rem;
    display: block;
  }
}
.c-answer-list__title-inner {
  display: flex;
  align-items: center;
}
.c-answer-list__no {
  color: #e23d00;
  font-weight: 700;
  font-size: 3.4rem;
  vertical-align: middle;
  margin-right: 0.6666666667rem;
}
@media (width <= 768px) {
  .c-answer-list__no {
    font-size: 2rem;
  }
}
.c-answer-list__text {
  width: 34.1333333333rem;
  text-align: left;
}
@media (width <= 768px) {
  .c-answer-list__text {
    width: 100%;
  }
}

.c-archive-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  gap: 1.3333333333rem;
}
.c-archive-list__item {
  width: 100%;
}
.c-archive-list__link {
  display: flex;
  justify-content: space-between;
}
.c-archive-list__date {
  width: 8rem;
}
.c-archive-list__title {
  width: calc(100% - 8.6666666667rem);
}

.c-block-list {
  padding: 0 0 2.8666666667rem;
  list-style: none;
}
@media (width <= 768px) {
  .c-block-list {
    padding: 0 0 2.6666666667rem;
  }
}
.c-block-list__wrapper {
  display: flex;
  width: 100%;
}
.c-block-list__item {
  width: 17.6rem;
  box-shadow: 0 0 1rem rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  overflow: hidden;
  flex-shrink: 0;
  position: relative;
}
.c-block-list__item:not(:last-of-type) {
  margin-right: 1.6rem;
}
.l-aside .c-block-list__item {
  border-radius: 0;
}
.l-aside .c-block-list__item .c-block-list__item-thumb {
  border-radius: 0.6666666667rem;
  overflow: hidden;
}
.c-block-list__item-thumb {
  height: 10rem;
  margin-bottom: 0.5333333333rem;
}
.c-block-list__item-text {
  padding: 0 0.9333333333rem 1.1333333333rem;
}
.c-block-list__item-text-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.1333333333rem;
}
.c-block-list__item-text-header-no {
  font-size: 1.3333333333rem;
  font-weight: 700;
  width: 2.5333333333rem;
  height: 2.5333333333rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #878787;
  border-radius: 999px;
  background: #e4e4e4;
}
.c-block-list__item-text-header-date {
  color: #868686;
  font-size: 0.8666666667rem;
  font-weight: 500;
  font-family: "Lato", sans-serif;
}
.c-block-list__item-text-title {
  font-size: 1.0666666667rem;
  font-weight: 700;
  line-height: 1.4666666667rem;
  margin-bottom: 0.4rem;
}
.c-block-list__item-text-subtitle {
  color: #e23d00;
  border-top: 1px solid #e23d00;
  border-bottom: 1px solid #e23d00;
  font-size: 0.8666666667rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 0.4666666667rem;
  padding: 0.3333333333rem 0;
}
.c-block-list__item-text-p {
  font-size: 0.9333333333rem;
  font-weight: 700;
  color: #333;
}
.c-block-list--seminar .c-block-list__wrapper {
  flex-wrap: wrap;
  gap: 3.0666666667rem;
}
@media (width <= 768px) {
  .c-block-list--seminar .c-block-list__wrapper {
    gap: 1.3333333333rem;
  }
}
.c-block-list--seminar .c-block-list__item {
  flex-shrink: inherit;
  width: 24.4666666667rem;
  margin: 0;
}
.c-block-list--seminar .c-block-list__item-thumb {
  height: 13.7333333333rem;
}
.c-block-list--seminar .c-category {
  margin-bottom: 0.5333333333rem;
}
.c-block-list--seminar .c-block-list__item-text {
  padding: 0.5333333333rem 1.0666666667rem 5.3333333333rem;
}
.c-block-list--seminar .c-block-list__item-text-title {
  font-size: 1.2rem;
  margin-bottom: 0.6666666667rem;
}
.c-block-list--seminar .c-block-list__item-text-p {
  margin-bottom: 2.3333333333rem;
  text-align: left;
}
.c-block-list--seminar .c-btn02 {
  width: calc(100% - 2.1333333333rem);
  position: absolute;
  left: 1.0666666667rem;
  bottom: 2rem;
}
.c-block-list--seminar .c-btn02:before {
  transform: scale(0.8);
}
.c-block-list--seminar .c-btn02:after {
  transform: scale(0.8) rotate(45deg);
}
.c-block-list--seminar .c-btn02__link {
  padding: 1rem 2.6666666667rem 1rem 1rem;
}
.c-block-list--col3 {
  gap: 2.9333333333rem 1.6rem;
  display: flex;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .c-block-list--col3 {
    gap: 1.3333333333rem;
    padding-bottom: 0;
  }
}
.c-block-list--col3 .c-block-list__item {
  width: 17.3333333333rem;
  margin-right: 0;
}
@media (width <= 768px) {
  .c-block-list--col3 .c-block-list__item {
    width: 100%;
  }
}
.c-block-list--col3 .c-block-list__item-thumb {
  height: 10rem;
}
@media (width <= 768px) {
  .c-block-list--col3 .c-block-list__item-thumb {
    height: 13.3333333333rem;
  }
}
.c-block-list--col3 .c-block-list__item-text-header-title {
  font-size: 1.0666666667rem;
  margin-bottom: 0.8rem;
}
.c-block-list--scroll {
  display: flex;
  overflow-x: scroll;
}
.c-block-list--scroll .c-block-list__item {
  flex-shrink: 0;
}
.c-block-list--ranking .c-block-list__item:nth-of-type(1) .c-block-list__item-text-header-no {
  background: #ffc539;
  color: #fff;
}
.c-block-list--ranking .c-block-list__item:nth-of-type(2) .c-block-list__item-text-header-no {
  background: #a9a9a9;
  color: #fff;
}
.c-block-list--ranking .c-block-list__item:nth-of-type(3) .c-block-list__item-text-header-no {
  background: #c59359;
  color: #fff;
}

.c-category {
  background: #e23d00;
  display: inline-block;
  padding: 0.1333333333rem 1.3333333333rem;
  color: #fff;
  border-radius: 999px;
  font-size: 0.8666666667rem;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-category {
    font-size: 0.6666666667rem;
    padding: 0.1333333333rem 1.3333333333rem;
  }
}

.c-g-event__list {
  display: flex;
  flex-direction: column;
  gap: 5.3333333333rem;
  margin-left: 0;
}
@media (width <= 768px) {
  .c-g-event__list {
    gap: 2.6666666667rem;
  }
}
.c-g-event__item {
  display: flex;
  flex-direction: column;
  background-color: #eee;
}
.c-g-event__item .c-table {
  background-color: #fff;
}
.c-g-event__item .c-btn02 {
  cursor: pointer;
}
.c-g-event__thumb {
  height: 33.3333333333rem;
  width: 100%;
}
@media (width <= 768px) {
  .c-g-event__thumb {
    height: 16.6666666667rem;
  }
}
.c-g-event__text {
  padding: 0 1.3333333333rem 1.3333333333rem;
}
@media (width <= 768px) {
  .c-g-event__text {
    padding: 0;
  }
}
.page:not(.p-home) .l-article .c-g-event__title {
  margin: 1.3333333333rem 0;
}
@media (width <= 768px) {
  .page:not(.p-home) .l-article .c-g-event__title {
    padding-left: 1.3333333333rem;
  }
}
.c-g-event__link {
  text-decoration: underline;
}
.c-g-event__readmore {
  display: none;
  margin: 1.3333333333rem 0;
  padding: 1.3333333333rem;
  background: #fff;
  border-top: 0.3333333333rem solid #333;
  border-bottom: 0.3333333333rem solid #333;
}

.c-nayami-list__title {
  font-size: 1.3333333333rem;
  font-weight: 700;
  border-bottom: 1px solid #fff;
  padding-bottom: 0.6666666667rem;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .c-nayami-list__title {
    font-size: 1.0666666667rem;
  }
}
.c-nayami-list__title:not(:first-child) {
  margin-top: 2.6666666667rem;
}
.c-nayami-list__text {
  position: relative;
  font-size: 1.2rem;
  padding-left: 1.2em;
}
@media (width <= 768px) {
  .c-nayami-list__text {
    font-size: 0.9333333333rem;
  }
}
.c-nayami-list__text:before {
  content: "■";
  position: absolute;
  left: 0;
}
.c-nayami-list .c-list {
  list-style: none;
  font-size: 1rem;
  margin: 0.6666666667rem 0 1.3333333333rem;
  position: relative;
}
@media (width <= 768px) {
  .c-nayami-list .c-list {
    font-size: 0.8666666667rem;
  }
}
.c-nayami-list .c-list__item {
  padding-left: 1em;
  position: relative;
}
.c-nayami-list .c-list__item:before {
  content: "-";
  position: absolute;
  left: 0;
}

.c-appeal {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 53.3333333333rem;
  margin: 0 auto 1.3333333333rem;
  border: 1px solid #ba8e2a;
  box-shadow: 0 0.2666666667rem 0.5333333333rem rgba(186, 142, 42, 0.2);
  border-radius: 0.6666666667rem;
  padding: 1.3333333333rem 3.3333333333rem 1.3333333333rem 1.6rem;
}
@media (width <= 768px) {
  .c-appeal {
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    padding: 1.3333333333rem 0.6666666667rem;
  }
}
.c-appeal__text {
  font-size: 1.3333333333rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
@media (width <= 768px) {
  .c-appeal__text {
    font-size: 1.3333333333rem;
  }
}
.c-appeal__text:before {
  content: "";
  width: 0.8rem;
  height: 0.8rem;
  display: inline-block;
  background: #ba8e2a;
  margin-right: 0.9333333333rem;
  border-radius: 999px;
}
@media (width <= 768px) {
  .c-appeal__text:before {
    display: none;
  }
}
@media (width <= 768px) {
  .c-appeal .c-btns {
    gap: 0.6666666667rem;
  }
}

.c-block__01 {
  background: #fff;
  padding: 0 1.3333333333rem 1.3333333333rem;
  border: 1px solid #707070;
}
@media (width <= 768px) {
  .c-block__01 {
    padding: 0rem 1.3333333333rem 2rem;
  }
}
.c-block__01:not(:last-of-type) {
  margin-bottom: 3.3333333333rem;
}
@media (width <= 768px) {
  .c-block__01:not(:last-of-type) {
    margin-bottom: 2rem;
  }
}
.c-block__01-title {
  background: #292929;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  text-align: center;
  padding: 1.3333333333rem;
  margin-left: -1.3333333333rem;
  width: calc(100% + 2.6666666667rem);
}
@media (width <= 768px) {
  .c-block__01-title {
    font-size: 1.0666666667rem;
    padding: 0.6666666667rem;
    margin-left: -1.3333333333rem;
    width: calc(100% + 2.6666666667rem);
  }
}
.c-block__02 {
  display: flex;
  padding: 1.3333333333rem;
  align-items: center;
}
@media (width <= 768px) {
  .c-block__02 {
    padding: 1.3333333333rem 0;
    flex-wrap: wrap;
  }
}
.c-block__02-thumb {
  width: 14.9333333333rem;
}
@media (width <= 768px) {
  .c-block__02-thumb {
    width: 100%;
  }
}
.c-block__02-text {
  width: 45.3333333333rem;
  font-size: 1rem;
}
@media (width <= 768px) {
  .c-block__02-text {
    width: 100%;
  }
}
.c-block__03 {
  background: #f8f8f8;
  padding: 2.3333333333rem;
  display: flex;
  justify-content: space-between;
}
@media (width <= 768px) {
  .c-block__03 {
    flex-wrap: wrap;
    padding: 1.3333333333rem;
  }
}
.c-block__03-title {
  font-weight: 500;
  font-size: 0.8666666667rem;
}
.c-block__03-text {
  font-size: 0.8rem;
  width: 34rem;
}
@media (width <= 768px) {
  .c-block__03-text {
    width: 100%;
    margin-bottom: 0.6666666667rem;
  }
}
.c-block__03-thumb {
  width: 21.6666666667rem;
}
@media (width <= 768px) {
  .c-block__03-thumb {
    margin: 0 -1.3333333333rem;
    width: calc(100% + 2.6666666667rem);
  }
}

.c-bnrs {
  display: flex;
  justify-content: center;
  gap: 0.6666666667rem;
  padding: 0.6666666667rem 0.6666666667rem 1.3333333333rem;
}
@media (width <= 768px) {
  .c-bnrs {
    flex-wrap: wrap;
  }
}
.c-bnrs__item {
  text-align: center;
  background: #fff;
  border-radius: 0.6666666667rem;
  width: calc(50% - 0.3333333333rem);
  padding: 4.3333333333rem 1.3333333333rem;
}
@media (width <= 768px) {
  .c-bnrs__item {
    width: 100%;
    padding: 1.6666666667rem 1.3333333333rem 1.3333333333rem;
  }
}
body:not(.p-home) .c-bnrs__item {
  border: 1px solid #c3c3c3;
}
.c-bnrs__item-title {
  font-size: 5.3333333333rem;
  font-weight: 700;
  margin-bottom: 1.3333333333rem;
}
@media (width <= 768px) {
  .c-bnrs__item-title {
    font-size: 2.6666666667rem;
    margin-bottom: 0.6666666667rem;
    line-height: 1.33;
  }
}
.c-bnrs__p {
  font-size: 1.0666666667rem;
  line-height: 1.75;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .c-bnrs__p {
    font-size: 0.8rem;
    margin-bottom: 0.6666666667rem;
  }
}
.c-bnrs .c-btn {
  margin: 0 auto;
}
@media (width <= 768px) {
  .c-bnrs .c-btn {
    width: 21rem;
  }
  .c-bnrs .c-btn .c-btn__link {
    justify-content: center;
    gap: 0.5333333333rem;
    padding: 0.6666666667rem;
  }
}

.c-btn {
  border-radius: 999px;
  width: 10rem;
  font-size: 0.8rem;
}
.c-btn__link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 1rem;
}
@media (width <= 768px) {
  .c-btn__link {
    padding: 0.6666666667rem;
  }
}
.c-btn--black {
  border: 1px solid #555555;
}
.c-btn--black .c-btn__link {
  color: #fff;
}
.c-btn--white {
  border: 1px solid #ccc;
  background: #fff;
}
.c-btn--white .c-btn__link {
  color: #000;
}
.c-btn--orange {
  border: 1px solid #e23d00;
  background: #e23d00;
}
.c-btn--orange .c-btn__link {
  color: #fff;
}
.c-btn--dot .c-btn__link:before {
  display: inline-block;
  content: "";
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  border-radius: 999px;
  background: #eeeeee;
  vertical-align: middle;
}
.c-btn--dot--orange .c-btn__link:before {
  background: #f06600;
}
.c-btn--ib .c-btn__link {
  justify-content: center;
  gap: 0.5333333333rem;
}
.c-btn .u-icon {
  margin-left: 0;
}
@media (width <= 768px) {
  .c-btn .u-icon {
    margin-left: 0;
  }
}
.c-btn--header {
  width: 13.3333333333rem;
  font-weight: 500;
  font-size: 0.8rem;
  background: #fff;
  border-radius: 999px;
  display: block;
  padding: 0.6666666667rem 2rem;
  position: relative;
  text-align: center;
}
@media (width <= 768px) {
  .c-btn--header {
    padding: 0.3333333333rem 1.3333333333rem 0.3333333333rem 0.6666666667rem;
  }
}
.c-btn--header:before {
  content: "";
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  background: #f06600;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.8em;
}
@media (width <= 768px) {
  .c-btn--header:before {
    margin-right: 0.5em;
  }
}
.c-btn--header:after {
  content: "";
  width: 0.4666666667rem;
  height: 0.4666666667rem;
  border-bottom: 1.5px solid #cccccc;
  border-right: 1.5px solid #cccccc;
  transform: rotate(45deg);
  position: absolute;
  right: 1rem;
  top: 0.8666666667rem;
}

.c-btn02 {
  border-radius: 999px;
  position: relative;
  max-width: 25rem;
  transition: 0.3s;
  text-align: center;
  margin: 0 auto;
}
.c-btn02:hover {
  opacity: 0.8;
}
.c-btn02__link {
  display: block;
  padding: 1rem 2.6666666667rem 1rem 1rem;
  color: #fff;
  font-size: 1.0666666667rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-btn02__link {
    max-width: inherit;
    font-size: 0.9333333333rem;
    padding: 1rem 3.3333333333rem 1rem 1rem;
  }
}
.c-btn02--mail {
  background: #000;
}
.c-btn02--black {
  background: #000;
}
.c-btn02--black:before {
  content: "";
  width: 2.1333333333rem;
  height: 2.1333333333rem;
  background: #fff;
  border-radius: 999px;
  position: absolute;
  right: 1.5333333333rem;
  top: calc(50% - 1.0666666667rem);
}
.c-btn02--black:after {
  content: "";
  position: absolute;
  width: 0.5333333333rem;
  height: 0.5333333333rem;
  border-top: 0.1333333333rem solid #000;
  border-right: 0.1333333333rem solid #000;
  transform: rotate(45deg);
  right: 2.4rem;
  top: calc(50% - 0.3333333333rem);
}
.c-btn02--ractangle {
  border-radius: 0.6666666667rem;
}
.c-btn02--ractangle:before {
  content: inherit;
}
.c-btn02--ractangle:after {
  content: inherit;
}
.c-btn02--ractangle .c-btn__link {
  padding: 1rem;
}
.c-btn02--more {
  transition: 0.3s;
}
.c-btn02--more:before {
  transform: rotate(135deg);
}
.c-btn02--more:after {
  transform: rotate(135deg);
  top: calc(50% - 0.4rem);
  right: 2.2666666667rem;
}
.c-btn02--more.is-active {
  transition: 0.3s;
}
.c-btn02--more.is-active:before {
  transform: rotate(-45deg);
}
.c-btn02--more.is-active:after {
  transform: rotate(-45deg);
  top: calc(50% - 0.2rem);
  right: 2.2666666667rem;
}

.c-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.c-company-table {
  width: 100%;
  font-size: 1.0666666667rem;
}
@media (width <= 768px) {
  .c-company-table {
    font-size: 0.9333333333rem;
  }
}
.c-company-table th {
  padding: 1.8666666667rem 2rem;
  font-weight: 700;
  width: 14.6666666667rem;
  border-bottom: 1px solid #ffce00;
}
@media (width <= 768px) {
  .c-company-table th {
    display: block;
    width: 100%;
    padding: 1.3333333333rem 0.6666666667rem 0;
    border: none;
  }
}
.c-company-table td {
  padding: 1.8666666667rem 2rem;
  border-bottom: 1px solid #6e6e6e;
}
@media (width <= 768px) {
  .c-company-table td {
    display: block;
    width: 100%;
    padding: 0 0.6666666667rem 1.3333333333rem 0.6666666667rem;
    border-bottom: 1px solid #ccc;
  }
}

.c-download {
  display: none;
  width: calc(100% - 2.6666666667rem);
  margin: 0 auto;
  background: #e23d00;
  color: #fff;
  text-align: center;
  padding: 0.9333333333rem;
  position: fixed;
  bottom: 0.5333333333rem;
  left: 1.3333333333rem;
  z-index: 10000;
}
@media (width <= 768px) {
  .c-download {
    display: block;
  }
}

.c-faq-list {
  list-style: none;
  width: 100%;
  max-width: 78.9333333333rem;
  margin: 2.6666666667rem auto;
}
@media (width <= 768px) {
  .c-faq-list {
    margin-top: 1.3333333333rem;
  }
}
.c-faq-list__item {
  display: flex;
  font-size: 1.3333333333rem;
  justify-content: space-between;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-faq-list__item {
    flex-wrap: wrap;
    font-size: 1.0666666667rem;
  }
}
@media (width <= 768px) {
  .c-faq-list__item:first-of-type {
    background: linear-gradient(to bottom, transparent 0%, transparent calc(50% - 0.1rem), #ff0200 calc(50% - 0.1rem), #ff0200 calc(50% + 0.1rem), transparent calc(50% + 0.1rem), transparent 100%);
  }
}
.c-faq-list__item:not(:first-of-type) {
  background: linear-gradient(to bottom, transparent 0%, transparent calc(50% - 0.1rem), #ff0200 calc(50% - 0.1rem), #ff0200 calc(50% + 0.1rem), transparent calc(50% + 0.1rem), transparent 100%);
}
@media (width <= 768px) {
  .c-faq-list__item:not(:first-of-type) {
    background: linear-gradient(to right, transparent 0%, transparent calc(50% - 0.1rem), #ff0200 calc(50% - 0.1rem), #ff0200 calc(50% + 0.1rem), transparent calc(50% + 0.1rem), transparent 100%);
  }
}
.c-faq-list__item:not(:first-of-type) .c-faq-list__sub-item:after {
  content: "";
  position: absolute;
  width: 0.5333333333rem;
  height: 0.5333333333rem;
  right: 1.6666666667rem;
  border-right: 1px solid #464646;
  border-bottom: 1px solid #464646;
  transform: rotate(45deg);
}
.c-faq-list__item:not(:last-of-type) {
  margin-bottom: 1.3333333333rem;
}
.c-faq-list__sub-item {
  width: 38.1333333333rem;
  text-align: left;
  border: 0.1333333333rem solid #464646;
  border-radius: 0.3333333333rem;
  padding: 0.6666666667rem 2rem 0.6666666667rem 1.2rem;
  display: flex;
  align-items: center;
  background: #fff;
  position: relative;
}
@media (width <= 768px) {
  .c-faq-list__sub-item {
    padding: 0.6666666667rem 2.6666666667rem 0.6666666667rem 1.2rem;
    line-height: 1.2;
    gap: 0.6666666667rem;
    width: 100%;
  }
  .c-faq-list__sub-item:not(:last-of-type) {
    margin-bottom: 0.6666666667rem;
  }
}
.c-faq-list__sub-item--title {
  border: none;
  background: none;
  text-align: center;
  font-weight: 700;
  font-size: 2rem;
  letter-spacing: -0.04em;
  justify-content: center;
}
@media (width <= 768px) {
  .c-faq-list__sub-item--title {
    font-size: 1.0666666667rem;
    width: auto;
    display: inline-block;
    padding: 0;
    margin-bottom: 0 !important;
    background: #fff;
    padding: 0 1.3333333333rem;
  }
}
.c-faq-list__link {
  display: flex;
  align-items: center;
}
.c-faq-list__icon {
  width: 2.4rem;
  margin-right: 1rem;
}
@media (width <= 768px) {
  .c-faq-list__icon {
    margin-right: 0;
  }
}
.c-faq-list__no {
  font-size: 2.1333333333rem;
  font-weight: 700;
  color: #e23d00;
  margin-right: 1.3333333333rem;
  vertical-align: middle;
}
@media (width <= 768px) {
  .c-faq-list__no {
    margin-right: 0;
  }
}

@media (width <= 768px) {
  .c-footer-nav {
    width: 100%;
    margin-bottom: 2.6666666667rem;
  }
}
.c-footer-nav__list {
  list-style: none;
  font-size: 1.0666666667rem;
  font-weight: 500;
  gap: 1.6rem;
  display: flex;
}
@media (width <= 768px) {
  .c-footer-nav__list {
    font-size: 1.0666666667rem;
    flex-direction: column;
    gap: 1.3333333333rem;
  }
}

.c-form {
  max-width: 53.3333333333rem;
  margin: 0 auto;
}
.c-form__table {
  margin-bottom: 4.6666666667rem;
}
@media (width <= 768px) {
  .c-form__table {
    margin-bottom: 2.6666666667rem;
  }
}
.c-form__title {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.4666666667rem;
}
@media (width <= 768px) {
  .c-form__title {
    font-size: 0.9333333333rem;
  }
}
.c-form__must {
  background: #cb0200;
  color: #fff;
  border-radius: 0.2rem;
  font-size: 0.8666666667rem;
  font-weight: 500;
  padding: 0.1333333333rem 0.6rem;
  margin-left: 0.8666666667rem;
}
.c-form__text {
  margin-bottom: 1.6666666667rem;
}
.c-form__input {
  width: 100%;
  height: 3.4666666667rem;
  font-size: 1.0666666667rem;
  border-radius: 0.3333333333rem;
  border: 1px solid #a7a7a7;
  padding: 0.6666666667rem;
}
@media (width <= 768px) {
  .c-form__input {
    font-size: 0.9333333333rem;
  }
}
.c-form__input::placeholder {
  color: #d0d0d0;
}
.c-form__label {
  font-size: 1.0666666667rem;
  display: inline-block;
}
@media (width <= 768px) {
  .c-form__label {
    font-size: 0.9333333333rem;
  }
}
.c-form__textarea {
  height: 10.6666666667rem;
  border: 1px solid #a7a7a7;
  border-radius: 0.3333333333rem;
  width: 100%;
  padding: 0.6666666667rem;
}
.c-form__textarea::placeholder {
  color: #d0d0d0;
}
.c-form__select {
  height: 2.6666666667rem;
  width: 100%;
  font-size: 1rem;
}
.c-form__approval {
  text-align: center;
  margin-bottom: 1.6666666667rem;
}
.c-form__checkbox {
  margin-left: 0.8666666667rem;
}
.c-form__policy {
  max-width: 40rem;
  padding: 1rem 1.3333333333rem;
  overflow-y: scroll;
  background: #fafafa;
  border: 1px solid #a7a7a7;
  border-radius: 0.3333333333rem;
  height: 13.3333333333rem;
  margin: 0 auto;
  margin-bottom: 2.6666666667rem;
}
.c-form__submit {
  font-size: 1.1333333333rem;
  color: #fff;
  background: #000;
  width: 20rem;
  height: 4rem;
  border-radius: 999px;
  margin: 0 auto;
  display: block;
  font-weight: 500;
}
@media (width <= 768px) {
  .c-form__submit {
    width: 100%;
    height: 3.4666666667rem;
    font-size: 1rem;
  }
}

.c-global-nav__list {
  list-style: none;
  display: flex;
  gap: 0.8666666667rem;
}
@media (width <= 768px) {
  .c-global-nav__list {
    display: none;
  }
}
.c-global-nav__item {
  position: relative;
  cursor: pointer;
  color: #000;
  font-size: 0.8333333333rem;
}
.c-global-nav__link {
  color: #000;
  letter-spacing: 0.01em;
}
.c-global-nav__link:hover {
  color: #e23d00;
}
.c-global-nav__sub-list.c-list {
  position: absolute;
  left: 0;
  top: 100%;
  background: #333;
  list-style: none;
  width: 18.6666666667rem;
  margin-left: 0;
  padding-left: 0;
  display: none;
}
.c-global-nav__sub-link {
  color: #fff;
  padding: 0.6666666667rem;
  display: block;
  border-bottom: 1px solid #666;
}
.c-global-nav__sub-link:hover {
  background: #e23d00;
}
@media (width <= 768px) {
  .c-global-nav__sub-link:hover {
    background: none;
  }
}

.c-graph-list {
  display: flex;
  max-width: 46.6666666667rem;
  margin: 0 auto 2.6666666667rem;
  padding: 2rem 2.6666666667rem;
}
@media (width <= 768px) {
  .c-graph-list {
    flex-wrap: wrap;
  }
}
.c-graph-list__item {
  width: 33.3%;
  display: flex;
  flex-wrap: wrap;
}
@media (width <= 768px) {
  .c-graph-list__item {
    width: 100%;
    justify-content: center;
    margin-bottom: 2.6666666667rem;
    padding-left: 4.6666666667rem;
  }
}
.c-graph-list__title {
  width: 100%;
  font-size: 1.3333333333rem;
  font-weight: 500;
}
.c-graph-list__graph {
  height: 17.3333333333rem;
  width: 4.2666666667rem;
  position: relative;
}
.c-graph-list__graph-item {
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  border-radius: 0.2666666667rem;
  outline: 0.1333333333rem solid #fff;
  outline-offset: -0.1333333333rem;
  transition: 2s;
  visibility: hidden;
}
.c-graph-list__graph-01 {
  background: #eeeeee;
  box-shadow: 0.4rem 0.4rem 0 #171717;
}
.c-graph-list__graph-02 {
  background: #dddddd;
}
.c-graph-list__graph-03 {
  background: #e23d00;
}
.c-graph-list__num {
  margin-top: 4rem;
  width: 7.3333333333rem;
  font-size: 0.8rem;
  font-weight: 700;
  list-style: none;
  text-align: left;
  text-align: right;
  position: relative;
  z-index: 1;
}
.c-graph-list__num-item {
  border-bottom: 1px solid #000;
}
.c-graph-list__num-item:nth-of-type(1) {
  border-bottom: 1px solid #eeeeee;
}
.c-graph-list__num-item:nth-of-type(2) {
  border-bottom: 1px solid #cccccc;
}
.c-graph-list__num-item:nth-of-type(3) {
  border-bottom: 1px solid #f06600;
}

.c-group__slider {
  margin-bottom: 1.3333333333rem;
}
.c-group__slider-thumb {
  height: 40rem;
}
@media (width <= 768px) {
  .c-group__slider-thumb {
    height: 13.3333333333rem;
  }
}
.c-group__map {
  width: 100%;
  margin-top: 0.6666666667rem;
}
.c-group__map iframe {
  width: 100%;
  height: 13.3333333333rem;
  border: none;
}
.c-group__table {
  background-color: #fff;
}
.c-group__table th {
  vertical-align: middle;
}
.c-group__table-address {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 768px) {
  .c-group__table-address {
    flex-wrap: wrap;
    gap: 0.6666666667rem;
  }
}
.c-group__table-address-text {
  width: 43.3333333333rem;
}
@media (width <= 768px) {
  .c-group__table-address-text {
    width: 100%;
  }
}
.c-group__table-address-map {
  width: calc(100% - 44.6666666667rem);
}
@media (width <= 768px) {
  .c-group__table-address-map {
    width: 100%;
  }
}
.c-group .c-tabs.c-list {
  margin: 0 !important;
}

.c-header-menu {
  display: flex;
  gap: 0.6666666667rem;
  list-style: none;
  margin-top: 2.3333333333rem;
}
@media (width <= 768px) {
  .c-header-menu {
    flex-wrap: wrap;
  }
}
.c-header-menu__item {
  width: 13.3333333333rem;
}
@media (width <= 768px) {
  .c-header-menu__item {
    width: calc(50% - 0.3333333333rem);
  }
}
.c-header-menu__link {
  font-weight: 500;
  font-size: 0.8rem;
  background: #fff;
  border-radius: 0.3333333333rem;
  display: block;
  padding: 0.6666666667rem 2rem;
  position: relative;
}
@media (width <= 768px) {
  .c-header-menu__link {
    padding: 0.3333333333rem 1.3333333333rem 0.3333333333rem 0.6666666667rem;
  }
}
.c-header-menu__link:before {
  content: "";
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  background: #f06600;
  border-radius: 999px;
  display: inline-block;
  margin-right: 0.8em;
}
@media (width <= 768px) {
  .c-header-menu__link:before {
    margin-right: 0.5em;
  }
}
.c-header-menu__link:after {
  content: "";
  width: 0.4666666667rem;
  height: 0.4666666667rem;
  border-bottom: 1.5px solid #cccccc;
  border-right: 1.5px solid #cccccc;
  transform: rotate(45deg);
  position: absolute;
  right: 1rem;
  top: 0.8666666667rem;
}

.c-header-nav {
  display: flex;
  list-style: none;
}
@media (width <= 768px) {
  .c-header-nav {
    display: none;
  }
}
.c-header-nav__item {
  width: 12rem;
  height: 6.6666666667rem;
}
.c-header-nav__link {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  height: 100%;
}
body:not(.p-home) li:not(.c-header-nav__download) .c-header-nav__link, .is-scrolled .c-header-nav__link {
  color: #111;
}
.c-header-nav .u-icon__envelope {
  fill: #fff;
}
.c-header-nav__contact {
  background: #e23d00;
}
.c-header-nav__contact .c-header-nav__link {
  color: #fff !important;
}

.c-inner {
  max-width: 80rem;
  margin: 0 auto;
}
:not(.p-home) .c-inner {
  padding: 0;
}
@media (width <= 768px) {
  :not(.p-home) .c-inner {
    padding: 0 1.3333333333rem;
  }
}
:not(.p-home) .c-inner--small {
  max-width: 73.3333333333rem;
  padding: 5.3333333333rem 3.3333333333rem;
}
@media (width <= 768px) {
  :not(.p-home) .c-inner--small {
    padding: 2rem 1.3333333333rem;
  }
}

.c-list {
  margin-left: 2em;
  list-style-position: outside;
}

.c-mind-list {
  background: #fff;
}
.c-mind-list .swiper-wrapper {
  display: flex;
  justify-content: center;
  gap: 2.8rem;
  list-style: none;
}
@media (width <= 768px) {
  .c-mind-list .swiper-wrapper {
    gap: 0;
    justify-content: inherit;
  }
}
.c-mind-list__item {
  width: 24.6666666667rem;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0;
}
@media (width <= 768px) {
  .c-mind-list__item {
    width: 22.3333333333rem;
    margin: 0 1.3333333333rem;
  }
}
.c-mind-list__text {
  width: 13.3333333333rem;
}
.c-mind-list__thumb {
  width: 9.8666666667rem;
}
@media (width <= 768px) {
  .c-mind-list__thumb {
    width: 9rem;
  }
}
.c-mind-list__no {
  display: inline-block;
  font-size: 2.1333333333rem;
  font-weight: 700;
  border-bottom: 0.2666666667rem solid #ba8e2a;
  line-height: 1;
  margin-bottom: 1.6666666667rem;
}
.c-mind-list__title {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.33;
  margin-bottom: 1.6666666667rem;
}
.c-mind-list__p {
  font-size: 0.8rem;
  line-height: 1.67;
  margin-bottom: 2rem;
}

.c-mind-list02__item {
  display: flex;
  justify-content: space-between;
  padding: 2.6666666667rem 0;
}
@media (width <= 768px) {
  .c-mind-list02__item {
    flex-wrap: wrap;
  }
}
.c-mind-list02__item:not(:last-of-type) {
  border-bottom: 1px solid #bebebe;
}
.c-mind-list02__thumb {
  width: 9.8666666667rem;
}
@media (width <= 768px) {
  .c-mind-list02__thumb {
    width: 100%;
    margin-bottom: 0.6666666667rem;
  }
}
.c-mind-list02__img {
  width: 100%;
}
.c-mind-list02__no {
  font-size: 2rem;
  letter-spacing: -0.04em;
  color: #e88f6e;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-mind-list02__no {
    font-size: 2.6666666667rem;
    margin-bottom: 0.3333333333rem;
  }
}
.c-mind-list02__text {
  width: 53.3333333333rem;
  font-size: 1rem;
}
@media (width <= 768px) {
  .c-mind-list02__text {
    width: 100%;
  }
}
.c-mind-list02__title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.8rem;
}
@media (width <= 768px) {
  .c-mind-list02__title {
    font-size: 1.2rem;
  }
}
.c-mind-list02__p {
  margin-bottom: 1.3333333333rem;
}
.c-mind-list02__p2 {
  font-size: 0.8666666667rem;
  color: #434343;
}

.c-news-list {
  list-style: none;
  margin-left: 0 !important;
}
@media (width <= 768px) {
  .c-news-list {
    margin-bottom: 1.3333333333rem;
  }
}
.c-news-list__item {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 1.3333333333rem;
  margin-bottom: 1.3333333333rem;
  border-bottom: 1px solid #eeeeee;
  width: 100%;
}
body:not(.p-home) .c-news-list__item {
  gap: 0.6666666667rem 0;
}
@media (width <= 768px) {
  .c-news-list__item:last-of-type {
    margin-bottom: 0;
    padding-bottom: 0;
    border: none;
  }
}
.c-news-list__date {
  display: inline-block;
  width: 6.6666666667rem;
  vertical-align: middle;
}
.c-news-list__link {
  width: calc(100% - 6.6666666667rem);
}
@media (width <= 768px) {
  .c-news-list__link {
    width: 100%;
  }
}
.c-news-list__title {
  width: 100%;
  margin: 0 !important;
  font-size: 1.2rem;
  font-weight: 600;
}
@media (width <= 768px) {
  .c-news-list__title {
    line-height: 1.43;
    font-size: 0.9333333333rem;
  }
}
.c-news-list--event .c-news-list__item {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.c-news-list--event .c-news-list__date {
  border: 1px solid #c3c3c3;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  flex-direction: column;
  font-weight: 700;
  line-height: 1;
}
.c-news-list--event .c-news-list__link {
  width: calc(100% - 4.6666666667rem);
}
.c-news-list--event .c-news-list__title {
  min-height: 4rem;
  display: flex;
  align-items: center;
}
.c-news-list--event .c-news-list__day {
  color: #e23d00;
  font-size: 2rem;
}
.c-news-list--past {
  display: flex;
  gap: 0.6666666667rem;
  flex-wrap: wrap;
}
.c-news-list--past .c-news-list__item {
  width: calc(50% - 0.6666666667rem);
  border-bottom: none;
  padding: 0;
  margin: 0;
}
@media (width <= 768px) {
  .c-news-list--past .c-news-list__item {
    width: 100%;
  }
}
.c-news-list--past .c-news-list__item--year {
  width: 100%;
  height: auto;
  font-weight: 600;
  font-size: 1.2rem;
}
.c-news-list--past .c-news-list__date {
  width: 2.6666666667rem;
  height: 2.6666666667rem;
}
.c-news-list--past .c-news-list__link {
  width: calc(100% - 3.3333333333rem);
}
.c-news-list--past .c-news-list__title {
  min-height: 2.6666666667rem;
  font-size: 0.8666666667rem;
}
.c-news-list--past .c-news-list__month {
  font-size: 0.8666666667rem;
}
.c-news-list--past .c-news-list__day {
  font-size: 1.4666666667rem;
}

.c-page-header {
  background: #000;
  color: #fff;
  font-weight: 700;
  padding: 5.3333333333rem 0 3.6666666667rem;
}
@media (width <= 768px) {
  .c-page-header {
    padding: 2.6666666667rem 1.3333333333rem;
  }
}
.c-page-header .c-inner {
  padding: 0;
  transform: translateY(0.6666666667rem);
}
.c-page-header__eng {
  font-size: 5.3333333333rem;
  margin-bottom: 1rem;
}
@media (width <= 768px) {
  .c-page-header__eng {
    font-size: 2rem;
  }
}
.c-page-header__eng span {
  font-weight: 700;
  font-size: 4rem;
}
@media (width <= 768px) {
  .c-page-header__eng span {
    font-size: 1.6rem;
  }
}
.c-page-header__title {
  font-size: 1.8666666667rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-page-header__title {
    font-size: 0.9333333333rem;
    margin-bottom: 0.6666666667rem;
  }
}
@media (width <= 768px) {
  .c-page-header__p {
    font-size: 0.8rem;
    line-height: 1.2;
  }
}
@media (width <= 768px) {
  .c-page-header em {
    font-weight: 500;
  }
}

.c-pagenation {
  margin: 50px 0 0 0;
  text-align: center;
}
.c-pagenation:after, .c-pagenation__navul:after {
  clear: both;
  content: ".";
  display: block;
  height: 0;
  visibility: hidden;
}
.c-pagenation__nav {
  margin: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 0.6666666667rem;
  flex-wrap: wrap;
}
.c-pagenation__item {
  display: inline-block;
  margin-left: 3px;
  margin-bottom: 3px;
}
.c-pagenation__item:first-child {
  margin-left: 0;
}
.c-pagenation__item--active {
  background-color: #333;
  border-radius: 3px;
  color: #ffffff;
  cursor: not-allowed;
  padding: 10px 20px;
}
.c-pagenation__link {
  background: none repeat scroll 0 0 #cccccc;
  border-radius: 3px;
  color: #ffffff;
  display: block;
  padding: 10px 20px;
  text-decoration: none;
  text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
}
.c-pagenation__link:hover {
  background-color: #333;
  color: #ffffff;
  opacity: 0.8;
  transition-duration: 500ms;
  transition-property: all;
  transition-timing-function: ease;
}

.c-post__top {
  max-width: 80rem;
  margin: 0 auto 1.3333333333rem;
  display: flex;
  gap: 1.3333333333rem;
}
.c-post__cat ul {
  display: flex;
  gap: 0.6666666667rem;
}
.c-post__cat a {
  display: inline-block;
  line-height: 1;
  font-size: 0.9333333333rem;
  background-color: #333;
  border-radius: 100vw;
  padding: 0.3333333333rem 1rem;
  color: #fff;
}
.c-post__bottom {
  max-width: 80rem;
  margin: 0 auto;
}
.c-post__other-posts {
  border-top: 3px solid #000;
  border-bottom: 1px solid #000;
  display: flex;
  justify-content: space-between;
  padding: 1.3333333333rem 0;
}
.c-post__other-item {
  width: 5.3333333333rem;
}
.c-post__relation {
  max-width: 80rem;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.c-post__relation-wrapper {
  width: 50%;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.c-post__relation-h2 {
  margin: 0.4666666667rem 0 0 !important;
  width: 100%;
  font-size: 1.2rem;
  width: 4rem;
}
.c-post__relation-list {
  list-style: none;
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6666666667rem;
  margin: 1.3333333333rem 0rem 0rem 0rem !important;
  width: 100%;
}
.c-post__relation-list:last-of-type {
  margin-bottom: 2.6666666667rem !important;
}
.c-post__relation-item {
  box-shadow: 0 0 0.2666666667rem rgba(0, 0, 0, 0.08);
  width: calc(20% - 0.5333333333rem);
  background-color: #fff;
  border-radius: 0.3333333333rem;
  height: 2.6666666667rem;
  font-size: 0.8rem;
  line-height: 1.2;
  position: relative;
}
@media (width <= 768px) {
  .c-post__relation-item {
    font-size: 0.6666666667rem;
    width: calc(50% - 0.3333333333rem);
  }
}
.c-post__relation-item--other {
  display: flex;
  padding: 0.3333333333rem;
  align-items: center;
}
.c-post__relation-item--other.c-post__relation-item--external {
  padding: 0;
}
.c-post__relation-item--other a {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
  padding: 0.3333333333rem;
  padding-right: 2rem;
}
.c-post__relation-item--external {
  position: relative;
}
.c-post__relation-item--external:before {
  content: "";
  content: "\f35d";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  display: inline-block;
  font-size: 0.8rem;
  line-height: 1;
  position: absolute;
  color: #e23d00;
  right: 0.6666666667rem;
  top: calc(50% - 0.4rem);
}
.c-post__relation-item--title {
  background: none;
  display: flex;
  align-items: center;
  border: none;
  font-size: 1.2rem;
  font-weight: 700;
  box-shadow: none;
  width: 100%;
}
.c-post__relation-item--main:after {
  content: "Host";
  position: absolute;
  background-color: #e23d00;
  display: inline-block;
  color: #fff;
  padding: 0.2rem 0.4rem;
  border-radius: 100vw;
  left: -0.3333333333rem;
  top: -0.6666666667rem;
  z-index: 1;
  font-size: 0.8rem;
  line-height: 1;
}
.c-post__relation-link {
  display: flex;
  align-items: center;
  gap: 0.6666666667rem;
}
.c-post__relation-thumb {
  width: 3.3333333333rem;
  height: 2.6666666667rem;
}
.c-post__relation-thumb img {
  max-width: inherit;
}
.c-post__relation-title {
  padding: 0 0.3333333333rem 0 0;
  width: calc(100% - 3.3333333333rem);
}
.c-post__more-info {
  max-width: 80rem;
  margin: 0 auto 2.6666666667rem;
  background-color: #fff;
}
.c-post__more-info a {
  text-decoration: underline;
}
.c-post__more-info-text {
  width: 20rem;
}
.c-post__more-info-title2 {
  font-size: 28px;
  font-weight: 700;
}
.c-post__more-info-title {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 !important;
}
.c-post__more-info-map {
  width: 100%;
}
.c-post__more-info-map iframe {
  width: 100%;
  height: 23.3333333333rem;
}

.c-scroll {
  overflow-x: auto;
}
.c-scroll table {
  min-width: 640px;
  margin: 0 0 40px 0;
}

.c-scroll-bar {
  overflow-y: scroll;
}
.c-scroll-bar::-webkit-scrollbar {
  width: 2px;
}
.c-scroll-bar::-webkit-scrollbar-thumb {
  background-color: #111;
}
.c-scroll-bar::-webkit-scrollbar-track {
  background-color: #ccc;
}

.c-section {
  padding: 5.3333333333rem 0;
}

.c-service-list__dt {
  background: linear-gradient(to bottom, #fff 0, #eee 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5.7333333333rem;
  margin: 0 auto;
  padding: 2.6666666667rem 0;
}
@media (width <= 768px) {
  .c-service-list__dt {
    flex-wrap: wrap;
    gap: 0;
    padding: 2.6666666667rem 1.3333333333rem 2rem;
  }
}
.c-service-list__dt:nth-of-type(2) .c-service-list__dt-thumb {
  order: 2;
}
@media (width <= 768px) {
  .c-service-list__dt:nth-of-type(2) .c-service-list__dt-thumb {
    order: 1;
  }
}
.c-service-list__dt:nth-of-type(2) .c-service-list__dt-text {
  order: 1;
}
@media (width <= 768px) {
  .c-service-list__dt:nth-of-type(2) .c-service-list__dt-text {
    order: 2;
  }
}
.c-service-list__dt-thumb {
  width: 40rem;
}
@media (width <= 768px) {
  .c-service-list__dt-thumb {
    width: 100%;
    margin-bottom: 1.6rem;
  }
}
.c-service-list__dt-text {
  width: 24.6666666667rem;
}
@media (width <= 768px) {
  .c-service-list__dt-text {
    width: 100%;
  }
}
.c-service-list__dt-title {
  font-size: 4.2666666667rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .c-service-list__dt-title {
    font-size: 2.1333333333rem;
    margin-bottom: 0.6666666667rem;
  }
}
.c-service-list__dt-title .u-text--poppins {
  font-size: 5.3333333333rem;
}
@media (width <= 768px) {
  .c-service-list__dt-title .u-text--poppins {
    font-size: 2.6666666667rem;
  }
}
.c-service-list__dt-span {
  font-size: 2.1333333333rem;
  line-height: 1.375;
  display: block;
  font-weight: 400;
}
@media (width <= 768px) {
  .c-service-list__dt-span {
    font-size: 1.3333333333rem;
  }
}
@media (width <= 768px) {
  .c-service-list__dt .c-btn {
    width: 10.8666666667rem;
  }
}
.c-service-list__dd {
  margin: 0 auto;
  padding: 2.6666666667rem 0;
  background: #fff;
  max-width: 53.3333333333rem;
}
@media (width <= 768px) {
  .c-service-list__dd {
    padding: 1.3333333333rem 1.3333333333rem 2.6666666667rem;
  }
}
.c-service-list__dd:nth-of-type(1) .c-service-list__dd-p {
  text-align: left;
}
.c-service-list__dd-title {
  font-size: 1.6rem;
  font-weight: 500;
  margin-bottom: 0.6666666667rem;
  line-height: 1.5;
  margin-bottom: 3.3333333333rem;
  border-bottom: 0.2666666667rem solid #f06600;
  display: inline;
}
@media (width <= 768px) {
  .c-service-list__dd-title {
    font-size: 1.6rem;
    text-align: left;
  }
}
.c-service-list__dd-title--no-border {
  display: inline-block;
  border: none;
  margin-bottom: 2rem;
}
.c-service-list__dd-sub-title {
  font-size: 1.1333333333rem;
  font-weight: 500;
  border-left: 0.2rem solid #ba8e2b;
  padding-left: 0.6666666667rem;
  text-align: left;
  margin-bottom: 0.6666666667rem;
}
.c-service-list__dd-sub-title:not(:first-child) {
  margin-top: 3.3333333333rem;
}
.c-service-list__dd-title3 {
  font-size: 1.1333333333rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 1.3333333333rem;
}
.c-service-list__dd-p {
  margin-bottom: 2.1333333333rem;
}
@media (width <= 768px) {
  .c-service-list__dd-p {
    text-align: left;
  }
}
.c-service-list__dd-p span {
  text-decoration: underline;
}
.c-service-list__dd-img {
  width: 46.6666666667rem;
  margin-bottom: 0.6666666667rem;
}
.c-service-list__dd-title2 {
  color: #ba8e2a;
  font-size: 2.6666666667rem;
  font-weight: 700;
  margin-bottom: 1.3333333333rem;
}
@media (width <= 768px) {
  .c-service-list__dd-title2 {
    font-size: 2.6666666667rem;
  }
}
.c-service-list__dd-title2 .u-text--poppins {
  font-size: 3.2rem;
}
@media (width <= 768px) {
  .c-service-list__dd-title2 .u-text--poppins {
    font-size: 3.2rem;
  }
}
.c-service-list__more {
  font-size: 0.8rem;
}
@media (width <= 768px) {
  .c-service-list__more {
    font-size: 0.8rem;
  }
}
.c-service-list__more .c-btn {
  width: 12.6666666667rem;
  margin: 0.4666666667rem auto 0;
}
@media (width <= 768px) {
  .c-service-list__more .c-btn {
    width: 21rem;
  }
}
.c-service-list__more .c-btn .c-btn__link {
  justify-content: center;
  gap: 0.5333333333rem;
}

.c-swiper__button {
  background-color: rgba(255, 255, 255, 0.8);
  padding: 0.6666666667rem;
  height: auto;
  width: auto;
  border-radius: 0.3333333333rem;
}
.c-swiper__button:after {
  color: #e23d00;
}
.c-swiper__pagination {
  position: static;
  bottom: 0rem !important;
  padding-top: 0.6666666667rem;
}
.c-swiper__pagination .swiper-pagination-bullet {
  background-color: #e23d00;
}

.c-swiper2__buttons {
  display: none;
  width: 100%;
  align-items: center;
  justify-content: space-between;
}
@media (width <= 768px) {
  .c-swiper2__buttons {
    display: flex;
  }
}
.c-swiper2__button {
  width: 2.6666666667rem;
  height: 2.6666666667rem;
  border: 1px solid #ebeded;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 999px;
}
@media (width <= 768px) {
  .c-swiper2__button {
    width: 2.6666666667rem;
    height: 2.6666666667rem;
  }
}
.c-swiper2__button-next {
  transform: rotate(180deg);
}
.c-swiper2__button-img {
  width: 0.8933333333rem;
}
@media (width <= 768px) {
  .c-swiper2__button-img {
    width: 0.8933333333rem;
  }
}
.c-swiper2__counter {
  font-size: 1.0666666667rem;
  font-weight: 700;
  color: #888888;
  display: flex;
  gap: 0.6666666667rem;
  align-items: center;
}
@media (width <= 768px) {
  .c-swiper2__counter {
    font-size: 1.0666666667rem;
    gap: 0.6666666667rem;
  }
}
.c-swiper2__current-slide {
  color: #e23d00;
}
.c-swiper2__total-slides {
  color: #888888;
}

.c-table {
  width: 100%;
  border-collapse: collapse;
}
.c-table th {
  background: #333;
  color: #fff;
  font-weight: 700;
  padding: 1.3333333333rem;
  width: 13.3333333333rem;
  border-bottom: 1px solid #ccc;
}
@media (width <= 768px) {
  .c-table th {
    display: block;
    width: 100%;
  }
}
.c-table td {
  border: 1px solid #ccc;
  padding: 1.3333333333rem;
}
@media (width <= 768px) {
  .c-table td {
    display: block;
    width: 100%;
  }
}

.c-tabs {
  list-style: none;
  display: flex;
  margin-bottom: 0;
}
@media (width <= 768px) {
  .c-tabs {
    flex-wrap: wrap;
  }
}
.c-tabs__item {
  cursor: pointer;
  width: 16.3333333333rem;
  padding: 1rem 2.6666666667rem;
  position: relative;
  background: #e6e6e6;
  border: 1px solid #e6e6e6;
  line-height: 1;
  border-bottom: none;
}
@media (width <= 768px) {
  .c-tabs__item {
    padding: 0.6666666667rem 0.6666666667rem 0.6666666667rem 2.6666666667rem;
    font-size: 0.8rem;
    width: 50%;
  }
}
.c-tabs__item:before {
  position: absolute;
  content: "";
  width: 0.8666666667rem;
  height: 0.8666666667rem;
  background: #ccc;
  left: 1.2rem;
  top: calc(50% - 0.4333333333rem);
  border-radius: 999px;
}
.c-tabs__item.is-active {
  border: 1px solid #cccccc;
  background: #fff;
  border-bottom: none;
}
.c-tabs__item.is-active:before {
  position: absolute;
  content: "";
  width: 0.8666666667rem;
  height: 0.8666666667rem;
  background: #f06600;
  left: 1.2rem;
  top: calc(50% - 0.4333333333rem);
  border-radius: 999px;
}

.c-contents {
  border: 1px solid #cccccc;
  background: #fff;
  padding: 6.6666666667rem;
  list-style: none;
}
@media (width <= 768px) {
  .c-contents {
    padding: 2rem 1.3333333333rem 1.3333333333rem;
  }
}
.c-contents__item {
  display: none;
}
.c-contents__item.is-active {
  display: block;
  animation: fadein 1s;
}
.c-contents__item a {
  text-decoration: underline;
}
.c-contents__item--event a {
  text-decoration: none;
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.c-contents h2:first-of-type {
  margin-top: 0 !important;
}

.c-title {
  font-weight: 700;
}
.c-title__h2-top {
  text-align: center;
  font-size: 0.9333333333rem;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .c-title__h2-top {
    font-size: 0.9333333333rem;
  }
}
.c-title__h2-top--eng {
  text-shadow: 0.2rem 0.2rem 0 rgba(186, 142, 42, 0.4);
  line-height: 1;
  font-size: 6.9333333333rem;
  letter-spacing: -0.04em;
  text-align: center;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .c-title__h2-top--eng {
    font-size: 2.8666666667rem;
  }
}
.c-title__h2 {
  font-size: 2rem;
  font-weight: 700;
  border-bottom: 0.1333333333rem solid #f06600;
  padding-bottom: 0.6666666667rem;
  margin-bottom: 1.6666666667rem;
}
@media (width <= 768px) {
  .c-title__h2 {
    font-size: 1.3333333333rem;
    margin-bottom: 1rem;
  }
}
.c-title__h2:not(:first-child) {
  margin-top: 2.6666666667rem;
}
@media (width <= 768px) {
  .c-title__h2:not(:first-child) {
    margin-top: 2rem;
  }
}

.c-triangle {
  width: 3.0666666667rem;
  height: 1.6rem;
  background: #fff;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: inline-block;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .c-triangle {
    width: 2rem;
    height: 1.0666666667rem;
  }
}

.c-wrapper {
  border-radius: 0.6666666667rem;
  background: #fff;
}

.c-youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.c-youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

/********************************************
* Project
********************************************/
.p-home__mv {
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  color: #fff;
  height: 52.5333333333rem;
}
@media (1400px < width) {
  .p-home__mv {
    overflow: hidden;
  }
}
@media (width <= 768px) {
  .p-home__mv {
    height: 100vh;
    padding: 0 1.3333333333rem;
  }
}
.p-home__mv-slider {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
}
.p-home__mv-slider-item {
  height: 52.5333333333rem;
}
@media (width <= 768px) {
  .p-home__mv-slider-item {
    height: 100vh;
  }
}
.p-home__mv-hand, .p-home__mv-video {
  position: absolute;
  opacity: 0;
}
.p-home__mv-video {
  width: 73.3333333333rem;
  height: 43.3333333333rem;
}
@media (width <= 768px) {
  .p-home__mv-video {
    width: 100%;
    height: 60%;
    object-fit: cover;
  }
}
.p-home__mv-mask {
  position: absolute;
}
.p-home__mv-title {
  color: #fff;
  font-size: 2.8rem;
  font-weight: 700;
  text-align: right;
  line-height: 1;
  position: relative;
  opacity: 0;
  z-index: 1;
}
@media (width <= 768px) {
  .p-home__mv-title {
    text-align: left;
    font-size: 1.6rem;
    line-height: 1.4;
  }
}
.p-home__mv-title:after {
  display: inline-block;
  content: "";
  background: #f06600;
  width: 3.4666666667rem;
  height: 0.4rem;
  margin-left: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-home__mv-title:after {
    width: 1.8666666667rem;
    height: 0.2666666667rem;
  }
}
.p-home__mv-span {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
@media (width <= 768px) {
  .p-home__mv-span {
    font-size: 0.8rem;
    right: inherit;
    left: 0;
  }
}
.p-home__mv-download {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #222222;
  display: flex;
  padding: 1.3333333333rem;
  gap: 1.3333333333rem;
  opacity: 0;
}
@media (width <= 768px) {
  .p-home__mv-download {
    display: none;
  }
}
.p-home__mv-download-thumb {
  width: 8rem;
  height: 4.9333333333rem;
}
.p-home__mv-download-text {
  width: 12rem;
}
.p-home__mv-download-title {
  font-size: 2.1333333333rem;
  color: #888888;
  font-weight: 500;
  line-height: 1.1;
}
.p-home__mv-scroll-down {
  position: absolute;
  right: 6.4rem;
  bottom: 0;
  display: flex;
  align-items: end;
  flex-direction: column;
  opacity: 0;
  width: 0.6666666667rem;
  height: 9.3333333333rem;
  background: linear-gradient(to right, transparent 0%, transparent calc(50% - 0.5px), #fff calc(50% - 0.5px), #fff calc(50% + 0.5px), transparent calc(50% + 0.5px));
  z-index: 1;
  word-break: normal;
  overflow-wrap: normal;
}
@media (width <= 768px) {
  .p-home__mv-scroll-down {
    right: 2rem;
  }
}
.p-home__mv-scroll-down-text {
  color: #fff;
  font-size: 0.9333333333rem;
  font-weight: 300;
  letter-spacing: 0.01em;
  text-align: right;
  line-height: 1;
  margin-bottom: 0.6666666667rem;
  margin-right: 0.2rem;
  background: #000;
  padding: 0 0 0.3333333333rem;
  margin-top: -1px;
}
.p-home__mv-scroll-down-img {
  width: 0.6666666667rem;
  height: 0.6666666667rem;
  animation: scroll 2s linear infinite;
  background: #fff;
  border-radius: 999px;
  position: relative;
}
@media (width <= 768px) {
  .p-home__mv-scroll-down-img {
    width: 0.5333333333rem;
    height: 0.5333333333rem;
    left: -0.0666666667rem;
  }
}
@keyframes scroll {
  0% {
    top: 0;
  }
  50% {
    top: 50%;
  }
  100% {
    top: 0;
  }
}
.p-home__p {
  margin: 0 auto;
  line-height: 1.71;
  margin-bottom: 5.3333333333rem;
}
@media (width <= 768px) {
  .p-home__p {
    max-width: 100%;
    text-align: left;
    margin-bottom: 1.3333333333rem;
  }
}
.p-home__news {
  padding: 0.6666666667rem;
  background: #000000;
}
.p-home__news .c-inner {
  display: flex;
  gap: 6.6666666667rem;
  padding: 5.3333333333rem 0;
}
@media (width <= 768px) {
  .p-home__news .c-inner {
    flex-wrap: wrap;
    gap: 1.3333333333rem;
    padding: 2rem 0 1.3333333333rem;
  }
}
.p-home__news-text {
  width: 13.3333333333rem;
}
@media (width <= 768px) {
  .p-home__news-text {
    width: 100%;
    text-align: center;
  }
}
@media (width <= 768px) {
  .p-home__news-text .c-btn {
    display: none;
  }
}
.p-home__news-eng {
  font-size: 2.6666666667rem;
  font-weight: 700;
  margin-bottom: 1.3333333333rem;
  padding-bottom: 0.3333333333rem;
  border-bottom: 0.4rem solid #e23d00;
}
@media (width <= 768px) {
  .p-home__news-eng {
    margin-bottom: 0.6666666667rem;
  }
}
.p-home__news-title {
  font-size: 0.9333333333rem;
  font-weight: 500;
  margin-bottom: 2.6666666667rem;
}
@media (width <= 768px) {
  .p-home__news-title {
    margin-bottom: 0;
  }
}
.p-home__news .c-news-list {
  width: 60rem;
  height: 17.3333333333rem;
  overflow-y: scroll;
}
@media (width <= 768px) {
  .p-home__news .c-news-list {
    width: 100%;
    height: auto;
    overflow-y: auto;
    padding: 0 2rem;
  }
}
@media (width <= 768px) {
  .p-home__news .c-news-list .c-news-list__item:nth-of-type(n + 4) {
    display: none;
  }
}
.p-home__news .c-btn {
  width: 13.3333333333rem;
}
@media (width <= 768px) {
  .p-home__news .c-btn {
    width: 20.3333333333rem;
    margin: 0 auto;
  }
  .p-home__news .c-btn .c-btn__link {
    justify-content: center;
    gap: 0.5333333333rem;
  }
}
.p-home__news--event {
  padding-top: 0;
}
.p-home__news--event .c-wrapper {
  background-color: #e6e6e6;
}
.p-home__about {
  text-align: center;
}
.p-home__about img {
  margin-bottom: 5.3333333333rem;
}
@media (width <= 768px) {
  .p-home__about img {
    margin-bottom: 2.6666666667rem;
  }
}
.p-home__about .c-btn02 {
  max-width: 20rem;
}
.p-home .c-bnrs {
  background: #000;
}
.p-home__group {
  text-align: center;
}
.p-home__group .c-btn {
  width: 100%;
  background-color: #000;
}

.p-download__block01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 5.3333333333rem;
}
@media (width <= 768px) {
  .p-download__block01 {
    flex-wrap: wrap;
    margin-bottom: 2.6666666667rem;
  }
}
.p-download__block01-thumb {
  width: 25.1333333333rem;
}
@media (width <= 768px) {
  .p-download__block01-thumb {
    width: 100%;
    margin-bottom: 0.6666666667rem;
  }
}
.p-download__block01-p {
  width: 40rem;
  font-size: 1rem;
  line-height: 1.8;
}
@media (width <= 768px) {
  .p-download__block01-p {
    width: 100%;
    font-size: 0.9333333333rem;
  }
}
.p-download__p {
  max-width: 53.3333333333rem;
  margin: 0 auto 3.3333333333rem;
}
@media (width <= 768px) {
  .p-download__p {
    margin-bottom: 2.6666666667rem;
  }
}

.p-about__p {
  font-size: 1rem;
  line-height: 1.867;
}
.p-about__p:not(:last-of-type) {
  margin-bottom: 1em;
}
.p-about .c-mind-list {
  margin-top: 2.6666666667rem;
  display: block;
}
.p-about .c-mind-list__item {
  display: flex;
  width: 100%;
}
.p-about__vision {
  background: #fff;
}
.p-about__history {
  background: #000;
  color: #fff;
}
.p-about__history-title {
  color: #f2ad0f;
  font-size: 2.6666666667rem;
  font-weight: 700;
  margin-bottom: 0.6666666667rem;
}
@media (width <= 768px) {
  .p-about__history-title {
    font-size: 1.3333333333rem;
  }
}
.p-about__history-ceo {
  line-height: 2;
  font-size: 1rem;
}
.p-about__history-inner {
  border-radius: 1.5333333333rem;
  background: rgba(255, 255, 255, 0.3);
  font-size: 0.8rem;
  padding: 2rem 4rem;
  margin-top: 3.3333333333rem;
}
@media (width <= 768px) {
  .p-about__history-inner {
    font-size: 0.9333333333rem;
    padding: 2rem 1.3333333333rem;
    border-radius: 0.6666666667rem;
  }
}
.p-about__history-ceo-title {
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.p-about__company {
  background: #fff;
}
.p-about__company-sub-title {
  text-align: center;
  display: block !important;
}
.p-about__company-title {
  text-align: center;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: -0.04em;
  margin-bottom: 2.8666666667rem;
}
@media (width <= 768px) {
  .p-about__company-title {
    font-size: 1.3333333333rem;
  }
}
.p-about__contribution .c-block__01:nth-of-type(1) {
  margin-top: 4rem;
}

.p-service .c-page-header {
  height: 22.4rem;
  background: #222 url(../images/service/header-bg.png) no-repeat;
  background-position: right top;
  background-size: 47.3333333333rem 22.4rem;
}
@media (width <= 768px) {
  .p-service .c-page-header {
    height: auto;
  }
}
.p-service .c-page-header__eng {
  font-weight: 700;
  font-size: 2.6666666667rem;
  letter-spacing: 0;
  margin-bottom: 1.6666666667rem;
}
@media (width <= 768px) {
  .p-service .c-page-header__eng {
    font-size: 1.4666666667rem;
  }
}
.p-service .c-page-header__title {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0;
  margin-left: 0;
  margin-bottom: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-service .c-page-header__title {
    font-size: 0.8rem;
    margin-left: 0;
  }
}
.p-service__about {
  padding-bottom: 6rem;
}
@media (width <= 768px) {
  .p-service__about {
    padding-bottom: 2.6666666667rem;
  }
}
.p-service__about-title {
  font-size: 2.6666666667rem;
  text-align: center;
  margin-bottom: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-service__about-title {
    font-size: 1.2rem;
  }
}
.p-service__about-span {
  color: #ba8e2a;
  letter-spacing: -0.04em;
  font-size: 4.2666666667rem;
}
@media (width <= 768px) {
  .p-service__about-span {
    font-size: 1.6rem;
  }
}
.p-service__about-dx {
  letter-spacing: -0.04em;
  font-weight: 700;
  font-size: 5.3333333333rem;
  transform: translateY(0.4rem);
  display: inline-block;
}
@media (width <= 768px) {
  .p-service__about-dx {
    font-size: 1.6rem;
    transform: inherit;
  }
}
.p-service__about-p {
  width: 56.2666666667rem;
  margin: 0 auto;
  font-size: 1.3333333333rem;
  font-weight: 500;
  line-height: 2.3;
}
@media (width <= 768px) {
  .p-service__about-p {
    width: 100%;
    font-size: 0.9333333333rem;
    line-height: 1.8;
  }
}
.p-service__01 {
  background: #222222;
  color: #fff;
  text-align: center;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 4.9333333333rem), 50% 100%, 0 calc(100% - 4.9333333333rem));
  padding-bottom: 3.6666666667rem;
}
@media (width <= 768px) {
  .p-service__01 {
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 3.3333333333rem), 50% 100%, 0 calc(100% - 3.3333333333rem));
  }
}
.p-service__01 .c-inner {
  padding: 2.6666666667rem 1.3333333333rem;
}
.p-service__01-title {
  font-size: 2rem;
  font-weight: 700;
  padding: 0.6666666667rem 4.6666666667rem;
  display: inline-block;
  background: #000;
  border: 0.1333333333rem solid #fff;
  border-radius: 0.3333333333rem;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-service__01-title {
    padding: 0.6666666667rem;
    font-size: 1.3333333333rem;
    display: block;
  }
}
.p-service__01-title:not(:first-child) {
  margin-top: 2.6666666667rem;
}
.p-service__01-p {
  text-align: left;
  font-size: 1.2rem;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-service__01-p {
    font-size: 0.9333333333rem;
  }
}
.p-service__01-inner {
  margin-bottom: 1.3333333333rem;
}
@media (width <= 768px) {
  .p-service__01-inner {
    overflow-x: scroll;
    margin-right: -1.3333333333rem;
    width: calc(100% + 1.3333333333rem);
  }
}
.p-service__01-img1 {
  width: 53.3333333333rem;
}
@media (width <= 768px) {
  .p-service__01-img1 {
    max-width: inherit;
  }
}
.p-service__01-img2 {
  width: 66.6666666667rem;
}
@media (width <= 768px) {
  .p-service__01-img2 {
    max-width: inherit;
  }
}
.p-service__01-notice {
  font-size: 0.6666666667rem;
  overflow-wrap: break-word;
  margin-bottom: 2rem;
}
@media (width <= 768px) {
  .p-service__01-notice {
    font-size: 0.8rem;
    text-align: left;
  }
}
.p-service__01-conclusion {
  color: #f2ad10;
  font-size: 2.6666666667rem;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-service__01-conclusion {
    font-size: 1.4666666667rem;
  }
}
.p-service__02 {
  text-align: center;
  padding: 6.6666666667rem 0 0;
  margin-bottom: 7.6666666667rem;
}
@media (width <= 768px) {
  .p-service__02 {
    padding-top: 2.6666666667rem;
    margin-bottom: 4rem;
  }
}
.p-service__02-title {
  color: #ba8e2a;
  font-size: 2.8rem;
  letter-spacing: -0.04em;
  font-weight: 700;
}
@media (width <= 768px) {
  .p-service__02-title {
    font-size: 1.4666666667rem;
    margin-bottom: 0.6666666667rem;
  }
}
.p-service__02-sub-title {
  font-size: 0.9333333333rem;
}

.p-contact__inner {
  max-width: 53.3333333333rem;
  margin: 0 auto;
}

.p-events .c-form__select {
  width: 20rem;
  margin-bottom: 2.6666666667rem;
}

.p-news .c-form__select {
  width: 20rem;
  margin-bottom: 2.6666666667rem;
}

.page:not(.p-home) .l-article .p-general-event__title {
  margin-top: 0;
}

/* Utilities */
.u-mt0 {
  margin-top: 0px;
}

.u-mb0 {
  margin-bottom: 0px;
}

.u-mt10 {
  margin-top: 10px;
}

.u-mb10 {
  margin-bottom: 10px;
}

.u-mt20 {
  margin-top: 20px;
}

.u-mb20 {
  margin-bottom: 20px;
}

.u-mt30 {
  margin-top: 30px;
}

.u-mb30 {
  margin-bottom: 30px;
}

.u-mt40 {
  margin-top: 40px;
}

.u-mb40 {
  margin-bottom: 40px;
}

.u-mt50 {
  margin-top: 50px;
}

.u-mb50 {
  margin-bottom: 50px;
}

.u-mt60 {
  margin-top: 60px;
}

.u-mb60 {
  margin-bottom: 60px;
}

.u-mt70 {
  margin-top: 70px;
}

.u-mb70 {
  margin-bottom: 70px;
}

.u-mt80 {
  margin-top: 80px;
}

.u-mb80 {
  margin-bottom: 80px;
}

.u-mt90 {
  margin-top: 90px;
}

.u-mb90 {
  margin-bottom: 90px;
}

.u-mt100 {
  margin-top: 100px;
}

.u-mb100 {
  margin-bottom: 100px;
}

.u-icon {
  vertical-align: middle;
  margin-left: 0.6666666667rem;
}
@media (width <= 768px) {
  .u-icon {
    margin-left: 0.6666666667rem;
  }
}
.u-icon__download {
  width: 1.0666666667rem;
}
@media (width <= 768px) {
  .u-icon__download {
    width: 1.0666666667rem;
  }
}
.u-icon__download--small {
  width: 0.7113333333rem;
}
@media (width <= 768px) {
  .u-icon__download--small {
    width: 0.7113333333rem;
  }
}
.u-icon__envelope {
  width: 1.3333333333rem;
}
@media (width <= 768px) {
  .u-icon__envelope {
    width: 1.3333333333rem;
  }
}
.u-icon__envelope--small {
  width: 1rem;
}
@media (width <= 768px) {
  .u-icon__envelope--small {
    width: 1rem;
  }
}

.u-pc {
  display: block;
}
.u-pc--inline {
  display: inline;
}
.u-pc--iblock {
  display: inline-block;
}
.u-pc--table {
  display: table;
}

.u-sp {
  display: none;
}
.u-sp--inline {
  display: none;
}
.u-sp--iblock {
  display: none;
}
.u-sp--table {
  display: none;
}

.u-ofit img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.u-pos--absolute {
  position: absolute;
}
.u-pos--fixed {
  position: fixed;
}
.u-pos--relative {
  position: relative;
}

.u-text--default {
  font-family: "Noto Sans JP", sans-serif;
}
.u-text--poppins {
  font-family: "Poppins", sans-serif;
  letter-spacing: -0.04em;
  transform: translateY(0.07em);
  display: inline-block;
  line-height: 1;
}
.u-text--center {
  text-align: center;
}
.u-text--left {
  text-align: left;
}
.u-text--right {
  text-align: right;
}
.u-text--thin {
  font-weight: 100;
}
.u-text--extra-light {
  font-weight: 200;
}
.u-text--light {
  font-weight: 300;
}
.u-text--regular {
  font-weight: 400;
}
.u-text--medium {
  font-weight: 500;
}
.u-text--semi-bold {
  font-weight: 600;
}
.u-text--bold {
  font-weight: 700;
}
.u-text--extra-bold {
  font-weight: 800;
}
.u-text--black {
  font-weight: 900;
}
.u-text--big {
  font-size: 1.4em;
}
.u-text--regular {
  font-size: 1em;
}
.u-text--small {
  font-size: 0.8em;
}

.u-text_ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  line-height: 1.5;
}
.u-text_ellipsis--multiline {
  white-space: normal;
  max-height: 3em;
  position: relative;
}
.u-text_ellipsis--multiline::after {
  content: "…";
  position: absolute;
  display: block;
  bottom: 0;
  right: 0;
}
.u-text_ellipsis--line2 {
  max-height: 3em;
}
.u-text_ellipsis--line3 {
  max-height: 4.5em;
}
.u-text_ellipsis--line4 {
  max-height: 6em;
}
.u-text_ellipsis--line5 {
  max-height: 7.5em;
}

.u-fade-in {
  opacity: 0;
  transform: translateY(2rem);
  transition: 0.8s;
}
@media (width <= 768px) {
  .u-fade-in {
    transform: translateY(2rem);
  }
}
.u-fade-in.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (width <= 768px) {
  .u-pc {
    display: none;
  }
  .u-pc--inline {
    display: none;
  }
  .u-pc--iblock {
    display: none;
  }
  .u-pc--table {
    display: none;
  }
  .u-sp {
    display: block;
  }
  .u-sp--inline {
    display: inline;
  }
  .u-sp--iblock {
    display: inline-block;
  }
  .u-sp--table {
    display: table;
  }
}