@charset "UTF-8";
/* ==========================================================================
   Remodal's default mobile first theme
   ========================================================================== */
/* Default theme styles for the background */
.remodal-bg.remodal-is-opening,
.remodal-bg.remodal-is-opened {
  -webkit-filter: blur(3px);
  filter: blur(3px);
}

/* Default theme styles of the overlay */
.remodal-overlay {
  background: rgba(255, 255, 255, 0.9);
}

.remodal-overlay.remodal-is-opening,
.remodal-overlay.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal-overlay.remodal-is-opening {
  -webkit-animation-name: remodal-overlay-opening-keyframes;
  animation-name: remodal-overlay-opening-keyframes;
}

.remodal-overlay.remodal-is-closing {
  -webkit-animation-name: remodal-overlay-closing-keyframes;
  animation-name: remodal-overlay-closing-keyframes;
}

/* Default theme styles of the wrapper */
.remodal-wrapper {
  padding: 10px 10px 0;
}

/* Default theme styles of the modal dialog */
.remodal {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  margin-bottom: 10px;
  padding: 35px;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  color: #2b2e38;
  background: #fff;
}

.remodal.remodal-is-opening,
.remodal.remodal-is-closing {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
}

.remodal.remodal-is-opening {
  -webkit-animation-name: remodal-opening-keyframes;
  animation-name: remodal-opening-keyframes;
}

.remodal.remodal-is-closing {
  -webkit-animation-name: remodal-closing-keyframes;
  animation-name: remodal-closing-keyframes;
}

/* Vertical align of the modal dialog */
.remodal,
.remodal-wrapper:after {
  vertical-align: middle;
}

/* Close button */
.remodal-close {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  overflow: visible;
  width: 35px;
  height: 35px;
  margin: 0;
  padding: 0;
  cursor: pointer;
  -webkit-transition: color 0.2s;
  -o-transition: color 0.2s;
  transition: color 0.2s;
  text-decoration: none;
  color: #95979c;
  border: 0;
  outline: 0;
  background: transparent;
}

.remodal-close:hover,
.remodal-close:focus {
  color: #2b2e38;
}

.remodal-close:before {
  font-family: Arial, "Helvetica CY", "Nimbus Sans L", sans-serif !important;
  font-size: 25px;
  line-height: 35px;
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 35px;
  content: "\00d7";
  text-align: center;
}

/* Dialog buttons */
.remodal-confirm,
.remodal-cancel {
  font: inherit;
  display: inline-block;
  overflow: visible;
  min-width: 110px;
  margin: 0;
  padding: 12px 0;
  cursor: pointer;
  -webkit-transition: background 0.2s;
  -o-transition: background 0.2s;
  transition: background 0.2s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  border: 0;
  outline: 0;
}

.remodal-confirm {
  color: #fff;
  background: #81c784;
}

.remodal-confirm:hover,
.remodal-confirm:focus {
  background: #66bb6a;
}

.remodal-cancel {
  color: #fff;
  background: #e57373;
}

.remodal-cancel:hover,
.remodal-cancel:focus {
  background: #ef5350;
}

/* Remove inner padding and border in Firefox 4+ for the button tag. */
.remodal-confirm::-moz-focus-inner,
.remodal-cancel::-moz-focus-inner,
.remodal-close::-moz-focus-inner {
  padding: 0;
  border: 0;
}

/* Keyframes
   ========================================================================== */
@-webkit-keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}
@keyframes remodal-opening-keyframes {
  from {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    opacity: 0;
  }
  to {
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes remodal-closing-keyframes {
  from {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
  to {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
    opacity: 0;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@-webkit-keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes remodal-overlay-opening-keyframes {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@-webkit-keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

@keyframes remodal-overlay-closing-keyframes {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* Media queries
   ========================================================================== */
@media only screen and (min-width: 641px) {
  .remodal {
    max-width: 700px;
  }
}

/* IE8
   ========================================================================== */
.lt-ie9 .remodal-overlay {
  background: #2b2e38;
}

.lt-ie9 .remodal {
  width: 700px;
}

/* ==========================================================================
   Remodal's necessary styles
   ========================================================================== */
/* Hide scroll bar */
html.remodal-is-locked {
  overflow: hidden;
  -ms-touch-action: none;
  touch-action: none;
}

/* Anti FOUC */
.remodal,
[data-remodal-id] {
  display: none;
}

/* Necessary styles of the overlay */
.remodal-overlay {
  position: fixed;
  z-index: 9999;
  top: -5000px;
  right: -5000px;
  bottom: -5000px;
  left: -5000px;
  display: none;
}

/* Necessary styles of the wrapper */
.remodal-wrapper {
  position: fixed;
  z-index: 10000;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  overflow: auto;
  text-align: center;
  -webkit-overflow-scrolling: touch;
}

.remodal-wrapper:after {
  display: inline-block;
  height: 100%;
  margin-left: -0.05em;
  content: "";
}

/* Fix iPad, iPhone glitches */
.remodal-overlay,
.remodal-wrapper {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

/* Necessary styles of the modal dialog */
.remodal {
  position: relative;
  outline: none;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

.remodal-is-initialized {
  /* Disable Anti-FOUC */
  display: inline-block;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("../gif/ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("../eot/slick.eot");
  src: url("../eot/slickd41d.eot?#iefix") format("embedded-opentype"), url("../woff/slick.woff") format("woff"), url("../ttf/slick.ttf") format("truetype"), url("../svg/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}

/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 20px;
  width: 20px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  background: transparent;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  outline: none;
}

.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
}

.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}

.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}

.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -25px;
}

[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}

.slick-prev:before {
  content: "←";
}

[dir="rtl"] .slick-prev:before {
  content: "→";
}

.slick-next {
  right: -25px;
}

[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}

.slick-next:before {
  content: "→";
}

[dir="rtl"] .slick-next:before {
  content: "←";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -25px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}

.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

.slick-dots li button {
  border: 0;
  background: transparent;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
}

.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}

.slick-dots li button:hover:before, .slick-dots li button:focus:before {
  opacity: 1;
}

.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "•";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  opacity: 0.25;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-dots li.slick-active button:before {
  color: black;
  opacity: 0.75;
}

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}

.slick-list:focus {
  outline: none;
}

.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}

.slick-track:after {
  clear: both;
}

.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}

[dir="rtl"] .slick-slide {
  float: right;
}

.slick-slide img {
  display: block;
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.slick-slide.slick-loading img {
  display: none;
}

.slick-slide.dragging img {
  pointer-events: none;
}

.slick-initialized .slick-slide {
  display: block;
}

.slick-loading .slick-slide {
  visibility: hidden;
}

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/*
  
  foundation
  
*/
/*

	viewport settings

**************************************************/
/*

	font setting

**************************************************/
/*

	clearfix settings

**************************************************/
/*

	boxsizing settings

**************************************************/
/*

	opacity settings

**************************************************/
/*

	border-radius settings

**************************************************/
/*

	drop shadow settings

**************************************************/
/*

	vertical align setting

**************************************************/
/*

	flexbox layout setting

**************************************************/
/*

	hover transition

**************************************************/
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after {
  content: '';
  content: none;
}

q:before, q:after {
  content: '';
  content: none;
}

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

select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
}

html {
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

html.smaller {
  font-size: 55%;
}

html.larger {
  font-size: 70%;
}

body {
  min-width: 1080px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

@media (max-width: 1023px) {
  body {
    min-width: 100%;
  }
}

.only--pc {
  display: block !important;
}

@media (max-width: 1023px) {
  .only--pc {
    display: none !important;
  }
}

.only--sp {
  display: none !important;
}

@media (max-width: 1023px) {
  .only--sp {
    display: block !important;
  }
}

/*
  
  layout
  
*/
.columns {
  width: 1100px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.columns__main {
  width: 760px;
}

.columns__sub {
  width: 280px;
  margin-left: auto;
}

.columns__title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.44444;
  font-weight: bold;
  color: #333333;
  background: #e6e6e6;
  padding: 13px 27px;
  border-left: 5px solid #a02f2f;
}

.container {
  padding: 70px 0;
}

@media (max-width: 1023px) {
  .container {
    padding: 0 0;
  }
}

.container--full {
  width: 100%;
  position: relative;
}

.container__inner, .container__inner--lg, .container__inner--md, .article__inner, .container__inner--sm {
  margin: 0 auto;
}

.container__inner--fuild {
  width: 100%;
}

.container__inner--lg {
  width: 1100px;
}

.container__inner--md, .article__inner {
  width: 900px;
}

.container__inner--sm {
  width: 760px;
}

.container__row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: stretch;
  -ms-flex-align: stretch;
  align-items: stretch;
}

.container__main {
  width: 760px;
}

.container__sub {
  width: 280px;
  margin-left: auto;
}

.container__sub-item {
  margin-bottom: 30px;
}

@media (max-width: 1023px) {
  .container__inner, .container__inner--lg, .container__inner--md, .article__inner, .container__inner--sm {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 20px;
    margin: 0;
  }
  .container__inner--lg {
    width: 100%;
  }
  .container__inner--md, .article__inner {
    width: 100%;
  }
  .container__inner--sm {
    width: 100%;
  }
  .container__row {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .container__main {
    width: 100%;
  }
  .container__sub {
    margin-top: 80px;
    width: 100%;
    margin-left: 0;
  }
  .container__sub-item {
    margin-bottom: 30px;
  }
}

.footer {
  background: #4d4d4d;
  border-bottom: 12px solid #cc0000;
}

.footer__inner {
  width: 1080px;
  margin: 0 auto;
  padding: 45px 15px;
}

.footer__logo {
  width: 340px;
  height: 60px;
  background-color: #fff;
  padding: 10px;
  margin-top: -10px;
}

.footer__logo a {
  display: block;
}

.footer__logo a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.footer__content {
  width: calc(100% - 440px);
  margin-left: auto;
}

.footer__nav {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.footer__nav li {
  margin: 0 45px 25px 0;
}

.footer__nav li:nth-child(4n) {
  margin-right: 0;
}

.footer__nav li a {
  color: #fff;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  display: block;
  padding-left: 24px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.footer__nav li a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.footer__nav li a:before {
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -8px;
  width: 16px;
  height: 16px;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  content: "";
}

.footer__menu li a {
  color: #f2f2f2;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
}

.footer__menu li + li {
  margin-left: 24px;
}

.footer__copy {
  padding: 13px 0;
  text-align: center;
  background: #333333;
}

.footer__copy p small {
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  color: #808080;
}

@media (max-width: 1023px) {
  .footer__inner {
    width: 100%;
    margin: 0;
    padding: 25px 40px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .footer__inner > .grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .footer__logo {
    display: none;
  }
  .footer__content {
    width: 100%;
    margin-left: 0;
  }
  .footer__nav {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    margin-bottom: 20px;
  }
  .footer__nav li {
    width: 48.5%;
    margin: 0;
  }
  .footer__nav li:nth-child(even) {
    margin-left: auto;
  }
  .footer__nav li a {
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    padding-left: 20px;
  }
  .footer__nav li a:before {
    margin-top: -7px;
    width: 14px;
    height: 14px;
    background-size: 14px 14px;
  }
  .footer__nav li + li + li {
    margin-top: 24px;
  }
  .footer__menu {
    display: inline;
  }
  .footer__menu li {
    margin-right: 22px;
  }
  .footer__menu li a {
    color: #f2f2f2;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
  }
  .footer__menu li + li {
    margin-left: 0;
  }
}

.grid {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: -0.5%;
  margin-right: -0.5%;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.grid > .grid__col-1 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 7.33333%;
  flex: 0 0 7.33333%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 15.66667%;
  flex: 0 0 15.66667%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-3 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 24%;
  flex: 0 0 24%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-4 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 32.33333%;
  flex: 0 0 32.33333%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-5 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 40.66667%;
  flex: 0 0 40.66667%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-6 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 49%;
  flex: 0 0 49%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-7 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 57.33333%;
  flex: 0 0 57.33333%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-8 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 65.66667%;
  flex: 0 0 65.66667%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-9 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 74%;
  flex: 0 0 74%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-10 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 82.33333%;
  flex: 0 0 82.33333%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-11 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 90.66667%;
  flex: 0 0 90.66667%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid > .grid__col-12 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 99%;
  flex: 0 0 99%;
  margin-left: 0.5%;
  margin-right: 0.5%;
  margin-bottom: 1%;
}

.grid.is--gapless {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 0;
  margin-right: 0;
}

.grid.is--gapless > .grid__col-1 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 8.33333%;
  flex: 0 0 8.33333%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-2 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 16.66667%;
  flex: 0 0 16.66667%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-3 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-4 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 33.33333%;
  flex: 0 0 33.33333%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-5 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 41.66667%;
  flex: 0 0 41.66667%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-6 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-7 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 58.33333%;
  flex: 0 0 58.33333%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-8 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66.66667%;
  flex: 0 0 66.66667%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-9 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 75%;
  flex: 0 0 75%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-10 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 83.33333%;
  flex: 0 0 83.33333%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-11 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 91.66667%;
  flex: 0 0 91.66667%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

.grid.is--gapless > .grid__col-12 {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 0;
}

@media (max-width: 1023px) {
  .grid {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .grid > .grid__col-1 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 99%;
    flex: 0 0 99%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-2 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 99%;
    flex: 0 0 99%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-3 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-5 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 40.66667%;
    flex: 0 0 40.66667%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-6 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 49%;
    flex: 0 0 49%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-7 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 57.33333%;
    flex: 0 0 57.33333%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-8 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 65.66667%;
    flex: 0 0 65.66667%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-9 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 74%;
    flex: 0 0 74%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-10 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 82.33333%;
    flex: 0 0 82.33333%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-11 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 90.66667%;
    flex: 0 0 90.66667%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid > .grid__col-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 99%;
    flex: 0 0 99%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid .grid-sm__col-12 {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 99%;
    flex: 0 0 99%;
    margin-left: 0.5%;
    margin-right: 0.5%;
    margin-bottom: 1%;
  }
  .grid.is--gapless > .grid__col-1 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-2 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-3 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-4 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-5 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-6 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-7 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-8 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-9 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-10 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-11 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
  .grid.is--gapless > .grid__col-12 {
    margin-left: 0;
    margin-right: 0;
    margin-bottom: 0;
  }
}

.header {
  border-top: 10px solid #cc0000;
  -webkit-box-shadow: 0 2.8px 2.8px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 2.8px 2.8px 0 rgba(0, 0, 0, 0.2);
  position: relative;
  position: fixed;
  width: 100vw;
  background-color: #fff;
  z-index: 100;
}

.header--top {
  position: relative;
}

.header--top:after {
  background: #4d4d4d;
  width: 50vw;
  display: block;
  position: absolute;
  height: 50px;
  left: 50%;
  top: 0;
  z-index: 1;
  content: "";
}

.header__inner {
  width: 1090px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.header__logo {
  width: 45%;
}

.header__logo img {
  width: 350px;
  height: auto;
  vertical-align: bottom;
  padding: 5px 0 10px;
}

.header__utility {
  position: relative;
  z-index: 10;
  width: 55%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.header__sns {
  height: 50px;
  padding: 0 18px;
  background: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__sns li a {
  display: block;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  height: 24px;
}

.header__sns li a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.header__sns li + li {
  margin-left: 10px;
}

.header__menu {
  padding-left: 13px;
  height: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header__menu li a {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.header__menu li a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.header__menu li a:not(.header__button) {
  display: block;
  font-size: 11px;
  line-height: 23px;
  color: #fff;
  text-decoration: none;
  position: relative;
}

.header__menu li a.ico--shopping {
  position: relative;
}

.header__menu li a.ico--shopping:before {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: -2px 4px 0 0;
  vertical-align: middle;
  background: url(../svg/ico_shopping.svg) no-repeat left center;
  background-size: 24px 24px;
  content: "";
}

.header__menu li a.ico--schedule:before {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: -2px 4px 0 0;
  vertical-align: middle;
  background: url(../svg/ico_calendar.svg) no-repeat left center;
  background-size: 24px 24px;
  content: "";
}

.header__menu li a.ico--contact:before {
  display: inline-block;
  position: relative;
  width: 24px;
  height: 24px;
  margin: -2px 4px 0 0;
  vertical-align: middle;
  background: url(../svg/ico_contact.svg) no-repeat left center;
  background-size: 24px 24px;
  content: "";
}

.header__menu li a.ico--search {
  position: relative;
}

.header__menu li a.ico--search:after {
  display: inline-block;
  position: relative;
  width: 17px;
  height: 17px;
  margin-left: 3px;
  vertical-align: middle;
  background: url(../svg/ico_search.svg) no-repeat 0 0;
  background-size: 17px 17px;
  content: "";
}

.header__menu li + li {
  margin-left: 10px;
}

.header__button {
  padding: 0 8px;
  height: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  background: #fff;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  color: #666666;
}

.header__nav-list {
  width: 1090px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.header__nav-item {
  position: relative;
}

.header__nav-item.has--child {
  position: static;
}

.header__nav-item.has--child > span {
  padding-right: 12px;
  display: block;
  position: relative;
}

.header__nav-item.has--child > span:after {
  display: block;
  position: absolute;
  right: 0;
  top: 13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 6px 4.5px 0 4.5px;
  border-color: #a02f2f transparent transparent transparent;
  content: "";
}

.header__nav-item > a, .header__nav-item > span {
  overflow: hidden;
  color: #333333;
  font-weight: bold;
  text-decoration: none;
  position: relative;
  display: block;
  padding-bottom: 18px;
  cursor: pointer;
}

.header__nav-item > a:before, .header__nav-item > span:before {
  display: block;
  position: absolute;
  bottom: -4px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  height: 4px;
  background: #a02f2f;
  content: "";
}

.header__nav-item > a:hover:before, .header__nav-item > span:hover:before {
  bottom: 0;
}

.header__nav-item > a.is--current:before, .header__nav-item > span.is--current:before {
  display: block;
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  height: 4px;
  background: #a02f2f;
  content: "";
}

.header__nav--sp {
  display: none;
}

@media (max-width: 1023px) {
  .header {
    border-top: 5px solid #cc0000;
    -webkit-box-shadow: 0 2.8px 2.8px 0 rgba(0, 0, 0, 0.2);
    box-shadow: 0 2.8px 2.8px 0 rgba(0, 0, 0, 0.2);
  }
  .header--top:after {
    display: none;
  }
  .header__inner {
    width: 100%;
    padding: 20px 20px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .header__logo {
    width: 230px;
  }
  .header__logo img {
    width: 100%;
    padding: 0;
  }
  .header__utility {
    margin-left: auto;
  }
  .header__sns {
    display: none;
  }
  .header__menu {
    display: none;
  }
  .header__nav {
    display: none;
  }
  .header__nav--sp {
    margin-left: auto;
    display: block;
  }
  .header__nav--sp a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 40px;
    height: 40px;
    background: #b11d33;
  }
  .header__nav--sp a span {
    position: absolute;
    display: block;
    width: 15px;
    height: 2px;
    background: #fff;
  }
  .header__nav--sp a span:nth-of-type(1) {
    top: 12px;
  }
  .header__nav--sp a span:nth-of-type(3) {
    bottom: 12px;
  }
}

.supponcered__head {
  margin-bottom: 60px;
  text-align: center;
}

.supponcered__title {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.73333;
  font-weight: bold;
}

.supponcered__title span {
  display: block;
  position: relative;
  text-align: center;
  color: #b11d33;
  margin-top: 18px;
  padding-top: 4px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.supponcered__title span:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 138px;
  margin-left: -69px;
  height: 1px;
  background: #b11d33;
  content: "";
}

.supponcered__inner {
  width: 1032px;
  margin: 0 auto;
}

.supponcered--ml-auto {
  margin-left: auto;
}

.supponcered__label {
  margin-bottom: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  font-weight: bold;
  -ms-flex-preferred-size: 100%;
  flex-basis: 100%;
}

.supponcered__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 45px;
}

.supponcered__flex + .supponcered__flex {
  margin-top: 45px;
}

.supponcered--justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.supponcered--justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.supponcered--bottom {
  border-top: 1px solid #e6e6e6;
  padding-top: 75px;
  margin-bottom: 90px;
}

.supponcered--bottom .supponcered__item, .supponcered--bottom .supponcered__item--lg {
  width: auto;
}

.supponcered--bottom .supponcered__item a, .supponcered--bottom .supponcered__item--lg a {
  display: block;
}

.supponcered--bottom .supponcered__item a img, .supponcered--bottom .supponcered__item--lg a img {
  width: auto;
  height: 80px;
}

.supponcered__item, .supponcered__item--lg {
  width: calc(129px - 2px);
}

.supponcered__item a, .supponcered__item--lg a {
  display: block;
}

.supponcered__item a img, .supponcered__item--lg a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.supponcered__item--lg {
  width: calc(230px - 1px);
  border: solid 1px #f2f2f2;
  border-right: none;
}

.supponcered__item--lg:last-child {
  border-right: solid 1px #f2f2f2;
}

.supponcered__item--md {
  border: solid 1px #f2f2f2;
  border-right: none;
}

.supponcered__item--md:nth-child(8n) {
  border-right: solid 1px #f2f2f2;
}

.supponcered__item--md:last-child {
  border-right: solid 1px #f2f2f2;
}

.supponcered__row {
  margin-right: 30px;
}

.supponcered__row:last-child {
  margin-right: 0;
}

@media (max-width: 1023px) {
  .supponcered {
    padding: 40px 20px;
  }
  .supponcered__head {
    margin-bottom: 24px;
  }
  .supponcered__title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.72727;
  }
  .supponcered__title span {
    margin-top: 5px;
    font-size: 10px;
    font-size: 1rem;
    line-height: 2;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
  }
  .supponcered__title span:before {
    width: 88px;
    margin-left: -44px;
  }
  .supponcered__inner {
    width: 100%;
    margin: 0;
  }
  .supponcered--ml-auto {
    margin-left: 0;
  }
  .supponcered__label {
    text-align: center;
    margin-bottom: 5px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
    font-weight: normal;
  }
  .supponcered__flex {
    margin-bottom: 0;
  }
  .supponcered__flex.sm-justify-center {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
  .supponcered__flex + .supponcered__flex, .supponcered__row + .supponcered__row {
    margin-top: 15px;
  }
  .supponcered__item, .supponcered__item--lg {
    width: auto;
  }
  .supponcered__item a, .supponcered__item--lg a {
    display: block;
  }
  .supponcered__item a img, .supponcered__item--lg a img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .supponcered__item--lg {
    width: calc(50% - 3px);
  }
  .supponcered__item--md {
    width: calc((100% - 4px) / 3);
  }
  .supponcered__item--md:nth-child(3n) {
    border-right: solid 1px #f2f2f2;
  }
  .supponcered__item--md:nth-child(8n) {
    border-right: none;
  }
  .supponcered__item--md:last-child {
    border-right: solid 1px #f2f2f2;
  }
  .supponcered--bottom {
    padding-top: 30px;
    margin-bottom: 40px;
  }
  .supponcered--bottom .supponcered__item a img, .supponcered--bottom .supponcered__item--lg a img {
    width: auto;
    height: 65px;
  }
  .supponcered--bottom .supponcered__item + .supponcered__item, .supponcered--bottom .supponcered__item--lg + .supponcered__item, .supponcered--bottom .supponcered__item + .supponcered__item--lg, .supponcered--bottom .supponcered__item--lg + .supponcered__item--lg {
    margin-left: 15px;
  }
  .supponcered__row {
    margin-right: 0;
  }
}

/*
  
  object/component
  
*/
.banner__item {
  margin-bottom: 16px;
}

.banner__item a {
  display: block;
}

.banner__item a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.banner-media {
  background-color: #fbb03b;
  border: 6px solid #333333;
  -webkit-border-radius: 15px;
  -moz-border-radius: 15px;
  border-radius: 15px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  overflow: hidden;
  z-index: 2;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: block;
  width: 100%;
  text-decoration: none;
  position: relative;
  margin: 50px 0;
}

.banner-media br {
  display: none;
}

.banner-media__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.banner-media__img {
  width: 58px;
  height: 63px;
  margin-right: 10px;
}

.banner-media__text {
  text-align: center;
  color: #333333;
  font-weight: bold;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1;
}

.banner-media:before {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  z-index: -1;
  content: "";
}

.banner-media:hover:before {
  background: #fbe23b;
  top: 0;
}

@media (max-width: 1023px) {
  .banner-media {
    margin: 30px 0;
  }
  .banner-media br {
    display: block;
  }
  .banner-media__img {
    width: 40px;
    height: 43px;
  }
  .banner-media__text {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
  }
}

.banner-media-local {
  margin: 0;
  padding: 20px 10px;
}

.banner-media-local__text {
  color: #333333;
  font-weight: bold;
  text-align: left;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
}

.banner-media-local__title {
  padding-top: 10px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}

.breadcrumb {
  background: #f2f2f2;
  padding: 148px 10px 16px;
}

.breadcrumb ul {
  width: 1080px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.breadcrumb ul li {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  color: #4d4d4d;
}

.breadcrumb ul li a {
  margin-right: 6px;
  color: #4d4d4d;
}

.breadcrumb li + li {
  position: relative;
}

.breadcrumb li + li:before {
  display: inline-block;
  margin: 0 6px;
  content: ">";
}

@media (max-width: 1023px) {
  .breadcrumb {
    padding: 102px 20px 16px;
  }
  .breadcrumb ul {
    width: auto;
    -webkit-overflow-scrolling: touch;
    overflow-x: auto;
    margin: 0;
  }
  .breadcrumb ul li {
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
    white-space: nowrap;
  }
}

.button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.button--primary {
  overflow: hidden;
  color: #fff;
  position: relative;
  background: #a02f2f;
  z-index: 2;
}

.button--primary:before {
  display: block;
  width: 100%;
  height: 100%;
  background: #a02f2f;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  z-index: -1;
  content: "";
}

.button--primary:hover:before {
  background: #ed1c23;
  top: 0;
}

.button--center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.button--lg {
  height: 80px;
  padding: 0 52px;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: bold;
}

.button--lg__arrow--left:after {
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 80px 80px;
  content: "";
}

.button--lg__arrow--right:after {
  width: 80px;
  height: 80px;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 80px 80px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  content: "";
}

.button--md {
  height: 70px;
  padding: 0 16px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
}

.button--md__arrow--left:after {
  width: 40px;
  height: 40px;
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 40px 40px;
  content: "";
}

.button--outline--primary {
  border: 1px solid #a02f2f;
  color: #a02f2f;
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.button--outline--primary svg {
  margin-left: 6px;
  vertical-align: middle;
}

.button--outline--primary:before {
  display: block;
  width: 100%;
  height: 100%;
  background: #a02f2f;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  z-index: -1;
  content: "";
}

.button--outline--primary:hover {
  color: #fff;
}

.button--outline--primary:hover svg path {
  fill: #fff;
}

.button--outline--primary:hover:before {
  top: 0;
}

@media (max-width: 1023px) {
  .button--primary {
    overflow: hidden;
    color: #fff;
    position: relative;
    background: #a02f2f;
    z-index: 2;
  }
  .button--primary:before {
    display: none;
  }
  .button--lg {
    min-height: 50px;
    padding: 0 15px 0 15px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
  }
  .button--lg__arrow--left {
    padding-right: 60px;
  }
  .button--lg__arrow--left:after {
    bottom: 0;
    top: auto;
    width: 50px;
    height: 100%;
    background-color: #ed1c23;
    background-size: 50px 50px;
    background-position: center center;
  }
  .button--lg__arrow--right {
    padding-left: 60px;
  }
  .button--lg__arrow--right:after {
    bottom: 0;
    top: auto;
    width: 50px;
    height: 100%;
    background-color: #ed1c23;
    background-size: 50px 50px;
    background-position: center center;
  }
  .button--md {
    height: 60px;
    padding: 0 40px 0 16px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
  }
  .button--md__arrow--left:after {
    width: 30px;
    height: 30px;
    background-size: 30px 30px;
  }
  .button--outline--primary:before {
    display: none;
  }
  .button--outline--primary:hover {
    color: #a02f2f;
  }
  .button--outline--primary:hover svg path {
    fill: #a02f2f;
  }
}

.card--a__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc( 33.33333% - 40px);
  flex: 0 0 calc( 33.33333% - 40px);
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
  position: relative;
}

.card--a__item:before {
  display: block;
  position: absolute;
  width: calc( 100% - 10px);
  height: calc( 100% - 10px);
  background: #fff;
  border-left: 10px solid #e6e6e6;
  border-bottom: 10px solid #e6e6e6;
  top: 10px;
  left: -10px;
  z-index: 1;
  content: "";
}

.card--a__item a {
  padding: 0 0 75px 20px;
  display: block;
  background: #fff;
  text-align: left;
  text-decoration: none;
  color: #333333;
  position: relative;
  z-index: 2;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.card--a__item a:hover .card--a__head img {
  opacity: 1;
  filter: alpha(opacity=100);
}

.card--a__item a:after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55px;
  height: 55px;
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 55px 55px;
  content: "";
}

.card--a__head {
  margin-bottom: 16px;
  background: #333333;
}

.card--a__head img {
  width: 100%;
  height: 220px;
  -o-object-fit: cover;
  object-fit: cover;
  opacity: 0.4;
  filter: alpha(opacity=40);
  vertical-align: bottom;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.card--a__name {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.55556;
  font-weight: bold;
  color: #a02f2f;
  margin: 0 20px 12px 0;
}

.card--a__excerpt {
  margin-right: 20px;
}

.card--a__excerpt p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

.card--b {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card--b__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 25%;
  flex: 0 0 25%;
}

.card--b__item a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  text-align: left;
}

.card--b__item a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.card--b__item a:after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 40px;
  height: 40px;
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 40px 40px;
  content: "";
}

.card--b__img img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.card--b__content {
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  padding: 16px;
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.card--b__name {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.44444;
  color: #fff;
}

.card--b__name--en {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.14286;
  color: #b3b3b3;
}

.card--c {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.card--c__item {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 50%;
  flex: 0 0 50%;
}

.card--c__item a {
  display: block;
  position: relative;
  color: #fff;
  text-decoration: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  text-align: left;
}

.card--c__item a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.card--c__item a:after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 70px;
  height: 70px;
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 70px 70px;
  content: "";
}

.card--c__img img {
  width: 100%;
  height: 400px;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

.card--c__content {
  background: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.card--c__content-inner {
  position: absolute;
  bottom: 15px;
  left: 15px;
}

.card--c__name {
  font-size: 40px;
  font-size: 4rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
  margin-bottom: 6px;
}

.card--c__name--en {
  margin-bottom: 14px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 21px;
  font-size: 2.1rem;
  line-height: 1;
  color: #b3b3b3;
}

.card--c__excerpt {
  width: calc(100% - 90px);
  font-size: 1.14286vw;
}

.card--d__item {
  position: relative;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 calc( 50% - 40px);
  flex: 0 0 calc( 50% - 40px);
  margin-left: 20px;
  margin-right: 20px;
  margin-bottom: 40px;
}

.card--d__item:before {
  display: block;
  position: absolute;
  width: calc( 100% - 10px);
  height: calc( 100% - 10px);
  background: #fff;
  border-left: 10px solid #e6e6e6;
  border-bottom: 10px solid #e6e6e6;
  top: 10px;
  left: -10px;
  z-index: 1;
  content: "";
}

.card--d__item a {
  padding: 0;
  display: block;
  background: #fff;
  text-align: left;
  text-decoration: none;
  color: #333333;
  position: relative;
  height: 100%;
  z-index: 2;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.card--d__item a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.card--d__item a.link--blank:after {
  content: none;
}

.card--d__img {
  position: relative;
}

.card--d__img:before {
  display: block;
  width: 100%;
  height: 250px;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  content: "";
}

.card--d__img img {
  width: 100%;
  height: 250px;
  -o-object-fit: cover;
  object-fit: cover;
  vertical-align: bottom;
}

.card--d__name {
  padding: 16px 24px;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.73333;
  font-weight: bold;
  color: #fff;
  background: #a02f2f;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

.card--d__name:after {
  display: block;
  position: absolute;
  right: 0;
  bottom: 0;
  background: #ed1c23 url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  width: 55px;
  height: 100%;
  background-size: 55px 55px;
  content: "";
}

.card--d__excerpt {
  padding: 13px 24px;
}

.card--d__excerpt p {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
}

@media (max-width: 1023px) {
  .card--a__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc( 50% - 20px);
    flex: 0 0 calc( 50% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    position: relative;
  }
  .card--a__item:before {
    display: block;
    position: absolute;
    width: calc( 100% - 5px);
    height: calc( 100% - 5px);
    background: #e6e6e6;
    top: 5px;
    border-width: 5px;
    left: -5px;
    z-index: 1;
    content: "";
  }
  .card--a__item a {
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 0 0 10px 10px;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
  }
  .card--a__item a:after {
    display: none;
  }
  .card--a__head {
    margin-bottom: 16px;
    position: relative;
  }
  .card--a__head:after {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 30px;
    height: 30px;
    background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
    background-size: 30px 30px;
    content: "";
  }
  .card--a__head img {
    width: 100%;
    height: 184px;
    -o-object-fit: cover;
    object-fit: cover;
    vertical-align: bottom;
  }
  .card--a__name {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
    margin-bottom: 6px;
  }
  .card--a__excerpt p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.41667;
  }
  .card--b__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .card--b__item a:after {
    width: 26px;
    height: 26px;
    background-size: 26px 26px;
  }
  .card--b__content {
    padding: 7px 10px;
    width: 100%;
  }
  .card--b__name {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.85714;
    color: #fff;
  }
  .card--b__name--en {
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.33333;
    color: #b3b3b3;
  }
  .card--c {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .card--c__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
  }
  .card--c__item a:after {
    right: 0;
    bottom: 2px;
    width: 35px;
    height: 35px;
    background-size: 35px 35px;
  }
  .card--c__img img {
    height: 120px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  .card--c__content {
    border-bottom: 2px solid #fff;
  }
  .card--c__content:nth-child(even) {
    border-left: 2px solid #fff;
  }
  .card--c__content-inner {
    width: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
    transform: translateY(-50%) translateX(-50%);
  }
  .card--c__name {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
    text-align: center;
    margin-bottom: 6px;
    padding: 0 10px;
  }
  .card--c__name--en {
    margin-bottom: 7px;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    text-align: center;
  }
  .card--c__excerpt {
    display: none;
  }
  .card--d__item {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc( 100% - 20px);
    flex: 0 0 calc( 100% - 20px);
    margin-left: 10px;
    margin-right: 10px;
    margin-bottom: 20px;
    position: relative;
  }
  .card--d__item:before {
    width: calc( 100% - 5px);
    height: calc( 100% - 5px);
    border-left: 5px solid #e6e6e6;
    border-bottom: 5px solid #e6e6e6;
    top: 5px;
    left: -5px;
  }
  .card--d__img:before {
    height: 100%;
  }
  .card--d__img img {
    height: auto;
  }
  .card--d__name {
    padding: 8px 12px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
  .card--d__name:after {
    width: 27px;
    height: 27px;
    background-size: 27px 27px;
    content: "";
  }
  .card--d__excerpt {
    padding: 13px 12px;
  }
  .card--d__excerpt p {
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.66667;
  }
}

.category--01 {
  background: #a02f2f;
  border: 1px solid #a02f2f;
  color: #fff;
  text-decoration: none;
  display: inline-block;
  padding: 4px 8px;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.category--01:hover {
  background: #fff;
  color: #a02f2f;
}

.cf {
  zoom: 1;
}

.cf:after {
  content: "";
  display: block;
  clear: both;
}

.cf--right {
  float: right;
  margin: 0 0 30px 30px;
}

.cf--left {
  float: left;
  margin: 0 30px 30px 0;
}

@media (max-width: 1023px) {
  .cf--right {
    float: none;
    margin: 0 0 15px 0;
    text-align: center;
  }
  .cf--right img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .cf--left {
    float: none;
    margin: 0 15px 15px 0px;
    text-align: center;
  }
  .cf--left img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}

.js-slide-wrap {
  position: relative;
  margin-bottom: 40px;
}

.js-slide-content {
  width: 100%;
}

.js-slide-prevArrow {
  position: absolute;
  left: -40px;
  top: 50%;
  width: 15px;
  height: 27px;
  margin-top: -14px;
  z-index: 90;
  cursor: pointer;
}

.js-slide-nextArrow {
  position: absolute;
  right: -40px;
  top: 50%;
  width: 15px;
  height: 27px;
  margin-top: -14px;
  z-index: 90;
  cursor: pointer;
}

.js-slide-dots-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.js-slide-dots-list li {
  background: #e6e6e6;
  width: 45px;
  height: 3px;
  cursor: pointer;
}

.js-slide-dots-list li.slick-active {
  background: #b11d33;
}

.js-slide-dots-list li button {
  display: none;
}

.js-slide-dots-list li + li {
  margin-left: 8px;
}

@media (max-width: 1023px) {
  .js-slide-wrap {
    position: relative;
    margin-bottom: 35px;
  }
  .js-slide-prevArrow {
    left: 25px;
    width: 9px;
    height: 16px;
    margin-top: -4px;
  }
  .js-slide-nextArrow {
    right: 25px;
    width: 9px;
    height: 16px;
    margin-top: -4px;
  }
  .js-slide-dots-list li {
    width: 30px;
    height: 2px;
  }
  .js-slide-dots-list li + li {
    margin-left: 5px;
  }
}

.list-menu__title {
  text-align: right;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #808080;
  padding: 0;
  margin-bottom: 6px;
}

.list-menu__list {
  border-top: 1px solid #a02f2f;
}

.list-menu__item {
  border-bottom: 1px solid #a02f2f;
}

.list-menu__item a {
  padding: 17px 28px 17px 8px;
  display: block;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  position: relative;
}

.list-menu__item a:after {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  right: 8px;
  top: 50%;
  margin-top: -8px;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  content: "";
}

.list-menu__item a.is--current {
  color: #a02f2f;
  font-weight: bold;
}

.list-menu__item a.is--current:after {
  display: none;
}

.list-menu__item a:hover {
  color: #a02f2f;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .list-menu {
    width: calc(100% + 40px);
    margin-left: -20px;
    position: relative;
  }
  .list-menu__title {
    text-align: center;
  }
  .list-menu__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
    border-top: 1px solid #a02f2f;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .list-menu__item {
    width: 50%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .list-menu__item:nth-child(even) {
    border-left: 1px solid #a02f2f;
  }
  .list-menu__item:nth-child(2n+1):last-child {
    border-right: 1px solid #a02f2f;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
  }
  .list-menu__item a {
    padding: 17px 28px 17px 10px;
    height: 100%;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.15385;
    color: #333333;
    text-decoration: none;
    -webkit-transition: all 0.15s linear;
    -moz-transition: all 0.15s linear;
    -webkit-transition: all 0.15s linear;
    -o-transition: all 0.15s linear;
    -ms-transition: all 0.15s linear;
    transition: all 0.15s linear;
    position: relative;
  }
}

.btn {
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  background: none;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  cursor: pointer;
}

.btn:focus {
  outline: none;
}

.list-01 {
  margin-bottom: 30px;
}

.list-01__item {
  background-color: #f2f2f2;
  margin-bottom: 10px;
  border-bottom: 2px solid #e6e6e6;
}

.list-01__item a {
  color: #a02f2f;
  display: block;
  text-decoration: none;
  position: relative;
  padding: 15px 10px 15px 65px;
}

.list-01__item a:hover {
  text-decoration: underline;
}

.list-01__item a:before {
  content: "";
  display: inline-block;
  width: 25px;
  height: 25px;
  background-image: url(../svg/ico_button_arrow.svg);
  background-size: contain;
  margin-right: 10px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 30px;
}

@media (max-width: 1023px) {
  .list-01__item a {
    padding: 15px 15px 15px 50px;
    line-height: 1.2;
  }
  .list-01__item a:before {
    left: 15px;
  }
}

.list-02 {
  padding-left: 15px;
}

.list-02__item a {
  color: #a02f2f;
  position: relative;
}

.list-02__item--pdf:after {
  /*
				position: absolute;
				display: inline-block;
				background: url(../images/ico/ico_pdf.svg) no-repeat 0 0;
				width: 16px;
				height: 18px;
				bottom: 2px;
				margin-left: 4px;
				content: "";
*/
}

.list-02__item--excel:after {
  /*
				position: absolute;
				display: inline-block;
				background: url(../images/ico/ico_excel.svg) no-repeat 0 0;
				width: 16px;
				height: 18px;
				bottom: 2px;
				margin-left: 4px;
				content: "";
*/
}

@media (max-width: 1023px) {
  .list-02 {
    padding-left: 0;
  }
}

.list-03__title {
  font-weight: bold;
}

.list-03__text {
  padding-left: 30px;
}

@media (max-width: 1023px) {
  .list-03 {
    padding-left: 0;
  }
}

.list-04 {
  list-style-type: decimal;
  padding-left: 30px;
}

@media (max-width: 1023px) {
  .list-04 {
    padding-left: 15px;
  }
}

.new-icon:before {
  content: "NEW";
  padding: 2px 10px;
  text-align: center;
  background-color: #a02f2f;
  color: #fff;
  font-size: 1.2rem;
  margin-right: 10px;
}

.megabox {
  position: absolute;
  width: 100%;
  margin: 0 -500%;
  padding: 0 500%;
  top: 48px;
  left: 0;
  display: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#cccccc), color-stop(2%, rgba(255, 255, 255, 0.98)), color-stop(16%, rgba(255, 255, 255, 0.98)), to(rgba(255, 255, 255, 0.98)));
  background: -webkit-linear-gradient(top, #cccccc 0%, rgba(255, 255, 255, 0.98) 2%, rgba(255, 255, 255, 0.98) 16%, rgba(255, 255, 255, 0.98) 100%);
  background: -o-linear-gradient(top, #cccccc 0%, rgba(255, 255, 255, 0.98) 2%, rgba(255, 255, 255, 0.98) 16%, rgba(255, 255, 255, 0.98) 100%);
  background: linear-gradient(to bottom, #cccccc 0%, rgba(255, 255, 255, 0.98) 2%, rgba(255, 255, 255, 0.98) 16%, rgba(255, 255, 255, 0.98) 100%);
  /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  z-index: 10;
  border-bottom: 1px solid #cccccc;
}

.megabox__inner {
  padding: 30px 0;
  width: 980px;
  margin: 0 auto;
}

.megabox__image {
  width: 277px;
}

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

.megabox__list {
  width: 620px;
  margin-left: auto;
}

.megabox__label {
  margin-top: 12px;
}

.megabox__label a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  color: #333333;
  text-decoration: none;
  position: relative;
  display: block;
  top: 2px;
  padding-left: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.megabox__label a:hover {
  color: #a02f2f;
}

.megabox__label a:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0px;
  width: 16px;
  height: 16px;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  content: "";
}

.megabox--en {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  color: #999999;
  margin-top: 10px;
}

.megabox__menu {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.megabox__menu > div {
  height: 32px;
  -webkit-box-flex: 0 !important;
  -ms-flex: 0 0 31.33333% !important;
  flex: 0 0 31.33333% !important;
  margin-right: 1% !important;
}

.megabox__menu > div a {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.14286;
  color: #333333;
  text-decoration: none;
  position: relative;
  display: block;
  top: 2px;
  padding-left: 20px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.megabox__menu > div a:hover {
  color: #a02f2f;
}

.megabox__menu > div a:before {
  display: block;
  position: absolute;
  left: 0;
  top: 0px;
  width: 16px;
  height: 16px;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  content: "";
}

.megabox__row + .megabox__row {
  margin-top: 24px;
}

.megabox__name {
  border-bottom: 1px solid #cccccc;
  padding-bottom: 6px;
  margin-bottom: 12px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  font-weight: bold;
}

.menu {
  display: none;
}

@media (max-width: 1023px) {
  .menu {
    width: 100vw;
    height: 100vh;
    height: -webkit-fill-available;
    background: white;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  .menu__head {
    padding: 25px 20px 20px;
    background: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu__label {
    font-size: 14px;
    color: #666666;
    margin-right: 12px;
  }
  .menu__close {
    margin-left: auto;
    width: 40px;
    height: 40px;
  }
  .menu__close a {
    display: block;
  }
  .menu__close a img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .menu__btns {
    width: calc( 100% - 160px);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .menu__btns li {
    width: 30%;
  }
  .menu__btns li a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 30px;
    color: #a02f2f;
    font-size: 14px;
    text-decoration: none;
    border: 1px solid #b3b3b3;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    border-radius: 2px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .menu__btns li a.is--active {
    background: #a02f2f;
    border-color: #a02f2f;
    color: #fff;
  }
  .menu__body {
    padding: 18px;
  }
  .menu__searchbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu__search {
    margin-bottom: 14px;
  }
  .menu__input {
    width: calc(100% - 50px);
    background: none;
    outline: none;
    height: 40px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    display: block;
    border: 1px solid #b3b3b3;
    color: #808080;
    padding: 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .menu__input:focus {
    outline: none;
  }
  .menu__submit {
    width: 40px;
    height: 40px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin-left: auto;
    background: none;
    display: inline-block;
  }
  .menu__submit img {
    width: 100%;
    height: auto;
  }
  .menu__flex + .menu__flex {
    margin-top: 18px;
  }
  .menu__list-name {
    color: #808080;
    border-bottom: 1px solid #cccccc;
    margin: 0 20px 10px 0;
  }
  .menu__list > li a {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 2.5;
    font-weight: bold;
    color: #333333;
    text-decoration: none;
    display: block;
  }
  .menu__list > li + li {
    margin-top: 18px;
  }
  .menu--child {
    padding-left: 18px;
    margin-top: 18px;
  }
  .menu--child__list {
    margin-left: 15px;
  }
  .menu--child__list li a {
    font-weight: normal;
  }
  .menu--child__list li + li {
    margin-top: 9px;
  }
  .menu--child__list-name {
    width: 40%;
  }
  .menu__category {
    margin-bottom: 16px;
  }
  .menu__foot {
    padding: 18px 0 0;
  }
  .menu__items {
    border-top: 1px solid #cccccc;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding: 20px 18px;
  }
  .menu__items li a {
    color: #a02f2f;
    position: relative;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.69231;
    text-decoration: none;
    padding-left: 32px;
  }
  .menu__items li a:before {
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -12px;
    width: 25px;
    height: 25px;
    content: "";
  }
  .menu--shopping:before {
    background: url(../svg/ico-shopping-brink.svg) no-repeat 0 0;
    background-size: 25px 25px;
    content: "";
  }
  .menu--schedule:before {
    background: url(../svg/ico-cal-brink.svg) no-repeat 0 0;
    background-size: 25px 25px;
    content: "";
  }
  .menu--contact:before {
    background: url(../svg/ico-contact-brink.svg) no-repeat 0 0;
    background-size: 25px 25px;
    content: "";
  }
  .menu__sns {
    background: #4d4d4d;
    padding: 15px 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .menu__sns li {
    width: 30px;
  }
  .menu__sns li a {
    display: block;
  }
  .menu__sns li a img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .menu__sns li + li {
    margin-left: 30px;
  }
}

.accordion__trigger {
  position: relative;
  display: block;
}

.accordion__trigger:after {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 6.5px 0 6.5px;
  border-color: #a02f2f transparent transparent transparent;
  margin-top: -2px;
  content: "";
}

.accordion__trigger.is--active:after {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0 6.5px 5px 6.5px;
  border-color: transparent transparent #a02f2f transparent;
  margin-top: -2px;
  content: "";
}

.accordion__pannel {
  display: none;
}

@media all and (max-width: 767px) {
  html.is-fixed,
  html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }
}

.navigation--parent {
  padding: 20px 0;
  background: #333333;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  position: relative;
}

.navigation--parent:after {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -13px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 13px 0 13px;
  border-color: #333333 transparent transparent transparent;
  content: "";
}

.navigation--parent__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 58px;
  background: #fff;
  color: #b3b3b3;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  text-decoration: none;
  min-width: 200px;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.navigation--parent__item.is--current {
  background: #a02f2f;
  color: #fff;
}

.navigation--parent__item:hover {
  background: #a02f2f;
  color: #fff;
  cursor: pointer;
}

.navigation--parent__item + .navigation--parent__item {
  margin-left: 32px;
}

.navigation--child {
  background: #f2f2f2;
  height: 90px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.navigation--child__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0;
}

.navigation--child__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #333333;
  text-decoration: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.navigation--child__item a.is--current {
  color: #a02f2f;
  font-weight: bold;
}

.navigation--child__item a:hover {
  color: #a02f2f;
  font-weight: bold;
}

.navigation--child__item + .navigation--child__item {
  margin-left: 70px;
}

@media (max-width: 1023px) {
  .navigation--parent {
    padding: 10px 0;
  }
  .navigation--parent:after {
    margin-left: -7px;
    border-width: 7px 7px 0 7px;
    border-color: #333333 transparent transparent transparent;
  }
  .navigation--parent__item {
    height: 32px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    min-width: auto;
    padding: 0 32px;
  }
  .navigation--parent__item + .navigation--parent__item {
    margin-left: 16px;
  }
  .navigation--child {
    height: 60px;
    overflow-x: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navigation--child__item a {
    padding: 0 45px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    white-space: nowrap;
  }
  .navigation--child__item + .navigation--child__item {
    margin-left: 0;
  }
  .navigation__select {
    height: 50px;
    overflow: hidden;
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .navigation__select:after {
    display: block;
    position: absolute;
    top: 50%;
    right: 10px;
    width: 7px;
    height: 7px;
    margin-top: -7px;
    border-top: solid 2px #a02f2f;
    border-right: solid 2px #a02f2f;
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
    content: "";
  }
  .navigation__select select {
    background: none;
    display: block;
    padding-left: 30px;
    outline: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    height: 50px;
    width: 100%;
    border: none;
    color: #000;
  }
}

@media (max-width: 1023px) {
  .navigation__athlete-category .navigation--child {
    padding: 10px 0;
    width: 100%;
    height: auto;
    overflow: hidden;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .navigation__athlete-category .navigation--child__item a {
    padding: 16px 10px;
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1;
    white-space: nowrap;
  }
}

.page__head {
  margin-bottom: 25px;
}

.page-column__head {
  margin-bottom: 50px;
}

.page-column__visual {
  margin-top: 30px;
}

.page-column__visual img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.page-contents {
  /* アイコン */
}

.page-contents p {
  word-wrap: break-word;
}

.page-contents a {
  color: #c00;
}

.page-contents-wrap {
  margin-bottom: 50px;
}

.page-contents__title--01 {
  color: #a02f2f;
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.71429;
  font-weight: bold;
  padding-bottom: 25px;
  border-bottom: 1px dotted #808080;
  margin-bottom: 25px;
}

.page-contents__title--02 {
  color: #a02f2f;
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.71429;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

.page-contents__title--03 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 2;
  font-weight: bold;
  margin-bottom: 25px;
}

.page-contents__title--04 {
  font-weight: bold;
  background: #e6e6e6;
  padding: 13px 32px;
  border-left: 5px solid #a02f2f;
  margin-bottom: 25px;
}

.page-contents__title--05 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 2;
  font-weight: bold;
  text-align: center;
  margin-bottom: 25px;
}

.page-contents__title--06 {
  color: #a02f2f;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-contents__title--07 {
  color: #a02f2f;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
  font-weight: bold;
  border-bottom: 1px solid #a02f2f;
  margin-bottom: 20px;
}

.page-contents__title--08 {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.77778;
  font-weight: bold;
  margin-bottom: 20px;
}

.page-contents__visual {
  margin-bottom: 20px;
}

.page-contents__visual img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.page-contents__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 20px;
}

.page-contents__text--center {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 20px;
  text-align: center;
}

.page-contents__text--center p {
  margin-bottom: 1em;
}

.page-contents__text--right {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  margin-bottom: 20px;
  text-align: right;
}

.page-contents__text--right p {
  margin-bottom: 1em;
}

.page-contents__text p {
  margin-bottom: 1em;
}

.page-contents__text-img--left {
  margin-bottom: 25px;
  *zoom: 1;
}

.page-contents__text-img--left:before {
  content: " ";
  display: table;
}

.page-contents__text-img--left:after {
  content: " ";
  display: table;
  clear: both;
}

.page-contents__text-img--left .text-img__figure {
  float: left;
  margin: 0 30px 30px 0;
}

.page-contents__text-img--left .text-img__figcaption {
  color: #808080;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  text-align: right;
}

.page-contents__text-img--left p {
  margin-bottom: 1em;
}

.page-contents__text-img--right {
  margin-bottom: 25px;
  *zoom: 1;
}

.page-contents__text-img--right:before {
  content: " ";
  display: table;
}

.page-contents__text-img--right:after {
  content: " ";
  display: table;
  clear: both;
}

.page-contents__text-img--right .text-img__figure {
  float: right;
  margin: 0 0 30px 30px;
}

.page-contents__text-img--right .text-img__figcaption {
  color: #808080;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
  text-align: right;
}

.page-contents__text-img--right p {
  margin-bottom: 1em;
}

.page-contents__list--01 {
  margin-bottom: 20px;
}

.page-contents__list--01 ul {
  list-style: outside disc;
  margin-left: 1.5em;
}

.page-contents__list--01 ul li {
  margin-bottom: 1em;
}

.page-contents__list--02 {
  margin-bottom: 20px;
}

.page-contents__list--02 ol {
  list-style: outside decimal;
  margin-left: 1.5em;
}

.page-contents__list--02 ol li {
  margin-bottom: 1em;
}

.page-contents__list--03 {
  margin-bottom: 20px;
}

.page-contents__list--03 ul li {
  background-color: #F2F2F2;
  padding: 15px;
  padding-left: 50px;
  margin-bottom: 1em;
  position: relative;
}

.page-contents__list--03 ul li:before {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 15px;
  top: calc(50% - 12px);
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 24px 24px;
  content: "";
}

.page-contents__list--03 ul li a {
  text-decoration: none;
}

.page-contents__list--03 ul li a:hover {
  text-decoration: underline;
}

.page-contents__list--04 {
  margin-bottom: 20px;
}

.page-contents__list--04 ul li {
  padding-left: 35px;
  margin-bottom: 1em;
  position: relative;
}

.page-contents__list--04 ul li:before {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 24px 24px;
  content: "";
}

.page-contents__list--04 ul li a:hover {
  text-decoration: none;
}

.page-contents__list--04 p {
  padding-left: 35px;
  margin-bottom: 1em;
  position: relative;
}

.page-contents__list--04 p:before {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  top: calc(50% - 12px);
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 24px 24px;
  content: "";
}

.page-contents__list--04 p a:hover {
  text-decoration: none;
}

.page-contents__list--05 {
  margin-bottom: 20px;
}

.page-contents__list--05 dl dt {
  font-weight: bold;
}

.page-contents__list--05 dl dd {
  margin-left: 1em;
}

.page-contents__list--06 {
  margin-bottom: 20px;
}

.page-contents__list--06 dl dt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  color: #999;
}

.page-contents__list--06 dl dd {
  margin-left: 1em;
}

.page-contents__list--07 {
  margin-bottom: 20px;
}

.page-contents__list--07 table {
  width: 100%;
}

.page-contents__list--07 table tr {
  border-bottom: solid 1px #F2F2F2;
}

.page-contents__list--07 table th {
  padding: 10px;
}

.page-contents__list--07 table td {
  padding: 10px;
}

.page-contents__list--08 {
  margin-bottom: 20px;
}

.page-contents__list--08 dl dt {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  color: #999;
  float: left;
  padding-top: 5px;
}

.page-contents__list--08 dl dd {
  margin-left: 1em;
  margin-left: 140px;
}

@media (max-width: 1023px) {
  .page-contents__list--08 dl dt dd {
    clear: left;
    margin-left: 0;
  }
}

.page-contents__list--09 {
  margin-bottom: 20px;
}

.page-contents__list--09 dl dt {
  float: left;
}

.page-contents__list--09 dl dd {
  margin-left: 40px;
}

@media (max-width: 1023px) {
  .page-contents__list--09 dl dt dd {
    clear: left;
    margin-left: 0;
  }
}

.page-contents__table--01 {
  margin-bottom: 20px;
}

.page-contents__table--01 table {
  border-top: solid 1px #131313;
  border-left: solid 1px #131313;
}

.page-contents__table--01 table th {
  background: #ddd;
}

.page-contents__table--01 table th, .page-contents__table--01 table td {
  padding: 10px;
  border-right: solid 1px #131313;
  border-bottom: solid 1px #131313;
}

.page-contents__img--01 {
  margin-bottom: 20px;
}

.page-contents__img--01 ul li {
  margin-bottom: 20px;
}

.page-contents__img--01 ul li:last-child {
  margin-bottom: 0;
}

.page-contents__img--01 ul li figure {
  text-align: center;
  margin-bottom: 10px;
}

.page-contents__img--01 ul li figure img {
  width: auto;
  max-width: 760px;
  height: auto;
}

.page-contents__img--01 ul li figure figcaption {
  color: #808080;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
}

.page-contents__img--02 {
  margin-bottom: 20px;
}

.page-contents__img--02 ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.page-contents__img--02 ul li {
  width: calc((100% - 20px) / 2);
  margin-bottom: 20px;
}

.page-contents__img--02 ul li:first-child {
  margin-right: 20px;
}

.page-contents__img--02 ul li:last-child {
  margin-bottom: 0;
}

.page-contents__img--02 ul li figure {
  text-align: center;
  margin-bottom: 10px;
}

.page-contents__img--02 ul li figure img {
  width: auto;
  max-width: 370px;
  height: auto;
}

.page-contents__img--02 ul li figure figcaption {
  color: #808080;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
}

.page-contents__hr--01 {
  margin: 50px 0;
}

.page-contents__hr--01 hr {
  border: none;
  border-bottom: dotted 1px #808080;
}

.page-contents__hr--02 {
  margin: 50px 0;
}

.page-contents__hr--02 hr {
  border: none;
  border-bottom: solid 1px #E6E6E6;
}

.page-contents .link--blank {
  margin-right: 2px;
}

.page-contents .link--blank:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_external-link.svg) top left no-repeat;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  bottom: 1px;
  margin-left: 4px;
  content: "";
}

.page-contents .link--blank.link--hidden:after {
  content: none;
}

.page-contents .link--pdf {
  margin-right: 2px;
}

.page-contents .link--pdf:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_pdf.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.page-contents .link--xlsx {
  margin-right: 2px;
}

.page-contents .link--xlsx:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_xlsx.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.page-contents .link--doc {
  margin-right: 2px;
}

.page-contents .link--doc:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_word.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.page-contents .link--youtube {
  margin-right: 2px;
}

.page-contents .link--youtube:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_youtube_red.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 0;
  margin-left: 4px;
  content: "";
}

.page__paragraph {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.page__paragraph--red {
  color: #a02f2f;
  font-weight: bold;
}

.page__paragraph a {
  color: #a02f2f;
  text-decoration: underline;
}

.page__paragraph + .page__paragraph {
  margin-top: 20px;
}

.page__block {
  margin-bottom: 30px;
}

.page__title, .page__title--bordered {
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.71429;
  color: #a02f2f;
  font-weight: bold;
}

.page__title--bordered {
  border-bottom: 1px dotted #808080;
  padding-bottom: 25px;
}

.page__sub-title--01, .article__section.__is-taikai h2 {
  font-weight: bold;
  border-left: 5px solid #a02f2f;
  padding: 13px 32px;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.33333;
  background: #e6e6e6;
  margin-bottom: 25px;
}

.page__sub-title02, .page__sub-title02--red {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.11111;
  font-weight: bold;
}

.page__sub-title02--red {
  color: #a02f2f;
}

.page__sub-title03 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.1;
  font-weight: bold;
  text-align: center;
}

.page__figcaption {
  text-align: right;
  color: #808080;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1;
}

@media (max-width: 1023px) {
  .page-column__head {
    margin-bottom: 20px;
  }
  .page-column__visual {
    margin-top: 25px;
    width: calc( 100% + 40px);
    position: relative;
    margin-left: -20px;
  }
  .page-contents a {
    color: #c00;
  }
  .page-contents-wrap {
    margin-bottom: 30px;
  }
  .page-contents__title--01 {
    color: #a02f2f;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.38462;
    font-weight: bold;
    padding-bottom: 25px;
    border-bottom: 1px dotted #808080;
    margin-bottom: 25px;
  }
  .page-contents__title--02 {
    color: #a02f2f;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.38462;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
  }
  .page-contents__title--03 {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 25px;
  }
  .page-contents__title--04 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
    background: #e6e6e6;
    padding: 13px 22px;
    border-left: 5px solid #a02f2f;
    margin-bottom: 25px;
  }
  .page-contents__title--05 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.33333;
    font-weight: bold;
    text-align: center;
    margin-bottom: 25px;
  }
  .page-contents__title--06 {
    color: #a02f2f;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .page-contents__title--07 {
    color: #a02f2f;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
    padding-bottom: 5px;
    border-bottom: 1px solid #a02f2f;
    margin-bottom: 20px;
  }
  .page-contents__title--08 {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
    font-weight: bold;
    margin-bottom: 20px;
  }
  .page-contents__visual {
    margin-bottom: 20px;
  }
  .page-contents__visual img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
  .page-contents__text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 20px;
  }
  .page-contents__text--center {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 20px;
    text-align: center;
  }
  .page-contents__text--center p {
    margin-bottom: 1em;
  }
  .page-contents__text--right {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.875;
    margin-bottom: 20px;
    text-align: right;
  }
  .page-contents__text--right p {
    margin-bottom: 1em;
  }
  .page-contents__text p {
    margin-bottom: 1em;
  }
  .page-contents__text-img--left {
    margin-bottom: 25px;
  }
  .page-contents__text-img--left .text-img__figure {
    text-align: center;
    width: 100%;
    margin: 0 auto 20px;
  }
  .page-contents__text-img--left .text-img__figure img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .page-contents__text-img--left .text-img__figcaption {
    color: #808080;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: right;
  }
  .page-contents__text-img--left p {
    margin-bottom: 1em;
  }
  .page-contents__text-img--right {
    margin-bottom: 25px;
  }
  .page-contents__text-img--right .text-img__figure {
    text-align: center;
    width: 100%;
    margin: 0 auto 20px;
  }
  .page-contents__text-img--right .text-img__figure img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .page-contents__text-img--right .text-img__figcaption {
    color: #808080;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
    text-align: right;
  }
  .page-contents__text-img--right p {
    margin-bottom: 1em;
  }
  .page-contents__list--01 {
    margin-bottom: 20px;
  }
  .page-contents__list--01 ul {
    list-style: outside disc;
    margin-left: 1.5em;
  }
  .page-contents__list--01 ul li {
    margin-bottom: 1em;
  }
  .page-contents__list--02 {
    margin-bottom: 20px;
  }
  .page-contents__list--02 ol {
    list-style: outside decimal;
    margin-left: 1.5em;
  }
  .page-contents__list--02 ol li {
    margin-bottom: 1em;
  }
  .page-contents__list--03 {
    margin-bottom: 20px;
  }
  .page-contents__list--03 ul li {
    background-color: #F2F2F2;
    padding: 15px;
    padding-left: 50px;
    margin-bottom: 1em;
    position: relative;
  }
  .page-contents__list--03 ul li:before {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 15px;
    top: calc(50% - 12px);
    background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
    background-size: 24px 24px;
    content: "";
  }
  .page-contents__list--03 ul li a {
    text-decoration: none;
  }
  .page-contents__list--03 ul li a:hover {
    text-decoration: underline;
  }
  .page-contents__list--04 {
    margin-bottom: 20px;
  }
  .page-contents__list--04 ul li {
    padding-left: 35px;
    margin-bottom: 1em;
    position: relative;
  }
  .page-contents__list--04 ul li:before {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
    background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
    background-size: 24px 24px;
    content: "";
  }
  .page-contents__list--04 ul li a:hover {
    text-decoration: none;
  }
  .page-contents__list--04 p {
    padding-left: 35px;
    margin-bottom: 1em;
    position: relative;
  }
  .page-contents__list--04 p:before {
    width: 24px;
    height: 24px;
    display: block;
    position: absolute;
    left: 0;
    top: calc(50% - 12px);
    background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
    background-size: 24px 24px;
    content: "";
  }
  .page-contents__list--04 p a:hover {
    text-decoration: none;
  }
  .page-contents__list--05 {
    margin-bottom: 20px;
  }
  .page-contents__list--05 dl dt {
    font-weight: bold;
  }
  .page-contents__list--05 dl dd {
    margin-left: 1em;
  }
  .page-contents__list--06 {
    margin-bottom: 20px;
  }
  .page-contents__list--06 dl dt {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
    color: #999;
  }
  .page-contents__list--06 dl dd {
    margin-left: 1em;
  }
  .page-contents__list--07 {
    margin-bottom: 20px;
    overflow: auto;
    white-space: nowrap;
  }
  .page-contents__list--07 table {
    width: 100%;
  }
  .page-contents__list--07 table tr {
    border-bottom: solid 1px #F2F2F2;
  }
  .page-contents__list--07 table th {
    padding: 10px;
  }
  .page-contents__list--07 table td {
    padding: 10px;
  }
  .page-contents__img--01 {
    margin-bottom: 20px;
  }
  .page-contents__img--01 ul li {
    margin-bottom: 20px;
  }
  .page-contents__img--01 ul li:last-child {
    margin-bottom: 0;
  }
  .page-contents__img--01 ul li figure {
    text-align: center;
    margin-bottom: 10px;
  }
  .page-contents__img--01 ul li figure img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .page-contents__img--01 ul li figure figcaption {
    color: #808080;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .page-contents__img--02 {
    margin-bottom: 20px;
  }
  .page-contents__img--02 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  .page-contents__img--02 ul li figure {
    text-align: center;
    margin-bottom: 10px;
  }
  .page-contents__img--02 ul li figure img {
    width: auto;
    max-width: 100%;
    height: auto;
  }
  .page-contents__img--02 ul li figure figcaption {
    color: #808080;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1.5;
  }
  .page-contents__hr--01 {
    margin: 50px 0;
  }
  .page-contents__hr--01 hr {
    border: none;
    border-bottom: dotted 1px #808080;
  }
  .page-contents__hr--02 {
    margin: 50px 0;
  }
  .page-contents__hr--02 hr {
    border: none;
    border-bottom: solid 1px #E6E6E6;
  }
  .page__paragraph {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
  .page__paragraph + .page__paragraph {
    margin-top: 15px;
  }
  .page__block {
    margin-bottom: 20px;
  }
  .page__title, .page__title--bordered {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.53846;
  }
  .page__title--bordered {
    border-bottom: 1px dotted #808080;
    padding-bottom: 15px;
  }
  .page__sub-title--01, .article__section.__is-taikai h2 {
    padding: 13px 16px;
    margin-bottom: 12px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35714;
  }
  .page__figcaption {
    margin-top: 6px;
    text-align: center;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1;
  }
}

.txt-strong--01 {
  color: #a02f2f;
  font-weight: bold;
}

.txt-strong--02 {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEBEB));
  background: -webkit-linear-gradient(transparent 60%, #FFEBEB 60%);
  background: -o-linear-gradient(transparent 60%, #FFEBEB 60%);
  background: linear-gradient(transparent 60%, #FFEBEB 60%);
}

.relative-box {
  border: 1px solid #a02f2f;
}

.relative-box__head {
  padding: 12px 20px;
  background: #a02f2f;
  color: #fff;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1;
}

.relative-box__body {
  padding: 12px 20px;
}

.relative-box__list li a {
  color: #a02f2f;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  text-decoration: underline;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.relative-box__list li a:hover {
  text-decoration: none;
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.relative-box--pdf:after {
  /*
      position: relative;
      display: inline-block;
      background: url(../images/ico/ico_pdf.svg) no-repeat 0 0;
      width: 12px;
      height: 14px;
      background-size: 12px 14px;
      vertical-align: middle;
      top: -1px;
      margin-left: 4px;
      content: "";
*/
}

.relative-box--youtube:after {
  /*
      position: relative;
      display: inline-block;
      background: url(../images/ico/ico_youtube_red.svg) no-repeat 0 0;
      width: 16px;
      height: 18px;
      background-size: 16px 18px;
      vertical-align: middle;
      top: -1px;
      margin-left: 4px;
      content: "";
*/
}

.remodal {
  background: none;
  max-width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

.remodal-wrapper {
  padding: 0;
}

.remodal__close {
  width: 40px;
  height: 40px;
  background: #666666 url(../svg/ico_close.svg) no-repeat 0 0;
  background-size: 40px 40px;
  position: absolute;
  top: 40px;
  right: 40px;
}

.remodal__container {
  width: 100%;
  height: 100vh;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  position: relative;
}

.remodal__label {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 20px;
}

.remodal__button-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.remodal__button-item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #a02f2f;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
  width: 150px;
  height: 120px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #b3b3b3;
  background: #fff;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.remodal__button-item a:hover {
  background: #a02f2f;
  border-color: #a02f2f;
  color: #fff;
}

.remodal__button-item a.is--active {
  background: #a02f2f;
  border-color: #a02f2f;
  color: #fff;
}

.remodal__button-item + .remodal__button-item {
  margin-left: 28px;
}

.remodal__input {
  vertical-align: middle;
  border: 1px solid #b3b3b3;
  height: 70px;
  padding: 0 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 500px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  box-sizing: border-box;
}

.remodal__submit {
  margin-left: 13px;
  width: 70px;
  height: 70px;
  background: #a02f2f;
  vertical-align: middle;
}

.remodal__submit svg {
  width: 33px;
  height: 33px;
}

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

.table--fixed {
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

.table--fixed thead tr th {
  text-align: center;
  border: 1px solid #dddddd;
  padding: 13px 0;
  background: #fafafa;
  font-weight: bold;
}

.table--fixed tbody tr th {
  text-align: left;
  border: 1px solid #dddddd;
  padding: 13px;
  background: #fafafa;
  font-weight: bold;
}

.table--fixed tbody tr td {
  border: 1px solid #dddddd;
  padding: 13px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

.table__colums {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  border-bottom: 1px solid #dddddd;
}

.table__colums tbody tr th {
  border-top: 1px solid #dddddd;
  width: 30%;
  text-align: left;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.table__colums tbody tr td {
  border-top: 1px solid #dddddd;
  width: 70%;
  padding: 15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.table__scroller {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
  width: 100%;
}

.table__scroller thead tr th {
  text-align: center;
  border: 1px solid #dddddd;
  padding: 13px;
  background: #fafafa;
  font-weight: bold;
}

.table__scroller tbody tr td {
  border: 1px solid #dddddd;
  padding: 13px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

@media (max-width: 1023px) {
  .table__scroller {
    width: auto;
  }
  .table__scroller thead tr th {
    white-space: nowrap;
  }
  .table__scroller tbody tr td {
    white-space: nowrap;
  }
}

.title {
  background: rgba(0, 0, 0, 0.8);
  padding: 20px 0;
  text-align: center;
}

.title.no--images {
  position: relative;
}

.title:after {
  display: block;
  position: absolute;
  top: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -13px;
  border-style: solid;
  border-width: 15px 13px 0 13px;
  border-color: #333333 transparent transparent transparent;
  content: "";
  z-index: 1;
}

.title__label {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: bold;
  color: #fff;
}

.title__label--en {
  margin-top: 12px;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #999999;
}

.title--dm {
  background: #39b54a;
  padding: 10px 0;
  text-align: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  color: #fff;
  font-weight: bold;
  margin-bottom: 28px;
}

@media (max-width: 1023px) {
  .title {
    background: #333333;
  }
  .title:after {
    margin-left: -6px;
    border-width: 8px 6px 0 6px;
  }
  .title__label {
    font-size: 20px;
    font-size: 2rem;
    line-height: 1;
  }
  .title__label--en {
    margin-top: 10px;
    font-weight: 500;
    font-size: 12px;
    font-size: 1.2rem;
    line-height: 1;
    color: #999999;
  }
}

.visual {
  position: relative;
}

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

.visual__img figcaption {
  padding-top: 10px;
  color: #808080;
  font-size: 1.3rem;
  line-height: 1.2;
}

.visual__title {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

@media (max-width: 1023px) {
  .visual__title {
    margin-top: 2px;
    position: static;
  }
}

.accordion-01__header {
  cursor: pointer;
}

.accordion-01__title {
  font-weight: bold;
  border-left: 5px solid #a02f2f;
  padding: 13px 32px;
  padding-right: 160px !important;
  background: #e6e6e6;
  margin-bottom: 25px;
  position: relative;
}

.accordion-01__title:before {
  content: "開く";
  color: #fff;
  background-color: #a02f2f;
  width: 100px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  right: 30px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
}

.accordion-01__title:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../svg/icn_accordion_plus.svg) no-repeat 0 0;
  background-size: 15px;
  position: absolute;
  top: calc(50% - 7px);
  right: 50px;
}

.accordion-01__title.is--open:before {
  content: "閉じる";
  color: #fff;
  background-color: #a02f2f;
  width: 100px;
  height: 40px;
  position: absolute;
  top: calc(50% - 20px);
  right: 30px;
  border-radius: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding-right: 20px;
}

.accordion-01__title.is--open:after {
  content: "";
  width: 15px;
  height: 1px;
  background: url(../svg/icn_accordion_minus.svg) no-repeat 0 0;
  background-size: 15px 1px;
  position: absolute;
  top: 50%;
  right: 50px;
}

.accordion-01__body {
  margin-bottom: 30px;
  display: none;
}

.accordion-02__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.accordion-02__btn {
  color: #fff;
  font-weight: bold;
  background-color: #a02f2f;
  width: 300px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.accordion-02__btn:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../svg/icn_accordion_plus.svg) no-repeat 0 0;
  background-size: 15px;
  position: absolute;
  top: calc(50% - 7px);
  right: 30px;
}

.accordion-02__btn.is--open:after {
  content: "";
  width: 15px;
  height: 1px;
  background: url(../svg/icn_accordion_minus.svg) no-repeat 0 0;
  background-size: 15px 1px;
  position: absolute;
  top: 50%;
  right: 30px;
}

.accordion-02__body {
  margin-bottom: 30px;
  display: none;
}

.accordion-03__footer {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 20px;
}

.accordion-03__btn {
  color: #fff;
  font-weight: bold;
  background-color: #a02f2f;
  width: 300px;
  height: 40px;
  border-radius: 20px;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.accordion-03__btn:after {
  content: "";
  width: 15px;
  height: 15px;
  background: url(../svg/icn_accordion_plus.svg) no-repeat 0 0;
  background-size: 15px;
  position: absolute;
  top: calc(50% - 7px);
  right: 30px;
}

.accordion-03__btn.is--open:after {
  content: "";
  width: 15px;
  height: 1px;
  background: url(../svg/icn_accordion_minus.svg) no-repeat 0 0;
  background-size: 15px 1px;
  position: absolute;
  top: 50%;
  right: 30px;
}

.accordion-03__body {
  margin-bottom: 30px;
}

.accordion-03__body dl {
  display: none;
}

.accordion-03__body dl:nth-child(-n + 6) {
  display: block;
}

.accordion-03__body.is--open dl {
  display: block;
}

@media (max-width: 1023px) {
  .accordion-01__header {
    cursor: pointer;
  }
  .accordion-01__title {
    font-weight: bold;
    border-left: 5px solid #a02f2f;
    padding: 13px 32px;
    padding-right: 50px !important;
    background: #e6e6e6;
    margin-bottom: 25px;
    position: relative;
  }
  .accordion-01__title:before {
    content: "";
    color: #fff;
    background-color: #a02f2f;
    width: 30px;
    height: 30px;
    position: absolute;
    top: calc(50% - 15px);
    right: 10px;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
  }
  .accordion-01__title:after {
    content: "";
    width: 15px;
    height: 15px;
    background: url(../svg/icn_accordion_plus.svg) no-repeat 0 0;
    background-size: 15px;
    position: absolute;
    top: calc(50% - 7px);
    right: 17px;
  }
  .accordion-01__title.is--open:before {
    content: "";
    color: #fff;
    background-color: #a02f2f;
    width: 30px;
    height: 30px;
    position: absolute;
    top: calc(50% - 15px);
    right: 10px;
    border-radius: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding-right: 0;
  }
  .accordion-01__title.is--open:after {
    content: "";
    width: 15px;
    height: 1px;
    background: url(../svg/icn_accordion_minus.svg) no-repeat 0 0;
    background-size: 15px 1px;
    position: absolute;
    top: auto;
    right: auto;
    top: calc(50% - 1px);
    right: 17px;
  }
  .accordion-01__body {
    margin-bottom: 30px;
    display: none;
  }
}

.tab-content-area .tab-content {
  display: none;
}

.tab-content-area .tab-content.show {
  display: block;
}

.bg--light-gray {
  background: #f2f2f2;
}

.bg--light-gray {
  background: #f2f2f2;
}

#top-btn {
  position: fixed;
  bottom: 20px;
  right: 50px;
}

#top-btn a {
  display: block;
  background: #a02f2f;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
}

#top-btn a:before {
  content: "";
  background: url(../svg/ico_arrow.svg) 0 0 no-repeat;
  background-size: contain;
  width: 16px;
  height: 19px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
}

#top-btn a:hover {
  background: #ed1c23;
}

@media (max-width: 1023px) {
  #top-btn {
    bottom: 10px;
    right: 10px;
  }
  #top-btn a {
    width: 40px;
    height: 40px;
  }
  #top-btn a:before {
    width: 13px;
    height: 16px;
  }
  #top-btn a:hover {
    background: #a02f2f;
  }
}

/*
  
  object/project
  
*/
.article-list__row {
  padding-bottom: 24px;
}

.article-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.article-list__date {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  color: #808080;
  margin-right: 40px;
}

.article-list__category + .article-list__category {
  margin-left: 10px;
}

.article-list__row + .article-list__row {
  padding-top: 24px;
}

.article-list__name a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333333;
}

@media (max-width: 1023px) {
  .article-list__row {
    padding-bottom: 15px;
  }
  .article-list__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
  }
  .article-list__date {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
    margin-right: 30px;
  }
  .article-list__row + .article-list__row {
    padding-top: 15px;
  }
  .article-list__name a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.article-pagenation {
  padding: 120px 0;
}

.article-pagenation--set {
  padding: 30px 0;
}

.article-pagenation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-pagenation__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #999999;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border: 1px solid #999999;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__item a:hover {
  background: #a02f2f;
  border-color: #a02f2f;
  color: #fff;
}

.article-pagenation__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #999999;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border: 1px solid #999999;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__item span.is--current {
  background: #a02f2f;
  border-color: #a02f2f;
  color: #fff;
}

.article-pagenation__item + .article-pagenation__item {
  margin-left: 10px;
}

.article-pagenation__prev {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.article-pagenation__next a, .article-pagenation__prev a {
  border: none;
}

.article-pagenation__next a .cls-2, .article-pagenation__prev a .cls-2 {
  fill: none;
  stroke: #999;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}

.article-pagenation__next a:hover .cls-2, .article-pagenation__prev a:hover .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}

.article-pagenation__text {
  text-align: center;
  color: #333333;
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__text:hover {
  color: #a02f2f;
}

@media (max-width: 1023px) {
  .article-pagenation {
    padding: 20px 0 20px;
  }
  .article-pagenation__item a {
    width: 35px;
    height: 35px;
  }
  .article-pagenation__item span {
    width: 35px;
    height: 35px;
  }
  .article-pagenation__item + .article-pagenation__item {
    margin-left: 5px;
  }
}

.article {
  padding: 60px 0 120px;
  color: #333333;
  word-break: break-all;
}

.article__head .article__inner {
  padding-bottom: 18px;
  border-bottom: 1px dotted #808080;
  margin-bottom: 30px;
}

.article__body {
  /* アイコン */
}

.article__body a {
  color: #c00;
}

.article__body .grid a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.article__body b {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEBEB));
  background: -webkit-linear-gradient(transparent 60%, #FFEBEB 60%);
  background: -o-linear-gradient(transparent 60%, #FFEBEB 60%);
  background: linear-gradient(transparent 60%, #FFEBEB 60%);
}

.article__body img.is--resized {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

.article__body .link--blank {
  margin-right: 2px;
}

.article__body .link--blank:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_external-link.svg) top left no-repeat;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  bottom: 1px;
  margin-left: 4px;
  content: "";
}

.article__body .link--blank.link--hidden:after {
  content: none;
}

.article__body .link--pdf {
  margin-right: 2px;
}

.article__body .link--pdf:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_pdf.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--xlsx {
  margin-right: 2px;
}

.article__body .link--xlsx:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_xlsx.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--doc {
  margin-right: 2px;
}

.article__body .link--doc:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_word.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--youtube {
  margin-right: 2px;
}

.article__body .link--youtube:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_youtube_red.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 0;
  margin-left: 4px;
  content: "";
}

.article__headline {
  /*
    &--02{
      padding: 20px;
      background: #f4f4f4;
      @include fts(24,31);
      font-weight: bold;
      @include border-radius(4px);
      margin-bottom: 20px;
    }
    &--03{
      @include fts(20,31);
      padding-bottom: 18px;
      border-bottom: 1px solid $verylightpink;
      font-weight: bold;
      margin-bottom: 20px;
    }
    &--04{
      color: $brick;
      margin-bottom: 20px;
      font-weight: bold;
      @include fts(18,31);
    }
*/
}

.article__headline--01 {
  color: #a02f2f;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.7;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .article__headline--01 {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.38462;
    line-height: 1.38462;
  }
}

.article__info {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__category {
  margin-right: 12px;
}

.article__published {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.article__section {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.article__section h2 {
  padding: 20px;
  background: #f4f4f4;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.29167;
  font-weight: bold;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom: 20px;
}

.article__section h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.55;
  padding-bottom: 18px;
  border-bottom: 1px solid #dddddd;
  font-weight: bold;
  margin-bottom: 20px;
}

.article__section h4 {
  color: #a02f2f;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.72222;
}

.article__section > p {
  margin-bottom: 30px;
}

.article__section > p img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
  vertical-align: bottom;
}

.article__section > form {
  display: block;
  margin-bottom: 60px;
}

.article__section > form > p + p {
  margin-top: 20px;
}

.article__section > form input[name="post_password"] {
  border: 1px solid #ddd;
  height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.article__section > form input[type="submit"] {
  background: #a02f2f;
  height: 30px;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.article__section > ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.article__section > ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
}

.article__section strong {
  font-weight: bold;
}

.article__section.__is-taikai h2 {
  border-radius: 0;
}

.article__mv {
  margin-bottom: 28px;
}

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

.article__mv img.is--resized {
  width: 50%;
  display: block;
  margin: 0 auto;
}

.article__lead {
  margin-bottom: 60px;
}

.article__lead p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.article__frame {
  position: relative;
  margin-bottom: 30px;
  padding-top: 56.25%;
}

.article__frame iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.article__grid {
  margin-bottom: 30px;
}

.article__grid-item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.article__caption {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  text-align: center;
  color: #727272;
}

.article__box {
  background: #f5f5f5;
  padding: 24px 20px;
  margin-bottom: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.article__box p {
  margin-bottom: 10px;
}

.article__table {
  margin-bottom: 30px;
}

.article__table a {
  color: #c00;
}

.article__scroller {
  margin-bottom: 30px;
}

.article__nav {
  background: #f2f2f2;
  padding: 50px 0;
  margin-top: 100px;
}

.article__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__nav-item {
  width: 50%;
}

.article__nav-item a {
  color: #808080;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  text-decoration: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article__nav-item a:hover {
  color: #a02f2f;
}

.article__nav-item a span {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #a02f2f;
}

.article__nav-item.is--prev span {
  position: relative;
}

.article__nav-item.is--prev span:before {
  display: inline-block;
  position: relative;
  top: -2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-right: 10px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  content: "";
}

.article__nav-item.is--next {
  text-align: right;
}

.article__nav-item.is--next span {
  position: relative;
}

.article__nav-item.is--next span:after {
  display: inline-block;
  position: relative;
  top: -2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-left: 10px;
  content: "";
}

.article__text-link {
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.article__button {
  width: 350px;
  margin: 0 auto;
  padding: 14px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.article__button.button--primary {
  color: #fff;
}

@media (max-width: 1023px) {
  .article {
    padding: 30px 0 60px;
  }
  .article__head .article__inner {
    padding-bottom: 15px;
    margin-bottom: 0;
  }
  .article__headline--01 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.54545;
  }
  .article__headline--02 {
    padding: 10px 20px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .article__headline--03 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556;
    padding-bottom: 10px;
  }
  .article__headline--04 {
    color: #a02f2f;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .article__published {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
  .article__scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article__section {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
  .article__section h2 {
    padding: 10px 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35714;
    margin-bottom: 20px;
  }
  .article__section h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556;
    padding-bottom: 10px;
  }
  .article__section h4 {
    color: #a02f2f;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .article__section > p {
    margin-bottom: 20px;
  }
  .article__section > ul {
    margin-bottom: 20px;
  }
  .article__section > ol {
    margin-bottom: 20px;
  }
  .article__section strong {
    font-weight: bold;
  }
  .article .grid > .grid__col-4 {
    line-height: 1.3;
    margin-top: 0.2em;
  }
  .article__button {
    width: 100%;
  }
  .article__nav {
    background: #f2f2f2;
    padding: 25px 0;
  }
  .article__nav-item {
    width: 45%;
  }
  .article__nav-item:nth-child(even) {
    margin-left: auto;
  }
}

.article-list__row {
  padding-bottom: 24px;
}

.article-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.article-list__date {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  color: #808080;
  margin-right: 40px;
}

.article-list__category + .article-list__category {
  margin-left: 10px;
}

.article-list__row + .article-list__row {
  padding-top: 24px;
}

.article-list__name a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333333;
}

@media (max-width: 1023px) {
  .article-list__row {
    padding-bottom: 15px;
  }
  .article-list__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
  }
  .article-list__date {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
    margin-right: 30px;
  }
  .article-list__row + .article-list__row {
    padding-top: 15px;
  }
  .article-list__name a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.article-pagenation {
  padding: 120px 0;
}

.article-pagenation--set {
  padding: 30px 0;
}

.article-pagenation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-pagenation__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #999999;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border: 1px solid #999999;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__item a:hover {
  background: #a02f2f;
  border-color: #a02f2f;
  color: #fff;
}

.article-pagenation__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #999999;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border: 1px solid #999999;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__item span.is--current {
  background: #a02f2f;
  border-color: #a02f2f;
  color: #fff;
}

.article-pagenation__item + .article-pagenation__item {
  margin-left: 10px;
}

.article-pagenation__prev {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.article-pagenation__next a, .article-pagenation__prev a {
  border: none;
}

.article-pagenation__next a .cls-2, .article-pagenation__prev a .cls-2 {
  fill: none;
  stroke: #999;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}

.article-pagenation__next a:hover .cls-2, .article-pagenation__prev a:hover .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}

.article-pagenation__text {
  text-align: center;
  color: #333333;
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__text:hover {
  color: #a02f2f;
}

@media (max-width: 1023px) {
  .article-pagenation {
    padding: 20px 0 20px;
  }
  .article-pagenation__item a {
    width: 35px;
    height: 35px;
  }
  .article-pagenation__item span {
    width: 35px;
    height: 35px;
  }
  .article-pagenation__item + .article-pagenation__item {
    margin-left: 5px;
  }
}

.article {
  padding: 60px 0 120px;
  color: #333333;
  word-break: break-all;
}

.article__head .article__inner {
  padding-bottom: 18px;
  border-bottom: 1px dotted #808080;
  margin-bottom: 30px;
}

.article__body {
  /* アイコン */
}

.article__body a {
  color: #c00;
}

.article__body .grid a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.article__body b {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEBEB));
  background: -webkit-linear-gradient(transparent 60%, #FFEBEB 60%);
  background: -o-linear-gradient(transparent 60%, #FFEBEB 60%);
  background: linear-gradient(transparent 60%, #FFEBEB 60%);
}

.article__body img.is--resized {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

.article__body .link--blank {
  margin-right: 2px;
}

.article__body .link--blank:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_external-link.svg) top left no-repeat;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  bottom: 1px;
  margin-left: 4px;
  content: "";
}

.article__body .link--blank.link--hidden:after {
  content: none;
}

.article__body .link--pdf {
  margin-right: 2px;
}

.article__body .link--pdf:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_pdf.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--xlsx {
  margin-right: 2px;
}

.article__body .link--xlsx:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_xlsx.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--doc {
  margin-right: 2px;
}

.article__body .link--doc:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_word.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--youtube {
  margin-right: 2px;
}

.article__body .link--youtube:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_youtube_red.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 0;
  margin-left: 4px;
  content: "";
}

.article__headline {
  /*
    &--02{
      padding: 20px;
      background: #f4f4f4;
      @include fts(24,31);
      font-weight: bold;
      @include border-radius(4px);
      margin-bottom: 20px;
    }
    &--03{
      @include fts(20,31);
      padding-bottom: 18px;
      border-bottom: 1px solid $verylightpink;
      font-weight: bold;
      margin-bottom: 20px;
    }
    &--04{
      color: $brick;
      margin-bottom: 20px;
      font-weight: bold;
      @include fts(18,31);
    }
*/
}

.article__headline--01 {
  color: #a02f2f;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.7;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .article__headline--01 {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.38462;
    line-height: 1.38462;
  }
}

.article__info {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__category {
  margin-right: 12px;
}

.article__published {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.article__section {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.article__section h2 {
  padding: 20px;
  background: #f4f4f4;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.29167;
  font-weight: bold;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom: 20px;
}

.article__section h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.55;
  padding-bottom: 18px;
  border-bottom: 1px solid #dddddd;
  font-weight: bold;
  margin-bottom: 20px;
}

.article__section h4 {
  color: #a02f2f;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.72222;
}

.article__section > p {
  margin-bottom: 30px;
}

.article__section > p img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
  vertical-align: bottom;
}

.article__section > form {
  display: block;
  margin-bottom: 60px;
}

.article__section > form > p + p {
  margin-top: 20px;
}

.article__section > form input[name="post_password"] {
  border: 1px solid #ddd;
  height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.article__section > form input[type="submit"] {
  background: #a02f2f;
  height: 30px;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.article__section > ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.article__section > ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
}

.article__section strong {
  font-weight: bold;
}

.article__section.__is-taikai h2 {
  border-radius: 0;
}

.article__mv {
  margin-bottom: 28px;
}

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

.article__mv img.is--resized {
  width: 50%;
  display: block;
  margin: 0 auto;
}

.article__lead {
  margin-bottom: 60px;
}

.article__lead p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.article__frame {
  position: relative;
  margin-bottom: 30px;
  padding-top: 56.25%;
}

.article__frame iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.article__grid {
  margin-bottom: 30px;
}

.article__grid-item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.article__caption {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  text-align: center;
  color: #727272;
}

.article__box {
  background: #f5f5f5;
  padding: 24px 20px;
  margin-bottom: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.article__box p {
  margin-bottom: 10px;
}

.article__table {
  margin-bottom: 30px;
}

.article__table a {
  color: #c00;
}

.article__scroller {
  margin-bottom: 30px;
}

.article__nav {
  background: #f2f2f2;
  padding: 50px 0;
  margin-top: 100px;
}

.article__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__nav-item {
  width: 50%;
}

.article__nav-item a {
  color: #808080;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  text-decoration: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article__nav-item a:hover {
  color: #a02f2f;
}

.article__nav-item a span {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #a02f2f;
}

.article__nav-item.is--prev span {
  position: relative;
}

.article__nav-item.is--prev span:before {
  display: inline-block;
  position: relative;
  top: -2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-right: 10px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  content: "";
}

.article__nav-item.is--next {
  text-align: right;
}

.article__nav-item.is--next span {
  position: relative;
}

.article__nav-item.is--next span:after {
  display: inline-block;
  position: relative;
  top: -2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-left: 10px;
  content: "";
}

.article__text-link {
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.article__button {
  width: 350px;
  margin: 0 auto;
  padding: 14px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.article__button.button--primary {
  color: #fff;
}

@media (max-width: 1023px) {
  .article {
    padding: 30px 0 60px;
  }
  .article__head .article__inner {
    padding-bottom: 15px;
    margin-bottom: 0;
  }
  .article__headline--01 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.54545;
  }
  .article__headline--02 {
    padding: 10px 20px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .article__headline--03 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556;
    padding-bottom: 10px;
  }
  .article__headline--04 {
    color: #a02f2f;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .article__published {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
  .article__scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article__section {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
  .article__section h2 {
    padding: 10px 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35714;
    margin-bottom: 20px;
  }
  .article__section h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556;
    padding-bottom: 10px;
  }
  .article__section h4 {
    color: #a02f2f;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .article__section > p {
    margin-bottom: 20px;
  }
  .article__section > ul {
    margin-bottom: 20px;
  }
  .article__section > ol {
    margin-bottom: 20px;
  }
  .article__section strong {
    font-weight: bold;
  }
  .article .grid > .grid__col-4 {
    line-height: 1.3;
    margin-top: 0.2em;
  }
  .article__button {
    width: 100%;
  }
  .article__nav {
    background: #f2f2f2;
    padding: 25px 0;
  }
  .article__nav-item {
    width: 45%;
  }
  .article__nav-item:nth-child(even) {
    margin-left: auto;
  }
}

.history-list {
  border-left: solid 2px #a02f2f;
  margin-left: 10px;
}

.history-list dt {
  padding-left: 2em;
  position: relative;
}

.history-list dt:before {
  content: "";
  width: 1em;
  height: 2px;
  background-color: #a02f2f;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}

.history-list dd {
  margin-left: 3em;
  margin-bottom: 20px;
}

.page--member__main-img {
  height: 500px;
  overflow-y: hidden;
}

.page--member__inner {
  width: 760px;
  padding: 58px 0 90px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page--member__inner:first-child {
  padding-top: 0;
}

.page--member__inner + .page--member__inner {
  border-top: dotted 1px #808080;
}

.page--member__subtitle {
  margin: 0 auto 36px;
  color: #a02f2f;
  font-weight: bold;
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.74286;
}

.page--member__text {
  color: #333333;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}

.page--member__text--bold {
  margin-bottom: 31px;
  color: #333333;
  font-weight: bold;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.75;
}

.page--member__text--semibold {
  font-weight: bold;
}

.page--member__text--detail {
  margin-bottom: 16px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 2.25;
  text-align: left;
}

.page--member__text--link {
  color: #ed1c23;
  text-decoration: none;
}

.page--member__text--link:hover {
  text-decoration: underline;
}

.page--member__text--pdf {
  color: #333333;
  text-decoration: none;
}

.page--member__text--pdf:hover {
  text-decoration: underline;
}

.page--member__text--pdf:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_pdf.svg) no-repeat 0 0;
  width: 16px;
  height: 19px;
  background-size: 16px 19px;
  vertical-align: middle;
  top: -1px;
  margin-left: 0;
  content: "";
}

.page--member__img-box {
  margin: 50px auto 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page--member__img--01 {
  width: 370px;
  height: auto;
  margin: -12px auto 27px;
}

.page--member__img--02 {
  width: 340px;
  height: auto;
}

.page--member__img--02 + .page--member__img--02 {
  margin-left: 25px;
}

.page--member__img--03 {
  width: 585px;
  height: auto;
  margin: 14px auto 84px;
}

@media (max-width: 1023px) {
  .page--member li + li {
    margin-top: 20px;
  }
  .page--member__main-img {
    height: 130px;
  }
  .page--member__inner {
    width: calc(100% - 40px);
    margin: 0 auto;
    padding: 40px 0 70px;
  }
  .page--member__inner:first-child {
    padding-top: 45px;
  }
  .page--member__subtitle {
    margin: 0 auto 30px;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.38462;
  }
  .page--member__text {
    color: #333333;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  .page--member__text--bold {
    margin-bottom: 30px;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.88889;
  }
  .page--member__text--detail {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  .page--member__text--pdf:after {
    position: relative;
    display: inline-block;
    background: url(../svg/ico_pdf.svg) no-repeat 0 0;
    width: 16px;
    height: 19px;
    background-size: 16px 19px;
    vertical-align: middle;
    top: -1px;
    margin-left: 0;
    content: "";
  }
  .page--member__img-box {
    margin: 40px 0 30px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page--member__img--01 {
    width: 100%;
    height: auto;
    margin: 0 0 30px;
  }
  .page--member__img--02 {
    width: 100%;
    height: auto;
  }
  .page--member__img--02 + .page--member__img--02 {
    margin-top: 10px;
    margin-left: 0;
  }
  .page--member__img--03 {
    width: 100%;
    height: auto;
    margin: 40px 0 80px;
  }
}

.page--coach {
  padding-bottom: 0;
}

.page--coach__top {
  background-color: #f2f2f2;
  text-align: center;
}

.page--coach__img {
  height: 500px;
  overflow-y: hidden;
}

.page--coach__title {
  margin: 0 auto 40px;
  font-size: 35px;
  font-size: 3.5rem;
  line-height: 1.74286;
  font-weight: bold;
  color: #a02f2f;
}

.page--coach__subtitle {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
}

.page--coach__howtobe-title {
  margin: 60px auto 20px;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.73333;
  font-weight: bold;
  color: #a02f2f;
  text-align: center;
}

.page--coach__inner {
  padding-top: 67px;
}

.page--coach__text {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #333333;
  margin-bottom: 24px;
}

.page--coach__text .strong {
  font-weight: bold;
}

.page--coach__bottom {
  position: relative;
  margin-top: 32px;
  padding: 0 0 92px;
  background-color: #fff;
  text-align: center;
}

.page--coach__bottom:after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-top: -15px;
  margin-left: -13px;
  border-style: solid;
  border-width: 0 13px 15px 13px;
  border-color: transparent transparent #fff transparent;
  content: "";
}

.page--coach__bottom--02 {
  padding: 70px 0 100px;
}

.page--coach__grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.page--coach__card-img {
  width: 310px;
  height: 220px;
  overflow: hidden;
}

.page--coach__card-img img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.page--coach__link {
  padding-bottom: 40px;
}

.page--coach__link--pdf:after {
  position: relative;
  display: inline-block;
  width: 14px;
  height: 16px;
  margin-top: 2px;
  margin-left: 4px;
  background: url(../svg/ico_pdf.svg) top left no-repeat;
  background-size: 14px 16px;
  content: "";
}

.page--coach__link--movie:after {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 11px;
  margin-top: 2px;
  margin-left: 4px;
  background: url(../svg/ico_movie.svg) top left no-repeat;
  background-size: 16px 11px;
  content: "";
}

.page--coach__btn {
  color: #a02f2f;
}

.page--coach__relative-link {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-top: 50px;
}

.page--coach__relative-link > a {
  width: 328px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.page--coach__relative-link > a:nth-child(3n) {
  margin-right: 0;
}

@media (max-width: 1023px) {
  .page--coach .card--a__item:nth-child(odd) {
    margin-left: 0;
  }
  .page--coach .card--a__item:nth-child(even) {
    margin-right: 0;
  }
  .page--coach__img {
    height: 130px;
    overflow-y: hidden;
  }
  .page--coach__img img {
    margin-top: 0;
  }
  .page--coach__howtobe-title {
    margin: 40px auto 20px;
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.38462;
  }
  .page--coach__text {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5625;
    margin-bottom: 30px;
  }
  .page--coach__bottom {
    position: relative;
    margin-top: 32px;
    padding: 57px 0 32px;
    background-color: #fff;
    text-align: center;
  }
  .page--coach__bottom:after {
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    margin-top: -8px;
    margin-left: -6.8px;
    border-style: solid;
    border-width: 0 6.8px 8px 6.8px;
    border-color: transparent transparent #fff transparent;
    content: "";
  }
  .page--coach__bottom--02 {
    padding: 0 20px 40px;
  }
  .page--coach__card-img {
    width: 100%;
    height: 100px;
    overflow: hidden;
  }
  .page--coach__card-img img {
    width: 100%;
    height: auto;
  }
  .page--coach__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-bottom: 0;
  }
  .page--coach__link > a {
    width: calc(100vw - 40px);
    padding: 0;
  }
  .page--coach__link--pdf {
    padding: 0 16px;
  }
  .page--coach__link--pdf:after {
    margin-left: 4px;
  }
  .page--coach__link--movie {
    padding: 0 16px;
  }
  .page--coach__link--movie:after {
    margin-left: 4px;
  }
  .page--coach__btn {
    height: auto;
    padding: 10px 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
    text-align: center;
  }
  .page--coach__btn--02 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 45%;
    flex: 0 0 45%;
    width: calc(47vw - 20px);
  }
  .page--coach__relative-link {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    padding-top: 0;
  }
  .page--coach__relative-link > a {
    width: 185px;
    min-width: calc(50vw - 22px);
    margin-right: 0;
    margin-bottom: 5px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--coach__relative-link > a:nth-child(3n) {
    margin-right: 0;
  }
}

.contact__text {
  margin-bottom: 60px;
}

.contact__text p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  color: #ed1b24;
}

.contact__banner {
  text-align: center;
  margin-bottom: 30px;
}

.contact-container {
  padding: 60px 0 100px;
  margin-bottom: 90px;
  background: #f2f2f2;
}

.contact__table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin-bottom: 100px;
}

.contact__table tbody tr th {
  padding: 23px 0;
  width: 40%;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  vertical-align: middle;
}

.contact__table tbody tr th.is--reqiured {
  position: relative;
}

.contact__table tbody tr th.is--reqiured:after {
  display: inline-block;
  padding: 4px 9px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #a02f2f;
  position: absolute;
  right: 0;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "必須";
}

.contact__table tbody tr th.align-top {
  vertical-align: top;
}

.contact__table tbody tr th.align-top:after {
  top: 40px;
}

.contact__table tbody tr td {
  width: 60%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 23px 0 23px 18px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  vertical-align: middle;
}

.contact__table tbody tr td p {
  margin-top: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

.contact__table tbody tr td p a {
  color: #a02f2f;
}

.contact__table2 {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 30px 0 50px;
}

.contact__table2 tbody tr th {
  padding: 23px 0;
  width: 40%;
  text-align: left;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.25;
  vertical-align: middle;
}

.contact__table2 tbody tr th.is--reqiured {
  position: relative;
}

.contact__table2 tbody tr th.is--reqiured:after {
  display: inline-block;
  padding: 4px 9px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background: #a02f2f;
  position: absolute;
  right: 0;
  color: #fff;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  content: "必須";
}

.contact__table2 tbody tr th.align-top {
  vertical-align: top;
}

.contact__table2 tbody tr th.align-top:after {
  top: 40px;
}

.contact__table2 tbody tr .top {
  vertical-align: top;
}

.contact__table2 tbody tr td {
  width: 60%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 23px 0 23px 18px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  vertical-align: middle;
}

.contact__table2 tbody tr td p {
  margin-top: 10px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
}

.contact__table2 tbody tr td p a {
  color: #a02f2f;
}

.contact__table2 tbody .pt0 th {
  padding: 0 0 23px;
}

.contact__table2 tbody .pt0 td {
  padding: 0 0 23px;
}

.contact__table2--text {
  margin-bottom: 30px;
}

.contact__submit {
  width: 300px;
  height: 80px;
  display: block;
  margin: 0 auto;
  background: #b11d33;
  border: none;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #fff;
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 600;
}

.contact__inner {
  width: calc( 100% - 90px);
  margin: 0 auto;
}

.contact__inner p {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: bold;
}

.contact__inner a {
  color: #a02f2f;
}

.contact__list {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}

.contact__list tbody tr th {
  width: 40%;
  text-align: left;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px dotted #808080;
}

.contact__list tbody tr td {
  width: 60%;
  padding: 20px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-bottom: 1px dotted #808080;
}

.contact__list tbody tr td span {
  display: block;
  color: #ed1b24;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.42857;
}

.contact__note {
  margin-top: 40px;
}

.contact__note p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
  font-weight: normal;
}

.contact__note p a {
  color: #a02f2f;
  text-decoration: underline;
}

@media (max-width: 1023px) {
  .contact__text {
    margin-bottom: 30px;
  }
  .contact__text p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  .contact__banner {
    padding-top: 20px;
  }
  .contact__banner img {
    width: 100%;
    height: auto;
  }
  .contact-container {
    padding: 30px 0 50px;
    margin-bottom: 45px;
  }
  .contact__table {
    width: 100%;
    margin-bottom: 50px;
  }
  .contact__table tbody tr th {
    padding: 20px 0 0;
    width: 100%;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
  }
  .contact__table tbody tr th.is--reqiured {
    position: relative;
  }
  .contact__table tbody tr th.is--reqiured:after {
    vertical-align: middle;
    margin-left: 6px;
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    content: "必須";
    top: -2px;
  }
  .contact__table tbody tr td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .contact__table tbody tr td p {
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
  }
  .contact__table tbody tr td p a {
    color: #a02f2f;
  }
  .contact__table2 {
    width: 100%;
    margin: 10px 0 30px;
  }
  .contact__table2 tbody tr th {
    padding: 20px 0 0;
    width: 100%;
    display: block;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.25;
  }
  .contact__table2 tbody tr th.is--reqiured {
    position: relative;
    line-height: 1.4;
  }
  .contact__table2 tbody tr th.is--reqiured:after {
    vertical-align: middle;
    margin-left: 6px;
    display: inline-block;
    position: relative;
    color: #fff;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    content: "必須";
    top: -2px;
  }
  .contact__table2 tbody tr td {
    display: block;
    width: 100%;
    padding: 10px 0;
  }
  .contact__table2 tbody tr td p {
    margin-top: 10px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
  }
  .contact__table2 tbody tr td p a {
    color: #a02f2f;
  }
  .contact__table2 tbody .pt0 th {
    padding: 0 0 10px;
  }
  .contact__table2 tbody .pt0 td {
    padding: 0 0 10px;
  }
  .contact__table2--text {
    line-height: 1.4;
    margin-bottom: 20px;
  }
  .contact__submit {
    width: 100%;
    height: 60px;
  }
  .contact__submit input[type="submit"] {
    -webkit-appearance: none;
  }
  .contact__inner {
    width: 100%;
    margin: 0;
  }
  .contact__inner p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  .contact__inner a {
    color: #a02f2f;
  }
  .contact__list {
    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
  }
  .contact__list tbody tr th {
    width: 100%;
    display: block;
    padding: 20px 0 10px;
    font-weight: 600;
    border-top: 1px dotted #808080;
    border-bottom: none;
  }
  .contact__list tbody tr td {
    width: 100%;
    display: block;
    padding: 0 0 20px;
    border-bottom: none;
  }
  .contact__list tbody tr td span {
    display: block;
    color: #ed1b24;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.42857;
  }
  .contact__note {
    margin-top: 10px;
  }
  .contact__note p {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5625;
  }
}

.form .wpcf7-form-control-wrap select {
  display: block;
  width: 100%;
  background: #fff;
  border: 1px solid #808080;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 10px;
  box-sizing: border-box;
  height: 46px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #808080;
}

.form__input-text {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  height: 46px;
  border: 1px solid #808080;
}

.form__textarea {
  width: 100%;
  padding: 10px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  border: 1px solid #808080;
}

.article-list__row {
  padding-bottom: 24px;
}

.article-list__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 10px;
}

.article-list__date {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  color: #808080;
  margin-right: 40px;
}

.article-list__category + .article-list__category {
  margin-left: 10px;
}

.article-list__row + .article-list__row {
  padding-top: 24px;
}

.article-list__name a {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333333;
}

@media (max-width: 1023px) {
  .article-list__row {
    padding-bottom: 15px;
  }
  .article-list__head {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 5px;
  }
  .article-list__date {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
    margin-right: 30px;
  }
  .article-list__row + .article-list__row {
    padding-top: 15px;
  }
  .article-list__name a {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.article-pagenation {
  padding: 120px 0;
}

.article-pagenation--set {
  padding: 30px 0;
}

.article-pagenation__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article-pagenation__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #999999;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border: 1px solid #999999;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__item a:hover {
  background: #a02f2f;
  border-color: #a02f2f;
  color: #fff;
}

.article-pagenation__item span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #999999;
  text-decoration: none;
  width: 40px;
  height: 40px;
  border: 1px solid #999999;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__item span.is--current {
  background: #a02f2f;
  border-color: #a02f2f;
  color: #fff;
}

.article-pagenation__item + .article-pagenation__item {
  margin-left: 10px;
}

.article-pagenation__prev {
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

.article-pagenation__next a, .article-pagenation__prev a {
  border: none;
}

.article-pagenation__next a .cls-2, .article-pagenation__prev a .cls-2 {
  fill: none;
  stroke: #999;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}

.article-pagenation__next a:hover .cls-2, .article-pagenation__prev a:hover .cls-2 {
  fill: none;
  stroke: #fff;
  stroke-miterlimit: 10;
  stroke-width: 1.5px;
}

.article-pagenation__text {
  text-align: center;
  color: #333333;
  text-decoration: none;
  display: block;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article-pagenation__text:hover {
  color: #a02f2f;
}

@media (max-width: 1023px) {
  .article-pagenation {
    padding: 20px 0 20px;
  }
  .article-pagenation__item a {
    width: 35px;
    height: 35px;
  }
  .article-pagenation__item span {
    width: 35px;
    height: 35px;
  }
  .article-pagenation__item + .article-pagenation__item {
    margin-left: 5px;
  }
}

.article {
  padding: 60px 0 120px;
  color: #333333;
  word-break: break-all;
}

.article__head .article__inner {
  padding-bottom: 18px;
  border-bottom: 1px dotted #808080;
  margin-bottom: 30px;
}

.article__body {
  /* アイコン */
}

.article__body a {
  color: #c00;
}

.article__body .grid a img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.article__body b {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(60%, #FFEBEB));
  background: -webkit-linear-gradient(transparent 60%, #FFEBEB 60%);
  background: -o-linear-gradient(transparent 60%, #FFEBEB 60%);
  background: linear-gradient(transparent 60%, #FFEBEB 60%);
}

.article__body img.is--resized {
  width: 50%;
  height: auto;
  margin: 0 auto;
}

.article__body .link--blank {
  margin-right: 2px;
}

.article__body .link--blank:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_external-link.svg) top left no-repeat;
  width: 14px;
  height: 14px;
  vertical-align: middle;
  bottom: 1px;
  margin-left: 4px;
  content: "";
}

.article__body .link--blank.link--hidden:after {
  content: none;
}

.article__body .link--pdf {
  margin-right: 2px;
}

.article__body .link--pdf:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_pdf.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--xlsx {
  margin-right: 2px;
}

.article__body .link--xlsx:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_xlsx.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--doc {
  margin-right: 2px;
}

.article__body .link--doc:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_word.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

.article__body .link--youtube {
  margin-right: 2px;
}

.article__body .link--youtube:after {
  position: relative;
  display: inline-block;
  background: url(../svg/ico_youtube_red.svg) no-repeat 0 0;
  width: 16px;
  height: 18px;
  vertical-align: middle;
  bottom: 0;
  margin-left: 4px;
  content: "";
}

.article__headline {
  /*
    &--02{
      padding: 20px;
      background: #f4f4f4;
      @include fts(24,31);
      font-weight: bold;
      @include border-radius(4px);
      margin-bottom: 20px;
    }
    &--03{
      @include fts(20,31);
      padding-bottom: 18px;
      border-bottom: 1px solid $verylightpink;
      font-weight: bold;
      margin-bottom: 20px;
    }
    &--04{
      color: $brick;
      margin-bottom: 20px;
      font-weight: bold;
      @include fts(18,31);
    }
*/
}

.article__headline--01 {
  color: #a02f2f;
  font-size: 30px;
  font-size: 3rem;
  line-height: 1.7;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .article__headline--01 {
    font-size: 26px;
    font-size: 2.6rem;
    line-height: 1.38462;
    line-height: 1.38462;
  }
}

.article__info {
  margin-top: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__category {
  margin-right: 12px;
}

.article__published {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.article__section {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.article__section h2 {
  padding: 20px;
  background: #f4f4f4;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.29167;
  font-weight: bold;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  margin-bottom: 20px;
}

.article__section h3 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.55;
  padding-bottom: 18px;
  border-bottom: 1px solid #dddddd;
  font-weight: bold;
  margin-bottom: 20px;
}

.article__section h4 {
  color: #a02f2f;
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.72222;
}

.article__section > p {
  margin-bottom: 30px;
}

.article__section > p img {
  max-width: 100%;
  display: block;
  margin: 0 auto;
  height: auto;
  vertical-align: bottom;
}

.article__section > form {
  display: block;
  margin-bottom: 60px;
}

.article__section > form > p + p {
  margin-top: 20px;
}

.article__section > form input[name="post_password"] {
  border: 1px solid #ddd;
  height: 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.article__section > form input[type="submit"] {
  background: #a02f2f;
  height: 30px;
  border: none;
  color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.article__section > ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 30px;
}

.article__section > ol {
  list-style-type: decimal;
  margin-left: 20px;
  margin-bottom: 30px;
}

.article__section strong {
  font-weight: bold;
}

.article__section.__is-taikai h2 {
  border-radius: 0;
}

.article__mv {
  margin-bottom: 28px;
}

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

.article__mv img.is--resized {
  width: 50%;
  display: block;
  margin: 0 auto;
}

.article__lead {
  margin-bottom: 60px;
}

.article__lead p {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.875;
}

.article__frame {
  position: relative;
  margin-bottom: 30px;
  padding-top: 56.25%;
}

.article__frame iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.article__grid {
  margin-bottom: 30px;
}

.article__grid-item img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

.article__caption {
  margin-top: 10px;
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.66667;
  text-align: center;
  color: #727272;
}

.article__box {
  background: #f5f5f5;
  padding: 24px 20px;
  margin-bottom: 30px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.article__box p {
  margin-bottom: 10px;
}

.article__table {
  margin-bottom: 30px;
}

.article__table a {
  color: #c00;
}

.article__scroller {
  margin-bottom: 30px;
}

.article__nav {
  background: #f2f2f2;
  padding: 50px 0;
  margin-top: 100px;
}

.article__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.article__nav-item {
  width: 50%;
}

.article__nav-item a {
  color: #808080;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  text-decoration: none;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.article__nav-item a:hover {
  color: #a02f2f;
}

.article__nav-item a span {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #a02f2f;
}

.article__nav-item.is--prev span {
  position: relative;
}

.article__nav-item.is--prev span:before {
  display: inline-block;
  position: relative;
  top: -2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-right: 10px;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
  content: "";
}

.article__nav-item.is--next {
  text-align: right;
}

.article__nav-item.is--next span {
  position: relative;
}

.article__nav-item.is--next span:after {
  display: inline-block;
  position: relative;
  top: -2px;
  width: 16px;
  height: 16px;
  vertical-align: middle;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  margin-left: 10px;
  content: "";
}

.article__text-link {
  color: #333333;
  text-decoration: none;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.article__button {
  width: 350px;
  margin: 0 auto;
  padding: 14px 0;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.article__button.button--primary {
  color: #fff;
}

@media (max-width: 1023px) {
  .article {
    padding: 30px 0 60px;
  }
  .article__head .article__inner {
    padding-bottom: 15px;
    margin-bottom: 0;
  }
  .article__headline--01 {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.54545;
  }
  .article__headline--02 {
    padding: 10px 20px;
    font-size: 20px;
    font-size: 2rem;
    line-height: 1.5;
    margin-bottom: 20px;
  }
  .article__headline--03 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556;
    padding-bottom: 10px;
  }
  .article__headline--04 {
    color: #a02f2f;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .article__published {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
  .article__scroller {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .article__section {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
  .article__section h2 {
    padding: 10px 20px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.35714;
    margin-bottom: 20px;
  }
  .article__section h3 {
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1.55556;
    padding-bottom: 10px;
  }
  .article__section h4 {
    color: #a02f2f;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.625;
  }
  .article__section > p {
    margin-bottom: 20px;
  }
  .article__section > ul {
    margin-bottom: 20px;
  }
  .article__section > ol {
    margin-bottom: 20px;
  }
  .article__section strong {
    font-weight: bold;
  }
  .article .grid > .grid__col-4 {
    line-height: 1.3;
    margin-top: 0.2em;
  }
  .article__button {
    width: 100%;
  }
  .article__nav {
    background: #f2f2f2;
    padding: 25px 0;
  }
  .article__nav-item {
    width: 45%;
  }
  .article__nav-item:nth-child(even) {
    margin-left: auto;
  }
}

.history-list {
  border-left: solid 2px #a02f2f;
  margin-left: 10px;
}

.history-list dt {
  padding-left: 2em;
  position: relative;
}

.history-list dt:before {
  content: "";
  width: 1em;
  height: 2px;
  background-color: #a02f2f;
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
}

.history-list dd {
  margin-left: 3em;
  margin-bottom: 20px;
}

.page--news__nav--year {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 115px;
  height: 90px;
  border-left: solid 1px #b3b3b3;
}

.page--news__nav--year a {
  position: relative;
}

.page--news__nav--year a:after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
  margin-right: -15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #333333 transparent transparent transparent;
  content: "";
}

.page--news__nav--year ul {
  display: none;
  position: absolute;
  top: 90px;
  right: -25px;
}

.page--news__nav--year ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 140px;
  height: 60px;
  background-color: #f2f2f2;
  border-top: dotted 1px #b3b3b3;
}

.page--news__nav--year ul li:hover {
  background-color: #e6e6e6;
}

.page--news__nav--year ul li a:after {
  border: none;
}

.page--news__nav--year:hover ul {
  display: block;
}

.page--news__item {
  border-bottom: none;
}

.page--news__link--pdf {
  position: relative;
}

.page--news__link--pdf:after {
  position: absolute;
  display: inline-block;
  background: url(../svg/ico_pdf.svg) no-repeat 0 0;
  width: 17px;
  height: 20px;
  bottom: 0;
  margin-left: 4px;
  content: "";
}

.page--news__link--xlsx {
  position: relative;
}

.page--news__link--xlsx:after {
  position: absolute;
  display: inline-block;
  background: url(../svg/ico_xlsx.svg) no-repeat 0 0;
  width: 18px;
  height: 20px;
  bottom: 2px;
  margin-left: 4px;
  content: "";
}

@media (max-width: 1023px) {
  .page--news__nav--year {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    height: 90px;
    border-left: solid 1px #b3b3b3;
  }
  .page--news__nav--year a {
    position: relative;
  }
  .page--news__nav--year a:after {
    position: relative;
    margin-top: 50%;
    margin-right: 0;
    margin-left: 5px;
    border: none;
    content: ":";
  }
  .page--news__nav--year ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 100px;
  }
  .page--news__nav--year ul li {
    display: inline-block;
    width: 70px;
    height: 90px;
    padding-top: 32px;
    background-color: #f2f2f2;
    border-top: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--news__nav--year ul li:hover {
    background-color: #f2f2f2;
  }
  .page--news__nav--year ul li a:after {
    content: "";
  }
  .page--news__nav--year:hover ul {
    display: inherit;
  }
  .page--news__pagenation {
    padding: 0;
  }
  .page--news__flex {
    background: #f2f2f2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .page--news__flex .navigation__select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--news__flex .navigation__select:first-child {
    width: 65%;
    text-align: center;
  }
  .page--news__flex .navigation__select:last-child {
    width: 35%;
    border-left: 1px solid #e6e6e6;
    text-align: center;
  }
}

.page--404 {
  padding: 0;
  background-color: #f2f2f2;
}

.page--404__img {
  height: 500px;
  overflow-y: hidden;
}

.page--404__inner {
  padding: 60px 0 130px;
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.72222;
  text-align: center;
  color: #333333;
}

.page--404__search {
  position: relative;
  width: 500px;
  height: 72px;
  margin: 45px auto 0;
  border: none;
}

.page--404__search input[type="text"] {
  border: none;
  position: relative;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
}

.page--404__search input[type="text"]:focus {
  outline: 0;
}

.page--404__search input[type="submit"] {
  cursor: pointer;
  border: none;
  outline: none;
}

.page--404__search--input {
  width: 100%;
  height: 72px;
  padding: 0 42px;
  background: #fff;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page--404__search--btn {
  position: absolute;
  width: 24px;
  height: 21px;
  top: 50%;
  right: 42px;
  margin-top: -12px;
  background: #fff;
  cursor: pointer;
}

.page--404__search--btn > img {
  width: 18px;
  height: 19px;
}

.page--404__bottom {
  position: relative;
  width: 100%;
  padding: 0 0 125px;
  background-color: #fff;
  text-align: center;
}

.page--404__bottom:after {
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -13px;
  margin-top: -15px;
  border-style: solid;
  border-width: 0 13px 15px 13px;
  border-color: transparent transparent #fff transparent;
  content: "";
  z-index: 1;
}

.page--404__subtitle {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  color: #333333;
}

@media (max-width: 1023px) {
  .page--404__img {
    height: 130px;
  }
  .page--404__inner {
    padding: 35px 20px 50px;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5625;
  }
  .page--404__search {
    width: 100%;
    margin: 30px auto 0;
  }
  .page--404__search--input {
    width: 100%;
    height: 60px;
    padding: 0 30px;
  }
  .page--404__search--btn {
    width: 28px;
    height: 26px;
    top: 50%;
    right: 30px;
    margin-top: -20px;
  }
  .page--404__search--btn > img {
    width: 22px;
    height: 24px;
  }
  .page--404__bottom {
    padding: 35px 0 60px;
  }
  .page--404__bottom:after {
    margin-left: -6.8px;
    margin-top: -8px;
    border-style: solid;
    border-width: 0 6.8px 8px 6.8px;
  }
  .page--404__subtitle {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.78571;
    margin-bottom: 20px;
  }
}

.page--athlete__img {
  max-height: 500px;
  overflow: hidden;
}

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

.page--athlete__subtitle {
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  color: #333333;
  text-align: center;
}

.page--athlete__link-title {
  margin-bottom: 10px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.75;
  text-align: center;
}

.page--athlete__body {
  padding-bottom: 130px;
}

.page--athlete__related-link {
  padding: 0 0 160px;
  border-top: dotted 1px #808080;
}

.page--athlete__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page--athlete__profile {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  margin-bottom: 56px;
}

.page--athlete__profile-items {
  max-width: 587px;
}

.page--athlete__profile-items img {
  width: 456px;
  height: auto;
}

.page--athlete__name {
  width: 587px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  padding-bottom: 18px;
  margin-bottom: 30px;
  border-bottom: dotted 1px #808080;
}

.page--athlete__name--ja {
  font-size: 32px;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: bold;
  color: #a02f2f;
}

.page--athlete__name--en {
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1;
  font-weight: normal;
  color: #808080;
}

.page--athlete__detail {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.72222;
  color: #333333;
}

.page--athlete__detail--bg {
  width: 120px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 5px 0;
  margin-right: 28px;
  background-color: #a02f2f;
  color: #fff;
}

.page--athlete__detail + .page--athlete__detail {
  margin-top: 17px;
}

.page--athlete__senseki {
  width: 900px;
  margin: 35px auto 0;
}

.page--athlete__senseki-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px 0 15px 30px;
  border-bottom: dotted 1px #808080;
}

.page--athlete__senseki-items {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  color: #333333;
  text-align: center;
}

.page--athlete__senseki-items:first-child {
  text-align: left;
}

.page--athlete__senseki-items:nth-child(2) {
  text-align: left;
}

.page--athlete__bottom {
  position: relative;
  padding: 40px 0 130px;
  background-color: #f2f2f2;
}

.page--athlete__bottom:before {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -13px;
  border-style: solid;
  border-width: 0 13px 15px 13px;
  border-color: transparent transparent #f2f2f2 transparent;
  content: "";
}

.page--athlete__bottom .is--current {
  border: 2px solid #c00;
}

.page--athlete__nav {
  margin: 35px 0 0;
}

.page--athlete__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page--athlete__nav-items {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
}

.page--athlete__nav-items a {
  color: #a02f2f;
}

.page--athlete__nav-items a:hover {
  text-decoration: none;
}

.page--athlete__nav-items + .page--athlete__nav-items {
  margin-left: 40px;
}

.page--athlete__nav-items + .page--athlete__nav-items:before {
  width: 1px;
  height: 20px;
  margin-top: 5px;
  border-left: 1px solid #a02f2f;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  content: "";
}

.page--athlete__list-outer {
  padding-top: 150px;
  margin-top: -150px;
}

.page--athlete__list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  margin-bottom: 70px;
}

.page--athlete__list-inner {
  width: 50%;
}

.page--athlete__list-title {
  text-align: center;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1;
  font-weight: bold;
}

.page--athlete__list-item {
  border-bottom: 1px solid #808080;
  padding: 30px;
}

.page--athlete__list-item:first-child {
  border-top: 1px solid #808080;
}

.page--athlete__list-phbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page--athlete__list-phbox-img {
  width: 90px;
  height: 90px;
  margin-right: 15px;
}

.page--athlete__list-phbox-img img {
  width: 100%;
  height: auto;
}

.page--athlete__list-phbox-text {
  width: calc(100% - 90px - 15px);
  font-weight: bold;
}

.page--athlete__list-phbox-text--type {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  margin-bottom: 5px;
}

.page--athlete__list-phbox-text--name {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
}

.page--athlete__list-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page--athlete__list-box-text {
  font-weight: bold;
}

.page--athlete__list-box-text--type {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  width: 100px;
}

.page--athlete__list-box-text--name {
  font-size: 22px;
  font-size: 2.2rem;
  line-height: 1;
}

@media (max-width: 1023px) {
  .page--athlete__body {
    padding-bottom: 60px;
  }
  .page--athlete__related-link {
    padding: 0 0 80px;
  }
  .page--athlete__profile {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 50px;
  }
  .page--athlete__profile-items {
    width: 100%;
  }
  .page--athlete__profile-items img {
    width: 100%;
    margin-bottom: 20px;
  }
  .page--athlete__name {
    width: 100%;
    padding-bottom: 20px;
  }
  .page--athlete__detail {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.75;
    display: block;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143;
    text-align: center;
  }
  .page--athlete__detail--bg {
    display: block;
    width: 100%;
    margin-bottom: 5px;
  }
  .page--athlete__senseki {
    width: 100%;
    margin: 0 auto 0;
  }
  .page--athlete__senseki-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 10px 20px;
  }
  .page--athlete__senseki-item:first-child {
    padding-top: 0;
  }
  .page--athlete__senseki-items {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.57143;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page--athlete__bottom {
    padding: 40px 0 70px;
  }
  .page--athlete__bottom:before {
    bottom: 100%;
    left: 50%;
    width: 0;
    height: 0;
    margin-left: -6px;
    border-style: solid;
    border-width: 0 6px 8px 6px;
    border-color: transparent transparent #f2f2f2 transparent;
    content: "";
  }
  .page--athlete__nav {
    overflow: auto;
    margin: 35px 15px;
  }
  .page--athlete__nav-item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
  }
  .page--athlete__list-outer {
    padding-top: 100px;
    margin-top: -100px;
  }
  .page--athlete__list-wrap {
    display: block;
  }
  .page--athlete__list-inner {
    width: 100%;
    margin-bottom: 50px;
  }
  .page--athlete__list-item {
    padding: 20px;
  }
  .page--athlete__list-phbox {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page--athlete__list-phbox-img {
    width: 90px;
    height: 90px;
    margin-right: 15px;
  }
  .page--athlete__list-phbox-img img {
    width: 100%;
    height: auto;
  }
  .page--athlete__list-phbox-text {
    font-weight: bold;
  }
  .page--athlete__list-phbox-text--type {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    margin-bottom: 5px;
  }
  .page--athlete__list-phbox-text--name {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1;
  }
  .page--athlete__list-box {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page--athlete__list-box-text {
    font-weight: bold;
  }
  .page--athlete__list-box-text--type {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    width: 100px;
  }
  .page--athlete__list-box-text--name {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1;
  }
}

.page--player {
  padding-bottom: 0;
}

.page--player__container--bg {
  background-color: #f2f2f2;
}

.page--player__img {
  position: relative;
  height: 500px;
  overflow-y: hidden;
}

.page--player__visual {
  margin-bottom: 40px;
}

.page--player__bottom {
  position: relative;
  background-color: #fff;
  text-align: center;
  margin-top: 32px;
  padding: 0 0 128px;
}

.page--player__bottom:before {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  width: 0;
  height: 0;
  margin-top: -15px;
  margin-left: -13px;
  border-style: solid;
  border-width: 0 13px 15px 13px;
  border-color: transparent transparent #fff transparent;
  content: "";
}

.page--player__subtitle {
  margin-bottom: 20px;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.55556;
  font-weight: bold;
  color: #333333;
}

.page--player__pref-name {
  width: 100%;
  padding: 10px 0;
  margin-top: 50px;
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.75;
  font-weight: bold;
  color: #a02f2f;
  text-align: center;
  background-color: #e6e6e6;
}

.page--player__text {
  color: #333333;
}

.page--player__nav {
  margin: 35px 0 0;
}

.page--player__nav-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page--player__nav-items {
  position: relative;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
}

.page--player__nav-items a {
  color: #a02f2f;
}

.page--player__nav-items a:hover {
  text-decoration: none;
}

.page--player__nav-items + .page--player__nav-items {
  margin-left: 40px;
}

.page--player__nav-items + .page--player__nav-items:before {
  width: 1px;
  height: 20px;
  margin-top: 5px;
  border-left: 1px solid #a02f2f;
  position: absolute;
  left: -20px;
  top: 0;
  bottom: 0;
  content: "";
}

.page--player__area {
  margin-top: 70px;
}

.page--player__area a {
  text-decoration: none;
  color: #333333;
}

.page--player__area a:hover {
  font-weight: bold;
  color: #a02f2f;
}

.page--player__area:last-child {
  margin-bottom: 130px;
}

.page--player__pref {
  padding: 0 0 0 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page--player__pref > li {
  width: 16%;
  margin-top: 10px;
  padding-left: 20px;
}

.page--player__pref > li a {
  position: relative;
}

.page--player__pref > li a:before {
  display: block;
  width: 16px;
  height: 16px;
  position: absolute;
  left: -20px;
  top: 50%;
  margin-top: -8px;
  background: url(../svg/ico_list-menu.svg) no-repeat 0 0;
  background-size: 16px 16px;
  content: "";
}

.page--player__pref-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page--player__pref-list ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #333333;
  margin-top: 30px;
}

.page--player__pref-list ul li {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}

.page--player__pref-list ul li a {
  color: #a02f2f;
}

.page--player__pref-list ul li a:hover {
  text-decoration: none;
  opacity: 0.75;
}

.page--player__pref-list ul li .current {
  font-weight: bold;
  text-decoration: none;
  border-bottom: 3px solid #a02f2f;
}

.page--player__pref-list ul li + li {
  margin-left: 30px;
}

.page--player__searchbox {
  margin: 30px 0 0 30px;
}

.page--player__searchbox form input {
  -webkit-appearance: none;
  border-radius: 0;
  font-size: 13px;
}

.page--player__searchbox form input[type="text"] {
  border: 1px solid #999;
  padding: 5px;
  width: 165px;
}

.page--player__searchbox form input[type="button"] {
  background: #a02f2f;
  color: #fff;
  border: none;
  border: 1px solid #a02f2f;
  cursor: pointer;
}

.page--player__searchbox form .reset {
  background: #999 !important;
  border: 1px solid #999 !important;
  color: #fff;
  cursor: pointer;
}

.page--player__tab {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-bottom: solid 2px #999999;
}

.page--player__tab-pannel a {
  display: block;
  padding: 10px 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #808080;
  text-decoration: none;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-color: #e6e6e6 #e6e6e6 transparent #e6e6e6;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.page--player__tab-pannel a:hover {
  opacity: 0.75;
}

.page--player__tab-pannel.is--active {
  padding: 10px 30px 12px 30px;
  margin-right: 1px;
  margin-bottom: -2px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  color: #333333;
  background-color: #fff;
  border-style: solid;
  border-width: 2px 2px 0 2px;
  border-color: #999999 #999999 transparent #999999;
}

.page--player__tab-pannel + .page--player__tab-pannel {
  margin-left: -1px;
}

.page--player__tab-pannel2 {
  margin-left: 5px;
}

.page--player__tab-pannel2 a {
  font-weight: 600;
  display: block;
  padding: 10px 15px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  color: #a02f2f;
  text-decoration: none;
  border-style: solid;
  border-width: 1px 1px 0 1px;
  border-color: #a02f2f #a02f2f transparent #a02f2f;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  border-radius: 4px 4px 0 0;
}

.page--player__tab-pannel2 a:hover {
  background: #a02f2f;
  color: #fff;
}

.page--player__dojyo {
  width: 800px;
  margin: 43px auto 0;
  border: solid 1px #a02f2f;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}

.page--player__dojyo-head {
  padding: 10px 20px;
  font-size: 20px;
  font-size: 2rem;
  line-height: 1.75;
  font-weight: bold;
  color: #a02f2f;
  background-color: #f5eaea;
  border-bottom: solid 1px #a02f2f;
  border-radius: 10px 10px 0 0;
}

.page--player__dojyo-body {
  padding: 10px 40px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.57143;
  color: #333333;
}

.page--player__dojyo-body dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page--player__dojyo-body dl dt {
  font-weight: bold;
  width: 50%;
  padding-bottom: 5px;
  border-bottom: solid 1px #E6E6E6;
  margin-bottom: 5px;
  word-break: break-word;
}

.page--player__dojyo-body dl dt:last-of-type {
  border-bottom: none;
}

.page--player__dojyo-body dl dd {
  width: 50%;
  padding-bottom: 5px;
  border-bottom: solid 1px #E6E6E6;
  margin-bottom: 5px;
  word-break: break-word;
}

.page--player__dojyo-body dl dd:last-child {
  border-bottom: none;
}

.page--player__dojyo-body a {
  color: #a02f2f;
}

.page--player__dojyo-body a:hover {
  text-decoration: none;
  opacity: 0.75;
}

.page--player__dojyo-item {
  font-weight: bold;
}

.page--player__banner {
  position: relative;
  margin-top: 170px;
}

.page--player__banner img {
  width: 909px;
  height: auto;
  margin-left: -9px;
}

.page--player__btn {
  width: 800px;
  margin: 100px auto;
  padding-bottom: 70px;
}

.page--player__figure {
  max-width: 293px;
}

.page--player__map {
  max-width: 1080px;
  margin: 50px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: reverse;
  -ms-flex-direction: column-reverse;
  flex-direction: column-reverse;
}

.page--player__map-btn {
  width: 450px;
  height: 50px;
  margin: 0 auto;
}

.page--player__map .js-accordion {
  position: relative;
}

.page--player__map .js-accordion__btn {
  cursor: pointer;
}

.page--player__map .js-accordion__btn .text1 {
  /*   					display: block; */
  display: none;
}

.page--player__map .js-accordion__btn .text2 {
  /*   					display: none; */
  display: block;
}

.page--player__map .js-accordion__btn.is-open .text1 {
  display: block;
}

.page--player__map .js-accordion__btn.is-open .text2 {
  display: none;
}

.page--player__map .js-accordion__contents {
  display: block;
  margin-bottom: 30px;
}

.page--player__map .js-accordion__contents iframe {
  display: block;
}

@media (max-width: 1023px) {
  .page--player__img {
    height: 130px;
  }
  .page--player__visual {
    margin-bottom: 20px;
  }
  .page--player__bottom {
    margin-top: 30px;
    padding: 35px 0 60px;
  }
  .page--player__bottom:before {
    margin-top: -8px;
    margin-left: -6.8px;
    border-width: 0 6.8px 8px 6.8px;
  }
  .page--player__pref-name {
    margin: 30px 0;
    padding: 12px 0;
    font-size: 18px;
    font-size: 1.8rem;
    line-height: 1;
  }
  .page--player__nav {
    margin: 40px 0 0;
    padding: 0 0 10px;
    overflow: auto;
  }
  .page--player__nav-item {
    white-space: nowrap;
  }
  .page--player__area {
    margin-top: 50px;
  }
  .page--player__area:last-child {
    margin-bottom: 30px;
  }
  .page--player__pref {
    padding: 0;
  }
  .page--player__pref > li {
    width: 25%;
  }
  .page--player__pref-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    position: relative;
  }
  .page--player__pref-list--wrap {
    width: 100%;
    overflow: auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page--player__pref-list ul {
    padding: 0 0 10px 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    margin: 20px 0;
  }
  .page--player__pref-list ul > li {
    white-space: nowrap;
  }
  .page--player__pref-list ul > li:last-child {
    padding-right: 20px;
  }
  .page--player__searchbox {
    margin: 10px 0 0;
  }
  .page--player__searchbox form {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .page--player__searchbox form input + input {
    margin-left: 5px;
  }
  .page--player__tab {
    position: relative;
    width: 100%;
    margin-top: -20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-bottom: none;
  }
  .page--player__tab-pannel {
    width: 25%;
    height: 50px;
    border: none;
    border-top: 1px solid #e6e6e6;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--player__tab-pannel.is--active {
    padding: 5px;
    margin-right: 0;
    margin-bottom: 0;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.28571;
    border-style: none;
    border-top: 1px solid #e6e6e6;
    border-bottom: 1px solid #e6e6e6;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--player__tab-pannel:nth-child(n+5) {
    border-bottom: 1px solid #e6e6e6;
  }
  .page--player__tab-pannel:nth-child(4) {
    border-bottom: 1px solid #e6e6e6;
    border-right: 1px solid #e6e6e6;
  }
  .page--player__tab-pannel:first-child {
    border-left: 1px solid #e6e6e6;
    margin-top: -1px;
  }
  .page--player__tab-pannel:nth-last-of-type(2) {
    border-right: 1px solid #e6e6e6;
    width: calc(25% + 1px);
  }
  .page--player__tab-pannel a {
    width: 100%;
    height: 100%;
    padding: 5px 5px;
    font-size: 13px;
    font-size: 1.3rem;
    line-height: 1.23077;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--player__tab-pannel + .page--player__tab-pannel {
    margin-left: 0;
    margin-top: -1px;
    border-left: 1px solid #e6e6e6;
  }
  .page--player__form-btn {
    margin: 30px 10px 10px;
  }
  .page--player__form-btn a {
    font-weight: bold;
    color: #a02f2f;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1;
    border-style: solid;
    border-width: 1px 1px 1px 1px;
    border-color: #a02f2f #a02f2f #a02f2f #a02f2f;
    border-radius: 4px;
  }
  .page--player__dojyo {
    width: calc(100% - 20px);
    margin: 20px auto;
  }
  .page--player__dojyo-body {
    padding: 10px 20px 10px;
  }
  .page--player__dojyo-body dl dt {
    width: 100%;
    padding-bottom: 0;
    border-bottom: none;
  }
  .page--player__dojyo-body dl dd {
    width: 100%;
  }
  .page--player__banner {
    margin-top: 40px;
  }
  .page--player__banner img {
    width: 100%;
    margin-left: 0;
  }
  .page--player__signup {
    display: none;
  }
  .page--player__btn {
    width: calc(100% - 40px);
    margin: 60px auto 0;
    padding-bottom: 40px;
  }
  .page--player__map {
    max-width: 100%;
    margin: 20px auto 0;
    padding: 0 10px;
  }
  .page--player__map-btn {
    width: 100%;
    height: 50px;
    margin: 0 auto;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-radius: 4px;
    padding: 10px;
  }
}

.highlight {
  font-weight: bold;
  background-color: Yellow;
}

.is-fixed {
  position: fixed;
  top: 129px;
  left: 0;
  z-index: 99;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #a02f2f;
}

.is-fixed ul {
  margin: 15px 0;
}

.is-fixed .page--player__searchbox {
  margin: 15px 0 15px 30px;
}

@media (max-width: 1023px) {
  .is-fixed {
    top: 85px;
    padding: 0 20px;
  }
  .is-fixed ul {
    margin: 10px 0;
  }
  .is-fixed ul > li:last-child {
    padding-right: 30px;
  }
  .is-fixed .page--player__searchbox {
    display: none;
  }
}

.page--taikai__nav--year {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 115px;
  height: 90px;
  border-left: solid 1px #b3b3b3;
}

.page--taikai__nav--year a {
  position: relative;
}

.page--taikai__nav--year a:after {
  position: absolute;
  top: 50%;
  right: 0;
  margin-top: -2px;
  margin-right: -15px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-style: solid;
  border-width: 6px 5px 0 5px;
  border-color: #333333 transparent transparent transparent;
  content: "";
}

.page--taikai__nav--year ul {
  width: 240px;
  display: none;
  position: absolute;
  top: 90px;
  right: -25px;
  z-index: 99;
}

.page--taikai__nav--year ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 120px;
  height: 40px;
  background-color: #f2f2f2;
  border-top: dotted 1px #b3b3b3;
}

.page--taikai__nav--year ul li:hover {
  background-color: #e6e6e6;
}

.page--taikai__nav--year ul li a:after {
  border: none;
}

.page--taikai__nav--year:hover ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.page--taikai__article-item {
  border-bottom: none;
}

.page--taikai__category {
  background: #fff;
  border: 1px solid #a02f2f;
  color: #a02f2f;
}

.page--taikai__category:hover {
  background: #a02f2f;
  color: #fff;
}

.page--taikai__article {
  padding: 0 20px;
  margin-bottom: 40px;
}

.page--taikai__article--right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 2;
}

.page--taikai__article-image--large {
  max-width: 400px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.page--taikai__article-image--small {
  max-width: 150px;
  height: auto;
}

.page--taikai__article--scroller {
  overflow: auto;
}

.page--taikai__text {
  padding: 0 20px;
  margin-bottom: 30px;
}

.page--taikai__text--red {
  color: #ed1c23;
}

.page--taikai__text a[target="_blank"]::after {
  display: inline-block;
  position: relative;
  width: 14px;
  height: 16px;
  margin-top: 5px;
  margin-left: 2px;
  background: url("../ico_external-link.html") top left no-repeat;
  background-size: 14px 16px;
  content: "";
}

.page--taikai__text p + p {
  margin-top: 1.5em;
}

.page--taikai__table {
  width: 100%;
  margin-bottom: 25px;
  font-size: 13px;
  font-size: 1.3rem;
  line-height: 1.69231;
  border-collapse: collapse;
  border-spacing: 0;
}

.page--taikai__table tr th {
  text-align: center;
  border: 1px solid #131313;
  padding: 7px 13px;
  background: #dddddd;
}

.page--taikai__table tr td {
  text-align: left;
  border: 1px solid #131313;
  padding: 7px 13px;
  background: #fff;
}

.page--taikai__image {
  margin-bottom: 70px;
}

.page--taikai__image ul {
  margin-left: 0;
}

.page--taikai__image ul li {
  list-style-type: none;
  margin-top: 20px;
}

.page--taikai__image ul li > img {
  width: 100%;
  height: auto;
}

.page--taikai__image ul li > p {
  margin-left: 10px;
}

@media (max-width: 1023px) {
  .page--taikai__nav {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--taikai__nav--year {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-end;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: auto;
    height: 50px;
    border-left: solid 1px #b3b3b3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--taikai__nav--year a {
    position: relative;
  }
  .page--taikai__nav--year a:after {
    position: relative;
    margin-top: 50%;
    margin-right: 0;
    margin-left: 5px;
    border: none;
    content: ":";
  }
  .page--taikai__nav--year ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 100px;
  }
  .page--taikai__nav--year ul li {
    display: inline-block;
    width: 70px;
    height: 50px;
    padding-top: 12px;
    background-color: transparent;
    border-top: none;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--taikai__nav--year ul li:hover {
    background-color: transparent;
  }
  .page--taikai__nav--year ul li a:after {
    content: "";
  }
  .page--taikai__nav--year:hover ul {
    display: inherit;
  }
  .page--taikai__article {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .page--taikai__article-image--large {
    max-width: 100%;
    height: auto;
  }
  .page--taikai__article-image--small {
    max-width: 120px;
    height: auto;
  }
  .page--taikai__article--scroller {
    padding-bottom: 10px;
    margin-bottom: 10px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .page--taikai__table {
    width: auto;
  }
  .page--taikai__table tr th {
    /* 				white-space: nowrap; */
  }
  .page--taikai__table tr td {
    /* 				white-space: nowrap; */
  }
  .page--taikai__table--scroller {
    min-width: 100%;
    white-space: nowrap;
    /*
				width: 900px;
				table-layout: fixed;
*/
  }
  .page--taikai__table-fixed {
    table-layout: fixed;
    width: 100%;
    margin-bottom: 35px;
  }
  .page--taikai__image {
    margin-bottom: 35px;
  }
  .page--taikai__pagenation {
    padding: 0;
  }
  .page--taikai__flex {
    background: #f2f2f2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
  }
  .page--taikai__flex .navigation__select {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .page--taikai__flex .navigation__select:first-child {
    width: 65%;
    text-align: center;
  }
  .page--taikai__flex .navigation__select:last-child {
    width: 35%;
    border-left: 1px solid #e6e6e6;
    text-align: center;
  }
}

.page--rules {
  counter-reset: num;
}

.page--rules__text {
  margin-bottom: 30px;
  color: #333333;
}

.page--rules__text--detail {
  margin: 0 20px 30px;
  color: #333333;
}

.page--rules__waza-title {
  position: relative;
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.72222;
  padding-left: 40px;
  padding-bottom: 10px;
}

.page--rules__waza-title:before {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 22px;
  height: 22px;
  top: 50%;
  left: 10px;
  padding: 2px 1px 0;
  margin-top: -15px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: "Noto Sans Japanese", sans-serif;
  background-color: #a02f2f;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  color: #fff;
  counter-increment: num;
  content: counter(num);
}

.page--rules__waza-image {
  width: 80%;
  margin: 0 auto 70px;
}

@media (max-width: 1023px) {
  .page--rules__waza-image {
    width: 100%;
    margin: 0 auto 35px;
  }
}

.top-content {
  padding: 60px 0;
}

.top-content__head {
  margin-bottom: 60px;
  text-align: center;
}

.top-content__title {
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 1.36842;
  font-weight: bold;
}

.top-content__title span {
  display: block;
  position: relative;
  text-align: center;
  color: #b11d33;
  margin-top: 18px;
  padding-top: 4px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.top-content__title span:before {
  display: block;
  position: absolute;
  left: 50%;
  top: 0;
  width: 138px;
  margin-left: -69px;
  height: 1px;
  background: #b11d33;
  content: "";
}

.top-content__foot {
  width: 600px;
  margin: 60px auto 0 auto;
}

.top-content__link {
  display: none;
}

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

.top-content.bg--gray {
  background: #f2f2f2;
}

.top-content.supponcered .supponcered__title {
  font-size: 38px;
  font-size: 3.8rem;
  line-height: 1;
}

@media (max-width: 1023px) {
  .top-content {
    padding: 30px 0;
  }
  .top-content__head {
    margin-bottom: 30px;
  }
  .top-content__title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.72727;
  }
  .top-content__title span {
    margin-top: 5px;
    font-size: 10px;
    font-size: 1rem;
    line-height: 1.7;
  }
  .top-content__title span:before {
    width: 88px;
    margin-left: -44px;
  }
  .top-content__foot {
    width: 100%;
    padding: 0 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 30px 0;
  }
  .top-content__link {
    display: block;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
  }
  .top-content__link-btn {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    width: 44.5%;
    max-width: 162px;
    height: 44px;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
    text-decoration: none;
    color: #333333;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -moz-background-clip: padding;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
  }
  .top-content__link-01 {
    background-color: #fbb03b;
    margin-right: 10px;
    padding-left: 8px;
  }
  .top-content__link-01:before {
    width: 21px;
    height: 23px;
    display: block;
    position: absolute;
    left: 8px;
    top: 10px;
    background: url(../svg/ico_frontpage-02.svg) no-repeat 0 0;
    background-size: 21px 23px;
    content: "";
  }
  .top-content__link-02 {
    background-color: #75b4b8;
    padding-left: 8px;
  }
  .top-content__link-02:before {
    width: 30px;
    height: 23px;
    display: block;
    position: absolute;
    left: 8px;
    top: 10px;
    background: url(../svg/ico_frontpage-01.svg) no-repeat 0 0;
    background-size: 30px 23px;
    content: "";
  }
  .top-content.supponcered .supponcered__title {
    font-size: 22px;
    font-size: 2.2rem;
    line-height: 1.72727;
  }
  .top-content__movie {
    position: relative;
    padding-top: 56.25%;
  }
  .top-content__movie iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
  }
}

.top-content2 {
  padding-top: 4px;
}

.top-content2__card {
  border-bottom: 4px solid #fff;
}

.top-content2__card:nth-child(even) {
  border-left: 2px solid #fff;
}

.top-content2__card:nth-child(odd) {
  border-right: 2px solid #fff;
}

.top-news-list__wrap {
  padding-top: 70px;
}

.top-news__list {
  width: 820px;
  margin: 0 auto;
}

.top-news__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 15px;
}

.top-news__list li a {
  display: block;
}

.top-news__list--thumb {
  width: 900px;
  margin: 70px auto 80px;
  position: relative;
}

.top-news__list--thumb li {
  margin-right: 42px;
}

.top-news__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.top-news__date {
  width: 130px;
  color: #808080;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.71429;
}

.top-news__category {
  width: 60px;
  height: 20px;
  text-align: center;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  background: #b11d33;
  display: inline-block;
  color: #fff;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1;
  padding: 4px 0;
  margin-right: 5px;
}

.top-news__title {
  margin-left: auto;
  width: calc( 100% - 200px);
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
}

.top-news__title a {
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  color: #333333;
}

.top-news__title a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

@media (max-width: 1023px) {
  .top-news-list__wrap {
    padding-top: 40px;
  }
  .top-news__list {
    padding: 0 25px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
  }
  .top-news__list li {
    display: block;
  }
  .top-news__list li a {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .top-news__list li a img {
    width: 100%;
    height: auto;
  }
  .top-news__list li + li {
    margin-top: 20px;
  }
  .top-news__list--thumb {
    width: 100%;
    padding: 0 50px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 30px auto 40px;
  }
  .top-news__list--thumb li {
    margin-right: 18px;
  }
  .top-news__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: start;
  }
  .top-news__title {
    -ms-flex-preferred-size: 100%;
    flex-basis: 100%;
    margin-left: 0;
    width: 100%;
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1.71429;
  }
}

.top-banner {
  text-align: center;
  padding-top: 0;
}

.top-banner a {
  display: block;
  text-align: center;
}

.top-banner a img {
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .top-banner {
    padding: 0 26px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
  }
  .top-banner a img {
    width: 100%;
    height: auto;
    vertical-align: bottom;
  }
}

.top-topics {
  margin-bottom: 60px;
}

.top-topics__body {
  width: 970px;
  margin: 0 auto;
}

@media (max-width: 1023px) {
  .top-topics {
    margin-bottom: 30px;
  }
  .top-topics__body {
    width: 100%;
    padding: 0 10px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
  }
}

.top-visual {
  padding: 150px 0 30px;
  position: relative;
  background-color: #f2f2f2;
}

.top-visual__inner {
  margin: 0 auto;
  position: relative;
}

.top-visual__item {
  max-width: 700px;
  height: 525px;
  position: relative;
  margin: 0 10px;
}

.top-visual__item a {
  display: block;
  color: #fff;
}

.top-visual__inner{
	display: none;
}

.top-visual__inner.slick-initialized{
	display: block;
}

/* .top-visual__inner > .top-visual__item:not(:first-child) {
	display: none;
} */

.top-visual__item img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
  object-fit: cover;
}

.top-visual__content {
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(2%, rgba(0, 0, 0, 0)), color-stop(39%, rgba(0, 0, 0, 0.25)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0) 2%, rgba(0, 0, 0, 0.25) 39%);
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0) 2%, rgba(0, 0, 0, 0.25) 39%);
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 2%, rgba(0, 0, 0, 0.25) 39%);
  position: absolute;
  padding: 30px 50px 40px;
  bottom: 0;
  left: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  color: #fff;
}

.no-title .top-visual__content {
  background-image: none;
}

.top-visual__title {
  font-size: 18px;
  font-size: 1.8rem;
  line-height: 1.22222;
  font-weight: 600;
}

.top-visual__prevArrow {
  width: 50px;
  height: 70px;
  position: absolute;
  left: calc((100vw - 800px) / 2);
  bottom: calc(50% - 35px);
  z-index: 90;
  cursor: pointer;
}

.top-visual__nextArrow {
  width: 50px;
  height: 70px;
  position: absolute;
  right: calc((100vw - 800px) / 2);
  bottom: calc(50% - 35px);
  z-index: 90;
  cursor: pointer;
}

.top-visual__dots {
  position: absolute;
  width: 100%;
  bottom: 40px;
  z-index: 90;
}

.top-visual__dots-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.top-visual__dots-list li {
  width: 45px;
  height: 3px;
  background: #e6e6e6;
  cursor: pointer;
}

.top-visual__dots-list li.slick-active {
  background: #b11d33;
}

.top-visual__dots-list li button {
  display: none;
}

.top-visual__dots-list li + li {
  margin-left: 9px;
}

@media (max-width: 1023px) {
  .top-visual {
    padding: 85px 0 40px;
  }
  .top-visual__content {
    padding: 20px 30px 20px;
  }
  .top-visual__item {
    width: 100vw;
    height: auto;
  }
  .top-visual__title {
    font-size: 15px;
    font-size: 1.5rem;
    line-height: 1.13333;
  }
  .top-visual__prevArrow {
    width: 20px;
    height: 28px;
    left: 0;
    bottom: calc(50% - 14px);
  }
  .top-visual__nextArrow {
    width: 20px;
    height: 28px;
    right: 0;
    bottom: calc(50% - 14px);
  }
  .top-visual__dots {
    width: 100%;
    bottom: 50px;
    z-index: 90;
  }
  .top-visual__dots-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .top-visual__dots-list li {
    width: 30px;
    height: 2px;
  }
  .top-visual__dots-list li + li {
    margin-left: 4px;
  }
}

.top-pickup {
  background-color: #333333;
  padding: 15px 10px;
}

.top-pickup__inner {
  position: relative;
}

.top-pickup__title {
  background-color: #a02f2f;
  color: #fff;
  padding: 5px 10px;
  width: 65px;
  height: 23px;
  text-align: center;
  position: absolute;
  top: -48px;
  left: 0;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.53333;
  -webkit-border-top-right-radius: 4px;
  -webkit-border-bottom-right-radius: 0;
  -webkit-border-bottom-left-radius: 0;
  -webkit-border-top-left-radius: 4px;
  -moz-border-radius-topright: 4px;
  -moz-border-radius-bottomright: 0;
  -moz-border-radius-bottomleft: 0;
  -moz-border-radius-topleft: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-top-left-radius: 4px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
}

.top-pickup__list {
  color: #fff;
}

.top-pickup__item {
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.2;
  display: inline;
}

.top-pickup__item a {
  color: #fff;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.top-pickup__item a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.top-pickup__item:before {
  content: "▶︎";
  margin-right: 5px;
}

.top-pickup__item:after {
  content: "／";
  margin: 0 10px;
}

.top-pickup__item:last-child:after {
  display: none;
}

@media (max-width: 1023px) {
  .top-pickup {
    padding: 10px 15px;
  }
  .top-pickup__inner {
    padding: 0;
  }
  .top-pickup__title {
    top: -43px;
  }
  .top-pickup__item {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 1;
  }
}

.page__search .search__list {
  background-color: #f2f2f2;
  padding: 15px 20px;
  margin-bottom: 20px;
}

.page__search .search__text {
  font-size: 1.8rem;
}

.page__search .search__class {
  font-size: 1.2rem;
  font-style: italic;
  color: #b3b3b3;
}

.page__search .search__class:after {
  content: "｜";
  margin-left: 10px;
  margin-right: 10px;
  font-style: normal;
}

.page__search .search__class a {
  color: #b3b3b3;
  text-decoration: none;
}

.page__search .search__class a:hover {
  color: #666666;
  text-decoration: underline;
}

.page__search .search__comment {
  font-size: 1.2rem;
  font-style: italic;
  color: #b3b3b3;
}

.page__search .search__comment a {
  color: #b3b3b3;
  text-decoration: none;
}

.page__search .search__comment a:hover {
  color: #666666;
  text-decoration: underline;
}

.page__sale table {
  width: 100%;
}

.page__sale table tr {
  border-bottom: 1px solid #f2f2f2;
  width: 100%;
  text-align: left;
}

.page__sale table th {
  width: 100px;
  padding: 15px 15px 15px 20px;
}

.page__instructor-renaissance-img {
  max-width: 400px;
  height: auto;
  margin: 0 auto;
}

.signup {
  overflow: hidden;
  display: block;
  position: fixed;
  top: 108px;
  right: -5px;
  width: 45px;
  text-decoration: none;
  background-color: #a02f2f;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  z-index: 110;
}

.signup:before {
  display: block;
  width: 100%;
  height: 100%;
  background: #a02f2f;
  position: absolute;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  top: 100%;
  left: 0;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  z-index: -1;
  content: "";
}

.signup:hover:before {
  background: #ed1c23;
  top: 0;
}

.signup__inner {
  padding: 20px 20px 20px 14px;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

.signup-02 {
  top: 209px;
}

.signup-02 .signup__inner {
  padding-left: 6px;
  line-height: 1.08;
}

.signup-03 {
  top: 310px;
}

.signup-sp {
  position: fixed;
  top: 20px;
  right: 70px;
  z-index: 110;
  text-decoration: none;
  display: block;
}

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

.signup-sp img {
  width: 30px;
  height: auto;
}

.signup-sp__text {
  color: #a02f2f;
  font-size: 11px;
  font-size: 1.1rem;
  line-height: 1.09091;
}

.sns-block {
  background-color: #cccccc;
  padding: 100px 0;
}

.sns-block__inner {
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.sns-block__comment {
  font-size: 28px;
  font-size: 2.8rem;
  line-height: 1.42857;
  text-align: center;
  font-weight: bold;
  position: relative;
  padding: 30px;
}

.sns-block__comment:before {
  content: "";
  display: inline-block;
  background-image: url(../svg/sns-left.svg);
  width: 40px;
  height: 86px;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}

.sns-block__comment:after {
  content: "";
  display: inline-block;
  background-image: url(../svg/sns-right.svg);
  width: 40px;
  height: 86px;
  background-size: contain;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto;
}

.sns-block__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.sns-block__kind {
  text-align: center;
  padding: 0 1%;
  width: calc(92% / 4);
}

.sns-block__kind a {
  display: block;
  text-decoration: none;
  color: #333333;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.sns-block__kind a:hover {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.sns-block__kind img {
  width: 70px;
  height: auto;
}

.sns-block__kind figcaption {
  background-color: #fff;
  padding: 5px 10px;
  margin-top: 30px;
  text-decoration: none;
  color: #333333;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  position: relative;
}

.sns-block__kind figcaption:before {
  content: "";
  position: absolute;
  right: 0;
  top: -10px;
  left: 0;
  width: 0px;
  height: 0px;
  margin: auto;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid #fff;
}

@media (max-width: 1023px) {
  .sns-block {
    padding: 0;
  }
  .sns-block__inner {
    display: block;
  }
  .sns-block__wrap {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
  }
  .sns-block__kind figcaption {
    display: none;
  }
}

.sitemap-list {
  margin-bottom: 20px;
}

.sitemap-list__item {
  padding-left: 35px;
  margin-bottom: 1em;
  position: relative;
}

.sitemap-list__item a {
  color: #333333;
}

.sitemap-list__icon {
  color: #333333;
  text-decoration: none;
  font-weight: bold;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  display: block;
}

.sitemap-list__icon:before {
  width: 24px;
  height: 24px;
  display: block;
  position: absolute;
  left: 0;
  top: 3px;
  background: url(../svg/ico_button_arrow.svg) no-repeat 0 0;
  background-size: 24px 24px;
  content: "";
}

.sitemap-list__icon:hover {
  color: #a02f2f;
}

.sitemap-list__title {
  font-weight: bold;
}

.sitemap-list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: flex-wrap;
  -ms-flex-pack: flex-wrap;
  justify-content: flex-wrap;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 10px 10px 0 20px;
}

.sitemap-list02__title {
  width: 100%;
  color: #808080;
}

.sitemap-list02__item {
  width: calc(100% / 3);
}

.sitemap-list02__item a {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 400;
  color: #a02f2f;
  text-decoration: underline;
  font-weight: nomal;
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
}

.sitemap-list02__item a:hover {
  color: #ed1c23;
}

.sitemap-list03 {
  padding: 10px 10px 0 55px;
}

@media (max-width: 1023px) {
  .sitemap-list02 {
    padding-top: 0;
    margin-left: -20px;
  }
  .sitemap-list02__item {
    width: 100%;
  }
}

@media (max-width: 1023px) and (max-width: 1023px) {
  .sitemap-list03 {
    padding-top: 0;
    margin-left: -20px;
  }
}

.start-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.start-grid-item {
  width: 20%;
}

.start-grid-item img {
  width: 100%;
  height: auto;
}

@media (max-width: 1023px) {
  .start-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .start-grid-item {
    width: 50%;
  }
}

.dream-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: start;
}

.dream-grid-img {
  width: 33%;
}

.dream-grid-img img {
  width: 100%;
  height: auto;
}

.dream-grid-img img a {
  display: block;
}

.dream-grid-text {
  width: 66%;
}

@media (max-width: 1023px) {
  .dream-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    display: -webkit-flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
  .dream-grid-img {
    width: 70%;
    margin: 0 auto 20px;
  }
  .dream-grid-text {
    width: 100%;
    padding-left: 0;
  }
}

.tax-dojo_master_area .header__nav-item:nth-child(6) > span:before {
  display: block;
  position: absolute;
  bottom: 0px;
  width: 100%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.15s linear;
  -moz-transition: all 0.15s linear;
  -webkit-transition: all 0.15s linear;
  -o-transition: all 0.15s linear;
  -ms-transition: all 0.15s linear;
  transition: all 0.15s linear;
  height: 4px;
  background: #a02f2f;
  content: "";
}

.look-form-img img {
  width: 80%;
  height: auto;
  border: 1px solid #e0e0e0;
  display: block;
  margin: 0 auto;
}

.look-form-img p {
  color: #808080;
  font-size: 1.3rem;
  text-align: center;
}

.look-form-box {
  background: #fff2cc;
  padding: 20px;
  margin-bottom: 70px;
}

.look-form-one {
  border: solid 3px #f81e1e;
  border-radius: 10px;
  padding: 20px 15px 20px 120px;
  margin-bottom: 20px;
  position: relative;
}

.look-form-one:before {
  position: absolute;
  content: "";
  background: url(../png/ico_image1.png) 0 0 no-repeat;
  background-size: contain;
  width: 100px;
  height: 127px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5px;
}

.look-form-two {
  border: solid 3px #2f528f;
  border-radius: 10px;
  padding: 20px 15px 20px 120px;
  margin-bottom: 20px;
  position: relative;
}

.look-form-two:before {
  position: absolute;
  content: "";
  background: url(../png/ico_image2.png) 0 0 no-repeat;
  background-size: contain;
  width: 100px;
  height: 127px;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 5px;
}

.look-form-three {
  border: solid 3px #000;
  border-radius: 10px;
  padding: 20px 15px;
}

.look-form-title {
  font-size: 1.8rem;
  font-weight: bold;
}

@media (max-width: 1023px) {
  .look-form-one {
    padding: 110px 15px 20px;
  }
  .look-form-one:before {
    width: 80px;
    height: 102px;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .look-form-two {
    padding: 110px 15px 20px;
  }
  .look-form-two:before {
    width: 80px;
    height: 102px;
    top: 5px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
}

.look-map {
  width: 100%;
  background-image: url(../loading.html);
  background-repeat: no-repeat;
  background-position: center center;
  margin-bottom: 50px;
  border: 1px solid #ccc;
}

.look-map iframe {
  display: block;
  margin: 0 auto;
}

.look-map-text {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.5;
}

.look-map-text small {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.28571;
}

@media (max-width: 1023px) {
  .look-map {
    margin-bottom: 10px;
  }
  .look-map iframe {
    width: 100%;
  }
  .look-map-text {
    text-align: left;
  }
}

/*
  
  object/utility
  
*/
.u-text--left {
  text-align: left !important;
}

.u-text--right {
  text-align: right !important;
}

.u-text--center {
  text-align: center !important;
}

.u-text--h-center {
  vertical-align: middle !important;
}

.u-text--small {
  font-size: 1.2rem !important;
  font-size: 12px !important;
}

.u-text--medium {
  font-size: 1.6rem !important;
  font-size: 16px !important;
}

.u-text--large {
  font-size: 1.8rem !important;
  font-size: 18px !important;
}

.u-mb--10 {
  margin-bottom: 10px !important;
}

.u-mb--20 {
  margin-bottom: 20px !important;
}

.u-mb--30 {
  margin-bottom: 30px !important;
}

.u-mb--40 {
  margin-bottom: 40px !important;
}

.u-mb--50 {
  margin-bottom: 50px !important;
}

.u-mb--60 {
  margin-bottom: 60px !important;
}

.u-mb--70 {
  margin-bottom: 70px !important;
}

.u-mb--80 {
  margin-bottom: 80px !important;
}

.u-mb--90 {
  margin-bottom: 90px !important;
}

.u-mb--100 {
  margin-bottom: 100px !important;
}

.link-block {
  padding-top: 170px;
}

.link-block__title {
  text-align: center;
  margin-bottom: 20px;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.75;
  font-weight: bold;
  color: #333333;
}

.link-block ul {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.link-block ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: -webkit-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  width: 100%;
  color: #a02f2f;
  text-decoration: none;
}

.link-block ul li a:hover {
  color: #fff;
}

.link-block__banner {
  position: relative;
  padding-top: 170px;
}

.link-block__banner img {
  width: 100%;
  height: auto;
  margin-left: -9px;
}

@media (max-width: 1023px) {
  .link-block {
    padding-top: 20px;
  }
  .link-block__banner {
    padding-top: 20px;
  }
}

.grecaptcha-badge {
  visibility: hidden;
}

/*# sourceMappingURL=judo.css.map */

/* supponcered 20230329 */
.largelogo{
  width: calc(460px - 1px);
}
@media (max-width: 1023px) {
  .largelogo{
    width: calc(100% - 5px);
  }
  .supponcered__row{
    width: 100%;
  }
}

/* Schedule Domestic Overseas  20240408 */

.page-contents a.button--lg {
  color: #fff;
}
#domestic,#overseas {
  padding-top: 140px; 
  margin-top: -140px; 
}
.domestic_overseas{
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-between;
	justify-content: space-between;
  width: 100%;
  margin: 0 0 30px;
}
.domestic_overseas .button--lg{
width: 35%;
}
.domestic_overseas.rotate .button--lg__arrow--left:after {
  transform: rotate(90deg);
}
.domestic_overseas.top {
  width: 820px;
  margin: 40px auto 0px;
}
.pc_none{
  display: none;
}
.banner-media.banner-media__text{
  color: #000;
}

@media (max-width: 1023px) {
  #domestic,#overseas {
    padding-top: 100px; 
    margin-top: -100px; 
  }
  .domestic_overseas,.domestic_overseas.top{
    width: 100%;
    margin: 20px 0px 30px;
    box-sizing: border-box;
  }
  .domestic_overseas.top{
    padding: 0 20px;
  }
  .domestic_overseas.top a{
    font-size: 13px;

  }
  .domestic_overseas .button--lg{
    width: 42%;
    padding: 0 0 0 20px;
    height: 0px;
  }
  .domestic_overseas.top .button--lg__arrow--left:after {
  width: 40px;
  }
  .pc_none{
    display: inline;
  }  
  .banner-media.banner-media__text{
    font-size: 14px;
    padding-top: 7px;
    margin-top: -10px;
  }
  
}


