@charset "UTF-8";
.f_min {
  font-family: "Noto Serif JP", "Noto Serif CJK JP", "Roboto Slab", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", serif;
}

/* CSS Document */
/*! normalize.css v3.0.3 | MIT License | github.com/necolas/normalize.css */
html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

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

audio, canvas, progress, video {
  display: inline-block;
  vertical-align: baseline;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden], template {
  display: none;
}

a {
  background-color: transparent;
}

a:active, a:hover {
  outline: 0;
}

abbr[title] {
  border-bottom: 1px dotted;
}

b, strong {
  font-weight: 700;
}

dfn {
  font-style: italic;
}

h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

mark {
  background: #ff0;
  color: #000;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  top: -0.5em;
}

sub {
  bottom: -0.25em;
}

img {
  border: 0;
}

svg:not(:root) {
  overflow: hidden;
}

figure {
  margin: 1em 40px;
}

hr {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0;
}

pre {
  overflow: auto;
}

code, kbd, pre, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

button, input, optgroup, select, textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

button, select {
  text-transform: none;
}

button, html input[type=button], input[type=reset], input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
}

button[disabled], html input[disabled] {
  cursor: default;
}

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

input {
  line-height: normal;
}

input[type=checkbox], input[type=radio] {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

input[type=search] {
  -webkit-appearance: textfield;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 700;
}

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

td, th {
  padding: 0;
}

/* -----------------------------------------------
 [1. Base(ベース)]
-------------------------------------------------- */
html, body {
  width: 100%;
  height: 100%;
}

html {
  font-size: 62.5%; /* sets the base font to 10px for easier math */
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-overflow-scrolling: touch;
}

body {
  font-family: "Noto Sans JP", "Roboto", "游ゴシック", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "M PLUS 1p", "Lato", sans-serif;
  font-weight: 400;
  font-size: 1.5rem; /* sets the default sizing to make sure nothing is actually 10px */
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  line-height: 1.4;
  color: #000;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media screen and (min-width: 741px) {
  body {
    margin: auto;
  }
}
* {
  -webkit-box-sizing: border-box; /* border-box ------------------------------ */
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

*:before,
*:after {
  -webkit-box-sizing: border-box; /* border-box ------------------------------ */
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
}

html, body, div, span, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, code, del, em, img, strong,
dl, dt, dd, ol, ul, li,
fieldset, form, label,
table, caption, tbody, tfoot, thead, tr, th, td {
  margin: 0;
  padding: 0;
  font-style: normal;
}

ul, ol, li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

dl, dl dd {
  margin: 0;
}

img {
  vertical-align: bottom;
  line-height: 1;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
}

figure,
figcaption {
  margin: 0;
  font-size: inherit;
}

blockquote, q {
  quotes: none;
}

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

a {
  color: #000;
  text-decoration: none;
}

a:hover,
a:focus {
  color: #595959;
}

a:focus {
  outline: thin dotted;
  outline: 5px auto -webkit-focus-ring-color;
  outline-offset: -2px;
}

canvas {
  image-rendering: optimizeQuality;
  image-rendering: -moz-crisp-edges;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: optimize-contrast;
  -ms-interpolation-mode: nearest-neighbor;
}

button {
  border: 0;
  background: transparent;
  -webkit-box-shadow: 0 0 0 0 transparent;
  box-shadow: 0 0 0 0 transparent;
}

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

/* -----------------------------------------------
 [2. Layout(レイアウト)]
-------------------------------------------------- */
.body {
  background-color: #390000;
}

main {
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  background: #ededed;
}

img {
  width: 100%;
}

@media screen and (max-width: 480px) {
  main {
    max-width: 100%;
  }
}
.warp {
  width: 750px;
  margin: 0 auto;
}

@media screen and (max-width: 480px) {
  .warp {
    width: 100%;
    margin: 0 auto;
  }
}
.warp::after {
  display: block;
  clear: both;
  content: "";
}

.ttl {
  background: -webkit-gradient(linear, left top, left bottom, from(#414650), to(#000));
  background: linear-gradient(#414650 0%, #000 100%);
  color: #fff;
  text-align: center;
  width: 100%;
  line-height: 1;
  padding: 10.6666666667% 0;
}
.ttl h2 {
  font-family: "Roboto", "Oswald", sans-serif;
  font-size: min(9.3333333333vw, 7rem);
  font-weight: 900;
  width: 100%;
}
.ttl p {
  font-size: 2.9rem;
  font-size: min(4vw, 3rem);
  font-weight: 700;
  width: 100%;
}
/*メニュー
-------------------------------------------------- */
/* header
-------------------------------------------------- */
header {
  position: absolute;
  left: calc(50% - 375px);
  top: 0;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
@media screen and (max-width: 750px) {
  header {
    left: 0;
  }
}

header .logoLink {
  position: relative;
  z-index: 10;
  width: 26.1333333333%;
}

header .logoBG {
  width: 22.6666666667%;
  margin: 2.6666666667% 0 0 4%;
  vertical-align: top;
  position: relative;
  z-index: 10;
}

header .itemLink {
  color: #FFF;
  position: fixed;
  right: calc(50% - 375px + 4px);
  top: 7px;
  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;
  width: 228px;
  padding: 18px 0;
  padding-left: 5px;
  font-size: 3rem;
  font-weight: 500;
  line-height: 1;
  z-index: 1000;
  border-radius: 50px;
  background: -webkit-gradient(linear, left top, left bottom, from(#dc150c), to(#e90909));
  background: linear-gradient(#dc150c 0%, #e90909 100%);
}
@media screen and (max-width: 750px) {
  header .itemLink {
    font-size: min(4vw, 3rem);
    right: 4px;
    top: 0.5333333333vw;
    width: 30.4%;
    padding: 2.4% 0;
    padding-left: 7px;
    white-space: nowrap;
  }
}
@media screen and (max-width: 480px) {
  header .itemLink header .itemLink {
    max-width: 130px;
    height: 40px;
  }
}

header .itemLink::after {
  content: "";
  display: inline-block;
  margin-left: 14px;
  margin-top: 5px;
  width: 0;
  height: 0;
  border-top: 14px solid #FFF;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
}

@media screen and (max-width: 750px) {
  header .itemLink::after {
    border-width: 1.8666666667vw 1.0666666667vw 0 1.0666666667vw;
    margin-left: 1.8666666667vw;
    margin-top: 0.6666666667vw;
  }
}
/*--------------------------------------------------*/
.kv {
  background: #0F1013;
  position: relative;
  overflow: hidden;
}
.kv_catch {
  position: absolute;
  left: 3%;
  top: 8%;
  width: 95.7%;
}
.kv_copy {
  position: absolute;
  left: 7.6%;
  width: 84.8%;
  top: 72%;
}
.kv_lineup {
  position: absolute;
  left: 2.6%;
  width: 94.7%;
  top: 78%;
}

.youtube {
  background-color: #ACAFB5;
  padding: 60px 50px;
}

@media screen and (max-width: 480px) {
  .youtube {
    padding: 30px 25px;
  }
}
.youtubeIframe {
  position: relative;
  padding-bottom: 56.5%;
  height: 0;
  overflow: hidden;
}

.youtubeIframe iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.youtube p {
  font-size: 3rem;
  word-break: break-all;
  padding: 18px 0 36px;
}

@media screen and (max-width: 480px) {
  .youtube p {
    font-size: 1.5rem;
    padding: 9px 0 18px;
  }
}
.magazine {
  background-color: #ACAFB5;
  padding: 60px 50px;
}

@media screen and (max-width: 480px) {
  .magazine {
    padding: 30px 25px;
  }
}
.magazine img {
  width: 100%;
}

.magazine p {
  font-size: 3rem;
  word-break: break-all;
  padding: 18px 0 0;
}

@media screen and (max-width: 480px) {
  .magazine p {
    font-size: 1.5rem;
    padding: 9px 0 0;
  }
}
.staffBlog {
  /*margin-bottom: 30px;*/
  background-color: #ACAFB5;
  padding: 70px 30px 80px;
}

@media screen and (max-width: 480px) {
  .staffBlog {
    padding: 30px 25px 35px;
  }
}
.staffBlogLink {
  position: relative;
  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;
  width: 100%;
  height: 100px;
  background-color: #28893A;
  border: solid 1px #28893A;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 40px;
}

@media screen and (max-width: 480px) {
  .staffBlogLink {
    height: 50px;
    color: #fff;
    font-size: 1.4rem;
    margin-top: 20px;
  }
}
@media only screen and (max-device-width: 320px) { /* iPhone 5・SE */
  .staffBlogLink {
    font-size: 1.2rem;
  }
}
.staffBlogLink::after {
  position: absolute;
  content: "";
  right: 20px;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 480px) {
  .staffBlogLink::after {
    right: 5px;
    width: 8px;
    height: 8px;
    margin: 0 10px;
    border-width: 1px;
  }
}
.staffBlogLink:hover {
  color: #28893A;
  background-color: #fff;
}

.staffBlogLink:hover::after {
  border-color: #28893A;
}

.ef-blogs {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -moz-flex;
  display: flex;
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.ef-blogs .ef-item {
  position: relative;
  width: 330px;
  margin-bottom: 55px;
}

@media screen and (max-width: 480px) {
  .ef-blogs .ef-item {
    width: 48%;
    margin-bottom: 30px;
  }
}
.js-photo-ofi img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  font-family: "object-fit: scale-down;";
  position: absolute;
  left: 0;
  top: 0;
  vertical-align: middle;
}

.homeBlogEntries__entry__link .homeBlogEntries__entry__image {
  position: relative;
  display: block;
  height: 0;
  background-color: #EFEFEF;
  padding-bottom: 100%;
  overflow: hidden;
  margin-bottom: 25px;
}

@media screen and (max-width: 480px) {
  .homeBlogEntries__entry__link .homeBlogEntries__entry__image {
    margin-bottom: 10px;
  }
}
.homeBlogEntries__entry__link .homeBlogEntries__entry__image img {
  max-width: inherit;
  max-height: inherit;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  position: absolute;
  left: 0;
  top: 0;
  vertical-align: middle;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.homeBlogEntries__entry__link {
  display: block;
  width: 100%;
}

.homeBlogEntries__entry__link .content-entry {
  padding: 15px;
}

@media screen and (max-width: 480px) {
  .homeBlogEntries__entry__link .content-entry {
    padding: 10px;
  }
}
.homeBlogEntries__entry__link .homeBlogEntries__entry__date {
  color: #740003;
  font-size: 2.4rem;
  line-height: 1;
  margin-bottom: 10px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 480px) {
  .homeBlogEntries__entry__link .homeBlogEntries__entry__date {
    font-size: 1.2rem;
    margin-bottom: 5px;
  }
}
.homeBlogEntries__entry__link .homeBlogEntries__entry__title {
  padding-bottom: 2em;
  margin-bottom: 10px;
  font-size: 2.8rem;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 480px) {
  .homeBlogEntries__entry__link .homeBlogEntries__entry__title {
    font-size: 1.4rem;
    margin-bottom: 5px;
  }
}
.homeBlogEntries__entry__link .homeBlogEntries__entry__name {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: #740003;
  font-size: 2.4rem;
  padding: 6px;
  text-align: center;
  border: solid 1px #740003;
  border-radius: 6px;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

@media screen and (max-width: 480px) {
  .homeBlogEntries__entry__link .homeBlogEntries__entry__name {
    font-size: 1.2rem;
    padding: 3px;
    border-radius: 4px;
  }
}
@media only screen and (min-width: 768px) {
  .homeBlogEntries__entry__link:hover .homeBlogEntries__entry__title {
    opacity: 0.8;
  }
  .homeBlogEntries__entry__link:hover .homeBlogEntries__entry__datee {
    opacity: 0.8;
  }
  .homeBlogEntries__entry__link:hover .homeBlogEntries__entry__name {
    opacity: 0.8;
  }
  .homeBlogEntries__entry__link:hover .homeBlogEntries__entry__image img {
    opacity: 0.8;
    -webkit-transform: scale(1.03);
            transform: scale(1.03);
  }
}
#section_end {
  background-color: #fff;
}

.pickupLink {
  background-color: #3A3B3C;
  padding: 65px 50px;
}

@media screen and (max-width: 480px) {
  .pickupLink {
    padding: 32px 25px;
  }
}
.pickupLink li:first-of-type {
  margin-bottom: 40px;
}

@media screen and (max-width: 480px) {
  .pickupLink li:first-of-type {
    margin-bottom: 20px;
  }
}
.pickupLink li a {
  position: relative;
  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;
  width: 100%;
  height: 100px;
  background-color: #28893A;
  border: solid 1px #28893A;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 480px) {
  .pickupLink li a {
    height: 50px;
    color: #fff;
    font-size: 1.4rem;
  }
}
@media only screen and (max-device-width: 320px) { /* iPhone 5・SE */
  .pickupLink li a {
    font-size: 1.2rem;
  }
}
.pickupLink li a::after {
  position: absolute;
  content: "";
  right: 20px;
  display: inline-block;
  width: 12px;
  height: 12px;
  margin: 0 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 480px) {
  .pickupLink li a::after {
    right: 5px;
    width: 8px;
    height: 8px;
    margin: 0 10px;
    border-width: 1px;
  }
}
.pickupLink li a:hover {
  color: #28893A;
  background-color: #fff;
}

.pickupLink li a:hover::after {
  border-color: #28893A;
}

.panel h3 {
  color: #fff;
  text-align: center;
  font-size: 4rem;
  margin: 4rem 0 5rem;
}

@media screen and (max-width: 480px) {
  .panel h3 {
    font-size: 2rem;
    margin: 2rem 0 2.5rem;
  }
}
/* footer
-------------------------------------------------- */
footer {
  background: #000;
  color: #fff;
  /*padding: 100px 0 240px;*/
  padding: 100px 0 100px;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  text-align: center;
}

@media screen and (max-width: 480px) {
  footer {
    /*padding: 50px 0 120px;*/
    padding: 50px 0 50px;
    width: 100%;
  }
}
footer img {
  width: 360px;
  height: auto;
}

footer small {
  font-size: 2.2rem;
}

@media screen and (max-width: 480px) {
  footer small {
    font-size: 1.1rem;
  }
}
footer a {
  display: block;
  margin: 0 auto 20px;
  width: 360px;
}

@media screen and (max-width: 480px) {
  footer a {
    display: block;
    margin: 0 auto 3px;
    width: 180px;
  }
}
footer a img {
  width: 100%;
  height: auto;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

footer a:hover img {
  opacity: 0.8;
}

#footerBnr {
  position: fixed;
  bottom: 0.5rem;
  width: 100%;
  z-index: 99;
  text-align: center;
}

#footerBnr a {
  display: block;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  border-radius: 90px;
  z-index: 1;
}

#footerBnr a img {
  width: 98%;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

#footerBnr a:hover img {
  -webkit-filter: brightness(160%);
          filter: brightness(160%);
}

p.shopseal {
  width: 45%;
  font-size: 3rem;
  font-weight: 600;
  color: #29893a;
  line-height: 3.5rem;
  padding: 1.5rem;
  background: #fff;
  margin: 3.5rem 0 0;
  border: solid 2px #29893a;
}

@media screen and (max-width: 480px) {
  p.shopseal {
    font-size: 1.5rem;
    line-height: 2rem;
    margin: 1.5rem 0 0;
    padding: 0.5rem 1rem;
  }
}
p.caution {
  color: #fff;
  font-size: 2rem;
  padding-top: 2rem;
}

@media screen and (max-width: 480px) {
  p.caution {
    font-size: 1.2rem;
    padding-top: 1rem;
  }
}
.reflection {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.reflection:after {
  content: "";
  height: 100%;
  width: 30px;
  position: absolute;
  top: -180px;
  left: 0;
  background-color: #fff;
  opacity: 0;
  -webkit-transform: rotate(45deg);
  -webkit-animation: reflection 2s ease-in-out infinite;
}

@-webkit-keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}

@keyframes reflection {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
div.karte-widget__container, div._karte-temp-btn__1ajW_ {
  display: none !important;
}

main {
  background: #000;
}

.intro {
  padding-top: 10.5%;
  padding-bottom: 12%;
}
.intro-point {
  width: 92%;
  margin-inline: auto;
  margin-top: 62px;
  border: 1px solid #28893A;
}
.intro-point-ttl {
  background: #28893A;
  text-align: center;
  font-size: min(5.3333333333vw, 4rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.5;
  padding: 20px;
}
.intro-point-dtl {
  padding: 40px;
  color: #fff;
}
@media screen and (max-width: 480px) {
  .intro-point-dtl {
    padding: 20px;
  }
}
.intro-point-dtl p {
  font-size: min(4.8vw, 3.6rem);
  line-height: 1.44;
  text-align: center;
  font-weight: 700;
}
.intro-point-img {
  margin-top: 20px;
}
.intro-txt {
  color: #fff;
  font-size: min(4.8vw, 3.6rem);
  font-weight: 700;
  text-align: center;
  width: 92%;
  margin: 0 auto;
  line-height: 1.44;
}
.intro-img {
  margin-top: 3.3%;
}

.tech {
  color: #fff;
  padding-top: 16%;
}
.tech-ttl {
  font-weight: 700;
  text-align: center;
  width: 92%;
  margin-inline: auto;
}
.tech-ttl-sub {
  font-size: 4.8rem;
  display: block;
}
.tech-ttl-main {
  font-size: 7rem;
  display: block;
  margin-top: 1.2rem;
}
.tech-ttl-main .text-s {
  font-size: 4rem;
}
.tech-img {
  margin-bottom: -9%;
}
.tech-desc {
  width: 92%;
  margin-inline: auto;
  text-align: center;
  font-weight: 700;
  padding-bottom: 17%;
}
.tech-desc-S {
  font-size: min(6.6666666667vw, 5rem);
  display: block;
}
.tech-desc-L {
  font-size: min(14.6666666667vw, 11rem);
  line-height: 1.2;
  color: #DD150C;
}
.tech-desc-L .text-s {
  font-size: 58%;
  color: #fff;
}
.tech-inf {
  background: #131313;
  padding-top: 4.8%;
}
.tech-inf-ttl {
  text-align: center;
  font-size: min(5.2vw, 3.9rem);
  font-weight: 700;
  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;
  gap: 3rem;
}
.tech-inf-ttl::before, .tech-inf-ttl::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 1px;
  background: #fff;
}
@media screen and (max-width: 480px) {
  .tech-inf-ttl::before, .tech-inf-ttl::after {
    width: 20px;
  }
}
.tech-inf-catch {
  margin-top: 5.3%;
}
.tech-inf-catch-intro {
  font-size: min(7.0666666667vw, 5.3rem);
  line-height: 1.3;
  text-align: center;
  font-weight: 700;
  color: #fff;
}
.tech-inf-catch-tag {
  max-width: 650px;
  width: 92%;
  margin: 5.7% auto 0;
}
.tech-inf-catch-desc {
  margin: 4% auto 0;
  max-width: 650px;
  width: 92%;
  font-size: min(3.2vw, 2.4rem);
  line-height: 1.5;
}
.tech-inf-img {
  margin-top: 5.3%;
  width: 100;
  margin-inline: auto;
}
.tech-dtl {
  background: #131313;
  padding-left: 4%;
  padding-right: 4%;
  margin-top: -12%;
}
.tech-dtl-ttl {
  text-align: center;
  width: 92%;
  margin-inline: auto;
  font-size: min(7.0666666667vw, 5.3rem);
}
.tech-dtl-inf {
  margin-top: 4.4%;
  max-width: 650px;
  width: 92%;
  margin-inline: auto;
}
.tech-dtl-inf-tag {
  margin-bottom: 4.2%;
}
.tech-dtl-inf p {
  font-size: min(3.2vw, 2.4rem);
  line-height: 1.5;
  color: #fff;
}
.tech-dtl-inf-img {
  margin-top: 6.9%;
}
.tech-dtl-inf2 {
  margin-top: 11.4%;
  max-width: 650px;
  width: 92%;
  margin-inline: auto;
  padding-bottom: 12%;
}
.tech-dtl-inf2-ttl {
  text-align: center;
  color: #F7FE2B;
  font-size: min(4.8vw, 3.6rem);
  font-weight: 700;
  margin-bottom: 2.6%;
}
.tech-dtl-inf2 p {
  font-size: min(3.2vw, 2.4rem);
  line-height: 1.5;
  color: #fff;
}
.tech-dtl-inf2-img {
  margin-top: 13%;
}
.tech-list {
  padding: 8% 0 17%;
}
.tech-list-ttl {
  text-align: center;
  width: 92%;
  margin-inline: auto;
}
.tech-list-ttl-M {
  font-size: min(6vw, 4.5rem);
  display: inline-block;
  margin-bottom: 2%;
}
.tech-list-ttl-bdr {
  font-size: min(6.8vw, 5.1rem);
  display: inline-block;
  border: 1px solid #fff;
  padding: 0.4rem 1rem;
}
.tech-list-ttl-L {
  font-size: min(8.9333333333vw, 6.7rem);
}
.tech-list-itm {
  width: 92%;
  max-width: 650px;
  margin-inline: auto;
  margin-top: 10.6%;
}
.tech-list-itm + .tech-list-itm {
  margin-top: 14.7%;
}
.tech-list-itm-ttl {
  font-size: min(4.6666666667vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.7;
  padding-left: 20px;
  border-left: 10px solid #AC0009;
}
.tech-list-itm-dtl {
  margin-top: 4%;
}
.tech-list-itm-dtl-desc {
  font-size: min(3.2vw, 2.4rem);
  line-height: 1.5;
  color: #fff;
  margin-top: 4%;
}

.structure-ttl {
  background: -webkit-gradient(linear, left top, left bottom, from(#ac0009), to(#500));
  background: linear-gradient(#ac0009 0%, #500 100%);
  padding: 6%;
  text-align: center;
  color: #fff;
  font-size: min(5.6vw, 4.2rem);
  font-weight: 700;
  line-height: 1.5;
}
.structure-list {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), to(#fff));
  background: linear-gradient(#e6e6e6 0%, #fff 100%);
  padding: 7.4% 6.6% 10.6%;
}
.structure-list-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5.2%;
  padding-bottom: 4.5%;
  position: relative;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.is-limited .structure-list-ttl {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.structure-list-ttl::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  display: block;
  height: 4px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(232, 232, 232, 0.4)), to(#464646));
  background: linear-gradient(to left, rgba(232, 232, 232, 0.4) 0%, #464646 100%);
}
.structure-list-ttl-img {
  height: 6.6%;
  max-height: 50px;
}
@media screen and (max-width: 750px) {
  .structure-list-ttl-img img {
    max-height: 6.6vw;
  }
}
.is-limited .structure-list-ttl-img {
  height: 12%;
  max-height: 90px;
}
@media screen and (max-width: 750px) {
  .is-limited .structure-list-ttl-img img {
    max-height: 11.5vw;
  }
}
.structure-list-ttl-icn {
  background: #DD150C;
  display: grid;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-align: center;
  font-weight: 700;
  color: #fff;
  font-size: min(4.2666666667vw, 3.2rem);
  padding: 6px 26px;
  max-height: 60px;
}
.structure-list-dtl {
  margin-top: 4.8%;
}
.structure-outro {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), to(#fff));
  background: linear-gradient(#e6e6e6 0%, #fff 100%);
  padding: 7.4% 6.6% 10.6%;
}
.structure-outro-ttl {
  font-size: min(5.0666666667vw, 4.8rem);
  font-weight: 700;
  padding-bottom: 4.5%;
  position: relative;
}
.structure-outro-ttl::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  display: block;
  height: 4px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(232, 232, 232, 0.4)), to(#464646));
  background: linear-gradient(to left, rgba(232, 232, 232, 0.4) 0%, #464646 100%);
}
.structure-outro-lst {
  margin-top: 5.3%;
}
.structure-outro-lst + .structure-outro-lst {
  margin-top: 8%;
}
.structure-outro-lst-ttl {
  font-size: min(3.8666666667vw, 2.9rem);
  font-weight: 700;
  line-height: 1.5;
  padding-bottom: 2%;
  border-bottom: 1px solid #969696;
}
.structure-outro-lst-dtl {
  margin-top: 3.6%;
}
.structure-outro-lst-dtl-img {
  max-height: 220px;
  height: 29%;
  margin-bottom: 2.6%;
}
@media screen and (max-width: 480px) {
  .structure-outro-lst-dtl-img {
    height: 29vw;
  }
}
.structure-outro-lst-dtl-img img {
  height: 100%;
  width: auto;
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 750px) {
  .structure-outro-lst:first-of-type .structure-outro-lst-dtl-img img {
    width: 58vw;
    height: auto;
  }
  .structure-outro-lst:nth-of-type(2) .structure-outro-lst-dtl-img img {
    width: 86vw;
    height: auto;
  }
}
.structure-outro-lst-dtl p {
  font-size: min(3.2vw, 2.4rem);
  line-height: 1.5;
}
.structure-map {
  background: -webkit-gradient(linear, left top, left bottom, from(#e6e6e6), to(#fff));
  background: linear-gradient(#e6e6e6 0%, #fff 100%);
  padding: 7.4% 6.6% 0;
}
.structure-map-ttl {
  font-size: min(5.0666666667vw, 4.8rem);
  font-weight: 700;
  padding-bottom: 4.5%;
  position: relative;
}
.structure-map-ttl::after {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  width: 100%;
  display: block;
  height: 4px;
  background: -webkit-gradient(linear, right top, left top, from(rgba(232, 232, 232, 0.4)), to(#464646));
  background: linear-gradient(to left, rgba(232, 232, 232, 0.4) 0%, #464646 100%);
}
.structure-map-img {
  margin-top: 5.3%;
}

.campaign-dtl {
  background: #363636;
  padding: 6.6% 6.6% 10.6%;
}
.campaign-ttl {
  color: #F7FE2B;
  text-align: center;
  font-size: min(6.4vw, 4.8rem);
  font-weight: 700;
}
.campaign-date {
  text-align: center;
}
.campaign-date p {
  display: inline-block;
  border: 1px solid #fff;
  font-size: min(7.7333333333vw, 5.8rem);
  margin: 3.46% auto;
  padding: 1% 5.8% 3%;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  vertical-align: middle;
  letter-spacing: 0.1em;
}
.campaign-date .text-m {
  font-size: 70%;
}
.campaign-date .text-s {
  font-size: 55%;
}
.campaign-info {
  background: #fff;
  margin-top: 7.3%;
}
.campaign-info-lst-ttl-txt {
  background: #717171;
  font-size: min(6vw, 4.5rem);
  font-weight: 700;
  color: #fff;
  padding: 0 7% 0 4%;
  position: relative;
  max-height: 68px;
}
.campaign-info-lst-ttl-txt::after {
  position: absolute;
  bottom: -1px;
  top: 0;
  right: -1px;
  content: "";
  display: block;
  height: 102%;
  width: 30px;
  background: #fff;
  clip-path: polygon(100% 0, 0% 100%, 100% 100%);
}
.campaign-info-lst-dtl {
  padding: 5% 4% 8%;
}
.campaign-info-lst-dtl-ttl {
  text-align: center;
  font-weight: 900;
  font-size: min(7.7333333333vw, 5.8rem);
  line-height: 1.2;
}
.campaign-info-lst-dtl-ttl .text-l {
  color: #DD150C;
  font-size: min(9.0666666667vw, 6.8rem);
}
.campaign-info-lst-dtl-note {
  font-size: min(2.4vw, 1.8rem);
  margin-top: 4%;
  padding-left: 1%;
}
.campaign-info-lst-dtl-desc {
  font-size: min(3.2vw, 2.4rem);
  margin-top: 4%;
}

.lineup-item {
  background: linear-gradient(135deg, rgb(255, 255, 255) 0%, rgb(217, 217, 217) 100%);
  padding: 8% 0 0;
}
.lineup-item-img {
  padding-right: 0;
  padding-left: 4%;
}
.lineup-item-spec {
  margin-top: -13%;
  padding-left: 4%;
  padding-right: 4%;
  padding-bottom: 6.7%;
}
.is-bx1st_hy .lineup-item-spec {
  margin-top: -25%;
}
.lineup-item-spec > p {
  font-size: min(3.2vw, 2.4rem);
  font-weight: 500;
}
.lineup-item-spec-dtl {
  margin-top: 4.4%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: 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;
  grid-template-columns: 1fr 1fr;
}
.lineup-item-spec-dtl-shaft {
  font-size: min(3.2vw, 2.4rem);
  font-weight: 400;
}
.lineup-item-spec-dtl-price {
  line-height: 1;
}
.lineup-item-spec-dtl-price-icon {
  font-size: min(2.9333333333vw, 2.2rem);
}
.lineup-item-spec-dtl-price-value {
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  font-size: min(7.8666666667vw, 5.9rem);
}
.lineup-item-spec-dtl-price-value .text-s {
  font-size: 72.8%;
}
.lineup-item-spec-dtl-price-tax {
  font-size: min(2.9333333333vw, 2.2rem);
}
.lineup-item-spec-note {
  margin-top: 2.6%;
  font-size: min(2.6666666667vw, 2rem);
}
.lineup-item-spec-lim {
  background: #000;
  padding: 7.3% 5.3% 8%;
  color: #fff;
}
.lineup-item-spec-lim-ttl {
  border-bottom: 2px solid #fff;
  padding-bottom: 1.4%;
  display: grid;
  grid-template-columns: auto 1fr;
  width: 100%;
}
.lineup-item-spec-lim-ttl img {
  height: 34px;
  display: inline-block;
}
@media screen and (max-width: 480px) {
  .lineup-item-spec-lim-ttl img {
    height: 4.5vw;
  }
}
.lineup-item-spec-lim-ttl p {
  font-size: min(3.8666666667vw, 2.9rem);
  font-weight: 700;
}
.lineup-item-spec-lim-desc {
  margin-top: 1.4%;
  font-size: min(3.2vw, 2.4rem);
  line-height: 1.5;
}
.lineup-item-spec-lim-link {
  margin-top: 5.3%;
}
.lineup-item-spec-lim-link a {
  display: grid;
  width: 100%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 100%;
  height: 100px;
  text-align: center;
  border: 2px solid #28893A;
  color: #28893A;
  font-size: min(3.6vw, 2.7rem);
  font-weight: 700;
  background: #fff;
  -webkit-transition: linear 0.2s;
  transition: linear 0.2s;
}
@media screen and (max-width: 480px) {
  .lineup-item-spec-lim-link a {
    height: 13.3vw;
  }
}
.lineup-item-spec-lim-link a:hover {
  background: #28893A;
  color: #fff;
}

.pickupLink-note {
  text-align: center;
  color: #fff;
  margin-top: 5px;
  font-size: 2.4rem;
}
@media screen and (max-width: 480px) {
  .pickupLink-note {
    font-size: 3.2vw;
  }
}

#section_blog .staffBlogLink {
  background: #DD150C;
  border: 1px solid #DD150C;
}
#section_blog .staffBlogLink:hover {
  background: #fff;
  color: #DD150C;
}
#section_blog .staffBlogLink:hover::after {
  border-color: #DD150C;
}

.ef-blogs .ef-item {
  background: #fff;
}
@media screen and (max-width: 480px) {
  .ef-blogs .ef-item {
    margin-bottom: 20px;
  }
}

.homeBlogEntries__entry__link .homeBlogEntries__entry__date {
  color: #DD150C;
}

.homeBlogEntries__entry__link .homeBlogEntries__entry__image {
  border: 1px solid #fff;
  margin-bottom: 0;
}

.homeBlogEntries__entry__link .homeBlogEntries__entry__title {
  margin-bottom: 10px;
  padding-bottom: 0;
}

.homeBlogEntries__entry__link .homeBlogEntries__entry__name {
  border: none;
  position: relative;
  text-align: left;
  color: #DD150C;
}/*# sourceMappingURL=style.css.map */

.tokuten01 {
  
}
.tokuten02 {
  width: 80%;
  margin: 0 auto;
}
.bnr_jgr {
  margin-top: 10%;
  display: block;
}
.annotation-lineup {
  color: #000;
  margin-top: 3%;
}
.noLink {
  position: relative;
  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;
  width: 100%;
  height: 100px;
  background-color: #999;
  border: solid 1px #999;
  color: #fff;
  font-size: 2.7rem;
  font-weight: 700;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  margin-top: 40px;
}

@media screen and (max-width: 480px) {
  .noLink {
    height: 50px;
    color: #fff;
    font-size: 1.4rem;
    margin-top: 20px;
  }
}

.release-info {
  color: #fff;
  font-size: 3.6rem;
  font-weight: 600;
  width: 92%;
  margin: 62px auto 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 480px) {
  .release-info {
    font-size: 1.8rem;
  }
}
.release-info-container {
  width: 49%;
  border: 1px solid #28893A;
}
.release-info-ttl {
  text-align: center;
  padding: 15px;
  background: #28893A;
}
@media screen and (max-width: 480px) {
  .release-info-ttl {
    padding: 10px;
  }
}
.release-info-date {
  text-align: center;
  padding: 20px;
}
@media screen and (max-width: 480px) {
  .release-info-date {
    padding: 15px;
  }
}
strong.date {
  font-size: 5.5rem;
}
@media screen and (max-width: 480px) {
  strong.date {
    font-size: 2.5rem;
  }
}

#link_bnr {
  background-color: #000;
  padding: 0 50px 60px;
}
@media screen and (max-width: 480px) {
  #link_bnr {
    padding: 0 25px 30px;
  }
}
.bnr_b1b2 {
	display: block;
}
.bnr_b1b2 img {
	width: 100%;
	transition: .3s;
}
.bnr_b1b2:hover img {
	filter: brightness(160%);
}