@charset "UTF-8";
/* =============================================================

Reset

* ============================================================= */
html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  outline: 0;
  border: 0;
  font-size: 100%;
}

body {
  line-height: 1;
}

h1, h2, h3, h4, h5, h6 {
  font-weight: normal;
  font-size: 100%;
}

article, aside, details, figcaption, figure,
main, footer, header, hgroup, menu, nav, section {
  display: block;
}

ul, li {
  list-style: none;
}

input, button, textarea {
  margin: 0;
  padding: 0;
}

input, select {
  vertical-align: middle;
}

input, button, textarea, select, optgroup, option {
  z-index: auto;
  font-weight: inherit;
  font-style: inherit;
  font-size: inherit;
  font-family: inherit;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;

  *font-size: 108%;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

caption, th {
  text-align: left;
}

fieldset {
  border: 0;
}

address, caption, cite, code, dfn, em, strong, th, var, optgroup {
  z-index: auto;
  font-weight: inherit;
  font-style: inherit;
}

del {
  text-decoration: none;
  text-decoration: line-through;
}

a {
  margin: 0;
  padding: 0;
  outline: none;
  background: transparent;
  color: inherit;
  vertical-align: baseline;
  text-decoration: none;
  font-size: 100%;
}

img {
  display: block;
  border: 0;
  background: transparent;
  color: #fff;
}

/* =============================================================

Base

* ============================================================= */
*,
*:before,
*:after {
  box-sizing: border-box;
}

img {
  visibility: hidden;
  opacity: 0;
}

img[src] {
  visibility: visible;
  opacity: 1;
}

html {
  height: 100%;
  margin: 0;
  padding: 0;
  font-size: 62.5%;

  text-underline-position: under;
}

@media screen and (max-width: 767px) {
  html {
    font-size: 2vw;
  }
}

body {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  padding: 0;
  background-color: #b41e1e;
  color: #fff;
  letter-spacing: .03em;
  font-size: 1.6rem;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-feature-settings: "palt";
  line-height: 1.75;
  -webkit-text-size-adjust: 100%;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../img/loader/three-dots.svg) 50% 50% no-repeat #f6f6f6;
  background-size: 50px;
  transition: opacity .5s ease-out;
}

body.is-loaded:before {
  opacity: 0;
  pointer-events: none;
}

img,
svg {
  display: block;
  height: auto;
  max-width: 100%;
}

svg path {
  fill: currentColor;
}

#googleAnalyticsImageObj {
  position: absolute;
  bottom: 0;
  left: 0;
}

/* wrapper
=============================== */
.l-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  width: 100%;
  min-width: 1180px;
  min-height: 100%;
  margin: 0 auto;
  padding: 0;
  box-shadow: 0 0 10px 0px rgba(0, 0, 0, .2);
  background-color: #b41e1e;
  opacity: 0;
  transition: all .2s ease-out .1s;
  transition: opacity .4s ease-out .1s;
  pointer-events: none;
}

body.is-loaded .l-wrapper {
  opacity: 1;
  pointer-events: auto;
}

@media screen and (max-width: 767px) {
  .l-wrapper {
    min-width: 0;
  }
}

/* =============================================================

Header

* ============================================================= */
/* header
=============================== */
.l-header {
  width: 100%;
  color: #000;
}

.l-header:before {
  content: "";
  display: block;
  width: 100%;
  height: 88px;
}

@media screen and (max-width: 560px) {
  .l-header:before {
    height: 55px;
  }
}

.l-header__inner {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  display: flex;
  justify-content: space-between;
  align-items: center;
  right: 0;
  left: 0;
  margin-inline: auto;
  width: 100%;
  height: 88px;
  min-width: 1180px;
  padding: 0 3rem;
  background: #fff;
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .08);
}

@media screen and (max-width: 767px) {
  .l-header__inner {
    min-width: 0;
    padding: 0 0 0 5%;
  }
}

@media screen and (max-width: 560px) {
  .l-header__inner {
    height: 55px;
  }
}

.l-header__main {
  max-width: 35%;
}

@media screen and (max-width: 560px) {
  .l-header__main {
    max-width: 25%;
  }
}

.l-header__sub {
  margin-left: auto;
}

/* header logo
=============================== */
.l-header-logo {
  display: flex;
  width: 100%;
  margin: auto 0;
}

.l-header-logo a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  transition: opacity .25s;
}

.l-header-logo a img {
  min-width: 0%;
}

.l-header-logo a:hover {
  opacity: .6;
}

/* header nav
=============================== */
@media screen and (max-width: 767px) {
  .l-header-nav {
    position: absolute;
    top: 0;
    right: -100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    overflow-y: auto;
    width: 70%;
    height: 100vh;
    padding-top: 88px;
    background: rgba(229, 0, 18, 0);
    color: #fff;
    transition: right .4s, background .3s;
  }
  .l-header-nav.is-open {
    right: 0;
    background: #000;
    box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, .08);
  }
}

@media screen and (max-width: 767px) and (max-width: 560px) {
  .l-header-nav {
    padding-top: 55px;
  }
}

.l-header-nav__list {
  display: flex;
  align-items: center;
}

@media screen and (max-width: 767px) {
  .l-header-nav__list {
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
    padding: 1em;
  }
}

.l-header-nav__item {
  margin-left: 2.125em;
}

@media screen and (max-width: 767px) {
  .l-header-nav__item {
    width: 100%;
    margin-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, .7);
  }
}

.l-header-nav__button {
  margin-left: 2.4375em;
}

.l-header-nav__button + .l-header-nav__button {
  margin-left: .5em;
}

@media screen and (max-width: 767px) {
  .l-header-nav__button {
    width: 100%;
    margin-top: 2em;
    margin-left: 0;
  }
  .l-header-nav__button + .l-header-nav__button {
    margin-top: .5em;
    margin-left: 0;
  }
}

.l-header-nav-text {
  display: block;
  padding: 1em 0;
  transition: color .3s ease-out;
}

@media screen and (min-width: 1180px) {
  .l-header-nav-text:hover {
    color: #e50012;
  }
}

@media screen and (max-width: 767px) {
  .l-header-nav-text {
    position: relative;
    padding: 1em 2.4em 1em 0;
    font-weight: bold;
  }
  .l-header-nav-text:after {
    content: "";
    position: absolute;
    top: 0;
    right: 1em;
    bottom: 0;
    display: block;
    width: .4375em;
    height: .4375em;
    margin: auto 0;
    border-top: 2px solid;
    border-right: 2px solid;
    transform: rotate(45deg);
  }
}

/* header-nav-toggle
=============================== */
.l-header-nav-toggle {
  position: relative;
  z-index: 1;
  display: none;
  width: 88px;
  height: 88px;
  margin: 0;
  padding: 0;
  outline: none;
  border: 0;
  background: #000;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

@media screen and (max-width: 767px) {
  .l-header-nav-toggle {
    display: block;
  }
  .l-header-nav-toggle.is-open {
    transition: color .2s .2s;
  }
}

@media screen and (max-width: 560px) {
  .l-header-nav-toggle {
    width: 55px;
    height: 55px;
  }
}

.l-header-nav-toggle > div,
.l-header-nav-toggle > div:before,
.l-header-nav-toggle > div:after {
  position: absolute;
  display: block;
  height: 2px;
  background: #fff;
}

.l-header-nav-toggle > div {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 2.5em;
  max-width: 55%;
  margin: auto;
  font-size: 10px;
  transition: background .2s;
}

.l-header-nav-toggle > div:before, .l-header-nav-toggle > div:after {
  content: "";
  left: 0;
  width: 100%;
  transition: top .2s .2s, bottom .2s .2s, transform .2s, background .2s;
}

.l-header-nav-toggle > div:before {
  top: -.9em;
}

.l-header-nav-toggle > div:after {
  bottom: -.9em;
}

.l-header-nav-toggle > div > span {
  display: none;
}

.l-header-nav-toggle.is-open > div {
  background: transparent;
  transition: background .2s .2s;
}

.l-header-nav-toggle.is-open > div:before, .l-header-nav-toggle.is-open > div:after {
  transition: top .2s, bottom .2s, transform .2s .2s, background .2s .2s;
}

.l-header-nav-toggle.is-open > div:before {
  top: 0;
  transform: rotate(45deg);
}

.l-header-nav-toggle.is-open > div:after {
  bottom: 0;
  transform: rotate(-45deg);
}

/* header button
=============================== */
.l-header-button {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 4.8rem;
  padding: 0 1.66667em;
  border: 1px solid #e50012;
  border-radius: 3px;
  background: #e50012;
  color: #fff;
  font-weight: bold;
  font-size: 1.5rem;
  transition: all .2s ease-out;
}

@media screen and (min-width: 1180px) {
  .l-header-button:hover {
    background: #fff;
    color: #e50012;
  }
}

@media screen and (max-width: 767px) {
  .l-header-button {
    border-color: rgba(255, 255, 255, .8);
  }
}

.l-header-button > span:not(:first-child) {
  margin-left: .46667em;
}

/* =============================================================

Main

* ============================================================= */
/* main
=============================== */
.l-main {
  position: relative;
  flex-grow: 1;
  width: 100%;
  min-height: 0%;
  max-height: 100%;
  padding: 0;
}

.l-main__head {
  margin-bottom: calc(3rem + 5.12445%);
  border-bottom: 1px solid #fff;
}

.l-main__body {
  position: relative;
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
}

/* =============================================================

Footer

* ============================================================= */
.l-footer__head img{
  width: 100%;
}

.l-footer__body {
  position: relative;
  padding: 6rem 3rem;
  background: #000;
  color: #fff;
}

.l-footer__body a {
  color: #fff;
}

.l-footer__body a:hover {
  text-decoration: underline;
}

@media screen and (max-width: 767px) {
  .l-footer__body a {
    text-decoration: underline;
  }
}

.l-footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .l-footer__inner {
    flex-direction: column;
  }
}

.l-footer__sub {
  text-align: right;
}

@media screen and (max-width: 767px) {
  .l-footer__sub {
    margin-top: 3rem;
    text-align: center;
  }
}

.l-footer__pagetop {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 100;
  width: 100%;
  height: 11.2rem;
  min-width: 1180px;
  padding: 0 2.19619% 3rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .l-footer__pagetop {
    min-width: 0;
    padding-bottom: 2.19619%;
  }
}

/* footer-profile
=============================== */
@media screen and (max-width: 767px) {
  .l-footer-profile {
    text-align: center;
  }
}

.l-footer-profile__head {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-weight: bold;
}

.l-footer-profile__body {
  /* -0.35714em for line-height offset */
  margin-top: .78571em;
  margin-bottom: -.35714em;
  font-size: .875em;
  line-height: 1.71429;
}

/* footer-nav
=============================== */
.l-footer-nav {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-size: .9375em;
}

/* footer-copyright
=============================== */
.l-footer-copyright {
  display: block;
  margin-top: 1.5em;
  font-size: .75em;
  font-family: "Roboto", sans-serif;
  line-height: 1.8;
}

/* pagetop
=============================== */
.l-footer-pagetop {
  position: fixed;
  bottom: 0;
  left: inherit;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  min-width: 1180px;
  padding: 0 2.19619% 3rem;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .l-footer-pagetop {
    min-width: 0;
    padding-bottom: 2.19619%;
  }
}

.l-footer-pagetop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 6.4rem;
  height: 6.4rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, .42);
  opacity: 0;
  transition: opacity .3s ease-out, background .3s ease-out;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .l-footer-pagetop a {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.l-footer__pagetop.is-visible .l-footer-pagetop a {
  opacity: 1;
  pointer-events: auto;
}

.l-footer__pagetop.is-visible .l-footer-pagetop a:hover {
  background: rgba(0, 0, 0, .5);
}

.l-footer-pagetop a span {
  display: none;
}

.l-footer-pagetop a:before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  margin-top: .4rem;
  border-top: 2px solid;
  border-left: 2px solid;
  transform: rotate(45deg);
}

/* =============================================================

Modal

* ============================================================= */
.l-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1001;
  display: flex;
  visibility: hidden;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  min-width: 1120px;
  opacity: 0;
  transition: visibility .3s ease-out, opacity .3s ease-out;
  pointer-events: none;
}

@media screen and (max-width: 767px) {
  .l-modal {
    min-width: 0;
  }
}

.l-modal.is-show {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.l-modal__inner {
  position: relative;
  z-index: 1;
  max-width: 1120px;
  transition: transform .3s ease-out;
  transform: translateY(20px);
}

@media screen and (max-width: 767px) {
  .l-modal__inner {
    max-width: none;
  }
}

.l-modal.is-show .l-modal__inner {
  transform: translateY(0px);
}

.l-modal__close {
  position: absolute;
  top: 2.4rem;
  right: 2.4rem;
  width: 5.6rem;
  height: 5.6rem;
  opacity: 0;
}

.l-modal.is-show .l-modal__close {
  opacity: 1;
}

.l-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .8);
  font-size: 0;
}

/* image
=============================== */
.l-modal-contents {
  display: none;
  max-width: 90vw;
}

.l-modal-contents.is-show {
  display: block;
}

.l-modal-contents__inner {
  overflow-y: auto;
  max-height: calc(90vh - 3.125em);
  padding: 6.5rem 5rem;
  background: #fff;
}

/* close
=============================== */
.l-modal-close {
  right: 0;
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
  border: 0;
  border-radius: 50%;
  background: rgba(0, 0, 0, .2);
  font-size: 0;
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

.l-modal-close:before, .l-modal-close:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 2.6rem;
  height: 3px;
  border-radius: 2px;
  background: #fff;
}

.l-modal-close:before {
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

.l-modal-close:after {
  transform: translateX(-50%) translateY(-50%) rotate(-45deg);
}

/* ============================================================= *

Banner

* ============================================================= */
/* banner
=============================== */
.c-banner {
  display: block;
  transition: all .3s ease-out;
}

.c-banner:hover {
  opacity: .7;
}

/* ============================================================= *

Breadcrumbs

* ============================================================= */
/* breadcrumbs
=============================== */
.c-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
  padding: .73214em 0;
  font-size: 1.4rem;
}

.c-breadcrumbs > li {
  display: flex;
  align-items: flex-start;
  word-break: break-all;
}

.c-breadcrumbs > li:not(:last-child) {
  margin-right: 1em;
}

.c-breadcrumbs > li + li:before {
  content: ">";
  margin-right: 1em;
}

.c-breadcrumbs > li a {
  color: #fff;
  text-decoration: none;
}

.c-breadcrumbs > li a:hover {
  text-decoration: underline;
}

/* ============================================================= *

Button

* ============================================================= */
/* button
=============================== */
.c-button {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  width: 100%;
  height: 3.88889em;
  max-width: 24em;
  padding: 1em;
  outline: none;
  border: 1px solid #dcbe55;
  border-radius: 3px;
  background: #dcbe55;
  color: #000;
  text-align: center;
  text-decoration: none;
  font-size: 1.8rem;
  cursor: pointer;
  transition: all .2s ease-out;
}

.c-button:after {
  content: "";
  position: absolute;
  top: 0;
  right: 2.4rem;
  bottom: 0;
  z-index: 1;
  display: block;
  width: .7rem;
  height: .7rem;
  margin: auto 0;
  border-top: 2px solid;
  border-right: 2px solid;
  transition: all .2s ease-out;
  transform: rotate(45deg);
}

.c-button input {
  border: none;
  background: none;
  color: #fff;
}

.c-button:hover {
  background: #fff;
  color: #dcbe55;
}

.c-button:hover input {
  color: #dcbe55;
}

.c-button._bg-gray {
  border: 1px solid rgba(0, 0, 0, .42);
  background: rgba(0, 0, 0, .42);
}

.c-button._bold {
  font-weight: bold;
}

.c-button._small {
  height: 3em;
}

.c-button._bg-gray:hover {
  background: #fff;
  color: #666;
}

.c-button.is-edit:after {
  left: 2.4rem;
  transform: rotate(225deg);
}


/* button-container
=============================== */
.c-button-container {
  display: flex;
  justify-content: center;
  width: 100%;
}

.c-button-container:not(:first-child) {
  margin-top: 3.2rem;
}

.c-button-container > .c-button {
  margin: 0 1em;
}

.c-button-container > .c-button:first-child:last-child {
  margin: 0;
}

/* ============================================================= *

Card

* ============================================================= */
/* card-block
=============================== */
.c-card-block__main {
  padding: 2.2em;
  background: #fff;
}

.c-card-block__body:not(:first-child) {
  margin-top: 1.25em;
}

.c-card-block__text {
  /* -0.36667em for line-height offset */
  margin-top: -.36667em;
  margin-bottom: -.36667em;
  font-size: 1.125em;
  font-weight: 500;
  line-height: 1.73333;
  color: #000;
  text-align: justify;
}

/* card-nav
=============================== */
.c-card-nav {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-card-nav__image {
  overflow: hidden;
}

.c-card-nav__image img {
  transition: transform .5s ease-out;
  width: 100%;
}

.c-card-nav:hover .c-card-nav__image img {
  transform: scale(1.03);
}

.c-card-nav__block {
  position: relative;
  flex-grow: 1;
  padding-right: 4.8rem;
}

.c-card-nav__block:before {
  content: "";
  position: absolute;
  top: 2.4rem;
  right: 2rem;
  z-index: 1;
  display: block;
  width: .7rem;
  height: .7rem;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: all .5s ease-out;
  transform: rotate(45deg);
  transform-origin: right top;
}

.c-card-nav:hover .c-card-nav__block:before {
  border-top-color: #b41e1e;
  border-right-color: #b41e1e;
}

.c-card-nav__block:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 4.8rem;
  height: 4.8rem;
  border: 1px solid #fff;
  border-radius: 50%;
  transition: all .5s ease-out;
}

.c-card-nav:hover .c-card-nav__block:after {
  background: #fff;
}

.c-card-nav__block:not(:first-child) {
  margin-top: 2.2rem;
}

.c-card-nav__head {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 4.8rem;
}

.c-card-nav__head ._ja {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-weight: bold;
  font-size: 2.2rem;
}

.c-card-nav__head ._en {
  margin-top: 1em;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  line-height: .8;
}

@media screen and (max-width: 767px) {
  .c-card-nav {
    flex-direction: row;
    align-items: center;
  }
  .c-card-nav__image {
    width: 30%;
  }
  .c-card-nav__block:not(:first-child) {
    margin-top: 0;
    margin-left: 2.2rem;
  }
}

/* card-nav-grid
=============================== */
.c-card-nav-grid {
  display: flex;
  flex-wrap: wrap;
  width: 105%;
  margin: -4.46429% -2.5%;
}

.c-card-nav-grid__item {
  width: 33.33333%;
  padding: 4.2517% 2.38095%;
}

.c-card-nav-grid__item._x4 {
  width: 25%;
}

.c-card-nav-grid__item._x2 {
  width: 50%;
}

.c-card-nav-grid__item._x1 {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-card-nav-grid {
    width: 100%;
    margin: 0;
    border-bottom: 1px solid #fff;
  }
  .c-card-nav-grid__item {
    width: 100%;
    padding: 5px 0;
    border-top: 1px solid #fff;
  }
  .c-card-nav-grid__item._x3\:tablet {
    width: 33.33333%;
  }
  .c-card-nav-grid__item._x2\:tablet {
    width: 50%;
  }
  .c-card-nav-grid__item._x1\:tablet {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .c-card-nav-grid__item._x3\:mobile {
    width: 33.33333%;
  }
  .c-card-nav-grid__item._x2\:mobile {
    width: 50%;
  }
  .c-card-nav-grid__item._x1\:mobile {
    width: 100%;
  }
}

/* =============================================================

Grid

* ============================================================= */
/* grid
=============================== */
.c-grid {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 1.2rem);
  margin: -.6rem;
}
@media screen and (max-width: 560px) {
  .c-grid {
    margin: 0;
  }
}

.c-grid__item {
  width: 25%;
  background: #fff;
}

.c-grid__item._x3 {
  width: 33.33333%;
}

.c-grid__item._x2 {
  width: 45%;
}

.c-grid__item._x1 {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-grid__item._x3\:tablet {
    width: 33.33333%;
  }
  .c-grid__item._x2\:tablet {
    width: 50%;
  }
  .c-grid__item._x1\:tablet {
    width: 100%;
  }
}

@media screen and (max-width: 560px) {
  .c-grid__item._x3\:mobile {
    width: 33.33333%;
  }
  .c-grid__item._x2\:mobile {
    width: 50%;
  }
  .c-grid__item._x1\:mobile {
    width: 100%;
  }
}

.c-grid._space-wide {
  width: 105%;
}
@media screen and (max-width: 560px) {
  .c-grid._space-wide {
    width: 100%;
  }
}

.c-grid._space-wide .c-grid__item {
  margin: 2.38095%;
}
@media screen and (max-width: 560px) {
  .c-grid._space-wide .c-grid__item {
    margin-inline: 0;
  }
}

@media screen and (max-width: 767px) {
  .c-grid._space-default\:tablet {
    width: calc(100% + 12px);
    margin: -6px;
  }
  .c-grid._space-default\:tablet .c-grid__item {
    padding: 6px;
  }
}

.c-grid._space-none {
  width: 100%;
  margin: 0;
}

@media screen and (min-width: 560px) {
  .c-grid._space-wide > .c-grid__item:nth-child(n+3) {
    padding-top: 0;
  }
}

/* ============================================================= *

List

* ============================================================= */
/* list
=============================== */
.c-list._inline {
  display: flex;
  flex-wrap: wrap;
}

.c-list._inline .c-list__item:not(:last-child) {
  margin-right: 2em;
}

@media screen and (min-width: 1180px) {
  .c-list._inline\:desktop {
    display: flex;
    flex-wrap: wrap;
  }
  .c-list._inline\:desktop .c-list__item {
    list-style-position: inside;
  }
  .c-list._inline\:desktop .c-list__item:not(:last-child) {
    margin-right: 2em;
  }
}

/* ordered-list
=============================== */
.c-ordered-list {
  list-style-type: decimal;
}

.c-ordered-list._inline {
  display: flex;
  flex-wrap: wrap;
}

.c-ordered-list__item {
  list-style-position: inside;
  list-style-type: decimal;
}

.c-ordered-list._inline .c-ordered-list__item:not(:last-child) {
  margin-right: 2em;
}

@media screen and (min-width: 1180px) {
  .c-ordered-list._inline\:desktop {
    display: flex;
    flex-wrap: wrap;
  }
  .c-ordered-list._inline\:desktop .c-ordered-list__item {
    list-style-position: inside;
  }
  .c-ordered-list._inline\:desktop .c-ordered-list__item:not(:last-child) {
    margin-right: 2em;
  }
}

/* table-list
=============================== */
.c-table-list {
  width: 100%;
  margin-top: -1.75em;
  border-collapse: collapse;
}

.c-table-list:not(:last-child) {
  margin-bottom: 6rem;
}

.c-table-list th,
.c-table-list td {
  padding: 1.375em 0;
  border-bottom: 1px solid #fff;
  vertical-align: top;
}

.c-table-list th {
  width: 9.0625em;
  padding-right: 1em;
  font-weight: bold;
}

/* desc-list
=============================== */
.c-desc-list__item + .c-desc-list__item {
  margin-top: 1.25em;
  padding-top: 1.5em;
  border-top: 1px solid #fff;
}

.c-desc-list-block__head {
  display: flex;
  margin-bottom: .3125em;
  font-weight: bold;
}

.c-desc-list-block__head:before {
  content: "\25CB";
  margin-right: .35em;
}

/* ============================================================= *

Section

* ============================================================= */
/* section
=============================== */
.c-section {
  margin: 8rem 0;
}

.c-section:last-child {
  margin-bottom: 10rem;
}

.c-section._no-margin {
  margin: 0;
}

.c-section._no-margin:last-child {
  margin-bottom: 0;
}

.c-section__head {
  margin-bottom: 6.5rem;
}

.c-section__body {
  margin-top: -1px;
  border-top: 1px solid rgba(255, 255, 255, 0);
}

.c-section._bg {
  position: relative;
  padding: 8rem 0;
}

.c-section._bg:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 0;
  display: block;
  width: 100vw;
  height: 100%;
  background: #f6f6f6;
  transform: translateX(-50%);
}

@media screen and (max-width: 1180px) {
  .c-section._bg:before {
    width: 1180px;
  }
}

@media screen and (max-width: 767px) {
  .c-section._bg:before {
    width: 111.11111%;
  }
}

.c-section._bg > * {
  position: relative;
  z-index: 1;
}

.c-section._bg:last-child {
  margin-bottom: 0;
}

/* contact-section
=============================== */
.c-contact-section {
  padding: 8rem 0;
  background: url(../img/bg_contact.jpg) 50% 50% no-repeat;
  background-size: cover;
}

.c-contact-section__inner {
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
}

.c-contact-section__head {
  margin-bottom: 3rem;
}

body[data-id="contact"] .c-contact-section {
  display: none;
}

/* banner-section
=============================== */
.c-banner-section {
  padding: 4rem 0;
  border-top: 1px solid rgba(0, 0, 0, .13333);
  background: #f6f6f6;
}

.c-banner-section__inner {
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
}

/* ============================================================= *

Table

* ============================================================= */
/* scroll container
=============================== */
.c-table-container {
  position: relative;
  overflow: auto;
  width: 100%;
  background: linear-gradient(to left, rgba(255, 255, 255, 0), #fff 15px) 0 0/50px 100%, linear-gradient(to left, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) 0 0/20px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), #fff 15px) right/50px 100%, linear-gradient(to right, rgba(255, 255, 255, 0), rgba(0, 0, 0, .2)) right/20px 100%;
  background-color: #fff;
  background-attachment: local, scroll, local, scroll;
  background-repeat: no-repeat;
}

.c-table-container + .c-table-container {
  margin-top: 5rem;
}

.c-table-container > * {
  min-width: 58em;
}

/* data table
=============================== */
.c-data-table {
  width: 100%;
  border-collapse: collapse;
  border-top: 1px solid rgba(0, 0, 0, .13333);
  border-left: 1px solid rgba(0, 0, 0, .13333);
  font-size: 1.5rem;
}

.c-data-table th,
.c-data-table td {
  padding: 1em .75em;
  border-right: 1px solid rgba(0, 0, 0, .13333);
  border-bottom: 1px solid rgba(0, 0, 0, .13333);
  text-align: center;
}

.c-data-table thead th {
  background: #666;
  color: #fff;
}

.c-data-table thead th em {
  display: block;
  font-size: 1.14286em;
}

.c-data-table thead th em span {
  display: inline;
  padding-left: .5em;
  font-size: .875em;
}

.c-data-table thead th > span {
  display: block;
  margin-top: .25em;
  font-size: .875em;
}

.c-data-table tbody th {
  background: #f6f6f6;
  color: #fff;
}

.c-data-table tbody th[rowspan] {
  width: 2.5em;
  padding: 1.8rem .5rem;
  background: #666;
}

.c-data-table tbody th[rowspan] span {
  display: inline-block;
  min-height: 1em;
  text-align: left;
  white-space: nowrap;
  line-height: 1.25;
  -ms-writing-mode: tb-rl;
      writing-mode: vertical-rl;

  -webkit-text-orientation: upright;
          text-orientation: upright;
}

.c-data-table tbody td {
  width: 16.66667%;
}

/* ============================================================= *

Text

* ============================================================= */
/* text
=============================== */
.c-text {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
}

.c-text._center {
  text-align: center;
}

.c-text._right {
  text-align: right;
}

.c-text a {
  text-decoration: underline;
}

.c-text a:hover {
  text-decoration: none;
}

.c-text-lead {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 1.4375em;
  font-weight: 500;
  text-align: center;
}
@media screen and (max-width: 560px) {
  .c-text-lead {
    text-align: left;
    font-size: 1.1em;
  }
}

/* text-nav
=============================== */
.c-text-nav {
  position: relative;
  display: inline-block;
  margin-right: 1.8rem;
  padding-bottom: .375em;
  border-bottom: 1px solid;
  color: #e50012;
}

.c-text-nav:hover {
  border-bottom-color: rgba(229, 0, 18, 0);
}

.c-text-nav:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: .6em;
  left: calc(100% + 1rem);
  display: block;
  width: .7rem;
  height: .7rem;
  margin: auto 0;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}

.c-text-nav._back {
  margin-right: 0;
  margin-left: 1.8rem;
}

.c-text-nav._back:after {
  right: calc(100% + 1rem);
  left: auto;
  transform: rotate(-135deg);
}

/* ============================================================= *

Title

* ============================================================= */
/* page-title
=============================== */
.c-page-title {
  position: relative;
  display: flex;
  align-items: center;
  width: 1120px;
  max-width: 90%;
  margin: 0 auto;
  padding: 7.2rem 0 7rem;
}

.c-page-title:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 100vw;
  height: 100%;
  background: #f6f6f6;
  transform: translateX(-50%);
}

.c-page-title._news:before {
  background: url(../img/bg-news-pc.jpg) no-repeat center/cover;
}

[data-id="aboutus"] .c-page-title:before {
  background: url(../img/bg-aboutus-pc.jpg) no-repeat center/cover;
}

[data-id="privacy"] .c-page-title:before {
  background: url(../img/bg-privacy-pc.jpg) no-repeat center/cover;
}

[data-id="company"] .c-page-title:before {
  background: url(../img/bg-company-pc.jpg) no-repeat center/cover;
}

[data-id="store"] .c-page-title:before {
  background: url(../img/bg-store-pc.jpg) no-repeat center/cover;
}

@media screen and (max-width: 1180px) {
  .c-page-title:before {
    width: 1180px;
  }
}

@media screen and (max-width: 767px) {
  .c-page-title:before {
    width: 111.11111%;
  }
}

@media screen and (max-width: 560px) {
  .c-page-title._news:before {
    background: url(../img/bg-news-sp.jpg) no-repeat center/cover;
  }

  [data-id="aboutus"] .c-page-title:before {
    background: url(../img/bg-aboutus-sp.jpg) no-repeat center/cover;
  }

  [data-id="privacy"] .c-page-title:before {
    background: url(../img/bg-privacy-sp.jpg) no-repeat center/cover;
  }

  [data-id="company"] .c-page-title:before {
    background: url(../img/bg-company-sp.jpg) no-repeat center/cover;
  }

  [data-id="store"] .c-page-title:before {
    background: url(../img/bg-store-sp.jpg) no-repeat center/cover;
  }
}

.c-page-title ._ja {
  z-index: 1;
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-right: .55em;
  margin-bottom: -.375em;
  font-weight: bold;
  font-size: 4rem;
}
[data-id="privacy"] .c-page-title ._ja {
  font-size: 3rem;
}

.c-page-title ._en {
  z-index: 1;
  color: #fff;
  font-weight: bold;
  font-size: 1.6rem;
  font-family: "Roboto", sans-serif;
  line-height: 1.5;
}

/* section-title
=============================== */
.c-section-title ._ja {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-weight: bold;
  font-size: 3.4rem;
}

@media screen and (max-width: 767px) {
  .c-section-title ._ja {
    font-size: 2.8rem;
  }
}

.c-section-title ._en {
  margin-top: 1em;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  line-height: .8;
}

.c-section-title._center {
  text-align: center;
}

/* sub-title
=============================== */
.c-sub-title:not(:last-child) {
  margin-bottom: 3rem;
}

.c-sub-title ._ja {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-weight: bold;
  font-size: 2em;
  color: #b41e1e;
  text-align: center;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 500;
}

.c-sub-title ._en {
  margin-top: 1em;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  line-height: .8;
  opacity: .4;
}

.c-sub-title._center {
  text-align: center;
}

/* ============================================================= *

Blog

* ============================================================= */
.c-blog-container__table {
  width: 100%;
}

.c-blog-container__td > article + article {
  margin-top: 8.5rem;
}

.c-blog-container img {
  display: inline;
}

.c-blog-container .blog {
  word-break: break-all;
}

.c-blog-container .blog__header {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  width: calc(100% - 4rem);
  margin-bottom: 2.5em;
  padding: .625em 7.6em .625em 1em;
  background: #535353;
  color: #fff;
  font-size: 2rem;
}

@media screen and (max-width: 767px) {
  .c-blog-container .blog__header {
    width: 100%;
    padding: .625em 1em 1.25em;
  }
}

.c-blog-container .blog__date {
  position: absolute;
  top: 0;
  right: -4rem;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 10.75em;
  height: 2em;
  margin: auto 0;
  margin-left: auto;
  background: #e50012;
  color: #fff;
  font-size: .8em;
}

@media screen and (max-width: 767px) {
  .c-blog-container .blog__date {
    top: auto;
    right: 0;
    left: 0;
    margin: 0 auto;
    transform: translateY(50%);
  }
}

.c-blog-container .blog__body {
  width: calc(100% - 8rem);
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .c-blog-container .blog__body {
    width: 92.85714%;
  }
}

.c-blog-container .blog__body img {
  height: auto;
  max-width: 1120px;
}

@media screen and (max-width: 767px) {
  .c-blog-container .blog__body img {
    max-width: 100%;
  }
}

.c-blog-container .blog__paging {
  margin-top: 8rem;
  text-align: right;
}

/* =============================================================

Calander

* ============================================================= */
/* container */
.c-calendar-box-container {
  display: flex;
  justify-content: space-between;
}

.c-calendar-box-container > * {
  width: 47.5%;
  max-width: 32.375em;
}

@media screen and (max-width: 560px) {
  .c-calendar-box-container {
    position: relative;
    width: 100%;
  }
  .c-calendar-box-container > .c-calendar-box {
    width: 100%;
    max-width: 100%;
  }
  .c-calendar-box-container > .c-calendar-box:last-child {
    display: none;
  }
  .c-calendar-box-container._next > .c-calendar-box {
    display: none;
  }
  .c-calendar-box-container._next > .c-calendar-box:last-child {
    display: block;
  }
}

/* box */
.c-calendar-box__head {
  position: relative;
  margin-bottom: 1.875em;
  padding-bottom: 1.875em;
}

.c-calendar-box__head:after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  width: 2.5em;
  height: 1px;
  margin: 0 auto;
  background: #e50012;
}

.c-calendar-box__head .cal_month {
  text-align: center;
}

.c-calendar-box__head .cal_month em {
  display: block;
  padding-left: .1em;
  letter-spacing: .1em;
  font-weight: 300;
  font-size: 2.25em;
  line-height: 1;
}

.c-calendar-box__head .cal_month span {
  display: block;
  margin-top: 1em;
  font-size: .75em;
  font-family: "Roboto", sans-serif;
  line-height: .8;
}

.c-calendar-box__foot {
  margin-top: 1.5em;
  padding: 0 1em;
}

.c-calendar-box__foot > p > span:before {
  content: "\25a0";
}

.c-calendar-box__foot > p > span.cal_close01 {
  color: #3f3f3f;
}

.c-calendar-box__foot > p > span.cal_close02 {
  color: #e50012;
}

.c-calendar-box .cal {
  width: 100%;
  border-spacing: 4px;
  border-collapse: separate;
  table-layout: fixed;
}

.c-calendar-box .cal th {
  padding-bottom: 1em;
  text-align: center;
}

.c-calendar-box .cal th > div {
  font-weight: 300;
  font-family: "Roboto", sans-serif;
  line-height: .8;
}

.c-calendar-box .cal td {
  text-align: center;
  font-size: 1.25em;
}

.c-calendar-box .cal td > div {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.5em;
  height: 2em;
  max-width: 100%;
  margin: 0 auto;
  font-weight: 300;
}

.c-calendar-box .cal td .cal_close01 {
  background-color: #3f3f3f;
  color: #fff;
}

.c-calendar-box .cal td .cal_close02 {
  background-color: #e50012;
  color: #fff;
}

.c-calendar-box .cal th .cal_sun,
.c-calendar-box .cal td .cal_sun,
.c-calendar-box .cal td .cal_holiday {
  color: #ef3e46;
}

/* arrow */
.c-calendar-arrow {
  display: none;
}

@media screen and (max-width: 560px) {
  .c-calendar-arrow {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .c-calendar-arrow__button {
    display: flex;
    align-items: center;
    width: 29.41176%;
    height: 2.5em;
    padding: 0 .5em;
    outline: none;
    border: 1px solid;
    background: transparent;
    color: #e50012;
  }
  .c-calendar-arrow__button.is-disabled {
    color: #434343;
    pointer-events: none;
  }
  .c-calendar-arrow__button._prev:before {
    content: "";
    display: block;
    width: 2em;
    height: .5em;
    margin-right: 1em;
    border-bottom: 1px solid;
    border-left: 1px solid;
    transform: skewX(-45deg);
    transform-origin: bottom left;
  }
  .c-calendar-arrow__button._next {
    justify-content: flex-end;
  }
  .c-calendar-arrow__button._next:after {
    content: "";
    display: block;
    width: 2em;
    height: .5em;
    margin-left: 2em;
    border-right: 1px solid;
    border-bottom: 1px solid;
    transform: skewX(45deg);
    transform-origin: bottom right;
  }
}

/* ============================================================= *

Image

* ============================================================= */
/* full-image
=============================== */
.c-full-image {
  position: relative;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
}

@media screen and (max-width: 1180px) {
  .c-full-image {
    width: 1180px;
  }
}

@media screen and (max-width: 767px) {
  .c-full-image {
    width: 111.11111%;
  }
}

.c-full-image:not(:last-child) {
  margin-bottom: 6rem;
}

.c-full-image img {
  width: 100%;
}

/* full-bg-image
=============================== */
.c-full-bg-image {
  position: relative;
  left: 50%;
  width: 100vw;
  height: 240px;
  background-image: url(../img/common-hero.jpg);
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  transform: translateX(-50%);
}

@media screen and (max-width: 1180px) {
  .c-full-bg-image {
    width: 1180px;
  }
}

@media screen and (max-width: 767px) {
  .c-full-bg-image {
    width: 111.11111%;
  }
}

/* half-image-block
=============================== */
.c-half-image-block {
  position: relative;
  left: 50%;
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: 1920px;
  margin: 0 auto;
  transform: translateX(-50%);
}

@media screen and (max-width: 1180px) {
  .c-half-image-block {
    width: 1180px;
  }
}

@media screen and (max-width: 767px) {
  .c-half-image-block {
    width: 111.11111%;
  }
}

@media screen and (max-width: 767px) {
  .c-half-image-block {
    flex-direction: column;
  }
}

.c-half-image-block__image {
  flex-shrink: 0;
  width: 50%;
}

@media screen and (max-width: 767px) {
  .c-half-image-block__image {
    width: 100%;
  }
}

.c-half-image-block__image img {
  width: 100%;
}

.c-half-image-block__text {
  flex-grow: 1;
  width: 50%;
  max-width: 560px;
  padding-left: 50px;
}

@media screen and (max-width: 767px) {
  .c-half-image-block__text {
    width: 100%;
    max-width: 100%;
    padding: 6.66667% 5% 0;
  }
}

/* image-block
=============================== */
.c-image-block__item {
  display: flex;
  align-items: flex-start;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .c-image-block__item {
    flex-direction: column;
  }
}

.c-image-block__item + .c-image-block__item {
  margin-top: 2em;
}

@media screen and (max-width: 767px) {
  .c-image-block__item + .c-image-block__item {
    margin-top: 3em;
  }
}

.c-image-block__head {
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 2em;
  font-weight: 500;
  line-height: 1.4;
  margin-top: -.375em;
  margin-bottom: -.375em;
  padding-bottom: 1.5em;
}
@media screen and (max-width: 560px) {
  .c-image-block__head {
    font-size: 1.45em;
    text-align: center;
  }
}

.c-image-block__image {
  flex-shrink: 0;
}

.c-image-block__image a {
  display: block;
  transition: all .3s ease-out;
}

.c-image-block__image a:hover {
  opacity: .7;
}

.c-image-block__image img {
  width: 100%;
}

.c-image-block__image._1x2 {
  width: 50%;
}

.c-image-block__image._1x3 {
  width: 33.33333%;
}

.c-image-block__image._2x3 {
  width: 66.66667%;
}

@media screen and (max-width: 767px) {
  .c-image-block__image._1x2, .c-image-block__image._1x3, .c-image-block__image._2x3 {
    width: auto;
  }
}

.c-image-block__text {
  margin-left: 4em;
}

.c-image-block__text .c-text {
  text-align: justify;
  font-size: 1.0625em;
}

@media screen and (max-width: 767px) {
  .c-image-block__text {
    margin-left: 0;
  }
}


/* ============================================================= *

Map

* ============================================================= */
/* c-gmap
=============================== */
.c-gmap {
  width: 100%;
  height: 40rem;
  margin-top: 6rem;
  background: rgba(0, 0, 0, .02);
}

.c-gmap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* =============================================================

News

* ============================================================= */
/* news-pickup-section
=============================== */
.c-news-pickup-section {
  position: relative;
  padding: 6.4rem 0;
}
@media screen and (max-width: 560px) {
  .c-news-pickup-section {
    padding: 0;
  }
}

.c-news-pickup-section:before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  display: block;
  width: 100vw;
  height: 100%;
  background: #f6f6f6;
  transform: translateX(-50%);
}

@media screen and (max-width: 1180px) {
  .c-news-pickup-section:before {
    width: 1180px;
  }
}

@media screen and (max-width: 767px) {
  .c-news-pickup-section:before {
    width: 111.11111%;
  }
}

.c-news-pickup-section__inner {
  display: flex;
  width: 1120px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 6rem;
}

@media screen and (max-width: 767px) {
  .c-news-pickup-section__inner {
    flex-direction: column;
    padding: 0;
  }
}

.c-news-pickup-section__head {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  margin-right: 6.4rem;
}

@media screen and (max-width: 767px) {
  .c-news-pickup-section__head {
    flex-direction: row;
    align-items: center;
    margin-right: 0;
    margin-bottom: 4rem;
  }
}

.c-news-pickup-section__body {
  flex-grow: 1;
}

.c-news-pickup-section__title ._ja {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-weight: bold;
  font-size: 2.8rem;
}

.c-news-pickup-section__title ._en {
  margin-top: .78571em;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  line-height: .8;
}

.c-news-pickup-section__nav {
  margin-top: 1.5em;
}

@media screen and (max-width: 767px) {
  .c-news-pickup-section__nav {
    margin-top: 0;
  }
}

.c-news-pickup-section__nav a {
  position: relative;
  display: block;
  min-width: 6em;
  border-bottom: 1px solid #fff;
}

.c-news-pickup-section__nav a:hover {
  border-bottom-color: rgba(229, 0, 18, 0);
}

.c-news-pickup-section__nav a:after {
  content: "";
  position: absolute;
  top: .6em;
  right: .09061em;
  display: block;
  width: .4375em;
  height: .4375em;
  border-top: 2px solid;
  border-right: 2px solid;
  transform: rotate(45deg);
}

.c-news-pickup-section__item + .c-news-pickup-section__item {
  margin-top: 3.6rem;
}

/* news-pickup-item
=============================== */
.c-news-pickup-item {
  display: flex;
  transition: all .2s ease-out;
}

.c-news-pickup-item:hover {
  opacity: .6;
}

.c-news-pickup-item__head {
  flex-shrink: 0;
  margin-right: 2.85714em;
  padding-top: .1rem;
  font-size: 1.4rem;
  font-family: "Roboto", sans-serif;
  line-height: .8;
}

.c-news-pickup-item__body {
  /* -0.375em for line-height offset */
  margin-top: -.375em;
  margin-bottom: -.375em;
  font-size: 1.5rem;
}

/* ============================================================= *

Slider

* ============================================================= */
/* slider
=============================== */
.c-slider {
  position: relative;
  left: 50%;
  overflow: hidden;
  width: 1366px;
  min-width: 1180px;
  max-width: 100vw;
  margin: 4rem auto;
  transform: translateX(-50%);
}

@media screen and (max-width: 767px) {
  .c-slider {
    min-width: 0;
  }
}

.c-slider__inner {
  width: 592px;
  max-width: 70%;
  margin: 0 auto;
}

.c-slider._large .c-slider__inner {
  width: 1112px;
}

.c-slider__item {
  padding: 0 16px;
}

.c-slider__item a {
  display: block;
  transition: all .3s ease-out;
}

.c-slider__item a:hover {
  opacity: .7;
}

/* ============================================================= *

tag

* ============================================================= */
/* tag
=============================== */
.c-tag {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-width: 4.46154em;
  padding: .6em .4em;
  border: 1px solid #000;
  background: transparent;
  color: #000;
  text-align: center;
  font-size: .7em;
  line-height: 1.25;
  margin-top: -.375em;
  margin-bottom: -.375em;
}


/* tag-container
=============================== */
.c-tag-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding-block: 1.2em;
}

.c-tag-container._center {
  justify-content: center;
}

.c-tag-container._right {
  justify-content: flex-end;
}


/* ============================================================= *

Utility

* ============================================================= */
/* Media Query Setting
====================================== */
.u-mobile-block {
  display: none !important;
}

@media screen and (max-width: 560px) {
  .u-mobile-block {
    display: block !important;
  }
  .u-mobile-none {
    display: none !important;
  }
}
