@charset "UTF-8";
/*==================================================================
    style.css
===================================================================*/
/*==================================================================
    reset
===================================================================*/
@import url(https://fonts.googleapis.com/css?family=Allura|Open+Sans:300,300i,400);
html {
  overflow-x: hidden;
  background: #FFF;
  font-size: 62.5%;
}

body {
  overflow-x: hidden;
  min-width: 320px;
  -webkit-text-size-adjust: none;
  -ms-text-size-adjust: none;
  word-wrap: break-word;
}

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, object, iframe, pre, code, p, blockquote, form, fieldset, legend, table, th, td, caption, tbody, tfoot, thead, article, aside, figure, footer, header, hgroup, menu, nav, section, audio, video, canvas {
  margin: 0;
  padding: 0;
}

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

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

[hidden] {
  display: none;
}

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

fieldset, img {
  border: none;
}

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

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

abbr, acronym {
  border: none;
  font-variant: normal;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

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

legend {
  color: #000;
}

a img, map a {
  border: none;
}

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

embed {
  width: 100%;
}

audio, canvas, video {
  display: inline-block;
}

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

img, object, embed {
  max-width: 100%;
  height: auto;
}

object, embed {
  height: 100%;
}

img {
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

div {
  vertical-align: top;
}

strong {
  font-weight: bold;
}

em {
  font-style: normal;
}

select, input, button, textarea, button {
  font: 99% arial, sans-serif;
}

pre, code, kbd, samp, tt {
  font-family: monospace;
  line-height: 1;
}

/*  touch
---------------------------------------------*/
a, img, button, input[type="button"], input[type="submit"], .touch-hover {
  -webkit-tap-highlight-color: transparent;
}

/*  box-sizing
---------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

/*  table
---------------------------------------------*/
table {
  empty-cells: show;
  font-size: inherit;
  font: 100%;
}

/*  main
---------------------------------------------*/
/* IE10,11対策 main要素の高さと幅を認識させる */
@media all and (-ms-high-contrast: none) {
  main {
    display: block;
  }
}

/*  form
---------------------------------------------*/
input {
  line-height: 1;
}

form img, input, select {
  vertical-align: middle;
}

textarea {
  resize: none;
}

select {
  padding: 1px;
}

legend {
  display: none;
}

input,
select,
textarea,
button {
  font-size: 1.4rem;
  vertical-align: middle;
  color: #000;
  height: auto;
}

textarea {
  height: auto;
}

input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
  -webkit-appearance: none;
  font-size: 1.2rem;
  width: 100%;
  padding: 1rem 1.2rem;
  border: 1px solid #ccc;
  background: #fff;
  font-weight: normal;
  border-radius: 4px;
}

/* ======= outline ======= */
input[type="email"],
input[type="text"],
input[type="number"],
input[type="password"],
textarea,
select {
  outline: none;
}

/* ======= label ======= */
label {
  margin-right: 1em;
  line-height: 1;
}

/*==================================================================
    utility
===================================================================*/
/* ------------------------------------------------------------------
  Visual utility
-------------------------------------------------------------------*/
/*  display
---------------------------------------------*/
.noDisplay {
  display: none !important;
}

.block {
  display: block !important;
}

.inline {
  display: inline !important;
}

.inlineBlock {
  display: inline-block !important;
}

/* ======= display none ======= */
@media screen and (min-width: 960px) {
  .pcNone {
    display: none !important;
  }
}

@media screen and (max-width: 960px) {
  .spNone {
    display: none !important;
  }
}

/*  position
---------------------------------------------*/
.static {
  position: static !important;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute !important;
}

.fixed {
  position: fixed !important;
}

/*  float
---------------------------------------------*/
.leftBox {
  float: left;
}

.rightBox {
  float: right;
}

.nofloat {
  float: none !important;
}

.clearfix {
  zoom: 1;
}

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

.clear {
  clear: both !important;
}

/* IE6 */
* html .clearfix {
  zoom: 1;
}

/* IE7 */
*:first-child + html .clearfix {
  zoom: 1;
}

/*  hover
---------------------------------------------*/
.hover:hover {
  filter: alpha(opacity=70);
  -moz-opacity: 0.7;
  -khtml-opacity: 0.7;
  opacity: 0.7;
}

/*  .scrollWSp SP時に横幅からはみ出す要素(tableなど)に囲って使用
---------------------------------------------*/
@media screen and (max-width: 960px) {
  .scrollWSp {
    overflow: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
  }
}

/* .firstload ※初回読み込み時のCSSトランジション防止
------------------------------------------------*/
.firstload {
  -webkit-transition: 0s !important;
  transition: 0s !important;
}

/* ------------------------------------------------------------------
  width utility
-------------------------------------------------------------------*/
.w10 {
  width: 10% !important;
}

.w20 {
  width: 20% !important;
}

.w30 {
  width: 30% !important;
}

.w40 {
  width: 40% !important;
}

.w50 {
  width: 50% !important;
}

.w60 {
  width: 60% !important;
}

.w70 {
  width: 70% !important;
}

.w80 {
  width: 80% !important;
}

.w90 {
  width: 90% !important;
}

.w100 {
  width: 100% !important;
}

/* ------------------------------------------------------------------
  BoxModel utility
-------------------------------------------------------------------*/
.mt0 {
  margin-top: 0px !important;
}

.mb0 {
  margin-bottom: 0px !important;
}

.mr0 {
  margin-right: 0px !important;
}

.ml0 {
  margin-left: 0px !important;
}

.pt0 {
  padding-top: 0px !important;
}

.pb0 {
  padding-bottom: 0px !important;
}

.pr0 {
  padding-right: 0px !important;
}

.pl0 {
  padding-left: 0px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mr40 {
  margin-right: 40px !important;
}

.ml40 {
  margin-left: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mr45 {
  margin-right: 45px !important;
}

.ml45 {
  margin-left: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mr50 {
  margin-right: 50px !important;
}

.ml50 {
  margin-left: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mr55 {
  margin-right: 55px !important;
}

.ml55 {
  margin-left: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pb55 {
  padding-bottom: 55px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mr60 {
  margin-right: 60px !important;
}

.ml60 {
  margin-left: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mr65 {
  margin-right: 65px !important;
}

.ml65 {
  margin-left: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.ml70 {
  margin-left: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.ml75 {
  margin-left: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pl75 {
  padding-left: 75px !important;
}

/* ------------------------------------------------------------------
  border utility
-------------------------------------------------------------------*/
.btNone {
  border-top: none !important;
}

.brNone {
  border-right: none !important;
}

.bbNone {
  border-bottom: none !important;
}

.blNone {
  border-left: none !important;
}

/* ------------------------------------------------------------------
  Text utiity
-------------------------------------------------------------------*/
.bold {
  font-weight: bold !important;
}

.italic {
  font-style: italic !important;
}

.note {
  color: #2E2E2E;
  margin-left: 1.0em;
  text-indent: -1.0em;
}

.underline {
  text-decoration: underline !important;
}

.textNoLine {
  text-decoration: none !important;
}

/*  font-family
---------------------------------------------*/
.font1 {
  font-family: "Univers Next W04 Regular" !important;
}

.font2 {
  font-family: "Univers Next W04 Light" !important;
}

/*  font-size+line-height
---------------------------------------------*/
.fzS {
  font-size: 1.2rem;
  line-height: 1.6;
}

@media screen and (max-width: 960px) {
  .fzS {
    font-size: 1.1rem;
    line-height: 1.3;
  }
}

.fz {
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  .fz {
    font-size: 1.3rem;
    line-height: 1.5;
  }
}

.fzM {
  font-size: 1.6rem;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .fzM {
    font-size: 1.5rem;
    line-height: 1.7;
  }
}

.fzL {
  font-size: 1.8rem;
  line-height: 2.4;
}

@media screen and (max-width: 960px) {
  .fzL {
    font-size: 1.7rem;
    line-height: 1.9;
  }
}

/*  color
---------------------------------------------*/
.white {
  color: #fff;
}

.black {
  color: #000;
}

.g1 {
  color: #2E2E2E;
}

.g2 {
  color: #444444;
}

.g3 {
  color: #E8E8E8;
}

.g4 {
  color: #707070;
}

.g5 {
  color: #777777;
}

.g6 {
  color: #666666;
}

.c1 {
  color: #1678bf;
}

.c2 {
  color: #66caf2;
}

.c3 {
  color: #d8695d;
}

.c4 {
  color: #50cc85;
}

.c5 {
  color: #B277E0;
}

.c6 {
  color: #E0C332;
}

.c-caution {
  color: #E20C0C;
}

/*  align
---------------------------------------------*/
.middle {
  vertical-align: middle !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

.right {
  text-align: right !important;
}

/* font-size
---------------------------------------------*/
.fz {
  font-size: 1.4rem;
}

.fz--s {
  font-size: 1.2rem;
  line-height: 1.6;
}

.fz--l {
  font-size: 1.8rem;
  line-height: 2.4;
}

.fz8 {
  font-size: 0.8rem !important;
}

.fz9 {
  font-size: 0.9rem !important;
}

.fz10 {
  font-size: 1rem !important;
}

.fz11 {
  font-size: 1.1rem !important;
}

.fz12 {
  font-size: 1.2rem !important;
}

.fz13 {
  font-size: 1.3rem !important;
}

.fz14 {
  font-size: 1.4rem !important;
}

.fz15 {
  font-size: 1.5rem !important;
}

.fz16 {
  font-size: 1.6rem !important;
}

.fz17 {
  font-size: 1.7rem !important;
}

.fz18 {
  font-size: 1.8rem !important;
}

.fz19 {
  font-size: 1.9rem !important;
}

.fz20 {
  font-size: 2rem !important;
}

.fz21 {
  font-size: 2.1rem !important;
}

.fz22 {
  font-size: 2.2rem !important;
}

.fz23 {
  font-size: 2.3rem !important;
}

.fz24 {
  font-size: 2.4rem !important;
}

.fz25 {
  font-size: 2.5rem !important;
}

.fz26 {
  font-size: 2.6rem !important;
}

.fz27 {
  font-size: 2.7rem !important;
}

.fz28 {
  font-size: 2.8rem !important;
}

.fz29 {
  font-size: 2.9rem !important;
}

.fz30 {
  font-size: 3rem !important;
}

/*==================================================================
    general
===================================================================*/
/* -----------------------------------------------
    font
------------------------------------------------*/
body {
  font-family: "Univers Next W04 Light", "A+EqpB-游ゴシック体 Pr6N M";
  font-size: 1.4rem;
  color: #000;
  font-weight: 400;
  line-height: 1;
  -webkit-font-feature-settings: "palt" 1;
          font-feature-settings: "palt" 1;
  -webkit-font-kerning: normal;
          font-kerning: normal;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

@media screen and (max-width: 960px) {
  body {
    font-size: 1.3rem;
    line-height: 1;
  }
}

/* -----------------------------------------------
    hiragino sansのウェイトズレを調整
------------------------------------------------*/
@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W0), local(メイリオ);
  font-weight: 100;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W1), local(メイリオ);
  font-weight: 200;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W2), local(メイリオ);
  font-weight: 300;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W3), local(メイリオ);
  font-weight: 400;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W4), local(メイリオ);
  font-weight: 500;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W5), local(メイリオ ボールド);
  font-weight: 600;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W6), local(メイリオ ボールド);
  font-weight: 700;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W7), local(メイリオ ボールド);
  font-weight: 800;
}

@font-face {
  font-family: "Hiragino Sans";
  src: local(HiraginoSans-W8), local(メイリオ ボールド);
  font-weight: 900;
}

@font-face {
  font-family: "Hiragino Sans W9";
  src: local(HiraginoSans-W9), local(メイリオ ボールド);
  font-weight: 900;
}

/* -----------------------------------------------
    p
------------------------------------------------*/
p {
  font-size: 1.4rem;
  line-height: 1.8;
}

@media screen and (max-width: 960px) {
  p {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}

/* ======= hiwrite ======= */
::-moz-selection {
  background: #ededed;
}
::selection {
  background: #ededed;
}

/* ======= テキストの下線スタイル ======= */
.underHiwrite {
  position: relative;
  z-index: 1;
}

.underHiwrite::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 20%;
  background-color: #ff0;
  position: absolute;
  bottom: 2px;
  left: 0;
  z-index: -1;
}

/* ======= 上付き文字、下付き文字 ======= */
.supText {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}

.subText {
  font-size: 75.5%;
  vertical-align: bottom;
  position: relative;
  top: 0.1em;
}

/* ======= 注釈 ======= */
.annotation {
  color: #666;
  font-size: 1.2rem;
}

@media screen and (max-width: 960px) {
  .annotation {
    font-size: 1.1rem;
  }
}

/* -----------------------------------------------
    link
------------------------------------------------*/
a {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.pc a:hover {
  text-decoration: none;
}

/*  a img
---------------------------------------------*/
a img {
  background-color: rgba(255, 255, 255, 0.01);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

a[href^="tel:"] {
  cursor: default;
}

/* ======= hover ======= */
a[href^="tel:"]:hover img {
  opacity: 1;
}

/*  .link - decoration underline
---------------------------------------------*/
a.link {
  color: #1678bf;
  text-decoration: underline;
}

.pc a.link:hover {
  text-decoration: none;
  color: #1678bf;
}

/* -----------------------------------------------
    list - ul,ol
------------------------------------------------*/
/*==================================================================
    layout
===================================================================*/
/*  container
---------------------------------------------*/
.container {
  width: 100%;
  max-width: 1130px;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 960px) {
  .container {
    max-width: auto;
  }
}

.container.-large {
  max-width: 1230px;
}

@media screen and (max-width: 960px) {
  .container.-large {
    max-width: auto;
  }
}

.container.-small {
  max-width: 860px;
}

@media screen and (max-width: 960px) {
  .container.-small {
    max-width: auto;
  }
}

.container.-min {
  max-width: 690px;
}

@media screen and (max-width: 960px) {
  .container.-min {
    max-width: auto;
  }
}

.container.-fluid {
  max-width: none;
  padding-right: 0;
  padding-left: 0;
}

.container--fluid {
  width: 100%;
  padding-right: 0;
  padding-left: 0;
  margin-right: auto;
  margin-left: auto;
}

/*==================================================================
    form
===================================================================*/
/*  autofill
---------------------------------------------*/
input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px #fafafa inset;
}

/*  hover
---------------------------------------------*/
input[type="text"],
input[type="tel"],
input[type="email"],
input[type="password"],
select,
textarea {
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.pc input[type="text"]:hover,
.pc input[type="tel"]:hover,
.pc input[type="email"]:hover,
.pc input[type="password"]:hover,
.pc select:hover,
.pc textarea:hover {
  border: 1px solid #1678bf;
  background-color: #fff;
}

/*  focus
---------------------------------------------*/
input:focus,
select:focus,
textarea:focus {
  color: #000000;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="email"]:focus,
input[type="password"]:focus,
select:focus,
textarea:focus {
  border: 1px solid #1678bf;
}

input[type="button"]:focus,
input[type="submit"]:focus,
button[type="submit"]:focus,
input[type="file"],
input[type="text"]:focus,
input[type="tel"]:focus,
input[type="password"]:focus,
button:focus {
  outline: none;
}

/*  input.short
---------------------------------------------*/
input.short,
select.short,
textarea.short {
  width: 40%;
}

@media screen and (max-width: 960px) {
  input.short,
  select.short,
  textarea.short {
    width: 100%;
  }
}

/*  must 必須項目の※
---------------------------------------------*/
.must {
  color: #E20C0C;
  font-size: 80%;
  vertical-align: top;
  position: relative;
  top: -0.4em;
  right: -0.2rem;
}

/*  button submit
---------------------------------------------*/
input[type="button"],
input[type="submit"] {
  -webkit-appearance: none;
  display: inline-block;
  color: #fff;
  background-color: #1678bf;
  border: 0;
  padding: 0rem 3.0rem;
  margin-bottom: .5em;
  text-align: center;
  font-weight: bold;
  border-radius: 4px;
  height: 50px;
  position: relative;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

/* ======= hover ======= */
.pc input[type="button"]:hover,
.pc input[type="submit"]:hover {
  opacity: 0.8;
  cursor: pointer;
}

/*  checkbox radio
---------------------------------------------*/
/* ======= common ======= */
input[type="checkbox"],
input[type="radio"] {
  -moz-transform-origin: right bottom;
  -moz-transform: scale(1, 1);
  -webkit-transform-origin: right bottom;
  -webkit-transform: scale(1, 1);
  cursor: pointer;
  -webkit-transition: 0s;
  transition: 0s;
}

label.checkbox,
label.radio {
  padding-left: .7em;
  margin-bottom: .5em;
  position: relative;
  display: inline-block;
  cursor: pointer;
  -webkit-transition: 0s;
  transition: 0s;
}

label.checkbox input,
label.radio input {
  visibility: hidden;
  opacity: 0;
  margin: 0;
  height: inherit;
}

/* ======= checkbox ======= */
label.checkbox::before,
label.checkbox::after {
  content: "";
  display: block;
  position: absolute;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

label.checkbox::before {
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  left: 0;
  width: 16px;
  height: 16px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
}

label.checkbox.-checked::before {
  background: #66caf2;
  border: 1px solid #66caf2;
}

label.checkbox.-checked::after {
  position: absolute;
  content: '';
  display: block;
  top: 4px;
  left: 3px;
  width: 10px;
  height: 5px;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* ======= radio ======= */
label.radio::before,
label.radio::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  -webkit-transition: 0s;
  transition: 0s;
}

@media screen and (max-width: 960px) {
  label.radio::before,
  label.radio::after {
    -webkit-transition: 0s;
    transition: 0s;
  }
}

label.radio::before {
  left: 0;
  width: 18px;
  height: 18px;
  background: #fff;
  border: 1px solid #bcc2ba;
  border-radius: 100%;
}

label.radio::after {
  opacity: 0;
  -webkit-transform: translateY(-50%) scale(0.7);
          transform: translateY(-50%) scale(0.7);
}

label.radio.-checked::after {
  opacity: 1;
  -webkit-transform: translateY(-50%) scale(1);
          transform: translateY(-50%) scale(1);
  left: 3px;
  width: 12px;
  height: 12px;
  background: #66caf2;
  border-radius: 100%;
}

/*  input file
---------------------------------------------*/
input[type="file"] {
  -webkit-appearance: none;
  display: none;
}

label.file {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  background-color: #1678bf;
  padding: 1.0rem 2.5rem;
  margin-bottom: .8rem;
  border-radius: 6px;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

/* ======= hover ======= */
.pc label.file:hover {
  background-color: #66caf2;
}

/*  select
---------------------------------------------*/
select {
  -webkit-appearance: none;
  width: 100%;
  position: relative;
  height: 40px;
  padding-left: 1rem;
  border-radius: 4px;
  cursor: pointer;
  line-height: 1;
}

label.select {
  position: relative;
  display: block;
}

label.select::before {
  content: '';
  display: block;
  position: absolute;
  z-index: 1;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 1px;
  width: 38px;
  height: 38px;
}

label.select::after {
  position: absolute;
  content: '';
  display: block;
  z-index: 2;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 15px;
  border-top: 6px solid #000;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  font-size: 1.4rem;
}

/*
表示確認済みPC : chrome,safari,edge,firefoxはアップデードでselectの疑似要素がOKになりました。
※ IE11~9はデフォルト表示
確認済みSP : 【ios12】 Safari/chrome 【android7】chrome
*/
/* IE9以下はデフォルト */
label.select::after,
label.select::before {
  display: none\9;
}

/* IE10,11はデフォルト */
@media all and (-ms-high-contrast: none) {
  label.select::after,
  label.select::before {
    display: none;
  }
}

/* ======= sp ======= */
@media screen and (max-width: 960px) {
  label.select::after {
    right: 10px;
    border-top: 5px solid #000;
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    font-size: 1.4rem;
  }
}

/*==================================================================
    .h01
===================================================================*/
.h01 {
  font-size: 3.6rem;
  line-height: 1;
  font-family: "Yu Gothic", "Univers Next";
  margin-bottom: 25px;
}

@media screen and (max-width: 960px) {
  .h01 {
    font-size: 3.0rem;
    margin-bottom: 20px;
  }
}

.h01 em {
  font-size: 2.2rem;
  padding-left: 10px;
  display: inline-block;
  vertical-align: middle;
}

/*==================================================================
    .btn01
===================================================================*/
.btn01 {
  display: block;
  width: 100%;
  height: 40px;
  line-height: 36px;
  font-size: 1.4rem;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  color: #000;
  text-align: right;
  text-decoration: underline;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

.btn01:hover {
  text-decoration: none;
  -webkit-transition: 0.4s all;
  transition: 0.4s all;
}

@media screen and (max-width: 960px) {
  .btn01 {
    text-align: center;
  }
}

/*==================================================================
    .tbl01
===================================================================*/
/*==================================================================
    .tbl02
===================================================================*/
/*==================================================================
    .li01
===================================================================*/
/*==================================================================
    .header
===================================================================*/
.header {
  width: 100%;
  height: 190px;
  background-color: #fff;
  position: relative;
}

@media screen and (max-width: 960px) {
  .header {
    height: 65px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99;
  }
  .header {
    position: inherit;
  }
}

.header__upper {
  height: 180px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 30px;
}

@media screen and (max-width: 960px) {
  .header__upper {
    height: 65px;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 13px 64px 0 12px;
  }
}

@media screen and (max-width: 960px) {
  .header__logo {
    margin-right: 10px;
  }
}

.header__logo h1 {
  margin: 22px 0px 25px;
}

@media screen and (max-width: 960px) {
  .header__logo h1 {
    margin: 0px 0px 14px;
  }
  .header__logo h1 img {
    width: 166px;
  }
}

.header__logo span.opening_status {
  padding: 2px 5px;
  display: inline-block;
}
.header__logo span.opening_status span {
  word-break: keep-all;
}

@media screen and (max-width: 960px) {
  .header__logo span.opening_status {
    min-width: auto;
  }
}


.header__logo span.opening_status > span.closed {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.2;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  padding: 0px 25px;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.header__logo span.opening_status > span.open {
  display: inline-block;
  font-size: 2.4rem;
  line-height: 1.2;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  padding: 0px 0px 0px 25px;
  background-repeat: no-repeat;
  background-position: 0 50%;
}
.header__logo span.closed span{
  color: white;
  background: black;
}

.header__logo span.opening_status > span.open {
  background-image: url(/common/image/icon_check.svg);
}

.header__logo .header_opening_caption{
  line-height: 20px;
  font-size: 1.6rem;
  max-width: 38.4rem;
  word-break: break-all;
  word-wrap: break-word;
  display: inline-flex;
  margin-top: 9px;

}
.header__logo .header_closing_caption{
  line-height: 20px;
  font-size: 1.6rem;
  max-width: 38.4rem;
  word-break: break-all;
  word-wrap: break-word;
  display: inline-flex;
  margin-top: 14px;

}
@media screen and (max-width: 960px) {
  .header__logo .header_opening_caption .header_closing_caption{
    margin-left: 1.6rem;
    width:100%;
  }
  .header__logo .header_opening_caption, .header__logo .header_closing_caption{
    font-size: 1.1rem;
  }
}

.header_area{
  display: flex;
  align-items: stretch;
}

@media screen and (max-width: 960px) {
  .header_area{
    display: block;
  }
}
.header_align_side{
  flex: 1;
}
.header_align .icons li{
  list-style: none;
}


.header__upper {
  min-height: 150px;
  height: auto;
  align-items:normal;
}

.header{
  min-height: 190px;
  height: auto;
}

@media screen and (max-width: 960px) {
  .header{
    min-height: 65px;
    height: auto;
  }
}


.header__subLogo{
  margin-top: 21px;
}
@media screen and (max-width: 960px) {
  .header__subLogo{
    margin-top:  0px;
  }
}

#language{
  font-size: 1.0rem;
}


@media screen and (max-width: 960px) {
  .header__logo span.opening_status > span.closed,
  .header__logo span.opening_status > span.open {
      font-size: 1.4rem;
    line-height: 14px;
    font-weight: normal;
    padding: 0px 25px;
    background-size: 14px 14px;
  }
}

.header__subLogo {
  text-align: right;
  width: auto;
}

.header__subLogo h2{
    width: 100%;
    text-align: right;
}

.header__subLogo h2 a img{
  width: 280px;
}
@media screen and (max-width: 960px) {
  .header__subLogo {
    text-align: left;
    padding-bottom: 0;
    width: auto;
  }
}

.header__subLogo img {
  width: 100%;
}

@media screen and (max-width: 960px) {
  .header__subLogo img {
    width: 85px;
  }

  .header__subLogo h2 a img{
    width: 85px;
  }

  .header__subLogo .header-fontsize-logo h2{
    width: 85px;
  }

  .header-fontsize-logo{
    display: flex;
    flex-flow: column;
    flex-direction: column-reverse;
  }
 
}

@media screen and (max-width: 960px) {
  .header__nav {
    width: 100%;
    min-height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1111;
    background-color: #2E2E2E;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    overflow-y: auto;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
  .header__nav.open {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
}

.header__subNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 90px;
  right: 30px;
}

@media screen and (min-width: 960px) {
  .header__nav .header__subNav{ 
    display: none;
  }
}

.header__subNav{
  bottom: 60px;
  top:inherit;
}

.header__subLogo .header__subNav{
  position: inherit;
  width: 380px;
  margin-top: 15px;
}

@media screen and (max-width: 960px) {
  .header__subNav {
    display: block;
    position: static;
  }
}
@media screen and (max-width: 960px) {
  .header__subLogo .header__subNav {
    display: none;
    
  }
}

.header__subNav .multiLang {
  width: 170px;
  height: 31px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-flow: row-reverse nowrap;
          flex-flow: row-reverse nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 75px;
  border-bottom: 1px solid #000;
}

/* アクセシビリティ */
.high-contrast-blue .header__subNav .multiLang,
.high-contrast-dark .header__subNav .multiLang
 {
  border-bottom: 1px solid #fff;
}
/* アクセシビリティここまで */

.header__subLogo .header__subNav .multiLang {
  margin-right: 0px;
}

.header__subLogo .langicon{
  display: flex;
  width: 75px;
}

.header__subLogo .language li{
  list-style: none;
}

/* 旧: #language-list[hidden] → 新: .language-list[hidden] */
.language-list[hidden] { display: none !important; }

/* フォーカスリング（任意） */
.langToggle:focus,
.language-list a:focus { outline: 2px solid #fff; outline-offset: 2px; }
.language-list li:hover a { color: #fff;}
.language-list {
  font-size: 1rem;
}

.langToggle {
  font-size: 1rem;
}

@media screen and (max-width: 960px) {
  .header__subNav .multiLang {
    width: 100%;
    height: auto;
    padding: 15px;
    margin-right: 0;
    border: none;
    position: relative;
  }
  .header__subNav .multiLang::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.24);
            box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.24);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
}

.header__subNav .multiLang #searchBtn {
  width: 10px;
  height: 10px;
}

.header__subNav .multiLang #keywords {
  width: 150px;
  height: 30px;
  padding: 5px;
  border: none;
  font-size: 1.5rem;
  outline: none;
}

@media screen and (max-width: 960px) {
  .header__subNav .multiLang #keywords {
    width: 100%;
    color: #fff;
    background-color: #2E2E2E;
  }
}

.header__subNav .multiLang #keywords::-webkit-input-placeholder {
  color: #000;
}

.header__subNav .multiLang #keywords:-ms-input-placeholder {
  color: #000;
}

.header__subNav .multiLang #keywords::-ms-input-placeholder {
  color: #000;
}

.header__subNav .multiLang #keywords::placeholder {
  color: #000;
}

/* アクセシビリティ */
.high-contrast-blue .header__subNav .multiLang #keywords::placeholder,
.high-contrast-dark .header__subNav .multiLang #keywords::placeholder
 {
  color: #fff;
}
/* アクセシビリティここまで */

@media screen and (max-width: 960px) {
  .header__subNav .multiLang #keywords::-webkit-input-placeholder {
    color: #fff;
  }
  .header__subNav .multiLang #keywords:-ms-input-placeholder {
    color: #fff;
  }
  .header__subNav .multiLang #keywords::-ms-input-placeholder {
    color: #fff;
  }
  .header__subNav .multiLang #keywords::placeholder {
    color: #fff;
  }
}

.header__subNav .multiLang #keywords:-ms-input-placeholder {
  color: #000;
}

@media screen and (max-width: 960px) {
  .header__subNav .multiLang #keywords:-ms-input-placeholder {
    color: #fff;
  }
}

.header__subNav .multiLang #keywords::-ms-input-placeholder {
  color: #000;
}

@media screen and (max-width: 960px) {
  .header__subNav .multiLang #keywords::-ms-input-placeholder {
    color: #fff;
  }
}

@media screen and (max-width: 960px) {
  .header__subNav .langicon-wrapper {
    display: flex;
    flex-flow: row wrap;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
    position: relative;
  }
  .header__subNav .langicon-wrapper li {
    list-style: none;
  }
  .header__subNav .langicon {
    position: relative;
    padding: 10px 15px;
  }
  .header__subNav .langicon-wrapper::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.24);
            box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.24);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
}

.header__subNav .language {
  width: 60px;
  font-size: 1.1rem;
  background-color: #fff;
  text-align: center;
  border: 1px solid #000;
  position: absolute;
  left: 185px;
  top: 0;
  z-index: 999;
}

/* アクセシビリティ */
.high-contrast-blue .header__subNav .language,
.high-contrast-dark .header__subNav .language {
  border: 1px solid #fff;
}
/* アクセシビリティここまで */


.header__subLogo .header__subNav .language {
  left: inherit;
  top: inherit;
  margin-top: -15px;
  margin-left: 15px;
}

@media screen and (max-width: 960px) {
  .header__subNav .language {
    background-color: #2E2E2E;
    border: 1px solid #fff;
    position: static;
    margin-right: 10px;
  }
}

.header__subNav .language span, .header__subNav .language a {
  display: block;
  color: #000;
}

@media screen and (max-width: 960px) {
  .header__subNav .language span, .header__subNav .language a {
    color: #fff;
  }
}

.header__subNav .language li {
  height: 28px;
  line-height: 28px;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font-family: "Univers Next W04 Regular", "Univers Next W04 Light";
  cursor: pointer;
}

.header__subNav .language li.langDefalutHide {
  display: none;
}
header.header > div.header__nav > div.header__navInner > div.header__subNav > div.langicon > div.language > ul#language > a > li.langDefalutHide
{
  list-style: none;
}

header.header > div.header__nav > div.header__navInner > div.header__subNav > div.langicon > div.language > ul#language > span.targetLang > li
{
  list-style: none;
}
.header__subNav .language li:hover {
  background: #000;
  color: #fff;
}


@media screen and (max-width: 960px) {
  .header__subNav .language li:hover {
    background: #2E2E2E;
  }
}

.header__subNav .icons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-left: 15px;
}
header.header > div.header__nav > div.header__navInner > div.header__subNav > div.langicon > ul.icons
{
  list-style: none;
}

@media screen and (max-width: 960px) {
  .header__subNav .icons {
    margin-left: 0;
  }
}

.header__subNav .icons li {
  margin-right: 15px;
}

@media screen and (max-width: 960px) {
  .header__subNav .icons li {
    margin-right: 10px;
  }
}

.header__subNav .icons li:last-child {
  margin-right: 0;
}

.header__subNav .icons li img {
  width: 30px;
}

.header__subNav .icons li a {
  display: block;
}

.header__subNav .icons li a:hover {
  opacity: .6;
}

.header__mainNav {
  z-index: 99;
  position: relative;
}

.header__mainNav.fixed {
  width: 100%;
  margin: 0 auto;
  position: fixed;
  top: 0;
  left: 0;
  background-color: #fff;
  z-index: 9999;
}

@media screen and (max-width: 960px) {
  .header__mainNav.fixed {
    position: static !important;
    background-color: #2E2E2E;
  }
}

.header__mainNav.fixed .mainNav {
  width: 100%;
  margin: 0 auto;
}
header.header > div.header__nav > div.header__navInner > nav.header__mainNav > ul.mainNav
{
  list-style: none;
}

@media screen and (max-width: 960px) {
  .header__mainNav.fixed .mainNav {
    width: auto;
  }
}

.header__mainNav .mainNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -ms-flex-pack: distribute;
      justify-content: space-around;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-top: solid 1px #000;
  border-bottom: solid 1px #000;
}

@media screen and (max-width: 960px) {
  .header__mainNav .mainNav {
    display: block;
    border: none;
  }
}

.header__mainNav .mainNav__item {
  font-family: "Univers Next W04 Regular", "A+EqpB-游ゴシック体 Pr6N D";
  position: relative;
}

@media screen and (max-width: 960px) {
  .header__mainNav .mainNav__item {
    width: 100% !important;
    font-family: "Univers Next W04 Light";
  }
  .header__mainNav .mainNav__item::before {
    display: block;
    content: "";
    width: 100%;
    height: 1px;
    background-color: #000;
    -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.24);
            box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.24);
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 10;
  }
}



.header__mainNav .mainNav__item {
  width: 100%;
}

.header__mainNav .mainNav__item span {
  display: block;
  width: 100%;
  line-height: 38px;
  font-size: 1.6rem;
  text-align: center;
  cursor: pointer;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

@media screen and (max-width: 960px) {
  .header__mainNav .mainNav__item span {
    font-size: 1.2rem;
    text-align: left;
    color: #fff;
    padding: 0 20px 0 15px;
    background-image: url(/common/image/icon_arrow_02.svg);
    background-repeat: no-repeat;
    background-position: top 50% right 10px;
    line-height: 46px;
  }
  .header__mainNav .mainNav__item span.active {
    background-image: url(/common/image/icon_arrow_01.svg);
  }
}

.header__mainNav .mainNav__item span:hover {
  background-color: #000;
  color: #fff;
}

@media screen and (max-width: 960px) {
  .header__mainNav .mainNav__item span:hover {
    background-color: #2E2E2E;
  }
}

/* .header__mainNav .mainNav__item .child {
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  position: absolute;
  top: 34px;
  left: 0;
  width: auto;
  min-width: 150%;
  background-color: #2E2E2E;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

@media screen and (max-width: 960px) {
  .header__mainNav .mainNav__item .child {
    display: block;
    visibility: visible;
    opacity: 1;
    min-width: 100%;
    position: static;
    background-color: #444444;
  }
} */

.header__mainNav .mainNav__item .child__item {
  position: relative;
}
header.header > div.header__nav > div.header__navInner > nav.header__mainNav > ul.mainNav > li.mainNav__item > ul.child > li.child__item
{
  list-style: none;
}

.header__mainNav .mainNav__item .child__item::before {
  display: block;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #000;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.24);
          box-shadow: 0px 1px 0px 0px rgba(255, 255, 255, 0.24);
  position: absolute;
  bottom: 0;
  left: 0;
}

.header__mainNav .mainNav__item .child__item a {
  display: block;
  padding: 0px 20px 0px 20px;
  line-height: 44px;
  color: #fff;
  font-size: 1.5rem;
}

@media screen and (max-width: 960px) {
  .header__mainNav .mainNav__item .child__item a {
    font-size: 1.2rem;
  }
}

.header__mainNav .mainNav__item .child__item a:hover {
  background-color: #000;
}

@media screen and (max-width: 960px) {
  .header__mainNav .mainNav__item .child__item a:hover {
    background-color: #444444;
  }
}

.header__mainNav .mainNav__item:last-child .child {
  right: 0;
  left: auto;
}

/* .header__mainNav .mainNav__item:hover .child {
  top: 39px;
  visibility: visible;
  opacity: 1;
} */

.header__navOther {
  display: none;
}

.header__navOther > dl > dt ,
.header__navOther > dl > dd {
  color: #fff;
}

@media screen and (max-width: 960px) {
  .header__navOther {
    display: block;
    padding: 20px 10px;
    color: #fff;
    font-family: "Univers Next W04 Light";
  }
  .header__navOther dt {
    padding-top: 40px;
    text-align: center;
    background-size: 32px 32px;
    background-position: 50% 0;
    background-repeat: no-repeat;
    font-size: 1.6rem;
    font-weight: bold;
    margin-bottom: 10px;
  }
  .header__navOther.open dt {
    background-image: url(/common/image/icon_check.svg);
  }
  .header__navOther dd {
    font-size: 1rem;
    line-height: 1.6;
    text-align: center;
  }
}

.menu-trigger {
  display: none;
}

@media screen and (max-width: 960px) {
  .menu-trigger {
    display: inline-block;
    -webkit-transition: all 200ms ease;
    transition: all 200ms ease;
    width: 64px;
    height: 60px;
    padding: 21px 15px 20px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 3000;
  }
  .menu-trigger span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    position: absolute;
    left: 15px;
    width: 24px;
    height: 3px;
    background-color: #000;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 21px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 29px;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: 20px;
  }
}

.menu-trigger.active span:nth-of-type(1) {
  -webkit-transform: translateY(8px) rotate(-45deg);
  transform: translateY(8px) rotate(-45deg);
  background: #fff;
}

.menu-trigger.active span:nth-of-type(2) {
  opacity: 0;
}

.menu-trigger.active span:nth-of-type(3) {
  -webkit-transform: translateY(-8px) rotate(45deg);
  transform: translateY(-8px) rotate(45deg);
  background: #fff;
}

.overlay {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 800;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  background: white;
  visibility: hidden;
  opacity: 0;
}

.overlay.open {
  visibility: visible;
  opacity: 1;
}

/*==================================================================
    .hamburger
===================================================================*/
.hamburger {
  width: 60px;
  height: 60px;
  padding-top: 18px;
  background-color: #ccc;
  position: fixed;
  right: 15px;
  top: 15px;
  z-index: 9999;
  display: block;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  font: inherit;
  color: inherit;
  margin: 0;
  overflow: visible;
  border-radius: 8px;
}

@media screen and (max-width: 960px) {
  .hamburger {
    width: 60px;
    height: 60px;
    padding-top: 18px;
    margin: 0;
  }
}

.hamburger__inner {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger__box {
  display: inline-block;
  top: 50%;
  left: 0;
  margin-top: -2px;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.hamburger__box::before, .hamburger__box::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: #000;
  border-radius: 0px;
  position: absolute;
  left: 0;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
}

.hamburger__box::before {
  top: -7px;
}

.hamburger__box::after {
  bottom: -7px;
}

/* ======= hover ======= */
.pc .hamburger:hover {
  opacity: 1;
}

.pc .hamburger:hover .hamburger__box::before {
  top: -4px;
}

.pc .hamburger:hover .hamburger__box::after {
  bottom: -4px;
}

/*  spin
---------------------------------------------*/
.hamburger--spin__box {
  -webkit-transition-duration: 0.22s;
          transition-duration: 0.22s;
  -webkit-transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
          transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

.hamburger--spin__box::before {
  -webkit-transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
  transition: top 0.1s 0.25s ease-in, opacity 0.1s ease-in;
}

.hamburger--spin__box::after {
  -webkit-transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.25s ease-in, transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.22s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}

/* ======= active ======= */
.hamburger.-active {
  mix-blend-mode: normal;
}

.hamburger.-active .hamburger__box {
  -webkit-transform: rotate(225deg);
          transform: rotate(225deg);
  -webkit-transition-delay: 0.12s;
          transition-delay: 0.12s;
  -webkit-transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
          transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  background-color: #fff !important;
}

.hamburger.-active .hamburger__box::before {
  top: 0;
  opacity: 0;
  -webkit-transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  transition: top 0.1s ease-out, opacity 0.1s 0.12s ease-out;
  background-color: #fff !important;
}

.hamburger.-active .hamburger__box::after {
  background-color: #fff !important;
  bottom: 0;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
  -webkit-transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.22s 0.12s cubic-bezier(0.215, 0.61, 0.355, 1);
}

/* ======= hover ======= */
.pc .hamburger.-active:hover .hamburger__box::before {
  top: 0px;
}

.pc .hamburger.-active:hover .hamburger__box::after {
  bottom: 0px;
}

/*==================================================================
    .nav-open : 開いたメニュー画面
===================================================================*/
.nav-open01 {
  visibility: hidden;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.8);
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  overflow-y: scroll;
}

.nav-open01__inner {
  padding: 80px 30px;
}

.nav-open01__inner__logo {
  margin-bottom: 30px;
}

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

.nav-open01__inner__list li {
  display: inline-block;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-open01__inner__list li a {
  font-size: 1.8rem;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  width: 100%;
  padding-top: 20px;
  padding-bottom: 20px;
}

.nav-open01.-active {
  visibility: visible;
  opacity: 1;
}

/*==================================================================
    .pagetop
===================================================================*/
.pagetop {
  position: fixed;
  bottom: 20px;
  right: 20px;
}

@media screen and (max-width: 960px) {
  .pagetop {
    bottom: 10px;
    right: 10px;
  }
}

.pagetop span {
  display: inline-block;
  font-size: 1.2rem;
  font-weight: bold;
  padding: .6em;
  border: solid 2px #000;
  background-color: #fff;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .pagetop span {
    font-size: 1.1rem;
  }
}

.pagetop span:hover {
  background-color: #000;
  color: #fff;
}

/*==================================================================
    .footer
===================================================================*/
.footer__upper {
  padding: 35px 0;
  border-top: solid 1px #707070;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

@media screen and (max-width: 960px) {
  .footer__upper {
    padding: 25px 0;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    border-bottom: solid 1px #707070;
  }
}

.footer .upper__logo {
  font-family: "Univers Next W04 Light";
  padding-right: 50px;
}

@media screen and (max-width: 960px) {
  .footer .upper__logo {
    margin-bottom: 30px;
    padding-right: 0px;
  }
}

.footer .upper__logo h2 {
  margin-bottom: 10px;
}

.footer .upper__logo h2 img {
  width: 158px;
}

.footer .upper__logo .logo__add {
  font-size: 1.2rem;
  line-height: 1.5;
  margin-bottom: 10px;
}

.footer .upper__link {
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
}

.footer .upper__link .link__item {
  margin-bottom: 15px;
}
footer.footer > section.footer__upper > div.upper__link > ul.link__list > li.link__item {
  list-style: none;
}

.footer .upper__link .link__item a {
  color: #000;
}

.footer .upper__link .link__item a:hover {
  opacity: .6;
}

.footer__under {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 35px 0;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  border-top: solid 1px #707070;
}

@media screen and (max-width: 960px) {
  .footer__under {
    display: none;
  }
}

.footer__under a {
  color: #000;
}

.footer__under a:hover {
  opacity: .6;
}

.footer .under__box .box__ttl {
  font-family: "A+EqpB-游ゴシック体 Pr6N D";
  margin-bottom: 15px;
}

.footer .under__box .box__list {
  margin-bottom: 40px;
}

.footer .under__box .box__item {
  margin-bottom: .8em;
}
footer.footer > section.footer__under > div.under__box > ul.box__list > li.box__item {
  list-style: none;
}

.footer__copy {
  display: block;
  text-align: right;
  font-size: 1.2rem;
  font-family: "Univers Next W04 Light";
  padding: 30px 0;
}

@media screen and (max-width: 960px) {
  .footer__copy {
    padding: 30px 0 60px;
    text-align: center;
  }
}

/*==================================================================
    .mainView01
===================================================================*/
.mainView01 {
  width: 100%;
  position: relative;
  text-align: center;
  padding-top: 20px;
}

@media screen and (max-width: 960px) {
  .mainView01 {
    padding-top: 20px;
  }
}

.mainView01 .slider__item.-movie {
  width: 100%;
  position: relative;
}

.mainView01 .slider__item.-movie iframe {
  position: absolute;
  top: 0px;
  left: 0px;
}

/* .mainView01 .slider__item.-movie a {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 15;
} */

/* 画像を入れる枠 */
.mainView01 .slider__item.-movie a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden; /* はみ出し防止 */
  z-index: 15;
}

/* 中の画像 */
.mainView01 .slider__item.-movie a img {
  width: 100%; height: 100%; object-fit: contain;
}

#top .coming {
  margin-top: 40px;
}

.slider01-pagination {
  display: block !important;
  position: absolute;
  bottom: -25px !important;
}


/*==================================================================
    animation
===================================================================*/
/*  setting
---------------------------------------------*/
.animate {
  visibility: hidden;
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  -webkit-animation-duration: 200ms;
          animation-duration: 200ms;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.animate.animated {
  visibility: visible;
}

.aInfinite {
  -webkit-animation-iteration-count: infinite;
          animation-iteration-count: infinite;
}

.aEx {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
}

/*  duration
---------------------------------------------*/
.a0 {
  -webkit-animation-duration: 0s;
          animation-duration: 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a1 {
  -webkit-animation-duration: 0.1s;
          animation-duration: 0.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a2 {
  -webkit-animation-duration: 0.2s;
          animation-duration: 0.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a3 {
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a4 {
  -webkit-animation-duration: 0.4s;
          animation-duration: 0.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a5 {
  -webkit-animation-duration: 0.5s;
          animation-duration: 0.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a6 {
  -webkit-animation-duration: 0.6s;
          animation-duration: 0.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a7 {
  -webkit-animation-duration: 0.7s;
          animation-duration: 0.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a8 {
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a9 {
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a10 {
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a11 {
  -webkit-animation-duration: 1.1s;
          animation-duration: 1.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a12 {
  -webkit-animation-duration: 1.2s;
          animation-duration: 1.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a13 {
  -webkit-animation-duration: 1.3s;
          animation-duration: 1.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a14 {
  -webkit-animation-duration: 1.4s;
          animation-duration: 1.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a15 {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a16 {
  -webkit-animation-duration: 1.6s;
          animation-duration: 1.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a17 {
  -webkit-animation-duration: 1.7s;
          animation-duration: 1.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a18 {
  -webkit-animation-duration: 1.8s;
          animation-duration: 1.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a19 {
  -webkit-animation-duration: 1.9s;
          animation-duration: 1.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a20 {
  -webkit-animation-duration: 2s;
          animation-duration: 2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a21 {
  -webkit-animation-duration: 2.1s;
          animation-duration: 2.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a22 {
  -webkit-animation-duration: 2.2s;
          animation-duration: 2.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a23 {
  -webkit-animation-duration: 2.3s;
          animation-duration: 2.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a24 {
  -webkit-animation-duration: 2.4s;
          animation-duration: 2.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a25 {
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a26 {
  -webkit-animation-duration: 2.6s;
          animation-duration: 2.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a27 {
  -webkit-animation-duration: 2.7s;
          animation-duration: 2.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a28 {
  -webkit-animation-duration: 2.8s;
          animation-duration: 2.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a29 {
  -webkit-animation-duration: 2.9s;
          animation-duration: 2.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a30 {
  -webkit-animation-duration: 3s;
          animation-duration: 3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a31 {
  -webkit-animation-duration: 3.1s;
          animation-duration: 3.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a32 {
  -webkit-animation-duration: 3.2s;
          animation-duration: 3.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a33 {
  -webkit-animation-duration: 3.3s;
          animation-duration: 3.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a34 {
  -webkit-animation-duration: 3.4s;
          animation-duration: 3.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a35 {
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a36 {
  -webkit-animation-duration: 3.6s;
          animation-duration: 3.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a37 {
  -webkit-animation-duration: 3.7s;
          animation-duration: 3.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a38 {
  -webkit-animation-duration: 3.8s;
          animation-duration: 3.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a39 {
  -webkit-animation-duration: 3.9s;
          animation-duration: 3.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a40 {
  -webkit-animation-duration: 4s;
          animation-duration: 4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a41 {
  -webkit-animation-duration: 4.1s;
          animation-duration: 4.1s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a42 {
  -webkit-animation-duration: 4.2s;
          animation-duration: 4.2s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a43 {
  -webkit-animation-duration: 4.3s;
          animation-duration: 4.3s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a44 {
  -webkit-animation-duration: 4.4s;
          animation-duration: 4.4s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a45 {
  -webkit-animation-duration: 4.5s;
          animation-duration: 4.5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a46 {
  -webkit-animation-duration: 4.6s;
          animation-duration: 4.6s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a47 {
  -webkit-animation-duration: 4.7s;
          animation-duration: 4.7s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a48 {
  -webkit-animation-duration: 4.8s;
          animation-duration: 4.8s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a49 {
  -webkit-animation-duration: 4.9s;
          animation-duration: 4.9s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

.a50 {
  -webkit-animation-duration: 5s;
          animation-duration: 5s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

/*  delay
---------------------------------------------*/
.aD0 {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.aD1 {
  -webkit-animation-delay: 0.1s;
          animation-delay: 0.1s;
}

.aD2 {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.aD3 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.aD4 {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.aD5 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.aD6 {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.aD7 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

.aD8 {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

.aD9 {
  -webkit-animation-delay: 0.9s;
          animation-delay: 0.9s;
}

.aD10 {
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
}

.aD11 {
  -webkit-animation-delay: 1.1s;
          animation-delay: 1.1s;
}

.aD12 {
  -webkit-animation-delay: 1.2s;
          animation-delay: 1.2s;
}

.aD13 {
  -webkit-animation-delay: 1.3s;
          animation-delay: 1.3s;
}

.aD14 {
  -webkit-animation-delay: 1.4s;
          animation-delay: 1.4s;
}

.aD15 {
  -webkit-animation-delay: 1.5s;
          animation-delay: 1.5s;
}

.aD16 {
  -webkit-animation-delay: 1.6s;
          animation-delay: 1.6s;
}

.aD17 {
  -webkit-animation-delay: 1.7s;
          animation-delay: 1.7s;
}

.aD18 {
  -webkit-animation-delay: 1.8s;
          animation-delay: 1.8s;
}

.aD19 {
  -webkit-animation-delay: 1.9s;
          animation-delay: 1.9s;
}

.aD20 {
  -webkit-animation-delay: 2s;
          animation-delay: 2s;
}

.aD21 {
  -webkit-animation-delay: 2.1s;
          animation-delay: 2.1s;
}

.aD22 {
  -webkit-animation-delay: 2.2s;
          animation-delay: 2.2s;
}

.aD23 {
  -webkit-animation-delay: 2.3s;
          animation-delay: 2.3s;
}

.aD24 {
  -webkit-animation-delay: 2.4s;
          animation-delay: 2.4s;
}

.aD25 {
  -webkit-animation-delay: 2.5s;
          animation-delay: 2.5s;
}

.aD26 {
  -webkit-animation-delay: 2.6s;
          animation-delay: 2.6s;
}

.aD27 {
  -webkit-animation-delay: 2.7s;
          animation-delay: 2.7s;
}

.aD28 {
  -webkit-animation-delay: 2.8s;
          animation-delay: 2.8s;
}

.aD29 {
  -webkit-animation-delay: 2.9s;
          animation-delay: 2.9s;
}

.aD30 {
  -webkit-animation-delay: 3s;
          animation-delay: 3s;
}

.aD31 {
  -webkit-animation-delay: 3.1s;
          animation-delay: 3.1s;
}

.aD32 {
  -webkit-animation-delay: 3.2s;
          animation-delay: 3.2s;
}

.aD33 {
  -webkit-animation-delay: 3.3s;
          animation-delay: 3.3s;
}

.aD34 {
  -webkit-animation-delay: 3.4s;
          animation-delay: 3.4s;
}

.aD35 {
  -webkit-animation-delay: 3.5s;
          animation-delay: 3.5s;
}

.aD36 {
  -webkit-animation-delay: 3.6s;
          animation-delay: 3.6s;
}

.aD37 {
  -webkit-animation-delay: 3.7s;
          animation-delay: 3.7s;
}

.aD38 {
  -webkit-animation-delay: 3.8s;
          animation-delay: 3.8s;
}

.aD39 {
  -webkit-animation-delay: 3.9s;
          animation-delay: 3.9s;
}

.aD40 {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.aD41 {
  -webkit-animation-delay: 4.1s;
          animation-delay: 4.1s;
}

.aD42 {
  -webkit-animation-delay: 4.2s;
          animation-delay: 4.2s;
}

.aD43 {
  -webkit-animation-delay: 4.3s;
          animation-delay: 4.3s;
}

.aD44 {
  -webkit-animation-delay: 4.4s;
          animation-delay: 4.4s;
}

.aD45 {
  -webkit-animation-delay: 4.5s;
          animation-delay: 4.5s;
}

.aD46 {
  -webkit-animation-delay: 4.6s;
          animation-delay: 4.6s;
}

.aD47 {
  -webkit-animation-delay: 4.7s;
          animation-delay: 4.7s;
}

.aD48 {
  -webkit-animation-delay: 4.8s;
          animation-delay: 4.8s;
}

.aD49 {
  -webkit-animation-delay: 4.9s;
          animation-delay: 4.9s;
}

.aD50 {
  -webkit-animation-delay: 5s;
          animation-delay: 5s;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
          animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    -webkit-transform: translateY(20px);
            transform: translateY(20px);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
          animation-name: fadeInUp;
}

/*==================================================================
    slider
===================================================================*/
.nextArrow,
.prevArrow {
  display: block;
  width: 23px;
  height: 48px;
  background-position: 0 0;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  -webkit-transition: all 200ms ease;
  transition: all 200ms ease;
  cursor: pointer;
}

@media screen and (max-width: 960px) {
  .nextArrow,
  .prevArrow {
    width: 12px;
    height: 24px;
    background-size: 12px 24px;
  }
}

.nextArrow:hover,
.prevArrow:hover {
  opacity: 0.6;
}

.nextArrow {
  right: -48px;
  background-image: url(/common/image/icon_arrow_next.svg);
}

@media screen and (max-width: 960px) {
  .nextArrow {
    right: -10px;
  }
}

.prevArrow {
  left: -48px;
  background-image: url(/common/image/icon_arrow_prev.svg);
}

@media screen and (max-width: 960px) {
  .prevArrow {
    left: -10px;
  }
}

.bx-wrapper {
  margin-bottom: 0 !important;
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  border: none !important;
}

/*==================================================================
    #top .topics
===================================================================*/
#top .topics {
  padding-bottom: 40px;
  position: relative;
}

#top .topics a {
  color: #000;
}

#top .topics a:hover {
  opacity: 0.8;
}

#top .topics__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
}

@media screen and (max-width: 960px) {
  #top .topics__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

#top .topics__item .item__img {
  width: 500px;
  margin-right: 30px;
}

@media screen and (max-width: 960px) {
  #top .topics__item .item__img {
    width: 100%;
    margin-right: 0;
    text-align: center;
    margin-bottom: 20px;
  }
}

#top .topics__item .item__txt {
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
}

@media screen and (max-width: 960px) {
  #top .topics__item .item__txt {
    padding: 0px;
  }
}

#top .topics__item .item__ttl {
  margin-bottom: 10px;
}

#top .topics__item .item__ttl .floor {
  display: block;
  font-size: 4.9rem;
  line-height: 1;
  font-family: "Yu Gothic", "Univers Next";
  line-height: 1.2;
}

@media screen and (max-width: 960px) {
  #top .topics__item .item__ttl .floor {
    font-size: 3.1rem;
  }
}

#top .topics__item .item__ttl .main {
  display: block;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 15px;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
}

@media screen and (max-width: 960px) {
  #top .topics__item .item__ttl .main {
    font-size: 2.5rem;
  }
}

#top .topics__item .item__ttl .sub {
  display: block;
  font-size: 2.8rem;
  line-height: 1;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
}

@media screen and (max-width: 960px) {
  #top .topics__item .item__ttl .sub {
    font-size: 1.7rem;
  }
}

#top .topics__item .item__date {
  font-style: 1rem;
  line-height: 1;
  margin-bottom: 20px;
  font-family: "A+EqpB-游ゴシック体 Pr6N D";
}

#top .topics__item .item__date em {
  font-size: 2.6rem;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
}

@media screen and (max-width: 960px) {
  #top .topics__item .item__date em {
    font-size: 2.1rem;
  }
}

#top .topics__item .item__btn {
  width: 130px;
}

/*==================================================================
    #top .listBox
===================================================================*/
#top .news_event {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 960px) {
  #top .news_event {
    display: block;
  }
}

#top .news_event__inner {
  width: 680px;
  padding-right: 40px;
}

@media screen and (max-width: 960px) {
  #top .news_event__inner {
    width: 100%;
  }
}

#top .news_event .twitter {
  width: 350px;
}

@media screen and (max-width: 960px) {
  #top .news_event .twitter {
    width: 100%;
  }
}

#top .news_event .twitter__box {
  border: solid 1px #E8E8E8;
  height: 580px;
  overflow-y: scroll;
}

@media screen and (max-width: 960px) {
  #top .news_event .twitter__box {
    height: 400px;
  }
}

#top .calendar {
  width: 350px;
  padding-bottom: 60px;
}

@media screen and (max-width: 960px) {
  #top .calendar {
    width: 100%;
    padding-bottom: 60px;
  }
}

#top .calendar__box {
  /* margin-left: 40px; */
  /* height: 400px; */
}

@media screen and (max-width: 960px) {
  #top .calendar__box {
    /* height: 400px; */
  }
}

#top .listBox {
  padding-top: 40px;
  border-top: solid 1px #000;
  position: relative;
}

@media screen and (max-width: 960px) {
  #top .listBox {
    padding-bottom: 40px;
  }
  #top .listBox.coming {
    padding-bottom: 60px;
  }
}

#top .listBox__list {
  margin-bottom: 10px;
}

@media screen and (max-width: 960px) {
  #top .listBox__list {
    margin-bottom: 25px;
  }
}

#top .listBox__item {
  margin-bottom: 30px;
}
body#top main.container > section.listBox > section.news > ul.listBox__list > li.listBox__item,
body#top main.container > section.listBox > section.news_event > div.news_event__inner > section.news > ul.listBox__list > li.listBox__item,
body#top main.container > section.listBox > section.news_event > div.news_event__inner > section.event > ul.listBox__list > li.listBox__item {
  list-style: none;
}

@media screen and (max-width: 960px) {
  #top .listBox__item {
    margin-bottom: 15px;
  }
}

#top .listBox__item .item__cell dt {
  margin-bottom: 15px;
}

@media screen and (max-width: 960px) {
  #top .listBox__item .item__cell dt {
    margin-bottom: 10px;
  }
}

#top .listBox__item .item__cell dt em {
  display: inline-block;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  line-height: 1;
  margin-right: 15px;
  vertical-align: middle;
}

@media screen and (max-width: 960px) {
  #top .listBox__item .item__cell dt em {
    font-size: 1rem;
  }
}

#top .listBox__item .item__cell dt span {
  font-size: 2.2rem;
  line-height: 1;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  vertical-align: middle;
}

@media screen and (max-width: 960px) {
  #top .listBox__item .item__cell dt span {
    font-size: 1.4rem;
  }
}

#top .listBox__item .item__cell dd {
  font-size: 2rem;
  line-height: 1.4;
  font-family: "A+EqpB-游ゴシック体 Pr6N D";
}

@media screen and (max-width: 960px) {
  #top .listBox__item .item__cell dd {
    font-size: 1.2rem;
  }
}

#top .listBox__item .item__cell dd a {
  /* color: #000; */
}

#top .listBox__item .item__cell dd a:hover {
  opacity: 0.6;
}

#top .listBox__btn {
  width: 200px;
  position: absolute;
  top: 40px;
  right: 0;
}
body#top main.container > section.listBox > section.news_event > div.news_event__inner > section.news > div.listBox__btn,
body#top main.container > section.listBox > section.news_event > div.news_event__inner > section.event > div.listBox__btn {
  left: 440px;
}
@media screen and (max-width: 1060px) {
  #top section.news > div.listBox__btn {
    left: auto;
    right: 38%;
  }
}

@media screen and (max-width: 960px) {
  #top .listBox__btn {
    width: 210px;
    position: static;
    margin: 0 auto;
  }
}

#top .listBox__slider {
  padding-bottom: 60px;
}

@media screen and (max-width: 960px) {
  #top .listBox__slider {
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 960px) {
  #top .listBox__slider .bx-wrapper {
    margin: 0 auto;
  }
}

@media screen and (max-width: 768px) {
  #top .listBox__slider .slider__list {
    display: inherit;
    letter-spacing: -1em;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: inherit;
            flex-flow: inherit;
    -webkit-box-pack: inherit;
        -ms-flex-pack: inherit;
            justify-content: inherit;
    -webkit-box-align: inherit;
        -ms-flex-align: inherit;
            align-items: inherit;
  }
}

#top .listBox__slider .slider__item {
  position: relative;
  z-index: 10;
  padding: 5px 5px 10px;
  width: 25%;
}

@media screen and (max-width: 768px) {
  #top .listBox__slider .slider__item {
    width: 50%;
    display: inline-block;
    letter-spacing: normal;
    vertical-align: top;
  }
}

#top .listBox__slider .slider__item a {
  display: block;
  color: #000;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  text-decoration: none;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 0px 5px 0px rgba(0, 0, 0, 0.12);
}

#top .listBox__slider .slider__item a:hover {
  background-color: #000;
  color: #fff;
  -webkit-box-shadow: none;
          box-shadow: none;
}
#top .listBox__slider .slider__item a:hover > dl.slider__cell > dt > span.icon,
#top .listBox__slider .slider__item a:hover > dl.slider__cell > dt > em,
#top .listBox__slider .slider__item a:hover > dl.slider__cell > dd,
#top .listBox__slider .slider__item a:hover > dl.slider__cell > dd > em,
#top .listBox__slider .slider__item a:hover > dl.slider__cell > dd > em > div.floor,
#top .listBox__slider .slider__item a:hover > dl.slider__cell > dd > span {
  color: #fff;
}

#top .listBox__slider .slider__img {
  text-align: center;
}

#top .listBox__slider .slider__img img {
  width: 100%;
}

#top .listBox__slider .slider__cell {
  padding: 15px 25px 30px;
}

@media screen and (max-width: 768px) {
  #top .listBox__slider .slider__cell {
    padding: 10px;
  }
}

#top .listBox__slider .slider__cell dt {
  margin-bottom: 10px;
}

#top .listBox__slider .slider__cell dt span {
  display: block;
  font-size: 1.3rem;
  line-height: 1;
  margin-bottom: 5px;
}

@media screen and (max-width: 960px) {
  #top .listBox__slider .slider__cell dt span {
    font-size: 1.2rem;
  }
}

#top .listBox__slider .slider__cell dt .main {
  display: block;
  font-size: 2.4rem;
  line-height: 1.1;
  margin-bottom: 5px;
}

@media screen and (max-width: 960px) {
  #top .listBox__slider .slider__cell dt .main {
    font-size: 2rem;
  }
}

@media screen and (max-width: 768px) {
  #top .listBox__slider .slider__cell dt .main {
    font-size: 1.6rem;
  }
}

#top .listBox__slider .slider__cell dt .sub {
  font-size: 1.2rem;
  font-family: "Univers Next W04 Regular";
}

@media screen and (max-width: 768px) {
  #top .listBox__slider .slider__cell dt .sub {
    font-size: 1rem;
  }
}

#top .listBox__slider .slider__cell dd {
  font-size: 2rem;
  line-height: 1.3;
}

@media screen and (max-width: 960px) {
  #top .listBox__slider .slider__cell dd {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 768px) {
  #top .listBox__slider .slider__cell dd {
    font-size: 1.1rem;
  }
}

#top .listBox__slider .slider__cell dd em {
  display: block;
  font-size: 1.6rem;
  font-family: "Univers Next W04 Regular","A+EqpB-游ゴシック体 Pr6N M", sans-serif;
}

/*==================================================================
    #top .pickUp
===================================================================*/
#top .pickUp {
  padding-bottom: 60px;
}

@media screen and (max-width: 960px) {
  #top .pickUp {
    padding-bottom: 10px;
  }
}

#top .pickUp .PickUp__list {
  margin: 0px -10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: flex-start;
}

@media screen and (max-width: 960px) {
  #top .pickUp .PickUp__list {
    margin-bottom: 20px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
  }
}

#top .pickUp .pickUp__item {
  width: 25%;
  margin-bottom: 15px;
  padding: 10px;
  display: inline-block;
  letter-spacing: normal;
}

@media screen and (max-width: 960px) {
  #top .pickUp .pickUp__item {
    width: 33%;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  #top .pickUp .pickUp__item {
    width: 50%;
    padding: 5px;
  }
}

#top .pickUp .pickUp_img img {
  width: 100%;
}

#top .pickUp .pickUp__item p {
  margin-top: 10px;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  font-size: 1.5rem;
  line-height: 1.6;
}

#top .pickUp .pickUp__item a {
  color: #000;
  display: block;
}

#top .pickUp .pickUp__item a:hover {
  opacity: 0.6;
}

/*==================================================================
    #top .about
===================================================================*/
#top .about {
  padding-bottom: 60px;
}

@media screen and (max-width: 960px) {
  #top .about {
    padding-bottom: 10px;
  }
}

#top .about__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 960px) {
  #top .about__inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
  }
}

#top .about .aboutUs {
  width: 680px;
  padding-right: 20px;
}

@media screen and (max-width: 960px) {
  #top .about .aboutUs {
    width: 100%;
    padding-right: 0px;
  }
}

#top .about .aboutUs__box {
  border: solid 1px #E8E8E8;
  padding: 59px;
}

@media screen and (max-width: 960px) {
  #top .about .aboutUs__box {
    height: auto;
    padding: 14px;
    margin-bottom: 20px;
  }
}

#top .about .aboutUs__lead {
  font-size: 1.5rem;
  line-height: 1.6;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  margin-bottom: 30px;
}

@media screen and (max-width: 960px) {
  #top .about .aboutUs__lead {
    font-size: 1.4rem;
  }
}

#top .about .aboutUs__slider {
  position: relative;
}

#top .about .aboutUs__slider .slider__item iframe {
  width: 560px;
}

@media screen and (max-width: 960px) {
  #top .about .aboutUs__slider .slider__item iframe {
    width: 100%;
  }
}

#top .about .banners {
  width: 350px;
}

@media screen and (max-width: 960px) {
  #top .about .banners {
    width: auto;
    margin: 0px -10px;
    font-size: 0;
  }
}

#top .about .banners__item {
  width: 100%;
  margin-bottom: 10px;
  font-size: 0;
}

@media screen and (max-width: 960px) {
  #top .about .banners__item {
    width: 25%;
    margin-bottom: 0;
    padding: 10px;
    display: inline-block;
  }
}

@media screen and (max-width: 768px) {
  #top .about .banners__item {
    width: 50%;
    padding: 5px;
  }
}

#top .about .banners__item img {
  width: 100%;
}

/*==================================================================
    #top .links
===================================================================*/
#top .links {
  padding-bottom: 35px;
}

@media screen and (max-width: 960px) {
  #top .links {
    padding-bottom: 60px;
  }
}

#top .links__list {
  text-align: center;
  letter-spacing: -1em;
  margin-bottom: 70px;
}

@media screen and (max-width: 960px) {
  #top .links__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -ms-flex-flow: row wrap;
        flex-flow: row wrap;
    margin-bottom: 40px;
  }
}

#top .links__item {
  text-align: center;
  width: 20%;
  display: inline-block;
  letter-spacing: normal;
}

@media screen and (max-width: 960px) {
  #top .links__item {
    width: 30%;
    margin-bottom: 30px;
  }
}

#top .links__item a {
  color: #000;
  font-family: "A+EqpB-游ゴシック体 Pr6N M";
  display: block;
  padding-top: 60px;
  background-position: 50% 0;
  background-repeat: no-repeat;
}

#top .links__item a:hover {
  opacity: 0.6;
}

#top .links__item a span {
  display: block;
  line-height: 2;
  font-size: 1.2rem;
  font-family: "Univers Next W04 Regular";
}

#top .links__item:nth-child(1) a {
  background-image: url(/contents/images/top/links_icon_01.svg);
}

#top .links__item:nth-child(2) a {
  background-image: url(/contents/images/top/links_icon_02.svg);
}

#top .links__item:nth-child(3) a {
  background-image: url(/contents/images/top/links_icon_03.svg);
}

#top .links__item:nth-child(4) a {
  background-image: url(/contents/images/top/links_icon_04.svg);
}

#top .links__item:nth-child(5) a {
  background-image: url(/contents/images/top/links_icon_05.svg);
}

#top .links__bnr {
  margin: 0px -10px;
  font-size: 0;
}

#top .links__img {
  width: 23%;
  padding: 5px;
  display: inline-block;
  text-align: center;
  vertical-align: middle;
  border: solid 1px #E8E8E8;
  height: 90px;
  line-height: 78px;
  margin: 1%;
}

@media screen and (max-width: 768px) {
  #top .links__img {
    width: 48%;
    padding: 5px;
  }
}

#top .links__img img {
  vertical-align: middle;
}

#top .links__img a:hover {
  opacity: 0.6;
}



#top .slider02 {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
}

.listBox__slider .slider__list { display:flex; flex-wrap:nowrap; }
.listBox__slider .slider__item { flex:0 0 auto; }
.listBox__slider { overflow:hidden; }

@media screen and (max-width: 768px) {
  .listBox__slider .slider__list { display:block; flex-wrap:unset; }
}

.swiper-pagination-horizontal {
  display: none;
  justify-content: center;
}

.swiper .slider03-next {
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 15px;
  height: 20px;
}

.swiper .slider03-next:before {
  content: '';
  width: 20px;
  height: 20px;
  right: 20px;
  transform: rotate(45deg);
  position: absolute;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  cursor: pointer;
}

.swiper .slider03-prev {
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 30px;
  height: 20px;
}

.swiper .slider03-prev:before {
  content: '';
  width: 20px;
  height: 20px;
  left: 25px;
  transform: rotate(225deg);
  position: absolute;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  cursor: pointer;
}

.slider01-wrap {
  position: relative;
}
.slider01-button-prev,
.slider01-button-next {
  width: 34px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 50;
  cursor: pointer;
  display: inline-block;
  height: 52px;
}

.slider01-button-prev {
  left: -13px;
}

.slider01-button-next {
  right: -13px;
}

/* Swiper の矢印アイコンをそのまま利用 */
.slider01-button-prev::after,
.slider01-button-next::after {
  font-size: 24px;
  color: #000;
}

.slider01-button-next::before,
.slider01-button-next::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  right: 0;
  width: 35px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: calc(100% - 1px) 50%;
}

.slider01-button-prev::before,
.slider01-button-prev::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 0;
  width: 35px;
  height: 2px;
  border-radius: 9999px;
  background-color: #000000;
  transform-origin: 1px 50%;
}

.slider01-button-next::before {
  transform: rotate(45deg);
}

.slider01-button-next::after {
  transform: rotate(-45deg);
}

.slider01-button-prev::before {
  transform: rotate(45deg);
}

.slider01-button-prev::after {
  transform: rotate(-45deg);
}

@media screen and (max-width: 768px) {
  .slider01-button-prev,
  .slider01-button-next {
    width: 18px;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    cursor: pointer;
    display: inline-block;
    height: 42px;
  }
  .slider01-button-next::before,
  .slider01-button-next::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    right: 0;
    width: 18px;
    height: 2px;
    border-radius: 9999px;
    background-color: #000000;
    transform-origin: calc(100% - 1px) 50%;
  }
  
  .slider01-button-prev::before,
  .slider01-button-prev::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 0;
    width: 18px;
    height: 2px;
    border-radius: 9999px;
    background-color: #000000;
    transform-origin: 1px 50%;
  }
  
  }
