@charset "UTF-8";

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 400;
  src: url('/assets/font/NotoSansCJKjp-Regular.woff') format('woff'),
    url('/assets/font/NotoSansCJKjp-Regular.eot') format('eot');
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 500;
  src: url('/assets/font/NotoSansCJKjp-Medium.woff') format('woff'),
    url('/assets/font/NotoSansCJKjp-Medium.eot') format('eot');
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 700;
  src: url('/assets/font/NotoSansCJKjp-Bold.woff') format('woff'),
    url('/assets/font/NotoSansCJKjp-Bold.eot') format('eot');
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 900;
  src: url('/assets/font/NotoSansCJKjp-Black.woff') format('woff'),
    url('/assets/font/NotoSansCJKjp-Black.eot') format('eot');
  font-display: swap;
}

@font-face {
  font-family: 'Noto Sans Japanese';
  font-style: normal;
  font-weight: 100;
  src: url('/assets/font/NotoSansCJKjp-Thin.woff') format('woff'),
    url('/assets/font/NotoSansCJKjp-Thin.eot') format('eot');
  font-display: swap;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font-family: 'Noto Sans Japanese', sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 1.5;
  position: relative;
  display: flex;
  flex-direction: column;
}

body.overhidden {
  overflow: hidden;
}

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

a {
  text-decoration: none;
  color: #333333;
  transition: 0.3s !important;
}

a:hover {
  opacity: 0.8 !important;
  text-decoration: none;
}

button {
  cursor: pointer;
  border: none;
  transition: 0.3s;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  opacity: 1;
}

/* ------------------------------------------------------------------
   クリックしたときの輪郭（フォーカスリング）
   Bootstrap 3 に a:focus / .btn:focus で
     outline: 5px auto -webkit-focus-ring-color; outline-offset: -2px;
   という指定があり、マウスでクリックしただけでもリンクの周りに輪郭が出る。
   -webkit-focus-ring-color はmacOSのアクセントカラーなので、
   見る人の設定によって青にも黒にもなる（既定は青、グラファイトだと黒）。
   別窓で開くリンク（スポンサーロゴ、参加登録ボタンなど）は、戻ってきたときも
   輪郭が残るので特に目立つ。

   クリックのときは消して、キーボード操作のときだけ :focus-visible で出す。
   両方を消してしまうと、キーボードだけで操作している人がいまどこにいるのか
   分からなくなる。特にKV上の参加登録リンクは中身が空のオーバーレイなので、
   輪郭が無いと手掛かりが一切ない。
   なお :focus のリセットは :focus-visible より前に置く。
   詳細度が同じなので、後ろに置くとキーボード時の表示まで打ち消してしまう
   ------------------------------------------------------------------ */
a:focus,
button:focus,
.btn:focus,
.btn:active:focus,
.btn.active:focus {
  outline: none;
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible {
  outline: 2px solid #2D9CDB;
  outline-offset: 2px;
}

/* KVの参加登録リンクは画像の上に重なる。周囲が濃紺・向日葵色どちらの場合でも
   見えるように、輪郭の外側に白を重ねる */
.main-visual .link:focus-visible {
  outline: 3px solid #2D9CDB;
  outline-offset: 2px;
  box-shadow: 0 0 0 6px rgba(255, 255, 255, 0.9);
}

button:hover {
  opacity: 0.8;
}

.wrapper {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.clearfix::after {
  content: '';
  display: block;
  clear: both;
}

ul,
ol {
  list-style: none;
}


.wrapper header .header-inner .header-nav .list a[target='_blank']::after {
  background-image: url('/common/images/icon-blank2.svg');
}


header {
  height: 78px;
  position: relative;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background-color: rgba(102, 103, 171, 0.0);
  box-shadow: none;

}

@media screen and (max-width: 767px) {
  header {
    height: 50px;
  }
}

header .header-inner {
  padding: 0 32px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

@media screen and (max-width: 767px) {
  header .header-inner {
    padding: 0 10px;
  }
}

header .header-inner .header-logo {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

header .header-inner .header-logo:hover {
  opacity: 0.8;
  text-decoration: none;
}

header .header-inner .header-logo:hover .site-name {
  color: #000000;
}

header .header-inner .header-logo .logo-img {
  width: 60px;
  height: 60px;
  margin-right: 15px;
}

header .header-inner .header-logo .site-name {
  font-size: 2.3rem;
  line-height: 1;
  letter-spacing: -0.99px;
  font-weight: bold;
  text-align: center;
  transition: 0.3s;
  margin-top: 0;
  margin-bottom: 0;
}

header .header-inner .header-logo .site-name span {
  display: block;
  text-align: center;
  font-size: 1.4rem;
  letter-spacing: 1.26px;
  transform: translateX(1.26px);
}

header .header-inner .header-logo2:hover {
  color: #FFC800;
}

header .header-inner .header-logo2:hover .site-name {
  color: #FFC800;
}

header .header-inner .header-logo2 .site-name {
  font-family: good-times, sans-serif;
  font-size: 20px;
  font-weight: bold;
  margin: 0;
  transition: 0.3s;
  /* 2026はヘッダーが暗いKVに重なるため白抜きにする */
  color: #ffffff;
}

header .header-inner .header-nav {
  position: absolute;
  right: 200px;
}

@media (max-width: 1050px) {
  header .header-inner .header-nav {
    display: none;
  }
}

header .header-inner .header-nav .list {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
  margin-bottom: 0;
  /* 参加登録ボタンは position: fixed で右端に浮いており、通常の項目と場所を
     取り合わない。最後の項目がボタンの下に潜り込まないよう右に余白を取る。
     50pxで、項目どうしの間隔(44px)とボタン手前の間隔がそろう */
  padding-right: 50px;
}


header .header-inner .header-nav .list .list-item {
  margin-right: 24px;
  margin-left: 20px;
  text-align: center;
  font-size: 1.5rem;
  position: relative;
  text-decoration: none;
}

@media screen and (max-width: 1279px) {
  header .header-inner .header-nav .list .list-item {
    margin: 0 20px;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 1168px) {
  header .header-inner .header-nav .list .list-item {
    margin: 0 15px;
    font-size: 1.1rem;
  }
}


header .header-inner .header-nav .list .list-item::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  content: '';
  width: 100%;
  height: 4px;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: transform 0.3s;
}

header .header-inner .header-nav .list .list-item.parent {
  cursor: pointer;
  position: relative;
  font-weight: 700;
  -webkit-font-smoothing: antialiased;
}

header .header-inner .header-nav .list .list-item.parent:hover span::before {
  transform: rotate(90deg);
}

header .header-inner .header-nav .list .list-item.parent span {
  line-height: 2rem;
  font-weight: 500;
  color: #ffffff;
}

header .header-inner .header-nav .list .list-item.parent span::before {
  content: '';
  display: inline-block;
  margin-right: 6px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ffffff;
  transform-origin: center;
  transition: 0.3s;
}

header .header-inner .header-nav .list .list-item.parent:hover .child {
  display: block;
}

header .header-inner .header-nav .list .list-item .child {
  position: absolute;
  background-color: rgba(102, 103, 171, 0.0);
  width: 200px;
  display: none;
  padding-bottom: 10px;
  text-align: left;
}

header .header-inner .header-nav .list .list-item .child li {
  width: 100%;
}

header .header-inner .header-nav .list .list-item .child li a {
  display: block;
  padding: 10px;
  padding-bottom: 0px;
  line-height: 1.5;
  width: 100%;
  font-weight: 500;
}

header .header-inner .header-nav .list .list-item .child li:hover {
  width: auto;
  height: auto;
}

header .header-inner .header-nav .list .list-item:last-of-type {
  margin-right: 0;
}

header .header-inner .header-nav .list .list-item a {
  line-height: 2rem;
  font-weight: 700;
  transition: 0.3s;
  -webkit-font-smoothing: antialiased;
  color: #ffffff;
}

header .header-inner .header-nav .list .list-item a:hover {
  text-decoration: none;
  opacity: 0.8;
  color: #FFC800;
}

/* 参加登録ボタン。2026のカラーパレット（dbts Yellow #FFC800 / Deep Navy #1B2A41）。
   縦のグラデーションと上端のハイライト、下端の濃い縁で立体感を出す。
   角は丸めず、グロナビの文字サイズ(15px)に合わせて高さを抑え横に伸ばす */
header .header-inner .header-nav .list .register_button {
  width: 200px;
  height: 44px;
  border: none;
  border-radius: 0;
  font-weight: bold;
  background-image: linear-gradient(180deg, #FFD95E 0%, #FFC800 52%, #E3AF00 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 0 -2px 0 rgba(160, 120, 0, 0.35),
    0 2px 6px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  right: 30px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-position 0.25s ease;
  background-size: 100% 160%;
  background-position: 0 0;
}

/* ボタンだと分かるように矢印を添える。紺の丸に黄色の矢印 */
header .header-inner .header-nav .list .register_button a::before {
  content: '→';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 19px;
  height: 19px;
  margin-right: 9px;
  border-radius: 50%;
  background-color: #1B2A41;
  color: #FFC800;
  font-size: 12px;
  line-height: 1;
  flex-shrink: 0;
}

header .header-inner .header-nav .list .register_button a {
  /* 黄色い部分はどこを押しても飛べるように、リンクをボタン全体に広げる。
     内容幅のままだと余白部分がクリックできない */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  white-space: nowrap;
}

header .header-inner .header-nav .list .register_button:after {
  background: transparent;
}

/* ホバーは少し拡大して浮かせる。押せることが伝わる程度に留める */
header .header-inner .header-nav .list .register_button:hover {
  transform: scale(1.04);
  background-position: 0 -18px;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    inset 0 -2px 0 rgba(160, 120, 0, 0.35),
    0 4px 12px rgba(0, 0, 0, 0.3);
}

/* 黄色背景のボタンなので文字は紺。ホバーは opacity だけで表現する */
header .header-inner .header-nav .list .register_button a,
header .header-inner .header-nav .list .register_button a:hover {
  color: #1B2A41;
}

header .header-inner .hamburger {
  width: 25px;
  height: 22px;
  display: none;
  position: relative;
  cursor: pointer;
}

@media (max-width: 1050px) {
  header .header-inner .hamburger {
    display: block;
  }
}

header .header-inner .hamburger.active {
  height: 28px;
}

header .header-inner .hamburger.active div:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: translate(0, 10.5px) rotate(-45deg);
}

header .header-inner .hamburger.active div:nth-of-type(2) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  opacity: 0;
}

header .header-inner .hamburger.active div:nth-of-type(3) {
  bottom: 0;
  left: 0;
  transform: translate(0, -14.5px) rotate(45deg);
}

header .header-inner .hamburger div {
  width: 100%;
  height: 4px;
  background-color: #ffffff;
  border-radius: 3px;
  transition: 0.3s;
  position: absolute;
  opacity: 1;
}

header .header-inner .hamburger div:nth-of-type(1) {
  top: 0;
  left: 0;
}

header .header-inner .hamburger div:nth-of-type(2) {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

header .header-inner .hamburger div:nth-of-type(3) {
  bottom: 0;
  left: 0;
}


.mnav {
  position: fixed;
  top: 78px;
  bottom: 0;
  right: 0;
  width: 230px;
  background-color: #ffffff;
  transform: translateX(100%);
  transition: 0.3s;
  padding: 0 20px;
}

.mnav.active {
  transform: none;
  z-index: 90;
}

.mnav .list {
  color: #333333;
  text-align: left;
  margin-top: 30px;
}

.mnav .child {
  margin-left: 14px;
}

.mnav .list-item {
  margin-bottom: 30px;
}

.mnav .list-item a {
  color: #333333;
  font-size: 1.4rem;
  font-weight: 500;
}

.mnav-mask {
  background-color: #000000;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  z-index: 89;
  transition: 0.3s;
}

.mnav-mask.active {
  opacity: 0.5;
  visibility: visible;
}

main {
  padding-top: 0;
  position: absolute;
  width: 100%;
  background-color: #F5F7FA;
}

main.header-black {
  padding-top: 60px;
}

.bottom-area {
  margin-top: 150px;
  margin-bottom: 40px;
}

@media screen and (max-width: 767px) {
  .bottom-area {
    margin-top: 80px;
  }
}

.bottom-area .inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .bottom-area .inner {
    padding: 0 10px;
  }
}

.bottom-area .area01 {
  width: 100%;
  padding: 25px 10px 29px;
  background-image: url('/common/images/bg-bottom-area.jpg');
  position: relative;
  margin-bottom: 40px;
  border-radius: 10px;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2),(min-resolution: 2dppx) {
  .bottom-area .area01 {
    background-image: url('/common/images/bg-bottom-area-2x.jpg');
  }
}

@media screen and (max-width: 767px) {
  .bottom-area .area01 {
    display: -webkit-flex;
    display: -moz-flex;
    display: -ms-flex;
    display: -o-flex;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 25px 10px 29px;
  }
}

.bottom-area .area01 .area01-box {
  width: calc(770 / 1280 * 100vw);
  max-width: 770px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  .bottom-area .area01 .area01-box {
    width: 356px;
    max-width: 100%;
  }
}

.bottom-area .area01 .area01-box .txt {
  width: calc(560 / 1280 * 100vw);
  max-width: 560px;
  border-radius: 6px;
  background-color: #ffffff;
  padding: 21px 23px;
  font-size: calc(35 / 1280 * 100vw);
  line-height: calc(43 / 1280 * 100vw);
  font-weight: bold;
  margin: 0 auto 20px;
}

@media (min-width: 1280px) {
  .bottom-area .area01 .area01-box .txt {
    font-size: 3.5rem;
    line-height: 4.3rem;
  }
}

@media screen and (max-width: 767px) {
  .bottom-area .area01 .area01-box .txt {
    width: 100%;
    font-size: 2rem;
    line-height: 3rem;
  }
}

.bottom-area .area01 .btn:hover {
  background-color: #009fb6;
  color: #000000;
  opacity: 0.8;
}

@media screen and (max-width: 767px) {
  .bottom-area .area01 .btn {
    position: initial;
  }
}

.bottom-area .area02 {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .bottom-area .area02 {
    flex-direction: column;
  }
}

.bottom-area .area02 .site-name {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  width: 124px;
  line-height: 1;
  letter-spacing: -0.76px;
  display: inline-block;
  margin-right: 64px;
}

.bottom-area .area02 .site-name:hover {
  color: #000000;
}

@media screen and (max-width: 767px) {
  .bottom-area .area02 .site-name {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.bottom-area .area02 .site-name span {
  font-size: 1.8rem;
  line-height: 1;
  letter-spacing: 3px;
  display: block;
  transform: translateX(2px);
}

.bottom-area .area02 .sns {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-right: 57px;
}

@media screen and (max-width: 767px) {
  .bottom-area .area02 .sns {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.bottom-area .area02 .sns>a {
  display: block;
}

.bottom-area .area02 .sns>a img {
  vertical-align: bottom;
}

.bottom-area .area02 .sns>a:first-of-type {
  margin-right: 15px;
}

.bottom-area .area02 .mail-magazine {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .bottom-area .area02 .mail-magazine {
    flex-direction: column;
  }
}

.bottom-area .area02 .mail-magazine .txt {
  font-size: 1.2rem;
  line-height: 1.7rem;
  letter-spacing: -0.25px;
  margin-right: 32px;
}

@media screen and (max-width: 767px) {
  .bottom-area .area02 .mail-magazine .txt {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.bottom-area .btn {
  border: none;
  border-radius: 0;
  padding: 0;
}

.bottom-area .btn:hover {
  background-color: #2a2a2a;
  color: #ffffff;
  opacity: 0.8;
}

.bottom-area .gorilla {
  position: absolute;
  right: 77px;
  top: -97px;
  z-index: 2;
  width: calc(343 / 1280 * 100vw);
  height: auto;
  max-width: 343px;
}

@media screen and (max-width: 767px) {
  .bottom-area .gorilla {
    display: none;
  }
}

.bottom-area02 .inner {
  max-width: 1216px;
  margin: 0 auto;
  padding: 0 32px;
  position: relative;
}

@media screen and (max-width: 767px) {
  .bottom-area02 .inner {
    padding: 0 10px;
  }
}

.bottom-area02 .site-name {
  text-align: center;
}

.bottom-area02 .site-name a {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: -0.99px;
  color: #000000;
  margin: 0 auto 37px;
  text-align: center;
  display: inline-block;
  font-weight: bold;
}

.bottom-area02 .site-name a:hover {
  color: #000000;
  opacity: 0.8;
}

.bottom-area02 .site-name a span {
  font-size: 1.6rem;
  line-height: 2.4rem;
  letter-spacing: -0.5px;
  display: block;
}

.bottom-area03 {
  max-width: 1280px;
  margin: 50px auto 43px;
  padding: 0 32px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .bottom-area03 {
    margin: 100px auto 43px;
  }
}

.bottom-area03 .inner {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 767px) {
  .bottom-area03 .inner {
    flex-direction: column;
  }
}

.bottom-area03 .inner .left {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

@media screen and (max-width: 767px) {
  .bottom-area03 .inner .left {
    flex-direction: column;
    align-items: center;
  }
}

.bottom-area03 .inner .left .title {
  font-family: good-times, sans-serif;
  font-size: 22px;
  line-height: 26px;
  text-align: center;
  font-weight: bold;
  margin-right: 30px;
  padding-top: 6px;
}

.bottom-area03 .inner .left .title:hover {
  color: #000;
}

@media screen and (max-width: 767px) {
  .bottom-area03 .inner .left .title {
    margin-right: 0;
    margin-bottom: 20px;
  }
}

.bottom-area03 .inner .left .title span {
  display: block;
  font-size: 11px;
  line-height: 13px;
}

.bottom-area03 .inner .left .sns {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}

.bottom-area03 .inner .left .sns a:first-of-type {
  margin-right: 15px;
}

.bottom-area03 .inner .right {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .bottom-area03 .inner .right {
    flex-direction: column;
  }
}

.bottom-area03 .inner .right .txt {
  font-size: 12px;
  line-height: 17px;
  margin-right: 30px;
}

@media screen and (max-width: 767px) {
  .bottom-area03 .inner .right .txt {
    margin-right: 0;
    margin-bottom: 10px;
    margin-top: 20px;
  }
}

footer {
  background-color: #2d2d2d;
  position: relative;
}

footer .footer-inner {
  color: #373741;
  padding: 38px 32px;
  text-align: center;
}

footer small {
  font-size: 1.1rem;
  line-height: 1.6rem;
  color: #ffffff;
}

.btn {
  background-color: #2a2a2a;
  color: #ffffff;
  text-align: center;
  font-weight: bold;
  display: block;
  max-width: 100%;
}

.btn.btn01 {
  font-size: 1.6rem;
  line-height: 2.4rem;
  margin: 0 auto;
  width: 218px;
  padding: 13.5px 0;
}

.btn.btn02 {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin: 0 auto;
  width: 294px;
  padding: 19px 0;
}

.btn.btn03 {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin: 0 auto;
  width: 294px;
  padding: 19px 0;
  background-color: #009fb6;
  color: #000000;
}

.btn.btn04 {
  font-size: 1.2rem;
  line-height: 4rem;
  margin: 0 auto;
  width: 96px;
  height: 40px;
  font-weight: normal;
  border-radius: 0;
  padding: 0;
}

.btn.btn04:hover {
  color: #fff;
}

.btn.btn05 {
  font-size: 1.2rem;
  line-height: 2rem;
  margin: 0 auto;
  padding: 10px 0;
  width: 66px;
  height: 40px;
  font-weight: normal;
  border-radius: 4px;
}

.btn.btn06 {
  font-size: 1.8rem;
  line-height: 2.6rem;
  margin: 0 auto;
  padding: 19px 10px;
  width: 346px;
  font-weight: bold;
  border-radius: 0;
}

.tag-area {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
}

.tag-area .tag {
  padding: 0 8.75px;
  font-size: 1rem;
  line-height: 2.23rem;
  text-align: center;
  font-weight: bold;
  margin-right: 8.5px;
  opacity: 0.92;
  border-radius: 4px;
  margin-bottom: 10px;
}

.tag-area .tag.tag-category {
  color: #ffffff;
  background-color: #607d8b;
}

.tag-area .tag.tag-full-soon {
  color: #ffffff;
  background-color: #607d8b;
}

.tag-area .tag.tag-transrate {
  color: #000000;
  background-color: #f7f256;
}

.tag-area .tag.tag-lunch {
  color: #ffffff;
  background-color: #ff9800;
}

.sm {
  display: none;
}

@media screen and (max-width: 767px) {
  .sm {
    display: block;
  }
}

.pc {
  display: block;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}

.breadcrumb {
  padding: 0;
  background-color: transparent;
  border-radius: 0;
  margin-bottom: 0;
}

.breadcrumb ul {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin-top: 13px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.breadcrumb ul li {
  color: #000000;
  font-size: 1.1rem;
}

.breadcrumb ul li a {
  color: #000000;
  font-size: 1.1rem;
}

.breadcrumb ul li a:hover {
  color: #000000;
  opacity: 0.8;
}

.breadcrumb ul li:not(:last-of-type)::after {
  content: '＞';
  margin-left: 10px;
  margin-right: 10px;
}

.text-center {
  text-align: center;
}

.time {
  font-size: 1.4em;
  font-weight: bold;
  padding-left: 0.3em;
  background-color: #f2f2f2;
}

.timehalf {
  font-size: 0.7em;
  font-weight: normal;
}

.space2 {
  padding: 15px 0;
}

.pad1 {
  padding: 1em;
}

.spname {
  font-weight: bold;
  font-size: 2em;
}

.sphalf {
  font-size: 50%;
  font-weight: normal;
}

.spbio {
  line-height: 1.7;
  font-weight: normal;
  letter-spacing: 0.03em;
  font-size: 1.2em;
}
