@charset "UTF-8";
/*
** 1.Reset
*/
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;
}

body article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "Yu Gothic UI", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Arial", sans-serif;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: unset;
}

@media only screen and (-webkit-min-device-pixel-ratio: 2), (-webkit-min-device-pixel-ratio: 2), (min-resolution: 2dppx) {
  .body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
  }
}
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;
}

a:link, a:visited, a:hover {
  text-decoration: none;
  color: inherit;
  color: initial;
}
a img {
  border-width: 0px;
  border-style: none;
  border-color: #fff;
  background: transparent;
  outline: none;
}

img, *:focus {
  outline: none;
}

p {
  font-size: 15px;
  font-weight: 500;
  -webkit-transform: rotate(0.05deg);
          transform: rotate(0.05deg);
}

h1, h2, h3, h4, h5 {
  -webkit-transform: rotate(0.05deg);
          transform: rotate(0.05deg);
}

/*
** Common style
*/
html {
  min-width: 1100px;
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  margin-right: 0;
}
@media (min-width: 1025px) {
  body {
    margin-right: 357px;
    border-right: 1px solid lightgray;
  }
}

h1 {
  font-weight: bold;
  color: #000;
  font-size: 18px;
}

/* print setting */
@media print {
  @page {
    size: A4;
    margin: 12.7mm 9.7mm;
  }
  body {
    -webkit-print-color-adjust: exact;
    top: 0 !important;
    left: 0 !important;
  }
  header,
  footer {
    display: none !important;
  }
  .fr,
  .fl {
    float: none !important;
  }
}
header {
  width: 100%;
  height: 100%;
  background-color: rgb(255, 255, 255);
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99;
  -webkit-transition-duration: 0.1s;
          transition-duration: 0.1s;
}
@media (min-width: 1025px) {
  header {
    width: 357px;
  }
}
header.-scrolled {
  background-color: white;
  -webkit-transition-duration: 0.2s;
          transition-duration: 0.2s;
}
header .header__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 4rem 2rem;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 1.4;
}
header .header__logo strong {
  font-size: 1.3em;
}
header .header__container {
  overflow-y: auto;
  height: 100%;
  position: relative;
}
header .header__container::-webkit-scrollbar {
  width: 5px;
}
header .header__container::-webkit-scrollbar-track {
  background-color: #ccc;
}
header .header__container::-webkit-scrollbar-thumb {
  background-color: #6f294e;
  border-radius: 6px;
}
header .header__gnav {
  border-top: 1px solid lightgray;
}
header .accordion-area {
  padding: 2rem 0 2rem 5rem;
}
header .accordion.-current .accordion-button:after {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
header .accordion.-current .accordion-panel {
  max-height: 500px;
}
header .accordion + .accordion {
  margin-top: 1rem;
}
header .accordion-button {
  position: relative;
  display: block;
  cursor: pointer;
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 18px;
  text-align: left;
  padding: 0.7em 0;
  color: #6f294e;
}
header .accordion-button:after {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  position: absolute;
  right: 2em;
  top: 0;
  bottom: 0;
  margin: auto;
  border-right: 2px solid #6f294e;
  border-bottom: 2px solid #6f294e;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .accordion-panel {
  border-radius: 10px 0 0 10px;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: max-height 0.4s ease-out;
  transition: max-height 0.4s ease-out;
}
header .accordion-item > a {
  display: block;
  background-color: #F2F2F2;
  font-size: 16px;
  padding: 1.2em 1.6em;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .accordion-item > a:hover {
  background-color: #6f294e;
  color: #fff;
}
header .messages-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 1px;
}
header .messages-item {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .messages-item:nth-child(1) {
  background-color: #81254F;
}
header .messages-item:nth-child(2) {
  background-color: #59254F;
}
header .messages-item:nth-child(2) span {
  line-height: 1.3em;
}
header .messages-item:nth-child(3) {
  background-color: #B3244E;
}
header .messages-item:hover {
  background-color: #fff;
}
header .messages-item:hover a,
header .messages-item:hover button {
  color: #6f294e;
}
header .messages-item:hover a:after,
header .messages-item:hover button:after {
  border-color: #6f294e;
}
header .messages-item:hover img {
  -webkit-filter: invert(20%) sepia(8%) saturate(7306%) hue-rotate(284deg) brightness(94%) contrast(90%);
          filter: invert(20%) sepia(8%) saturate(7306%) hue-rotate(284deg) brightness(94%) contrast(90%);
}
header .messages-item:hover .accordion-item a {
  color: initial;
}
header .messages-item img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
  -webkit-filter: invert(99%) sepia(10%) saturate(184%) hue-rotate(156deg) brightness(119%) contrast(90%);
          filter: invert(99%) sepia(10%) saturate(184%) hue-rotate(156deg) brightness(119%) contrast(90%);
}
header .messages-item .accordion-panel {
  border-radius: 0;
}
header .messages-item:nth-child(2) img {
  padding-inline: 2px;
}
header .messages-item > a,
header .messages-item > button {
  position: relative;
  padding: 1.5em 2em;
  font-size: 16px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 0.5em;
}
header .messages-item > a small,
header .messages-item > button small {
  font-size: 0.7em;
}
header .messages-item > a:after,
header .messages-item > button:after {
  content: "";
  display: block;
  width: 0.4em;
  height: 0.4em;
  position: absolute;
  right: 2em;
  top: 0;
  bottom: 0;
  margin: auto;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
header .messages-item > button::after {
  border-top: none;
  border-bottom: 2px solid #fff;
}
header .messages-item.-current {
  background-color: #fff;
}
header .messages-item.-current button {
  color: #6f294e;
}
header .messages-item.-current button::after {
  border-color: #6f294e;
}
header .messages-item.-current button img {
  -webkit-filter: invert(20%) sepia(8%) saturate(7306%) hue-rotate(284deg) brightness(94%) contrast(90%);
          filter: invert(20%) sepia(8%) saturate(7306%) hue-rotate(284deg) brightness(94%) contrast(90%);
}
header .messages-item.-current a:hover {
  color: #fff;
}
header .messages-item.-current .accordion-item {
  color: initial;
  line-height: 1.2;
}
header .contents {
  padding: 3em 3em 6em;
}
header .contents .title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 0.5em;
  color: #6f294e;
  font-size: 16px;
}
header .contents__movie-list,
header .contents__color-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  border-radius: 10px;
  overflow: hidden;
}
header .contents__movie-list {
  margin-top: 1rem !important;
}
header .contents__movie-item > a {
  display: block;
  background-color: #F4F4F4;
  color: #6f294e;
  padding: 1.2em 1em;
  text-align: center;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  font-size: 16px;
  border: none !important;
}
header .contents__movie-item > a:hover {
  background-color: #6f294e;
  color: #fff;
  cursor: pointer;
}
header .contents__movie-item > a.disable {
  pointer-events: none;
}
header .contents__color-item > a {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 40px 1fr;
  background-color: #6f294e;
  color: #fff;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  padding: 1em 0.5em;
  font-size: 16px;
  min-height: 90px;
  line-height: 1.5;
}
header .contents__color-item > a img {
  margin: 0 auto;
  max-width: 50px;
  max-height: 45px;
}
header .contents__color {
  margin-top: 3.5rem;
}

footer .inner {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
footer .grid {
  display: grid;
  grid-template-columns: -webkit-max-content 1fr;
  grid-template-columns: max-content 1fr;
  gap: 5%;
}
footer .flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
footer .upper {
  padding: 40px 0;
  background-color: #FAF8F9;
}
footer .lower {
  padding: 20px 0;
  background-color: #6f294e;
  color: white;
}
footer .copyright {
  font-size: 10px;
}
footer .name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: yu gothic;
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 3rem;
  line-height: 1.4;
}
footer .name strong {
  font-size: 20px;
}
footer .info {
  line-height: 1.5;
}
footer .info p {
  font-weight: normal;
}
footer .sitemap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 4em;
}
footer .sitemap h4 {
  color: #6f294e;
  font-size: 16px;
  font-weight: bold;
  position: relative;
  margin-bottom: 15px;
}
footer .sitemap h4:before {
  content: "";
  height: 5px;
  width: 5px;
  border-radius: 100%;
  background: #6f294e;
  display: block;
  position: absolute;
  bottom: 0;
  top: 0;
  left: -10px;
  margin: auto;
}
footer .sitemap a {
  font-size: 13px;
  line-height: 2;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
footer .sitemap a:hover {
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  opacity: 0.7;
}
footer .sitemap .lines {
  line-height: 1.2;
  margin-block: 4px;
}
footer .sitemap .box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-left: 1em;
}
footer .links {
  margin: 0 auto 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  line-height: 18px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
footer .links li {
  font-size: 12px;
  padding: 0 20px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}
footer .links li:hover {
  opacity: 0.7;
}
footer .links li:not(:last-of-type) {
  border-right: 1px solid #fff;
}
footer .links a {
  color: #fff;
}

.breadcrumbs {
  padding: 2.5rem 5rem;
}
.breadcrumbs .breadcrumbs-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.breadcrumbs .breadcrumbs-item {
  position: relative;
  font-size: 16px;
}
.breadcrumbs .breadcrumbs-item a {
  text-decoration: underline;
}
.breadcrumbs .breadcrumbs-item:not(:last-child) {
  margin-right: 0.5rem;
  padding-right: 2.5rem;
}
.breadcrumbs .breadcrumbs-item:not(:last-child):after {
  content: "";
  display: inline-block;
  -webkit-filter: invert(21%) sepia(9%) saturate(5780%) hue-rotate(283deg) brightness(91%) contrast(90%);
          filter: invert(21%) sepia(9%) saturate(5780%) hue-rotate(283deg) brightness(91%) contrast(90%);
  background-image: url("../images/common/caret-forward-outline.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 1.2em;
  height: 1.2em;
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}

#document-modal {
  padding: 4rem;
  width: 100%;
  margin: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#document-modal h4 {
  font-size: 18px;
  font-weight: 500;
  color: #6f294e;
  text-align: center;
}
#document-modal .flex {
  width: 100%;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#document-modal .flex a {
  width: calc(50% - 10px);
  padding: 10px;
  font-size: 18px;
  font-weight: 500;
  color: #6f294e;
  border: 2px solid #6f294e;
  border-radius: 5px;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  text-align: center;
}
#document-modal .flex a:hover {
  background: #6f294e;
  color: #fff;
}
#document-modal .flex a {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#document-modal p {
  line-height: 1.75;
}
#document-modal em {
  font-weight: bold;
  line-height: 40px;
}
#document-modal strong {
  text-decoration: underline;
}

.sp {
  display: none;
}

#lamp {
  display: none;
}

@media (max-width: 1024px) {
  .sp {
    display: block;
  }
  #document-modal {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  #document-modal .flex {
    padding: 0;
    margin: 20px auto;
  }
  #document-modal .flex a {
    font-size: 14px;
    padding: 4px 0;
  }
  #document-modal p {
    padding-left: 0;
  }
  h1 {
    font-size: 12px;
    line-height: 1.5;
    padding-left: 6px;
    text-align: left;
  }
  header {
    height: 72px;
  }
  header .header__logo {
    height: 100%;
    padding: 0 2rem;
  }
  header .header__container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  header .header__gnav {
    border-top: none;
  }
  header .contents__color-item > a {
    min-height: 120px;
  }
  header .sp-btn {
    position: absolute;
    right: 12px;
    top: 13px;
    margin: auto;
    height: 49px;
    -webkit-transform: scale(0.9);
            transform: scale(0.9);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 1rem;
  }
  header .sp-btn .bar {
    height: 2px;
    width: 41px;
    display: block;
    background: #B3244E;
    border-radius: 20px;
    -webkit-transition: 0.3s;
    transition: 0.3s;
  }
  header .sp-btn .bar:nth-child(1) {
    width: 62px;
  }
  header .sp-btn.-active .bar:nth-child(1) {
    -webkit-transform: translate(0, 18px) rotate(35deg);
            transform: translate(0, 18px) rotate(35deg);
  }
  header .sp-btn.-active .bar:nth-child(3) {
    -webkit-transform: translate(0, -8px) rotate(-35deg);
            transform: translate(0, -8px) rotate(-35deg);
    width: 62px;
  }
  header .sp-btn.-active .bar:nth-child(2) {
    opacity: 0;
  }
  header .header__nav {
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
    display: block;
    background: #fff;
    height: 100vh;
    position: fixed;
    width: 100%;
    max-width: 357px;
    right: -357px;
    top: 0;
    margin-top: 72px;
    z-index: 99;
  }
  header .header__nav.-open {
    right: 0;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}
@media (max-width: 1024px) and (max-width: 1024px) {
  header .header__nav.-open * {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
  }
  header .header__nav.-open > .header__gnav {
    padding: 0;
    height: calc(100vh - 80px);
    overflow-y: scroll;
    display: block;
  }
}
@media (max-width: 1024px) {
  footer .container {
    width: 90%;
  }
  footer .info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer h3 {
    line-height: 30px;
  }
  footer .sitemap {
    display: none;
  }
  footer .lower {
    padding: 3rem 0 5rem;
  }
  footer .lower .flex {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 4rem;
  }
  footer .links {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
  footer .links li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    padding: 2.5rem 0 1.5rem;
    font-size: 14px;
  }
  footer .links li:not(:last-of-type) {
    border-right: none;
  }
  .breadcrumbs {
    margin-top: 72px;
    padding: 2.5rem 5%;
  }
}
@media (max-width: 1024px) {
  html {
    min-width: auto;
    width: auto;
  }
  .block.-current > p:after {
    width: 100%;
    height: 2px;
  }
}
.base {
  background-color: #808080;
}

.bg {
  background-color: #f8f8f8;
}

.hide {
  display: none;
}

.modal_win video + p:nth-last-child(2) {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
}

.modal {
  cursor: pointer;
}
.modal[href^="#"] + [id] {
  display: none;
}

.modal_contents {
  display: none;
}

.modal_win {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  z-index: 1000;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  display: none;
}
.modal_win * {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.modal_win > * {
  background-color: #f8f8f8;
}
@media screen and (max-width:979px) {
  .modal_win > p {
    width: auto;
    height: auto;
    max-width: calc(100% - 2rem);
    max-height: calc(100% - 2rem);
  }
  .modal_win > p > img {
    width: 100%;
    height: 100%;
  }
}
.modal_win img {
  opacity: inherit;
}
.modal_win video {
  width: 100%;
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width:980px) {
  .modal_win iframe {
    /*       width: 100%;
     height: 100%;
     max-width: 74rem;//max-width: 120rem;
     max-height: 90rem;*/
    width: 98rem;
    height: 100%;
    max-width: 100%;
    min-height: 551px;
  }
}
.modal_win > div {
  width: min(980px, 90%);
}
@media screen and (min-width:980px) {
  .modal_win > div {
    max-width: 980px;
    max-height: 75%;
  }
}
@media screen and (max-width:979px) {
  .modal_win > div {
    max-width: calc(100% - 3.2rem);
    max-height: calc(100% - 3.2rem);
  }
  .modal_win > div > div {
    overflow-y: scroll;
    max-height: calc(100vh - 3.2rem);
  }
}
.modal_win > * {
  position: relative;
}
.modal_win > * > .close {
  position: absolute;
  z-index: 2;
}
@media screen and (min-width:980px) {
  .modal_win > * > .close {
    right: -2rem;
    top: -2rem;
    width: 4.5rem;
    height: 4.5rem;
  }
}
@media screen and (max-width:979px) {
  .modal_win > * > .close {
    right: -1rem;
    top: -1rem;
    width: 3rem;
    height: 3rem;
  }
}
.modal_win > * > .close {
  background-color: #fff;
  border-radius: 50%;
  border: 2px solid #808080;
}
.modal_win > * > .close::before, .modal_win > * > .close::after {
  content: "";
  position: absolute;
  display: block;
  left: 33.33%;
  right: 33.33%;
  top: calc(50% - 1px);
  background-color: #808080;
  height: 2px;
}
.modal_win > * > .close::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal_win > * > .close::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal_win > * > .close:hover {
  background-color: #808080;
}
.modal_win > * > .close:hover::before, .modal_win > * > .close:hover::after {
  background-color: #fff;
}
.modal_win > p {
  position: relative;
}
.modal_win > p .caption {
  position: absolute;
  display: block;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  padding: 1.6rem 3.2rem;
  color: #fff;
  text-shadow: 0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.25), -0.2rem -0.2rem 0.4rem rgba(0, 0, 0, 0.25), -0.2rem 0.2rem 0.4rem rgba(0, 0, 0, 0.25), -0.2rem -0.2rem 0.4rem rgba(0, 0, 0, 0.25);
  background: -webkit-gradient(linear, left bottom, left top, color-stop(50%, rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
}
.modal_win > p .prev,
.modal_win > p .next {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  top: 0;
  bottom: 0;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 3.2rem;
}
.modal_win > p .prev::before,
.modal_win > p .next::before {
  content: "";
  display: block;
  width: 1.5em;
  height: 1.5em;
  border: solid #fff;
  border-width: 0.2em 0.2em 0 0;
  opacity: 0;
}
.modal_win > p .prev:hover::before,
.modal_win > p .next:hover::before {
  opacity: 1;
}
.modal_win > p .prev:hover {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
}
.modal_win > p .prev {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  left: 0;
}
.modal_win > p .prev::before {
  -webkit-transform: rotate(-135deg);
          transform: rotate(-135deg);
}
.modal_win > p .next:hover {
  background: -webkit-gradient(linear, right top, left top, color-stop(50%, rgba(0, 0, 0, 0.75)), to(rgba(0, 0, 0, 0)));
  background: linear-gradient(-90deg, rgba(0, 0, 0, 0.75) 50%, rgba(0, 0, 0, 0) 100%);
}
.modal_win > p .next {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  right: 0;
}
.modal_win > p .next::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal_win video + p:last-child {
  background-color: #000;
  color: #fff;
  text-align: center;
  padding: 1rem 2rem;
}
.modal_win .flex_pc.clm {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.modal_win .flex_pc.clm > * {
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
}
.modal_win h5 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 2.4rem;
  padding: 0 1em;
  border-bottom: 0.25rem solid #ccc;
}
@media screen and (max-width:979px) {
  .modal_win h5 {
    margin-bottom: 3.2rem;
  }
}
.modal_win .title_area {
  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;
}
.modal_win .box {
  padding: 3.2rem;
  font-size: 1.4rem;
  line-height: 2.25;
}
@media screen and (min-width:980px) {
  .modal_win .box {
    left: -3.2rem !important;
    width: calc(100% + 3.2rem);
  }
}
@media screen and (max-width:979px) {
  .modal_win .box {
    width: 100%;
  }
}

.modal-video-body {
  width: 90% !important;
  max-width: 980px !important;
  padding: 0 !important;
}

.modal-video-inner {
  padding: 0 !important;
}

.news article p + p,
.club-column p + p {
  margin-top: 1em;
}
.news article h4:not(:first-child),
.news article h5:not(:first-child),
.club-column h4:not(:first-child),
.club-column h5:not(:first-child) {
  margin-top: 2em;
}
.news article h4 span,
.news article h5 span,
.club-column h4 span,
.club-column h5 span {
  display: block;
  font-size: 0.5em;
  letter-spacing: 0.075em;
  line-height: 2;
  font-weight: 700;
  font-family: "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", sans-serif;
}
.news article h4 span:before, .news article h4 span:after,
.news article h5 span:before,
.news article h5 span:after,
.club-column h4 span:before,
.club-column h4 span:after,
.club-column h5 span:before,
.club-column h5 span:after {
  content: "";
  width: 0.75em;
  height: 0.075em;
  background-color: #333;
  display: inline-block;
  vertical-align: super;
}
.news article h4 span:after,
.news article h5 span:after,
.club-column h4 span:after,
.club-column h5 span:after {
  margin-left: 0;
}
.news article h4 span:before,
.news article h5 span:before,
.club-column h4 span:before,
.club-column h5 span:before {
  margin-right: 0.5rem;
}
.news article,
.club-column {
  /*  h2 {
    font-weight: 700;
    font-size: 1.8rem;
    line-height: 2.6rem;
    letter-spacing: 0.075em;
    +p{
      font-family: $mincho;
      line-height: 1.8333;
      text-align: center;
    	margin-bottom: 6rem;//margin-bottom: 5rem;
    	margin-top: 4rem;//margin-top: 2rem;
    }
    &:last-child {
      margin-bottom: 5rem;
    }
  }
  h3 {
    color: $sc_color;
    font-weight: 500;
    font-size: 2.4rem;
    &+* {
      margin-top: 2rem
    }
    span {
      &:before,
      &:after {
        background-color: $sc_color;
      }
    }
  }*/
}
.news article h4,
.club-column h4 {
  font-weight: 700;
  position: relative;
  font-size: 2.2rem;
  line-height: 1.36;
  padding: 0.5em 0;
  display: inline-block;
}
.news article h5,
.club-column h5 {
  font-weight: 700;
  font-size: 2rem;
  display: inline-block;
  line-height: 2;
  text-align: center;
  border-bottom: 2px solid #911d4d;
}
.news article a[href]:not([href*=pdf]):not([href*=xls]),
.club-column a[href]:not([href*=pdf]):not([href*=xls]) {
  text-decoration: underline;
}
.news article a[href]:not([href*=pdf]):not([href*=xls])::before,
.club-column a[href]:not([href*=pdf]):not([href*=xls])::before {
  content: "";
  display: inline-block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: solid #911d4d;
}
.news article a[href]:not([href*=pdf]):not([href*=xls]):not([target=_blank]),
.club-column a[href]:not([href*=pdf]):not([href*=xls]):not([target=_blank]) {
  margin-left: 0.5em;
}
.news article a[href]:not([href*=pdf]):not([href*=xls]):not([target=_blank])::before,
.club-column a[href]:not([href*=pdf]):not([href*=xls]):not([target=_blank])::before {
  border-width: 0 0.15em 0.15em 0;
  width: 0.5em;
  height: 0.5em;
  margin-right: 0.5em;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.news article a[href]:not([href*=pdf]):not([href*=xls]).modal,
.club-column a[href]:not([href*=pdf]):not([href*=xls]).modal {
  position: relative;
  padding-right: 2em;
}
.news article a[href]:not([href*=pdf]):not([href*=xls]).modal::before,
.club-column a[href]:not([href*=pdf]):not([href*=xls]).modal::before {
  position: absolute;
  top: calc(50% - 0.5em);
  right: 0;
  border-width: 0.3em 0.15em 0.15em;
  width: 1em;
  height: 1em;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
}
.news article a[href]:not([href*=pdf]):not([href*=xls])[target=_blank],
.club-column a[href]:not([href*=pdf]):not([href*=xls])[target=_blank] {
  position: relative;
  margin-right: 1em;
}
.news article a[href]:not([href*=pdf]):not([href*=xls])[target=_blank]::before,
.club-column a[href]:not([href*=pdf]):not([href*=xls])[target=_blank]::before {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  position: absolute;
  top: calc(50% - 0.6em);
  right: -0.2em;
  border-width: 0.15em 0.15em 0 0;
  width: 0.75em;
  height: 0.75em;
}
.news article a[href]:not([href*=pdf]):not([href*=xls])[target=_blank]::after,
.club-column a[href]:not([href*=pdf]):not([href*=xls])[target=_blank]::after {
  content: "";
  margin-left: 0.5em;
  display: inline-block;
  border: solid #911d4d;
  border-width: 0.15em;
  width: calc(1em - 4px);
  height: calc(1em - 4px);
}
.news article a[href]:not([href*=pdf]):not([href*=xls]):hover,
.club-column a[href]:not([href*=pdf]):not([href*=xls]):hover {
  color: #911d4d;
  font-weight: 700;
}
.news article a[href]:not([href*=pdf]):not([href*=xls]):not(:first-child),
.club-column a[href]:not([href*=pdf]):not([href*=xls]):not(:first-child) {
  margin-left: 0.5em;
}

a[href*=".pdf"]::after {
  content: "PDF";
  background: linear-gradient(45deg, transparent 0, #911d4d 0), linear-gradient(135deg, transparent 0, #911d4d 0), linear-gradient(225deg, transparent 25%, #911d4d 25%), linear-gradient(315deg, transparent 0, #911d4d 0);
}

a[href*=".xls"]::after {
  content: "XLS";
  background: linear-gradient(45deg, transparent 0, #106b37 0), linear-gradient(135deg, transparent 0, #106b37 0), linear-gradient(225deg, transparent 25%, #106b37 25%), linear-gradient(315deg, transparent 0, #106b37 0);
}

a[href*=".pdf"]::after,
a[href*=".xls"]::after {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: relative;
  bottom: 0.3em;
  margin-left: 1em;
  font-size: 0.5em;
  color: #fff;
  width: 2.5em;
  height: 3em;
  padding-top: 0.5em;
  background-position: bottom left, bottom right, top right, top left;
  background-size: 60% 60%;
  background-repeat: no-repeat;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}

a.no_icon,
.no_icon a {
  display: inline !important;
  padding: 0 !important;
}
a.no_icon::before, a.no_icon::after,
.no_icon a::before,
.no_icon a::after {
  content: none !important;
}

.u-pc {
  display: block !important;
}
@media screen and (max-width:979px) {
  .u-pc {
    display: none !important;
  }
}

.u-sp {
  display: none !important;
}
@media screen and (max-width:979px) {
  .u-sp {
    display: block !important;
  }
}/*# sourceMappingURL=common.css.map */