@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
@font-face {
  font-family: "Anton";
  font-style: normal;
  font-weight: 400;
  src: url("https://fonts.googleapis.com/css2?family=Anton&display=swap");
}
/*
--------------------------------------------------
HEADER USER
--------------------------------------------------
*/
header {
  height: 104px;
}
@media screen and (max-width: 1023px) {
  header {
    height: 56px;
  }
}
header > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #000;
  position: fixed;
  z-index: 99;
  width: 100vw;
}
@media screen and (max-width: 1023px) {
  header > .wrap {
    height: 56px;
  }
}

.logo_site {
  order: 1;
  padding-left: 40px;
  max-width: 228px;
}
@media screen and (max-width: 1023px) {
  .logo_site {
    padding-left: 10px;
    z-index: 999;
  }
}
@media screen and (max-width: 1023px) {
  .logo_site img {
    width: auto;
    height: 32px;
  }
}

#login {
  border-left: 1px solid #444;
  order: 3;
  padding: 25px 0px 17px;
  text-align: center;
  width: 127px;
  position: relative;
  transition: opacity 0.2s ease-in-out;
  opacity: 1;
  visibility: visible;
}
#login.hidden {
  visibility: hidden;
  opacity: 0;
}
@media screen and (max-width: 1023px) {
  #login {
    width: auto;
    padding: 5px 10px 4px;
    position: absolute;
    right: 68px;
    z-index: 999;
  }
}
#login > a {
  display: block;
  width: 100%;
}
#login img {
  height: 40px;
  width: 40px;
  margin: auto;
}
@media screen and (max-width: 1023px) {
  #login img {
    display: block;
    width: auto;
    height: 27px;
    margin: 0px auto 2px;
  }
}
#login .menu_text {
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: 700;
}
@media screen and (max-width: 1023px) {
  #login .menu_text {
    font-size: 12px;
  }
}
#login.active ul {
  visibility: visible;
  opacity: 1;
}
#login ul {
  visibility: hidden;
  opacity: 0;
  width: 200px;
  position: absolute;
  bottom: 0px;
  right: 0;
  transform: translate(0, 100%);
  z-index: 99;
  transition: opacity 0.2s ease-in-out;
}
#login ul li {
  background-color: #000;
  transition: all 0.3s;
  position: relative;
}
#login ul li::before {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #333;
  position: absolute;
  top: 0;
  left: 0;
}
#login ul li:hover {
  opacity: 0.8;
}
#login ul li a {
  display: flex;
  justify-content: left;
  align-items: center;
  text-align: left;
  color: #fff;
  text-decoration: none;
  position: relative;
  min-height: 50px;
  padding: 10px 10px 10px 30px;
}
#login ul li a::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: rotate(135deg);
  position: absolute;
  left: 15px;
  top: calc(50% - 2px);
}

/*
--------------------------------------------------
NAV
--------------------------------------------------
*/
nav {
  order: 2;
}
nav .header_nav_menu .pc {
  display: block;
  margin: 0 20px;
}
nav .header_nav_menu .pc ul {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
nav .header_nav_menu .pc ul li {
  padding-right: 24px;
}
nav .header_nav_menu .pc ul li:last-child {
  padding-right: 0;
}
nav .header_nav_menu .pc ul li a {
  color: #fff;
  display: block;
  font-size: clamp(0.875rem, 1.3671875vw, 1rem);
  font-weight: 700;
  line-height: 1.2;
}
nav .header_nav_menu .sp {
  position: fixed;
  background: rgba(0, 0, 0, 0.9);
  width: 100vw;
  height: calc(100dvh - 56px);
  top: 56px;
  right: -120%;
  z-index: 99;
  overflow-y: auto;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  overscroll-behavior-y: contain;
}
nav .header_nav_menu .sp .container {
  height: calc(100vh - 56px + 1px);
  height: calc(100dvh - 56px + 1px);
}
nav .header_nav_menu .sp .container .row {
  align-items: stretch;
}
nav .header_nav_menu .sp::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 56px;
  background: #000;
}
nav .header_nav_menu .sp .row {
  flex-flow: row;
  flex-wrap: wrap;
  width: 95vw;
  margin: auto;
}
nav .header_nav_menu .sp ul {
  width: 46.25vw;
  position: relative;
}
nav .header_nav_menu .sp ul:nth-of-type(3) {
  margin-top: 5.3333333333vw;
  margin-left: 48.75vw;
}
nav .header_nav_menu .sp ul:nth-of-type(3)::before {
  content: "MENU";
  display: block;
  position: absolute;
  right: 58.5vw;
  top: 14vw;
  font-family: "Anton";
  font-size: 24vw;
  line-height: 1;
  opacity: 0.3;
  transform: rotate(-90deg);
  letter-spacing: 0.02em;
  color: #fff;
}
nav .header_nav_menu .sp ul li {
  border-bottom: 1px solid #666;
}
nav .header_nav_menu .sp ul li a {
  display: block;
  position: relative;
  padding: 2.6666666667vw 0px 2.6666666667vw 5.3333333333vw;
  font-size: min(3.7333333333vw, 1.575rem);
  color: #fff;
}
nav .header_nav_menu .sp ul li a::before {
  content: "";
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  left: 0px;
  transform: translate(0, -50%);
  transform: rotate(45deg);
  width: 1.6vw;
  height: 1.6vw;
  top: calc(50% - 0.8vw);
}
nav .header_nav_menu .sp .banners {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 37px;
}
@media screen and (max-width: 1023px) {
  nav .header_nav_menu .sp .banners {
    padding-top: 16vw;
    display: flex;
    flex-grow: 1;
    align-items: stretch;
  }
}
nav .header_nav_menu .sp .banners .button_banner {
  position: relative;
  width: 49%;
  border: 1px solid #fff;
  padding: 20px 10px;
  color: #fff;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background: rgba(0, 0, 0, 0.25);
}
@media screen and (max-width: 1023px) {
  nav .header_nav_menu .sp .banners .button_banner {
    padding: 2vw 3vw;
    font-size: min(3.3333333333vw, 1.40625rem);
    width: 46.5vw;
    max-width: none;
  }
}
@media (hover: hover) {
  nav .header_nav_menu .sp .banners .button_banner:hover {
    background-color: rgba(255, 255, 255, 0.6);
  }
}
nav .header_nav_menu .sp .banners .button_banner::after {
  content: "";
  position: absolute;
  top: -6px;
  right: -6px;
  width: 0px;
  height: 0px;
  border: 8px solid;
  border-color: transparent transparent #1947ba transparent;
  transform: rotate(45deg);
}
@media screen and (max-width: 1023px) {
  nav .header_nav_menu .sp .banners .button_banner::after {
    top: -4px;
    right: -4px;
    border: 6px solid;
    border-color: transparent transparent #1947ba transparent;
  }
}
nav .header_nav_menu .sp .banners {
  width: 95vw;
  margin: auto;
  padding-top: 6.6666666667vw;
}
nav .header_nav_menu .sp.show {
  right: 0;
  opacity: 1;
}
@media screen and (max-width: 1023px) {
  nav .header_nav_menu .pc {
    display: none;
  }
  nav .header_nav_menu .sp {
    display: block;
  }
}

@media screen and (max-width: 1023px) {
  .jp nav .header_nav_menu .sp .banners .button_banner {
    width: 30.5vw;
  }
}
#toggle {
  display: none;
  cursor: pointer;
}
#toggle span.menu_text {
  color: #fff;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 1023px) {
  #toggle span.menu_text {
    font-size: 12px;
  }
}
@media screen and (max-width: 1023px) {
  #toggle {
    color: #707070;
    display: block;
    text-align: center;
    width: 36px;
    position: absolute;
    top: 0;
    right: 0;
    z-index: 999;
    border-left: 1px solid #444;
    padding: 10px;
    height: 56px;
    width: 68px;
  }
  #toggle .trigger {
    position: relative;
    width: 36px;
    height: 19px;
    margin: auto;
  }
  #toggle .trigger span {
    display: inline-block;
    transition: all 0.4s;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
  }
  #toggle .trigger span:nth-of-type(1) {
    top: 0px;
  }
  #toggle .trigger span:nth-of-type(2) {
    top: 8px;
  }
  #toggle .trigger span:nth-of-type(2):after {
    position: absolute;
    top: 0;
    left: 0;
    content: "";
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 4px;
    transition: all 0.4s;
  }
  #toggle .trigger span:nth-of-type(3) {
    bottom: 0px;
  }
  #toggle .trigger.active span:nth-of-type(1) {
    transform: translateY(8px) scale(0);
  }
  #toggle .trigger.active span:nth-of-type(2) {
    transform: rotate(-45deg);
  }
  #toggle .trigger.active span:nth-of-type(2):after {
    transform: rotate(90deg);
  }
  #toggle .trigger.active span:nth-of-type(3) {
    transform: translateY(-8px) scale(0);
  }
}

@media screen and (max-width: 1023px) {
  #login ul {
    width: 40vw;
  }
  #login ul li a {
    font-size: min(3.4666666667vw, 1.4625rem);
    padding: 2.6666666667vw 2.6666666667vw 2.6666666667vw 8vw;
  }
  #login ul li a::before {
    content: "";
    display: block;
    width: 1.6vw;
    height: 1.6vw;
    left: 3.3333333333vw;
    top: calc(50% - 0.5333333333vw);
  }
}
/*
--------------------------------------------------
HEADER MYPAGE
--------------------------------------------------
*/
header.mypage > .wrap {
  background-color: #fff;
}
header.mypage #login {
  border-left: 1px solid #ccc;
}
@media screen and (max-width: 1023px) {
  header.mypage #login span.menu_text {
    font-size: 12px;
  }
}
header.mypage #toggle {
  border-left: 1px solid #ccc;
}
header.mypage #toggle .trigger span {
  background-color: #000;
}
header.mypage #toggle .trigger span:nth-of-type(2):after {
  background-color: #000;
}
@media screen and (max-width: 1023px) {
  header.mypage #toggle span.menu_text {
    color: #000;
  }
}
header.mypage nav .header_nav_menu .sp {
  color: #fff;
}
header.mypage #login a img {
  filter: brightness(0) saturate(100%);
}
header.mypage #login .menu_text {
  color: #000;
}
header.mypage nav .header_nav_menu .pc ul li a {
  color: #000;
}

/*
--------------------------------------------------
FOOTER USER
--------------------------------------------------
*/

.jp .banners .button_banner {
  width: 32%;
}
@media screen and (max-width: 1023px) {
  .jp .banners .button_banner {
    width: 30.5vw;
  }
}

/*
--------------------------------------------------
COMMON
--------------------------------------------------
*/
html,
body {
  background-color: #000;
  font-family: "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  margin: 0;
  padding: 0;
}

@media (hover: hover) {
  a,
  button {
    transition: opacity 0.25s ease-in-out, background 0.25s ease-in-out, color 0.25s ease-in-out;
  }
  a:hover,
  button:hover {
    opacity: 0.8;
  }
}
ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

li,
dl {
  list-style: none;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

/* --------------------
パンくず
-------------------- */
#breadcrumbs {
  font-size: 13px;
  margin: 10px 0 40px;
}
@media screen and (max-width: 1023px) {
  #breadcrumbs {
    margin: 2vw 2.5vw 5vw;
  }
}

/* --------------------
Map, Tel
-------------------- */
a.link_map {
  color: #fff;
  display: block;
  font-size: 18px;
  margin: 0 32px 22px 12px;
  text-decoration: underline;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
a.link_map:after {
  content: "";
  background: url(../images/icon_pin.svg) left top no-repeat;
  background-size: 100%;
  position: absolute;
  top: 0;
  right: -26px;
  height: 26px;
  width: 17.87px;
}

p.tel {
  font-size: 18px;
  letter-spacing: 0.1em;
  margin-left: 12px;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /* --------------------
  パンくず
  -------------------- */
  #breadcrumbs {
    font-size: min(2.6666666667vw, 1.125rem);
    margin: 1.8666666667vw 0 4vw;
  }
}
/* --------------------
Typography
-------------------- */
h1.title_section {
  background: url(../images/bg_section-title.png) center top no-repeat;
  background-size: contain;
  color: #fff;
  font-family: "Anton";
  font-size: 60px;
  font-weight: 400;
  line-height: 140px;
  mix-blend-mode: screen;
  letter-spacing: 0.08em;
  text-align: center;
  text-shadow: 0px 2px 10px #000;
}
@media screen and (max-width: 1023px) {
  h1.title_section {
    background-size: clamp(11.25rem, -0.063rem + 48.27vw, 22.563rem);
    font-size: clamp(1.875rem, 8vw, 3.75rem);
    line-height: clamp(4.375rem, 18.67vw, 8.75rem);
  }
}

.page_title {
  padding: 16px 0;
  background-image: linear-gradient(to right, rgba(0, 44, 124, 0.9), rgba(0, 32, 88, 0.9));
}
@media screen and (max-width: 1023px) {
  .page_title {
    padding: 2.5vw 0;
  }
}
.page_title h1 {
  color: #fff;
  font-family: "Anton";
  font-size: clamp(2.5rem, 3.90625vw, 3.75rem);
  font-weight: 400;
  letter-spacing: 0.08em;
}
.page_title .row {
  margin: auto;
  width: 1024px;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /* --------------------
  Typography
  -------------------- */
  .page_title {
    padding: 2.9333333333vw 2.6666666667vw;
  }
  .page_title h1 {
    font-size: 8vw;
    margin: 0 auto 0 0;
  }
  .page_title h1.container_inner {
    padding: 0;
  }
  .page_title .row {
    flex-flow: row;
    width: 100%;
  }
  .bg_section-title {
    display: none;
  }
}
/* --------------------
Layout
-------------------- */
main {
  position: relative;
  z-index: 1;
  min-height: 650px;
}

.container_inner {
  margin: auto;
  width: 1024px;
}
@media screen and (max-width: 1023px) {
  .container_inner {
    width: 100%;
  }
}

.row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.row.left {
  justify-content: left;
}
.row.right {
  justify-content: right;
}
@media screen and (max-width: 1023px) {
  .row {
    flex-flow: column;
  }
}

.show_pc {
  display: block;
}

.show_sp {
  display: none;
}

.hide {
  display: none;
}

.nowrap {
  white-space: nowrap;
}

.container_outer {
  position: relative;
}

.bg_gray {
  background-color: #f2f2f2;
}

.alert_error {
  background-color: rgba(255, 240, 240, 0.8);
  border: 1px dotted #e52d30;
  border-radius: 4px;
  color: #e52d30;
  font-size: 16px;
  margin: 0 auto 40px;
  padding: 10px 20px;
  width: 100%;
  max-width: 1024px;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /* --------------------
  Layout
  -------------------- */
  main {
    min-height: auto;
  }
  .container_outer {
    min-height: 100vw;
  }
  .container_inner {
    padding: 0 2.6666666667vw;
    width: 100%;
  }
  .row {
    flex-flow: column;
  }
  .show_pc {
    display: none;
  }
  .show_sp {
    display: block;
  }
  .alert_error {
    font-size: 3.2vw;
    margin: 0 auto 2.6666666667vw;
    padding: 3.2vw 3.2vw;
  }
}
/* --------------------
Buttons
-------------------- */
.button {
  border-radius: 999px;
  color: #fff;
  display: block;
  font-size: clamp(0.9375rem, 1.46484375vw, 1.125rem);
  font-weight: 700;
  margin: auto;
  padding: 16px 50px;
  text-align: center;
  position: relative;
  width: 308px;
}
.button:after {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  position: absolute;
  right: 30px;
  top: calc(50% - 5px);
  transform: translate(0, -50%);
  transform: rotate(45deg);
}

.button_red,
.button_blue {
  background-image: linear-gradient(0, #e62d30, #a70002);
  border: 1px solid #e72d30;
  border-radius: 999px;
  color: #fff;
  border: 1px solid #e72d30;
}

.button_border {
  border: solid 2px #666;
  border-radius: 30;
  border: solid 2px #fff;
}
.button_border:after {
  content: "";
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
}

.button_black {
  background-color: #000;
  border: 1px solid #000;
}
.button_black.button:after {
  left: 30px;
  right: auto;
  transform: rotate(-135deg);
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /* --------------------
  Buttons
  -------------------- */
  .button {
    font-size: 3.7333333333vw;
    padding: 1.65vw 5vw;
    width: 80%;
  }
  .button:after {
    content: "";
    width: 2.204vw;
    height: 2.204vw;
    right: 2.9733333333vw;
  }
  .button.button_black:after {
    left: 2.9466666667vw;
  }
}
/* --------------------
Label
-------------------- */
.label {
  display: flex;
  position: absolute;
  top: 4px;
  right: 4px;
  color: #fff;
  gap: 2px 2px;
  flex-wrap: wrap;
}
.label span {
  display: block;
  font-size: 15px;
  position: relative;
  top: 4px;
  right: 4px;
  padding: 4px 16px;
  text-align: center;
  min-width: 100px;
  z-index: 1;
}
.label span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: skewX(-15deg);
  z-index: -1;
}

.label_product:before {
  background-color: #e72d30;
}

.label_campaign:before {
  background-color: #e76c2d;
}

.label_event:before {
  background-color: #1947ba;
}

.label_pr:before {
  background-color: #c60001;
}

.label_important:before {
  background-color: #d6c601;
}

.label_other:before {
  background-color: #8a8a8a;
}

.label_faq:before {
  background-color: #383838;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /* --------------------
  Label
  -------------------- */
  .label span {
    font-size: 2.6666666667vw;
    top: 0.5333333333vw;
    right: 0.5333333333vw;
    padding: 0.5333333333vw 2.1333333333vw;
    min-width: auto;
  }
}
/* --------------------
絞り込みリスト
-------------------- */
.filter {
  margin: 0 auto 60px;
  width: 100%;
  /*
  .button_prev {
    display: block;
    width: 16px;
    height: 16px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute !important;
    left: -30px;
    top: calc(50% - 3px);
    transform: translate(0, -50%);
    transform: rotate(-135deg);
    z-index: 2 !important;
  }

  .button_next {
    display: block;
    width: 16px;
    height: 16px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    position: absolute !important;
    right: -30px;
    top: calc(50% - 3px);
    transform: translate(0, -50%);
    transform: rotate(45deg);
    z-index: 2 !important;
  }
    */
}
.filter .category .row {
  align-items: stretch;
}
.filter .category .button_category {
  border-radius: 2px;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  font-weight: 700;
  position: relative;
  padding: 16px 5px;
  text-align: center;
  width: 138px;
  line-height: 1.3;
}
.filter .category .button_category:before {
  content: "";
  background-color: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: skewX(-15deg);
  z-index: -1;
}
.filter .category .button_category.active {
  color: #fff;
}
.filter .category .button_category.active:before {
  background-color: #e62d30;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /* --------------------
  絞り込みリスト
  -------------------- */
  .filter {
    margin: 0 auto 6.2666666667vw;
    width: 100%;
  }
  .filter .category .row {
    overflow-x: auto;
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: row;
    gap: 0 4px;
    margin: 0 auto;
    padding: 0 5%;
  }
  .filter .category .button_category {
    min-width: -moz-fit-content;
    min-width: fit-content;
    padding: 16px 16px;
  }
}
/* --------------------
ページャー
-------------------- */
.pagination ul {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
}
.pagination ul .item_page .link_prev,
.pagination ul .item_page .link_next {
  background-color: #c60000;
  background-image: none;
  border: none;
  margin-left: 20px;
  padding: 4px 25px 4px 15px;
  text-align: center;
  min-width: 110px;
  width: -moz-fit-content;
  width: fit-content;
}
.pagination ul .item_page .link_prev:after,
.pagination ul .item_page .link_next:after {
  right: 12px;
}
.pagination ul .item_page .link_prev.disable,
.pagination ul .item_page .link_next.disable {
  background: #666;
}
.pagination ul .item_page .link_prev {
  margin-left: auto;
  margin-right: 20px;
  padding: 4px 15px 4px 25px;
}
.pagination ul .item_page .link_prev:after {
  left: 12px;
  right: auto;
  transform: rotate(-135deg);
}
.pagination ul .item_page .link_page {
  background-color: #fff;
  border: 3px solid #666;
  border-radius: 50%;
  color: #666;
  display: block;
  line-height: 140%;
  text-align: center;
  margin: 0 4px;
  height: 28px;
  width: 28px;
}
.pagination ul .item_page .link_page.active {
  background-color: #666;
  color: #fff;
  font-weight: 700;
}
.pagination .current_page {
  font-size: 15px;
  text-align: center;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /* --------------------
  ページャー
  -------------------- */
  .pagination ul {
    margin-bottom: 3.2vw;
  }
  .pagination ul .item_page .link_prev,
  .pagination ul .item_page .link_next {
    font-size: 3.2vw;
    margin-left: 5.8666666667vw;
    padding: 0;
    line-height: 8vw;
    text-align: center;
    width: 21.7333333333vw;
    max-width: 163px;
    min-width: auto;
    text-indent: 100%;
    white-space: nowrap;
    overflow: hidden;
    width: 8vw;
    height: 8vw;
  }
  .pagination ul .item_page .link_prev:after,
  .pagination ul .item_page .link_next:after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    top: calc(50% - 3px);
    left: calc(50% - 3px);
    height: 1.6vw;
    width: 1.6vw;
    right: 2vw;
  }
  .pagination ul .item_page .link_prev {
    margin-left: auto;
    margin-right: 5.8666666667vw;
  }
  .pagination ul .item_page .link_prev:after {
    left: calc(50% - 3px);
  }
  .pagination ul .item_page .link_page {
    border: 0.4vw solid #666;
    font-size: 3.7333333333vw;
    line-height: 150%;
    margin: 0 0.5333333333vw;
    height: 6.6666666667vw;
    width: 6.6666666667vw;
  }
  .pagination .current_page {
    font-size: 3.4666666667vw;
  }
}
/* --------------------
Form
-------------------- */
.form_select {
  position: relative;
}
.form_select:before, .form_select:after {
  content: "";
  position: absolute;
  pointer-events: none;
  z-index: 2;
}
.form_select:before {
  content: "";
  background-color: #e62d30;
  border-radius: 0 25px 25px 0;
  display: inline-block;
  top: 0;
  right: 0;
  height: 40px;
  width: 50px;
}
.form_select:after {
  content: "";
  border-bottom: 3px solid #fff;
  border-right: 3px solid #fff;
  position: absolute;
  top: 50%;
  right: 25px;
  transform: translate(50%, -50%) rotate(45deg);
  height: 10px;
  width: 10px;
}
.form_select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border: 3px solid #e62d30;
  border-radius: 25px;
  color: #000;
  cursor: pointer;
  font-size: 20px;
  font-weight: 700;
  padding: 0 50px;
  height: 40px;
  width: 194px;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.form_select select:focus {
  outline: 1px solid #e62d30;
}
.form_select span {
  background-color: #222;
  border-radius: 25px 0 0 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  position: absolute;
  top: -10px;
  left: 3px;
  height: 41px;
  width: 62px;
  z-index: 2;
}

.form_search {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border: 3px solid #e62d30;
  border-radius: 25px;
  overflow: hidden;
}
.form_search input {
  width: 250px;
  height: 45px;
  padding: 5px 15px;
  border: none;
  box-sizing: border-box;
  font-size: 20px;
  font-weight: 700;
  outline: none;
}
.form_search input::-moz-placeholder {
  color: #cccccc;
}
.form_search input::placeholder {
  color: #cccccc;
}
.form_search button {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  cursor: pointer;
  width: 50px;
  height: 45px;
  border: none;
}
.form_search button:after {
  content: "";
  background-image: url(../images/icon_search.svg);
  background-repeat: no-repeat;
  width: 28px;
  height: 29px;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /* --------------------
  Form
  -------------------- */
  .form_select:before {
    border-radius: 0 3.5333333333vw 3.5333333333vw 0;
    height: 7.0666666667vw;
    width: 6.6666666667vw;
  }
  .form_select:after {
    border-bottom: 0.4vw solid #fff;
    border-right: 0.4vw solid #fff;
    right: 3.5vw;
    height: 1.1213333333vw;
    width: 1.1213333333vw;
  }
  .form_select select {
    border: 0.4vw solid #e62d30;
    border-radius: 3.5333333333vw;
    font-size: 3.4666666667vw;
    padding: 1.0666666667vw 7.64vw;
    height: 7.0666666667vw;
    width: 30vw;
  }
  .form_select.medium {
    display: block;
    margin: auto;
    width: 69.6vw;
  }
  .form_select.medium:before {
    border-radius: 0 5.3333333333vw 5.3333333333vw 0;
    height: 10.6666666667vw;
    width: 9.3333333333vw;
  }
  .form_select.medium:after {
    border-bottom: 0.4vw solid #fff;
    border-right: 0.4vw solid #fff;
    right: 4.5vw;
    height: 1.6vw;
    width: 1.6vw;
  }
  .form_select.medium select {
    border-radius: 5.3333333333vw;
    height: 10.6666666667vw;
    width: 69.6vw;
  }
  .form_search {
    border: 0.4vw solid #e62d30;
    border-radius: 7.0666666667vw;
    overflow: hidden;
  }
  .form_search input {
    width: 43.0666666667vw;
    height: 7.0666666667vw;
    padding: 1.0666666667vw 2.6666666667vw;
    font-size: 3.0666666667vw;
  }
  .form_search button {
    height: 7.0666666667vw;
    width: 7.0666666667vw;
  }
  .form_search button:after {
    background-size: 100%;
    width: 4.9853333333vw;
    height: 5.2vw;
  }
}
/*
--------------------------------------------------
Cookie Banner
--------------------------------------------------
*/
#cookie_banner {
  background-color: rgba(0, 39, 113, 0.9);
  padding: 20px 0;
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 10;
}
#cookie_banner .row {
  margin: auto;
  padding: 0 10px;
  width: 1024px;
}
#cookie_banner .row p {
  color: #fff;
  font-size: 14px;
  line-height: 150%;
  width: 698px;
}
#cookie_banner .row p a {
  text-decoration: underline;
}
#cookie_banner .row button {
  background-color: #fff;
  border-radius: 2px;
  display: block;
  margin-bottom: 15px;
  padding: 10px 5px;
  text-align: center;
  width: 194px;
  color: #333;
  line-height: 1.2;
  font-size: 14px;
}
#cookie_banner .row button small {
  color: #666;
}
#cookie_banner .row button:last-child {
  margin-bottom: 0;
}

#modal_cookie .modal_content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
#modal_cookie .modal_content .modal_body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior-y: contain;
}
#modal_cookie .modal_content .modal_body .row {
  flex-wrap: nowrap;
  gap: 0 5%;
}
#modal_cookie .modal_content .modal_body .row h3 {
  width: 58%;
}
#modal_cookie .modal_content .modal_body .row span {
  max-width: 30%;
}

/*
--------------------------------------------------
Modal
--------------------------------------------------
*/
.modal_dialog {
  background: #fff url(../images/bg_modal.png) top left no-repeat;
  border-radius: 4px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1024px;
  z-index: 100;
}
.modal_dialog .modal_content {
  position: relative;
  border-radius: 4px;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  max-height: calc(90vh - 30px);
  max-height: calc(90dvh - 30px);
}
.modal_dialog .modal_content .modal_header {
  padding: 35px 64px 24px;
}
.modal_dialog .modal_content .modal_header h2.modal_title {
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 145.2%;
  padding-left: 28px;
  position: relative;
}
.modal_dialog .modal_content .modal_header h2.modal_title:before, .modal_dialog .modal_content .modal_header h2.modal_title:after {
  content: "";
  position: absolute;
  height: 100%;
  width: 5px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.modal_dialog .modal_content .modal_header h2.modal_title:before {
  background-color: #e62d30;
}
.modal_dialog .modal_content .modal_header h2.modal_title:after {
  background-color: #999;
  left: 10px;
}
.modal_dialog .modal_content .modal_header.bg_blue {
  background-color: #002771;
  margin-bottom: 50px;
  padding: 16px 32px;
}
.modal_dialog .modal_content .modal_header.bg_blue .button_back {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}
.modal_dialog .modal_content .modal_header.bg_blue .button_back:before {
  content: "< ";
}
.modal_dialog .modal_content .modal_body {
  margin-bottom: 32px;
  padding: 0 60px 0;
}
.modal_dialog .modal_content .modal_body p {
  font-size: 16px;
  line-height: 166.6%;
  margin-bottom: 35px;
}
.modal_dialog .modal_content .modal_body p a {
  text-decoration: underline;
}
.modal_dialog .modal_content .modal_body .border {
  border: 1px solid #707070;
}
.modal_dialog .modal_content .modal_body .border p {
  font-size: 15px;
  line-height: 162.5%;
  margin-bottom: 0;
  padding: 16px 28px 22px;
}
.modal_dialog .modal_content .modal_body .border p a {
  display: block;
}
.modal_dialog .modal_content .modal_body .border .row {
  background-color: #666;
  color: #fff;
  padding: 8px 30px;
}
.modal_dialog .modal_content .modal_body .border .row h3 {
  font-size: 16px;
  font-weight: 700;
}
.modal_dialog .modal_content .modal_body .border .row span {
  font-size: 15px;
  font-weight: 700;
}
.modal_dialog .modal_content .modal_body .border .item_accordion:nth-of-type(n + 2) {
  border-top: 1px solid #ddd;
}
.modal_dialog .modal_content .modal_body .border .accordion_header {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 5%;
}
.modal_dialog .modal_content .modal_body .border .accordion_header h3 {
  width: 70%;
}
.modal_dialog .modal_content .modal_body .border .accordion_header .accordion_button {
  max-width: 38%;
  color: #fff;
  display: block;
  font-size: 15px;
  font-weight: normal;
  padding-right: 28px;
  position: relative;
  text-align: left;
}
.modal_dialog .modal_content .modal_body .border .accordion_header .accordion_button:before {
  content: "";
  width: 12px;
  height: 12px;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  border-radius: 2px;
  position: absolute;
  right: 0;
  top: calc(50% - 7px);
  transform: translate(0, -50%);
  transform: rotate(135deg);
}
.modal_dialog .modal_content .modal_body .border .accordion_header .accordion_button.show:before {
  top: calc(50% - 4px);
  transform: rotate(-45deg);
}
.modal_dialog .modal_content .modal_body .border .accordion_collapse {
  height: 0;
  transition: height 0.25s ease-in-out;
  overflow: hidden;
}
.modal_dialog .modal_content .modal_body .border .accordion_collapse.show {
  background-color: #f7f7f7;
  padding: 25px 30px;
  opacity: 1;
  height: auto;
}
.modal_dialog .modal_content .modal_body .border .accordion_collapse.show .accordion_body > div {
  background-color: #fff;
  margin-bottom: 25px;
  padding: 8px 28px;
  opacity: 1;
}
.modal_dialog .modal_content .modal_body .border .accordion_collapse.show .accordion_body > div:last-child {
  margin-bottom: 0;
}
.modal_dialog .modal_content .modal_body .border .accordion_collapse.show .accordion_body > div table td {
  font-size: 15px;
  line-height: 150%;
  padding: 15px;
  opacity: 1;
  vertical-align: top;
}
.modal_dialog .modal_content .modal_body .border .accordion_collapse.show .accordion_body > div table td:nth-of-type(1) {
  width: 20%;
}
.modal_dialog .modal_content .modal_body .border .accordion_collapse.show .accordion_body > div table td:nth-of-type(2) {
  width: 80%;
}
.modal_dialog .modal_content .bg_gray {
  background-color: #f2f2f2;
  border-radius: 0 0 4px 4px;
  padding: 24px 60px;
  align-items: stretch;
}
.modal_dialog .modal_content .button_cookie {
  background-color: #666;
  color: #fff;
  font-size: 16px;
  margin-right: 20px;
  padding: 15px 10px;
  text-align: center;
  width: 242px;
  border-radius: 2px;
}
.modal_dialog .modal_content .button_cookie:first-child {
  margin-left: 0;
  margin-right: auto;
}
.modal_dialog .modal_content .button_cookie:last-child {
  margin-right: 0;
}
.modal_dialog .modal_content .button_cookie:hover {
  background: #1947ba;
  opacity: 1;
}
.modal_dialog .button_close {
  background: #000;
  border: 3px solid #fff;
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -25px;
  right: -25px;
  width: 51px;
  height: 51px;
}
.modal_dialog .button_close:before, .modal_dialog .button_close:after {
  content: "";
  background: #fff;
  border-radius: 2px;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 21px;
}
.modal_dialog .button_close:before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal_dialog .button_close:after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal_dialog .button_toggle {
  background-color: #333;
  border-radius: 50px;
  box-sizing: content-box;
  cursor: pointer;
  display: inline-block;
  position: relative;
  width: 74px;
  height: 32px;
  transition: background-color 0.4s;
}
.modal_dialog .button_toggle:has(:checked) {
  background-color: #1947ba;
}
.modal_dialog .button_toggle:has(:checked):after {
  left: 50px;
}
.modal_dialog .button_toggle:after {
  content: "";
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 5px;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  transition: left 0.4s;
}
.modal_dialog .button_toggle input {
  display: none;
}

#modal_reauthorization {
  width: 640px;
}

.fade {
  background-color: rgba(0, 0, 0, 0.7);
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 10;
}
.fade.modal_check {
  z-index: 100;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  /*
  ----------------------------------------
  Cookie Banner
  ----------------------------------------
  */
  #cookie_banner {
    padding: 4vw 0 6vw;
  }
  #cookie_banner .row {
    padding: 0 2.6666666667vw;
    width: 100%;
  }
  #cookie_banner .row p {
    font-size: 3.2vw;
    margin-bottom: 5.3333333333vw;
    width: 100%;
    max-height: 29vh;
    overflow-y: auto;
  }
  #cookie_banner .row > div {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    align-items: stretch;
  }
  #cookie_banner .row button {
    display: block;
    font-size: 3.2vw;
    margin-bottom: 0;
    padding: 2.1333333333vw 0.5333333333vw;
    width: 30vw;
  }
  #modal_cookie .modal_content .modal_body {
    height: calc(100% - 50vh);
  }
  #modal_reauthorization {
    width: 89.3333333333vw;
  }
  #modal_reauthorization .modal_content .modal_body {
    padding: 0 4vw 4vw;
  }
  /*
  ----------------------------------------
  Modal
  ----------------------------------------
  */
  .modal_dialog {
    top: 50%;
    left: 50%;
    width: 89.3333333333vw;
    background-size: 55% auto;
  }
  .modal_dialog .modal_content .modal_header {
    padding: 5.3333333333vw 4vw;
  }
  .modal_dialog .modal_content .modal_header h2.modal_title {
    font-size: 5.0666666667vw;
    padding-left: 3.7333333333vw;
  }
  .modal_dialog .modal_content .modal_header h2.modal_title:before, .modal_dialog .modal_content .modal_header h2.modal_title:after {
    content: "";
    position: absolute;
    height: 100%;
    width: 0.6666666667vw;
  }
  .modal_dialog .modal_content .modal_header h2.modal_title:after {
    left: 1.3333333333vw;
  }
  .modal_dialog .modal_content .modal_header.bg_blue {
    margin-bottom: 4.08vw;
    padding: 2.1333333333vw 4.9333333333vw;
  }
  .modal_dialog .modal_content .modal_header.bg_blue .button_back {
    font-size: 3.2vw;
  }
  .modal_dialog .modal_content .modal_body {
    margin-bottom: 0;
    padding: 0 4vw 11.36vw;
  }
  .modal_dialog .modal_content .modal_body p {
    font-size: 3.4666666667vw;
    margin-bottom: 4vw;
  }
  .modal_dialog .modal_content .modal_body .border p {
    font-size: 3.2vw;
    height: 24.6666666667vw;
    margin: 2.1333333333vw 0 4vw;
    padding: 0 3.3333333333vw;
    overflow: scroll;
  }
  .modal_dialog .modal_content .modal_body .border .row {
    flex-flow: row;
    padding: 1.6vw 4vw;
  }
  .modal_dialog .modal_content .modal_body .border .row h3 {
    font-size: 3.2vw;
  }
  .modal_dialog .modal_content .modal_body .border .row span {
    font-size: 2.6666666667vw;
  }
  .modal_dialog .modal_content .modal_body .border .accordion_header .accordion_button {
    font-size: 2.6666666667vw;
    padding-right: 3.2vw;
    position: relative;
  }
  .modal_dialog .modal_content .modal_body .border .accordion_header .accordion_button:before {
    content: "";
    width: 1.6vw;
    height: 1.6vw;
    top: calc(50% - 1.2vw);
  }
  .modal_dialog .modal_content .modal_body .border .accordion_header .accordion_button.show:before {
    top: calc(50% - 0.5333333333vw);
    transform: rotate(-45deg);
  }
  .modal_dialog .modal_content .modal_body .border .accordion_collapse.show {
    padding: 3.3333333333vw 4vw;
  }
  .modal_dialog .modal_content .modal_body .border .accordion_collapse.show .accordion_body > div {
    margin-bottom: 4.8933333333vw;
    padding: 2.1333333333vw 3.0666666667vw;
  }
  .modal_dialog .modal_content .modal_body .border .accordion_collapse.show .accordion_body > div table td {
    font-size: 2.9333333333vw;
    padding: 1.8666666667vw 0;
  }
  .modal_dialog .modal_content .modal_body .border .accordion_collapse.show .accordion_body > div table td:first-child {
    font-size: 2.6666666667vw;
    padding-right: 5.2933333333vw;
  }
  .modal_dialog .modal_content .modal_body.info {
    height: 65vh;
    overflow: scroll;
  }
  .modal_dialog .modal_content .bg_gray {
    padding: 4vw;
  }
  .modal_dialog .modal_content .bg_gray.row {
    flex-flow: row;
    justify-content: space-between;
  }
  .modal_dialog .modal_content .button_cookie {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.9333333333vw;
    margin-right: 0;
    padding: 0 1.8666666667vw;
    height: 12.2666666667vw;
    width: 24.9333333333vw;
    word-break: auto-phrase;
  }
  .modal_dialog .modal_content .button_cookie:first-child {
    margin-right: 0;
  }
  .modal_dialog .button_close {
    border: 0.4vw solid #fff;
    font-size: 0;
    top: -3.6vw;
    right: -3.0666666667vw;
    width: 7.2vw;
    height: 7.2vw;
  }
  .modal_dialog .button_close:before, .modal_dialog .button_close:after {
    height: 3.0666666667vw;
  }
  .modal_dialog .button_toggle {
    border-radius: 2.1333333333vw;
    width: 9.8666666667vw;
    height: 4.2666666667vw;
  }
  .modal_dialog .button_toggle:has(:checked):after {
    left: 6.6666666667vw;
  }
  .modal_dialog .button_toggle:after {
    width: 2.6666666667vw;
    height: 2.6666666667vw;
  }
}
/*
--------------------------------------------------
NEWS
--------------------------------------------------
*/
#top #news .row,
#news .filter_results .row {
  justify-content: flex-start;
  gap: 0px calc((100% - 966px) / 2);
}
#top #news .row:has(.item_news),
#news .filter_results .row:has(.item_news) {
  align-items: flex-start;
}
@media screen and (max-width: 1023px) {
  #top #news .row,
  #news .filter_results .row {
    flex-flow: row wrap;
    margin-left: auto;
    margin-right: auto;
    gap: 0px 2.65vw;
  }
}
#top #news .item_news,
#news .filter_results .item_news {
  color: #fff;
  display: block;
  margin-bottom: 67px;
  width: 322px;
}
@media screen and (max-width: 1023px) {
  #top #news .item_news,
  #news .filter_results .item_news {
    width: 46vw;
    margin-bottom: 7.5vw;
  }
}
#top #news .item_news .image_area,
#news .filter_results .item_news .image_area {
  position: relative;
  -webkit-clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
          clip-path: polygon(10% 0, 100% 0, 100% 85%, 90% 100%, 0 100%, 0 15%);
}
#top #news .item_news .image_area img,
#news .filter_results .item_news .image_area img {
  -o-object-fit: cover;
     object-fit: cover;
}
#top #news .item_news .text_area .date,
#news .filter_results .item_news .text_area .date {
  color: #aaa;
  display: block;
  font-size: 18px;
}
@media screen and (max-width: 1023px) {
  #top #news .item_news .text_area .date,
  #news .filter_results .item_news .text_area .date {
    display: block;
    margin-top: 5px;
    font-size: 3.2vw;
  }
}
#top #news .item_news .text_area strong,
#news .filter_results .item_news .text_area strong {
  font-size: 18px;
  font-weight: normal;
  line-height: 1.4;
}
@media screen and (max-width: 1023px) {
  #top #news .item_news .text_area strong,
  #news .filter_results .item_news .text_area strong {
    display: block;
    margin-top: 5px;
    font-size: 3.7333333333vw;
    font-weight: normal;
  }
}
#top #news .label,
#news .filter_results .label {
  display: flex;
  position: absolute;
  top: 4px;
  right: 4px;
  justify-content: flex-end;
  flex-direction: row;
  width: 95%;
  gap: 2px;
  flex-wrap: wrap;
}
@media screen and (max-width: 1023px) {
  #top #news .label,
  #news .filter_results .label {
    top: 0px;
    right: 0px;
  }
}
#top #news .label span,
#news .filter_results .label span {
  display: block;
  font-size: 14px;
  position: relative;
  top: 4px;
  right: 4px;
  padding: 4px 16px;
  text-align: center;
  min-width: 100px;
  z-index: 1;
}
@media screen and (max-width: 1023px) {
  #top #news .label span,
  #news .filter_results .label span {
    font-size: 2.6666666667vw;
    padding: 0.2666666667vw 1.0666666667vw;
    min-width: 6.6666666667vw;
    top: 0.2666666667vw;
    right: 0.5333333333vw;
  }
}
#top #news .label span:before,
#news .filter_results .label span:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  transform: skewX(-15deg);
  z-index: -1;
}
#top #news .label span:nth-of-type(N + 2),
#news .filter_results .label span:nth-of-type(N + 2) {
  margin-left: 4px;
}
#top #news .label_product:before,
#news .filter_results .label_product:before {
  background-color: #e72d30;
}
#top #news .label_campaign:before,
#news .filter_results .label_campaign:before {
  background-color: #e76c2d;
}
#top #news .label_event:before,
#news .filter_results .label_event:before {
  background-color: #1947ba;
}
#top #news .label_pr:before,
#news .filter_results .label_pr:before {
  background-color: #c60001;
}
#top #news .label_important:before,
#news .filter_results .label_important:before {
  background-color: #d6c601;
}
#top #news .label_other:before,
#news .filter_results .label_other:before {
  background-color: #8a8a8a;
}

/*
--------------------------------------------------
etc（メンテナンス、Not Found）
--------------------------------------------------
*/
#etc {
  color: #fff;
  /*
  background: linear-gradient(to bottom, transparent 0%, transparent 80%, #000 100%), url("../images/top/bg_main_01.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  background-attachment: fixed;
  */
}
#etc main {
  position: relative;
  min-height: 650px;
}
#etc main * {
  position: relative;
  z-index: 1;
}
#etc .container_outer {
  position: relative;
}
#etc .container_outer:before {
  content: "";
  background: linear-gradient(to bottom, transparent 0%, transparent 80%, #000 100%), url("../images/top/bg_main_01.jpg");
  background-repeat: no-repeat;
  background-position: top center;
  background-size: cover;
  position: absolute;
  top: 0;
  width: 100%;
  height: 904px;
}
#etc .container_inner:before {
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0) 50%);
  position: absolute;
  top: 0px;
  left: 0;
  height: 60px;
  width: 100%;
}
#etc .container_inner:after {
  content: "";
  background: linear-gradient(to top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.6) 50%);
  position: absolute;
  bottom: 0px;
  left: 0;
  height: 60px;
  width: 100%;
  transform: translateY(100%);
}
#etc .container_inner .row {
  align-items: stretch;
  background: rgba(0, 0, 0, 0.6);
  padding: 0 60px;
}
#etc .container_inner .row .item_info {
  width: 425px;
}
#etc .button.button_border {
  margin-top: 120px;
}
#etc .bg_section-title {
  font-family: "Anton";
  font-size: 159px;
  letter-spacing: 0.08em;
  opacity: 0.15;
  position: absolute;
  top: 595px;
  left: -540px;
  transform: rotate(-90deg);
}
#etc h3 {
  border-bottom: 3px solid #9ba6ba;
  color: #000;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 142.8%;
  margin: 80px auto 40px;
  padding-bottom: 16px;
  position: relative;
  text-wrap: initial;
  color: #fff;
  font-size: 20px;
  letter-spacing: 0.04em;
  margin-bottom: 27px;
}
#etc h3:before {
  content: "";
  background-color: #e62d30;
  position: absolute;
  bottom: -3px;
  height: 3px;
  width: 6.3%;
}
@media screen and (max-width: 1023px) {
  #etc h3 {
    font-size: 3.7333333333vw;
    margin: 4.5333333333vw auto 4.2vw;
    padding-bottom: 1.5333333333vw;
  }
}
#etc #not-found .bg_section-title {
  font-family: "Anton";
  font-size: 159px;
  letter-spacing: 0.08em;
  opacity: 0.15;
  position: absolute;
  top: 470px;
  left: -435px;
  transform: rotate(-90deg);
}

/* Firefox */
_:lang(x)::-moz-placeholder,
#etc .container_inner:before {
  top: 0;
}

/*
--------------------------------------------------
エリア選択, お問い合わせ
--------------------------------------------------
*/
#areaSelect,
#contact {
  background-color: #000;
  background-image: url("../images/bg_main_01.jpg");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: top center;
  background-attachment: fixed;
}
#areaSelect h1.title_section,
#contact h1.title_section {
  font-family: Anton;
  background: url("../images/bg_section-title.png") no-repeat center bottom;
  background-size: contain;
  line-height: 140px;
  mix-blend-mode: screen;
  margin-top: 100px;
  font-size: 60px;
  letter-spacing: 0.08em;
  color: #fff;
  text-align: center;
  text-shadow: 0px 2px 10px #000;
}
#areaSelect .logo_site,
#contact .logo_site {
  order: initial;
  margin-top: 100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: initial;
  max-width: none;
}
#areaSelect .logo_site img,
#contact .logo_site img {
  display: block;
  margin: auto;
  width: 250px;
  height: auto;
}

/*
--------------------------------------------------
告知
--------------------------------------------------
*/
#mes_notice {
  background-image: url("../images/bg_mes_notice.png");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  margin: 0px;
}
#mes_notice p {
  text-align: center;
  font-size: 36px;
  font-weight: 700;
  letter-spacing: 2px;
  padding: 200px 0 200px;
  text-shadow: #000 0 0 5px;
}

/*
--------------------------------------------------
Mobile
--------------------------------------------------
*/
@media screen and (max-width: 1023px) {
  main {
    min-height: auto;
  }
  /*
  ----------------------------------------
  NEWS
  ----------------------------------------
  */
  #news .page_title .row {
    width: 100%;
  }
  #news .filter_results .row {
    flex-flow: row;
    flex-wrap: wrap;
  }
  #news .item_news {
    margin-bottom: 3.8666666667vw;
    width: 46vw;
  }
  #news .item_news .image_area img {
    width: 100%;
  }
  #news .item_news .text_area .date {
    font-size: 2.6666666667vw;
  }
  #news .item_news .text_area strong {
    font-size: 3.4666666667vw;
  }
  /*
  ----------------------------------------
  etc（メンテナンス、Not Found）
  ----------------------------------------
  */
  #etc .container_inner:before {
    height: 8.1333333333vw;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 5.3333333333vw);
  }
  #etc .container_inner .row {
    padding: 0 5.3333333333vw;
  }
  #etc .container_inner .row .item_info {
    width: 100%;
  }
  #etc .container_inner .row .item_info p {
    font-size: 3.4666666667vw;
    margin-bottom: 10vw;
  }
  #etc .container_inner .row .item_info:last-child p {
    margin-bottom: 0;
  }
  #etc .button.button_border {
    margin-top: 20vw;
  }
  #etc h3 {
    font-size: 4.2666666667vw;
    margin-bottom: 4.04vw;
  }
  /*
  ----------------------------------------
  通知
  ----------------------------------------
  */
  #mes_notice {
    background-image: url("../images/bg_mes_notice.png");
    background-size: 110%;
    margin: 0px;
  }
  #mes_notice p {
    font-size: min(5.0666666667vw, 2.1375rem);
    letter-spacing: 2px;
    padding: 120px 0 120px;
  }
}/*# sourceMappingURL=common.css.map */